From 91e247d1dead75e32feaf048615f5a4072cbdb94 Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Fri, 19 Sep 2025 11:02:44 +0200 Subject: [PATCH 01/19] adding meson build --- .gitmodules | 3 +++ Makefile | 32 --------------------------- lisp-interpreter | 1 + meson.build | 56 ++++++++++++++++++++++++++++++++++++++++++++++++ src/file_io.c | 5 +++++ 5 files changed, 65 insertions(+), 32 deletions(-) create mode 100644 .gitmodules delete mode 100644 Makefile create mode 160000 lisp-interpreter create mode 100644 meson.build diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..d3f9d6c --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "lisp-interpreter"] + path = lisp-interpreter + url = https://github.com/justinmeiners/lisp-interpreter.git diff --git a/Makefile b/Makefile deleted file mode 100644 index 4b99214..0000000 --- a/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -## -# TEST -# -# @file -# @version 0.1 - -BELUGA_OUTPUT=bin - -BUILD_FLAGS=-Wall -Wextra -pedantic - -build: main.c src/* - if [ ! -d $(BELUGA_OUTPUT) ]; then mkdir $(BELUGA_OUTPUT); fi - $(CC) main.c -o $(BELUGA_OUTPUT)/beluga src/* $(BUILD_FLAGS) - -DEBUG_FLAGS=-Wall -Wextra -pedantic -Werror -fsanitize=address -g - -debug: main.c src/* - if [ ! -d $(BELUGA_OUTPUT) ]; then mkdir $(BELUGA_OUTPUT); fi - $(CC) main.c -o $(BELUGA_OUTPUT)/beluga src/* $(DEBUG_FLAGS) - -doc: - if [ ! -d doc/ ]; then mkdir doc; fi - doxygen - -clean: - rm -r $(BELUGA_OUTPUT) - rm -rf doc/ - rm -rf tmp/ - -all: build doc - -# end diff --git a/lisp-interpreter b/lisp-interpreter new file mode 160000 index 0000000..366bfb9 --- /dev/null +++ b/lisp-interpreter @@ -0,0 +1 @@ +Subproject commit 366bfb9bdbf0b268bf299cc25178da0d6e626c59 diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..5018014 --- /dev/null +++ b/meson.build @@ -0,0 +1,56 @@ +project('editor', 'c', + version : '1.0.0', + default_options : [ + 'warning_level=2', + 'c_std=c99' + ] +) + +# Check if we're using Clang and add Clang-specific options +cc = meson.get_compiler('c') +if cc.get_id() == 'clang' + add_project_arguments([ + '-Wextra', + '-Wpedantic', + '-Wno-unused-parameter', + '-fcolor-diagnostics' # Colored output + ], language : 'c') + + # Add debug options for debug builds + if get_option('buildtype') == 'debug' + add_project_arguments([ + '-fsanitize=address', # AddressSanitizer + '-fsanitize=undefined', # UndefinedBehaviorSanitizer + '-g3', # Full debug info + '-O0' # No optimization + ], language : 'c') + + add_project_link_arguments([ + '-fsanitize=address', + '-fsanitize=undefined' + ], language : 'c') + endif +endif + +# Include directory +inc_dir = include_directories('include') + +# Source files +src_files = files( + 'main.c', + 'src/append_buffer.c', + 'src/editor_op.c', + 'src/file_io.c', + 'src/init.c', + 'src/input.c', + 'src/output.c', + 'src/row_op.c', + 'src/terminal.c' +) + +# Executable +executable('editor', + src_files, + include_directories : inc_dir, + install : true +) diff --git a/src/file_io.c b/src/file_io.c index 0bde548..057848b 100644 --- a/src/file_io.c +++ b/src/file_io.c @@ -8,6 +8,11 @@ #include #include +extern char *strdup(const char *); +extern ssize_t getline(char **restrict lineptr, size_t *restrict n, + FILE *restrict stream); +extern int ftruncate(int fd, off_t length); + char *editorRowsToString(struct editorConfig *E, int *buffer_len) { int tot_len = 0; int j; From 8ce621dfde61130bae8a1de753cc6c7d53926efb Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Fri, 19 Sep 2025 14:31:12 +0200 Subject: [PATCH 02/19] Made Editor Config global --- include/data.h | 6 +++ include/editor_op.h | 6 +-- include/file_io.h | 6 +-- include/init.h | 2 +- include/input.h | 6 +-- include/output.h | 12 +++--- include/row_op.h | 11 +++-- include/terminal.h | 4 +- main.c | 16 ++++---- src/append_buffer.c | 2 + src/editor_op.c | 52 ++++++++++++------------ src/file_io.c | 43 ++++++++++---------- src/init.c | 33 ++++++++------- src/input.c | 89 ++++++++++++++++++++-------------------- src/output.c | 98 +++++++++++++++++++++++---------------------- src/row_op.c | 53 ++++++++++++------------ src/terminal.c | 11 ++--- 17 files changed, 235 insertions(+), 215 deletions(-) diff --git a/include/data.h b/include/data.h index 1effdf0..0b82ea3 100644 --- a/include/data.h +++ b/include/data.h @@ -1,6 +1,7 @@ #ifndef DATA_H_ #define DATA_H_ +#include "../lisp-interpreter/dist/lisp.h" #include #include @@ -35,6 +36,9 @@ struct editorConfig { char status_msg[80]; time_t status_msg_time; struct termios orig_termios; /**< Terminal communication interface */ + LispContext ctx; /** Lisp context */ + Lisp ctx_data; /** Lisp data context */ + LispError ctx_error; /** Lisp ctx error */ }; /** @@ -47,4 +51,6 @@ struct abuf { int len; /**< Length of the text */ }; +extern struct editorConfig E; + #endif diff --git a/include/editor_op.h b/include/editor_op.h index 93aa2a8..757b6c8 100644 --- a/include/editor_op.h +++ b/include/editor_op.h @@ -2,10 +2,10 @@ #define EDITOR_OP_H_ #include "data.h" -void editorInsertChar(struct editorConfig *E, int c); +void editorInsertChar(int c); -void editorInsertNewLine(struct editorConfig *E); +void editorInsertNewLine(); -void editorDelChar(struct editorConfig *E); +void editorDelChar(); #endif // EDITOR_OP_H_ diff --git a/include/file_io.h b/include/file_io.h index 13eaa64..f93154d 100644 --- a/include/file_io.h +++ b/include/file_io.h @@ -8,10 +8,10 @@ #include #include -char *editorRowsToString(struct editorConfig *E, int *buffer_len); +char *editorRowsToString(int *buffer_len); -void editorOpen(struct editorConfig *E, char *filename); +void editorOpen(char *filename); -void editorSave(struct editorConfig *E); +void editorSave(); #endif // FILE_IO_H_ diff --git a/include/init.h b/include/init.h index af1f94e..f538d94 100644 --- a/include/init.h +++ b/include/init.h @@ -10,6 +10,6 @@ * \brief Job's function is to initialize all the fields of editorConfig. * */ -void initEditor(struct editorConfig *E); +void initEditor(); #endif // INIT_H_ diff --git a/include/input.h b/include/input.h index 7003ff9..676be3d 100644 --- a/include/input.h +++ b/include/input.h @@ -19,15 +19,15 @@ // END \x1b[4~ || [8~ || [F || OF // DELETE \x1b[3~ -char *editorPrompt(struct editorConfig *E, char *prompt); +char *editorPrompt(char *prompt); -void editorMoveCursor(struct editorConfig *E, int key); +void editorMoveCursor(int key); /** * \fn void editorProcessKeypress() * \brief Get the last key input and do the proper action. */ -void editorProcessKeypress(struct editorConfig *E); +void editorProcessKeypress(); #endif // INPUT_H_ diff --git a/include/output.h b/include/output.h index b6db4f1..590f269 100644 --- a/include/output.h +++ b/include/output.h @@ -13,16 +13,16 @@ * \brief Draws left rows of the editor. */ -void editorDrawRows(struct editorConfig *E, struct abuf *ab); +void editorDrawRows(struct abuf *ab); -void editorRefreshScreen(struct editorConfig *E); +void editorRefreshScreen(); -void editorScroll(struct editorConfig *E); +void editorScroll(); -void editorDrawStatusBar(struct editorConfig *E, struct abuf *ab); +void editorDrawStatusBar(struct abuf *ab); -void editorDrawMessageBar(struct editorConfig *E, struct abuf *ab); +void editorDrawMessageBar(struct abuf *ab); -void editorSetStatusMessage(struct editorConfig *E, const char *fmt, ...); +void editorSetStatusMessage(const char *fmt, ...); #endif // OUTPUT_H_ diff --git a/include/row_op.h b/include/row_op.h index 911603f..9a486db 100644 --- a/include/row_op.h +++ b/include/row_op.h @@ -12,17 +12,16 @@ int editorRowCxToRx(erow *row, int cursor_x); void editorUpdateRow(erow *row); -void editorInsertRow(struct editorConfig *E, int at, char *s, size_t len); +void editorInsertRow(int at, char *s, size_t len); void editorFreeRow(erow *row); -void editorDelRow(struct editorConfig *E, int at); +void editorDelRow(int at); -void editorRowInsertChar(struct editorConfig *E, erow *row, int at, int c); +void editorRowInsertChar(erow *row, int at, int c); -void editorRowAppendString(struct editorConfig *E, erow *row, char *s, - size_t len); +void editorRowAppendString(erow *row, char *s, size_t len); -void editorRowDelchar(struct editorConfig *E, erow *row, int at); +void editorRowDelchar(erow *row, int at); #endif // ROW_OP_H_ diff --git a/include/terminal.h b/include/terminal.h index cefe14e..6ab9108 100644 --- a/include/terminal.h +++ b/include/terminal.h @@ -21,9 +21,9 @@ void die(const char *s); -void disableRawMode(struct editorConfig *E); +void disableRawMode(); -void enableRawMode(struct editorConfig *E); +void enableRawMode(); int editorReadKey(); diff --git a/main.c b/main.c index f720ceb..dbc2bd5 100644 --- a/main.c +++ b/main.c @@ -16,21 +16,21 @@ #include "include/output.h" #include "include/terminal.h" +struct editorConfig E; + int main(int argc, char *argv[]) { - struct editorConfig E; - - enableRawMode(&E); - initEditor(&E); + enableRawMode(); + initEditor(); if (argc >= 2) { - editorOpen(&E, argv[1]); + editorOpen(argv[1]); } - editorSetStatusMessage(&E, "HELP: Ctrl-S = save | Ctrl-Q = quit"); + editorSetStatusMessage("HELP: Ctrl-S = save | Ctrl-Q = quit"); while (1) { - editorRefreshScreen(&E); - editorProcessKeypress(&E); + editorRefreshScreen(); + editorProcessKeypress(); } return 0; } diff --git a/src/append_buffer.c b/src/append_buffer.c index 38cdc05..00e14a3 100644 --- a/src/append_buffer.c +++ b/src/append_buffer.c @@ -1,5 +1,7 @@ #include "../include/append_buffer.h" +extern struct editorConfig E; + void abAppend(struct abuf *ab, const char *s, int len) { char *new = realloc(ab->b, ab->len + len); diff --git a/src/editor_op.c b/src/editor_op.c index d5aa1aa..258f197 100644 --- a/src/editor_op.c +++ b/src/editor_op.c @@ -1,44 +1,46 @@ #include "../include/editor_op.h" #include "../include/row_op.h" -void editorInsertChar(struct editorConfig *E, int c) { - if (E->cursor_y == E->numrows) { - editorInsertRow(E, E->numrows, "", 0); +extern struct editorConfig E; + +void editorInsertChar(int c) { + if (E.cursor_y == E.numrows) { + editorInsertRow(E.numrows, "", 0); } - editorRowInsertChar(E, &E->row[E->cursor_y], E->cursor_x, c); - E->cursor_x++; + editorRowInsertChar(&E.row[E.cursor_y], E.cursor_x, c); + E.cursor_x++; } -void editorInsertNewLine(struct editorConfig *E) { +void editorInsertNewLine() { erow *row; - if (!E->cursor_x) { - editorInsertRow(E, E->cursor_y, "", 0); + if (!E.cursor_x) { + editorInsertRow(E.cursor_y, "", 0); } else { - row = &E->row[E->cursor_y]; - editorInsertRow(E, E->cursor_y + 1, &row->chars[E->cursor_x], - row->size - E->cursor_x); - row = &E->row[E->cursor_y]; - row->size = E->cursor_x; + row = &E.row[E.cursor_y]; + editorInsertRow(E.cursor_y + 1, &row->chars[E.cursor_x], + row->size - E.cursor_x); + row = &E.row[E.cursor_y]; + row->size = E.cursor_x; row->chars[row->size] = '\0'; editorUpdateRow(row); } - ++E->cursor_y; - E->cursor_x = 0; + ++E.cursor_y; + E.cursor_x = 0; } -void editorDelChar(struct editorConfig *E) { +void editorDelChar() { erow *row; - if (E->cursor_y == E->numrows || !(E->cursor_x || E->cursor_y)) { + if (E.cursor_y == E.numrows || !(E.cursor_x || E.cursor_y)) { return; } - row = &E->row[E->cursor_y]; - if (E->cursor_x > 0) { - editorRowDelchar(E, row, E->cursor_x - 1); - --E->cursor_x; + row = &E.row[E.cursor_y]; + if (E.cursor_x > 0) { + editorRowDelchar(row, E.cursor_x - 1); + --E.cursor_x; } else { - E->cursor_x = E->row[E->cursor_y - 1].size; - editorRowAppendString(E, &E->row[E->cursor_y - 1], row->chars, row->size); - editorDelRow(E, E->cursor_y); - --E->cursor_y; + E.cursor_x = E.row[E.cursor_y - 1].size; + editorRowAppendString(&E.row[E.cursor_y - 1], row->chars, row->size); + editorDelRow(E.cursor_y); + --E.cursor_y; } } diff --git a/src/file_io.c b/src/file_io.c index 057848b..ac535ca 100644 --- a/src/file_io.c +++ b/src/file_io.c @@ -12,22 +12,23 @@ extern char *strdup(const char *); extern ssize_t getline(char **restrict lineptr, size_t *restrict n, FILE *restrict stream); extern int ftruncate(int fd, off_t length); +extern struct editorConfig E; -char *editorRowsToString(struct editorConfig *E, int *buffer_len) { +char *editorRowsToString(int *buffer_len) { int tot_len = 0; int j; char *buf; char *p; - for (j = 0; j < E->numrows; ++j) { - tot_len += E->row[j].size + 1; + for (j = 0; j < E.numrows; ++j) { + tot_len += E.row[j].size + 1; } *buffer_len = tot_len; buf = malloc(tot_len); p = buf; - for (j = 0; j < E->numrows; ++j) { - memcpy(p, E->row[j].chars, E->row[j].size); - p += E->row[j].size; + for (j = 0; j < E.numrows; ++j) { + memcpy(p, E.row[j].chars, E.row[j].size); + p += E.row[j].size; *p = '\n'; p++; } @@ -35,11 +36,11 @@ char *editorRowsToString(struct editorConfig *E, int *buffer_len) { return buf; } -void editorOpen(struct editorConfig *E, char *filename) { +void editorOpen(char *filename) { FILE *fp; - free(E->filename); - E->filename = strdup(filename); + free(E.filename); + E.filename = strdup(filename); fp = fopen(filename, "r"); if (!fp) @@ -54,38 +55,38 @@ void editorOpen(struct editorConfig *E, char *filename) { (line[line_len - 1] == '\n' || line[line_len - 1] == '\r')) { --line_len; } - editorInsertRow(E, E->numrows, line, line_len); + editorInsertRow(E.numrows, line, line_len); } free(line); fclose(fp); - E->dirty = 0; + E.dirty = 0; } -void editorSave(struct editorConfig *E) { +void editorSave() { int len; char *buf; int fd; - if (E->filename == NULL) { - E->filename = editorPrompt(E, "Save as: %s (ESC to cancel)"); - if (E->filename == NULL) { - editorSetStatusMessage(E, "Save aborted"); + if (E.filename == NULL) { + E.filename = editorPrompt("Save as: %s (ESC to cancel)"); + if (E.filename == NULL) { + editorSetStatusMessage("Save aborted"); return; } } - buf = editorRowsToString(E, &len); - fd = open(E->filename, O_RDWR | O_CREAT, 0644); + buf = editorRowsToString(&len); + fd = open(E.filename, O_RDWR | O_CREAT, 0644); if (fd != -1) { if (ftruncate(fd, len) != -1) { if (write(fd, buf, len) == len) { close(fd); free(buf); - E->dirty = 0; - editorSetStatusMessage(E, "%d bytes written to disk", len); + E.dirty = 0; + editorSetStatusMessage("%d bytes written to disk", len); return; } } close(fd); } free(buf); - editorSetStatusMessage(E, "Can't save! I/O error: %s", strerror(errno)); + editorSetStatusMessage("Can't save! I/O error: %s", strerror(errno)); } diff --git a/src/init.c b/src/init.c index 9b06fac..8dc3d90 100644 --- a/src/init.c +++ b/src/init.c @@ -1,19 +1,24 @@ #include "../include/init.h" +#include "data.h" +#include +#include -void initEditor(struct editorConfig *E) { - E->cursor_x = 0; - E->cursor_y = 0; - E->rx = 0; - E->row_offset = 0; - E->col_offset = 0; - E->numrows = 0; - E->row = NULL; - E->dirty = 0; - E->filename = NULL; - E->status_msg[0] = '\0'; - E->status_msg_time = 0; - if (getWindowSize(&E->screenrows, &E->screencols) == -1) { +extern struct editorConfig; + +void initEditor() { + E.cursor_x = 0; + E.cursor_y = 0; + E.rx = 0; + E.row_offset = 0; + E.col_offset = 0; + E.numrows = 0; + E.row = NULL; + E.dirty = 0; + E.filename = NULL; + E.status_msg[0] = '\0'; + E.status_msg_time = 0; + if (getWindowSize(&E.screenrows, &E.screencols) == -1) { die("getWindowSize"); } - E->screenrows -= 2; + E.screenrows -= 2; } diff --git a/src/input.c b/src/input.c index 9fc3d12..57f749e 100644 --- a/src/input.c +++ b/src/input.c @@ -8,11 +8,13 @@ #include #include +extern struct editorConfig E; + /** * \fn char * editorPrompt(struct editorConfig *E, char *prompt) * \brief Return user input in a prompt when enter is hit. */ -char *editorPrompt(struct editorConfig *E, char *prompt) { +char *editorPrompt(char *prompt) { size_t buf_size = 128; char *buf = malloc(buf_size); size_t buf_len = 0; @@ -20,8 +22,8 @@ char *editorPrompt(struct editorConfig *E, char *prompt) { buf[0] = '\0'; while (1) { - editorSetStatusMessage(E, prompt, buf); - editorRefreshScreen(E); + editorSetStatusMessage(prompt, buf); + editorRefreshScreen(); c = editorReadKey(); if (c == DEL_KEY || c == CTRL_KEY('h') || c == BACKSPACE) { if (buf_len != 0) { @@ -29,12 +31,12 @@ char *editorPrompt(struct editorConfig *E, char *prompt) { } } else if (c == ESCAPE) { fprintf(stderr, "escape"); - editorSetStatusMessage(E, ""); + editorSetStatusMessage(""); free(buf); return NULL; } else if (c == '\r') { if (buf_len != 0) { - editorSetStatusMessage(E, ""); + editorSetStatusMessage(""); return buf; } } else if (!iscntrl(c) && c < 128) { @@ -48,46 +50,46 @@ char *editorPrompt(struct editorConfig *E, char *prompt) { } } -void editorMoveCursor(struct editorConfig *E, int key) { - erow *row = (E->cursor_y >= E->numrows) ? NULL : &E->row[E->cursor_y]; +void editorMoveCursor(int key) { + erow *row = (E.cursor_y >= E.numrows) ? NULL : &E.row[E.cursor_y]; int row_len; switch (key) { case ARROW_RIGHT: - if (row && E->cursor_x < row->size) { - ++E->cursor_x; - } else if (row && E->cursor_x == row->size) { - E->cursor_y++; - E->cursor_x = 0; + if (row && E.cursor_x < row->size) { + ++E.cursor_x; + } else if (row && E.cursor_x == row->size) { + E.cursor_y++; + E.cursor_x = 0; } break; case ARROW_DOWN: - if (E->cursor_y < E->numrows) { - ++E->cursor_y; + if (E.cursor_y < E.numrows) { + ++E.cursor_y; } break; case ARROW_UP: - if (E->cursor_y != 0) { - --E->cursor_y; + if (E.cursor_y != 0) { + --E.cursor_y; } break; case ARROW_LEFT: - if (E->cursor_x != 0) { - --E->cursor_x; - } else if (E->cursor_y > 0) { - --E->cursor_y; - E->cursor_x = E->row[E->cursor_y].size; + if (E.cursor_x != 0) { + --E.cursor_x; + } else if (E.cursor_y > 0) { + --E.cursor_y; + E.cursor_x = E.row[E.cursor_y].size; } break; } - row = (E->cursor_y >= E->numrows) ? NULL : &E->row[E->cursor_y]; + row = (E.cursor_y >= E.numrows) ? NULL : &E.row[E.cursor_y]; row_len = row ? row->size : 0; - if (E->cursor_x > row_len) { - E->cursor_x = row_len; + if (E.cursor_x > row_len) { + E.cursor_x = row_len; } } -void editorProcessKeypress(struct editorConfig *E) { +void editorProcessKeypress() { static int quit_times = QUIT_TIMES; int c = editorReadKey(); int times; @@ -95,33 +97,32 @@ void editorProcessKeypress(struct editorConfig *E) { switch (c) { case '\r': - editorInsertNewLine(E); + editorInsertNewLine(); break; case CTRL_KEY('q'): - if (E->dirty && quit_times > 0) { - editorSetStatusMessage(E, - "WARNING! Changes hasn't been saved. Press Ctrl-Q " + if (E.dirty && quit_times > 0) { + editorSetStatusMessage("WARNING! Changes hasn't been saved. Press Ctrl-Q " "another time to quit."); --quit_times; return; } write(STDOUT_FILENO, "\x1b[2J", 4); write(STDOUT_FILENO, CURSOR_TOP_LEFT, 3); - disableRawMode(E); + disableRawMode(); exit(0); break; case CTRL_KEY('s'): - editorSave(E); + editorSave(); break; case BEG_LINE: - E->cursor_x = 0; + E.cursor_x = 0; break; case END_LINE: - if (E->cursor_y < E->numrows) { - E->cursor_x = E->row[E->cursor_y].size; + if (E.cursor_y < E.numrows) { + E.cursor_x = E.row[E.cursor_y].size; } break; @@ -129,24 +130,24 @@ void editorProcessKeypress(struct editorConfig *E) { case CTRL_KEY('h'): case DEL_KEY: if (c == DEL_KEY) { - editorMoveCursor(E, ARROW_RIGHT); + editorMoveCursor(ARROW_RIGHT); } - editorDelChar(E); + editorDelChar(); break; case PAGE_UP: case PAGE_DOWN: { if (c == PAGE_UP) { - E->cursor_y = E->row_offset; + E.cursor_y = E.row_offset; } else if (c == PAGE_DOWN) { - E->cursor_y = E->row_offset + E->screenrows - 1; - if (E->cursor_y > E->numrows) { - E->cursor_y = E->numrows; + E.cursor_y = E.row_offset + E.screenrows - 1; + if (E.cursor_y > E.numrows) { + E.cursor_y = E.numrows; } } - times = E->screenrows; + times = E.screenrows; while (--times) { - editorMoveCursor(E, c == PAGE_UP ? ARROW_UP : ARROW_DOWN); + editorMoveCursor(c == PAGE_UP ? ARROW_UP : ARROW_DOWN); } } break; @@ -154,14 +155,14 @@ void editorProcessKeypress(struct editorConfig *E) { case ARROW_DOWN: case ARROW_LEFT: case ARROW_RIGHT: - editorMoveCursor(E, c); + editorMoveCursor(c); break; case CTRL_KEY('l'): case '\x1b': break; default: - editorInsertChar(E, c); + editorInsertChar(c); break; } quit_times = QUIT_TIMES; diff --git a/src/output.c b/src/output.c index 28b508d..a8a896a 100644 --- a/src/output.c +++ b/src/output.c @@ -4,24 +4,26 @@ #include #include -void editorDrawRows(struct editorConfig *E, struct abuf *ab) { +extern struct editorConfig E; + +void editorDrawRows(struct abuf *ab) { int y; char welcome[80]; int welcome_len; int padding; int len; int file_row; - for (y = 0; y < E->screenrows; ++y) { - file_row = y + E->row_offset; - if (file_row >= E->numrows) { - if (E->numrows == 0 && y == E->screenrows / 3) { + for (y = 0; y < E.screenrows; ++y) { + file_row = y + E.row_offset; + if (file_row >= E.numrows) { + if (E.numrows == 0 && y == E.screenrows / 3) { welcome_len = snprintf(welcome, sizeof(welcome), "Beluga text editor -- version %s", BELUGA_VERSION); - if (welcome_len > E->screencols) { - welcome_len = E->screencols; + if (welcome_len > E.screencols) { + welcome_len = E.screencols; } - padding = (E->screencols - welcome_len) / 2; + padding = (E.screencols - welcome_len) / 2; if (padding) { abAppend(ab, "~", 1); --padding; @@ -34,54 +36,54 @@ void editorDrawRows(struct editorConfig *E, struct abuf *ab) { abAppend(ab, "~", 1); } } else { - len = E->row[file_row].rsize - E->col_offset; + len = E.row[file_row].rsize - E.col_offset; if (len < 0) len = 0; - if (len > E->screencols) - len = E->screencols; - abAppend(ab, &E->row[file_row].render[E->col_offset], len); + if (len > E.screencols) + len = E.screencols; + abAppend(ab, &E.row[file_row].render[E.col_offset], len); } abAppend(ab, ERASE_END_LINE, 3); abAppend(ab, "\r\n", 2); } } -void editorScroll(struct editorConfig *E) { - E->rx = E->cursor_x; - if (E->cursor_y < E->numrows) { - E->rx = editorRowCxToRx(&E->row[E->cursor_y], E->cursor_x); +void editorScroll() { + E.rx = E.cursor_x; + if (E.cursor_y < E.numrows) { + E.rx = editorRowCxToRx(&E.row[E.cursor_y], E.cursor_x); } - if (E->cursor_y < E->row_offset) { - E->row_offset = E->cursor_y; + if (E.cursor_y < E.row_offset) { + E.row_offset = E.cursor_y; } - if (E->cursor_y >= E->row_offset + E->screenrows) { - E->row_offset = E->cursor_y - E->screenrows + 1; + if (E.cursor_y >= E.row_offset + E.screenrows) { + E.row_offset = E.cursor_y - E.screenrows + 1; } - if (E->rx < E->col_offset) { - E->col_offset = E->rx; + if (E.rx < E.col_offset) { + E.col_offset = E.rx; } - if (E->rx >= E->col_offset + E->screencols) { - E->col_offset = E->rx - E->screencols + 1; + if (E.rx >= E.col_offset + E.screencols) { + E.col_offset = E.rx - E.screencols + 1; } } -void editorDrawStatusBar(struct editorConfig *E, struct abuf *ab) { +void editorDrawStatusBar(struct abuf *ab) { int len, render_len; char status[80], render_status[80]; abAppend(ab, "\x1b[7m", 4); // inverting colors len = snprintf(status, sizeof(status), "%.20s - %d lines%s", - E->filename ? E->filename : "[No Name]", E->numrows, - E->dirty ? "*" : ""); + E.filename ? E.filename : "[No Name]", E.numrows, + E.dirty ? "*" : ""); render_len = snprintf(render_status, sizeof(render_status), "%d/%d", - E->cursor_y + 1, E->numrows); - if (len > E->screencols) { - len = E->screencols; + E.cursor_y + 1, E.numrows); + if (len > E.screencols) { + len = E.screencols; } abAppend(ab, status, len); - while (len < E->screencols) { - if (E->screencols - len == render_len) { + while (len < E.screencols) { + if (E.screencols - len == render_len) { abAppend(ab, render_status, render_len); break; } else { @@ -93,31 +95,31 @@ void editorDrawStatusBar(struct editorConfig *E, struct abuf *ab) { abAppend(ab, "\r\n", 2); } -void editorDrawMessageBar(struct editorConfig *E, struct abuf *ab) { - int msg_len = strlen(E->status_msg); +void editorDrawMessageBar(struct abuf *ab) { + int msg_len = strlen(E.status_msg); abAppend(ab, ERASE_END_LINE, 3); - if (msg_len > E->screencols) { - msg_len = E->screencols; + if (msg_len > E.screencols) { + msg_len = E.screencols; } - if (msg_len && time(NULL) - E->status_msg_time < 5) { - abAppend(ab, E->status_msg, msg_len); + if (msg_len && time(NULL) - E.status_msg_time < 5) { + abAppend(ab, E.status_msg, msg_len); } } -void editorRefreshScreen(struct editorConfig *E) { - editorScroll(E); +void editorRefreshScreen() { + editorScroll(); struct abuf ab = ABUF_INIT; char buf[32]; abAppend(&ab, HIDE_CURSOR, 6); abAppend(&ab, CURSOR_TOP_LEFT, 3); - editorDrawRows(E, &ab); - editorDrawStatusBar(E, &ab); - editorDrawMessageBar(E, &ab); + editorDrawRows(&ab); + editorDrawStatusBar(&ab); + editorDrawMessageBar(&ab); - snprintf(buf, sizeof(buf), "\x1b[%d;%dH", (E->cursor_y - E->row_offset) + 1, - (E->rx - E->col_offset) + 1); + snprintf(buf, sizeof(buf), "\x1b[%d;%dH", (E.cursor_y - E.row_offset) + 1, + (E.rx - E.col_offset) + 1); abAppend(&ab, buf, strlen(buf)); abAppend(&ab, SHOW_CURSOR, 6); @@ -126,10 +128,10 @@ void editorRefreshScreen(struct editorConfig *E) { abFree(&ab); } -void editorSetStatusMessage(struct editorConfig *E, const char *fmt, ...) { +void editorSetStatusMessage(const char *fmt, ...) { va_list ap; va_start(ap, fmt); - vsnprintf(E->status_msg, sizeof(E->status_msg), fmt, ap); + vsnprintf(E.status_msg, sizeof(E.status_msg), fmt, ap); va_end(ap); - E->status_msg_time = time(NULL); + E.status_msg_time = time(NULL); } diff --git a/src/row_op.c b/src/row_op.c index 1d902c3..97c22af 100644 --- a/src/row_op.c +++ b/src/row_op.c @@ -3,6 +3,8 @@ #include #include +extern struct editorConfig E; + int editorRowCxToRx(erow *row, int cursor_x) { int render_x = 0; int i; @@ -53,25 +55,25 @@ void editorUpdateRow(erow *row) { row->rsize = i_render; } -void editorInsertRow(struct editorConfig *E, int at, char *s, size_t len) { - if (at < 0 || at > E->numrows) { +void editorInsertRow(int at, char *s, size_t len) { + if (at < 0 || at > E.numrows) { return; } - E->row = realloc(E->row, sizeof(erow) * (E->numrows + 1)); - memmove(&E->row[at + 1], &E->row[at], sizeof(erow) * (E->numrows - at)); + E.row = realloc(E.row, sizeof(erow) * (E.numrows + 1)); + memmove(&E.row[at + 1], &E.row[at], sizeof(erow) * (E.numrows - at)); - E->row[at].size = len; - E->row[at].chars = malloc(len + 1); - memcpy(E->row[at].chars, s, len); - E->row[at].chars[len] = '\0'; + E.row[at].size = len; + E.row[at].chars = malloc(len + 1); + memcpy(E.row[at].chars, s, len); + E.row[at].chars[len] = '\0'; - E->row[at].rsize = 0; - E->row[at].render = NULL; - editorUpdateRow(&E->row[at]); + E.row[at].rsize = 0; + E.row[at].render = NULL; + editorUpdateRow(&E.row[at]); - ++E->numrows; - ++E->dirty; + ++E.numrows; + ++E.dirty; } void editorFreeRow(erow *row) { @@ -79,21 +81,21 @@ void editorFreeRow(erow *row) { free(row->chars); } -void editorDelRow(struct editorConfig *E, int at) { - if (at < 0 || at >= E->numrows) { +void editorDelRow(int at) { + if (at < 0 || at >= E.numrows) { return; } - editorFreeRow(&E->row[at]); - memmove(&E->row[at], &E->row[at + 1], sizeof(erow) * (E->numrows - at - 1)); - --E->numrows; - ++E->dirty; + editorFreeRow(&E.row[at]); + memmove(&E.row[at], &E.row[at + 1], sizeof(erow) * (E.numrows - at - 1)); + --E.numrows; + ++E.dirty; } /** * \fn editorRowInsertChar(erow *row, int at, int c) * \param at Index of where we want to insert the char */ -void editorRowInsertChar(struct editorConfig *E, erow *row, int at, int c) { +void editorRowInsertChar(erow *row, int at, int c) { if (at < 0 || at > row->size) { at = row->size; } @@ -102,17 +104,16 @@ void editorRowInsertChar(struct editorConfig *E, erow *row, int at, int c) { ++row->size; row->chars[at] = c; editorUpdateRow(row); - ++E->dirty; + ++E.dirty; } -void editorRowAppendString(struct editorConfig *E, erow *row, char *s, - size_t len) { +void editorRowAppendString(erow *row, char *s, size_t len) { row->chars = realloc(row->chars, row->size + len + 1); memcpy(&row->chars[row->size], s, len); row->size += len; row->chars[row->size] = '\0'; editorUpdateRow(row); - ++E->dirty; + ++E.dirty; } /** @@ -120,12 +121,12 @@ void editorRowAppendString(struct editorConfig *E, erow *row, char *s, * \brief Delete the a char at the chosen position on the given row * \param at Index of the char to delete * \param row Row on operation is made */ -void editorRowDelchar(struct editorConfig *E, erow *row, int at) { +void editorRowDelchar(erow *row, int at) { if (at < 0 || at >= row->size) { return; } memmove(&row->chars[at], &row->chars[at + 1], row->size - at); --row->size; editorUpdateRow(row); - ++E->dirty; + ++E.dirty; } diff --git a/src/terminal.c b/src/terminal.c index 581deb1..0ac54ac 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -1,4 +1,5 @@ #include "../include/terminal.h" +#include "data.h" void die(const char *s) { write(STDOUT_FILENO, "\x1b[2J", 4); @@ -7,18 +8,18 @@ void die(const char *s) { exit(1); } -void disableRawMode(struct editorConfig *E) { - if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E->orig_termios) == -1) { +void disableRawMode() { + if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E.orig_termios) == -1) { die("tcsetattr"); } } -void enableRawMode(struct editorConfig *E) { - if (tcgetattr(STDIN_FILENO, &E->orig_termios) == -1) { +void enableRawMode() { + if (tcgetattr(STDIN_FILENO, &E.orig_termios) == -1) { die("tcgetattr"); } - struct termios raw = E->orig_termios; + struct termios raw = E.orig_termios; raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); raw.c_oflag &= ~(OPOST); raw.c_cflag |= (CS8); From 54db6321ad822c75a453aee7b80565e43e998766 Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Wed, 24 Sep 2025 10:29:31 +0200 Subject: [PATCH 03/19] add CI/CD config --- .gitea/workflows/build.yml | 34 ++++++++++++++++++++++++++++++++++ meson.build | 9 +++++---- 2 files changed, 39 insertions(+), 4 deletions(-) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..96b8214 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,34 @@ +name: Meson Build and Deploy + +on: + push: + branches: ["lisp"] + pull_request: + +jobs: + build: + runs-on: home-1 + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y meson ninja-build gcc + + - name: Configure Meson + run: meson setup build + + - name: Build project + run: meson compile -C build + + - name: Run tests + run: meson test -C build --print-errorlogs || true + + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: beluga + path: build/ diff --git a/meson.build b/meson.build index 5018014..dcd91de 100644 --- a/meson.build +++ b/meson.build @@ -2,12 +2,12 @@ project('editor', 'c', version : '1.0.0', default_options : [ 'warning_level=2', - 'c_std=c99' ] ) # Check if we're using Clang and add Clang-specific options cc = meson.get_compiler('c') +m = cc.find_library('m', required: true) if cc.get_id() == 'clang' add_project_arguments([ '-Wextra', @@ -33,7 +33,7 @@ if cc.get_id() == 'clang' endif # Include directory -inc_dir = include_directories('include') +inc_dir = include_directories('include', 'lisp-interpreter/dist') # Source files src_files = files( @@ -45,12 +45,13 @@ src_files = files( 'src/input.c', 'src/output.c', 'src/row_op.c', - 'src/terminal.c' + 'src/terminal.c', ) # Executable executable('editor', src_files, include_directories : inc_dir, - install : true + install : true, + dependencies: [m] ) From be31e83fb98839230377ddd673d064affec9684f Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Wed, 24 Sep 2025 10:45:11 +0200 Subject: [PATCH 04/19] update build.yml --- .gitea/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 96b8214..05f7ac0 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -12,6 +12,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + with: + tokens: ${{ secrets.GITEA_TOKEN }} - name: Install dependencies run: | From ab482df6046407dc871d4ab84135352fdcb2da14 Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Wed, 24 Sep 2025 10:48:45 +0200 Subject: [PATCH 05/19] get submodules --- .gitea/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 05f7ac0..e3127c3 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -14,6 +14,7 @@ jobs: uses: actions/checkout@v4 with: tokens: ${{ secrets.GITEA_TOKEN }} + submodules: recursive - name: Install dependencies run: | From d8fc7d2d6763fabe0edc9f3523e9b687e262c821 Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Wed, 24 Sep 2025 10:58:09 +0200 Subject: [PATCH 06/19] adding lisp-interpreter --- .gitea/workflows/build.yml | 1 - .gitmodules | 3 - lisp-interpreter | 1 - lisp-interpreter/.gitignore | 27 + lisp-interpreter/INTERNALS.md | 64 + lisp-interpreter/Makefile | 26 + lisp-interpreter/README.md | 207 + lisp-interpreter/dist/lisp.h | 3215 +++ lisp-interpreter/dist/lisp_lib.h | 2180 ++ lisp-interpreter/printer.c | 24 + lisp-interpreter/repl.c | 163 + lisp-interpreter/run_tests.sh | 57 + lisp-interpreter/sample.c | 55 + lisp-interpreter/stdlib/0_sequences.scm | 90 + lisp-interpreter/stdlib/1_forms.scm | 78 + lisp-interpreter/stdlib/2_forms.scm | 75 + lisp-interpreter/stdlib/3_math.scm | 35 + lisp-interpreter/stdlib/4_sequences.scm | 133 + lisp-interpreter/stdlib/5_streams.scm | 58 + lisp-interpreter/stdlib/6_other.scm | 63 + lisp-interpreter/stdlib/concat.sh | 20 + lisp-interpreter/stdlib/lib.c | 1612 ++ lisp-interpreter/stdlib/lib.h | 31 + lisp-interpreter/stdlib/text2c.sh | 9 + lisp-interpreter/test.lisp | 78 + .../tests/benchmarks/palindrome.scm | 34 + lisp-interpreter/tests/code/8.scm | 47 + lisp-interpreter/tests/code/bugs.scm | 56 + lisp-interpreter/tests/code/dp.scm | 59 + lisp-interpreter/tests/code/draw-tree.scm | 5 + lisp-interpreter/tests/code/forms.scm | 93 + lisp-interpreter/tests/code/gc.scm | 37 + lisp-interpreter/tests/code/hash_table.scm | 29 + .../tests/code/include/draw-tree.scm | 160 + .../tests/code/include/prolog.scm | 283 + lisp-interpreter/tests/code/lists.scm | 69 + lisp-interpreter/tests/code/macros.scm | 33 + lisp-interpreter/tests/code/norvig.scm | 71 + lisp-interpreter/tests/code/numbers.scm | 82 + lisp-interpreter/tests/code/permute.scm | 21 + lisp-interpreter/tests/code/prolog.scm | 5 + lisp-interpreter/tests/code/sicp.scm | 158 + lisp-interpreter/tests/code/streams.scm | 32 + lisp-interpreter/tests/code/strings.scm | 60 + lisp-interpreter/tests/code/vectors.scm | 75 + lisp-interpreter/tests/data/big_data1.scm | 20 + lisp-interpreter/tests/data/big_data2.scm | 12 + .../tests/data/big_data_canada.json | 9 + .../tests/data/big_data_canada.sexpr | 1 + lisp-interpreter/tests/data/big_data_gen.json | 20792 ++++++++++++++++ .../tests/data/big_data_gen.sexpr | 1 + lisp-interpreter/tests/data/json-to-lisp.py | 38 + lisp-interpreter/tests/data/test.sh | 4 + lisp-interpreter/tests/experiments/quasi.scm | 81 + lisp-interpreter/tests/printer/.gitignore | 2 + lisp-interpreter/tests/printer/sample.scm | 19 + lisp-interpreter/tests/printer/test.sh | 14 + 57 files changed, 30702 insertions(+), 5 deletions(-) delete mode 100644 .gitmodules delete mode 160000 lisp-interpreter create mode 100644 lisp-interpreter/.gitignore create mode 100644 lisp-interpreter/INTERNALS.md create mode 100644 lisp-interpreter/Makefile create mode 100644 lisp-interpreter/README.md create mode 100644 lisp-interpreter/dist/lisp.h create mode 100644 lisp-interpreter/dist/lisp_lib.h create mode 100644 lisp-interpreter/printer.c create mode 100644 lisp-interpreter/repl.c create mode 100755 lisp-interpreter/run_tests.sh create mode 100644 lisp-interpreter/sample.c create mode 100644 lisp-interpreter/stdlib/0_sequences.scm create mode 100644 lisp-interpreter/stdlib/1_forms.scm create mode 100644 lisp-interpreter/stdlib/2_forms.scm create mode 100644 lisp-interpreter/stdlib/3_math.scm create mode 100644 lisp-interpreter/stdlib/4_sequences.scm create mode 100644 lisp-interpreter/stdlib/5_streams.scm create mode 100644 lisp-interpreter/stdlib/6_other.scm create mode 100755 lisp-interpreter/stdlib/concat.sh create mode 100644 lisp-interpreter/stdlib/lib.c create mode 100644 lisp-interpreter/stdlib/lib.h create mode 100755 lisp-interpreter/stdlib/text2c.sh create mode 100644 lisp-interpreter/test.lisp create mode 100644 lisp-interpreter/tests/benchmarks/palindrome.scm create mode 100644 lisp-interpreter/tests/code/8.scm create mode 100644 lisp-interpreter/tests/code/bugs.scm create mode 100644 lisp-interpreter/tests/code/dp.scm create mode 100644 lisp-interpreter/tests/code/draw-tree.scm create mode 100644 lisp-interpreter/tests/code/forms.scm create mode 100644 lisp-interpreter/tests/code/gc.scm create mode 100644 lisp-interpreter/tests/code/hash_table.scm create mode 100644 lisp-interpreter/tests/code/include/draw-tree.scm create mode 100644 lisp-interpreter/tests/code/include/prolog.scm create mode 100644 lisp-interpreter/tests/code/lists.scm create mode 100644 lisp-interpreter/tests/code/macros.scm create mode 100644 lisp-interpreter/tests/code/norvig.scm create mode 100644 lisp-interpreter/tests/code/numbers.scm create mode 100644 lisp-interpreter/tests/code/permute.scm create mode 100644 lisp-interpreter/tests/code/prolog.scm create mode 100644 lisp-interpreter/tests/code/sicp.scm create mode 100644 lisp-interpreter/tests/code/streams.scm create mode 100644 lisp-interpreter/tests/code/strings.scm create mode 100644 lisp-interpreter/tests/code/vectors.scm create mode 100644 lisp-interpreter/tests/data/big_data1.scm create mode 100644 lisp-interpreter/tests/data/big_data2.scm create mode 100644 lisp-interpreter/tests/data/big_data_canada.json create mode 100644 lisp-interpreter/tests/data/big_data_canada.sexpr create mode 100644 lisp-interpreter/tests/data/big_data_gen.json create mode 100644 lisp-interpreter/tests/data/big_data_gen.sexpr create mode 100644 lisp-interpreter/tests/data/json-to-lisp.py create mode 100755 lisp-interpreter/tests/data/test.sh create mode 100644 lisp-interpreter/tests/experiments/quasi.scm create mode 100644 lisp-interpreter/tests/printer/.gitignore create mode 100644 lisp-interpreter/tests/printer/sample.scm create mode 100755 lisp-interpreter/tests/printer/test.sh diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index e3127c3..05f7ac0 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -14,7 +14,6 @@ jobs: uses: actions/checkout@v4 with: tokens: ${{ secrets.GITEA_TOKEN }} - submodules: recursive - name: Install dependencies run: | diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index d3f9d6c..0000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "lisp-interpreter"] - path = lisp-interpreter - url = https://github.com/justinmeiners/lisp-interpreter.git diff --git a/lisp-interpreter b/lisp-interpreter deleted file mode 160000 index 366bfb9..0000000 --- a/lisp-interpreter +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 366bfb9bdbf0b268bf299cc25178da0d6e626c59 diff --git a/lisp-interpreter/.gitignore b/lisp-interpreter/.gitignore new file mode 100644 index 0000000..4ab7a4c --- /dev/null +++ b/lisp-interpreter/.gitignore @@ -0,0 +1,27 @@ +*.out +/lisp +*.exe +*.stackdump +temp/ +/printer +/sample + + +# Xcode +.DS_Store +build/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +*.xcworkspace +!default.xcworkspace +xcuserdata +profile +*.moved-aside +DerivedData +.idea/ diff --git a/lisp-interpreter/INTERNALS.md b/lisp-interpreter/INTERNALS.md new file mode 100644 index 0000000..592b735 --- /dev/null +++ b/lisp-interpreter/INTERNALS.md @@ -0,0 +1,64 @@ +# Internals + +Technical design decisions and tricks. + + +## Memory + +We do not use tagged pointers, for simplicity and portability. +`Lisp` objects are fairly large due to alignment requirements (16 bytes). +However, they are usually only stored in this form when interacting +in the C stack. In data structures, we prefer to store `LispVal` (8 bytes) +and pack the types in with the block info. + +All allocations are aligned to `sizeof(LispVal)` to avoid unaligned access. + +- [Chicken representation](http://www.more-magic.net/posts/internals-data-representation.html) + +## Garbage Collection + +The choice to use explicit, rather than automatic garbage collection, was made so that the interpreter does not need to keep track of every lisp object on the stack, only the most important objects. + If garbage collection was allowed to trigger at any time in the middle of a C function call, then the interpreter would need to be able to "see" all the lisp values on the call stack, in order to prevent them from being collected. Providing this feature would make integrating with C code much more complicated and conflict with the project's goal of being easily embeddable. + +This means that when `lisp_collect` is called, all lisp values which are not reachable from the global environment or the function's parameters become invalidated. Be conscious of when and where you call the garbage collector. + +An alternative solution is used in [Lua][lua-memory]. + +The interpreter uses the [Cheney algorithim][cheney-mta] for garbage collection. Memory is allocated in fixed size pages. When an allocation is request and the current page does not have enough space remaining, a new page will be allocated to fulfill the allocation. So, allocations will continue to use up more memory until garbage collection. +Note that tail call recursion will not overflow the stack, but will use additional memory for each function call. + +[cheney-mta]: https://en.wikipedia.org/wiki/Cheney%27s_algorithm +[mta-info]: http://home.pipeline.com/~hbaker1/CheneyMTA.html +[lua-memory]: https://www.lua.org/pil/24.2.html +[gc-internals]: http://www.more-magic.net/posts/internals-gc.html + +## General design + +- [Lysp][lysp] +- [Lispy][lispy] + +[lysp]: http://piumarta.com/software/lysp/ +[lispy]: http://norvig.com/lispy.html + + +## Environments/Tables + +Tables are only resized at garbage collect time. +This leads us to linked list-chaining as opposed to open addresing +because linked list chaining can scale infinitely while +waiting for garbage collection. + +- [SICP][sicp-environments] +- [MIT][environment-objects] + +[sicp-environments]: https://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_sec_3.2 +[environment-objects]: https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_14.html + +What is the cost of a helper (nested) function? +It must allocate a new lambda, but it doesn't have to read/expand it again. + +## Symbols + +- Reference counting symbol table? - http://sandbox.mc.edu/~bennet/cs404/ex/lisprcnt.html + + diff --git a/lisp-interpreter/Makefile b/lisp-interpreter/Makefile new file mode 100644 index 0000000..78183e4 --- /dev/null +++ b/lisp-interpreter/Makefile @@ -0,0 +1,26 @@ +CFLAGS = -Idist/ -Wall -pedantic -Wstrict-prototypes -O3 +LDLIBS = -lm +CC=cc + +all: lisp printer sample + +clean: + rm -f lisp + rm -f printer + rm -f sample + rm -f dist/lisp_lib.h + +lisp: repl.c dist/lisp.h dist/lisp_lib.h + ${CC} repl.c -o $@ ${CFLAGS} ${LDLIBS} + +printer: printer.c dist/lisp.h + ${CC} printer.c -o $@ ${CFLAGS} ${LDLIBS} + +sample: sample.c dist/lisp.h dist/lisp_lib.h + ${CC} sample.c -o $@ ${CFLAGS} ${LDLIBS} + +dist/lisp_lib.h: stdlib/lib.h stdlib/lib.c + cd stdlib; ./concat.sh > ../$@; + + +.PHONY: all clean diff --git a/lisp-interpreter/README.md b/lisp-interpreter/README.md new file mode 100644 index 0000000..4dff138 --- /dev/null +++ b/lisp-interpreter/README.md @@ -0,0 +1,207 @@ + +Lisp Interpreter +================ + +> Any sufficiently complicated C or Fortran program contains an ad hoc, informally-specified, bug-ridden, slow implementation of half of Common Lisp. -- Philip Greenspun + +An embeddable lisp/scheme interpreter written in C. +It includes a subset of R5RS with some extensions from MIT Scheme. + +I created this while reading [SICP](https://github.com/justinmeiners/sicp-excercises) to improve my knowledge of lisp +and to make an implementation that allows me to easily add scripting to my own programs. + +### Philosophy + +- **Simple**: This project doesn't aim to be optimal, or fully standards compliant. + It is just a robust foundation for scripting. + It is implemented as a recursive AST walker on the C stack. + + If you need more try [s7](https://ccrma.stanford.edu/software/snd/snd/s7.html) or [chicken](https://www.call-cc.org) + +- **Unintrusive**: Just copy in the header file. Turn on and off major features with build macros. It should be portable between major platforms. + +- **Unsurprising**: You should be able to read the source code and understand how it works. + The C API should work how you expect. + +- **First class data**: Lisp s-expressions are undervalued as an alternative to JSON or XML. + Preprocessor flags can remove most scheme features if you just want to read s-expressions + and manipulate them in C. + +### Features + +- C99, no dependencies, two files. +- Core lisp language `if`, `let`, `do`, `lambda`, `cons`, `eval`, etc. +- Subset of scheme R5RS library: lists, vectors, hash tables, integers, real numbers, characters, strings, and integers. +- Common lisp goodies: unhygenic macros (`define-macro`), `push`, `dotimes`. +- Easy to integrate C functions. +- Exact [garbage collection](#garbage-collection) with explicit invocation. +- REPL command line tool. +- Efficient parsing and manipulation of large data files. + +### Non-Features + +- Compiler or VM. +- Full numeric tower. +- Full call/cc. This only supports simple stack jumps. +- syntax rules. +- UNIX system interface/IO library. + +### Examples + +### Interactive programming with Read, eval, print loop. +```bash +$ ./lisp +> (define (sqr x) (* x x))) +> (define length 40) +> (define area 0) +> (set! area (sqr length)) +1600 +``` + +### Quickstart + +```c +LispContext ctx = lisp_init(); +lisp_load_lib(ctx); + +LispError error; +Lisp program = lisp_read("(+ 1 2)", &error, ctx); +Lisp result = lisp_eval(program, &error, ctx); + +if (error != LISP_ERROR_NONE) + lisp_print(result); ; => 3 + +lisp_shutdown(ctx); +``` + +### Loading Data + +Lisp s-expressions can be used as a lightweight substitute to JSON or XML. +Looking up keys which are reused is even more efficient due to symbol comparison. + +JSON +```json +{ + "name" : "Bob Jones", + "age" : 54, + "city" : "SLC", +} +``` + +Lisp +```scheme +#((name . "Bob Jones") + (age . 54) + (city . "SLC")) +``` +Loading the structure in C. + +```c +LispContext ctx = lisp_init(); +// load lisp structure +Lisp data = lisp_read_file(file, ctx); +// get value for age +Lisp age_entry = lisp_avector_ref(data, lisp_make_symbol("AGE", ctx), ctx); +// ... +lisp_shutdown(ctx); +``` + +### Calling C functions + +C functions can be used to extend the interpreter, or call into C code. + +```c +Lisp integer_range(Lisp args, LispError* e, LispContext ctx) +{ + // first argument + LispInt start = lisp_int(lisp_car(args)); + args = lisp_cdr(args); + // second argument + LispInt end = lisp_int(lisp_car(args)); + + if (end < start) + { + *e = LISP_ERROR_OUT_OF_BOUNDS; + return lisp_null(); + } + + LispInt n = end - start; + Lisp numbers = lisp_make_vector(n, ctx); + + for (LispInt i = 0; i < n; ++i) + lisp_vector_set(numbers, i, lisp_make_int(start + i)); + + return numbers; +} +// ... + +// wrap in Lisp object +Lisp func = lisp_make_func(integers_in_range); + +// add to enviornment with symbol INTEGER-RANGE +Lisp env = lisp_env_global(ctx); +lisp_env_define(env, lisp_make_symbol("INTEGER-RANGE", ctx), func, ctx); +``` + +In Lisp +```scheme +(integer-range 5 15) +; => #(5 6 7 8 9 10 11 12 13 14) +``` +Constants can also be stored in the environment in a similar fashion. + +```c +Lisp pi = lisp_make_real(3.141592); +lisp_env_define(env, lisp_make_symbol("PI", ctx), pi, ctx); +``` +### Macros + +Common Lisp style (`defmacro`) is available with the name `define-macro`. + + (define-macro nil! (lambda (x) + `(set! ,x '())) + +### Garbage Collection + +Garbage is only collected if it is explicitly told to. +You can invoke the garbage collector in C: + + lisp_collect(ctx); + +OR in lisp code: + + (gc-flip) + +Note that whenever a collect is issued +ANY `Lisp` value in `C`which is not accessible +through the global environment may become invalid. +Be careful what variables you hold onto in C. + +Don't call `eval` in a custom defined C function unless you know what you are doing. + +See [internals](INTERNALS.md) for more details. + +## Documentation + +For the language refer to [MIT Scheme](https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_toc.html) +with the understanding that not everything is missing. +If we do implement a feature that MIT scheme has, we will try to follow their specificaiton. + +For the C API refer to the header and sample programs (`repl.c`, `printer.c`). + +## Project License + +Copyright (c) 2020 Justin Meiners + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + diff --git a/lisp-interpreter/dist/lisp.h b/lisp-interpreter/dist/lisp.h new file mode 100644 index 0000000..6f407a0 --- /dev/null +++ b/lisp-interpreter/dist/lisp.h @@ -0,0 +1,3215 @@ +/* + Created by: Justin Meiners + Repo; https://github.com/justinmeiners/lisp-interpreter + License: MIT (See end of file) + + Do this: + #define LISP_IMPLEMENTATION + #include "lisp.h" + #include "lisp_lib.h" + + in at least one C or C++ file in order to generate the implementation. + + ---------------------- + QUICKSTART + ---------------------- + + LispContext ctx = lisp_init(); + lisp_load_lib(ctx); + + LispError error; + Lisp program = lisp_read("(+ 1 2)", &error, ctx); + Lisp result = lisp_eval(program, &error, ctx); + + if (error != LISP_ERROR_NONE) + lisp_printf(stderr, result); + + lisp_shutdown(ctx); + + ---------------------- + OPTIONS + ---------------------- + + These macros can be defined before include to configure options. + + // Build in debug mode with extra checks and logs: + #define LISP_DEBUG + + // Change how much data is read from a file at a time. + #define LISP_FILE_CHUNK_SIZE 8192 + */ + + +#ifndef LISP_H +#define LISP_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include + +typedef enum +{ + LISP_NULL = 0, + LISP_REAL, // decimal/floating point type + LISP_INT, // integer type + LISP_CHAR, // ASCII character + LISP_PAIR, // cons pair (car, cdr) + LISP_SYMBOL, // unquoted strings + LISP_STRING, // quoted strings + LISP_LAMBDA, // user defined lambda + LISP_FUNC, // C function + LISP_TABLE, // key/value storage + LISP_BOOL, // t/f + LISP_VECTOR, // heterogenous array but contiguous allocation + LISP_PROMISE, // lazy value + LISP_JUMP, // jump point/non-escaping continuation + LISP_PORT_IN, + LISP_PORT_OUT, + LISP_PTR, // pointer to arbitary C object. +} LispType; + +typedef double LispReal; +typedef long long LispInt; + +typedef union +{ + int char_val; + LispReal real_val; + LispInt int_val; + void* ptr_val; + void(*func_val)(void); +} LispVal; + +typedef struct +{ + LispVal val; + LispType type; +} Lisp; + +typedef enum +{ + LISP_ERROR_NONE = 0, + LISP_ERROR_FILE_OPEN, + LISP_ERROR_MMAP, + LISP_ERROR_READ_SYNTAX, + LISP_ERROR_FORM_SYNTAX, + LISP_ERROR_UNDEFINED_VAR, + LISP_ERROR_BAD_OP, + LISP_ERROR_OUT_OF_BOUNDS, + LISP_ERROR_ARG_TYPE, + LISP_ERROR_TOO_MANY_ARGS, + LISP_ERROR_TOO_FEW_ARGS, + LISP_ERROR_RUNTIME, +} LispError; + +typedef struct +{ + struct LispImpl* p; +} LispContext; + +typedef Lisp(*LispCFunc)(Lisp, LispError*, LispContext); + +// ----------------------------------------- +// CONTEXT +// ----------------------------------------- + +LispContext lisp_init(void); +void lisp_shutdown(LispContext ctx); + +// garbage collection. +// this will free all objects which are not reachable from root_to_save or the global env +Lisp lisp_collect(Lisp root_to_save, LispContext ctx); +void lisp_print_collect_stats(LispContext ctx); +const char *lisp_error_string(LispError error); + +void lisp_set_env(Lisp env, LispContext ctx); +Lisp lisp_env(LispContext ctx); + +void lisp_set_stderr(FILE *file, LispContext ctx); +FILE *lisp_stderr(LispContext ctx); + +// Macros +Lisp lisp_macro_table(LispContext ctx); +// the macro table keeps strong references to its members. +// So if you want to delete them you need to make a new table. +void lisp_set_macro_table(Lisp table, LispContext ctx); + +// ----------------------------------------- +// REPL +// ----------------------------------------- + +// Reads text into raw s-expressions. + +// Null terminated. +Lisp lisp_read(const char *text, LispError* out_error, LispContext ctx); +// Range restricted (not necessarily null-terminated). +Lisp lisp_read_range(const char* start, const char* end, LispError* out_error, LispContext ctx); +// Read from contents of file path. +Lisp lisp_read_path(const char* path, LispError* out_error, LispContext ctx); +// This is intended for unseekable files (like stdin) and may be less efficient. +Lisp lisp_read_file(FILE *file, LispError* out_error, LispContext ctx); + +// Evaluate a lisp expression. +Lisp lisp_eval(Lisp expr, LispError* out_error, LispContext ctx); +// Provide an environment parameter. +Lisp lisp_eval2(Lisp expr, Lisp env, LispError* out_error, LispContext ctx); +Lisp lisp_apply(Lisp operator, Lisp args, LispError* out_error, LispContext ctx); +// Expands special Lisp forms and checks syntax (called by eval). +Lisp lisp_macroexpand(Lisp lisp, LispError* out_error, LispContext ctx); + +// print out a lisp structure in +void lisp_printf(FILE *file, Lisp l); + +void lisp_displayf(FILE *file, Lisp l); + +// Calls proc with an argument containing the current continuation. +Lisp lisp_call_cc(Lisp proc, LispError* out_error, LispContext ctx); + +// ----------------------------------------- +// PRIMITIVES +// ----------------------------------------- +#define lisp_type(x) ((x).type) +#define lisp_eq(a, b) ((a).val.ptr_val == (b).val.ptr_val) +int lisp_equal(Lisp a, Lisp b); +int lisp_equal_r(Lisp a, Lisp b); +#define lisp_null() ((Lisp) { .val = { .ptr_val = NULL }, .type = LISP_NULL }) + +#define lisp_is_null(x) ((x).type == LISP_NULL) + +// Pairs +Lisp lisp_car(Lisp p); +Lisp lisp_cdr(Lisp p); +void lisp_set_car(Lisp p, Lisp x); +void lisp_set_cdr(Lisp p, Lisp x); +Lisp lisp_cons(Lisp car, Lisp cdr, LispContext ctx); +#define lisp_is_pair(p) ((p).type == LISP_PAIR) + +// Numbers +Lisp lisp_make_int(LispInt n); +LispInt lisp_int(Lisp x); +Lisp lisp_parse_int(const char *string); + +Lisp lisp_make_real(LispReal x); +LispReal lisp_real(Lisp x); +Lisp lisp_parse_real(const char *string); + +LispReal lisp_number_to_real(Lisp x); +LispInt lisp_number_to_int(Lisp x); + +// Booleans +Lisp lisp_make_bool(int t); +int lisp_bool(Lisp x); +#define lisp_true() (lisp_make_bool(1)) +#define lisp_false() (lisp_make_bool(0)) +int lisp_is_true(Lisp x); + +// Characters +Lisp lisp_make_char(int c); +int lisp_char(Lisp l); +Lisp lisp_eof(void); + +// Null terminated byte strings (ASCII) +Lisp lisp_make_string(int n, LispContext ctx); +Lisp lisp_make_string2(const char *c_string, LispContext ctx); +Lisp lisp_substring(Lisp s, int start, int end, LispContext ctx); + +void lisp_string_fill(Lisp s, Lisp character); // inplace. +int lisp_string_ref(Lisp s, int i); +void lisp_string_set(Lisp s, int i, int c); +int lisp_string_length(Lisp s); +const char *lisp_string(Lisp s); + +// Low level string storage +Lisp lisp_make_buffer(int cap, LispContext ctx); +Lisp lisp_buffer_copy(Lisp s, LispContext ctx); +void lisp_buffer_fill(Lisp s, int start, int end, int x); +char *lisp_buffer(Lisp s); +int lisp_buffer_capacity(Lisp s); + +// Symbols (interned strings) +Lisp lisp_make_symbol(const char *string, LispContext ctx); +Lisp lisp_gen_symbol(LispContext ctx); // uninterned +const char *lisp_symbol_string(Lisp x); + +// Arbitrary C objects. +Lisp lisp_make_ptr(void *ptr); +void *lisp_ptr(Lisp l); + +// Ports +Lisp lisp_make_port(FILE* file, int input); +FILE *lisp_port(Lisp l); + + +// ----------------------------------------- +// DATA STRUCTURES +// ----------------------------------------- + +// Lists +Lisp lisp_list_copy(Lisp x, LispContext ctx); +Lisp lisp_make_list(Lisp x, int n, LispContext ctx); +Lisp lisp_make_list2(Lisp *x, int n, LispContext ctx); + +Lisp lisp_list_reverse(Lisp l); // O(n). inplace. +Lisp lisp_list_reverse2(Lisp l, Lisp tail); // O(n) +Lisp lisp_list_append(Lisp l, Lisp tail, LispContext ctx); // O(n) +Lisp lisp_list_advance(Lisp l, int i); // O(n) +Lisp lisp_list_ref(Lisp l, int i); // O(n) +int lisp_list_length(Lisp l); // O(n) +int lisp_is_list(Lisp l); // O(n) + +// Association lists "alists" +// Given a list of pairs ((key1 val1) (key2 val2) ... (keyN valN)) +// returns the value with tgiven key. +Lisp lisp_alist_ref(Lisp l, Lisp key); // O(n) + +// Heterogeneous arrays. +Lisp lisp_make_vector(int n, LispContext ctx); // Contents are uninitialized. Be careful. +Lisp lisp_make_vector2(Lisp *x, int n, LispContext ctx); + +int lisp_vector_length(Lisp v); +Lisp lisp_vector_ref(Lisp v, int i); // O(1) +void lisp_vector_set(Lisp v, int i, Lisp x); // O(1). inplace. +Lisp lisp_vector_swap(Lisp v, int i, int j); // inplace. +void lisp_vector_fill(Lisp v, Lisp x); // inplace. +Lisp lisp_vector_grow(Lisp v, int n, LispContext ctx); +Lisp lisp_subvector(Lisp old, int start, int end, LispContext ctx); + +// association vector like "alist" +Lisp lisp_avector_ref(Lisp l, Lisp key); // O(n) + +// Hash tables +Lisp lisp_make_table(LispContext ctx); +void lisp_table_set(Lisp t, Lisp key, Lisp x, LispContext ctx); +Lisp lisp_table_get(Lisp t, Lisp key, int* present); +int lisp_table_size(Lisp t); +Lisp lisp_table_to_alist(Lisp t, LispContext ctx); + +// ----------------------------------------- +// LANGUAGE +// ----------------------------------------- + +// Lambdas (compound procedures) +Lisp lisp_make_lambda(Lisp args, Lisp body, Lisp env, LispContext ctx); +Lisp lisp_lambda_body(Lisp l); +Lisp lisp_lambda_env(Lisp l); + +// C functions (compiled procedures) +Lisp lisp_make_func(LispCFunc func_ptr); +LispCFunc lisp_func(Lisp l); + +// Convenience for defining many C functions at a time. +typedef struct +{ + const char* name; + LispCFunc func_ptr; +} LispFuncDef; +void lisp_table_define_funcs(Lisp t, const LispFuncDef* defs, LispContext ctx); + +// Evaluation environments +Lisp lisp_env_extend(Lisp l, Lisp table, LispContext ctx); +Lisp lisp_env_lookup(Lisp l, Lisp key, int *present); +void lisp_env_define(Lisp l, Lisp key, Lisp x, LispContext ctx); +int lisp_env_set(Lisp l, Lisp key, Lisp x, LispContext ctx); +int lisp_is_env(Lisp l); + +// Promises +Lisp lisp_make_promise(Lisp proc, LispContext ctx); +int lisp_promise_forced(Lisp p); +Lisp lisp_promise_val(Lisp p); +Lisp lisp_promise_proc(Lisp p); +void lisp_promise_store(Lisp p, Lisp x); + +#ifndef LISP_PAGE_SIZE +#define LISP_PAGE_SIZE 512 * 1024 +#endif + +#ifndef LISP_STACK_DEPTH +#define LISP_STACK_DEPTH 1024 +#endif + +#ifndef LISP_IDENTIFIER_MAX +#define LISP_IDENTIFIER_MAX 1024 +#endif + +#ifdef __cplusplus +} +#endif + +#endif + +#ifdef LISP_IMPLEMENTATION + +#include +#include +#include + +#include +#include +#include +#include +#include + +#ifdef _WIN32 +#define LISP_NO_MMAP +#endif + +#ifndef LISP_NO_MMAP +#include +#include +#include +#endif + +#define IS_POW2(x) (((x) != 0) && ((x) & ((x)-1)) == 0) + +enum +{ + GC_CLEAR = 0, + GC_GONE = 1, + GC_NEED_VISIT = 2, +}; + +typedef struct Page +{ + struct Page* next; + size_t size; + size_t capacity; + char buffer[]; +} Page; + +static Page* page_create(size_t capacity) +{ + Page* page = malloc(sizeof(Page) + capacity); + page->capacity = capacity; + page->size = 0; + page->next = NULL; + return page; +} + +void page_destroy(Page* page) { free(page); } + +typedef struct +{ + Page* bottom; + Page* top; + size_t size; + size_t page_count; +} Heap; + +typedef struct Block +{ + // Be careful with alignment and padding! + // 32 or 64 + union + { + struct Block* forward; + size_t size; + } info; + + // 32 + union + { + struct + { + uint8_t car_type; + uint8_t cdr_type; + } pair; + + struct + { + int length; + } vector; + + struct + { + int length; + } symbol; + + struct + { + uint8_t cached; + uint8_t type; + } promise; + + struct + { + uint8_t body_type; + uint8_t args_type; + } lambda; + + struct + { + int capacity; + } string; + } d; + + // 32 + uint8_t gc_state; + uint8_t type; +} Block; + +static void heap_init(Heap* heap) +{ + heap->bottom = page_create(LISP_PAGE_SIZE); + heap->top = heap->bottom; + + heap->size = 0; + heap->page_count = 1; +} + +static void heap_shutdown(Heap* heap) +{ + Page* page = heap->bottom; + while (page) + { + Page* next = page->next; + page_destroy(page); + page = next; + } + heap->bottom = NULL; + heap->top = NULL; +} + +static size_t align_to_bytes(size_t n, size_t k) +{ + // https://stackoverflow.com/questions/29925524/how-do-i-round-to-the-next-32-bit-alignment + return ((n + k - 1) / k) * k; +} + +static void* heap_alloc(size_t alloc_size, LispType type, Heap* heap) +{ + assert(alloc_size > 0); + + // allocations should be aligned so that pointers to blocks are aligned. + // This will add a little bit of extra padding to strings and symbols. + alloc_size = align_to_bytes(alloc_size, sizeof(LispVal)); + assert(alloc_size % sizeof(LispVal) == 0); + + Page* to_use; + if (alloc_size >= LISP_PAGE_SIZE) + { + /* add to bottom of stack. + As soon as this page is made it it is full and can't be used. + However, our current page may still have room. + */ + to_use = page_create(alloc_size); + to_use->next = heap->bottom; + heap->bottom = to_use; + ++heap->page_count; + } + else if (alloc_size + heap->top->size > heap->top->capacity) + { + /* add to top of the stack. + need a new page because ours is full */ + to_use = page_create(LISP_PAGE_SIZE); + heap->top->next = to_use; + heap->top = to_use; + ++heap->page_count; + } + else + { + /* use the current page on top */ + to_use = heap->top; + } + + void* address = to_use->buffer + to_use->size; + to_use->size += alloc_size; + heap->size += alloc_size; + + Block* block = address; + block->gc_state = GC_CLEAR; + block->info.size = alloc_size; + block->type = type; + return address; +} + +enum { + SYM_IF = 0, + SYM_BEGIN, + SYM_QUOTE, + SYM_QUASI_QUOTE, + SYM_UNQUOTE, + SYM_UNQUOTE_SPLICE, + SYM_DEFINE, + SYM_DEFINE_MACRO, + SYM_SET, + SYM_LAMBDA, + SYM_CONS, + SYM_COUNT +}; + +struct LispImpl +{ + Heap heap; + + Lisp* stack; + size_t stack_ptr; + size_t stack_depth; + + FILE* err_port; + + Lisp symbols; + Lisp env; + Lisp macros; + + int symbol_counter; + + Lisp symbol_cache[SYM_COUNT]; + + size_t gc_stat_freed; + size_t gc_stat_time; +}; + +static Lisp get_sym(int sym, LispContext ctx) { return ctx.p->symbol_cache[sym]; } + +static void* gc_alloc(size_t size, LispType type, LispContext ctx) +{ + return heap_alloc(size, type, &ctx.p->heap); +} + +typedef struct +{ + Block block; + LispVal car; + LispVal cdr; +} Pair; + +typedef struct +{ + Block block; + char string[]; +} String; + +typedef struct +{ + Block block; + LispVal entries[]; +} Vector; + +static Lisp val_to_list_(LispVal x) +{ + return (Lisp) { x, x.ptr_val == NULL ? LISP_NULL : LISP_PAIR }; +} + +int lisp_equal(Lisp a, Lisp b) +{ + switch (a.type) + { + case LISP_NULL: + return a.type == b.type; + case LISP_BOOL: + return lisp_bool(a) == lisp_bool(b) && a.type == b.type; + case LISP_CHAR: + return lisp_char(a) == lisp_char(b) && a.type == b.type; + case LISP_FUNC: + return lisp_func(a) == lisp_func(b) && a.type == b.type; + case LISP_INT: + if (b.type == LISP_INT) return lisp_int(a) == lisp_int(b); + else return lisp_number_to_real(a) == lisp_number_to_real(b); + case LISP_REAL: + return lisp_real(a) == lisp_number_to_real(b); + default: + return a.val.ptr_val == b.val.ptr_val && a.type == b.type; + } +} + +int lisp_equal_r(Lisp a, Lisp b) +{ + switch (a.type) + { + case LISP_VECTOR: + { + if (a.type != b.type) return 0; + int n = lisp_vector_length(a); + int m = lisp_vector_length(b); + if (n != m) return 0; + + for (int i = 0; i < n; ++i) + { + if (!lisp_equal_r(lisp_vector_ref(a, i), lisp_vector_ref(b, i))) + return 0; + } + + return 1; + } + case LISP_PAIR: + { + if (a.type != b.type) return 0; + while (lisp_is_pair(a) && lisp_is_pair(b)) + { + if (!lisp_equal_r(lisp_car(a), lisp_car(b))) return 0; + a = lisp_cdr(a); + b = lisp_cdr(b); + } + + return lisp_equal_r(a, b); + } + case LISP_STRING: + { + return a.type == b.type && strcmp(lisp_string(a), lisp_string(b)) == 0; + } + default: + return lisp_equal(a, b); + } +} + +Lisp lisp_make_int(LispInt n) +{ + Lisp l; + l.type = LISP_INT; + l.val.int_val = n; + return l; +} + +LispInt lisp_int(Lisp x) { return x.val.int_val; } + +Lisp lisp_parse_int(const char* string) +{ + return lisp_make_int((LispInt)strtol(string, NULL, 10)); +} + +Lisp lisp_make_bool(int t) +{ + LispVal val; + val.char_val = t; + return (Lisp) { val, LISP_BOOL }; +} + +int lisp_bool(Lisp x) { return x.val.char_val; } + +int lisp_is_true(Lisp x) +{ + // In scheme everything which is not #f is true. + return (lisp_type(x) == LISP_BOOL && !lisp_bool(x)) ? 0 : 1; +} + +Lisp lisp_make_real(LispReal x) +{ + return (Lisp) { .val.real_val = x, .type = LISP_REAL }; +} + +Lisp lisp_parse_real(const char* string) +{ + return lisp_make_real(strtod(string, NULL)); +} + +LispReal lisp_real(Lisp x) { return x.val.real_val; } + +LispReal lisp_number_to_real(Lisp x) +{ + return lisp_type(x) == LISP_REAL ? x.val.real_val : (LispReal)lisp_int(x); +} + +LispInt lisp_number_to_int(Lisp x) +{ + return lisp_type(x) == LISP_INT ? x.val.int_val : (LispInt)lisp_real(x); +} + +static Pair* pair_get_(Lisp p) +{ + assert(p.type == LISP_PAIR); + return p.val.ptr_val; +} + +Lisp lisp_car(Lisp p) +{ + const Pair* pair = pair_get_(p); + return (Lisp) { pair->car, (LispType)pair->block.d.pair.car_type }; +} + +Lisp lisp_cdr(Lisp p) +{ + const Pair* pair = pair_get_(p); + return (Lisp) { pair->cdr, (LispType)pair->block.d.pair.cdr_type }; +} + +void lisp_set_car(Lisp p, Lisp x) +{ + Pair* pair = pair_get_(p); + pair->car = x.val; + pair->block.d.pair.car_type = x.type; +} + +void lisp_set_cdr(Lisp p, Lisp x) +{ + Pair* pair = pair_get_(p); + pair->cdr = x.val; + pair->block.d.pair.cdr_type = x.type; +} + +Lisp lisp_cons(Lisp car, Lisp cdr, LispContext ctx) +{ + Pair* pair = gc_alloc(sizeof(Pair), LISP_PAIR, ctx); + pair->car = car.val; + pair->cdr = cdr.val; + pair->block.d.pair.car_type = car.type; + pair->block.d.pair.cdr_type = cdr.type; + Lisp p; + p.type = pair->block.type; + p.val.ptr_val = pair; + return p; +} + +Lisp lisp_list_copy(Lisp l, LispContext ctx) +{ + Lisp tail = lisp_null(); + while (lisp_is_pair(l)) + { + tail = lisp_cons(lisp_car(l), tail, ctx); + l = lisp_cdr(l); + } + return lisp_list_reverse(tail); +} + +Lisp lisp_make_list(Lisp x, int n, LispContext ctx) +{ + Lisp tail = lisp_null(); + for (int i = 0; i < n; ++i) + tail = lisp_cons(x, tail, ctx); + return tail; +} + +Lisp lisp_make_list2(Lisp *x, int n, LispContext ctx) +{ + Lisp tail = lisp_null(); + for (int i = n - 1; i >= 0; --i) + tail = lisp_cons(x[i], tail, ctx); + return tail; +} + +Lisp lisp_list_reverse2(Lisp l, Lisp tail) +{ + while (lisp_is_pair(l)) + { + Lisp next = lisp_cdr(l); + lisp_set_cdr(l, tail); + tail = l; + l = next; + } + return tail; +} + +Lisp lisp_list_reverse(Lisp l) { return lisp_list_reverse2(l, lisp_null()); } + +Lisp lisp_list_append(Lisp l, Lisp tail, LispContext ctx) +{ + // (a b) (c) -> (a b c) + l = lisp_list_reverse(lisp_list_copy(l, ctx)); + return lisp_list_reverse2(l, tail); +} + +Lisp lisp_list_advance(Lisp l, int i) +{ + while (i > 0) + { + if (!lisp_is_pair(l)) return l; + l = lisp_cdr(l); + --i; + } + return l; +} + +Lisp lisp_list_ref(Lisp l, int n) +{ + l = lisp_list_advance(l, n); + if (lisp_is_pair(l)) return lisp_car(l); + return lisp_null(); +} + +int lisp_list_length(Lisp l) +{ + int n = 0; + while (lisp_is_pair(l)) { ++n; l = lisp_cdr(l); } + return n; +} + +int lisp_is_list(Lisp l) +{ + if (lisp_is_null(l)) + { + return 1; + } + else if (lisp_is_pair(l)) + { + return lisp_is_list(lisp_cdr(l)); + } + else + { + return 0; + } +} + +Lisp lisp_alist_ref(Lisp l, Lisp key) +{ + while (lisp_is_pair(l)) + { + Lisp pair = lisp_car(l); + if (lisp_is_pair(pair) && lisp_eq(lisp_car(pair), key)) + { + return pair; + } + l = lisp_cdr(l); + } + return lisp_false(); +} + +static int vector_len_(const Vector* v) { return v->block.d.vector.length; } + +// types are stored in an array of bytes at the end of the data. +static char* vector_types_(Vector* v) +{ + // should be safe with aliasing. + // https://gist.github.com/jibsen/da6be27cde4d526ee564 + char* base = (char*)v; + return base + sizeof(Vector) + sizeof(LispVal) * vector_len_(v); +} + +static Vector* vector_get_(Lisp v) +{ + assert(lisp_type(v) == LISP_VECTOR); + return v.val.ptr_val; +} + +Lisp lisp_make_vector(int n, LispContext ctx) +{ + size_t size = sizeof(Vector) + sizeof(LispVal) * n + sizeof(char) * n; + Vector* vector = gc_alloc(size, LISP_VECTOR, ctx); + vector->block.d.vector.length = n; + + LispVal val; + val.ptr_val = vector; + return (Lisp) { val, LISP_VECTOR }; +} + +Lisp lisp_make_vector2(Lisp *x, int n, LispContext ctx) +{ + Lisp v = lisp_make_vector(n, ctx); + for (int i = 0; i < n; ++i) + lisp_vector_set(v, i, x[i]); + return v; +} + +int lisp_vector_length(Lisp v) { return vector_len_(vector_get_(v)); } + +Lisp lisp_vector_ref(Lisp v, int i) +{ + Vector* vector = vector_get_(v); + assert(i < vector_len_(vector)); + Lisp x = { vector->entries[i], (LispType)(vector_types_(vector)[i]) }; + return x; +} + +void lisp_vector_set(Lisp v, int i, Lisp x) +{ + Vector* vector = vector_get_(v); + assert(i < vector_len_(vector)); + vector->entries[i] = x.val; + vector_types_(vector)[i] = (char)x.type; +} + +Lisp lisp_vector_swap(Lisp v, int i, int j) +{ + Lisp tmp = lisp_vector_ref(v, i); + lisp_vector_set(v, i, lisp_vector_ref(v, j)); + lisp_vector_set(v, j, tmp); + return v; +} + +void lisp_vector_fill(Lisp v, Lisp x) +{ + int n = lisp_vector_length(v); + Vector* vector = vector_get_(v); + char* entry_types = vector_types_(vector); + + for (int i = 0; i < n; ++i) + { + vector->entries[i] = x.val; + entry_types[i] = (char)x.type; + } +} + +Lisp lisp_subvector(Lisp old, int start, int end, LispContext ctx) +{ + assert(start <= end); + Vector* src = vector_get_(old); + + int m = vector_len_(src); + if (end > m) end = m; + + int n = end - start; + Lisp new_v = lisp_make_vector(n, ctx); + Vector* dst = vector_get_(new_v); + memcpy(dst->entries, src->entries + start, sizeof(LispVal) * n); + memcpy(vector_types_(dst), vector_types_(src) + start, sizeof(char) * n); + return new_v; +} + +Lisp lisp_vector_grow(Lisp v, int n, LispContext ctx) +{ + Vector* src = vector_get_(v); + int m = vector_len_(src); + assert(n >= m); + + if (n == m) + { + return v; + } + else + { + Lisp new_v = lisp_make_vector(n, ctx); + Vector* dst = vector_get_(new_v); + memcpy(dst->entries, src->entries, sizeof(LispVal) * m); + memcpy(vector_types_(dst), vector_types_(src), sizeof(char) * m); + return new_v; + } +} + +Lisp lisp_avector_ref(Lisp v, Lisp key) +{ + int n = lisp_vector_length(v); + for (int i = 0; i < n; ++i) + { + Lisp pair = lisp_vector_ref(v, i); + if (lisp_is_pair(pair) && lisp_eq(lisp_car(pair), key)) return pair; + } + return lisp_false(); +} + +static uint64_t hash_uint64(uint64_t x) +{ + x *= 0xff51afd7ed558ccd; + x ^= x >> 32; + return x; +} + +static uint64_t hash_val(LispVal x) { return hash_uint64((uint64_t)x.int_val); } + +// hash table +// linked list chaining +typedef struct +{ + Block block; + int size; + int capacity; + + // vectors. uninitialized if capacity == 0. + // entries of vals may be unitialized if the correspding key entry is. + LispVal keys; + LispVal vals; +} Table; + +static Table *table_get_(Lisp t) +{ + assert(lisp_type(t) == LISP_TABLE); + return t.val.ptr_val; +} + +Lisp lisp_make_table(LispContext ctx) +{ + Table *table = gc_alloc(sizeof(Table), LISP_TABLE, ctx); + table->size = 0; + table->capacity = 0; + + LispVal x; + x.ptr_val = table; + return (Lisp) { x, LISP_TABLE }; +} + +static void table_grow_(Lisp t, size_t new_capacity, LispContext ctx) +{ + Table *table = table_get_(t); + if (new_capacity < 16) new_capacity = 16; + assert(IS_POW2(new_capacity)); + + int old_capacity = table->capacity; + Lisp old_keys = { table->keys, LISP_VECTOR }; + Lisp old_vals = { table->vals, LISP_VECTOR }; + + table->capacity = new_capacity; + int n = table->size; + table->size = 0; + + // table vals are uninitialized. + Lisp new_vals = lisp_make_vector(new_capacity, ctx); + Lisp new_keys = lisp_make_vector(new_capacity, ctx); + lisp_vector_fill(new_keys, lisp_null()); + table->vals = new_vals.val; + table->keys = new_keys.val; + + for (int i = 0; i < old_capacity; ++i) + { + Lisp key = lisp_vector_ref(old_keys, i); + if (!lisp_is_null(key)) + lisp_table_set(t, key, lisp_vector_ref(old_vals, i), ctx); + } + assert(n == table->size); +} + +void lisp_table_set(Lisp t, Lisp key, Lisp x, LispContext ctx) +{ + Table *table = table_get_(t); + if (2 * table->size >= table->capacity) + { + table_grow_(t, table->capacity * 2, ctx); + } + assert(2 * table->size < table->capacity); + + Lisp keys = { table->keys, LISP_VECTOR }; + Lisp vals = { table->vals, LISP_VECTOR }; + + uint32_t i = hash_val(key.val); + while (1) + { + i &= (table->capacity - 1); + + Lisp saved_key = lisp_vector_ref(keys, i); + if (lisp_is_null(saved_key)) + { + ++table->size; + lisp_vector_set(keys, i, key); + lisp_vector_set(vals, i, x); + return; + } + else if (lisp_eq(saved_key, key)) + { + lisp_vector_set(vals, i, x); + return; + } + ++i; + } +} + +Lisp lisp_table_get(Lisp t, Lisp key, int* present) +{ + Table *table = table_get_(t); + int capacity = table->capacity; + if (capacity == 0) + { + *present = 0; + return lisp_null(); + } + + Lisp keys = { table->keys, LISP_VECTOR }; + Lisp vals = { table->vals, LISP_VECTOR }; + + uint32_t i = hash_val(key.val); + while (1) + { + i &= (capacity - 1); + + Lisp saved_key = lisp_vector_ref(keys, i); + + if (lisp_is_null(saved_key)) + { + *present = 0; + return lisp_null(); + } + else if (lisp_eq(saved_key, key)) + { + *present = 1; + return lisp_vector_ref(vals, i); + } + ++i; + } +} + +Lisp lisp_table_to_alist(Lisp t, LispContext ctx) +{ + const Table *table = table_get_(t); + Lisp result = lisp_null(); + + Lisp keys = { table->keys, LISP_VECTOR }; + Lisp vals = { table->vals, LISP_VECTOR }; + + for (int i = 0; i < table->capacity; ++i) + { + Lisp key = lisp_vector_ref(keys, i); + if (!lisp_is_null(key)) + { + result = lisp_cons(lisp_cons(key, lisp_vector_ref(vals, i), ctx), result, ctx); + } + } + return result; +} + +int lisp_table_size(Lisp t) { return table_get_(t)->size; } + +void lisp_table_define_funcs(Lisp t, const LispFuncDef* defs, LispContext ctx) +{ + while (defs->name) + { + lisp_table_set(t, lisp_make_symbol(defs->name, ctx), lisp_make_func(defs->func_ptr), ctx); + ++defs; + } +} + +static String* string_get_(Lisp s) +{ + assert(lisp_type(s) == LISP_STRING); + return s.val.ptr_val; +} + +Lisp lisp_make_buffer(int cap, LispContext ctx) +{ + assert(cap >= 0); + String* string = gc_alloc(sizeof(String) + cap, LISP_STRING, ctx); + string->block.d.string.capacity = cap; + + LispVal val; + val.ptr_val = string; + return (Lisp){ val, string->block.type }; +} + +Lisp lisp_buffer_copy(Lisp s, LispContext ctx) +{ + int cap = lisp_buffer_capacity(s); + Lisp b = lisp_make_buffer(cap, ctx); + memcpy(lisp_buffer(b), lisp_buffer(s), cap); + return b; +} + +int lisp_buffer_capacity(Lisp s) +{ + return string_get_(s)->block.d.string.capacity; +} + +void lisp_buffer_fill(Lisp s, int start, int end, int x) +{ + int n = lisp_buffer_capacity(s); + if (start > n) start = n; + if (end > n) end = n; + memset(lisp_buffer(s) + start, x, end - start); +} + +char *lisp_buffer(Lisp s) { return string_get_(s)->string; } +const char *lisp_string(Lisp s) { return lisp_buffer(s); } + +Lisp lisp_make_string(int n, LispContext ctx) +{ + Lisp s = lisp_make_buffer(n + 1, ctx); + lisp_buffer(s)[n] = '\0'; + return s; +} + +Lisp lisp_make_string2(const char* c_string, LispContext ctx) +{ + size_t length = strlen(c_string); + Lisp s = lisp_make_string(length, ctx); + memcpy(lisp_buffer(s), c_string, length); + return s; +} + +int lisp_string_length(Lisp s) { return strlen(lisp_string(s)); } + +int lisp_string_ref(Lisp s, int i) { + const String* str = string_get_(s); + assert(i >= 0 && i < lisp_buffer_capacity(s)); + return (int)str->string[i]; +} + +void lisp_string_set(Lisp s, int i, int c) +{ + assert(c >= 0 && c <= 127); + assert(i >= 0 && i < lisp_buffer_capacity(s)); + string_get_(s)->string[i] = (char)c; +} + +Lisp lisp_substring(Lisp s, int start, int end, LispContext ctx) +{ + assert(start <= end); + + int count = start; + const char *first = lisp_string(s); + while (*first && count) { + --count; + ++first; + } + + count = (end - start); + const char *last = first; + while (*last && count) + { + --count; + ++last; + } + Lisp result = lisp_make_string(last - first, ctx); + memcpy(lisp_buffer(result), first, last - first); + return result; +} + +Lisp lisp_make_char(int c) +{ + Lisp l; + l.type = LISP_CHAR; + l.val.char_val = c; + return l; +} + +int lisp_char(Lisp l) { return l.val.char_val; } +Lisp lisp_eof(void) { return lisp_make_char(-1); } + +static uint64_t hash_bytes(const char *buffer, size_t n) +{ + uint64_t x = 0xcbf29ce484222325; + for (size_t i = 0; i < n; i++) + { + x ^= buffer[i]; + x *= 0x100000001b3; + x ^= x >> 32; + } + return x; +} + +typedef struct +{ + Block block; + // built in linked list + LispVal next; + char text[]; +} Symbol; + +static Symbol* symbol_get_(Lisp x) +{ + assert(lisp_type(x) == LISP_SYMBOL); + return x.val.ptr_val; +} +int lisp_symbol_length(Lisp l) { return symbol_get_(l)->block.d.symbol.length; } +const char* lisp_symbol_string(Lisp l) { return symbol_get_(l)->text; } + +static Lisp symbol_make_(const char* string, int length, LispContext ctx) +{ + Symbol* symbol = gc_alloc(sizeof(Symbol) + (length + 1), LISP_SYMBOL, ctx); + memcpy(symbol->text, string, length); + symbol->text[length] = '\0'; + symbol->next.ptr_val = NULL; + symbol->block.d.symbol.length = length; + + LispVal x; + x.ptr_val = symbol; + return (Lisp) { x, LISP_SYMBOL }; +} + +static Lisp symbol_intern_(Lisp table, const char* string, size_t length, LispContext ctx) +{ + uint64_t hash = hash_bytes(string, length); + + // the key in the hash table is the string hash + Lisp key; + key.type = LISP_INT; + key.val.int_val = (LispInt)hash; + + // linked list chaining in the resulting value. + int present; + Lisp first_symbol = lisp_table_get(table, key, &present); + + // symbol found in linked list chain + if (present) + { + Lisp it = first_symbol; + while (it.val.ptr_val != NULL) + { + if (lisp_symbol_length(it) == length && + strncmp(lisp_symbol_string(it), string, length) == 0) { + return it; + } + it.val = symbol_get_(it)->next; + } + } + + // new symbol + Lisp symbol = symbol_make_(string, length, ctx); + + symbol_get_(symbol)->next = first_symbol.val; + lisp_table_set(table, key, symbol, ctx); + return symbol; +} + +Lisp lisp_make_symbol(const char* string, LispContext ctx) +{ + assert(string); + int length = strnlen(string, LISP_IDENTIFIER_MAX); + return symbol_intern_(ctx.p->symbols, string, length, ctx); +} + +Lisp lisp_gen_symbol(LispContext ctx) +{ + char text[64]; + int bytes = snprintf(text, 64, ":G%d", ctx.p->symbol_counter++); + return symbol_make_(text, bytes, ctx); +} + +Lisp lisp_make_ptr(void *ptr) +{ + return (Lisp) { .val = { .ptr_val = ptr }, .type = LISP_PTR }; +} + + +void *lisp_ptr(Lisp l) +{ + assert(lisp_type(l) == LISP_PTR); + return l.val.ptr_val; +} + +Lisp lisp_make_port(FILE *file, int input) { + return (Lisp) { + .val = { .ptr_val = file }, + .type = (input == 1) ? LISP_PORT_IN : LISP_PORT_OUT + }; +} + +FILE *lisp_port(Lisp l) +{ + assert(lisp_type(l) == LISP_PORT_IN || lisp_type(l) == LISP_PORT_OUT); + return l.val.ptr_val; +} + +Lisp lisp_make_func(LispCFunc func) +{ + Lisp l; + l.type = LISP_FUNC; + l.val.func_val = (void(*)(void))func; + return l; +} + +LispCFunc lisp_func(Lisp l) +{ + assert(lisp_type(l) == LISP_FUNC); + return (LispCFunc)l.val.func_val; +} + +typedef struct +{ + Block block; + LispVal body; + LispVal args; + LispVal env; +} Lambda; + +Lisp lisp_make_lambda(Lisp args, Lisp body, Lisp env, LispContext ctx) +{ + Lambda* lambda = gc_alloc(sizeof(Lambda), LISP_LAMBDA, ctx); + lambda->block.d.lambda.body_type = (uint8_t)lisp_type(body); + lambda->block.d.lambda.args_type = (uint8_t)lisp_type(args); + + assert(lisp_is_env(env)); + + lambda->args = args.val; + lambda->body = body.val; + lambda->env = env.val; + + LispVal val; + val.ptr_val = lambda; + return (Lisp) { val, LISP_LAMBDA }; +} + +static Lambda* lambda_get_(Lisp l) +{ + assert(l.type == LISP_LAMBDA); + return l.val.ptr_val; +} + +Lisp lisp_lambda_body(Lisp l) +{ + const Lambda* lambda = lambda_get_(l); + return (Lisp) { lambda->body, (LispType)lambda->block.d.lambda.body_type }; +} + +Lisp lambda_args_(Lisp l) +{ + const Lambda* lambda = lambda_get_(l); + return (Lisp) { lambda->args, (LispType)lambda->block.d.lambda.args_type }; +} + +Lisp lisp_lambda_env(Lisp l) +{ + const Lambda* lambda = lambda_get_(l); + return val_to_list_(lambda->env); +} + +typedef struct +{ + Block block; + LispVal val_or_proc; +} Promise; + +Lisp lisp_make_promise(Lisp proc, LispContext ctx) +{ + assert(lisp_type(proc) == LISP_LAMBDA || lisp_type(proc) == LISP_FUNC); + Promise* promise = gc_alloc(sizeof(Promise), LISP_PROMISE, ctx); + promise->block.d.promise.cached = 0; + promise->block.d.promise.type = lisp_type(proc); + promise->val_or_proc = proc.val; + + LispVal val; + val.ptr_val = promise; + return (Lisp) { val, LISP_PROMISE }; +} + +static Promise* promise_get_(Lisp p) +{ + assert(p.type == LISP_PROMISE); + return p.val.ptr_val; +} + +void lisp_promise_store(Lisp p, Lisp x) +{ + Promise* promise = promise_get_(p); + assert(!promise->block.d.promise.cached); + promise->block.d.promise.cached = 1; + promise->block.d.promise.type = lisp_type(x); + promise->val_or_proc = x.val; +} + +int lisp_promise_forced(Lisp p) +{ + const Promise* promise = promise_get_(p); + return (int)promise->block.d.promise.cached; +} + +static Lisp promise_body_or_val_(Lisp p) +{ + const Promise* promise = promise_get_(p); + LispType type = (LispType)promise->block.d.promise.type; + return (Lisp) { promise->val_or_proc, type }; +} + +Lisp lisp_promise_proc(Lisp p) +{ + const Promise* promise = promise_get_(p); + assert(!promise->block.d.promise.cached); + return promise_body_or_val_(p); +} + +Lisp lisp_promise_val(Lisp p) +{ + const Promise* promise = promise_get_(p); + assert(promise->block.d.promise.cached); + return promise_body_or_val_(p); +} + +typedef struct +{ + Block block; + Lisp result; + jmp_buf jmp; + int stack_ptr; +} Jump; + +static Jump* jump_get_(Lisp x) { + assert(x.type == LISP_JUMP); + return x.val.ptr_val; +} + +static Lisp make_jump_(LispContext ctx) +{ + Jump* j = gc_alloc(sizeof(Jump), LISP_JUMP, ctx); + j->result = lisp_false(); + return (Lisp) { .val = { .ptr_val = j }, .type = LISP_JUMP }; +} + +// READER +typedef enum +{ + TOKEN_NONE = 0, + TOKEN_L_PAREN, + TOKEN_R_PAREN, + TOKEN_DOT, + TOKEN_QUOTE, + TOKEN_BQUOTE, + TOKEN_COMMA, + TOKEN_AT, + TOKEN_SYMBOL, + TOKEN_STRING, + TOKEN_INT, + TOKEN_FLOAT, + TOKEN_CHAR, + TOKEN_BOOL, + TOKEN_HASH_L_PAREN, +} TokenType; + +/* for debug +static const char* token_type_name[] = { + "NONE", "L_PAREN", "R_PAREN", "#", ".", "QUOTE", "SYMBOL", "STRING", "INT", "FLOAT", +}; */ + +typedef struct +{ + const char* start; + const char* end; + + const char* token_start; + const char* token_end; + TokenType token; +} Lexer; + +static +void lexer_init(Lexer* lex, const char* start, const char* end) +{ + lex->start = start; + lex->end = end; + lex->token_start = start; + lex->token_end = start; + lex->token = TOKEN_NONE; +} + +static +const char* lex_skip_empty_(const char* f, const char* l) +{ + while (1) + { + // skip whitespace + while (f != l && isspace(*f)) ++f; + // skip comments to end of line + if (f != l && *f == ';') + { + ++f; + while (f != l && *f != '\n') ++f; + } + else + { + return f; + } + } +} + +static +const char* match_char_(const char* f, const char* l) +{ + if (f == l) return NULL; + if (isalnum(*f)) { + ++f; + while (f != l && isalnum(*f)) ++f; + return f; + } else if (isprint(*f)) { + ++f; + return f; + } else { + return NULL; + } +} + +static +const char* match_number_(const char* f, const char* l, int* out_has_decimal) +{ + if (f == l) return NULL; + if (*f == '-' || *f == '+') ++f; + if (f == l || !isdigit(*f)) return NULL; + ++f; + while (f != l && isdigit(*f)) ++f; + if (f == l || *f != '.') { + *out_has_decimal = 0; + return f; + } + + ++f; + *out_has_decimal = 1; + while (f != l && isdigit(*f)) ++f; + return f; +} + +static +int is_symbol_(char c) +{ + if (c < '!' || c > 'z') return 0; + switch (c) { + case '(': + case ')': + case '#': + case ';': + return 0; + default: + return 1; + } +} + +const char* match_symbol_(const char* f, const char* l) +{ + // need at least one valid symbol character + if (f == l || !is_symbol_(*f)) return NULL; + ++f; + while (f != l && is_symbol_(*f)) ++f; + return f; +} + +static +const char* match_string_(const char* f, const char* l) +{ + while (f != l) + { + switch (*f) + { + case '"': + ++f; + return f; + case '\\': + ++f; + if (f == l) return NULL; + ++f; + break; + case '\0': + case '\n': + return NULL; + default: + ++f; + } + } + return NULL; +} + +static +size_t lexer_position_(Lexer* lex) { + return lex->token_end - lex->start; +} + +static +size_t lexer_copy_token(Lexer* lex, size_t start_index, size_t max_length, char* dest) +{ + size_t size = lex->token_end - lex->token_start; + assert(size >= start_index); + size -= start_index; + if (size > max_length) size = max_length; + memcpy(dest, lex->token_start + start_index, size); + return size; +} + +static void lexer_next_token(Lexer* lex) { + const char* l = lex->end; + const char* f = lex_skip_empty_(lex->token_end, l); + lex->token_end = f; + lex->token_start = f; + lex->token = TOKEN_NONE; + + int has_decimal; + + switch (*f) + { + case '\0': break; + case '(': + lex->token = TOKEN_L_PAREN; + lex->token_end = f + 1; + break; + case ')': + lex->token = TOKEN_R_PAREN; + lex->token_end = f + 1; + break; + case '.': + lex->token = TOKEN_DOT; + lex->token_end = f + 1; + break; + case '\'': + lex->token = TOKEN_QUOTE; + lex->token_end = f + 1; + break; + case '`': + lex->token = TOKEN_BQUOTE; + lex->token_end = f + 1; + break; + case ',': + lex->token = TOKEN_COMMA; + lex->token_end = f + 1; + break; + case '@': + lex->token = TOKEN_AT; + lex->token_end = f + 1; + break; + case '#': + // skip # + ++f; + if (f == l) break; + + switch (*f) { + case '(': + // #( + lex->token = TOKEN_HASH_L_PAREN; + lex->token_end = f + 1; + break; + case '\\': + ++f; + // #_char + f = match_char_(f, l); + if (f) { + lex->token = TOKEN_CHAR; + lex->token_end = f; + } + break; + case 't': + case 'f': + // #t or #f + lex->token = TOKEN_BOOL; + lex->token_end = f + 1; + break; + default: + break; + } + break; + case '"': + ++f; + f = match_string_(f, l); + if (f) { + lex->token = TOKEN_STRING; + lex->token_end = f; + } + break; + default: + f = match_number_(f, l, &has_decimal); + if (f) { + lex->token = has_decimal ? TOKEN_FLOAT : TOKEN_INT; + lex->token_end = f; + } else { + f = lex->token_end; + f = match_symbol_(f, l); + + if (f) { + lex->token = TOKEN_SYMBOL; + lex->token_end = f; + } + } + break; + } +} + +// requires: length(out) >= (last - first) +static +char* string_unescape_(const char* first, const char* last, char* out) +{ + // becase first >= out we can use this in place + while (first != last) + { + if (*first == '\\') + { + ++first; + switch (*first) + { + case '\\': *out = '\\'; break; + case 'n': *out = '\n'; break; + case 't': *out = '\t'; break; + case 'f': *out = '\f'; break; + case '"': *out = '"'; break; + default: break; + } + } + else + { + *out = *first; + } + ++out; + ++first; + } + return out; +} + +static void print_escaped_(const char* c, FILE* file) +{ + while (*c) + { + switch (*c) + { + case '\n': + fputc('\\', file); + fputc('n', file); + break; + case '\t': + fputc('\\', file); + fputc('t', file); + break; + case '\f': + fputc('\\', file); + fputc('f', file); + break; + case '\"': + fputc('\\', file); + fputc('"', file); + break; + default: + fputc(*c, file); + break; + } + ++c; + } +} + +static Lisp parse_number_(Lexer* lex, LispContext ctx) +{ + char scratch[128]; + size_t length = lexer_copy_token(lex, 0, 128, scratch); + scratch[length] = '\0'; + + switch (lex->token) + { + case TOKEN_INT: return lisp_parse_int(scratch); + case TOKEN_FLOAT: return lisp_parse_real(scratch); + default: assert(0); + } +} + +static Lisp parse_string_(Lexer* lex, LispContext ctx) +{ + // -2 length to skip quotes + size_t size = (lex->token_end - lex->token_start) - 2; + Lisp l = lisp_make_buffer(size + 1, ctx); + char* str = lisp_buffer(l); + lexer_copy_token(lex, 1, size, str); + char* out = string_unescape_(str, str + size, str); + *out = '\0'; + return l; +} + +static Lisp parse_symbol_(Lexer* lex, LispContext ctx) +{ + char scratch[LISP_IDENTIFIER_MAX]; + size_t length = lexer_copy_token(lex, 0, LISP_IDENTIFIER_MAX, scratch); + // always convert symbols to uppercase + for (int i = 0; i < length; ++i) + scratch[i] = toupper(scratch[i]); + return symbol_intern_(ctx.p->symbols, scratch, length, ctx); +} + +static const char* ascii_char_name_table_[] = +{ + "EOF", + "NUL", "SOH", "STX", "ETX", "EOT", + "ENQ", "ACK", "BEL", "backspace", "tab", + "newline", "VT", "page", "return", "SO", + "SI", "DLE", "DC1", "DC2", "DC3", + "DC4", "NAK", "SYN", "ETB", "CAN", + "EM", "SUB", "altmode", "FS", "GS", "RS", + "backnext", "space", NULL +}; + +static int parse_char_(Lexer* lex) +{ + char scratch[64]; + size_t length = lexer_copy_token(lex, 2, 64, scratch); + scratch[length] = '\0'; + + if (length == 1) + { + return (int)scratch[0]; + } + else + { + const char** name_it = ascii_char_name_table_; + + int i = 0; + while (*name_it) + { + if (strcmp(*name_it, scratch) == 0) return i - 1; + ++name_it; + ++i; + } + return -1; + } +} + +// read tokens and construct S-expresions +static Lisp parse_list_r(Lexer* lex, jmp_buf error_jmp, LispContext ctx) +{ + int quote_type = SYM_QUOTE; + switch (lex->token) + { + case TOKEN_NONE: + fprintf(ctx.p->err_port, "%lu. expected closing )\n", lexer_position_(lex)); + longjmp(error_jmp, LISP_ERROR_READ_SYNTAX); + case TOKEN_DOT: + fprintf(ctx.p->err_port, "%lu. unexpected .\n", lexer_position_(lex)); + longjmp(error_jmp, LISP_ERROR_READ_SYNTAX); + case TOKEN_L_PAREN: + { + Lisp tail = lisp_null(); + + // ( + lexer_next_token(lex); + while (lex->token != TOKEN_R_PAREN && lex->token != TOKEN_DOT) + { + tail = lisp_cons(parse_list_r(lex, error_jmp, ctx), tail, ctx); + lexer_next_token(lex); + } + + // A dot at the end of a list assigns the cdr + if (lex->token == TOKEN_DOT) + { + if (lisp_is_null(tail)) + { + fprintf(ctx.p->err_port, "%lu. unexpected .\n", lexer_position_(lex)); + longjmp(error_jmp, LISP_ERROR_READ_SYNTAX); + } + + lexer_next_token(lex); + if (lex->token != TOKEN_R_PAREN) + { + Lisp x = parse_list_r(lex, error_jmp, ctx); + tail = lisp_list_reverse2(tail, x); + lexer_next_token(lex); + } + } + else + { + tail = lisp_list_reverse(tail); + } + + if (lex->token != TOKEN_R_PAREN) + { + fprintf(ctx.p->err_port, "%lu. expected closing )\n", lexer_position_(lex)); + longjmp(error_jmp, LISP_ERROR_READ_SYNTAX); + } + // ) + return tail; + } + case TOKEN_R_PAREN: + fprintf(ctx.p->err_port, "unexpected )\n"); + longjmp(error_jmp, LISP_ERROR_READ_SYNTAX); + case TOKEN_BOOL: + { + char c; + lexer_copy_token(lex, 1, 1, &c); + return lisp_make_bool(c == 't' ? 1 : 0); + } + case TOKEN_HASH_L_PAREN: + { + // #( + lexer_next_token(lex); + + Lisp* buffer = NULL; + size_t buffer_cap = 0; + + int n = 0; + while (lex->token != TOKEN_R_PAREN) + { + Lisp x = parse_list_r(lex, error_jmp, ctx); + lexer_next_token(lex); + + if (buffer_cap <= n + 1) + { + buffer_cap *= 2; + if (buffer_cap < 16) buffer_cap = 16; + buffer = realloc(buffer, buffer_cap * sizeof(Lisp)); + } + buffer[n] = x; + ++n; + } + // ) + + Lisp v = lisp_make_vector2(buffer, n, ctx); + if (buffer) free(buffer); + return v; + } + case TOKEN_FLOAT: + case TOKEN_INT: + return parse_number_(lex, ctx); + case TOKEN_STRING: + return parse_string_(lex, ctx); + case TOKEN_SYMBOL: + return parse_symbol_(lex, ctx); + case TOKEN_CHAR: + { + int c = parse_char_(lex); + if (c <= 0) + { + fprintf(ctx.p->err_port, "%lu. unknown character\n", lexer_position_(lex)); + longjmp(error_jmp, LISP_ERROR_READ_SYNTAX); + } + return lisp_make_char(c); + } + case TOKEN_COMMA: + lexer_next_token(lex); + + if (lex->token == TOKEN_AT) + { + quote_type = SYM_UNQUOTE_SPLICE; + lexer_next_token(lex); + } + else + { + quote_type = SYM_UNQUOTE; + } + goto quote; + case TOKEN_BQUOTE: + quote_type = SYM_QUASI_QUOTE; + lexer_next_token(lex); + goto quote; + case TOKEN_QUOTE: + lexer_next_token(lex); + goto quote; + quote: + { + // ' + Lisp l = lisp_cons(parse_list_r(lex, error_jmp, ctx), lisp_null(), ctx); + //lexer_next_token(lex); + return lisp_cons(get_sym(quote_type, ctx), l, ctx); + } + default: + assert(0); + } +} + +static Lisp parse(Lexer* lex, LispError* out_error, LispContext ctx) +{ + jmp_buf error_jmp; + LispError error = setjmp(error_jmp); + + if (error != LISP_ERROR_NONE) + { + if (out_error) *out_error = error; + return lisp_null(); + } + + lexer_next_token(lex); + if (lex->token == TOKEN_NONE) return lisp_eof(); + + Lisp result = parse_list_r(lex, error_jmp, ctx); + lexer_next_token(lex); + + if (lex->token != TOKEN_NONE) + { + // MULTIPLE FORMS + result = lisp_cons(result, lisp_null(), ctx); + + while (lex->token != TOKEN_NONE) + { + result = lisp_cons(parse_list_r(lex, error_jmp, ctx), result, ctx); + lexer_next_token(lex); + } + + result = lisp_cons(get_sym(SYM_BEGIN, ctx), lisp_list_reverse(result), ctx); + } + + if (out_error) *out_error = error; + return result; +} + +Lisp lisp_read(const char *program, LispError* out_error, LispContext ctx) +{ + Lexer lex; + lexer_init(&lex, program, NULL); + Lisp l = parse(&lex, out_error, ctx); + return l; +} + +Lisp lisp_read_range(const char* start, const char* end, LispError* out_error, LispContext ctx) { + Lexer lex; + lexer_init(&lex, start, end); + Lisp l = parse(&lex, out_error, ctx); + return l; +} + +static +void* fread_all_(FILE* file, size_t* out_size) { + const size_t BLOCK_SIZE = 32 * 1024; + const size_t MEDIUM_SIZE = 10 * 1024 * 1024; + + *out_size = 0; + + size_t cap = 0; + char* data = NULL; + + while (1) { + if (*out_size + BLOCK_SIZE > cap) { + if (cap > MEDIUM_SIZE) { + cap = (cap * 3) / 2; + } else if (cap < BLOCK_SIZE) { + cap = BLOCK_SIZE; + } else { + cap *= 2; + + } + + void* new_data = realloc(data, cap); + if (!new_data) { + *out_size = 0; + free(data); + return NULL; + } + data = new_data; + } + + size_t read = fread(data + *out_size, 1, BLOCK_SIZE, file); + *out_size += read; + if (read < BLOCK_SIZE) { + if (ferror(file)) { + *out_size = 0; + free(data); + return NULL; + } else { + return data; + } + } + } +} + +Lisp lisp_read_file(FILE *file, LispError* out_error, LispContext ctx) +{ + size_t size; + char* start = fread_all_(file, &size); + if (!start) { + *out_error = LISP_ERROR_FILE_OPEN; + return lisp_eof(); + } + Lisp l = lisp_read_range(start, start + size, out_error, ctx); + free(start); + return l; +} + +Lisp lisp_read_path(const char *path, LispError* out_error, LispContext ctx) +{ +#ifndef LISP_NO_MMAP + int fd = open(path, O_RDONLY); + if (fd < 0) { + *out_error = LISP_ERROR_FILE_OPEN; + return lisp_eof(); + } + off_t pos = lseek(fd, 0, SEEK_CUR); + off_t size = lseek(fd, 0, SEEK_END); + lseek(fd, pos, SEEK_SET); + + const char* program = mmap(0, size, PROT_READ, MAP_PRIVATE, fd, 0); + if (program == MAP_FAILED) { + *out_error = LISP_ERROR_FILE_OPEN; + return lisp_eof(); + } + + Lisp l = lisp_read_range(program, program + size, out_error, ctx); + munmap((void*)program, size); + close(fd); + + return l; +#else + FILE* file = fopen(path); + lisp_read_file(file, out_error, ctx); + fclose(path); +#endif + return lisp_eof(); +} + +Lisp lisp_env_extend(Lisp l, Lisp table, LispContext ctx) { return lisp_cons(table, l, ctx); } + +Lisp lisp_env_lookup(Lisp l, Lisp key, int *present) +{ + while (lisp_is_pair(l)) + { + Lisp x = lisp_table_get(lisp_car(l), key, present); + if (*present) return x; + l = lisp_cdr(l); + } + + return lisp_null(); +} + +void lisp_env_define(Lisp l, Lisp key, Lisp x, LispContext ctx) +{ + lisp_table_set(lisp_car(l), key, x, ctx); +} + +int lisp_env_set(Lisp l, Lisp key, Lisp x, LispContext ctx) +{ + int present; + while (lisp_is_pair(l)) + { + lisp_table_get(lisp_car(l), key, &present); + if (present) + { + lisp_table_set(lisp_car(l), key, x, ctx); + return 1; + } + l = lisp_cdr(l); + } + + return 0; +} + +int lisp_is_env(Lisp l) { return lisp_is_list(l); } + +static void lisp_print_r(FILE* file, Lisp l, int human_readable, int is_cdr) +{ + switch (lisp_type(l)) + { + case LISP_INT: fprintf(file, "%lli", lisp_int(l)); break; + case LISP_REAL: fprintf(file, "%f", lisp_real(l)); break; + case LISP_NULL: fputs("NIL", file); break; + case LISP_SYMBOL: fputs(lisp_symbol_string(l), file); break; + case LISP_BOOL: + fprintf(file, "#%c", lisp_bool(l) == 0 ? 'f' : 't'); + break; + case LISP_STRING: + if (human_readable) + { + fputs(lisp_string(l), file); + } + else + { + fputc('"', file); + print_escaped_(lisp_string(l), file); + fputc('"', file); + } + break; + case LISP_CHAR: + { + int c = lisp_int(l); + + if (human_readable) + { + if (c >= 0) fputc(c, file); + } + else + { + if (c >= -1 && c < 33) + { + fprintf(file, "#\\%s", ascii_char_name_table_[c + 1]); + } + else if (isprint(c)) + { + fprintf(file, "#\\%c", (char)c); + } + else + { + fprintf(file, "#\\+%d", c); + } + } + break; + } + case LISP_JUMP: fputs("", file); break; + case LISP_LAMBDA: fputs("", file); break; + case LISP_PROMISE: fputs("", file); break; + case LISP_PTR: fprintf(file, "", l.val.ptr_val); break; + case LISP_PORT_IN: fprintf(file, "", fileno((FILE*)l.val.ptr_val)); break; + case LISP_PORT_OUT: fprintf(file, "", fileno((FILE*)l.val.ptr_val)); break; + case LISP_FUNC: fprintf(file, "", l.val.ptr_val); break; + case LISP_TABLE: + { + const Table* table = table_get_(l); + fprintf(file, "{"); + + Lisp keys = { table->keys, LISP_VECTOR }; + Lisp vals = { table->vals, LISP_VECTOR }; + for (int i = 0; i < table->capacity; ++i) + { + Lisp key = lisp_vector_ref(keys, i); + if (!lisp_is_null(key)) + { + Lisp val = lisp_vector_ref(vals, i); + + lisp_print_r(file, key, human_readable, 0); + fprintf(file, ": "); + lisp_print_r(file, val, human_readable, 0); + fprintf(file, " "); + } + } + fprintf(file, "}"); + break; + } + case LISP_VECTOR: + { + fprintf(file, "#("); + int N = lisp_vector_length(l); + for (int i = 0; i < N; ++i) + { + lisp_print_r(file, lisp_vector_ref(l, i), human_readable, 0); + if (i + 1 < N) + { + fprintf(file, " "); + } + } + fprintf(file, ")"); + break; + } + case LISP_PAIR: + { + if (!is_cdr) fprintf(file, "("); + lisp_print_r(file, lisp_car(l), human_readable, 0); + + if (lisp_type(lisp_cdr(l)) != LISP_PAIR) + { + if (!lisp_is_null(lisp_cdr(l))) + { + fprintf(file, " . "); + lisp_print_r(file, lisp_cdr(l), human_readable, 0); + } + + fprintf(file, ")"); + } + else + { + fprintf(file, " "); + lisp_print_r(file, lisp_cdr(l), human_readable, 1); + } + break; + } + default: + // TODO + fprintf(stderr, "printing unknown lisp type: %d\n", lisp_type(l)); + break; + } +} + +void lisp_printf(FILE* file, Lisp l) { lisp_print_r(file, l, 0, 0); } +void lisp_displayf(FILE* file, Lisp l) { lisp_print_r(file, l, 1, 0); } + +void lisp_set_stderr(FILE* file, LispContext ctx) { ctx.p->err_port = file; } +FILE *lisp_stderr(LispContext ctx) { return ctx.p->err_port; } + +static void lisp_stack_push(Lisp x, LispContext ctx) +{ +#ifdef LISP_DEBUG + if (ctx.p->stack_ptr + 1 >= ctx.p->stack_depth) + { + fprintf(ctx.p->err_port, "stack overflow\n"); + } +#endif + + ctx.p->stack[ctx.p->stack_ptr] = x; + ++ctx.p->stack_ptr; +} + +static Lisp lisp_stack_pop(LispContext ctx) +{ + ctx.p->stack_ptr--; + +#ifdef LISP_DEBUG + if (ctx.p->stack_ptr < 0) + { + fprintf(ctx.p->err_port, "stack underflow\n"); + } +#endif + return ctx.p->stack[ctx.p->stack_ptr]; +} + +static Lisp* lisp_stack_peek(size_t i, LispContext ctx) +{ + return ctx.p->stack + (ctx.p->stack_ptr - i); +} + +Lisp lisp_call_cc(Lisp proc, LispError* out_error, LispContext ctx) +{ + Lisp j = make_jump_(ctx); + Jump* jump = jump_get_(j); + jump->stack_ptr = ctx.p->stack_ptr; + + int has_result = setjmp(jump->jmp); + if (has_result) + { + // restore jump from the stack + jump = jump_get_(lisp_stack_pop(ctx)); + ctx.p->stack_ptr = jump->stack_ptr; + return jump->result; + } + else + { + return lisp_apply(proc, lisp_cons(j, lisp_null(), ctx), out_error, ctx); + } +} + +// returns whether the result is final, or needs to be eval'd. +static int apply(Lisp operator, Lisp args, Lisp* out_result, Lisp* out_env, LispError* error, LispContext ctx) +{ + switch (lisp_type(operator)) + { + case LISP_LAMBDA: // lambda call (compound procedure) + { + Lisp slot_names = lambda_args_(operator); + *out_env = lisp_lambda_env(operator); + + // make a new environment + Lisp new_table = lisp_make_table(ctx); + + // bind parameters to arguments + // to pass into function call + while (lisp_is_pair(slot_names) && lisp_is_pair(args)) + { + lisp_table_set(new_table, lisp_car(slot_names), lisp_car(args), ctx); + slot_names = lisp_cdr(slot_names); + args = lisp_cdr(args); + } + + if (lisp_type(slot_names) == LISP_SYMBOL) + { + // variable length arguments + lisp_table_set(new_table, slot_names, args, ctx); + } + else if (!lisp_is_null(slot_names)) + { + *error = LISP_ERROR_TOO_FEW_ARGS; + return 0; + } + else if (!lisp_is_null(args)) + { + *error = LISP_ERROR_TOO_MANY_ARGS; + return 0; + } + + // extend the environment + *out_env = lisp_env_extend(*out_env, new_table, ctx); + + // normally we would eval the body here + // but while will eval + *out_result = lisp_lambda_body(operator); + return 1; + } + case LISP_FUNC: // call into C functions + { + // no environment required + LispCFunc f = lisp_func(operator); + *out_result = f(args, error, ctx); + return 0; + } + case LISP_JUMP: + { + Jump* jump = jump_get_(operator); + jump->result = lisp_car(args); + // put jump on the stack + lisp_stack_push(operator, ctx); + longjmp(jump->jmp, 1); + } + default: + { + lisp_printf(ctx.p->err_port, operator); + fprintf(ctx.p->err_port, " is not an operator.\n"); + + *error = LISP_ERROR_BAD_OP; + return 0; + } + } +} + +static Lisp eval_r(jmp_buf error_jmp, LispContext ctx) +{ + Lisp* env = lisp_stack_peek(2, ctx); + Lisp* x = lisp_stack_peek(1, ctx); + + while (1) + { + switch (lisp_type(*x)) + { + case LISP_SYMBOL: // variable reference + { + int present = 0; + Lisp val = lisp_env_lookup(*env, *x, &present); + if (!present) + { + fprintf(ctx.p->err_port, "%s is not defined.\n", lisp_symbol_string(*x)); + longjmp(error_jmp, LISP_ERROR_UNDEFINED_VAR); + return lisp_null(); + } + return val; + } + case LISP_PAIR: + { + Lisp op_sym = lisp_car(*x); + int op_valid = lisp_type(op_sym) == LISP_SYMBOL; + + if (lisp_eq(op_sym, get_sym(SYM_IF, ctx)) && op_valid) + { + // if conditional statemetns + Lisp predicate = lisp_list_ref(*x, 1); + + lisp_stack_push(*env, ctx); + lisp_stack_push(predicate, ctx); + + if (lisp_is_true(eval_r(error_jmp, ctx))) + { + // consequence + *x = lisp_list_ref(*x, 2); + // while will eval + } + else + { + // alternative + *x = lisp_list_ref(*x, 3); + // while will eval + } + + lisp_stack_pop(ctx); + lisp_stack_pop(ctx); + } + else if (lisp_eq(op_sym, get_sym(SYM_BEGIN, ctx)) && op_valid) + { + Lisp it = lisp_cdr(*x); + if (lisp_is_null(it)) return it; + + // eval all but last + while (lisp_is_pair(lisp_cdr(it))) + { + // save next thing + lisp_stack_push(lisp_cdr(it), ctx); + + lisp_stack_push(*env, ctx); + lisp_stack_push(lisp_car(it), ctx); + + eval_r(error_jmp, ctx); + + lisp_stack_pop(ctx); + lisp_stack_pop(ctx); + + it = lisp_stack_pop(ctx); + //it = lisp_cdr(it); + } + + *x = lisp_car(it); + // while will eval last + } + else if (lisp_eq(op_sym, get_sym(SYM_QUOTE, ctx)) && op_valid) + { + return lisp_list_ref(*x, 1); + } + else if (lisp_eq(op_sym, get_sym(SYM_DEFINE, ctx))) + { + // variable definitions + lisp_stack_push(*env, ctx); + lisp_stack_push(lisp_list_ref(*x, 2), ctx); + + Lisp value = eval_r(error_jmp, ctx); + + lisp_stack_pop(ctx); + lisp_stack_pop(ctx); + + Lisp symbol = lisp_list_ref(*x, 1); + lisp_env_define(*env, symbol, value, ctx); + return lisp_null(); + } + else if (lisp_eq(op_sym, get_sym(SYM_SET, ctx)) && op_valid) + { + assert(!lisp_is_null(*env)); + // mutablity + // like def, but requires existence + // and will search up the environment chain + + lisp_stack_push(*env, ctx); + lisp_stack_push(lisp_list_ref(*x, 2), ctx); + + Lisp value = eval_r(error_jmp, ctx); + + lisp_stack_pop(ctx); + lisp_stack_pop(ctx); + + Lisp symbol = lisp_list_ref(*x, 1); + if (!lisp_env_set(*env, symbol, value, ctx)) + { + fprintf(ctx.p->err_port, "error: unknown variable: %s\n", lisp_symbol_string(symbol)); + } + return lisp_null(); + } + else if (lisp_eq(op_sym, get_sym(SYM_LAMBDA, ctx)) && op_valid) + { + // lambda defintions (compound procedures) + Lisp args = lisp_list_ref(*x, 1); + Lisp body = lisp_list_ref(*x, 2); + return lisp_make_lambda(args, body, *env, ctx); + } + else + { + // operator application + lisp_stack_push(*env, ctx); + lisp_stack_push(lisp_car(*x), ctx); + + Lisp operator = eval_r(error_jmp, ctx); + + Lisp operator_expr = lisp_stack_pop(ctx); + lisp_stack_pop(ctx); + + lisp_stack_push(operator, ctx); + lisp_stack_push(operator_expr, ctx); + + Lisp arg_expr = lisp_cdr(*x); + + Lisp args = lisp_null(); + + while (lisp_is_pair(arg_expr)) + { + // save next + lisp_stack_push(lisp_cdr(arg_expr), ctx); + lisp_stack_push(args, ctx); + + lisp_stack_push(*env, ctx); + lisp_stack_push(lisp_car(arg_expr), ctx); + Lisp new_arg = eval_r(error_jmp, ctx); + lisp_stack_pop(ctx); + lisp_stack_pop(ctx); + + args = lisp_cons(new_arg, lisp_stack_pop(ctx), ctx); + arg_expr = lisp_stack_pop(ctx); + } + + operator_expr = lisp_stack_pop(ctx); + operator = lisp_stack_pop(ctx); + + LispError error = LISP_ERROR_NONE; + int needs_to_eval = apply(operator, lisp_list_reverse(args), x, env, &error, ctx); + if (error != LISP_ERROR_NONE) + { + if (lisp_type(operator_expr) == LISP_SYMBOL) + { + fprintf(ctx.p->err_port, "operator: %s\n", lisp_symbol_string(operator_expr)); + } + + longjmp(error_jmp, error); + } + + if (!needs_to_eval) + { + return *x; + } + // Otherwise while will eval + } + break; + } + default: + return *x; // atom + } + } +} + +static Lisp expand_quasi_r(Lisp l, jmp_buf error_jmp, LispContext ctx) +{ + if (lisp_type(l) != LISP_PAIR) + { + Lisp terms[] = { get_sym(SYM_QUOTE, ctx), l }; + return lisp_make_list2(terms, 2, ctx); + } + + Lisp op = lisp_car(l); + int op_valid = lisp_type(op) == LISP_SYMBOL; + + if (lisp_eq(op, get_sym(SYM_UNQUOTE, ctx)) && op_valid) + { + return lisp_car(lisp_cdr(l)); + } + else if (lisp_eq(op, get_sym(SYM_UNQUOTE_SPLICE, ctx)) && op_valid) + { + fprintf(ctx.p->err_port, "slicing ,@ must be in a backquoted list.\n"); + longjmp(error_jmp, LISP_ERROR_FORM_SYNTAX); + } + else + { + Lisp terms[] = { + get_sym(SYM_CONS, ctx), + expand_quasi_r(lisp_car(l), error_jmp, ctx), + expand_quasi_r(lisp_cdr(l), error_jmp, ctx), + }; + return lisp_make_list2(terms, 3, ctx); + } +} + +static Lisp expand_r(Lisp l, jmp_buf error_jmp, LispContext ctx) +{ + if (lisp_type(l) != LISP_PAIR) return l; + + // 1. expand extended syntax into primitive syntax + // 2. perform optimizations + // 3. check syntax + + Lisp op = lisp_car(l); + if (lisp_type(op) == LISP_SYMBOL) + { + if (lisp_eq(op, get_sym(SYM_QUOTE, ctx))) + { + // don't expand quotes + if (lisp_list_length(l) != 2) + { + fprintf(ctx.p->err_port, "(quote x)\n"); + longjmp(error_jmp, LISP_ERROR_FORM_SYNTAX); + } + return l; + } + else if (lisp_eq(op, get_sym(SYM_QUASI_QUOTE, ctx))) + { + return expand_quasi_r(lisp_car(lisp_cdr(l)), error_jmp, ctx); + } + else if (lisp_eq(op, get_sym(SYM_DEFINE_MACRO, ctx))) + { + if (lisp_list_length(l) != 3) + { + fprintf(ctx.p->err_port, "(define-macro name proc)\n"); + longjmp(error_jmp, LISP_ERROR_FORM_SYNTAX); + } + + Lisp symbol = lisp_list_ref(l, 1); + Lisp body = lisp_list_ref(l, 2); + + LispError e; + Lisp lambda = lisp_eval(body, &e, ctx); + + if (e != LISP_ERROR_NONE) + { + longjmp(error_jmp, e); + } + if (lisp_type(lambda) != LISP_LAMBDA) + { + fprintf(ctx.p->err_port, "(define-macro name proc) not a procedure\n"); + longjmp(error_jmp, LISP_ERROR_FORM_SYNTAX); + } + + lisp_table_set(ctx.p->macros, symbol, lambda, ctx); + return lisp_null(); + } + else + { + int present; + Lisp proc = lisp_table_get(ctx.p->macros, op, &present); + + if (present) + { + // EXPAND MACRO + + // TODO: need to make sure collection is not triggered + // while evaling a macro. + Lisp result; + Lisp calling_env; + LispError error = LISP_ERROR_NONE; + if (apply(proc, lisp_cdr(l), &result, &calling_env, &error, ctx) == 1) + { + result = lisp_eval2(result, calling_env, &error, ctx); + } + + if (error != LISP_ERROR_NONE) + { + fprintf(ctx.p->err_port, "macroexpand failed: %s\n", lisp_symbol_string(op)); + longjmp(error_jmp, error); + } + return expand_r(result, error_jmp, ctx); + } + } + } + + // list + Lisp it = l; + while (lisp_is_pair(it)) + { + lisp_set_car(it, expand_r(lisp_car(it), error_jmp, ctx)); + it = lisp_cdr(it); + } + return l; + +} + +Lisp lisp_macroexpand(Lisp lisp, LispError* out_error, LispContext ctx) +{ + jmp_buf error_jmp; + LispError error = setjmp(error_jmp); + + if (error == LISP_ERROR_NONE) + { + Lisp result = expand_r(lisp, error_jmp, ctx); + *out_error = error; + return result; + } + else + { + *out_error = error; + return lisp_null(); + } +} + +Lisp lisp_eval2(Lisp l, Lisp env, LispError* out_error, LispContext ctx) +{ + LispError error; + Lisp expanded = lisp_macroexpand(l, &error, ctx); + + if (error != LISP_ERROR_NONE) + { + if (out_error) *out_error = error; + return lisp_null(); + } + + size_t save_stack = ctx.p->stack_ptr; + + jmp_buf error_jmp; + error = setjmp(error_jmp); + + if (error == LISP_ERROR_NONE) + { + lisp_stack_push(env, ctx); + lisp_stack_push(expanded, ctx); + + Lisp result = eval_r(error_jmp, ctx); + + lisp_stack_pop(ctx); + lisp_stack_pop(ctx); + + if (out_error) + { + *out_error = error; + } + + return result; + } + else + { + if (out_error) + { + ctx.p->stack_ptr = save_stack; + *out_error = error; + } + + return lisp_null(); + } +} + +Lisp lisp_eval(Lisp expr, LispError* out_error, LispContext ctx) +{ + return lisp_eval2(expr, lisp_env(ctx), out_error, ctx); +} + +Lisp lisp_apply(Lisp operator, Lisp args, LispError* out_error, LispContext ctx) +{ + // TODO: argument passing is a little more sophisitaed + // No environment required. procedures always bring their own enviornment + // to the call. + Lisp x; + Lisp env; + int needs_to_eval = apply(operator, args, &x, &env, out_error, ctx); + if (*out_error != LISP_ERROR_NONE) return lisp_false(); + return needs_to_eval ? lisp_eval2(x, env, out_error, ctx) : x; +} + +static Lisp gc_move(Lisp x, LispContext ctx) +{ + switch (x.type) + { + case LISP_PAIR: + case LISP_STRING: + case LISP_LAMBDA: + case LISP_VECTOR: + case LISP_PROMISE: + case LISP_TABLE: + case LISP_SYMBOL: + { + Block* block = x.val.ptr_val; + if (block->gc_state == GC_CLEAR) + { + // copy the data to new block + Block* dest = heap_alloc(block->info.size, block->type, &ctx.p->heap); + memcpy(dest, block, block->info.size); + dest->gc_state = GC_NEED_VISIT; + + // save forwarding address (offset in to) + block->info.forward = dest; + block->gc_state = GC_GONE; + } + + assert(block->gc_state == GC_GONE); + + // return the moved block address + x.val.ptr_val = block->info.forward; + return x; + } + default: + return x; + } +} + +static LispVal gc_move_val(LispVal val, LispType type, LispContext ctx) +{ + return gc_move( (Lisp) { val, type}, ctx).val; +} + +static void gc_move_v(Lisp* start, int n, LispContext ctx) +{ + for (int i = 0; i < n; ++i) start[i] = gc_move(start[i], ctx); +} + +static Lisp gc_move_weak_symbols(Lisp old_table, LispContext ctx) +{ + // move symbol table (weak references) + Table* from = table_get_(old_table); + Lisp to_table = lisp_make_table(ctx); + // preallocate + int cap = from->capacity; + table_grow_(to_table, cap, ctx); + + Lisp hashes = { from->keys, LISP_VECTOR }; + Lisp symbols = { from->vals, LISP_VECTOR }; + + for (int i = 0; i < cap; ++i) + { + Lisp hash = lisp_vector_ref(hashes, i); + if (!lisp_is_null(hash)) + { + Lisp old_symbol = lisp_vector_ref(symbols, i); + while (old_symbol.val.ptr_val != NULL) + { + if (symbol_get_(old_symbol)->block.gc_state == GC_GONE) + { + Lisp to_insert = gc_move(old_symbol, ctx); + int present; + Lisp existing = lisp_table_get(to_table, hash, &present); + symbol_get_(to_insert)->next = existing.val; + lisp_table_set(to_table, hash, to_insert, ctx); + } + else + { +#ifdef LISP_DEBUG + //printf("losing symbol: %s\n", lisp_symbol_string(old_symbol)); +#endif + } + old_symbol.val = symbol_get_(old_symbol)->next; + } + } + } + return to_table; +} + +Lisp lisp_collect(Lisp root_to_save, LispContext ctx) +{ +#ifdef LISP_DEBUG + time_t start_time = clock(); +#endif + + // copy of old heap + Heap from = ctx.p->heap; + + // make new heap to allocate and copy to + heap_init(&ctx.p->heap); + + // move root object + ctx.p->env = gc_move(ctx.p->env, ctx); + ctx.p->macros = gc_move(ctx.p->macros, ctx); + + gc_move_v(ctx.p->symbol_cache, SYM_COUNT, ctx); + gc_move_v(ctx.p->stack, ctx.p->stack_ptr, ctx); + + Lisp result = gc_move(root_to_save, ctx); + + // move references + const Page* page = ctx.p->heap.bottom; + int page_counter = 0; + while (page) + { + size_t offset = 0; + while (offset < page->size) + { + Block* block = (Block*)(page->buffer + offset); + if (block->gc_state == GC_NEED_VISIT) + { + switch (block->type) + { + // these add &to the buffer! + // so lists are handled in a single pass + case LISP_PAIR: + { + // move the CAR and CDR + Pair* p = (Pair*)block; + p->car = gc_move_val(p->car, p->block.d.pair.car_type, ctx); + p->cdr = gc_move_val(p->cdr, p->block.d.pair.cdr_type, ctx); + break; + } + case LISP_VECTOR: + { + Lisp vector; + vector.val.ptr_val = block; + vector.type = LISP_VECTOR; + + Vector* v = (Vector*)block; + int n = vector_len_(v); + for (int i = 0; i < n; ++i) + v->entries[i] = gc_move(lisp_vector_ref(vector, i), ctx).val; + break; + } + case LISP_LAMBDA: + { + // move the body and args + Lambda* l = (Lambda*)block; + l->args = gc_move_val(l->args, (LispType)l->block.d.lambda.args_type, ctx); + l->body = gc_move_val(l->body, (LispType)l->block.d.lambda.body_type, ctx); + l->env = gc_move_val(l->env, l->env.ptr_val == NULL ? LISP_NULL : LISP_PAIR, ctx); + break; + } + case LISP_PROMISE: + { + Promise* p = (Promise*)block; + p->val_or_proc = gc_move_val(p->val_or_proc, (LispType)p->block.d.promise.type, ctx); + break; + } + case LISP_TABLE: + { + + // During garbage collection all pointers change INCLUDING symbols, + // so that means if a symbol pointer is being used as a key, it is no + // longer in the correct place in the hash table. + // So we have to move it to a new place during garbage collection. + Lisp table; + table.val.ptr_val = block; + table.type = LISP_TABLE; + + Table* t = (Table*)block; + int n = t->capacity; + + Lisp keys = { t->keys, LISP_VECTOR }; + Lisp vals = { t->vals, LISP_VECTOR }; + + for (int i = 0; i < n; ++i) + { + // move all the values, but borrow the old table for now. + Lisp key = lisp_vector_ref(keys, i); + if (!lisp_is_null(key)) + { + lisp_vector_set(keys, i, gc_move(key, ctx)); + lisp_vector_set(vals, i, gc_move(lisp_vector_ref(vals, i), ctx)); + } + } + // create new table and move the values in place. + table_grow_(table, n, ctx); + break; + } + default: break; + } + block->gc_state = GC_CLEAR; + } + offset += block->info.size; + } + page = page->next; + ++page_counter; + } + // check that we visited all the pages + assert(page_counter == ctx.p->heap.page_count); + ctx.p->symbols = gc_move_weak_symbols(ctx.p->symbols, ctx); + +#ifdef LISP_DEBUG + { + // DEBUG, check offsets + const Page* page = ctx.p->heap.bottom; + while (page) + { + size_t offset = 0; + while (offset < page->size) + { + Block* block = (Block*)(page->buffer + offset); + assert(block->gc_state == GC_CLEAR); + assert(block->info.size <= page->size); + assert(block->info.size % sizeof(LispVal) == 0); + offset += block->info.size; + } + assert(offset == page->size); + page = page->next; + } + } +#endif + + size_t diff = from.size - ctx.p->heap.size; + + // swap the heaps + heap_shutdown(&from); + + ctx.p->gc_stat_freed = diff; +#ifdef LISP_DEBUG + time_t end_time = clock(); + ctx.p->gc_stat_time = 1000000 * (end_time - start_time) / CLOCKS_PER_SEC; +#else + ctx.p->gc_stat_time = 0; +#endif + return result; +} + +void lisp_print_collect_stats(LispContext ctx) +{ + Page* page = ctx.p->heap.bottom; + while (page) + { + printf("%lu/%lu ", page->size, page->capacity); + page = page->next; + } + fprintf(ctx.p->err_port, "\ngc collected: %lu\t time: %lu us\n", ctx.p->gc_stat_freed, ctx.p->gc_stat_time); + fprintf(ctx.p->err_port, "heap size: %lu\t pages: %lu\n", ctx.p->heap.size, ctx.p->heap.page_count); + fprintf(ctx.p->err_port, "symbols: %lu \n", (size_t)lisp_table_size(ctx.p->symbols)); +} + +Lisp lisp_env(LispContext ctx) { return ctx.p->env; } + +void lisp_set_env(Lisp env, LispContext ctx) +{ + assert(lisp_is_env(env)); + ctx.p->env = env; +} + +Lisp lisp_macro_table(LispContext ctx) { return ctx.p->macros; } + +void lisp_set_macro_table(Lisp table, LispContext ctx) +{ + assert(lisp_type(table) == LISP_TABLE); + ctx.p->macros = table; +} + +const char* lisp_error_string(LispError error) +{ + switch (error) + { + case LISP_ERROR_NONE: + return "none"; + case LISP_ERROR_FILE_OPEN: + return "file error: could not open file"; + case LISP_ERROR_MMAP: + return "mmap error."; + case LISP_ERROR_READ_SYNTAX: + return "read/syntax error."; + case LISP_ERROR_FORM_SYNTAX: + return "expand error: bad special form"; + case LISP_ERROR_UNDEFINED_VAR: + return "eval error: undefined variable"; + case LISP_ERROR_BAD_OP: + return "eval error: attempt to apply something which was not an operator"; + case LISP_ERROR_ARG_TYPE: + return "eval error: invalid argument type"; + case LISP_ERROR_TOO_MANY_ARGS: + return "eval error: too many arguments"; + case LISP_ERROR_TOO_FEW_ARGS: + return "eval error: missing arguments"; + case LISP_ERROR_OUT_OF_BOUNDS: + return "eval error: index out of bounds"; + case LISP_ERROR_RUNTIME: + return "evaluation called (error) and it was not handled"; + default: + return "unknown error code"; + } +} + +LispContext lisp_init(void) +{ + LispContext ctx; + ctx.p = malloc(sizeof(struct LispImpl)); + if (!ctx.p) return ctx; + + ctx.p->err_port = stderr; + + ctx.p->symbol_counter = 0; + ctx.p->stack_ptr = 0; + ctx.p->stack_depth = LISP_STACK_DEPTH; + ctx.p->stack = malloc(sizeof(Lisp) * LISP_STACK_DEPTH); + ctx.p->gc_stat_freed = 0; + ctx.p->gc_stat_time = 0; + + heap_init(&ctx.p->heap); + + ctx.p->symbols = lisp_make_table(ctx); + ctx.p->env = lisp_null(); + ctx.p->macros = lisp_make_table(ctx); + + Lisp* c = ctx.p->symbol_cache; + c[SYM_IF] = lisp_make_symbol("IF", ctx); + c[SYM_BEGIN] = lisp_make_symbol("BEGIN", ctx); + c[SYM_QUOTE] = lisp_make_symbol("QUOTE", ctx); + c[SYM_QUASI_QUOTE] = lisp_make_symbol("QUASIQUOTE", ctx); + c[SYM_UNQUOTE] = lisp_make_symbol("UNQUOTE", ctx); + c[SYM_UNQUOTE_SPLICE] = lisp_make_symbol("UNQUOTESPLICE", ctx); + c[SYM_DEFINE] = lisp_make_symbol("_DEF", ctx); + c[SYM_DEFINE_MACRO] = lisp_make_symbol("DEFINE-MACRO", ctx); + c[SYM_SET] = lisp_make_symbol("_SET!", ctx); + c[SYM_LAMBDA] = lisp_make_symbol("/\\_", ctx); + c[SYM_CONS] = lisp_make_symbol("CONS", ctx); + return ctx; +} + +void lisp_shutdown(LispContext ctx) +{ + heap_shutdown(&ctx.p->heap); + free(ctx.p->stack); + free(ctx.p); +} + +#endif + +/* +Copyright (c) 2021 Justin Meiners + +Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +*/ diff --git a/lisp-interpreter/dist/lisp_lib.h b/lisp-interpreter/dist/lisp_lib.h new file mode 100644 index 0000000..7ec075f --- /dev/null +++ b/lisp-interpreter/dist/lisp_lib.h @@ -0,0 +1,2180 @@ +/* + Created by: Justin Meiners + Repo; https://github.com/justinmeiners/lisp-interpreter + License: MIT (See end if file) + + This file contains the scheme standard library. + See lisp.h for insructions. + */ + +#ifndef LISP_LIB_H +#define LISP_LIB_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include + +void lisp_lib_load(LispContext ctx); + +// convenience for init and load +LispContext lisp_init_with_lib(void); + +#ifdef __cplusplus +} +#endif + +#endif + + +// Generated from scheme source. +#ifdef LISP_IMPLEMENTATION +static const char* lib_0_sequences_src_ = +"(define-macro lambda (/\\_ args \n\ + (if (pair? args) \n\ + (if (pair? (cdr args)) \n\ + (if (pair? (cdr (cdr args))) \n\ + `(/\\_ ,(car args) ,(cons 'BEGIN (cdr args))) \n\ + `(/\\_ ,(car args) ,(car (cdr args)))) \n\ + (syntax-error \"lambda missing body expressions: (lambda (args) body)\")) \n\ + (syntax-error \"lambda missing argument: (lambda (args) body)\")))) \n\ + \n\ +(define-macro set! (lambda (var x) \n\ + (begin \n\ + (if (not (symbol? var)) (syntax-error \"set! not a variable\")) \n\ + `(_SET! ,var ,x)))) \n\ + \n\ +(define-macro define \n\ + (lambda (var . exprs) \n\ + (if (symbol? var) \n\ + (if (pair? (cdr exprs)) \n\ + (syntax-error \"define: (define var x)\") \n\ + `(_DEF ,var ,(car exprs))) \n\ + (if (pair? var) \n\ + `(_DEF ,(car var) \n\ + (LAMBDA ,(cdr var) \n\ + ,(if (null? (cdr exprs)) (car exprs) (cons 'BEGIN exprs)))) \n\ + (syntax-error \"define: not a symbol\") )))) \n\ + \n\ +(define (first x) (car x)) \n\ +(define (second x) (car (cdr x))) \n\ +(define (third x) (car (cdr (cdr x)))) \n\ + \n\ +(define (some? pred l) \n\ + (if (null? l) #f \n\ + (if (pred (car l)) #t \n\ + (some? pred (cdr l))))) \n\ + \n\ +(define (_map1-helper proc l result) \n\ + (if (null? l) \n\ + (reverse! result) \n\ + (_map1-helper proc \n\ + (cdr l) \n\ + (cons (proc (car l)) result)))) \n\ + \n\ +(define (map1 proc l) (_map1-helper proc l '())) \n\ + \n\ +(define (for-each1 proc l) \n\ + (if (null? l) '() \n\ + (begin (proc (car l)) (for-each1 proc (cdr l ))))) \n\ + \n\ +(define (reverse! l) (append-reverse! l '())) \n\ +(define (reverse l) (reverse! (list-copy l))) \n\ + \n\ +(define (last-pair x) \n\ + (if (pair? (cdr x)) \n\ + (last-pair (cdr x)) x)) \n\ + \n\ +(define (list-tail x k) \n\ + (if (zero? k) x \n\ + (list-tail (cdr x) (- k 1)))) \n\ + \n\ +(define (fold-left op acc lst) \n\ + (if (null? lst) acc \n\ + (fold-left op (op acc (car lst)) (cdr lst)))) \n\ + \n\ +(define (_expand-shorthand-body path) \n\ + (if (null? path) (cons 'pair '()) \n\ + (list (if (char=? (car path) #\\A) \n\ + (cons 'CAR (_expand-shorthand-body (cdr path))))))) \n\ + \n\ +(define (_expand-shorthand text) \n\ + (cons 'DEFINE (cons (list (string->symbol (string-append \"C\" text \"R\")) 'pair) \n\ + (_expand-shorthand-body (string->list text))))) \n\ + \n\ +(define-macro _shorthand-accessors (lambda args (cons 'BEGIN (map1 _expand-shorthand args)))) \n\ + \n\ +(define (vector . args) (list->vector args)) \n\ + \n\ +(define (vector-copy v) (subvector v 0 (vector-length v))) \n\ +(define (vector-head v end) (subvector v 0 end)) \n\ +(define (vector-tail v start) (subvector v start (vector-length v))) \n\ + \n\ +(define (string . chars) (list->string chars)) \n\ + \n\ +(define (string>=? a b) (not (string? a b) (string (( ) ... ( )) ... ) \n\ +; => ((LAMBDA ( ... ) (BEGIN ... )) ... ) \n\ +; => named \n\ +; ((lambda () \n\ +; (define (LAMBDA ( ... ) (BEGIN ... ))) \n\ +; ( ... ))) \n\ + \n\ +(define (_check-binding-list bindings) \n\ + (for-each1 (lambda (entry) \n\ + (if (not (pair? entry)) (syntax-error \"bad let binding\" entry)) \n\ + (if (not (symbol? (first entry))) (syntax-error \"let entry missing symbol\" entry))) bindings)) \n\ + \n\ +(define (_let->combination var bindings body) \n\ + (_check-binding-list bindings) \n\ + (define body-func (_make-lambda (map1 (lambda (entry) (first entry)) bindings) body)) \n\ + (define initial-args (map1 (lambda (entry) (second entry)) bindings)) \n\ + (if (null? var) \n\ + (cons body-func initial-args) \n\ + (list (_make-lambda '() (list (list 'DEFINE var body-func) (cons var initial-args)))))) \n\ + \n\ +(define-macro let (lambda args \n\ + (if (pair? (first args)) \n\ + (_let->combination '() (car args) (cdr args)) \n\ + (_let->combination (first args) (second args) (cdr (cdr args)))))) \n\ + \n\ +(define (_let*-helper bindings body) \n\ + (if (null? bindings) (if (null? (cdr body)) (car body) (cons 'BEGIN body)) \n\ + (list 'LET (list (car bindings)) (_let*-helper (cdr bindings) body)))) \n\ + \n\ +(define-macro let* (lambda (bindings . body) \n\ + (_check-binding-list bindings) \n\ + (_let*-helper bindings body))) \n\ + \n\ +(define-macro letrec (lambda (bindings . body) \n\ + (_check-binding-list bindings) \n\ + (cons (_make-lambda (map1 (lambda (entry) (first entry)) bindings) \n\ + (append (map1 (lambda (entry) (list 'SET! (first entry) (second entry))) \n\ + bindings) body)) \n\ + (map1 (lambda (entry) '()) bindings)))) \n\ + \n\ + \n\ +; (COND ( ) \n\ +; ( ) \n\ +; ... \n\ +; (else )) \n\ +; => \n\ +; (IF \n\ +; (if \n\ +; .... \n\ +; (if )) ... ) \n\ + \n\ + \n\ +(define (_cond-check-clauses clauses) \n\ + (for-each1 (lambda (clause) \n\ + (if (not (pair? clause)) (syntax-error \"cond: invalid clause\")) \n\ + (if (null? (cdr clause)) (syntax-error \"cond: clause missing expression\"))) \n\ + clauses)) \n\ + \n\ +(define (_cond-helper clauses) \n\ + (if (null? clauses) '() \n\ + (if (eq? (car (car clauses)) 'ELSE) \n\ + (cons 'BEGIN (cdr (car clauses))) \n\ + (list 'IF \n\ + (car (car clauses)) \n\ + (cons 'BEGIN (cdr (car clauses))) \n\ + (_cond-helper (cdr clauses)))))) \n\ + \n\ +(define-macro cond (lambda clauses \n\ + (begin \n\ + (_cond-check-clauses clauses) \n\ + (_cond-helper clauses))))"; + +static const char* lib_2_forms_src_ = +"(_shorthand-accessors \"AA\" \"DD\" \"AD\" \"DA\" \"AAA\" \"AAD\" \"ADA\" \"DAA\" \"ADD\" \"DAD\" \"DDA\" \"DDD\") \n\ + \n\ +(define (_and-helper preds) \n\ + (cond ((null? preds) #t) \n\ + ((null? (cdr preds)) (car preds)) \n\ + (else \n\ + `(IF ,(car preds) ,(_and-helper (cdr preds)) #f)))) \n\ +(define-macro and (lambda preds (_and-helper preds))) \n\ + \n\ +(define (_or-helper preds var) \n\ + (cond ((null? preds) #f) \n\ + ((null? (cdr preds)) (car preds)) \n\ + (else \n\ + `(BEGIN (SET! ,var ,(car preds)) \n\ + (IF ,var ,var ,(_or-helper (cdr preds) var)))))) \n\ + \n\ +(define-macro or (lambda preds \n\ + (let ((var (gensym))) \n\ + `(LET ((,var '())) ,(_or-helper preds var))))) \n\ + \n\ +(define-macro case (lambda (key . clauses) \n\ + (let ((expr (gensym))) \n\ + `(LET ((,expr ,key)) \n\ + ,(cons 'COND (map1 (lambda (entry) \n\ + (cons (if (pair? (car entry)) \n\ + `(MEMV ,expr (quote ,(car entry))) \n\ + (car entry)) \n\ + (cdr entry))) clauses)))))) \n\ + \n\ +(define-macro push \n\ + (lambda (v l) \n\ + `(begin (set! ,l (cons ,v ,l)) ,l))) \n\ + \n\ +; (DO (( ) ...) ( ) ) \n\ +(define-macro do \n\ + (lambda (vars loop-check . loops) \n\ + (let ( (names '()) (inits '()) (steps '()) (f (gensym)) ) \n\ + (for-each1 (lambda (var) \n\ + (push (car var) names) \n\ + (set! var (cdr var)) \n\ + (push (car var) inits) \n\ + (set! var (cdr var)) \n\ + (push (car var) steps)) vars) \n\ + `((LAMBDA () \n\ + (DEFINE ,f (LAMBDA ,names \n\ + (IF ,(car loop-check) \n\ + ,(if (pair? (cdr loop-check)) (car (cdr loop-check)) '()) \n\ + ,(cons 'BEGIN (append loops (list (cons f steps)))) ))) \n\ + ,(cons f inits) \n\ + )) ))) \n\ + \n\ +(define-macro dotimes \n\ + (lambda (form body) \n\ + (apply (lambda (i n . result) \n\ + `(DO ((,i 0 (+ ,i 1))) \n\ + ((>= ,i ,n) ,(if (null? result) result (car result)) ) \n\ + ,body) \n\ + ) form))) \n\ + \n\ +(define-macro swap! \n\ + (lambda (x y) \n\ + (let ((temp (gensym))) \n\ + `(LET ((,temp ,x)) \n\ + (SET! ,temp ,x) \n\ + (SET! ,x ,y) \n\ + (SET! ,y ,temp))))) \n\ + \n\ +(define-macro inc! ; CL incf \n\ + (lambda (x) \n\ + `(SET! ,x (+ ,x 1)))) \n\ + \n\ +(define-macro dec! ; CL decf \n\ + (lambda (x) \n\ + `(SET! ,x (- ,x 1))))"; + +static const char* lib_3_math_src_ = +"(define (number? x) (real? x)) \n\ +(define (odd? x) (not (even? x))) \n\ +(define (inexact? x) (not (exact? x))) \n\ +(define (zero? x) (= x 0)) \n\ +(define (positive? x) (>= x 0)) \n\ +(define (negative? x) (< x 0)) \n\ + \n\ +(define (>= a b) (not (< a b))) \n\ +(define (> a b) (< b a)) \n\ +(define (<= a b) (not (< b a))) \n\ + \n\ +(define (max . ls) \n\ + (fold-left (lambda (m x) \n\ + (if (> x m) \n\ + x \n\ + m)) (car ls) (cdr ls))) \n\ + \n\ +(define (min . ls) \n\ + (fold-left (lambda (m x) \n\ + (if (< x m) \n\ + x \n\ + m)) (car ls) (cdr ls))) \n\ + \n\ +(define (_gcd-helper a b) \n\ + (if (= b 0) a (_gcd-helper b (modulo a b)))) \n\ + \n\ +(define (gcd . args) \n\ + (if (null? args) 0 \n\ + (_gcd-helper (car args) (car (cdr args))))) \n\ + \n\ +(define (lcm . args) \n\ + (if (null? args) 1 \n\ + (abs (* (/ (car args) (apply gcd args)) \n\ + (apply * (cdr args))))))"; + +static const char* lib_4_sequences_src_ = +"(define (map proc . rest) \n\ + (define (helper lists result) \n\ + (if (some? null? lists) \n\ + (reverse! result) \n\ + (helper (map1 cdr lists) \n\ + (cons (apply proc (map1 car lists)) result)))) \n\ + (helper rest '())) \n\ + \n\ +(define (for-each proc . rest) \n\ + (define (helper lists) \n\ + (if (some? null? lists) \n\ + '() \n\ + (begin \n\ + (apply proc (map1 car lists)) \n\ + (helper (map1 cdr lists))))) \n\ + (helper rest)) \n\ + \n\ +(define (filter pred l) \n\ + (define (helper l result) \n\ + (cond ((null? l) result) \n\ + ((pred (car l)) \n\ + (helper (cdr l) (cons (car l) result))) \n\ + (else \n\ + (helper (cdr l) result)))) \n\ + (reverse! (helper l '()))) \n\ + \n\ +(define (reduce op default lst) \n\ + (if (null? lst) \n\ + default \n\ + (fold-left op (car lst) (cdr lst)))) \n\ + \n\ +(define (alist->hash-table alist) \n\ + (define h (make-hash-table)) \n\ + (for-each1 (lambda (pair) \n\ + (hash-table-set! h (car pair) (cdr pair))) alist) \n\ + h) \n\ + \n\ +(define (_assoc key list eq?) \n\ + (if (null? list) #f \n\ + (let ((pair (car list))) \n\ + (if (and (pair? pair) (eq? key (car pair))) \n\ + pair \n\ + (_assoc key (cdr list) eq?))))) \n\ + \n\ +(define (assoc key list) (_assoc key list equal?)) \n\ +(define (assq key list) (_assoc key list eq?)) \n\ +(define (assv key list) (_assoc key list eqv?)) \n\ + \n\ +(define (_member x list eq?) \n\ + (cond ((null? list) #f) \n\ + ((eq? (car list) x) list) \n\ + (else (_member x (cdr list) eq?)))) \n\ + \n\ +(define (member x list) (_member x list equal?)) \n\ +(define (memq x list) (_member x list eq?)) \n\ +(define (memv x list) (_member x list eqv?)) \n\ + \n\ +(define (make-initialized-vector l fn) \n\ + (let ((v (make-vector l '()))) \n\ + (do ((i 0 (+ i 1))) \n\ + ((>= i l) v) \n\ + (vector-set! v i (fn i))))) \n\ + \n\ +(define (vector-map fn v) \n\ + (make-initialized-vector \n\ + (vector-length v) \n\ + (lambda (i) (fn (vector-ref v i))))) \n\ + \n\ +(define (vector-binary-search v key< unwrap-key key) \n\ + (define (helper low high mid) \n\ + (if (<= (- high low) 1) \n\ + (if (key< (unwrap-key (vector-ref v low)) key) #f (vector-ref v low)) \n\ + (begin \n\ + (set! mid (+ low (quotient (- high low) 2))) \n\ + (if (key< key (unwrap-key (vector-ref v mid))) \n\ + (helper low mid 0) \n\ + (helper mid high 0))))) \n\ + (helper 0 (vector-length v) 0)) \n\ + \n\ + \n\ +(define (_insertsort v lo hi op) \n\ + (if (= (- hi lo) 0) \n\ + v \n\ + (do ((i (+ lo 1) (+ i 1))) \n\ + ((= i hi) v) \n\ + \n\ + (define x (vector-ref v i)) \n\ + \n\ + (do ((j i (- j 1))) \n\ + ((or \n\ + (= j lo) \n\ + (not (op x (vector-ref v (- j 1))))) \n\ + (vector-set! v j x)) \n\ + \n\ + (vector-set! v j (vector-ref v (- j 1))))) )) \n\ + \n\ +(define (_quicksort-partition v lo hi op) \n\ + (let ((pivot (vector-ref v (+ lo (/ (- hi lo) 2)))) \n\ + (i (- lo 1)) \n\ + (j (+ hi 1))) \n\ + (do () \n\ + ((>= i j) j) \n\ + \n\ + (set! i (+ i 1)) \n\ + (do () \n\ + ((not (op (vector-ref v i) pivot)) '()) \n\ + (set! i (+ i 1))) \n\ + \n\ + (set! j (- j 1)) \n\ + (do () \n\ + ((not (op pivot (vector-ref v j))) '()) \n\ + (set! j (- j 1))) \n\ + \n\ + (if (< i j) (vector-swap! v i j)) \n\ + ))) \n\ + \n\ +(define (_quicksort-vector v lo hi threshold op) \n\ + (if (and (>= lo 0) (>= hi 0) (< lo hi) (> (- hi lo) threshold)) \n\ + (let ((p (_quicksort-partition v lo hi op))) \n\ + (_quicksort-vector v lo p threshold op) \n\ + (_quicksort-vector v (+ p 1) hi threshold op)))) \n\ + \n\ +(define (sort! v op) \n\ + ; quicksort down to a certain level of recursion and \n\ + ; then use insertion sort to finalize. \n\ + (_quicksort-vector v 0 (- (vector-length v) 1) 16 op) \n\ + (_insertsort v 0 (vector-length v) op) \n\ + v) \n\ + \n\ +(define (sort list cmp) (vector->list (sort! (list->vector list) cmp)))"; + +static const char* lib_5_streams_src_ = +"(define-macro delay (lambda (expr) \n\ + `(make-promise ,(cons 'LAMBDA \n\ + (cons '() \n\ + (cons expr '())))))) \n\ + \n\ +(define (force promise) \n\ + (if (not (promise-forced? promise)) \n\ + (_promise-store! promise ((_promise-procedure promise)))) \n\ + (promise-value promise)) \n\ + \n\ +(define-macro cons-stream (lambda (x expr) `(cons ,x (delay ,expr)))) \n\ + \n\ +(define (stream-car stream) (car stream)) \n\ +(define (stream-cdr stream) (force (cdr stream))) \n\ + \n\ +(define (stream-pair? x) \n\ + (and (pair? x) (promise? (cdr x)))) \n\ + \n\ +(define (stream-null? stream) (null? stream)) \n\ + \n\ +(define (stream->list-helper stream result) \n\ + (if (stream-null? stream) \n\ + (reverse! result) \n\ + (stream->list-helper \n\ + (force (cdr stream)) \n\ + (cons (car stream) result)))) \n\ + \n\ +(define (stream->list stream) \n\ + (stream->list-helper stream '())) \n\ + \n\ +(define (list->stream list) \n\ + (if (null? list) \n\ + '() \n\ + (cons-stream (car list) (list->stream (cdr list))))) \n\ + \n\ +(define (stream . args) (list->stream args)) \n\ + \n\ +(define (stream-head-helper stream k result) \n\ + (if (= k 0) \n\ + (reverse! result) \n\ + (stream-head-helper (force (cdr stream)) (- k 1) (cons (car stream) result)))) \n\ + \n\ +(define (stream-head stream k) \n\ + (stream-head-helper stream k '())) \n\ + \n\ +(define (stream-tail stream k) \n\ + (if (= k 0) \n\ + stream \n\ + (stream-tail (stream-cdr stream) (- k 1)))) \n\ + \n\ +(define (stream-filter pred stream) \n\ + (cond ((stream-null? stream) the-empty-stream) \n\ + ((pred (stream-car stream)) \n\ + (cons-stream (stream-car stream) \n\ + (stream-filter pred \n\ + (stream-cdr stream)))) \n\ + (else (stream-filter pred (stream-cdr stream)))))"; + +static const char* lib_6_other_src_ = +"(define (char>=? a b) (not (char? a b) (char=? a b) (not (char-ci? a b) (char-ci= (char->integer c) (char->integer #\\a)) \n\ + (<= (char->integer c) (char->integer #\\z)))) \n\ + \n\ +(define (char-upper-case? c) \n\ + (and (>= (char->integer c) (char->integer #\\A)) \n\ + (<= (char->integer c) (char->integer #\\Z)))) \n\ + \n\ +(define (procedure? p) (or (compiled-procedure? p) (compound-procedure? p))) \n\ + \n\ +(define (current-input-port) _current-input-port) \n\ +(define (current-output-port) _current-output-port) \n\ + \n\ +(define (read . args) \n\ + (_read (if (null? args) \n\ + (current-input-port) \n\ + (car args)))) \n\ + \n\ +(define (write obj . args) \n\ + (_write obj (if (null? args) \n\ + (current-output-port) \n\ + (car args)))) \n\ + \n\ +(define (display obj . args) \n\ + (_display obj (if (null? args) \n\ + (current-output-port) \n\ + (car args)))) \n\ + \n\ + \n\ +(define (write-char obj . args) \n\ + (_write-char obj (if (null? args) \n\ + (current-output-port) \n\ + (car args)))) \n\ + \n\ +(define (flush-output-port . args) \n\ + (_flush-output-port (if (null? args) \n\ + (current-output-port) \n\ + (car args)))) \n\ + \n\ + \n\ +(define (newline) (write-char #\\newline)) \n\ + \n\ +(define-macro assert (lambda (body) \n\ + `(if ,body '() \n\ + (begin \n\ + (display (quote ,body)) \n\ + (error \" assert failed\"))))) \n\ + \n\ +(define-macro ==> (lambda (test expected) \n\ + `(assert (equal? ,test (quote ,expected))) ))"; + +#include +#include +#include + +#include +#include +#include +#include + +#define ARITY_CHECK(min_, max_) do { \ + int args_length_ = lisp_list_length(args); \ + if (args_length_ < min_) { *e = LISP_ERROR_TOO_FEW_ARGS; return lisp_null(); } \ + if (args_length_ > max_) { *e = LISP_ERROR_TOO_MANY_ARGS; return lisp_null(); } \ +} while (0); + +static Lisp sch_cons(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp x = lisp_car(args); + args = lisp_cdr(args); + Lisp y = lisp_car(args); + return lisp_cons(x, y, ctx); +} + +static Lisp sch_car(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_car(lisp_car(args)); +} + +static Lisp sch_cdr(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_cdr(lisp_car(args)); +} + +static Lisp sch_set_car(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + lisp_set_car(a, b); + return lisp_null(); +} + +static Lisp sch_set_cdr(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + lisp_set_cdr(a, b); + return lisp_null(); +} + +static Lisp sch_exact_eq(Lisp args, LispError* e, LispContext ctx) +{ + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + return lisp_make_bool(lisp_eq(a, b)); +} + +static Lisp sch_equal(Lisp args, LispError* e, LispContext ctx) +{ + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + return lisp_make_bool(lisp_equal(a, b)); +} + +static Lisp sch_equal_r(Lisp args, LispError* e, LispContext ctx) +{ + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + return lisp_make_bool(lisp_equal_r(a, b)); +} + +static Lisp sch_is_null(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_is_null(lisp_car(args))); +} + +static Lisp sch_is_pair(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_PAIR); +} + +static Lisp sch_write(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + lisp_printf(lisp_port(b), a); + return lisp_null(); +} + +static Lisp sch_display(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + lisp_displayf(lisp_port(b), a); + return a; +} + +static Lisp sch_write_char(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + + fputc(lisp_char(a), lisp_port(b)); + return lisp_false(); +} + +static Lisp sch_flush(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + fflush(lisp_port(a)); + return lisp_false(); +} + +static Lisp sch_read(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + return lisp_read_file(lisp_port(a), e, ctx); +} + +static Lisp sch_is_port_in(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_PORT_IN); +} + +static Lisp sch_is_port_out(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_PORT_OUT); +} + +static Lisp sch_open_input(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + FILE* f = fopen(lisp_string(a), "r"); + if (!f) { + *e = LISP_ERROR_FILE_OPEN; + return lisp_null(); + } + + return lisp_make_port(f, 1); +} + +static Lisp sch_open_output(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + FILE* f = fopen(lisp_string(a), "w"); + return lisp_make_port(f, 0); +} + +static Lisp sch_port_close(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + fclose(lisp_port(a)); + return lisp_null(); +} + +static Lisp sch_is_eof(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_equal(lisp_car(args), lisp_eof())); +} + +static Lisp sch_error(Lisp args, LispError* e, LispContext ctx) +{ + if (lisp_is_pair(args)) + { + Lisp l = lisp_car(args); + fputs(lisp_string(l), lisp_stderr(ctx)); + args = lisp_cdr(args); + } + while (lisp_is_pair(args)) + { + fputs(" ", lisp_stderr(ctx)); + lisp_printf(lisp_stderr(ctx), lisp_car(args)); + args = lisp_cdr(args); + } + + *e = LISP_ERROR_RUNTIME; + return lisp_null(); +} + +static Lisp sch_syntax_error(Lisp args, LispError* e, LispContext ctx) +{ + fprintf(lisp_stderr(ctx), "expand error: %s ", lisp_string(lisp_car(args))); + args = lisp_cdr(args); + if (!lisp_is_null(args)) + { + lisp_printf(lisp_stderr(ctx), lisp_car(args)); + } + fprintf(lisp_stderr(ctx), "\n"); + + *e = LISP_ERROR_FORM_SYNTAX; + return lisp_null(); +} + +static Lisp sch_equals(Lisp args, LispError* e, LispContext ctx) +{ + Lisp to_check = lisp_car(args); + if (lisp_is_null(to_check)) return lisp_true(); + args = lisp_cdr(args); + + while (lisp_is_pair(args)) + { + if (lisp_bool(lisp_car(args)) != lisp_bool(to_check)) return lisp_false(); + args = lisp_cdr(args); + } + return lisp_true(); +} + +static Lisp sch_list(Lisp args, LispError* e, LispContext ctx) { return args; } + +static Lisp sch_is_list(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_is_list(lisp_car(args))); +} + +static Lisp sch_make_list(Lisp args, LispError* e, LispContext ctx) +{ + Lisp length = lisp_car(args); + if (lisp_type(length) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + Lisp next = lisp_cdr(args); + Lisp x; + if (lisp_is_null(next)) + { + x = lisp_null(); + } + else + { + x = lisp_car(lisp_cdr(args)); + } + return lisp_make_list(x, lisp_int(length), ctx); +} + +static Lisp sch_list_copy(Lisp args, LispError* e, LispContext ctx) { + return lisp_list_copy(lisp_car(args), ctx); +} + +static Lisp sch_append(Lisp args, LispError* e, LispContext ctx) +{ + Lisp l = lisp_null(); + + while (lisp_is_pair(args)) + { + l = lisp_list_append(l, lisp_car(args), ctx); + args = lisp_cdr(args); + } + return l; +} + +static Lisp sch_append_reverse(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + + Lisp l = lisp_car(args); + args = lisp_cdr(args); + Lisp tail = lisp_car(args); + + return lisp_list_reverse2(l, tail); +} + +static Lisp sch_list_ref(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp list = lisp_car(args); + args = lisp_cdr(args); + Lisp index = lisp_car(args); + return lisp_list_ref(list, lisp_int(index)); +} + +static Lisp sch_length(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_int(lisp_list_length(lisp_car(args))); +} + +static Lisp sch_list_advance(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp x = lisp_car(args); + args = lisp_cdr(args); + Lisp count = lisp_car(args); + return lisp_list_advance(x, lisp_int(count)); +} + +static Lisp sch_add(Lisp args, LispError* e, LispContext ctx) +{ + LispInt exact = 0; + LispReal inexact = 0; + + while (lisp_is_pair(args)) + { + Lisp x = lisp_car(args); + args = lisp_cdr(args); + switch (lisp_type(x)) + { + case LISP_INT: + exact += lisp_int(x); + break; + case LISP_REAL: + inexact += lisp_real(x); + break; + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + } + + return inexact == 0 + ? lisp_make_int(exact) + : lisp_make_real(inexact + (LispReal)exact); +} + +static Lisp sch_mult(Lisp args, LispError* e, LispContext ctx) +{ + LispInt exact = 1; + LispReal inexact = 1; + + while (lisp_is_pair(args)) + { + Lisp x = lisp_car(args); + args = lisp_cdr(args); + switch (lisp_type(x)) + { + case LISP_INT: + exact *= lisp_int(x); + break; + case LISP_REAL: + inexact *= lisp_real(x); + break; + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + } + + return inexact == 1 + ? lisp_make_int(exact) + : lisp_make_real(inexact * (LispReal)exact); +} + +static Lisp sch_sub(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 2); + Lisp x = lisp_car(args); + args = lisp_cdr(args); + + Lisp y; + if (lisp_is_null(args)) + { + y = x; + x = lisp_make_int(0); + } + else + { + y = lisp_car(args); + } + switch (lisp_type(x)) + { + case LISP_REAL: + return lisp_make_real(lisp_real(x) - lisp_number_to_real(y)); + case LISP_INT: + switch (lisp_type(y)) + { + case LISP_REAL: + return lisp_make_real(lisp_number_to_real(x) - lisp_real(y)); + case LISP_INT: + return lisp_make_int(lisp_int(x) - lisp_int(y)); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + break; + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } +} + +static Lisp sch_divide(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp x = lisp_car(args); + args = lisp_cdr(args); + Lisp y = lisp_car(args); + + switch (lisp_type(x)) + { + case LISP_REAL: + return lisp_make_real(lisp_real(x) / lisp_number_to_real(y)); + case LISP_INT: + switch (lisp_type(y)) + { + case LISP_REAL: + return lisp_make_real(lisp_number_to_real(x) / lisp_real(y)); + case LISP_INT: + // TODO: divide by zero check? + return lisp_make_int(lisp_int(x) / lisp_int(y)); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + break; + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } +} + +static Lisp sch_less(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp x = lisp_car(args); + args = lisp_cdr(args); + Lisp y = lisp_car(args); + + switch (lisp_type(x)) + { + case LISP_REAL: + return lisp_make_bool(lisp_real(x) < lisp_number_to_real(y)); + case LISP_INT: + switch (lisp_type(y)) + { + case LISP_REAL: + return lisp_make_bool(lisp_number_to_real(x) < lisp_real(y)); + case LISP_INT: + return lisp_make_bool(lisp_int(x) < lisp_int(y)); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + break; + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } +} + +static Lisp sch_to_exact(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_int(lisp_number_to_int(lisp_car(args))); +} + +static Lisp sch_to_inexact(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real(lisp_number_to_real(lisp_car(args))); +} + +static Lisp sch_symbol_to_string(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp val = lisp_car(args); + if (lisp_type(val) != LISP_SYMBOL) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + else + { + return lisp_make_string2(lisp_symbol_string(val), ctx); + } +} + +static Lisp sch_is_symbol(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_SYMBOL); +} + +static Lisp sch_symbol_less(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + int result = strncmp(lisp_symbol_string(a), lisp_symbol_string(b), LISP_IDENTIFIER_MAX) < 0; + return lisp_make_bool(result); +} + +static Lisp sch_string_to_symbol(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp val = lisp_car(args); + if (lisp_type(val) != LISP_STRING) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + else + { + return lisp_make_symbol(lisp_string(val), ctx); + } +} + +static Lisp sch_gensym(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(0, 0); + return lisp_gen_symbol(ctx); +} + +static Lisp sch_is_string(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_STRING); +} + +static Lisp sch_string_is_null(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + return lisp_make_bool(lisp_string(a)[0] == '\0'); +} + +static Lisp sch_make_string(Lisp args, LispError* e, LispContext ctx) +{ + Lisp length = lisp_car(args); + + if (lisp_type(length) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + Lisp s = lisp_make_string(lisp_int(length), ctx); + args = lisp_cdr(args); + + if (!lisp_is_null(args)) + lisp_buffer_fill(s, 0, lisp_int(length), lisp_char(lisp_car(args))); + return s; +} + +static Lisp sch_string_less(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + int result = strcmp(lisp_string(a), lisp_string(b)) < 0; + return lisp_make_bool(result); +} + +static Lisp sch_substring(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(3, 3); + Lisp s = lisp_car(args); + args = lisp_cdr(args); + Lisp start = lisp_car(args); + args = lisp_cdr(args); + Lisp end = lisp_car(args); + return lisp_substring(s, lisp_int(start), lisp_int(end), ctx); +} + +static Lisp sch_string_length(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + int n = lisp_string_length(lisp_car(args)); + return lisp_make_int(n); +} + +static Lisp sch_string_ref(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp str = lisp_car(args); + Lisp index = lisp_car(lisp_cdr(args)); + if (lisp_type(str) != LISP_STRING || lisp_type(index) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + return lisp_make_char((int)lisp_string_ref(str, lisp_int(index))); +} + +static Lisp sch_string_set(Lisp args, LispError* e, LispContext ctx) +{ + Lisp str = lisp_car(args); + args = lisp_cdr(args); + Lisp index = lisp_car(args); + args = lisp_cdr(args); + Lisp val = lisp_car(args); + if (lisp_type(str) != LISP_STRING || lisp_type(index) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + lisp_string_set(str, lisp_int(index), (char)lisp_int(val)); + return lisp_null(); +} + +static Lisp sch_string_upcase(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp r = lisp_buffer_copy(lisp_car(args), ctx); + + char* c = lisp_buffer(r); + while (*c) { *c = toupper(*c); ++c; } + return r; +} + +static Lisp sch_string_downcase(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp r = lisp_buffer_copy(lisp_car(args), ctx); + + char* c = lisp_buffer(r); + while (*c) { *c = tolower(*c); ++c; } + return r; +} + +static Lisp sch_string_append(Lisp args, LispError* e, LispContext ctx) +{ + int count = 0; + Lisp it = args; + while (lisp_is_pair(it)) + { + Lisp x = lisp_car(it); + count += strlen(lisp_string(x)); + it = lisp_cdr(it); + } + + Lisp result = lisp_make_string(count, ctx); + char* c = lisp_buffer(result); + + it = args; + while (lisp_is_pair(it)) + { + Lisp x = lisp_car(it); + int n = (LispInt)strlen(lisp_string(x)); + memcpy(c, lisp_string(x), n); + c += n; + it = lisp_cdr(it); + } + return result; +} + +static Lisp sch_string_to_list(Lisp args, LispError* e, LispContext ctx) +{ + const char* c = lisp_string(lisp_car(args)); + Lisp tail = lisp_null(); + while (*c) + { + tail = lisp_cons(lisp_make_char(*c), tail, ctx); + ++c; + } + return lisp_list_reverse(tail); +} + +static Lisp sch_list_to_string(Lisp args, LispError* e, LispContext ctx) +{ + Lisp l = lisp_car(args); + Lisp result = lisp_make_string(lisp_list_length(l), ctx); + char* s = lisp_buffer(result); + + while (lisp_is_pair(l)) + { + *s = (char)lisp_char(lisp_car(l)); + ++s; + l = lisp_cdr(l); + } + return result; +} + +static Lisp sch_string_to_number(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + const char* string = lisp_string(lisp_car(args)); + if (strchr(string, '.')) + { + return lisp_parse_real(string); + } + else + { + return lisp_parse_int(string); + } +} + +static Lisp sch_number_to_string(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + char scratch[64]; + Lisp val = lisp_car(args); + switch (lisp_type(val)) + { + case LISP_REAL: + snprintf(scratch, 64, "%f", lisp_real(val)); + break; + case LISP_INT: + snprintf(scratch, 64, "%lli", lisp_int(val)); + break; + default: + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + } + return lisp_make_string2(scratch, ctx); +} + +static Lisp sch_char_less(Lisp args, LispError* e, LispContext ctx) +{ + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + return lisp_make_bool(lisp_char(a) < lisp_char(b)); +} + +static Lisp sch_is_char(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_CHAR); +} + +static Lisp sch_char_upcase(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_char(toupper(c)); +} + +static Lisp sch_char_downcase(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_char(tolower(c)); +} + +static Lisp sch_char_is_alphanum(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_bool(isalnum(c)); +} + +static Lisp sch_char_is_alpha(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_bool(isalpha(c)); +} + +static Lisp sch_char_is_number(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_bool(isdigit(c)); +} + +static Lisp sch_char_is_white(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_bool(isblank(c)); +} + +static Lisp sch_char_to_int(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_int(lisp_char(lisp_car(args))); +} + +static Lisp sch_is_int(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_INT); +} + +static Lisp sch_is_real(Lisp args, LispError* e, LispContext ctx) +{ + LispType t = lisp_type(lisp_car(args)); + return lisp_make_bool(t == LISP_INT || t == LISP_REAL); +} + +static Lisp sch_is_boolean(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_BOOL); +} + +static Lisp sch_not(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(!lisp_is_true(lisp_car(args))); +} + +static Lisp sch_is_even(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool( (lisp_int(lisp_car(args)) & 1) == 0); +} + +static Lisp sch_exp(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( exp(lisp_number_to_real(lisp_car(args))) ); +} + +static int ipow(int base, int exp) +{ + int result = 1; + for (;;) + { + if (exp & 1) + result *= base; + exp >>= 1; + if (!exp) + break; + base *= base; + } + + return result; +} + +static Lisp sch_power(Lisp args, LispError* e, LispContext ctx) +{ + Lisp base = lisp_car(args); + args = lisp_cdr(args); + Lisp power = lisp_car(args); + + if (lisp_type(base) == LISP_INT && lisp_type(power) == LISP_INT) + { + return lisp_make_int( ipow(lisp_int(base), lisp_int(power)) ); + } + else + { + return lisp_make_real( pow(lisp_number_to_real(base), lisp_number_to_real(power)) ); + } +} + +static Lisp sch_log(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( log(lisp_number_to_real(lisp_car(args))) ); +} + +static Lisp sch_sin(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( sin(lisp_number_to_real(lisp_car(args))) ); +} + +static Lisp sch_cos(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( cos(lisp_number_to_real(lisp_car(args))) ); +} + +static Lisp sch_tan(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( tan(lisp_number_to_real(lisp_car(args))) ); +} + +static Lisp sch_sqrt(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( sqrt(lisp_number_to_real(lisp_car(args))) ); +} + +static Lisp sch_atan(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 2); + LispReal y = lisp_number_to_real(lisp_car(args)); + args = lisp_cdr(args); + + if (lisp_is_null(args)) + { + return lisp_make_real( atan(y) ); + } + else + { + LispReal x = lisp_number_to_real(lisp_car(args)); + return lisp_make_real( atan2(y, x) ); + } +} + +static Lisp sch_round(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp x = lisp_car(args); + switch (lisp_type(x)) + { + case LISP_INT: + return lisp_make_int((LispInt)round(lisp_int(x))); + case LISP_REAL: + return lisp_make_real(round(lisp_real(x))); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + +} + +static Lisp sch_floor(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp x = lisp_car(args); + switch (lisp_type(x)) + { + case LISP_INT: + return lisp_make_int((LispInt)floor(lisp_int(x))); + case LISP_REAL: + return lisp_make_real(floor(lisp_real(x))); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + +} + +static Lisp sch_ceiling(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp x = lisp_car(args); + switch (lisp_type(x)) + { + case LISP_INT: + return lisp_make_int((LispInt)ceil(lisp_int(x))); + case LISP_REAL: + return lisp_make_real(ceil(lisp_real(x))); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } +} + +static Lisp sch_quotient(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + LispInt a = lisp_int(lisp_car(args)); + args = lisp_cdr(args); + LispInt b = lisp_int(lisp_car(args)); + return lisp_make_int(a / b); +} + +static Lisp sch_remainder(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + int a = lisp_int(lisp_car(args)); + args = lisp_cdr(args); + int b = lisp_int(lisp_car(args)); + return lisp_make_int(a % b); +} + +static Lisp sch_modulo(Lisp args, LispError* e, LispContext ctx) +{ + int m = lisp_int(sch_remainder(args, e, ctx)); + if (m < 0) { + int b = lisp_int(lisp_car(lisp_cdr(args))); + m = (b < 0) ? m - b : m + b; + } + return lisp_make_int(m); +} + +static Lisp sch_abs(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp x = lisp_car(args); + switch (lisp_type(x)) + { + case LISP_INT: + return lisp_make_int(llabs(lisp_int(x))); + case LISP_REAL: + return lisp_make_real(fabs(lisp_real(x))); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } +} + +static Lisp sch_is_vector(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool( lisp_type(lisp_car(args)) == LISP_VECTOR ); +} + +static Lisp sch_make_vector(Lisp args, LispError* e, LispContext ctx) +{ + Lisp length = lisp_car(args); + + if (lisp_type(length) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + Lisp v = lisp_make_vector(lisp_int(length), ctx); + args = lisp_cdr(args); + + if (!lisp_is_null(args)) + lisp_vector_fill(v, lisp_car(args)); + return v; +} + +static Lisp sch_vector_grow(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + Lisp length = lisp_car(lisp_cdr(args)); + + if (lisp_type(length) != LISP_INT || lisp_type(v) != LISP_VECTOR) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + if (lisp_int(length) < lisp_vector_length(v)) + { + *e = LISP_ERROR_OUT_OF_BOUNDS; + return lisp_null(); + } + + return lisp_vector_grow(v, lisp_int(length), ctx); +} + +static Lisp sch_vector_length(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + if (lisp_type(v) != LISP_VECTOR) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + return lisp_make_int(lisp_vector_length(v)); +} + +static Lisp sch_vector_ref(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + Lisp i = lisp_car(lisp_cdr(args)); + + if (lisp_type(v) != LISP_VECTOR || lisp_type(i) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + if (lisp_int(i) >= lisp_vector_length(v)) + { + *e = LISP_ERROR_OUT_OF_BOUNDS; + return lisp_null(); + } + + return lisp_vector_ref(v, lisp_int(i)); +} + +static Lisp sch_vector_set(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_list_ref(args, 0); + Lisp i = lisp_list_ref(args, 1); + Lisp x = lisp_list_ref(args, 2); + + if (lisp_type(v) != LISP_VECTOR || lisp_type(i) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + if (lisp_int(i) >= lisp_vector_length(v)) + { + *e = LISP_ERROR_OUT_OF_BOUNDS; + return lisp_null(); + } + + lisp_vector_set(v, lisp_int(i), x); + return lisp_null(); +} + +static Lisp sch_vector_swap(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + args = lisp_cdr(args); + Lisp i = lisp_car(args); + args = lisp_cdr(args); + Lisp j = lisp_car(args); + + if (lisp_type(v) != LISP_VECTOR || lisp_type(i) != LISP_INT || lisp_type(j) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + if (lisp_int(i) >= lisp_vector_length(v) || lisp_int(j) >= lisp_vector_length(v)) + { + *e = LISP_ERROR_OUT_OF_BOUNDS; + return lisp_null(); + } + return lisp_vector_swap(v, lisp_int(i), lisp_int(j)); +} + +static Lisp sch_vector_fill(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + args = lisp_cdr(args); + lisp_vector_fill(v, lisp_car(args)); + return lisp_null(); +} + +static Lisp sch_vector_assq(Lisp args, LispError* e, LispContext ctx) +{ + Lisp k = lisp_car(args); + args = lisp_cdr(args); + Lisp v = lisp_car(args); + return lisp_avector_ref(v, k); +} + +static Lisp sch_subvector(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(3, 3); + Lisp v = lisp_car(args); + args = lisp_cdr(args); + Lisp start = lisp_car(args); + args = lisp_cdr(args); + Lisp end = lisp_car(args); + return lisp_subvector(v, lisp_int(start), lisp_int(end), ctx); +} + +static Lisp sch_list_to_vector(Lisp args, LispError* e, LispContext ctx) +{ + Lisp l = lisp_car(args); + int n = lisp_list_length(l); + Lisp v = lisp_make_vector(n, ctx); + + for (int i = 0; i < n; ++i) + { + lisp_vector_set(v, i, lisp_car(l)); + l = lisp_cdr(l); + } + return v; +} + +static Lisp sch_vector_to_list(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + int n = lisp_vector_length(v); + + Lisp tail = lisp_null(); + for (int i = 0; i < n; ++i) + tail = lisp_cons(lisp_vector_ref(v, i), tail, ctx); + return lisp_list_reverse(tail); +} + +static Lisp sch_pseudo_seed(Lisp args, LispError* e, LispContext ctx) +{ + Lisp seed = lisp_car(args); + srand((unsigned int)lisp_int(seed)); + return lisp_null(); +} + +static Lisp sch_pseudo_rand(Lisp args, LispError* e, LispContext ctx) +{ + Lisp n = lisp_car(args); + return lisp_make_int(rand() % lisp_int(n)); +} + +static Lisp sch_univeral_time(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_int((LispInt)time(NULL)); +} + +static Lisp sch_is_table(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_TABLE); +} + +static Lisp sch_table_make(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_table(ctx); +} + +static Lisp sch_table_get(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 3); + Lisp table = lisp_car(args); + args = lisp_cdr(args); + Lisp key = lisp_car(args); + args = lisp_cdr(args); + + Lisp def; + if (lisp_is_pair(args)) + { + def = lisp_car(args); + } + else + { + def = lisp_null(); + } + + int present; + Lisp result = lisp_table_get(table, key, &present); + return present ? result : def; +} + +static Lisp sch_table_set(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(3, 3); + Lisp table = lisp_car(args); + args = lisp_cdr(args); + Lisp key = lisp_car(args); + args = lisp_cdr(args); + Lisp x = lisp_car(args); + lisp_table_set(table, key, x, ctx); + return lisp_null(); +} + +static Lisp sch_table_size(Lisp args, LispError* e, LispContext ctx) +{ + Lisp table = lisp_car(args); + return lisp_make_int(lisp_table_size(table)); +} + +static Lisp sch_table_to_alist(Lisp args, LispError* e, LispContext ctx) +{ + Lisp table = lisp_car(args); + return lisp_table_to_alist(table, ctx); +} + +static Lisp sch_is_promise(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_PROMISE); +} + +static Lisp sch_make_promise(Lisp args, LispError* e, LispContext ctx) +{ + Lisp proc = lisp_car(args); + return lisp_make_promise(proc, ctx); +} + +static Lisp sch_promise_store(Lisp args, LispError* e, LispContext ctx) +{ + Lisp promise = lisp_car(args); + args = lisp_cdr(args); + Lisp val = lisp_car(args); + lisp_promise_store(promise, val); + return lisp_null(); +} + +static Lisp sch_promise_proc(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_promise_proc(lisp_car(args)); +} + +static Lisp sch_promise_val(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_promise_val(lisp_car(args)); +} + +static Lisp sch_promise_forced(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_promise_forced(lisp_car(args))); +} + +static Lisp sch_apply(Lisp args, LispError* e, LispContext ctx) +{ + Lisp operator = lisp_car(args); + args = lisp_cdr(args); + Lisp op_args = lisp_car(args); + return lisp_apply(operator, op_args, e, ctx); +} + +static Lisp sch_is_lambda(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_LAMBDA); +} + +static Lisp sch_lambda_env(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_lambda_env(lisp_car(args)); +} + +static Lisp sch_is_func(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + int type = lisp_type(lisp_car(args)); + return lisp_make_bool(type == LISP_FUNC); +} + +static Lisp sch_lambda_body(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_lambda_body(lisp_car(args)); +} + +static Lisp sch_macroexpand(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_macroexpand(lisp_car(args), e, ctx); +} + +static Lisp sch_eval(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 2); + Lisp expr = lisp_car(args); + args = lisp_cdr(args); + Lisp env = lisp_is_null(args) ? lisp_env(ctx) : lisp_car(args); + return lisp_eval2(expr, env, e, ctx); +} + +static Lisp sch_system_env(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + if (lisp_int(lisp_car(args)) == 5) + { + return lisp_cdr(lisp_env(ctx)); + } + else + { + *e = LISP_ERROR_RUNTIME; + return lisp_null(); + } +} + +static Lisp sch_user_env(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_env(ctx); +} + +static Lisp sch_gc_flip(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(0, 0); + lisp_collect(lisp_null(), ctx); + return lisp_false(); +} + +static Lisp sch_print_gc_stats(Lisp args, LispError* e, LispContext ctx) +{ + lisp_print_collect_stats(ctx); + return lisp_false(); +} + +static Lisp sch_call_cc(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_call_cc(lisp_car(args), e, ctx); +} + +static Lisp sch_is_cont(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_JUMP); +} + +#undef ARITY_CHECK + +static const LispFuncDef lib_cfunc_defs[] = { + + { "ERROR", sch_error }, + { "SYNTAX-ERROR", sch_syntax_error }, + + // Output Procedures https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Output-Procedures.html + { "_WRITE", sch_write }, + { "_DISPLAY", sch_display }, + { "_WRITE-CHAR", sch_write_char }, + { "_FLUSH-OUTPUT-PORT", sch_flush }, + { "_READ", sch_read }, + { "INPUT-PORT?", sch_is_port_in }, + { "OUTPUT-PORT?", sch_is_port_out }, + { "OPEN-INPUT-FILE", sch_open_input }, + { "OPEN-OUTPUT-FILE", sch_open_output }, + { "CLOSE-INPUT-PORT", sch_port_close }, + { "CLOSE-OUTPUT-PORT", sch_port_close }, + { "EOF-OBJECT?", sch_is_eof }, + + // Universal Time https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Universal-Time.html + { "GET-UNIVERSAL-TIME", sch_univeral_time }, + { "PRINT-GC-STATISTICS", sch_print_gc_stats }, + + { "MACROEXPAND", sch_macroexpand }, + + // Equivalence Predicates https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Equivalence-Predicates.html + { "EQ?", sch_exact_eq }, + { "EQV?", sch_equal }, + { "EQUAL?", sch_equal_r }, + + // Booleans https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Booleans.html + { "BOOLEAN?", sch_is_boolean }, + { "NOT", sch_not }, + + // PAIRS + { "CONS", sch_cons }, + { "CAR", sch_car }, + { "CDR", sch_cdr }, + { "SET-CAR!", sch_set_car }, + { "SET-CDR!", sch_set_cdr }, + { "NULL?", sch_is_null }, + { "PAIR?", sch_is_pair }, + + // Lists https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_8.html + { "LIST", sch_list }, + { "LIST?", sch_is_list }, + { "MAKE-LIST", sch_make_list }, + { "LIST-COPY", sch_list_copy }, + { "LENGTH", sch_length }, + { "APPEND", sch_append }, + { "APPEND-REVERSE!", sch_append_reverse }, + { "LIST-REF", sch_list_ref }, + { "NTHCDR", sch_list_advance }, + + // Vectors https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_9.html#SEC82 + { "VECTOR?", sch_is_vector }, + { "MAKE-VECTOR", sch_make_vector }, + { "VECTOR-GROW", sch_vector_grow }, + { "VECTOR-LENGTH", sch_vector_length }, + { "VECTOR-SET!", sch_vector_set }, + { "VECTOR-SWAP!", sch_vector_swap }, + { "VECTOR-REF", sch_vector_ref }, + { "VECTOR-FILL!", sch_vector_fill }, + { "VECTOR-ASSQ", sch_vector_assq }, + { "SUBVECTOR", sch_subvector }, + { "LIST->VECTOR", sch_list_to_vector }, + { "VECTOR->LIST", sch_vector_to_list }, + + // Strings https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_7.html#SEC61 + { "STRING?", sch_is_string }, + { "MAKE-STRING", sch_make_string }, + { "STRING=?", sch_equal_r }, + { "STRINGLIST", sch_string_to_list }, + { "LIST->STRING", sch_list_to_string }, + { "STRING->NUMBER", sch_string_to_number }, + { "NUMBER->STRING", sch_number_to_string }, + + // Characters https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Characters.html#Characters + { "CHAR?", sch_is_char }, + { "CHAR=?", sch_equals }, + { "CHARINTEGER", sch_char_to_int }, + + // Association Lists https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Association-Lists.html + // Numerical operations https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Numerical-operations.html + { "=", sch_equals }, + { "+", sch_add }, + { "-", sch_sub }, + { "*", sch_mult }, + { "/", sch_divide }, + { "<", sch_less }, + { "INTEGER?", sch_is_int }, + { "EVEN?", sch_is_even }, + { "REAL?", sch_is_real }, + { "EXP", sch_exp }, + { "EXPT", sch_power }, + { "LOG", sch_log }, + { "SIN", sch_sin }, + { "COS", sch_cos }, + { "TAN", sch_tan }, + { "ATAN", sch_atan }, + { "SQRT", sch_sqrt }, + { "ROUND", sch_round }, + { "FLOOR", sch_floor }, + { "CEILING", sch_ceiling }, + { "QUOTIENT", sch_quotient }, + { "REMAINDER", sch_remainder }, + { "MODULO", sch_modulo }, + { "ABS", sch_abs }, + { "MAGNITUDE", sch_abs }, + { "EXACT?", sch_is_int }, + { "EXACT->INEXACT", sch_to_inexact }, + { "INEXACT->EXACT", sch_to_exact }, + + // Symbols https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Symbols.html + { "SYMBOL?", sch_is_symbol }, + { "SYMBOLSYMBOL", sch_string_to_symbol }, + { "SYMBOL->STRING", sch_symbol_to_string }, + { "GENERATE-UNINTERNED-SYMBOL", sch_gensym }, + { "GENSYM", sch_gensym }, + + // Environments https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_14.html + { "EVAL", sch_eval }, + { "SCHEME-REPORT-ENVIRONMENT", sch_system_env }, + { "INTERACTION-ENVIRONMENT", sch_user_env }, + // { "THE-ENVIRONMENT", sch_current_env }, + + // Hash Tables https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Basic-Hash-Table-Operations.html#Basic-Hash-Table-Operations + { "HASH-TABLE?", sch_is_table }, + { "MAKE-HASH-TABLE", sch_table_make }, + { "HASH-TABLE-SET!", sch_table_set }, + { "HASH-TABLE-REF", sch_table_get }, + { "HASH-TABLE-SIZE", sch_table_size }, + { "HASH-TABLE->ALIST", sch_table_to_alist }, + + { "PROMISE?", sch_is_promise }, + { "MAKE-PROMISE", sch_make_promise }, + { "_PROMISE-PROCEDURE", sch_promise_proc }, + { "_PROMISE-STORE!", sch_promise_store }, + { "PROMISE-VALUE", sch_promise_val }, + { "PROMISE-FORCED?", sch_promise_forced }, + + // Procedures https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Procedure-Operations.html#Procedure-Operations + { "APPLY", sch_apply }, + { "COMPILED-PROCEDURE?", sch_is_func }, + { "COMPOUND-PROCEDURE?", sch_is_lambda }, + { "PROCEDURE-ENVIRONMENT", sch_lambda_env }, + // TOOD: Almost standard + { "PROCEDURE-BODY", sch_lambda_body }, + { "CALL/CC", sch_call_cc }, + { "CONTINUATION?", sch_is_cont }, + + // Random Numbers https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Random-Numbers.html + { "RANDOM", sch_pseudo_rand }, + { "RANDOM-SEED!", sch_pseudo_seed }, + + // Garbage Collection https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-user/Garbage-Collection.html + { "GC-FLIP", sch_gc_flip }, + + { NULL, NULL } + +}; + +void lisp_lib_load(LispContext ctx) +{ + Lisp table = lisp_make_table(ctx); + lisp_table_define_funcs(table, lib_cfunc_defs, ctx); + + lisp_table_set( + table, + lisp_make_symbol("_CURRENT-OUTPUT-PORT", ctx), + lisp_make_port(stdout, 0), + ctx + ); + + lisp_table_set( + table, + lisp_make_symbol("_CURRENT-INPUT-PORT", ctx), + lisp_make_port(stdin, 1), + ctx + ); + + Lisp system_env = lisp_env_extend(lisp_env(ctx), table, ctx); + Lisp user_env = lisp_env_extend(system_env, lisp_make_table(ctx), ctx); + lisp_set_env(user_env, ctx); + + const char* to_load[] = { + lib_0_sequences_src_, lib_1_forms_src_, + lib_2_forms_src_, lib_3_math_src_, + lib_4_sequences_src_, lib_5_streams_src_, + lib_6_other_src_, + }; + + int n = sizeof(to_load) / sizeof(const char*); + + for (int i = 0; i < n; ++i) + { + LispError error; + Lisp src = lisp_read(to_load[i], &error, ctx); + + if (error != LISP_ERROR_NONE) + { + fprintf(lisp_stderr(ctx), "failed to parse system library %d: %s\n", i, lisp_error_string(error)); + return; + } + + lisp_eval2(src, system_env, &error, ctx); + + if (error != LISP_ERROR_NONE) + { + fprintf(lisp_stderr(ctx), "failed to eval system library %d: %s\n", i, lisp_error_string(error)); + return; + } + } + + lisp_collect(lisp_null(), ctx); + +#ifdef LISP_DEBUG + lisp_print_collect_stats(ctx); +#endif +} + +LispContext lisp_init_with_lib(void) +{ + LispContext ctx = lisp_init(); + lisp_lib_load(ctx); + return ctx; +} + +/* +Copyright (c) 2021 Justin Meiners + +Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +*/ +#endif diff --git a/lisp-interpreter/printer.c b/lisp-interpreter/printer.c new file mode 100644 index 0000000..77eec80 --- /dev/null +++ b/lisp-interpreter/printer.c @@ -0,0 +1,24 @@ +#include +#include +#include + +#define LISP_IMPLEMENTATION +#include "lisp.h" + +int main(int argc, const char* argv[]) +{ + LispContext ctx = lisp_init(); + LispError error; + Lisp data = lisp_read_file(stdin, &error, ctx); + + if (error != LISP_ERROR_NONE) + { + fprintf(stderr, "error: %s\n", lisp_error_string(error)); + } + data = lisp_collect(data, ctx); + lisp_printf(stdout, data); + + lisp_shutdown(ctx); + return 0; +} + diff --git a/lisp-interpreter/repl.c b/lisp-interpreter/repl.c new file mode 100644 index 0000000..437258c --- /dev/null +++ b/lisp-interpreter/repl.c @@ -0,0 +1,163 @@ +#include +#include +#include + +// Disable asserts? +// #define NDEBUG + +//#define LISP_DEBUG + +#define LISP_IMPLEMENTATION +#include "lisp.h" +#include "lisp_lib.h" + +#define LINE_MAX 4096 + +static Lisp sch_load(Lisp args, LispError* e, LispContext ctx) +{ + Lisp path = lisp_car(args); + Lisp result = lisp_read_path(lisp_string(path), e, ctx); + if (*e != LISP_ERROR_NONE) return lisp_null(); + return lisp_eval(result, e, ctx); +} + +int main(int argc, const char* argv[]) +{ + const char* file_path = NULL; + int run_script = 0; + int verbose; +#ifdef LISP_DEBUG + verbose = 1; +#else + verbose = 0; +#endif + + for (int i = 1; i < argc; ++i) + { + if (strcmp(argv[i], "--load") == 0) + { + file_path = argv[i + 1]; + } + if (strcmp(argv[i], "--script") == 0) + { + file_path = argv[i + 1]; + run_script = 1; + } + } + + //LispContext ctx = lisp_init(); + LispContext ctx = lisp_init_with_lib(); + lisp_env_define( + lisp_cdr(lisp_env(ctx)), + lisp_make_symbol("LOAD", ctx), + lisp_make_func(sch_load), + ctx + ); + + // Load as a macro is called "include" and can be used to load files containing macros. + lisp_table_set( + lisp_macro_table(ctx), + lisp_make_symbol("INCLUDE", ctx), + lisp_make_func(sch_load), + ctx + ); + + clock_t start_time, end_time; + + if (file_path) + { + if (verbose) + { + printf("loading: %s\n", file_path); + } + + start_time = clock(); + + LispError error; + Lisp l = lisp_read_path(file_path, &error, ctx); + + if (error != LISP_ERROR_NONE) + { + fprintf(stderr, "%s. %s\n", file_path, lisp_error_string(error)); + } + + end_time = clock(); + + if (verbose) + printf("read (us): %lu\n", 1000000 * (end_time - start_time) / CLOCKS_PER_SEC); + + start_time = clock(); + + Lisp code = lisp_macroexpand(l, &error, ctx); + + if (error != LISP_ERROR_NONE) + { + fprintf(stderr, "%s\n", lisp_error_string(error)); + exit(1); + } + + + end_time = clock(); + + if (verbose) + printf("expand (us): %lu\n", 1000000 * (end_time - start_time) / CLOCKS_PER_SEC); + + + start_time = clock(); + lisp_eval(code, &error, ctx); + end_time = clock(); + + if (error != LISP_ERROR_NONE) + { + fprintf(stderr, "%s\n", lisp_error_string(error)); + exit(1); + } + + lisp_collect(lisp_null(), ctx); + + if (verbose) + printf("eval (us): %lu\n", 1000000 * (end_time - start_time) / CLOCKS_PER_SEC); + } + + if (!run_script) + { + // REPL + while (!feof(stdin)) + { + printf("> "); + char line[LINE_MAX]; + if (!fgets(line, LINE_MAX, stdin)) break; + + clock_t start_time = clock(); + LispError error; + Lisp code = lisp_read(line, &error, ctx); + + if (error != LISP_ERROR_NONE) + { + fprintf(stderr, "%s\n", lisp_error_string(error)); + continue; + } + + Lisp l = lisp_eval(code, &error, ctx); + clock_t end_time = clock(); + + if (error != LISP_ERROR_NONE) + { + fprintf(stderr, "%s\n", lisp_error_string(error)); + } + + lisp_printf(stdout, l); + printf("\n"); + + lisp_collect(lisp_null(), ctx); + + if (verbose) + printf("(us): %lu\n", 1000000 * (end_time - start_time) / CLOCKS_PER_SEC); + } + } + + lisp_shutdown(ctx); + + return 0; +} + diff --git a/lisp-interpreter/run_tests.sh b/lisp-interpreter/run_tests.sh new file mode 100755 index 0000000..8f3fc58 --- /dev/null +++ b/lisp-interpreter/run_tests.sh @@ -0,0 +1,57 @@ +#!/bin/sh + +PASS=1 + +cd tests/code + +for FILE in *.scm +do + echo "$FILE" + ../../lisp --script "$FILE" + RESULT=$? + + printf "\n" + if [ $RESULT = "0" ] + then + echo "FINISHED $FILE" + else + echo "*FAILED* $FILE" + PASS=0 + fi + printf "\n" +done + +cd ../ +cd data + +( ./test.sh ) +RESULT=$? + +if [ $RESULT = "0" ] +then + echo "FINISHED data test" +else + echo "*FAILED* data test" + PASS=0 +fi + +cd ../ +cd printer + +( ./test.sh ) +RESULT=$? + +if [ $RESULT = "0" ] +then + echo "FINISHED printer test" +else + echo "*FAILED* printer test" + PASS=0 +fi + +if [ $PASS = "0" ] +then + echo "**TESTS FAILED**" +else + echo "**TESTS PASSED**" +fi diff --git a/lisp-interpreter/sample.c b/lisp-interpreter/sample.c new file mode 100644 index 0000000..19a8e52 --- /dev/null +++ b/lisp-interpreter/sample.c @@ -0,0 +1,55 @@ +#include +#include +#include + +#define LISP_IMPLEMENTATION +#include "lisp.h" +#include "lisp_lib.h" + +Lisp integer_range(Lisp args, LispError* e, LispContext ctx) +{ + // first argument + LispInt start = lisp_int(lisp_car(args)); + args = lisp_cdr(args); + // second argument + LispInt end = lisp_int(lisp_car(args)); + + if (end < start) + { + *e = LISP_ERROR_OUT_OF_BOUNDS; + return lisp_null(); + } + + LispInt n = end - start; + Lisp numbers = lisp_make_vector(n, ctx); + + for (LispInt i = 0; i < n; ++i) + lisp_vector_set(numbers, i, lisp_make_int(start + i)); + + return numbers; +} + +int main(int argc, const char* argv[]) +{ + LispContext ctx = lisp_init(); + lisp_lib_load(ctx); + + // wrap in Lisp object + Lisp func = lisp_make_func(integer_range); + + // add to enviornment with symbol INTEGER-RANGE + Lisp env = lisp_env(ctx); + lisp_env_define(env, lisp_make_symbol("INTEGER-RANGE", ctx), func, ctx); + Lisp pi = lisp_make_real(3.141592); + lisp_env_define(env, lisp_make_symbol("PI", ctx), pi, ctx); + + LispError e; + Lisp result = lisp_eval(lisp_read("(INTEGER-RANGE 5 15)", &e, ctx), &e, ctx); + lisp_printf(stdout, result); + + if (e != LISP_ERROR_NONE) fprintf(stderr, "error: %s\n", lisp_error_string(e)); + + lisp_shutdown(ctx); + return 0; +} + diff --git a/lisp-interpreter/stdlib/0_sequences.scm b/lisp-interpreter/stdlib/0_sequences.scm new file mode 100644 index 0000000..2702eee --- /dev/null +++ b/lisp-interpreter/stdlib/0_sequences.scm @@ -0,0 +1,90 @@ +(define-macro lambda (/\_ args + (if (pair? args) + (if (pair? (cdr args)) + (if (pair? (cdr (cdr args))) + `(/\_ ,(car args) ,(cons 'BEGIN (cdr args))) + `(/\_ ,(car args) ,(car (cdr args)))) + (syntax-error "lambda missing body expressions: (lambda (args) body)")) + (syntax-error "lambda missing argument: (lambda (args) body)")))) + +(define-macro set! (lambda (var x) + (begin + (if (not (symbol? var)) (syntax-error "set! not a variable")) + `(_SET! ,var ,x)))) + +(define-macro define + (lambda (var . exprs) + (if (symbol? var) + (if (pair? (cdr exprs)) + (syntax-error "define: (define var x)") + `(_DEF ,var ,(car exprs))) + (if (pair? var) + `(_DEF ,(car var) + (LAMBDA ,(cdr var) + ,(if (null? (cdr exprs)) (car exprs) (cons 'BEGIN exprs)))) + (syntax-error "define: not a symbol") )))) + +(define (first x) (car x)) +(define (second x) (car (cdr x))) +(define (third x) (car (cdr (cdr x)))) + +(define (some? pred l) + (if (null? l) #f + (if (pred (car l)) #t + (some? pred (cdr l))))) + +(define (_map1-helper proc l result) + (if (null? l) + (reverse! result) + (_map1-helper proc + (cdr l) + (cons (proc (car l)) result)))) + +(define (map1 proc l) (_map1-helper proc l '())) + +(define (for-each1 proc l) + (if (null? l) '() + (begin (proc (car l)) (for-each1 proc (cdr l ))))) + +(define (reverse! l) (append-reverse! l '())) +(define (reverse l) (reverse! (list-copy l))) + +(define (last-pair x) + (if (pair? (cdr x)) + (last-pair (cdr x)) x)) + +(define (list-tail x k) + (if (zero? k) x + (list-tail (cdr x) (- k 1)))) + +(define (fold-left op acc lst) + (if (null? lst) acc + (fold-left op (op acc (car lst)) (cdr lst)))) + +(define (_expand-shorthand-body path) + (if (null? path) (cons 'pair '()) + (list (if (char=? (car path) #\A) + (cons 'CAR (_expand-shorthand-body (cdr path))))))) + +(define (_expand-shorthand text) + (cons 'DEFINE (cons (list (string->symbol (string-append "C" text "R")) 'pair) + (_expand-shorthand-body (string->list text))))) + +(define-macro _shorthand-accessors (lambda args (cons 'BEGIN (map1 _expand-shorthand args)))) + +(define (vector . args) (list->vector args)) + +(define (vector-copy v) (subvector v 0 (vector-length v))) +(define (vector-head v end) (subvector v 0 end)) +(define (vector-tail v start) (subvector v start (vector-length v))) + +(define (string . chars) (list->string chars)) + +(define (string>=? a b) (not (string? a b) (string (( ) ... ( )) ... ) +; => ((LAMBDA ( ... ) (BEGIN ... )) ... ) +; => named +; ((lambda () +; (define (LAMBDA ( ... ) (BEGIN ... ))) +; ( ... ))) + +(define (_check-binding-list bindings) + (for-each1 (lambda (entry) + (if (not (pair? entry)) (syntax-error "bad let binding" entry)) + (if (not (symbol? (first entry))) (syntax-error "let entry missing symbol" entry))) bindings)) + +(define (_let->combination var bindings body) + (_check-binding-list bindings) + (define body-func (_make-lambda (map1 (lambda (entry) (first entry)) bindings) body)) + (define initial-args (map1 (lambda (entry) (second entry)) bindings)) + (if (null? var) + (cons body-func initial-args) + (list (_make-lambda '() (list (list 'DEFINE var body-func) (cons var initial-args)))))) + +(define-macro let (lambda args + (if (pair? (first args)) + (_let->combination '() (car args) (cdr args)) + (_let->combination (first args) (second args) (cdr (cdr args)))))) + +(define (_let*-helper bindings body) + (if (null? bindings) (if (null? (cdr body)) (car body) (cons 'BEGIN body)) + (list 'LET (list (car bindings)) (_let*-helper (cdr bindings) body)))) + +(define-macro let* (lambda (bindings . body) + (_check-binding-list bindings) + (_let*-helper bindings body))) + +(define-macro letrec (lambda (bindings . body) + (_check-binding-list bindings) + (cons (_make-lambda (map1 (lambda (entry) (first entry)) bindings) + (append (map1 (lambda (entry) (list 'SET! (first entry) (second entry))) + bindings) body)) + (map1 (lambda (entry) '()) bindings)))) + + +; (COND ( ) +; ( ) +; ... +; (else )) +; => +; (IF +; (if +; .... +; (if )) ... ) + + +(define (_cond-check-clauses clauses) + (for-each1 (lambda (clause) + (if (not (pair? clause)) (syntax-error "cond: invalid clause")) + (if (null? (cdr clause)) (syntax-error "cond: clause missing expression"))) + clauses)) + +(define (_cond-helper clauses) + (if (null? clauses) '() + (if (eq? (car (car clauses)) 'ELSE) + (cons 'BEGIN (cdr (car clauses))) + (list 'IF + (car (car clauses)) + (cons 'BEGIN (cdr (car clauses))) + (_cond-helper (cdr clauses)))))) + +(define-macro cond (lambda clauses + (begin + (_cond-check-clauses clauses) + (_cond-helper clauses)))) + + + diff --git a/lisp-interpreter/stdlib/2_forms.scm b/lisp-interpreter/stdlib/2_forms.scm new file mode 100644 index 0000000..406a2fa --- /dev/null +++ b/lisp-interpreter/stdlib/2_forms.scm @@ -0,0 +1,75 @@ +(_shorthand-accessors "AA" "DD" "AD" "DA" "AAA" "AAD" "ADA" "DAA" "ADD" "DAD" "DDA" "DDD") + +(define (_and-helper preds) + (cond ((null? preds) #t) + ((null? (cdr preds)) (car preds)) + (else + `(IF ,(car preds) ,(_and-helper (cdr preds)) #f)))) +(define-macro and (lambda preds (_and-helper preds))) + +(define (_or-helper preds var) + (cond ((null? preds) #f) + ((null? (cdr preds)) (car preds)) + (else + `(BEGIN (SET! ,var ,(car preds)) + (IF ,var ,var ,(_or-helper (cdr preds) var)))))) + +(define-macro or (lambda preds + (let ((var (gensym))) + `(LET ((,var '())) ,(_or-helper preds var))))) + +(define-macro case (lambda (key . clauses) + (let ((expr (gensym))) + `(LET ((,expr ,key)) + ,(cons 'COND (map1 (lambda (entry) + (cons (if (pair? (car entry)) + `(MEMV ,expr (quote ,(car entry))) + (car entry)) + (cdr entry))) clauses)))))) + +(define-macro push + (lambda (v l) + `(begin (set! ,l (cons ,v ,l)) ,l))) + +; (DO (( ) ...) ( ) ) +(define-macro do + (lambda (vars loop-check . loops) + (let ( (names '()) (inits '()) (steps '()) (f (gensym)) ) + (for-each1 (lambda (var) + (push (car var) names) + (set! var (cdr var)) + (push (car var) inits) + (set! var (cdr var)) + (push (car var) steps)) vars) + `((LAMBDA () + (DEFINE ,f (LAMBDA ,names + (IF ,(car loop-check) + ,(if (pair? (cdr loop-check)) (car (cdr loop-check)) '()) + ,(cons 'BEGIN (append loops (list (cons f steps)))) ))) + ,(cons f inits) + )) ))) + +(define-macro dotimes + (lambda (form body) + (apply (lambda (i n . result) + `(DO ((,i 0 (+ ,i 1))) + ((>= ,i ,n) ,(if (null? result) result (car result)) ) + ,body) + ) form))) + +(define-macro swap! + (lambda (x y) + (let ((temp (gensym))) + `(LET ((,temp ,x)) + (SET! ,temp ,x) + (SET! ,x ,y) + (SET! ,y ,temp))))) + +(define-macro inc! ; CL incf + (lambda (x) + `(SET! ,x (+ ,x 1)))) + +(define-macro dec! ; CL decf + (lambda (x) + `(SET! ,x (- ,x 1)))) + diff --git a/lisp-interpreter/stdlib/3_math.scm b/lisp-interpreter/stdlib/3_math.scm new file mode 100644 index 0000000..5f9c23e --- /dev/null +++ b/lisp-interpreter/stdlib/3_math.scm @@ -0,0 +1,35 @@ +(define (number? x) (real? x)) +(define (odd? x) (not (even? x))) +(define (inexact? x) (not (exact? x))) +(define (zero? x) (= x 0)) +(define (positive? x) (>= x 0)) +(define (negative? x) (< x 0)) + +(define (>= a b) (not (< a b))) +(define (> a b) (< b a)) +(define (<= a b) (not (< b a))) + +(define (max . ls) + (fold-left (lambda (m x) + (if (> x m) + x + m)) (car ls) (cdr ls))) + +(define (min . ls) + (fold-left (lambda (m x) + (if (< x m) + x + m)) (car ls) (cdr ls))) + +(define (_gcd-helper a b) + (if (= b 0) a (_gcd-helper b (modulo a b)))) + +(define (gcd . args) + (if (null? args) 0 + (_gcd-helper (car args) (car (cdr args))))) + +(define (lcm . args) + (if (null? args) 1 + (abs (* (/ (car args) (apply gcd args)) + (apply * (cdr args)))))) + diff --git a/lisp-interpreter/stdlib/4_sequences.scm b/lisp-interpreter/stdlib/4_sequences.scm new file mode 100644 index 0000000..55c2cd9 --- /dev/null +++ b/lisp-interpreter/stdlib/4_sequences.scm @@ -0,0 +1,133 @@ +(define (map proc . rest) + (define (helper lists result) + (if (some? null? lists) + (reverse! result) + (helper (map1 cdr lists) + (cons (apply proc (map1 car lists)) result)))) + (helper rest '())) + +(define (for-each proc . rest) + (define (helper lists) + (if (some? null? lists) + '() + (begin + (apply proc (map1 car lists)) + (helper (map1 cdr lists))))) + (helper rest)) + +(define (filter pred l) + (define (helper l result) + (cond ((null? l) result) + ((pred (car l)) + (helper (cdr l) (cons (car l) result))) + (else + (helper (cdr l) result)))) + (reverse! (helper l '()))) + +(define (reduce op default lst) + (if (null? lst) + default + (fold-left op (car lst) (cdr lst)))) + +(define (alist->hash-table alist) + (define h (make-hash-table)) + (for-each1 (lambda (pair) + (hash-table-set! h (car pair) (cdr pair))) alist) + h) + +(define (_assoc key list eq?) + (if (null? list) #f + (let ((pair (car list))) + (if (and (pair? pair) (eq? key (car pair))) + pair + (_assoc key (cdr list) eq?))))) + +(define (assoc key list) (_assoc key list equal?)) +(define (assq key list) (_assoc key list eq?)) +(define (assv key list) (_assoc key list eqv?)) + +(define (_member x list eq?) + (cond ((null? list) #f) + ((eq? (car list) x) list) + (else (_member x (cdr list) eq?)))) + +(define (member x list) (_member x list equal?)) +(define (memq x list) (_member x list eq?)) +(define (memv x list) (_member x list eqv?)) + +(define (make-initialized-vector l fn) + (let ((v (make-vector l '()))) + (do ((i 0 (+ i 1))) + ((>= i l) v) + (vector-set! v i (fn i))))) + +(define (vector-map fn v) + (make-initialized-vector + (vector-length v) + (lambda (i) (fn (vector-ref v i))))) + +(define (vector-binary-search v key< unwrap-key key) + (define (helper low high mid) + (if (<= (- high low) 1) + (if (key< (unwrap-key (vector-ref v low)) key) #f (vector-ref v low)) + (begin + (set! mid (+ low (quotient (- high low) 2))) + (if (key< key (unwrap-key (vector-ref v mid))) + (helper low mid 0) + (helper mid high 0))))) + (helper 0 (vector-length v) 0)) + + +(define (_insertsort v lo hi op) + (if (= (- hi lo) 0) + v + (do ((i (+ lo 1) (+ i 1))) + ((= i hi) v) + + (define x (vector-ref v i)) + + (do ((j i (- j 1))) + ((or + (= j lo) + (not (op x (vector-ref v (- j 1))))) + (vector-set! v j x)) + + (vector-set! v j (vector-ref v (- j 1))))) )) + +(define (_quicksort-partition v lo hi op) + (let ((pivot (vector-ref v (+ lo (/ (- hi lo) 2)))) + (i (- lo 1)) + (j (+ hi 1))) + (do () + ((>= i j) j) + + (set! i (+ i 1)) + (do () + ((not (op (vector-ref v i) pivot)) '()) + (set! i (+ i 1))) + + (set! j (- j 1)) + (do () + ((not (op pivot (vector-ref v j))) '()) + (set! j (- j 1))) + + (if (< i j) (vector-swap! v i j)) + ))) + +(define (_quicksort-vector v lo hi threshold op) + (if (and (>= lo 0) (>= hi 0) (< lo hi) (> (- hi lo) threshold)) + (let ((p (_quicksort-partition v lo hi op))) + (_quicksort-vector v lo p threshold op) + (_quicksort-vector v (+ p 1) hi threshold op)))) + +(define (sort! v op) + ; quicksort down to a certain level of recursion and + ; then use insertion sort to finalize. + (_quicksort-vector v 0 (- (vector-length v) 1) 16 op) + (_insertsort v 0 (vector-length v) op) + v) + +(define (sort list cmp) (vector->list (sort! (list->vector list) cmp))) + + + diff --git a/lisp-interpreter/stdlib/5_streams.scm b/lisp-interpreter/stdlib/5_streams.scm new file mode 100644 index 0000000..e3d5c28 --- /dev/null +++ b/lisp-interpreter/stdlib/5_streams.scm @@ -0,0 +1,58 @@ + +(define-macro delay (lambda (expr) + `(make-promise ,(cons 'LAMBDA + (cons '() + (cons expr '())))))) + +(define (force promise) + (if (not (promise-forced? promise)) + (_promise-store! promise ((_promise-procedure promise)))) + (promise-value promise)) + +(define-macro cons-stream (lambda (x expr) `(cons ,x (delay ,expr)))) + +(define (stream-car stream) (car stream)) +(define (stream-cdr stream) (force (cdr stream))) + +(define (stream-pair? x) + (and (pair? x) (promise? (cdr x)))) + +(define (stream-null? stream) (null? stream)) + +(define (stream->list-helper stream result) + (if (stream-null? stream) + (reverse! result) + (stream->list-helper + (force (cdr stream)) + (cons (car stream) result)))) + +(define (stream->list stream) + (stream->list-helper stream '())) + +(define (list->stream list) + (if (null? list) + '() + (cons-stream (car list) (list->stream (cdr list))))) + +(define (stream . args) (list->stream args)) + +(define (stream-head-helper stream k result) + (if (= k 0) + (reverse! result) + (stream-head-helper (force (cdr stream)) (- k 1) (cons (car stream) result)))) + +(define (stream-head stream k) + (stream-head-helper stream k '())) + +(define (stream-tail stream k) + (if (= k 0) + stream + (stream-tail (stream-cdr stream) (- k 1)))) + +(define (stream-filter pred stream) + (cond ((stream-null? stream) the-empty-stream) + ((pred (stream-car stream)) + (cons-stream (stream-car stream) + (stream-filter pred + (stream-cdr stream)))) + (else (stream-filter pred (stream-cdr stream))))) diff --git a/lisp-interpreter/stdlib/6_other.scm b/lisp-interpreter/stdlib/6_other.scm new file mode 100644 index 0000000..03b2bb4 --- /dev/null +++ b/lisp-interpreter/stdlib/6_other.scm @@ -0,0 +1,63 @@ +(define (char>=? a b) (not (char? a b) (char=? a b) (not (char-ci? a b) (char-ci= (char->integer c) (char->integer #\a)) + (<= (char->integer c) (char->integer #\z)))) + +(define (char-upper-case? c) + (and (>= (char->integer c) (char->integer #\A)) + (<= (char->integer c) (char->integer #\Z)))) + +(define (procedure? p) (or (compiled-procedure? p) (compound-procedure? p))) + +(define (current-input-port) _current-input-port) +(define (current-output-port) _current-output-port) + +(define (read . args) + (_read (if (null? args) + (current-input-port) + (car args)))) + +(define (write obj . args) + (_write obj (if (null? args) + (current-output-port) + (car args)))) + +(define (display obj . args) + (_display obj (if (null? args) + (current-output-port) + (car args)))) + + +(define (write-char obj . args) + (_write-char obj (if (null? args) + (current-output-port) + (car args)))) + +(define (flush-output-port . args) + (_flush-output-port (if (null? args) + (current-output-port) + (car args)))) + + +(define (newline) (write-char #\newline)) + +(define-macro assert (lambda (body) + `(if ,body '() + (begin + (display (quote ,body)) + (error " assert failed"))))) + +(define-macro ==> (lambda (test expected) + `(assert (equal? ,test (quote ,expected))) )) + + diff --git a/lisp-interpreter/stdlib/concat.sh b/lisp-interpreter/stdlib/concat.sh new file mode 100755 index 0000000..e8a6c75 --- /dev/null +++ b/lisp-interpreter/stdlib/concat.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +SRC=*.scm + +cat lib.h + +echo "// Generated from scheme source." +echo "#ifdef LISP_IMPLEMENTATION" + +for FILE in $SRC +do + echo "static const char* lib_$(basename $FILE .scm)_src_ = " + cat $FILE | ./text2c.sh + echo ";" + echo "" +done + +cat lib.c + +echo "#endif" diff --git a/lisp-interpreter/stdlib/lib.c b/lisp-interpreter/stdlib/lib.c new file mode 100644 index 0000000..dd8c2b2 --- /dev/null +++ b/lisp-interpreter/stdlib/lib.c @@ -0,0 +1,1612 @@ +#include +#include +#include + +#include +#include +#include +#include + +#define ARITY_CHECK(min_, max_) do { \ + int args_length_ = lisp_list_length(args); \ + if (args_length_ < min_) { *e = LISP_ERROR_TOO_FEW_ARGS; return lisp_null(); } \ + if (args_length_ > max_) { *e = LISP_ERROR_TOO_MANY_ARGS; return lisp_null(); } \ +} while (0); + +static Lisp sch_cons(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp x = lisp_car(args); + args = lisp_cdr(args); + Lisp y = lisp_car(args); + return lisp_cons(x, y, ctx); +} + +static Lisp sch_car(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_car(lisp_car(args)); +} + +static Lisp sch_cdr(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_cdr(lisp_car(args)); +} + +static Lisp sch_set_car(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + lisp_set_car(a, b); + return lisp_null(); +} + +static Lisp sch_set_cdr(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + lisp_set_cdr(a, b); + return lisp_null(); +} + +static Lisp sch_exact_eq(Lisp args, LispError* e, LispContext ctx) +{ + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + return lisp_make_bool(lisp_eq(a, b)); +} + +static Lisp sch_equal(Lisp args, LispError* e, LispContext ctx) +{ + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + return lisp_make_bool(lisp_equal(a, b)); +} + +static Lisp sch_equal_r(Lisp args, LispError* e, LispContext ctx) +{ + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + return lisp_make_bool(lisp_equal_r(a, b)); +} + +static Lisp sch_is_null(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_is_null(lisp_car(args))); +} + +static Lisp sch_is_pair(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_PAIR); +} + +static Lisp sch_write(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + lisp_printf(lisp_port(b), a); + return lisp_null(); +} + +static Lisp sch_display(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + lisp_displayf(lisp_port(b), a); + return a; +} + +static Lisp sch_write_char(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + + fputc(lisp_char(a), lisp_port(b)); + return lisp_false(); +} + +static Lisp sch_flush(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + fflush(lisp_port(a)); + return lisp_false(); +} + +static Lisp sch_read(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + return lisp_read_file(lisp_port(a), e, ctx); +} + +static Lisp sch_is_port_in(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_PORT_IN); +} + +static Lisp sch_is_port_out(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_PORT_OUT); +} + +static Lisp sch_open_input(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + FILE* f = fopen(lisp_string(a), "r"); + if (!f) { + *e = LISP_ERROR_FILE_OPEN; + return lisp_null(); + } + + return lisp_make_port(f, 1); +} + +static Lisp sch_open_output(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + FILE* f = fopen(lisp_string(a), "w"); + return lisp_make_port(f, 0); +} + +static Lisp sch_port_close(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + fclose(lisp_port(a)); + return lisp_null(); +} + +static Lisp sch_is_eof(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_equal(lisp_car(args), lisp_eof())); +} + +static Lisp sch_error(Lisp args, LispError* e, LispContext ctx) +{ + if (lisp_is_pair(args)) + { + Lisp l = lisp_car(args); + fputs(lisp_string(l), lisp_stderr(ctx)); + args = lisp_cdr(args); + } + while (lisp_is_pair(args)) + { + fputs(" ", lisp_stderr(ctx)); + lisp_printf(lisp_stderr(ctx), lisp_car(args)); + args = lisp_cdr(args); + } + + *e = LISP_ERROR_RUNTIME; + return lisp_null(); +} + +static Lisp sch_syntax_error(Lisp args, LispError* e, LispContext ctx) +{ + fprintf(lisp_stderr(ctx), "expand error: %s ", lisp_string(lisp_car(args))); + args = lisp_cdr(args); + if (!lisp_is_null(args)) + { + lisp_printf(lisp_stderr(ctx), lisp_car(args)); + } + fprintf(lisp_stderr(ctx), "\n"); + + *e = LISP_ERROR_FORM_SYNTAX; + return lisp_null(); +} + +static Lisp sch_equals(Lisp args, LispError* e, LispContext ctx) +{ + Lisp to_check = lisp_car(args); + if (lisp_is_null(to_check)) return lisp_true(); + args = lisp_cdr(args); + + while (lisp_is_pair(args)) + { + if (lisp_bool(lisp_car(args)) != lisp_bool(to_check)) return lisp_false(); + args = lisp_cdr(args); + } + return lisp_true(); +} + +static Lisp sch_list(Lisp args, LispError* e, LispContext ctx) { return args; } + +static Lisp sch_is_list(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_is_list(lisp_car(args))); +} + +static Lisp sch_make_list(Lisp args, LispError* e, LispContext ctx) +{ + Lisp length = lisp_car(args); + if (lisp_type(length) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + Lisp next = lisp_cdr(args); + Lisp x; + if (lisp_is_null(next)) + { + x = lisp_null(); + } + else + { + x = lisp_car(lisp_cdr(args)); + } + return lisp_make_list(x, lisp_int(length), ctx); +} + +static Lisp sch_list_copy(Lisp args, LispError* e, LispContext ctx) { + return lisp_list_copy(lisp_car(args), ctx); +} + +static Lisp sch_append(Lisp args, LispError* e, LispContext ctx) +{ + Lisp l = lisp_null(); + + while (lisp_is_pair(args)) + { + l = lisp_list_append(l, lisp_car(args), ctx); + args = lisp_cdr(args); + } + return l; +} + +static Lisp sch_append_reverse(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + + Lisp l = lisp_car(args); + args = lisp_cdr(args); + Lisp tail = lisp_car(args); + + return lisp_list_reverse2(l, tail); +} + +static Lisp sch_list_ref(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp list = lisp_car(args); + args = lisp_cdr(args); + Lisp index = lisp_car(args); + return lisp_list_ref(list, lisp_int(index)); +} + +static Lisp sch_length(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_int(lisp_list_length(lisp_car(args))); +} + +static Lisp sch_list_advance(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp x = lisp_car(args); + args = lisp_cdr(args); + Lisp count = lisp_car(args); + return lisp_list_advance(x, lisp_int(count)); +} + +static Lisp sch_add(Lisp args, LispError* e, LispContext ctx) +{ + LispInt exact = 0; + LispReal inexact = 0; + + while (lisp_is_pair(args)) + { + Lisp x = lisp_car(args); + args = lisp_cdr(args); + switch (lisp_type(x)) + { + case LISP_INT: + exact += lisp_int(x); + break; + case LISP_REAL: + inexact += lisp_real(x); + break; + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + } + + return inexact == 0 + ? lisp_make_int(exact) + : lisp_make_real(inexact + (LispReal)exact); +} + +static Lisp sch_mult(Lisp args, LispError* e, LispContext ctx) +{ + LispInt exact = 1; + LispReal inexact = 1; + + while (lisp_is_pair(args)) + { + Lisp x = lisp_car(args); + args = lisp_cdr(args); + switch (lisp_type(x)) + { + case LISP_INT: + exact *= lisp_int(x); + break; + case LISP_REAL: + inexact *= lisp_real(x); + break; + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + } + + return inexact == 1 + ? lisp_make_int(exact) + : lisp_make_real(inexact * (LispReal)exact); +} + +static Lisp sch_sub(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 2); + Lisp x = lisp_car(args); + args = lisp_cdr(args); + + Lisp y; + if (lisp_is_null(args)) + { + y = x; + x = lisp_make_int(0); + } + else + { + y = lisp_car(args); + } + switch (lisp_type(x)) + { + case LISP_REAL: + return lisp_make_real(lisp_real(x) - lisp_number_to_real(y)); + case LISP_INT: + switch (lisp_type(y)) + { + case LISP_REAL: + return lisp_make_real(lisp_number_to_real(x) - lisp_real(y)); + case LISP_INT: + return lisp_make_int(lisp_int(x) - lisp_int(y)); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + break; + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } +} + +static Lisp sch_divide(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp x = lisp_car(args); + args = lisp_cdr(args); + Lisp y = lisp_car(args); + + switch (lisp_type(x)) + { + case LISP_REAL: + return lisp_make_real(lisp_real(x) / lisp_number_to_real(y)); + case LISP_INT: + switch (lisp_type(y)) + { + case LISP_REAL: + return lisp_make_real(lisp_number_to_real(x) / lisp_real(y)); + case LISP_INT: + // TODO: divide by zero check? + return lisp_make_int(lisp_int(x) / lisp_int(y)); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + break; + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } +} + +static Lisp sch_less(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp x = lisp_car(args); + args = lisp_cdr(args); + Lisp y = lisp_car(args); + + switch (lisp_type(x)) + { + case LISP_REAL: + return lisp_make_bool(lisp_real(x) < lisp_number_to_real(y)); + case LISP_INT: + switch (lisp_type(y)) + { + case LISP_REAL: + return lisp_make_bool(lisp_number_to_real(x) < lisp_real(y)); + case LISP_INT: + return lisp_make_bool(lisp_int(x) < lisp_int(y)); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + break; + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } +} + +static Lisp sch_to_exact(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_int(lisp_number_to_int(lisp_car(args))); +} + +static Lisp sch_to_inexact(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real(lisp_number_to_real(lisp_car(args))); +} + +static Lisp sch_symbol_to_string(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp val = lisp_car(args); + if (lisp_type(val) != LISP_SYMBOL) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + else + { + return lisp_make_string2(lisp_symbol_string(val), ctx); + } +} + +static Lisp sch_is_symbol(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_SYMBOL); +} + +static Lisp sch_symbol_less(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + int result = strncmp(lisp_symbol_string(a), lisp_symbol_string(b), LISP_IDENTIFIER_MAX) < 0; + return lisp_make_bool(result); +} + +static Lisp sch_string_to_symbol(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp val = lisp_car(args); + if (lisp_type(val) != LISP_STRING) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + else + { + return lisp_make_symbol(lisp_string(val), ctx); + } +} + +static Lisp sch_gensym(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(0, 0); + return lisp_gen_symbol(ctx); +} + +static Lisp sch_is_string(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_STRING); +} + +static Lisp sch_string_is_null(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp a = lisp_car(args); + return lisp_make_bool(lisp_string(a)[0] == '\0'); +} + +static Lisp sch_make_string(Lisp args, LispError* e, LispContext ctx) +{ + Lisp length = lisp_car(args); + + if (lisp_type(length) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + Lisp s = lisp_make_string(lisp_int(length), ctx); + args = lisp_cdr(args); + + if (!lisp_is_null(args)) + lisp_buffer_fill(s, 0, lisp_int(length), lisp_char(lisp_car(args))); + return s; +} + +static Lisp sch_string_less(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + int result = strcmp(lisp_string(a), lisp_string(b)) < 0; + return lisp_make_bool(result); +} + +static Lisp sch_substring(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(3, 3); + Lisp s = lisp_car(args); + args = lisp_cdr(args); + Lisp start = lisp_car(args); + args = lisp_cdr(args); + Lisp end = lisp_car(args); + return lisp_substring(s, lisp_int(start), lisp_int(end), ctx); +} + +static Lisp sch_string_length(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + int n = lisp_string_length(lisp_car(args)); + return lisp_make_int(n); +} + +static Lisp sch_string_ref(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + Lisp str = lisp_car(args); + Lisp index = lisp_car(lisp_cdr(args)); + if (lisp_type(str) != LISP_STRING || lisp_type(index) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + return lisp_make_char((int)lisp_string_ref(str, lisp_int(index))); +} + +static Lisp sch_string_set(Lisp args, LispError* e, LispContext ctx) +{ + Lisp str = lisp_car(args); + args = lisp_cdr(args); + Lisp index = lisp_car(args); + args = lisp_cdr(args); + Lisp val = lisp_car(args); + if (lisp_type(str) != LISP_STRING || lisp_type(index) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + lisp_string_set(str, lisp_int(index), (char)lisp_int(val)); + return lisp_null(); +} + +static Lisp sch_string_upcase(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp r = lisp_buffer_copy(lisp_car(args), ctx); + + char* c = lisp_buffer(r); + while (*c) { *c = toupper(*c); ++c; } + return r; +} + +static Lisp sch_string_downcase(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp r = lisp_buffer_copy(lisp_car(args), ctx); + + char* c = lisp_buffer(r); + while (*c) { *c = tolower(*c); ++c; } + return r; +} + +static Lisp sch_string_append(Lisp args, LispError* e, LispContext ctx) +{ + int count = 0; + Lisp it = args; + while (lisp_is_pair(it)) + { + Lisp x = lisp_car(it); + count += strlen(lisp_string(x)); + it = lisp_cdr(it); + } + + Lisp result = lisp_make_string(count, ctx); + char* c = lisp_buffer(result); + + it = args; + while (lisp_is_pair(it)) + { + Lisp x = lisp_car(it); + int n = (LispInt)strlen(lisp_string(x)); + memcpy(c, lisp_string(x), n); + c += n; + it = lisp_cdr(it); + } + return result; +} + +static Lisp sch_string_to_list(Lisp args, LispError* e, LispContext ctx) +{ + const char* c = lisp_string(lisp_car(args)); + Lisp tail = lisp_null(); + while (*c) + { + tail = lisp_cons(lisp_make_char(*c), tail, ctx); + ++c; + } + return lisp_list_reverse(tail); +} + +static Lisp sch_list_to_string(Lisp args, LispError* e, LispContext ctx) +{ + Lisp l = lisp_car(args); + Lisp result = lisp_make_string(lisp_list_length(l), ctx); + char* s = lisp_buffer(result); + + while (lisp_is_pair(l)) + { + *s = (char)lisp_char(lisp_car(l)); + ++s; + l = lisp_cdr(l); + } + return result; +} + +static Lisp sch_string_to_number(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + const char* string = lisp_string(lisp_car(args)); + if (strchr(string, '.')) + { + return lisp_parse_real(string); + } + else + { + return lisp_parse_int(string); + } +} + +static Lisp sch_number_to_string(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + char scratch[64]; + Lisp val = lisp_car(args); + switch (lisp_type(val)) + { + case LISP_REAL: + snprintf(scratch, 64, "%f", lisp_real(val)); + break; + case LISP_INT: + snprintf(scratch, 64, "%lli", lisp_int(val)); + break; + default: + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + } + return lisp_make_string2(scratch, ctx); +} + +static Lisp sch_char_less(Lisp args, LispError* e, LispContext ctx) +{ + Lisp a = lisp_car(args); + args = lisp_cdr(args); + Lisp b = lisp_car(args); + return lisp_make_bool(lisp_char(a) < lisp_char(b)); +} + +static Lisp sch_is_char(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_CHAR); +} + +static Lisp sch_char_upcase(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_char(toupper(c)); +} + +static Lisp sch_char_downcase(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_char(tolower(c)); +} + +static Lisp sch_char_is_alphanum(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_bool(isalnum(c)); +} + +static Lisp sch_char_is_alpha(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_bool(isalpha(c)); +} + +static Lisp sch_char_is_number(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_bool(isdigit(c)); +} + +static Lisp sch_char_is_white(Lisp args, LispError* e, LispContext ctx) +{ + int c = lisp_char(lisp_car(args)); + return lisp_make_bool(isblank(c)); +} + +static Lisp sch_char_to_int(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_int(lisp_char(lisp_car(args))); +} + +static Lisp sch_is_int(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_INT); +} + +static Lisp sch_is_real(Lisp args, LispError* e, LispContext ctx) +{ + LispType t = lisp_type(lisp_car(args)); + return lisp_make_bool(t == LISP_INT || t == LISP_REAL); +} + +static Lisp sch_is_boolean(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_BOOL); +} + +static Lisp sch_not(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(!lisp_is_true(lisp_car(args))); +} + +static Lisp sch_is_even(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool( (lisp_int(lisp_car(args)) & 1) == 0); +} + +static Lisp sch_exp(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( exp(lisp_number_to_real(lisp_car(args))) ); +} + +static int ipow(int base, int exp) +{ + int result = 1; + for (;;) + { + if (exp & 1) + result *= base; + exp >>= 1; + if (!exp) + break; + base *= base; + } + + return result; +} + +static Lisp sch_power(Lisp args, LispError* e, LispContext ctx) +{ + Lisp base = lisp_car(args); + args = lisp_cdr(args); + Lisp power = lisp_car(args); + + if (lisp_type(base) == LISP_INT && lisp_type(power) == LISP_INT) + { + return lisp_make_int( ipow(lisp_int(base), lisp_int(power)) ); + } + else + { + return lisp_make_real( pow(lisp_number_to_real(base), lisp_number_to_real(power)) ); + } +} + +static Lisp sch_log(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( log(lisp_number_to_real(lisp_car(args))) ); +} + +static Lisp sch_sin(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( sin(lisp_number_to_real(lisp_car(args))) ); +} + +static Lisp sch_cos(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( cos(lisp_number_to_real(lisp_car(args))) ); +} + +static Lisp sch_tan(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( tan(lisp_number_to_real(lisp_car(args))) ); +} + +static Lisp sch_sqrt(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_real( sqrt(lisp_number_to_real(lisp_car(args))) ); +} + +static Lisp sch_atan(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 2); + LispReal y = lisp_number_to_real(lisp_car(args)); + args = lisp_cdr(args); + + if (lisp_is_null(args)) + { + return lisp_make_real( atan(y) ); + } + else + { + LispReal x = lisp_number_to_real(lisp_car(args)); + return lisp_make_real( atan2(y, x) ); + } +} + +static Lisp sch_round(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp x = lisp_car(args); + switch (lisp_type(x)) + { + case LISP_INT: + return lisp_make_int((LispInt)round(lisp_int(x))); + case LISP_REAL: + return lisp_make_real(round(lisp_real(x))); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + +} + +static Lisp sch_floor(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp x = lisp_car(args); + switch (lisp_type(x)) + { + case LISP_INT: + return lisp_make_int((LispInt)floor(lisp_int(x))); + case LISP_REAL: + return lisp_make_real(floor(lisp_real(x))); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + +} + +static Lisp sch_ceiling(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp x = lisp_car(args); + switch (lisp_type(x)) + { + case LISP_INT: + return lisp_make_int((LispInt)ceil(lisp_int(x))); + case LISP_REAL: + return lisp_make_real(ceil(lisp_real(x))); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } +} + +static Lisp sch_quotient(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + LispInt a = lisp_int(lisp_car(args)); + args = lisp_cdr(args); + LispInt b = lisp_int(lisp_car(args)); + return lisp_make_int(a / b); +} + +static Lisp sch_remainder(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 2); + int a = lisp_int(lisp_car(args)); + args = lisp_cdr(args); + int b = lisp_int(lisp_car(args)); + return lisp_make_int(a % b); +} + +static Lisp sch_modulo(Lisp args, LispError* e, LispContext ctx) +{ + int m = lisp_int(sch_remainder(args, e, ctx)); + if (m < 0) { + int b = lisp_int(lisp_car(lisp_cdr(args))); + m = (b < 0) ? m - b : m + b; + } + return lisp_make_int(m); +} + +static Lisp sch_abs(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + Lisp x = lisp_car(args); + switch (lisp_type(x)) + { + case LISP_INT: + return lisp_make_int(llabs(lisp_int(x))); + case LISP_REAL: + return lisp_make_real(fabs(lisp_real(x))); + default: + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } +} + +static Lisp sch_is_vector(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool( lisp_type(lisp_car(args)) == LISP_VECTOR ); +} + +static Lisp sch_make_vector(Lisp args, LispError* e, LispContext ctx) +{ + Lisp length = lisp_car(args); + + if (lisp_type(length) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + Lisp v = lisp_make_vector(lisp_int(length), ctx); + args = lisp_cdr(args); + + if (!lisp_is_null(args)) + lisp_vector_fill(v, lisp_car(args)); + return v; +} + +static Lisp sch_vector_grow(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + Lisp length = lisp_car(lisp_cdr(args)); + + if (lisp_type(length) != LISP_INT || lisp_type(v) != LISP_VECTOR) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + if (lisp_int(length) < lisp_vector_length(v)) + { + *e = LISP_ERROR_OUT_OF_BOUNDS; + return lisp_null(); + } + + return lisp_vector_grow(v, lisp_int(length), ctx); +} + +static Lisp sch_vector_length(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + if (lisp_type(v) != LISP_VECTOR) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + return lisp_make_int(lisp_vector_length(v)); +} + +static Lisp sch_vector_ref(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + Lisp i = lisp_car(lisp_cdr(args)); + + if (lisp_type(v) != LISP_VECTOR || lisp_type(i) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + if (lisp_int(i) >= lisp_vector_length(v)) + { + *e = LISP_ERROR_OUT_OF_BOUNDS; + return lisp_null(); + } + + return lisp_vector_ref(v, lisp_int(i)); +} + +static Lisp sch_vector_set(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_list_ref(args, 0); + Lisp i = lisp_list_ref(args, 1); + Lisp x = lisp_list_ref(args, 2); + + if (lisp_type(v) != LISP_VECTOR || lisp_type(i) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + + if (lisp_int(i) >= lisp_vector_length(v)) + { + *e = LISP_ERROR_OUT_OF_BOUNDS; + return lisp_null(); + } + + lisp_vector_set(v, lisp_int(i), x); + return lisp_null(); +} + +static Lisp sch_vector_swap(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + args = lisp_cdr(args); + Lisp i = lisp_car(args); + args = lisp_cdr(args); + Lisp j = lisp_car(args); + + if (lisp_type(v) != LISP_VECTOR || lisp_type(i) != LISP_INT || lisp_type(j) != LISP_INT) + { + *e = LISP_ERROR_ARG_TYPE; + return lisp_null(); + } + if (lisp_int(i) >= lisp_vector_length(v) || lisp_int(j) >= lisp_vector_length(v)) + { + *e = LISP_ERROR_OUT_OF_BOUNDS; + return lisp_null(); + } + return lisp_vector_swap(v, lisp_int(i), lisp_int(j)); +} + +static Lisp sch_vector_fill(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + args = lisp_cdr(args); + lisp_vector_fill(v, lisp_car(args)); + return lisp_null(); +} + +static Lisp sch_vector_assq(Lisp args, LispError* e, LispContext ctx) +{ + Lisp k = lisp_car(args); + args = lisp_cdr(args); + Lisp v = lisp_car(args); + return lisp_avector_ref(v, k); +} + +static Lisp sch_subvector(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(3, 3); + Lisp v = lisp_car(args); + args = lisp_cdr(args); + Lisp start = lisp_car(args); + args = lisp_cdr(args); + Lisp end = lisp_car(args); + return lisp_subvector(v, lisp_int(start), lisp_int(end), ctx); +} + +static Lisp sch_list_to_vector(Lisp args, LispError* e, LispContext ctx) +{ + Lisp l = lisp_car(args); + int n = lisp_list_length(l); + Lisp v = lisp_make_vector(n, ctx); + + for (int i = 0; i < n; ++i) + { + lisp_vector_set(v, i, lisp_car(l)); + l = lisp_cdr(l); + } + return v; +} + +static Lisp sch_vector_to_list(Lisp args, LispError* e, LispContext ctx) +{ + Lisp v = lisp_car(args); + int n = lisp_vector_length(v); + + Lisp tail = lisp_null(); + for (int i = 0; i < n; ++i) + tail = lisp_cons(lisp_vector_ref(v, i), tail, ctx); + return lisp_list_reverse(tail); +} + +static Lisp sch_pseudo_seed(Lisp args, LispError* e, LispContext ctx) +{ + Lisp seed = lisp_car(args); + srand((unsigned int)lisp_int(seed)); + return lisp_null(); +} + +static Lisp sch_pseudo_rand(Lisp args, LispError* e, LispContext ctx) +{ + Lisp n = lisp_car(args); + return lisp_make_int(rand() % lisp_int(n)); +} + +static Lisp sch_univeral_time(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_int((LispInt)time(NULL)); +} + +static Lisp sch_is_table(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_TABLE); +} + +static Lisp sch_table_make(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_table(ctx); +} + +static Lisp sch_table_get(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(2, 3); + Lisp table = lisp_car(args); + args = lisp_cdr(args); + Lisp key = lisp_car(args); + args = lisp_cdr(args); + + Lisp def; + if (lisp_is_pair(args)) + { + def = lisp_car(args); + } + else + { + def = lisp_null(); + } + + int present; + Lisp result = lisp_table_get(table, key, &present); + return present ? result : def; +} + +static Lisp sch_table_set(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(3, 3); + Lisp table = lisp_car(args); + args = lisp_cdr(args); + Lisp key = lisp_car(args); + args = lisp_cdr(args); + Lisp x = lisp_car(args); + lisp_table_set(table, key, x, ctx); + return lisp_null(); +} + +static Lisp sch_table_size(Lisp args, LispError* e, LispContext ctx) +{ + Lisp table = lisp_car(args); + return lisp_make_int(lisp_table_size(table)); +} + +static Lisp sch_table_to_alist(Lisp args, LispError* e, LispContext ctx) +{ + Lisp table = lisp_car(args); + return lisp_table_to_alist(table, ctx); +} + +static Lisp sch_is_promise(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_PROMISE); +} + +static Lisp sch_make_promise(Lisp args, LispError* e, LispContext ctx) +{ + Lisp proc = lisp_car(args); + return lisp_make_promise(proc, ctx); +} + +static Lisp sch_promise_store(Lisp args, LispError* e, LispContext ctx) +{ + Lisp promise = lisp_car(args); + args = lisp_cdr(args); + Lisp val = lisp_car(args); + lisp_promise_store(promise, val); + return lisp_null(); +} + +static Lisp sch_promise_proc(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_promise_proc(lisp_car(args)); +} + +static Lisp sch_promise_val(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_promise_val(lisp_car(args)); +} + +static Lisp sch_promise_forced(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_make_bool(lisp_promise_forced(lisp_car(args))); +} + +static Lisp sch_apply(Lisp args, LispError* e, LispContext ctx) +{ + Lisp operator = lisp_car(args); + args = lisp_cdr(args); + Lisp op_args = lisp_car(args); + return lisp_apply(operator, op_args, e, ctx); +} + +static Lisp sch_is_lambda(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_LAMBDA); +} + +static Lisp sch_lambda_env(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_lambda_env(lisp_car(args)); +} + +static Lisp sch_is_func(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + int type = lisp_type(lisp_car(args)); + return lisp_make_bool(type == LISP_FUNC); +} + +static Lisp sch_lambda_body(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_lambda_body(lisp_car(args)); +} + +static Lisp sch_macroexpand(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_macroexpand(lisp_car(args), e, ctx); +} + +static Lisp sch_eval(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 2); + Lisp expr = lisp_car(args); + args = lisp_cdr(args); + Lisp env = lisp_is_null(args) ? lisp_env(ctx) : lisp_car(args); + return lisp_eval2(expr, env, e, ctx); +} + +static Lisp sch_system_env(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + if (lisp_int(lisp_car(args)) == 5) + { + return lisp_cdr(lisp_env(ctx)); + } + else + { + *e = LISP_ERROR_RUNTIME; + return lisp_null(); + } +} + +static Lisp sch_user_env(Lisp args, LispError* e, LispContext ctx) +{ + return lisp_env(ctx); +} + +static Lisp sch_gc_flip(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(0, 0); + lisp_collect(lisp_null(), ctx); + return lisp_false(); +} + +static Lisp sch_print_gc_stats(Lisp args, LispError* e, LispContext ctx) +{ + lisp_print_collect_stats(ctx); + return lisp_false(); +} + +static Lisp sch_call_cc(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_call_cc(lisp_car(args), e, ctx); +} + +static Lisp sch_is_cont(Lisp args, LispError* e, LispContext ctx) +{ + ARITY_CHECK(1, 1); + return lisp_make_bool(lisp_type(lisp_car(args)) == LISP_JUMP); +} + +#undef ARITY_CHECK + +static const LispFuncDef lib_cfunc_defs[] = { + + { "ERROR", sch_error }, + { "SYNTAX-ERROR", sch_syntax_error }, + + // Output Procedures https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Output-Procedures.html + { "_WRITE", sch_write }, + { "_DISPLAY", sch_display }, + { "_WRITE-CHAR", sch_write_char }, + { "_FLUSH-OUTPUT-PORT", sch_flush }, + { "_READ", sch_read }, + { "INPUT-PORT?", sch_is_port_in }, + { "OUTPUT-PORT?", sch_is_port_out }, + { "OPEN-INPUT-FILE", sch_open_input }, + { "OPEN-OUTPUT-FILE", sch_open_output }, + { "CLOSE-INPUT-PORT", sch_port_close }, + { "CLOSE-OUTPUT-PORT", sch_port_close }, + { "EOF-OBJECT?", sch_is_eof }, + + // Universal Time https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Universal-Time.html + { "GET-UNIVERSAL-TIME", sch_univeral_time }, + { "PRINT-GC-STATISTICS", sch_print_gc_stats }, + + { "MACROEXPAND", sch_macroexpand }, + + // Equivalence Predicates https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Equivalence-Predicates.html + { "EQ?", sch_exact_eq }, + { "EQV?", sch_equal }, + { "EQUAL?", sch_equal_r }, + + // Booleans https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Booleans.html + { "BOOLEAN?", sch_is_boolean }, + { "NOT", sch_not }, + + // PAIRS + { "CONS", sch_cons }, + { "CAR", sch_car }, + { "CDR", sch_cdr }, + { "SET-CAR!", sch_set_car }, + { "SET-CDR!", sch_set_cdr }, + { "NULL?", sch_is_null }, + { "PAIR?", sch_is_pair }, + + // Lists https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_8.html + { "LIST", sch_list }, + { "LIST?", sch_is_list }, + { "MAKE-LIST", sch_make_list }, + { "LIST-COPY", sch_list_copy }, + { "LENGTH", sch_length }, + { "APPEND", sch_append }, + { "APPEND-REVERSE!", sch_append_reverse }, + { "LIST-REF", sch_list_ref }, + { "NTHCDR", sch_list_advance }, + + // Vectors https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_9.html#SEC82 + { "VECTOR?", sch_is_vector }, + { "MAKE-VECTOR", sch_make_vector }, + { "VECTOR-GROW", sch_vector_grow }, + { "VECTOR-LENGTH", sch_vector_length }, + { "VECTOR-SET!", sch_vector_set }, + { "VECTOR-SWAP!", sch_vector_swap }, + { "VECTOR-REF", sch_vector_ref }, + { "VECTOR-FILL!", sch_vector_fill }, + { "VECTOR-ASSQ", sch_vector_assq }, + { "SUBVECTOR", sch_subvector }, + { "LIST->VECTOR", sch_list_to_vector }, + { "VECTOR->LIST", sch_vector_to_list }, + + // Strings https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_7.html#SEC61 + { "STRING?", sch_is_string }, + { "MAKE-STRING", sch_make_string }, + { "STRING=?", sch_equal_r }, + { "STRINGLIST", sch_string_to_list }, + { "LIST->STRING", sch_list_to_string }, + { "STRING->NUMBER", sch_string_to_number }, + { "NUMBER->STRING", sch_number_to_string }, + + // Characters https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Characters.html#Characters + { "CHAR?", sch_is_char }, + { "CHAR=?", sch_equals }, + { "CHARINTEGER", sch_char_to_int }, + + // Association Lists https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Association-Lists.html + // Numerical operations https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Numerical-operations.html + { "=", sch_equals }, + { "+", sch_add }, + { "-", sch_sub }, + { "*", sch_mult }, + { "/", sch_divide }, + { "<", sch_less }, + { "INTEGER?", sch_is_int }, + { "EVEN?", sch_is_even }, + { "REAL?", sch_is_real }, + { "EXP", sch_exp }, + { "EXPT", sch_power }, + { "LOG", sch_log }, + { "SIN", sch_sin }, + { "COS", sch_cos }, + { "TAN", sch_tan }, + { "ATAN", sch_atan }, + { "SQRT", sch_sqrt }, + { "ROUND", sch_round }, + { "FLOOR", sch_floor }, + { "CEILING", sch_ceiling }, + { "QUOTIENT", sch_quotient }, + { "REMAINDER", sch_remainder }, + { "MODULO", sch_modulo }, + { "ABS", sch_abs }, + { "MAGNITUDE", sch_abs }, + { "EXACT?", sch_is_int }, + { "EXACT->INEXACT", sch_to_inexact }, + { "INEXACT->EXACT", sch_to_exact }, + + // Symbols https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Symbols.html + { "SYMBOL?", sch_is_symbol }, + { "SYMBOLSYMBOL", sch_string_to_symbol }, + { "SYMBOL->STRING", sch_symbol_to_string }, + { "GENERATE-UNINTERNED-SYMBOL", sch_gensym }, + { "GENSYM", sch_gensym }, + + // Environments https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_14.html + { "EVAL", sch_eval }, + { "SCHEME-REPORT-ENVIRONMENT", sch_system_env }, + { "INTERACTION-ENVIRONMENT", sch_user_env }, + // { "THE-ENVIRONMENT", sch_current_env }, + + // Hash Tables https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Basic-Hash-Table-Operations.html#Basic-Hash-Table-Operations + { "HASH-TABLE?", sch_is_table }, + { "MAKE-HASH-TABLE", sch_table_make }, + { "HASH-TABLE-SET!", sch_table_set }, + { "HASH-TABLE-REF", sch_table_get }, + { "HASH-TABLE-SIZE", sch_table_size }, + { "HASH-TABLE->ALIST", sch_table_to_alist }, + + { "PROMISE?", sch_is_promise }, + { "MAKE-PROMISE", sch_make_promise }, + { "_PROMISE-PROCEDURE", sch_promise_proc }, + { "_PROMISE-STORE!", sch_promise_store }, + { "PROMISE-VALUE", sch_promise_val }, + { "PROMISE-FORCED?", sch_promise_forced }, + + // Procedures https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Procedure-Operations.html#Procedure-Operations + { "APPLY", sch_apply }, + { "COMPILED-PROCEDURE?", sch_is_func }, + { "COMPOUND-PROCEDURE?", sch_is_lambda }, + { "PROCEDURE-ENVIRONMENT", sch_lambda_env }, + // TOOD: Almost standard + { "PROCEDURE-BODY", sch_lambda_body }, + { "CALL/CC", sch_call_cc }, + { "CONTINUATION?", sch_is_cont }, + + // Random Numbers https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Random-Numbers.html + { "RANDOM", sch_pseudo_rand }, + { "RANDOM-SEED!", sch_pseudo_seed }, + + // Garbage Collection https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-user/Garbage-Collection.html + { "GC-FLIP", sch_gc_flip }, + + { NULL, NULL } + +}; + +void lisp_lib_load(LispContext ctx) +{ + Lisp table = lisp_make_table(ctx); + lisp_table_define_funcs(table, lib_cfunc_defs, ctx); + + lisp_table_set( + table, + lisp_make_symbol("_CURRENT-OUTPUT-PORT", ctx), + lisp_make_port(stdout, 0), + ctx + ); + + lisp_table_set( + table, + lisp_make_symbol("_CURRENT-INPUT-PORT", ctx), + lisp_make_port(stdin, 1), + ctx + ); + + Lisp system_env = lisp_env_extend(lisp_env(ctx), table, ctx); + Lisp user_env = lisp_env_extend(system_env, lisp_make_table(ctx), ctx); + lisp_set_env(user_env, ctx); + + const char* to_load[] = { + lib_0_sequences_src_, lib_1_forms_src_, + lib_2_forms_src_, lib_3_math_src_, + lib_4_sequences_src_, lib_5_streams_src_, + lib_6_other_src_, + }; + + int n = sizeof(to_load) / sizeof(const char*); + + for (int i = 0; i < n; ++i) + { + LispError error; + Lisp src = lisp_read(to_load[i], &error, ctx); + + if (error != LISP_ERROR_NONE) + { + fprintf(lisp_stderr(ctx), "failed to parse system library %d: %s\n", i, lisp_error_string(error)); + return; + } + + lisp_eval2(src, system_env, &error, ctx); + + if (error != LISP_ERROR_NONE) + { + fprintf(lisp_stderr(ctx), "failed to eval system library %d: %s\n", i, lisp_error_string(error)); + return; + } + } + + lisp_collect(lisp_null(), ctx); + +#ifdef LISP_DEBUG + lisp_print_collect_stats(ctx); +#endif +} + +LispContext lisp_init_with_lib(void) +{ + LispContext ctx = lisp_init(); + lisp_lib_load(ctx); + return ctx; +} + +/* +Copyright (c) 2021 Justin Meiners + +Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +*/ diff --git a/lisp-interpreter/stdlib/lib.h b/lisp-interpreter/stdlib/lib.h new file mode 100644 index 0000000..1aafc00 --- /dev/null +++ b/lisp-interpreter/stdlib/lib.h @@ -0,0 +1,31 @@ +/* + Created by: Justin Meiners + Repo; https://github.com/justinmeiners/lisp-interpreter + License: MIT (See end if file) + + This file contains the scheme standard library. + See lisp.h for insructions. + */ + +#ifndef LISP_LIB_H +#define LISP_LIB_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include + +void lisp_lib_load(LispContext ctx); + +// convenience for init and load +LispContext lisp_init_with_lib(void); + +#ifdef __cplusplus +} +#endif + +#endif + + diff --git a/lisp-interpreter/stdlib/text2c.sh b/lisp-interpreter/stdlib/text2c.sh new file mode 100755 index 0000000..5f13c85 --- /dev/null +++ b/lisp-interpreter/stdlib/text2c.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +read -r -d '' content +content=${content//'\'/'\\'} +content=${content//$'\t'/'\t'} +content=${content//$'\n'/$' \\n\\\n'} +content=${content//$'\r'/'\r'} +content=${content//'"'/'\"'} +echo -n "\"$content\"" diff --git a/lisp-interpreter/test.lisp b/lisp-interpreter/test.lisp new file mode 100644 index 0000000..d2c9e6b --- /dev/null +++ b/lisp-interpreter/test.lisp @@ -0,0 +1,78 @@ +; a1 a2 ... an + +; We must end up with n multiplications of three numbers. +; Each one must have a distinct ai in the middle. +; (* aj ai ak) where j < i and i < k. + +; The neighboring elements are determined by the order of selection, +; so we can just look at the order of select elements. This is all the permutations +; of i in [1...n] so n! total possibilites. + +; However, this also tells us how to estimate. + + +(defun smallest-index (array) + "requires: array is non-empty" + (prog ((smallest 0) + (i 0) + (N (length array))) + loop + (when (>= i N) + (return smallest)) + (when (< (aref array i) (aref array smallest)) + (setf smallest i)) + (incf i) + (go loop))) + +(defun ref (array i) + (if (or (< i 0) (>= i (length array))) + 1 + (aref array i))) + +(defun estimate (array) + (if (= (length array) 1) + (aref array 0) + (let ((i (smallest-index array))) + (+ + (* + (ref array i) + (ref array (- i 1)) + (ref array (+ i 1))) + + (estimate (concatenate 'vector + (subseq array 0 i) + (subseq array (+ i 1)))))))) + +(defun upper-bound (array) + (loop for i from 0 below (length array) sum + (* (reduce #'max (subseq array 0 i) :initial-value 1) + (aref array i) + (reduce #'max (subseq array (+ i 1)) :initial-value 1)))) + +(defun upper-bound2 (array) + (let ((N (length array)) + (x (reduce #'max array))) + (+ (* (- N 2) (* x x x)) + (* (* x x)) + (* x)) + )) + +(defun lower-bound2 (array) + (let ((N (length array)) + (x (reduce #'min array))) + (+ (* (- N 2) (* x x x)) + (* (* x x)) + (* x)))) + + + + +(print (estimate #(5 3 2 8))) +(print (estimate #(10 10 10 10 10 10))) + +;(print (upper-bound #(5 3 2 8))) + + + +;(print (lower-bound2 #(10 10 10 10 10 10))) +;(print (upper-bound2 #(10 10 10 10 10 10))) diff --git a/lisp-interpreter/tests/benchmarks/palindrome.scm b/lisp-interpreter/tests/benchmarks/palindrome.scm new file mode 100644 index 0000000..bded128 --- /dev/null +++ b/lisp-interpreter/tests/benchmarks/palindrome.scm @@ -0,0 +1,34 @@ +; Find the largest palindrome made from the product of two 3-digit numbers. + +; could be 6 digits +; 10^3 = 1,000 possible palindromes +; or 5 digits +; 10^3 = 1,000 possible palindromes + +; 2,000 total + +(define (palindrome? n) + (define (check i str) + (if (> (* i 2) (string-length str)) + #t + (if (eq? (string-ref str i) + (string-ref str (- (string-length str) (+ i 1)))) + (check (+ i 1) str) + #f))) + (check 0 (number->string n))) + +(define nums '()) + + +(do ((i 100 (+ i 1))) + ((> i 999) 'done) + (do ((j 100 (+ j 1))) + ((> j 999) 'done) + (let ((n (* i j))) + (if (>= n 100000) + (if (palindrome? n) + (push n nums) + ))))) + +(display (reduce max 0 nums)) + diff --git a/lisp-interpreter/tests/code/8.scm b/lisp-interpreter/tests/code/8.scm new file mode 100644 index 0000000..ad7bb2e --- /dev/null +++ b/lisp-interpreter/tests/code/8.scm @@ -0,0 +1,47 @@ + + +(define large-num (string-append + "73167176531330624919225119674426574742355349194934" + "96983520312774506326239578318016984801869478851843" + "85861560789112949495459501737958331952853208805511" + "12540698747158523863050715693290963295227443043557" + "66896648950445244523161731856403098711121722383113" + "62229893423380308135336276614282806444486645238749" + "30358907296290491560440772390713810515859307960866" + "70172427121883998797908792274921901699720888093776" + "65727333001053367881220235421809751254540594752243" + "52584907711670556013604839586446706324415722155397" + "53697817977846174064955149290862569321978468622482" + "83972241375657056057490261407972968652414535100474" + "82166370484403199890008895243450658541227588666881" + "16427171479924442928230863465674813919123162824586" + "17866458359124566529476545682848912883142607690042" + "24219022671055626321111109370544217506941658960408" + "07198403850962455444362981230987879927244284909188" + "84580156166097919133875499200524063689912560717606" + "05886116467109405077541002256983155200055935729725" + "71636269561882670428252483600823257530420752963450")) + +(define width 13) + +(define (char->number c) + (if (char-numeric? c) + (- (char->integer c) (char->integer #\0)) + -1)) + +(define (substring->numbers subs) + (map char->number (string->list subs))) + +(define (iter i largest) + (if (>= (+ i width) (string-length large-num)) + largest + (let* ((sub (substring large-num i (+ i width))) + (set (substring->numbers sub)) + (product (apply * set))) + (if (> product (car largest)) + (iter (+ i 1) (cons product set)) + (iter (+ i 1) largest))))) + +(display (iter 0 '(-1 . '()))) + + diff --git a/lisp-interpreter/tests/code/bugs.scm b/lisp-interpreter/tests/code/bugs.scm new file mode 100644 index 0000000..2f5edeb --- /dev/null +++ b/lisp-interpreter/tests/code/bugs.scm @@ -0,0 +1,56 @@ + +; add a test for every bug that is incountered +; to avoid recreating it in the future + +; test basic vector creation and operations +(define v #(1 2 3 4 5 6 7 8 9 10)) + +(define (sum-to-n n) (/ (* n (+ n 1)) 2)) + +(define (sum-vector v) + (define (iter sum i) + (if (= i (vector-length v)) + sum + (iter (+ sum (vector-ref v i)) (+ i 1)))) + (iter 0 0)) + +(display "Sum to 10: ") +(display (sum-vector v)) +(newline) +(assert (= (sum-to-n 10) (sum-vector v))) + +; procedures with no arguments don't expand properly + +(define (hello-world) (display "hello world") (newline)) +(hello-world) + +; vector and list assoc + +(assert + (= (do ((i 1 (+ i 1)) (n 0 n)) + ((> i 10) n) + (set! n (+ i n))) + (* 5 11))) + + +(let ((sym (gensym))) + (assert (eq? sym sym))) + +(assert (equal? (cons 2000 1) (cons 2000 1))) + +(assert (equal? "apple" "apple")) +(assert (not (eq? 'DEFINE 'DEFINE-MACRO))) + +(define (scope-test var) + (let ((var "dog")) + (==> var "dog")) + (==> var "cat")) +(scope-test "cat") + +(define (scope-test-named var) + (let block-name ((var "dog")) + (==> var "dog")) + (==> var "cat")) +(scope-test-named "cat") + + diff --git a/lisp-interpreter/tests/code/dp.scm b/lisp-interpreter/tests/code/dp.scm new file mode 100644 index 0000000..cb0dcfd --- /dev/null +++ b/lisp-interpreter/tests/code/dp.scm @@ -0,0 +1,59 @@ +; PROBLEW +; W - maximum bag weight +; {m_1, m_2, ... m_n} = item weights +; {v_1, v_2, ... v_n} = item values + +; want to choose a subset I so that +; sum m_i <= W +; and +; sum v_i is maximized +; In other words, if we choose another subset J +; then sum v_j <= sum v_i + + +(define (rand-item max-weight max-cost) + (cons (random max-weight) + (random max-cost))) + +(define (build-items n) + (if (= n 0) + '() + (cons (rand-item 100 100) + (build-items (- n 1))))) +;(random-seed! (GET-UNIVERSAL-TIME)) +;(define items (build-items 10)) + + +(define items '((23 . 505) (26 . 352) (18 . 220) (32 . 354) (27 . 414) (29 . 498) (26 . 545) (30 . 473) (27 . 543))) + +(define (knapsack remaining items) + (if (or (null? items) (<= remaining 0)) + 0 + (let ((weight (car (car items))) + (val (cdr (car items)))) + (max + (if (>= (- remaining weight) 0) + (+ val (knapsack (- remaining weight) (cdr items))) + 0) + (knapsack remaining (cdr items)))))) + +(display (knapsack 67 items)) + +(assert (= (knapsack 67 items) 1270)) + + +; https://en.wikipedia.org/wiki/Levenshtein_distance +(define (edit-distance-list a b eq?) + (cond ((null? a) (length b)) + ((null? b) (length a)) + (else (min + (+ 1 (edit-distance-list (cdr a) b eq?)) ; insert + (+ 1 (edit-distance-list a (cdr b) eq?)) ; delete + (+ + (if (eq? (car a) (car b)) 0 1) ; replace if needed + (edit-distance-list (cdr a) (cdr b) eq?)))))) + +(define (edit-distance a b) + (edit-distance-list (string->list a) (string->list b) char=?)) + +(==> (edit-distance "kitten" "sitting") 3) diff --git a/lisp-interpreter/tests/code/draw-tree.scm b/lisp-interpreter/tests/code/draw-tree.scm new file mode 100644 index 0000000..40a3e90 --- /dev/null +++ b/lisp-interpreter/tests/code/draw-tree.scm @@ -0,0 +1,5 @@ +(load "include/draw-tree.scm") + +(dt '(a b c (d e f (g . h)))) + +(dt '((a) (b . c) (d e))) diff --git a/lisp-interpreter/tests/code/forms.scm b/lisp-interpreter/tests/code/forms.scm new file mode 100644 index 0000000..2eca2cb --- /dev/null +++ b/lisp-interpreter/tests/code/forms.scm @@ -0,0 +1,93 @@ +; copy examples from MIT scheme documentation and add related ones. + +; Conditionals +; https://www.gnu.org/software/mit-scheme/documentation/stable/mit-scheme-ref/Conditionals.html + +(assert (and (= 2 2) (> 2 1))) +(assert (and)) +(==> (and 3 2) 2) +(==> (and 1 2 'c '(f g)) (f g)) +(==> (or #f #\a #f) #\a) +(==> (or (memq 'b '(a b c)) (/ 3 0)) (b c)) + +(define (bit-type x) + (cond ((= x 0) 'OFF) + ((= x 1) 'ON) + (else 'UNKNOWN))) + +(==> (bit-type 0) OFF) +(==> (bit-type 1) ON) +(==> (bit-type 25) UNKNOWN) + +; https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_13.html + +; Universl Time https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Universal-Time.html +(assert (integer? (get-universal-time))) + +; https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Procedure-Operations.html#Procedure-Operations +(assert (procedure? (lambda (x) x))) +(assert (compound-procedure? (lambda (x) x))) +(assert (not (compiled-procedure? (lambda (x) x)))) +(assert (not (procedure? 3))) +(assert (= 18 (apply + (list 3 4 5 6)))) +(assert (compiled-procedure? eval)) + +(let ((x "hello") + (y "world")) +(==> (string-append x y) "helloworld")) + +(let* ((x 2) + (y (+ x 1))) + (==> (+ x y) 5)) + +(do ((i 0 (+ i 1))) + ((>= i 10)) + (assert (>= i 0)) + (display i)) + +(==> (eval '(+ 2 2)) 4) +(==> (eval '(+ 2 2) (interaction-environment)) 4) + +(assert (scheme-report-environment 5)) + +(assert (case (+ 2 3) + ((2) #f) + ((1 5) #t))) + +(assert (case 7 + ((2) #f) + ((1 5) #f) + (else #t))) + + +(assert (case 2 + ((2) #t) + ((1 5) #f) + (else #f))) + + +(assert (letrec ((even? + (lambda (n) + (if (zero? n) + #t + (odd? (- n 1))))) + (odd? + (lambda (n) + (if (zero? n) + #f + (even? (- n 1)))))) + (even? 88))) + + +(let ((x 0)) + (inc! x) + (==> x 1) + (dec! x) + (==> x 0)) + + +(let ((x 'A) (y 'B)) + (swap! x y) + (==> x B) + (==> y A)) + diff --git a/lisp-interpreter/tests/code/gc.scm b/lisp-interpreter/tests/code/gc.scm new file mode 100644 index 0000000..3811a18 --- /dev/null +++ b/lisp-interpreter/tests/code/gc.scm @@ -0,0 +1,37 @@ + +(let ((y "happy days") + (z #(1 2 3))) + (gc-flip) + (assert (string=? y "happy days")) + (assert (equal? z (vector 1 2 3)))) + +(let ((x 'HELLO) + (v #( HELLO ) )) + (display v) + (assert (eq? x (vector-ref v 0))) + (gc-flip) + (assert (eq? x (vector-ref v 0)))) + +(define counter 500) +(define big-vector '()) + +(define (basic-loop) + (begin + (set! big-vector (make-vector 200 0)) + (set! counter (- counter 1)) + (vector-fill! big-vector counter) + (gc-flip) + (assert (= (vector-ref big-vector 3) counter)) + (if (> counter 0) + (basic-loop) + '()) + ) ) + + +(basic-loop) + +(==> (call/cc (lambda (throw) (define x '(1 2 3)) (gc-flip) (throw x))) (1 2 3)) + +(print-gc-statistics) + + diff --git a/lisp-interpreter/tests/code/hash_table.scm b/lisp-interpreter/tests/code/hash_table.scm new file mode 100644 index 0000000..e788fc1 --- /dev/null +++ b/lisp-interpreter/tests/code/hash_table.scm @@ -0,0 +1,29 @@ + +(define h (make-hash-table)) + +(assert (hash-table? h)) +(hash-table-set! h 2000 1) + +(assert (equal? (list (cons 2000 1)) (hash-table->alist h))) + +(hash-table-set! h 2001 2) + +(assert (equal? -1 (hash-table-ref h 3000 -1))) +(assert (equal? 1 (hash-table-ref h 2000 -1))) +(assert (equal? 2 (hash-table-ref h 2001 -1))) + +(define h2 (alist->hash-table (hash-table->alist h))) + +(assert (equal? -1 (hash-table-ref h2 3000 -1))) +(assert (equal? 1 (hash-table-ref h2 2000 -1))) +(assert (equal? 2 (hash-table-ref h2 2001 -1))) + + +(define h3 (alist->hash-table '((APPLE . "apple") (PEAR . "pear") (BANANA . "banana")))) + + +(assert (equal? "apple" (hash-table-ref h3 'APPLE))) +(assert (equal? "pear" (hash-table-ref h3 'PEAR))) +(assert (equal? '() (hash-table-ref h3 'HASH))) + + diff --git a/lisp-interpreter/tests/code/include/draw-tree.scm b/lisp-interpreter/tests/code/include/draw-tree.scm new file mode 100644 index 0000000..4fa0337 --- /dev/null +++ b/lisp-interpreter/tests/code/include/draw-tree.scm @@ -0,0 +1,160 @@ +; Scheme 9 from Empty Space, Function Library +; By Nils M Holm, 2009-2012 +; Placed in the Public Domain +; +; (draw-tree object) ==> unspecific +; (dt) ==> unspecific +; +; Print a tree structure resembling a Scheme datum. Each cons +; cell is represented by [o|o] with lines leading to their car +; and cdr parts. Conses with a cdr value of () are represented +; by [o|/]. +; +; DT is an abbrevation for DRAW-TREE. +; +; (Example): (draw-tree '((a) (b . c) (d e))) ==> unspecific +; +; Output: [o|o]---[o|o]---[o|/] +; | | | +; [o|/] | [o|o]---[o|/] +; | | | | +; a | d e +; | +; [o|o]--- c +; | +; b + +(define (draw-tree n) + + (define *nothing* (cons 'N '())) + + (define *visited* (cons 'V '())) + + (define (empty? x) (eq? x *nothing*)) + + (define (visited? x) (eq? (car x) *visited*)) + + (define (mark-visited x) (cons *visited* x)) + + (define (members-of x) (cdr x)) + + (define (done? x) + (and (pair? x) + (visited? x) + (null? (cdr x)))) + + (define (draw-fixed-string s) + (let* ((b (make-string 8 #\space)) + (k (string-length s)) + (s (if (> k 7) (substring s 0 7) s)) + (s (if (< k 3) (string-append " " s) s)) + (k (string-length s))) + (display (string-append s (substring b 0 (- 8 k)))))) + + (define (draw-atom n) + (cond ((null? n) + (draw-fixed-string "()")) + ((symbol? n) + (draw-fixed-string (symbol->string n))) + ((number? n) + (draw-fixed-string (number->string n))) + ((string? n) + (draw-fixed-string (string-append "\"" n "\""))) + ((char? n) + (draw-fixed-string (string-append "#\\" (string n)))) + ((eq? n #t) + (draw-fixed-string "#t")) + ((eq? n #f) + (draw-fixed-string "#f")) + (else + (error "draw-atom: unknown type" n)))) + + (define (draw-conses n) + (let draw-conses ((n n) + (r '())) + (cond ((not (pair? n)) + (draw-atom n) + (reverse! r)) + ((null? (cdr n)) + (display "[o|/]") + (reverse! (cons (car n) r))) + (else + (display "[o|o]---") + (draw-conses (cdr n) (cons (car n) r)))))) + + (define (draw-bars n) + (let draw-bars ((n (members-of n))) + (cond ((not (pair? n)) '()) + ((empty? (car n)) + (draw-fixed-string "") + (draw-bars (cdr n))) + ((and (pair? (car n)) + (visited? (car n))) + (draw-bars (members-of (car n))) + (draw-bars (cdr n))) + (else + (draw-fixed-string "|") + (draw-bars (cdr n)))))) + + (define (skip-empty n) + (if (and (pair? n) + (or (empty? (car n)) + (done? (car n)))) + (skip-empty (cdr n)) + n)) + + (define (remove-trailing-nothing n) + (reverse (skip-empty (reverse n)))) + + (define (all-vertical? n) + (or (not (pair? n)) + (and (null? (cdr n)) + (all-vertical? (car n))))) + + (define (draw-members n) + (let draw-members ((n (members-of n)) + (r '())) + (cond ((not (pair? n)) + (mark-visited + (remove-trailing-nothing + (reverse r)))) + ((empty? (car n)) + (draw-fixed-string "") + (draw-members (cdr n) + (cons *nothing* r))) + ((not (pair? (car n))) + (draw-atom (car n)) + (draw-members (cdr n) + (cons *nothing* r))) + ((null? (cdr n)) + (draw-members (cdr n) + (cons (draw-final (car n)) r))) + ((all-vertical? (car n)) + (draw-fixed-string "[o|/]") + (draw-members (cdr n) + (cons (caar n) r))) + (else + (draw-fixed-string "|") + (draw-members (cdr n) + (cons (car n) r)))))) + + (define (draw-final n) + (cond ((not (pair? n)) + (draw-atom n) + *nothing*) + ((visited? n) + (draw-members n)) + (else + (mark-visited (draw-conses n))))) + + (if (not (pair? n)) + (draw-atom n) + (let draw-tree ((n (mark-visited (draw-conses n)))) + (if (not (done? n)) + (begin (newline) + (draw-bars n) + (newline) + (draw-tree (draw-members n)))))) + (newline)) + +(define dt draw-tree) diff --git a/lisp-interpreter/tests/code/include/prolog.scm b/lisp-interpreter/tests/code/include/prolog.scm new file mode 100644 index 0000000..0156a53 --- /dev/null +++ b/lisp-interpreter/tests/code/include/prolog.scm @@ -0,0 +1,283 @@ +; Scheme 9 from Empty Space, Function Library +; By Nils M Holm, 1998-2009 +; Placed in the Public Domain +; +; (prolog list1 list2) ==> list +; (new-database!) ==> unspecific +; (fact! list) ==> unspecific +; (predicate! list1 list2 ...) ==> unspecific +; (query list) ==> list +; +; (load-from-library "prolog.scm") +; +; This is a tiny PROLOG interpreter that is based on an even +; tinier PROLOG interpreter written in MACLISP by Ken Kahn. +; +; The PROLOG procedures takes a query LIST1 and a database +; LIST2 as arguments, attempts to prove LIST1 in LIST2, and +; returns the result(s). + +; NEW-DATABASE! sets up a fresh PROLOG database (thereby +; deleting any existing one). +; +; FACT! adds a new fact to the database. +; +; PREDICATE! adds a predicate with the head LIST1 and the +; clauses LIST2 ... to the database. +; +; QUERY attempts to prove LIST1. It returns a list of results. +; An empty list indicates that LIST1 could not be proven. +; +; See "prolog-test.scm" for an example program. +; +; The following macros add some syntactic sugar for interactive +; use; they allows you to write, for instance, (! (man socrates)) +; instead of (fact! '(man socrates)). +; +; (! fact) ==> unspecific +; (:- list1 list2 ...) ==> unspecific +; (? query) ==> unspecific +; +; The following special predicates are implemented in the +; interpreter: (== A B) returns a new environment if A can be +; unified with B, else NO. (Dif A B) returns NO if A can be +; unified with B, else YES (use only at the end of a clause!) +; +; Example: (begin (! (man socrates)) +; (:- (mortal ?x) +; (man ?x)) +; (query '(mortal ?who))) ==> (((who . socrates))) + +(define *prolog-database* '()) + +(define (prolog q db) + + (define empty-env '((()))) + + (define top-scope "") + + (define true '(())) + + (define false '()) + + (define (unique a) + (letrec + ((unique2 + (lambda (a r) + (cond ((null? a) + (reverse! r)) + ((member (car a) r) + (unique2 (cdr a) r)) + (else + (unique2 (cdr a) + (cons (car a) r))))))) + (unique2 a '()))) + + (define (variable? x) + (and (symbol? x) + (char=? #\? (string-ref (symbol->string x) 0)))) + + (define (internal? x) + (and (symbol? x) + (char=? #\: (string-ref (symbol->string x) 0)))) + + (define (anonymous? x) + (eq? '_ x)) + + (define (extend n v env) + (cons (cons n v) env)) + + (define (new-scope env id) + (cond ((variable? env) + (string->symbol + (string-append (symbol->string env) id))) + ((pair? env) + (cons (new-scope (car env) id) + (new-scope (cdr env) id))) + (else + env))) + + (define (new-env-id x) + (string-append ";" x)) + + (define (value-of x env) + (if (variable? x) + (let ((v (assq x env))) + (if v + (value-of (cdr v) env) + x)) + x)) + + (define (unify x y env) + (let ((x (value-of x env)) + (y (value-of y env))) + (cond ((variable? x) (extend x y env)) + ((variable? y) (extend y x env)) + ((or (anonymous? x) + (anonymous? y)) + env) + ((and (pair? x) + (pair? y)) + (let ((new (unify (car x) (car y) env))) + (and new (unify (cdr x) (cdr y) new)))) + ((eq? x y) env) + (else #f)))) + + (define (check-args g n) + (if (not (= n (length g))) + (error "wrong number of arguments" g))) + + (define (goal-unify rules goals env id result) + (check-args (car goals) 3) + (let* ((this-goal (car goals)) + (new-env (unify (cadr this-goal) (caddr this-goal) env))) + (if new-env + (let ((r (prove (cdr goals) + new-env + (new-env-id id)))) + (try-rules (cdr rules) goals env id (append result r))) + (try-rules (cdr rules) goals env id result)))) + + (define (goal-dif rules goals env id result) + (check-args (car goals) 3) + (let* ((this-goal (car goals)) + (new-env (unify (cadr this-goal) (caddr this-goal) env))) + (if (not new-env) + (let ((r (prove (cdr goals) + env + (new-env-id id)))) + (try-rules (cdr rules) goals env id (append result r))) + false))) + + (define (goal* rules goals env id result) + (let* ((this-rule (new-scope (car rules) id)) + (new-env (unify (car goals) (car this-rule) env))) + (if new-env + (let ((r (prove (append (cdr this-rule) (cdr goals)) + new-env + (new-env-id id)))) + (try-rules (cdr rules) goals env id (append result r))) + (try-rules (cdr rules) goals env id result)))) + + (define (try-rules rules goals env id result) + (if (null? rules) + result + (case (caar goals) + ((==) (goal-unify rules goals env id result)) + ((dif) (goal-dif rules goals env id result)) + (else (goal* rules goals env id result))))) + + (define (list-env env) + (letrec + ((this-id caar) + (scope-id caddr) + (top-level? + (lambda (x) + (not (memv #\; (string->list (symbol->string x)))))) + (var-name + (lambda (x) + (let* ((s (symbol->string x)) + (k (string-length s))) + (let loop ((i 0)) + (if (or (>= i k) + (char=? #\; (string-ref s i))) + (string->symbol (substring s 1 i)) + (loop (+ 1 i))))))) + (list-env2 + (lambda (e r) + (cond ((null? (cdr e)) + (list r)) + ((top-level? (this-id e)) + (list-env2 (cdr e) + (extend (var-name (this-id e)) + (value-of (this-id e) env) + r))) + (else + (list-env2 (cdr e) r)))))) + + (list-env2 env '()))) + + ; version without memoization + (define (prove goals env id) + (if (null? goals) + (list-env env) + (try-rules db goals env id '()))) + + ;(define proven (make-hash-table)) + + ;(define (prove goals env id) + ; (if (null? goals) + ; (list-env env) + ; (let* ((k (append goals env)) + ; (v (hash-table-ref proven k #f))) + ; (if v + ; (car v) + ; (let ((v (try-rules db goals env id '()))) + ; (hash-table-set! proven k v) + ; v))))) + + (define (any? p a) + (cond ((null? a) #f) + ((p (car a)) #t) + (else (any? p (cdr a))))) + + (define (cleanup env) + (apply append + (map (lambda (frame) + (if (or (any? (lambda (x) (variable? (cdr x))) frame) + (any? (lambda (x) (internal? (cdr x))) frame)) + '() + (list frame))) + env))) + + (cleanup (unique (prove (new-scope q top-scope) + empty-env + (new-env-id top-scope))))) + +(define (new-database!) + (set! *prolog-database* '())) + +(define (update! x) + (set! *prolog-database* + (cons x *prolog-database*))) + +(define (fact! x) + (let ((update! update!)) + (update! (list x)))) + +(define (predicate! head . clause*) + (let ((update! update!)) + (update! (cons head clause*)))) + +(define (query . q) + (prolog q (reverse *prolog-database*))) + +(define (print-frames env) + (cond ((equal? '(()) env) + (display "yes") + (newline)) + ((equal? '() env) + (display "no") + (newline)) + (else + (for-each (lambda (frame) + (for-each (lambda (b) + (display (car b)) + (display " = ") + (display (cdr b)) + (display "; ")) + frame) + (newline)) + env)))) + +(define-macro ! (lambda (fact) `(fact! (quote ,fact)))) +(define-macro :- (lambda args + (cons 'PREDICATE! (map1 (lambda (entry) `(quote ,entry)) args)))) +(define-macro ? (lambda args + (list 'PRINT-FRAMES + (cons 'QUERY (map1 (lambda (entry) `(quote ,entry)) args))))) + + + + + diff --git a/lisp-interpreter/tests/code/lists.scm b/lisp-interpreter/tests/code/lists.scm new file mode 100644 index 0000000..7cdf624 --- /dev/null +++ b/lisp-interpreter/tests/code/lists.scm @@ -0,0 +1,69 @@ +(assert '()) + +(==> (cons 'a (cons 'b (cons 'c '()))) (a b c)) +(==> (car (cons 1 2)) 1) +(==> (cdr (cons 1 2)) 2) +(==> (car (list 1 2)) 1) +(==> (cdr (list 1 2)) (2)) + +(define test-pair (cons 1 2)) +(set-car! test-pair 3) +(set-cdr! test-pair 4) +(==> test-pair (3 . 4)) + +(==> (reverse '(a b c)) (c b a)) + +; https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_8.html +(assert (pair? '(a . b))) +(assert (pair? '(a b c))) + +(assert (not (pair? '()))) +(assert (not (pair? '#(a b)))) + +(assert (= (length '(a b c)) 3)) +(assert (= (length '()) 0)) + +(assert (not (null? '(a b c)))) +(assert (null? '())) + +(assert (eq? (list-ref '(a b c d) 2) 'c)) + +(==> (append '(a) '(b c d)) (a b c d)) +(==> (sort '(1 4 2 6 3) <) (1 2 3 4 6)) +(==> (make-list 4 1) (1 1 1 1)) + +(==> (memq 'a '(a b c)) (a b c)) +(==> (memq 'b '(a b c)) (b c)) +(==> (memq 'a '(b c d)) #f) + +(==> (member (list 'a) '(b (a) c)) ((a) c)) +(==> (member 'a '(b (a) c)) #f) + +(assert (= (apply + (list 3 4 5 6)) 18)) + +(==> (append-reverse! '("y" "x" "w") '("z")) ("w" "x" "y" "z")) + +; Association lists +(define list-map '((bob . 1) (john . 2) (dan . 3) (alice . 4))) + +(assert (= (cdr (assoc 'john list-map)) 2)) +(assert (= (cdr (assoc 'alice list-map)) 4)) +(assert (not (assoc 'bad-key list-map))) + +(assert (= (cdr (assq 'john list-map)) 2)) +(assert (= (cdr (assq 'alice list-map)) 4)) +(assert (not (assq 'bad-key list-map))) + +(assert (list? '(1 2))) +(assert (not (list? (cons 1 2)))) + + +(==> (reduce + 0 '(1 2 3 4)) 10) +(==> (reduce + 0 '(1 2)) 3) +(==> (reduce + 0 '()) 0) +(==> (reduce list '() '(1 2 3 4)) (((1 2) 3) 4)) + + +(==> (fold-left + 0 '(1 2 3 4)) 10) +(==> (fold-left list '() '(1 2 3 4)) ((((() 1) 2) 3) 4)) + diff --git a/lisp-interpreter/tests/code/macros.scm b/lisp-interpreter/tests/code/macros.scm new file mode 100644 index 0000000..812708f --- /dev/null +++ b/lisp-interpreter/tests/code/macros.scm @@ -0,0 +1,33 @@ + +; QUASIQUOTE +(assert (equal? `(1 2 3) '(1 2 3))) + +(let ((x 1)) + (assert (equal? `(,x 2 3) '(1 2 3)))) + +(let ((x 'a)) + (assert (equal? `(,x x ,x) '(a x a)))) + + +; nil! macro +(define-macro nil! (lambda (x) + `(set! ,x '()))) + +(define x 3) +(assert (= x 3)) +(nil! x) +(assert (null? x)) + +; ntimes macro + +(define-macro ntimes (lambda (n . body) + (let ((i (gensym))) + (cons 'DO (cons `((,i 0 (+ ,i 1))) + (cons `((>= ,i ,n) '()) body)) + )))) + +(define x 0) +(ntimes 10 (set! x (+ x 1))) +(assert (= x 10)) + + diff --git a/lisp-interpreter/tests/code/norvig.scm b/lisp-interpreter/tests/code/norvig.scm new file mode 100644 index 0000000..00f4a33 --- /dev/null +++ b/lisp-interpreter/tests/code/norvig.scm @@ -0,0 +1,71 @@ +; From Peter Norvig's Lispy tests +; http://norvig.com/lispy2.html + +(define x 3) +(assert (= x 3)) +(assert (= (+ x x) 6)) +(assert (= (begin (define x 1) (set! x (+ x 1)) (+ x 1)) 3)) +(assert (= ((lambda (x) (+ x x)) 5) 10)) +(define twice (lambda (x) (* 2 x))) +(assert (= (twice 5) 10)) +(define compose (lambda (f g) (lambda (x) (f (g x))))) +(assert (= (car ((compose list twice) 5)) 10)) +(define repeat (lambda (f) (compose f f))) +(assert (= ((repeat twice) 5) 20)) +(assert (= ((repeat (repeat twice)) 5) 80)) +(define fact (lambda (n) (if (< n 2) 1 (* n (fact (- n 1)))))) +(assert (= (fact 3) 6)) +(define abs (lambda (n) ((if (> n 0) + -) 0 n))) + +(assert (= (car (list (abs -3) (abs 0) (abs 3))) 3)) + +(define combine (lambda (f) + (lambda (x y) + (if (null? x) (quote ()) + (f (list (car x) (car y)) + ((combine f) (cdr x) (cdr y))))))) + +(define zip (combine cons)) +(assert (= (car (cdr (assoc 3 (zip (list 1 2 3 4) (list 5 6 7 8))))) 7)) + +(define riff-shuffle (lambda (deck) (begin + (define take (lambda (n seq) (if (< n 1) (quote ()) (cons (car seq) (take (- n 1) (cdr seq)))))) + (define drop (lambda (n seq) (if (< n 1) seq (drop (- n 1) (cdr seq))))) + (define mid (lambda (seq) (/ (length seq) 2))) + ((combine append) (take (mid deck) deck) (drop (mid deck) deck))))) + +(display (riff-shuffle (list 1 2 3 4 5 6 7 8))) +(newline) +(display ((repeat riff-shuffle) (list 1 2 3 4 5 6 7 8))) +(newline) +(display (riff-shuffle (riff-shuffle (riff-shuffle (list 1 2 3 4 5 6 7 8))))) +(newline) + +(define fabs (lambda (n) ((if (> n 0.0) + -) 0.0 n))) + +(define (newton guess function derivative epsilon) + (define guess2 (- guess (/ (function guess) (derivative guess)))) + (if (< (fabs (- guess guess2)) epsilon) guess2 + (newton guess2 function derivative epsilon))) + +(define (square-root a) + (newton 1.0 (lambda (x) (- (* x x) a)) (lambda (x) (* 2.0 x)) 0.0001)) + +(display "sqrt(2)=") +(display (square-root 2.0)) +(newline) + +(display "sqrt(200)=") +(display (square-root 200.0)) +(newline) + +(==> (call/cc (lambda (throw) (+ 5 (* 10 (throw 1))))) 1) +(==> (call/cc (lambda (throw) (+ 5 (* 10 1)))) 15) + +(==> (call/cc (lambda (throw) (+ 5 (* 10 (call/cc (lambda (escape) (* 100 (escape 3)))))))) 35) +(==> (call/cc (lambda (throw) (+ 5 (* 10 (call/cc (lambda (escape) (* 100 (throw 3)))))))) 3) +(==> (call/cc (lambda (throw) (+ 5 (* 10 (call/cc (lambda (escape) (* 100 1))))))) 1005) + +(==> (let ((a 1) (b 2)) (+ a b)) 3) + + diff --git a/lisp-interpreter/tests/code/numbers.scm b/lisp-interpreter/tests/code/numbers.scm new file mode 100644 index 0000000..f9bee99 --- /dev/null +++ b/lisp-interpreter/tests/code/numbers.scm @@ -0,0 +1,82 @@ +(==> (+ 2 2) 4) +(==> (+ (* 2 100) (* 1 10)) 210) + +(==> (if (> 6 5) (+ 1 1) (+ 2 2)) 2) +(==> (if (< 6 5) (+ 1 1) (+ 2 2)) 4) + +(==> (gcd 32 -36) 4) +(==> (gcd 4 3) 1) +(==> (gcd) 0) + + +(==> (lcm 32 -36) 288) +(assert (exact? (lcm 32 -36))) +(assert (inexact? (lcm 32.0 -36))) + +(==> (lcm) 1) + +(==> (abs -1) 1) +(==> (map + '(1 1 1) '(2 2 2)) (3 3 3)) +(==> (map abs '(-1 -2 3)) (1 2 3)) +(==> (vector-map abs #(-1 -2 3)) #(1 2 3)) + + +(==> (- 1) -1) +(==> (- 436) -436) +(==> (- -7) 7) + +(assert (integer? 3)) +(assert (real? 3)) + +(assert (real? 3.5)) +(assert (not (integer? 3.5))) + +(assert (< 3 4)) +(assert (> 4 3)) +(assert (>= 4 3)) +(assert (<= 3 4)) +(assert (<= 1 1)) +(assert (< -5 5)) +(assert (not (> 3 4))) + +(assert (= (modulo -13 4) 3)) +(assert (= (remainder -13 4) -1)) + + +(assert (= (remainder 13 -4) 1)) + +(assert (even? 2)) +(assert (not (odd? 2))) +(assert (odd? 3)) +(assert (odd? 7)) +(assert (not (odd? 4))) + +(assert (exact? (+ 1 2 3))) +(assert (inexact? (+ 1 2.5 3))) +(assert (inexact? (+ 1.3 2 3))) + +(assert (exact? (* 1 2 3))) +(assert (inexact? (* 1 2.5 3))) +(assert (inexact? (* 1.3 2 3))) + +(assert (exact? (- 1 2))) +(assert (inexact? (- 1 2.5))) +(assert (inexact? (- 1.3 2))) + +(assert (exact? (expt 3 3))) +(==> (expt 3 3) 27) + +(assert (inexact? (expt 3 2.5))) + +(==> (magnitude 13) 13) +(==> (magnitude -13) 13) + +(==> (floor 0.87) 0) +(==> (ceiling 0.87) 1) +(==> (round 0.87) 1) + +(assert (< (- (abs (atan 0)) (/ 3.141592 4)) 0.001)) + + + + diff --git a/lisp-interpreter/tests/code/permute.scm b/lisp-interpreter/tests/code/permute.scm new file mode 100644 index 0000000..a8beb4b --- /dev/null +++ b/lisp-interpreter/tests/code/permute.scm @@ -0,0 +1,21 @@ +(define (brute max-length set) + (define (permute n) + (define str (make-string n)) + (define (iter d) + (if (= d n) + (begin + (display str) + (display " ")) + (do ((i 0 (+ i 1))) + ((= i (string-length set)) 'done) + (begin + (string-set! str d (string-ref set i)) + (iter (+ d 1)))))) + (iter 0)) + + (do ((len 0 (+ len 1))) + ((> len max-length) 'done) + (permute len))) + +(brute 4 "abcd") +(newline) diff --git a/lisp-interpreter/tests/code/prolog.scm b/lisp-interpreter/tests/code/prolog.scm new file mode 100644 index 0000000..2a25576 --- /dev/null +++ b/lisp-interpreter/tests/code/prolog.scm @@ -0,0 +1,5 @@ +(include "include/prolog.scm") + +(! (man socrates)) +(:- (mortal ?x) (man ?x)) +(? (mortal ?who)) diff --git a/lisp-interpreter/tests/code/sicp.scm b/lisp-interpreter/tests/code/sicp.scm new file mode 100644 index 0000000..8b6f834 --- /dev/null +++ b/lisp-interpreter/tests/code/sicp.scm @@ -0,0 +1,158 @@ + +; A collection of SICP excercises +; these are all my solutions from reading +; the book + +; 1.01 - basic expressions +(assert (= (+ (* 2 4) (- 4 6)) 6)) +(define a 3) +(define b (+ a 1)) +(assert (= (+ a b (* a b)) 19)) + + +(assert (= (if (and (> b a) (< b (* a b))) + b + a) 4)) + +(assert (= (cond ((= a 4) 6) + ((= b 4) (+ 6 7 a)) + (else 25)) 16)) + +(assert (= (+ 2 (if (> b a) b a )) 6)) + +(assert (= (* (cond ((> a b) a) + ((< a b) b) + (else -1)) + (+ a 1)) 16)) + +; 1.03 - largest squares +(define (sqr x) (* x x)) + +(define (largest-squares x y z) + (cond ((and (< z x) (< z y)) (+ (sqr x) (sqr y))) + ((and (< y x) (> y z)) (+ (sqr x) (sqr z))) + (else (+ (sqr y) (sqr z))) + )) + +(assert (= (largest-squares 3 4 5) (+ 25 16))) +(assert (= (largest-squares 3 5 4) (+ 25 16))) + +; 1.14 change counter +(define (count-change amount) (cc amount 5)) + +(define (cc amount kinds-of-coins) + (cond ((= amount 0) 1) + ((or (< amount 0) (= kinds-of-coins 0)) 0) + (else (+ (cc amount + (- kinds-of-coins 1)) + (cc (- amount + (first-denomination kinds-of-coins)) + kinds-of-coins))))) + +(define (first-denomination kinds-of-coins) + (cond ((= kinds-of-coins 1) 1) + ((= kinds-of-coins 2) 5) + ((= kinds-of-coins 3) 10) + ((= kinds-of-coins 4) 25) + ((= kinds-of-coins 5) 50))) + +(display "counting change: ") +(display (count-change 75)) +(newline) + +; 1.16 - fast powers +(define (exp-fast b n) (exp-iter b n 1)) + +(define (exp-iter b n product) + (cond ((= n 0) product) + ; b^n = (b^2) n/2 + ((even? n) (exp-iter (* b b) (/ n 2) product)) + ; b^n = b * b^n-1 + (else (exp-iter b (- n 1) (* product b))))) + +(assert (= (exp-fast 5 4) 625)) +(assert (= (exp-fast 2 8) 256)) + +; 1.17 - fast multiply + +(define (double a) (+ a a)) +(define (halve a) (/ a 2)) + +(define (fast-mul a b) (fast-mul-iter a b 0)) + +(define (fast-mul-iter a b sum) + (cond ((= b 0) sum) + ((even? b) (fast-mul-iter (double a) (halve b) sum)) + (else (fast-mul-iter a (- b 1) (+ sum a))))) + +(assert (= (fast-mul 3 4) 12)) +(assert (= (fast-mul 100 10) 1000)) + +; 1.19 fibonacci + +(define (fib-helper n a b p q) + (cond + ((= n 0) b) + ((even? n) (fib-helper (/ n 2) + a + b + (+ (* p p) (* q q)) + (+ (* 2 q p) (* q q )) + )) + + (else + (fib-helper + (- n 1) + (+ (* b q) (* a q) (* a p)) + (+ (* b p) (* a q)) + p + q)))) + +(define (fib n) + (fib-helper n 1 0 0 1)) + +(assert (= (fib 5) 5)) +(assert (= (fib 7) 13)) +(assert (= (fib 8) 21)) + +; 2.21 - square list + +(define (square-list items) + (if (null? items) + items + (cons (* (car items) (car items)) (square-list (cdr items))))) + +(define (square-list2 items) + (map (lambda (x) (* x x)) items)) + +(display (square-list (list 1 2 3 4))) +(newline) +(display (square-list2 (list 4 5 6 7))) + +; bank accounts +(define (make-account val) + (lambda (action) + (if (eq? action 'deposit) + (lambda (n) (set! val (+ val n))) + (lambda (n) (set! val (- val n)))))) + +(define justin (make-account 100)) +(define ryan (make-account 200)) +((justin 'deposit) 20) +((ryan 'withdraw) 20) + +(gc-flip) + +(assert (= ((justin 'withdraw) 0) 120)) +(assert (= ((ryan 'deposity) 0) 180)) + +; and or expansion +(let ((a 1)) + (if (and (= a 0) (garbage here)) + (assert 0) + 'pass) + + (if (or (= a 1) (garbage here)) + 'pass + (assert 0))) + diff --git a/lisp-interpreter/tests/code/streams.scm b/lisp-interpreter/tests/code/streams.scm new file mode 100644 index 0000000..84ea85f --- /dev/null +++ b/lisp-interpreter/tests/code/streams.scm @@ -0,0 +1,32 @@ +(==> (force (delay (+ 1 2))) 3) + +(==> (let ((p (delay (+ 1 2)))) + (list (force p) (force p))) (3 3)) + +(assert (promise? (delay (+ 1 2)))) + + +; promises computed at most once +(define count 0) + +(define p + (delay + (begin + (set! count (+ count 1)) + (* x 3)))) + +(define x 5) + +(==> count 0) +(assert (promise? p)) +(==> (force p) 15) +(assert (promise? p)) +(==> count 1) +(==> (force p) 15) +(==> count 1) + + +(define (integers-starting-from n) + (cons-stream n (integers-starting-from (+ n 1)))) + +(assert (equal? (stream-head (integers-starting-from 0) 5) '(0 1 2 3 4))) diff --git a/lisp-interpreter/tests/code/strings.scm b/lisp-interpreter/tests/code/strings.scm new file mode 100644 index 0000000..5a41418 --- /dev/null +++ b/lisp-interpreter/tests/code/strings.scm @@ -0,0 +1,60 @@ +; https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_7.html + +; TODO: add characters to reader +(==> (make-string 10 #\x) "xxxxxxxxxx") + +(assert (string? "Hi")) +(assert (not (string? 'Hi))) + +(==> (string-length "") 0) +(==> (string-length "The length") 10) + +(assert (string=? "PIE" "PIE")) +(assert (not (string=? "PIE" "pie"))) + +(==> (list->string (string->list "hello 123")) "hello 123") +(==> (string->list (list->string '(#\A #\B #\3))) (#\A #\B #\3)) + + +; https://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Symbols.html +(assert (symbol? 'foo)) +(assert (symbol? (car '(a b)))) +(assert (not (symbol? "bar"))) + +(assert (eq? 'foo (string->symbol "FOO"))) +(assert (string=? "FLYING-FISH" (symbol->string 'flying-fish))) + +; specials +(==> (string-length "\\") 1) +(==> (string-length "\t") 1) +(==> (string-length "\n") 1) +(==> (string-length "\f") 1) +(==> (string-length "\"") 1) + +(display "Hello\nworld!") + +(==> (string->number (number->string 279)) 279) +(==> (number->string (string->number "279")) "279") +(==> (string->number (number->string 0.5)) 0.5) + +(assert (symbol (- (char->integer #\c) (char->integer #\a)) 2) + +(==> (string-ref "abc" 0) #\a) +(==> (string-ref "abc" 2) #\c) +(==> (string #\a #\b) "ab") +(==> (string) "") + +(assert (char #f" + ; https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/doc-html/scheme_8.html#SEC72 + + (or (< (vector-length v) 2) + (and (not (op (vector-ref v 1) (vector-ref v 0))) + (vec-sorted? (vector-tail v 1) op)))) + +; First make sure our sorted checker works +(assert (vec-sorted? #(1 2 2 4 5 6) <)) +(assert (vec-sorted? #(1) <)) +(assert (vec-sorted? #(1 2) <)) +(assert (vec-sorted? #(7 6 5 4 3 2 1) >)) +(assert (not (vec-sorted? #(2 1) <))) +(assert (not (vec-sorted? #(1 2 3 4 4 3) <))) +(assert (not (vec-sorted? #(1 2 3 2 4 5) <))) + +; Now test the sort function +(assert (vec-sorted? (sort! #(1) <) <)) +(assert (vec-sorted? (sort! #(2 1) <) <)) +(assert (vec-sorted? (sort! #(1 2 3) <) <)) +(assert (vec-sorted? (sort! #(3 8 1 7 2 9 4 5) <) <)) +(assert (vec-sorted? (sort! #(1 2 3 4 5 6 7 8) <) <)) +(assert (vec-sorted? (sort! #(3 8 1 7 2 9 4 5) >) >)) +(assert (vec-sorted? (sort! #(1 2 3 4 5 6 7 8) >) >)) +(assert (vec-sorted? (sort! #(92 59 30 57 74 78 43 33 77 10 78 83 76 49 42 94 82 70 15 11 90 86 44 70 39 64 69 30 59 95 15 79 13 54 98 82 42 96 79 17 56 93 20 1 84 72 75 19 74 43) >) >)) +(assert (vec-sorted? (sort! #(92 59 30 57 74 78 43 33 77 10 78 83 76 49 42 94 82 70 15 11 90 86 44 70 39 64 69 30 59 95 15 79 13 54 98 82 42 96 79 17 56 93 20 1 84 72 75 19 74 43) <) <)) +(assert (vec-sorted? (sort! #(3 8 1 7 2 9 4 5) <) <)) + +; Try other data types +(assert (vec-sorted? (sort! #(#\C #\B #\A #\D) char (vector 'a 'b 'c) #(A B C)) +(==> (list->vector '(dididit dah)) #(dididit dah)) + + +; Binary search +(assert (= (vector-binary-search #(1 2 3 4 5) < (lambda (x) x) 3) 3)) +(assert (not (vector-binary-search #(1 2 2 4 5) < (lambda (x) x) 3))) + +(define v (vector 1 1 2)) +(vector-fill! v 3) +(==> v #(3 3 3)) + +(==> (make-initialized-vector 5 (lambda (x) (* x x))) #(0 1 4 9 16)) +(==> (vector-head #(1 2 3) 2) #(1 2)) + +; Issues parsing large vector +(define big-v #(1 2 3 4 5 6 7 8 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200)) + +(==> (vector-length big-v) 200) + +; Subvector +(==> (subvector #(1 2 3 4) 1 4) #(2 3 4)) +(==> (subvector #(1 2 3 4) 0 2) #(1 2)) +(==> (subvector #(A 1 A 1 A 1 A 1) 1 3) #(1 A)) + +; Association +(define avector #((bob . 1) (john . 2) (dan . 3) (alice . 4))) + +(assert (= (cdr (vector-assq 'john avector)) 2)) +(assert (= (cdr (vector-assq 'alice avector)) 4)) +(assert (not (vector-assq 'bad-key avector))) + + +(sort! (make-initialized-vector 10000 (lambda (x) (random 1000000))) <) + diff --git a/lisp-interpreter/tests/data/big_data1.scm b/lisp-interpreter/tests/data/big_data1.scm new file mode 100644 index 0000000..dad60fc --- /dev/null +++ b/lisp-interpreter/tests/data/big_data1.scm @@ -0,0 +1,20 @@ +; try this one with read +(let* ((file (open-input-file "big_data_gen.sexpr")) + (data (read file))) + (gc-flip) + (print-gc-statistics) + (newline) + (display "records: ") + (display (length data)) + (newline) + (let ((record (car data))) + (assert (= (cdr (vector-assq 'index record)) 0)) + (assert (eq? (cdr (vector-assq 'isActive record)) 'False)) + (assert (= (cdr (vector-assq 'age record)) 21))) + + (close-input-port file)) + +(display "done") +(newline) + + diff --git a/lisp-interpreter/tests/data/big_data2.scm b/lisp-interpreter/tests/data/big_data2.scm new file mode 100644 index 0000000..5a0f63c --- /dev/null +++ b/lisp-interpreter/tests/data/big_data2.scm @@ -0,0 +1,12 @@ +; canada +(let ((data (read))) + (gc-flip) + (print-gc-statistics) + (newline) + (display "records: ") + (display (vector-length data))) + +(gc-flip) +(print-gc-statistics) + + diff --git a/lisp-interpreter/tests/data/big_data_canada.json b/lisp-interpreter/tests/data/big_data_canada.json new file mode 100644 index 0000000..7e4c71b --- /dev/null +++ b/lisp-interpreter/tests/data/big_data_canada.json @@ -0,0 +1,9 @@ +{ "type": "FeatureCollection", + "features": [ +{ + "type": "Feature", +"properties": { "name": "Canada" }, +"geometry": {"type":"Polygon","coordinates":[[[-65.613616999999977,43.420273000000009],[-65.619720000000029,43.418052999999986],[-65.625,43.421379000000059],[-65.636123999999882,43.449714999999969],[-65.633056999999951,43.474709000000132],[-65.611389000000031,43.513054000000068],[-65.605835000000013,43.516105999999979],[-65.598343,43.515830999999935],[-65.566101000000003,43.508331000000055],[-65.561935000000005,43.504439999999988],[-65.55999799999995,43.499718000000087],[-65.573333999999988,43.476379000000065],[-65.593612999999948,43.444153000000028],[-65.613616999999977,43.420273000000009]],[[-59.816947999999911,43.928328999999962],[-59.841667000000029,43.918602000000021],[-59.866393999999957,43.909987999999998],[-59.879722999999956,43.906654000000003],[-59.895835999999974,43.904160000000047],[-59.919448999999929,43.901099999999985],[-59.953330999999991,43.898604999999975],[-60.013617999999951,43.903320000000008],[-60.028609999999958,43.905548000000124],[-60.078338999999914,43.917496000000028],[-60.103888999999981,43.926659000000029],[-60.121666000000005,43.934990000000084],[-60.129997000000003,43.941933000000063],[-60.124167999999997,43.945267000000058],[-60.095000999999968,43.939430000000129],[-60.017776000000026,43.925827000000083],[-59.975554999999986,43.921936000000017],[-59.966942000000017,43.921936000000017],[-59.915000999999961,43.925552000000096],[-59.861945999999989,43.934433000000013],[-59.841385000000002,43.938880999999981],[-59.80972300000002,43.950828999999999],[-59.793334999999956,43.959435000000099],[-59.777221999999938,43.968048000000067],[-59.755279999999971,43.979431000000091],[-59.724716000000001,43.991104000000121],[-59.727775999999949,43.986382000000049],[-59.736389000000031,43.979156000000103],[-59.753615999999965,43.964995999999985],[-59.762504999999919,43.957771000000093],[-59.782501000000025,43.944434999999999],[-59.793059999999969,43.93832400000008],[-59.816947999999911,43.928328999999962]],[[-66.282775999999956,44.289719000000105],[-66.314437999999996,44.250548999999978],[-66.322234999999978,44.252777000000094],[-66.324448000000018,44.25750000000005],[-66.323897999999986,44.263329000000113],[-66.310271999999998,44.289993000000038],[-66.303054999999915,44.300545000000056],[-66.294723999999917,44.310271999999998],[-66.228333000000021,44.385826000000009],[-66.21945199999999,44.394713999999965],[-66.214447000000007,44.397774000000027],[-66.206389999999942,44.395271000000037],[-66.204726999999934,44.384995000000004],[-66.205275999999969,44.379433000000063],[-66.208053999999947,44.372765000000072],[-66.214721999999938,44.36360900000011],[-66.249725000000012,44.327217000000132],[-66.282775999999956,44.289719000000105]],[[-66.886123999999995,44.614440999999999],[-66.900283999999999,44.61332699999997],[-66.904174999999952,44.618049999999982],[-66.904449,44.622489999999971],[-66.884734999999978,44.68332700000002],[-66.858611999999937,44.743050000000039],[-66.837783999999942,44.770827999999995],[-66.833327999999938,44.774994000000049],[-66.803329000000019,44.798881999999992],[-66.798049999999932,44.802490000000091],[-66.786666999999852,44.808044000000109],[-66.779723999999931,44.809158000000082],[-66.772507000000019,44.809158000000082],[-66.767226999999934,44.805549999999982],[-66.764724999999999,44.801102000000014],[-66.757781999999963,44.792496000000085],[-66.734726000000023,44.729156000000103],[-66.736938000000009,44.717209000000139],[-66.740279999999927,44.70777099999998],[-66.761123999999995,44.676102000000128],[-66.765015000000005,44.671378999999945],[-66.875274999999931,44.619438000000059],[-66.886123999999995,44.614440999999999]],[[-61.199996999999996,45.558327000000077],[-61.204720000000009,45.555267000000072],[-61.212775999999963,45.556656000000032],[-61.219993999999986,45.559990000000028],[-61.224167000000023,45.564156000000139],[-61.222220999999934,45.569443000000035],[-61.21416499999998,45.568886000000134],[-61.208610999999962,45.56721500000009],[-61.202498999999989,45.563324000000023],[-61.199996999999996,45.558327000000077]],[[-60.993889000000024,45.45777099999998],[-61.00028199999997,45.455826000000002],[-61.007781999999963,45.457214000000079],[-61.019446999999957,45.463882000000069],[-61.101943999999946,45.523048000000017],[-61.105835000000013,45.526939000000084],[-61.108337000000006,45.540833000000021],[-61.104445999999939,45.546387000000038],[-61.098609999999951,45.549164000000076],[-61.023612999999955,45.574997000000053],[-61.017220000000009,45.575272000000041],[-60.936942999999985,45.576659999999947],[-60.908051,45.576103000000046],[-60.900275999999906,45.575554000000125],[-60.879996999999946,45.560547000000099],[-60.878608999999869,45.555824000000143],[-60.883888000000013,45.550544999999943],[-60.889167999999984,45.548332000000016],[-60.910277999999948,45.546104000000071],[-60.936110999999983,45.539161999999976],[-60.947495000000004,45.533607000000075],[-60.952498999999932,45.529990999999995],[-60.962501999999915,45.519989000000066],[-60.96305799999999,45.514998999999989],[-60.961669999999913,45.510277000000087],[-60.958611000000019,45.505829000000119],[-60.950553999999954,45.497771999999998],[-60.993889000000024,45.45777099999998]],[[-63.246391000000017,46.435547000000042],[-63.25389100000001,46.435265000000129],[-63.26167299999986,46.436378000000047],[-63.269446999999957,46.439713000000097],[-63.285004000000015,46.450829000000056],[-63.27055399999989,46.450271999999984],[-63.245834000000002,46.442764000000125],[-63.240836999999999,46.438599000000124],[-63.246391000000017,46.435547000000042]],[[-71.111114999999984,46.850548000000003],[-71.118606999999997,46.850273000000016],[-71.127486999999917,46.851662000000033],[-71.130279999999914,46.856102000000021],[-71.128326000000015,46.862213000000111],[-71.121383999999978,46.874161000000129],[-71.098891999999978,46.898048000000017],[-71.078339000000028,46.913605000000075],[-70.936935000000005,46.992493000000024],[-70.896666999999866,47.013329000000056],[-70.87222300000002,47.024162000000047],[-70.860001000000011,47.02777100000003],[-70.845276000000013,47.029160000000047],[-70.836394999999982,47.02777100000003],[-70.818893000000003,47.02276599999999],[-70.81361400000003,47.019440000000145],[-70.809158000000025,47.01527400000009],[-70.807495000000017,47.00999500000006],[-70.809432999999956,47.004439999999988],[-70.814437999999996,46.998329000000126],[-70.877212999999983,46.931107000000111],[-70.887512000000015,46.923607000000004],[-70.904174999999952,46.913605000000075],[-71.009170999999924,46.871101000000067],[-71.033324999999934,46.862494999999967],[-71.040832999999964,46.860549999999989],[-71.082229999999925,46.853325000000098],[-71.111114999999984,46.850548000000003]],[[-60.445273999999984,46.861664000000133],[-60.436942999999985,46.861107000000061],[-60.352782999999988,46.861664000000133],[-60.345832999999857,46.862494999999967],[-60.334441999999967,46.868881000000101],[-60.326110999999969,46.868323999999973],[-60.320838999999978,46.864441000000056],[-60.309440999999936,46.851105000000132],[-60.302223000000026,46.837493999999936],[-60.301392000000021,46.831940000000145],[-60.304442999999935,46.815269000000114],[-60.322776999999917,46.736382000000049],[-60.327224999999885,46.724991000000045],[-60.478881999999942,46.389992000000063],[-60.535277999999948,46.321663000000058],[-60.589438999999857,46.25499700000006],[-60.609169000000009,46.201934999999935],[-60.590331999999933,46.207821000000081],[-60.587001999999984,46.209488000000135],[-60.57150299999995,46.228653000000122],[-60.553329000000019,46.248878000000047],[-60.551391999999964,46.25499700000006],[-60.543335000000013,46.266663000000051],[-60.528053,46.278602999999919],[-60.479720999999984,46.311104000000057],[-60.46805599999999,46.316665999999998],[-60.44388600000002,46.326942000000088],[-60.430557000000022,46.33138299999996],[-60.424171000000001,46.331665000000044],[-60.416388999999867,46.328049000000021],[-60.412216000000001,46.31888600000002],[-60.417777999999942,46.285827999999981],[-60.419997999999964,46.279991000000052],[-60.42472099999992,46.27526899999998],[-60.438048999999921,46.270828000000051],[-60.454719999999952,46.262215000000083],[-60.470550999999944,46.251105999999993],[-60.53583100000003,46.192436000000043],[-60.59027900000001,46.138603000000103],[-60.600280999999939,46.130271999999991],[-60.61611199999993,46.120827000000133],[-60.645836000000031,46.106102000000021],[-60.687774999999874,46.088326000000052],[-60.701110999999912,46.08526599999999],[-60.788895000000025,46.066666000000055],[-60.86333499999995,46.052490000000034],[-60.986114999999927,45.982491000000095],[-61.023887999999943,45.969437000000028],[-61.080283999999949,45.951660000000004],[-61.087776000000019,45.95138500000013],[-61.095832999999971,45.952217000000076],[-61.105003000000011,45.954712000000086],[-61.113059999999905,45.955268999999987],[-61.117774999999938,45.950828999999999],[-61.126944999999978,45.928329000000133],[-61.125556999999958,45.923607000000061],[-61.118332000000009,45.923049999999932],[-61.056999000000019,45.931216999999947],[-61.052834000000018,45.931881000000033],[-61.017497999999989,45.940712000000076],[-61.014835000000005,45.943382000000042],[-60.989165999999955,45.95638300000013],[-60.987777999999935,45.962494000000049],[-60.984168999999952,45.967490999999939],[-60.957221999999945,45.984992999999974],[-60.940551999999911,45.994438000000059],[-60.892776000000026,46.01527400000009],[-60.853057999999976,46.03138000000007],[-60.770835999999917,46.057495000000074],[-60.757506999999919,46.060546999999985],[-60.743056999999965,46.061661000000015],[-60.735557999999912,46.058044000000052],[-60.734169000000009,46.05332199999998],[-60.734169000000009,46.047493000000145],[-60.807502999999997,45.931107000000111],[-60.870276999999987,45.910820000000058],[-60.898055999999997,45.906654000000117],[-60.956947000000014,45.903046000000018],[-61.042888999999946,45.891327000000103],[-61.047053999999946,45.890659000000085],[-61.050555999999972,45.888991999999973],[-61.053390999999976,45.886162000000127],[-61.096663999999976,45.860275000000001],[-61.097777999999948,45.854713000000061],[-61.094718999999998,45.850273000000016],[-61.087776000000019,45.847487999999998],[-61.079726999999991,45.84693900000002],[-61.073059000000001,45.84804500000007],[-61.060829000000012,45.852776000000006],[-61.049445999999989,45.858330000000024],[-61.026107999999965,45.86971299999999],[-60.989997999999957,45.881934999999999],[-60.96805599999999,45.883331000000055],[-60.960281000000009,45.880272000000048],[-60.919448999999986,45.857498000000078],[-60.915833000000021,45.852776000000006],[-60.917777999999942,45.847487999999998],[-60.935271999999941,45.825271999999984],[-60.940551999999911,45.821663000000001],[-60.947495000000004,45.820549000000028],[-61.019446999999957,45.809989999999971],[-61.067504999999983,45.791663999999969],[-61.079169999999976,45.786110000000008],[-61.118057000000022,45.763611000000026],[-61.12777699999998,45.755271999999991],[-61.147223999999994,45.704993999999999],[-61.149170000000026,45.699715000000026],[-61.142501999999922,45.696381000000031],[-61.077498999999932,45.688880999999981],[-61.070838999999978,45.689987000000031],[-61.041945999999996,45.704162999999994],[-61.012778999999966,45.718880000000013],[-60.996391000000017,45.727767999999969],[-60.972771000000023,45.738045],[-60.954719999999952,45.745543999999938],[-60.935829000000012,45.751389000000074],[-60.92222599999991,45.75360900000004],[-60.914443999999946,45.75360900000004],[-60.890556000000004,45.751663000000008],[-60.881942999999922,45.750000000000057],[-60.864165999999898,45.744438000000116],[-60.844161999999983,45.735268000000076],[-60.816665999999998,45.722488000000112],[-60.809998000000007,45.719154000000117],[-60.800835000000006,45.71166199999999],[-60.729438999999957,45.778603000000032],[-60.719718999999998,45.788329999999974],[-60.516944999999964,45.920830000000137],[-60.491942999999878,45.929436000000067],[-60.466942000000017,45.938041999999996],[-60.409163999999976,45.979987999999935],[-60.404166999999973,45.984436000000073],[-60.395835999999974,45.99610100000001],[-60.40166499999998,45.994713000000104],[-60.555000000000007,45.946938000000102],[-60.611671000000001,45.924995000000138],[-60.629722999999899,45.917496000000142],[-60.639998999999989,45.91027100000008],[-60.644721999999945,45.905548000000124],[-60.655272999999966,45.898330999999985],[-60.661110000000008,45.895270999999923],[-60.673331999999903,45.890549000000021],[-60.686110999999926,45.886940000000038],[-60.69388600000002,45.886107999999922],[-60.708892999999875,45.887215000000026],[-60.723327999999981,45.893326000000116],[-60.788337999999953,45.929436000000067],[-60.789725999999973,45.934433000000126],[-60.788895000000025,45.939986999999974],[-60.785278000000005,45.946381000000031],[-60.78055599999999,45.950828999999999],[-60.691382999999973,46.001937999999939],[-60.679168999999945,46.006660000000011],[-60.601395000000025,46.039719000000105],[-60.541114999999991,46.065544000000102],[-60.523612999999955,46.075554000000011],[-60.490836999999942,46.094437000000084],[-60.30999799999995,46.206939999999975],[-60.30499999999995,46.210548000000074],[-60.299994999999967,46.214996000000042],[-60.295279999999934,46.226936000000137],[-60.295279999999934,46.232208000000071],[-60.304169000000002,46.233878999999945],[-60.365554999999972,46.224990999999989],[-60.372771999999998,46.223320000000115],[-60.396111000000019,46.213051000000064],[-60.401938999999913,46.21027399999997],[-60.418335000000013,46.199996999999996],[-60.428054999999915,46.192490000000078],[-60.442497000000003,46.17943600000001],[-60.463332999999921,46.163879000000122],[-60.479163999999912,46.152771000000143],[-60.528053,46.121658000000139],[-60.605835000000013,46.074715000000083],[-60.629997000000003,46.065269000000114],[-60.644164999999987,46.063049000000092],[-60.65193899999997,46.063880999999981],[-60.656104999999968,46.067772000000048],[-60.656386999999938,46.073051000000021],[-60.652495999999985,46.079436999999984],[-60.638335999999867,46.093048000000124],[-60.456107999999972,46.241379000000052],[-60.404998999999975,46.279991000000052],[-60.399726999999984,46.283882000000119],[-60.388892999999996,46.291106999999954],[-60.359725999999966,46.304993000000138],[-60.347778000000005,46.310546999999985],[-60.285278000000005,46.321381000000031],[-60.205558999999994,46.240273000000002],[-60.138054000000011,46.246658000000025],[-60.131942999999922,46.248604000000114],[-60.124167999999997,46.248604000000114],[-60.099997999999971,46.246384000000091],[-60.091666999999916,46.244713000000047],[-59.950553999999897,46.201385000000073],[-59.873054999999965,46.17582699999997],[-59.808608999999876,46.111938000000066],[-59.80972300000002,46.106384000000048],[-59.819449999999961,46.097214000000008],[-59.834166999999979,46.084717000000012],[-59.853888999999924,46.00249500000001],[-59.840553,45.938324000000023],[-59.958610999999962,45.901657000000057],[-60.130279999999971,45.867767000000129],[-60.136115999999959,45.864997999999957],[-60.155272999999966,45.846656999999993],[-60.159438999999963,45.841102999999976],[-60.160552999999936,45.835548000000074],[-60.174445999999989,45.76388500000013],[-60.229163999999969,45.705551000000128],[-60.233886999999925,45.701102999999932],[-60.245834000000002,45.69499200000007],[-60.379723000000013,45.644997000000046],[-60.392226999999991,45.641105999999979],[-60.411666999999966,45.636940000000095],[-60.49888599999997,45.620269999999948],[-60.513061999999934,45.618880999999988],[-60.55750299999994,45.618049999999982],[-60.765556000000004,45.594994000000099],[-60.960830999999928,45.599433999999917],[-61.101669000000015,45.564437999999996],[-61.14833799999991,45.555267000000072],[-61.168334999999956,45.551384000000098],[-61.196917999999982,45.583740000000091],[-61.218696999999963,45.580788000000098],[-61.237521999999956,45.581528000000048],[-61.273055999999997,45.561935000000005],[-61.336945000000014,45.573326000000009],[-61.37557599999991,45.622131000000138],[-61.430556999999965,45.665543000000071],[-61.454719999999952,45.705551000000128],[-61.457503999999972,45.71527100000003],[-61.478049999999996,45.803879000000109],[-61.494720000000029,45.846381999999949],[-61.527495999999985,45.98943300000002],[-61.455558999999994,46.137497000000053],[-61.447776999999974,46.149436999999978],[-61.438888999999961,46.159430999999984],[-61.412772999999959,46.178329000000076],[-61.390839000000028,46.191376000000105],[-61.37388599999997,46.200829000000113],[-61.343329999999924,46.212493999999992],[-61.305557000000022,46.224990999999989],[-61.293892000000028,46.230819999999994],[-61.283332999999971,46.238884000000041],[-61.09722099999999,46.44609800000012],[-61.089438999999913,46.458046000000138],[-61.035278000000005,46.555549999999982],[-61.033057999999926,46.561661000000072],[-61.031113000000005,46.572769000000051],[-61.032501000000025,46.577492000000063],[-60.996947999999918,46.634720000000073],[-60.892226999999991,46.77388000000002],[-60.873610999999869,46.793052999999929],[-60.86361699999992,46.801384000000041],[-60.84027900000001,46.813605999999993],[-60.833884999999896,46.815543999999932],[-60.805557000000022,46.820273999999984],[-60.793892000000028,46.825271999999984],[-60.724716000000001,46.874992000000134],[-60.714721999999995,46.88249200000007],[-60.704444999999907,46.891380000000026],[-60.695273999999927,46.901657],[-60.686660999999958,46.912491000000045],[-60.678336999999942,46.930824000000143],[-60.670554999999979,46.953606000000036],[-60.664444000000003,46.966103000000032],[-60.65694400000001,46.978600000000029],[-60.640282000000013,47],[-60.609169000000009,47.024437000000091],[-60.597777999999892,47.031105000000025],[-60.591942000000017,47.033333000000027],[-60.583327999999938,47.031661999999926],[-60.460830999999871,46.999161000000015],[-60.427498000000014,46.965827999999988],[-60.493889000000024,46.902214000000072],[-60.498055000000022,46.896660000000111],[-60.452224999999942,46.864441000000056],[-60.445273999999984,46.861664000000133]],[[-64.039718999999991,46.743324000000086],[-64.031677000000002,46.742767000000015],[-64.016402999999912,46.743607000000054],[-64.009170999999981,46.744156000000032],[-64.005004999999983,46.749718000000144],[-63.999999999999943,46.75360900000004],[-63.991668999999945,46.753052000000139],[-63.979163999999912,46.746383999999978],[-63.974715999999944,46.742493000000081],[-63.832503999999972,46.617210000000057],[-63.831673000000023,46.611938000000123],[-63.865004999999883,46.537498000000085],[-63.868888999999967,46.531937000000084],[-63.840836000000024,46.464438999999913],[-63.828339000000028,46.458046000000138],[-63.780281000000002,46.44499200000007],[-63.742226000000016,46.439430000000129],[-63.733054999999979,46.438881000000038],[-63.709442000000024,46.43749200000002],[-63.703888000000006,46.440544000000102],[-63.698050999999964,46.456383000000073],[-63.698607999999979,46.461662000000047],[-63.700279000000023,46.466385000000002],[-63.722771000000023,46.48054500000012],[-63.738051999999982,46.491378999999995],[-63.739998000000014,46.496101000000067],[-63.723327999999924,46.543610000000058],[-63.716110000000015,46.553879000000109],[-63.709723999999994,46.556099000000131],[-63.676391999999964,46.564156000000082],[-63.662216000000001,46.566382999999973],[-63.647223999999881,46.56721500000009],[-63.618889000000024,46.561104],[-63.497779999999977,46.527771000000143],[-63.315001999999936,46.488602000000071],[-63.271979999999928,46.426926000000094],[-63.240661999999986,46.420456000000001],[-63.216392999999982,46.412209000000132],[-62.942771999999877,46.426941000000113],[-62.862777999999935,46.434715000000097],[-62.698607999999979,46.452492000000007],[-62.692497000000003,46.456100000000106],[-62.686385999999914,46.457497000000046],[-62.665833000000021,46.461104999999975],[-62.595001000000025,46.470825000000048],[-62.477218999999991,46.477768000000026],[-62.455558999999994,46.478600000000142],[-62.182502999999997,46.485824999999977],[-62.166388999999981,46.486107000000061],[-62.133330999999941,46.482764999999915],[-62.058051999999975,46.472762999999986],[-62.014724999999942,46.46527100000003],[-61.979720999999984,46.45915999999994],[-61.970551,46.456940000000145],[-61.965003999999965,46.453323000000012],[-61.968886999999995,46.447768999999994],[-61.973609999999951,46.443047000000092],[-62.013061999999991,46.421104000000128],[-62.101112000000001,46.379715000000033],[-62.173331999999959,46.349433999999974],[-62.215552999999943,46.343605000000139],[-62.279723999999931,46.338043000000027],[-62.309166000000005,46.349998000000085],[-62.326392999999996,46.354996000000085],[-62.342773000000022,46.356102000000135],[-62.357779999999934,46.35582700000009],[-62.355834999999956,46.35083000000003],[-62.348052999999993,46.332214000000022],[-62.334723999999994,46.311935000000062],[-62.361945999999932,46.276657000000057],[-62.419448999999986,46.219986000000119],[-62.424720999999977,46.215546000000074],[-62.453888000000006,46.21443899999997],[-62.507506999999919,46.214157000000114],[-62.603888999999924,46.182495000000131],[-62.603888999999924,46.177215999999987],[-62.54222900000002,46.122490000000028],[-62.507506999999919,46.118881000000044],[-62.5,46.119156000000089],[-62.478333000000021,46.120827000000133],[-62.477218999999991,46.126380999999924],[-62.478881999999999,46.131935000000112],[-62.481667000000016,46.13638300000008],[-62.489998000000014,46.138328999999999],[-62.497222999999963,46.138046000000031],[-62.506110999999976,46.139717000000076],[-62.513892999999996,46.142220000000066],[-62.509726999999998,46.148605000000032],[-62.504448000000025,46.150825999999995],[-62.489166000000012,46.151382000000126],[-62.473052999999993,46.150269000000094],[-62.468886999999995,46.146102999999982],[-62.449164999999937,46.100548000000003],[-62.447494999999947,46.095543000000134],[-62.446945000000028,46.090546000000018],[-62.454720000000009,46.018883000000073],[-62.459166999999979,46.006386000000077],[-62.473609999999951,45.994713000000104],[-62.496947999999975,45.983879000000002],[-62.510001999999929,45.979156000000046],[-62.541671999999949,45.970543000000077],[-62.548614999999927,45.969437000000028],[-62.591667000000029,45.964996000000099],[-62.613891999999964,45.962769000000037],[-62.650276000000019,45.960274000000027],[-62.761115999999959,45.954162999999937],[-62.837776000000019,45.967490999999939],[-62.856667000000016,45.977486000000056],[-62.882773999999984,45.995544000000109],[-62.930283000000031,46.037215999999944],[-62.970832999999971,46.07416500000005],[-62.922500999999954,46.092491000000052],[-62.917220999999984,46.096382000000119],[-62.875274999999931,46.134995000000004],[-62.871940999999936,46.143607999999972],[-62.885276999999974,46.155823000000055],[-62.890839000000028,46.159430999999984],[-63.025276000000019,46.189156000000082],[-63.103614999999991,46.201934999999935],[-63.112777999999992,46.204163000000108],[-63.119445999999868,46.207214000000135],[-63.12222300000002,46.211662000000103],[-63.120276999999987,46.217766000000097],[-63.115836999999942,46.222487999999998],[-63.038895000000025,46.280273000000079],[-63.02416999999997,46.290275999999949],[-63.017776000000026,46.292496000000142],[-63.010284000000013,46.292770000000075],[-63.002228000000002,46.289992999999981],[-62.99610899999999,46.292220999999984],[-62.979438999999957,46.301658999999972],[-62.969161999999983,46.309432999999956],[-62.964721999999881,46.314156000000139],[-62.962775999999963,46.319992000000013],[-62.969443999999953,46.31888600000002],[-63.035277999999892,46.301658999999972],[-63.041388999999981,46.299721000000034],[-63.052779999999927,46.293884000000048],[-63.058608999999933,46.290833000000021],[-63.090836000000024,46.26915699999995],[-63.165001000000018,46.210548000000074],[-63.143332999999984,46.201660000000118],[-63.139167999999984,46.197769000000051],[-63.138610999999912,46.192490000000078],[-63.140556000000004,46.186378000000104],[-63.22444200000001,46.139717000000076],[-63.23860899999994,46.138046000000031],[-63.253615999999965,46.137497000000053],[-63.26167299999986,46.138046000000031],[-63.289169000000015,46.14388299999996],[-63.409163999999919,46.176940999999999],[-63.519722000000002,46.206099999999935],[-63.591942000000017,46.211937000000091],[-63.642775999999913,46.224990999999989],[-63.649726999999928,46.228043000000071],[-63.699722000000008,46.259437999999989],[-63.700553999999954,46.269989000000066],[-63.702224999999999,46.27526899999998],[-63.70666499999993,46.278602999999919],[-63.741942999999935,46.304436000000067],[-63.754447999999968,46.310822000000144],[-63.811110999999926,46.32749200000012],[-63.772223999999937,46.360825000000091],[-63.736945999999932,46.353882000000112],[-63.729163999999969,46.352776000000063],[-63.714721999999995,46.354164000000026],[-63.739166000000012,46.391106000000036],[-63.745002999999997,46.394714000000135],[-63.754447999999968,46.396385000000009],[-63.761672999999917,46.396659999999997],[-63.841109999999958,46.39888000000002],[-63.963615000000004,46.401100000000042],[-63.981941000000006,46.39388300000013],[-63.989165999999898,46.393608000000086],[-64.121933000000013,46.404709000000025],[-64.129989999999964,46.407211000000132],[-64.133057000000008,46.4116590000001],[-64.135009999999909,46.416382000000056],[-64.133057000000008,46.43332700000002],[-64.115828999999962,46.523048000000017],[-64.11332699999997,46.53472099999999],[-64.110000999999954,46.541107000000125],[-64.105559999999969,46.54583000000008],[-64.100280999999882,46.549720999999977],[-64.094161999999926,46.551659000000086],[-64.105559999999969,46.618050000000096],[-64.273894999999982,46.62332200000003],[-64.387511999999958,46.62082700000002],[-64.391952999999944,46.624709999999936],[-64.413895000000025,46.665825000000098],[-64.415558000000033,46.670546999999999],[-64.416655999999932,46.68110699999994],[-64.414718999999991,46.697769000000108],[-64.410277999999948,46.711105000000089],[-64.400283999999942,46.727486000000113],[-64.382492000000013,46.746658000000082],[-64.346953999999982,46.773605000000032],[-64.323897999999929,46.786384999999996],[-64.296386999999982,46.801659000000029],[-64.286117999999931,46.80943300000007],[-64.27305599999994,46.823607999999979],[-64.249724999999955,46.868050000000039],[-64.247771999999941,46.874161000000129],[-64.247222999999906,46.879714999999976],[-64.243880999999988,46.886108000000092],[-64.236389000000031,46.897491000000116],[-64.226943999999946,46.906097000000045],[-64.182770000000005,46.945541000000105],[-64.168610000000001,46.956657000000064],[-64.020844000000011,47.038605000000132],[-63.99500299999994,46.984161000000086],[-63.969993999999986,46.901657],[-63.967498999999862,46.891662999999994],[-64.041381999999999,46.82249500000006],[-64.066100999999946,46.804436000000123],[-64.076401000000033,46.798881999999992],[-64.091674999999952,46.778603000000032],[-64.077498999999932,46.756386000000134],[-64.074448000000018,46.752220000000023],[-64.067504999999926,46.749161000000072],[-64.039718999999991,46.743324000000086]],[[-55.876105999999993,47.260551000000021],[-55.968329999999867,47.257773999999927],[-55.946388000000013,47.273323000000062],[-55.934440999999936,47.279434000000094],[-55.895003999999972,47.290833000000021],[-55.888053999999954,47.292496000000142],[-55.881110999999976,47.293326999999977],[-55.872771999999998,47.292221000000097],[-55.865836999999885,47.287773000000129],[-55.855003000000011,47.269714000000022],[-55.876105999999993,47.260551000000021]],[[-61.380554000000018,47.620270000000119],[-61.493057000000022,47.552490000000091],[-61.498610999999926,47.550270000000069],[-61.535560999999973,47.54583000000008],[-61.54222900000002,47.545547000000113],[-61.547782999999868,47.549164000000076],[-61.549445999999989,47.553879000000109],[-61.545279999999991,47.55943300000007],[-61.520279000000016,47.569160000000011],[-61.513892999999939,47.572495000000117],[-61.477492999999924,47.60054800000006],[-61.473610000000008,47.6055530000001],[-61.471382000000006,47.611382000000106],[-61.470551,47.616936000000123],[-61.479163999999969,47.618599000000017],[-61.534447,47.618881000000101],[-61.541945999999996,47.617210000000057],[-61.559440999999993,47.609161000000029],[-61.653610000000015,47.549995000000081],[-61.855559999999969,47.417213000000061],[-61.849723999999981,47.413605000000132],[-61.841667000000029,47.410820000000115],[-61.833611000000019,47.409987999999998],[-61.789169000000015,47.425827000000083],[-61.777221999999995,47.431664000000069],[-61.766662999999937,47.439156000000025],[-61.714447000000007,47.489989999999977],[-61.691382999999973,47.515548999999965],[-61.701392999999939,47.491936000000067],[-61.740836999999942,47.44499200000007],[-61.843329999999924,47.388603000000046],[-61.90589099999994,47.354935000000012],[-61.925277999999992,47.343605000000139],[-61.93332700000002,47.333327999999938],[-61.962776000000019,47.281662000000097],[-61.965003999999965,47.275551000000007],[-61.964721999999995,47.270271000000093],[-61.961945000000014,47.266106000000093],[-61.957503999999972,47.261940000000038],[-61.938605999999993,47.257217000000026],[-61.827782000000013,47.234161000000029],[-61.819450000000018,47.233330000000024],[-61.807776999999987,47.239159000000029],[-61.799445999999989,47.250274999999931],[-61.794723999999917,47.254714999999976],[-61.783057999999869,47.260551000000021],[-61.782775999999956,47.255272000000048],[-61.789725999999916,47.242493000000024],[-61.793892000000028,47.236938000000123],[-61.799445999999989,47.232764999999972],[-61.810279999999977,47.226654000000053],[-61.816948000000025,47.224709000000075],[-61.84444400000001,47.219436999999971],[-61.859443999999883,47.218047999999953],[-61.955276000000026,47.211662000000047],[-61.979995999999971,47.213608000000136],[-61.996390999999903,47.214996000000042],[-62.004722999999956,47.217766000000097],[-62.010001999999872,47.22137500000008],[-62.013061999999991,47.225821999999994],[-62.014724999999942,47.23054500000012],[-62.015006999999912,47.235825000000034],[-62.013061999999991,47.241661000000079],[-61.948607999999979,47.379432999999949],[-61.941665999999941,47.392219999999952],[-61.937499999999943,47.39777400000014],[-61.928054999999972,47.407211000000075],[-61.922225999999966,47.409987999999998],[-61.908889999999928,47.413879000000065],[-61.736114999999984,47.507216999999969],[-61.705832999999984,47.532494000000099],[-61.684440999999936,47.547492999999974],[-61.662216000000001,47.561661000000072],[-61.616942999999992,47.588042999999914],[-61.571114000000023,47.613608999999997],[-61.553611999999987,47.623046999999985],[-61.53583500000002,47.631659999999954],[-61.529167000000029,47.633606000000043],[-61.521110999999962,47.634437999999989],[-61.425277999999992,47.642769000000044],[-61.407775999999956,47.641105999999922],[-61.388892999999996,47.637771999999984],[-61.381942999999922,47.634437999999989],[-61.377776999999924,47.631103999999993],[-61.376105999999993,47.626380999999981],[-61.380554000000018,47.620270000000119]],[[-54.261391000000003,47.39027400000009],[-54.268889999999999,47.389717000000019],[-54.293059999999969,47.391663000000051],[-54.341385000000002,47.398048000000074],[-54.358054999999979,47.403046000000074],[-54.364448999999979,47.406654000000003],[-54.365554999999915,47.411659000000043],[-54.359726000000023,47.416664000000083],[-54.326392999999996,47.436653000000035],[-54.295279999999991,47.44999700000011],[-54.278053,47.460823000000062],[-54.267220000000009,47.469437000000084],[-54.262222000000008,47.474709000000018],[-54.257781999999963,47.480820000000108],[-54.230552999999986,47.523605000000032],[-54.229996000000028,47.550270000000069],[-54.204719999999952,47.593605000000082],[-54.13527699999986,47.668053000000043],[-54.128882999999973,47.670546999999999],[-54.122771999999998,47.66693900000007],[-54.121940999999993,47.661934000000031],[-54.122222999999963,47.656937000000084],[-54.124999999999943,47.640831000000105],[-54.160827999999981,47.534996000000035],[-54.238892000000021,47.40387700000008],[-54.243331999999953,47.399437000000091],[-54.255004999999983,47.392769000000101],[-54.261391000000003,47.39027400000009]],[[-54.077498999999989,47.479431000000091],[-54.08306099999993,47.474991000000102],[-54.093055999999933,47.483046999999999],[-54.096663999999976,47.487213000000054],[-54.101112000000001,47.496384000000035],[-54.101944000000003,47.501389000000074],[-54.099723999999924,47.558883999999978],[-54.09833500000002,47.589714000000015],[-54.097220999999934,47.605270000000132],[-54.09332999999998,47.631659999999954],[-54.083610999999962,47.679717999999923],[-54.078612999999962,47.684990000000028],[-54.071388000000013,47.685546999999929],[-54.067504999999983,47.681107000000111],[-54.060555000000022,47.651099999999985],[-54.078056000000004,47.563881000000038],[-54.05972300000002,47.532211000000132],[-54.058891000000017,47.527214000000072],[-54.077498999999989,47.479431000000091]],[[-55.901938999999857,47.602493000000038],[-55.923057999999912,47.599434000000088],[-55.947220000000016,47.601936000000137],[-56.013335999999981,47.611664000000019],[-56.097778000000005,47.627487000000031],[-56.105559999999855,47.630821000000026],[-56.109169000000009,47.63499500000006],[-56.113616999999977,47.644714000000022],[-56.112220999999977,47.649719000000118],[-56.106666999999959,47.654709000000139],[-56.100280999999939,47.657211000000018],[-56.005835999999988,47.680274999999995],[-55.941108999999983,47.689156000000139],[-55.933883999999978,47.688324000000023],[-55.92861199999993,47.684432999999956],[-55.927498000000014,47.676658999999972],[-55.934440999999936,47.658882000000119],[-55.934440999999936,47.653877000000023],[-55.932502999999997,47.643883000000017],[-55.930000000000007,47.639435000000049],[-55.926392000000021,47.635268999999994],[-55.914161999999976,47.628326000000015],[-55.889442000000031,47.618881000000101],[-55.876388999999961,47.611664000000019],[-55.882499999999936,47.607773000000122],[-55.901938999999857,47.602493000000038]],[[-64.482773000000009,47.917770000000019],[-64.50167799999997,47.856384000000048],[-64.503615999999909,47.850273000000016],[-64.514724999999999,47.832497000000046],[-64.523055999999997,47.822220000000016],[-64.541106999999954,47.80332199999998],[-64.604995999999971,47.748329000000126],[-64.610549999999989,47.745270000000005],[-64.635833999999988,47.735825000000091],[-64.647507000000019,47.733879000000002],[-64.690551999999968,47.753052000000139],[-64.693328999999949,47.758049000000028],[-64.702788999999939,47.823607999999979],[-64.697768999999994,47.836104999999918],[-64.685546999999985,47.852219000000048],[-64.667496000000028,47.866936000000067],[-64.662215999999944,47.870827000000133],[-64.624160999999958,47.884719999999959],[-64.617767000000015,47.886658000000125],[-64.609160999999972,47.886939999999981],[-64.584166999999923,47.884995000000004],[-64.508057000000008,47.903877000000023],[-64.482773000000009,47.917770000000019]],[[-64.567504999999926,47.899436999999978],[-64.574448000000018,47.89804799999996],[-64.583617999999888,47.899436999999978],[-64.589447000000007,47.902771000000143],[-64.593886999999995,47.90665400000006],[-64.594451999999933,47.911933999999974],[-64.593612999999891,47.918052999999986],[-64.531677000000002,48.016105999999979],[-64.52694699999995,48.02165999999994],[-64.522780999999952,48.025551000000007],[-64.516952999999944,48.028602999999976],[-64.509734999999921,48.029991000000052],[-64.50111400000003,48.027488999999946],[-64.495543999999938,48.023880000000133],[-64.490828999999906,48.019989000000066],[-64.48582499999992,48.013054000000011],[-64.482773000000009,48.008606000000043],[-64.469726999999978,47.969711000000132],[-64.469161999999869,47.96443899999997],[-64.470550999999944,47.953323000000069],[-64.47444200000001,47.947769000000051],[-64.496383999999978,47.933875999999998],[-64.513901000000033,47.924712999999997],[-64.567504999999926,47.899436999999978]],[[-53.712775999999963,48.14888000000002],[-53.689720000000023,48.147217000000126],[-53.682502999999997,48.147774000000027],[-53.667503000000011,48.150542999999971],[-53.647781000000009,48.155265999999926],[-53.615554999999915,48.167496000000028],[-53.583327999999995,48.18082400000003],[-53.571113999999909,48.186104000000114],[-53.564162999999951,48.190543999999932],[-53.553054999999972,48.199158000000011],[-53.539444000000003,48.202217000000132],[-53.53167000000002,48.202774000000034],[-53.516395999999986,48.201935000000105],[-53.509726999999941,48.198326000000066],[-53.509170999999867,48.193321000000026],[-53.510833999999988,48.150826000000109],[-53.512504999999919,48.145271000000037],[-53.530829999999924,48.097771000000023],[-53.536391999999978,48.093323000000055],[-53.549445999999989,48.088600000000099],[-53.56361400000003,48.084991000000116],[-53.598884999999996,48.079437000000098],[-53.634170999999924,48.075272000000098],[-53.823333999999932,48.092765999999983],[-53.83943899999997,48.094437000000084],[-53.856110000000001,48.098044999999956],[-53.871940999999936,48.104713000000118],[-53.876663000000008,48.108604000000014],[-53.93250299999994,48.172767999999962],[-53.935829000000012,48.182495000000131],[-53.932776999999987,48.198326000000066],[-53.929168999999945,48.209434999999985],[-53.922225999999966,48.212493999999936],[-53.906386999999938,48.21027400000014],[-53.898887999999943,48.206657000000007],[-53.860000999999954,48.174438000000123],[-53.855559999999969,48.169991000000095],[-53.712775999999963,48.14888000000002]],[[-123.47444200000001,48.709160000000054],[-123.48277300000001,48.708328000000108],[-123.48999000000003,48.709435000000042],[-123.51306199999993,48.716385000000116],[-123.52471899999989,48.722488000000055],[-123.54943800000001,48.746658000000082],[-123.551941,48.752220000000023],[-123.59277299999991,48.898331000000098],[-123.595551,48.909714000000122],[-123.59612299999998,48.928329000000076],[-123.59665699999994,48.946938000000046],[-123.59361299999995,48.947211999999979],[-123.58056599999992,48.935547000000042],[-123.57721699999996,48.929161000000136],[-123.53611799999999,48.914993000000095],[-123.53028899999998,48.911933999999974],[-123.45749699999993,48.863052000000039],[-123.43388400000003,48.844437000000084],[-123.37027,48.768326000000002],[-123.36888099999993,48.762771999999984],[-123.37165800000002,48.75750000000005],[-123.37638900000002,48.753608999999983],[-123.43195300000002,48.721099999999979],[-123.47444200000001,48.709160000000054]],[[-58.342223999999987,49.066101000000117],[-58.349166999999966,49.064437999999996],[-58.356109999999944,49.065826000000129],[-58.351943999999889,49.071938000000102],[-58.341385000000002,49.07638500000013],[-58.333611000000019,49.077773999999977],[-58.330558999999994,49.073326000000009],[-58.335830999999928,49.068885999999964],[-58.342223999999987,49.066101000000117]],[[-123.32277699999997,48.861107000000004],[-123.3705369999999,48.856384000000048],[-123.37888299999997,48.85694100000012],[-123.38474299999996,48.859993000000031],[-123.54055799999998,48.944992000000127],[-123.66251399999999,49.03527100000008],[-123.70388800000001,49.095268000000033],[-123.70527599999997,49.100273000000072],[-123.70249899999999,49.105552999999986],[-123.695831,49.108047000000113],[-123.68639400000001,49.106659000000036],[-123.68055700000002,49.103607000000068],[-123.674713,49.093048000000067],[-123.65943900000002,49.073608000000036],[-123.60444599999994,49.014717000000132],[-123.58640300000002,49.000549000000092],[-123.52166699999998,48.96027400000014],[-123.49916099999996,48.947211999999979],[-123.487503,48.94110100000006],[-123.45973200000003,48.930549999999982],[-123.43639399999995,48.924438000000009],[-123.42027299999995,48.920547000000113],[-123.38194299999992,48.910819999999944],[-123.32833900000003,48.895827999999938],[-123.32250999999991,48.892768999999987],[-123.31777999999997,48.88888500000013],[-123.31276700000001,48.872765000000072],[-123.3125,48.868050000000039],[-123.31639100000001,48.863327000000027],[-123.32277699999997,48.861107000000004]],[[-125.816101,49.125824000000136],[-125.82028200000002,49.124709999999993],[-125.86028299999998,49.134438000000046],[-125.906387,49.160820000000115],[-125.91027800000001,49.165543000000071],[-125.92582699999991,49.190826000000015],[-125.93360899999993,49.211104999999918],[-125.93306000000001,49.218048000000124],[-125.93055700000002,49.219986000000063],[-125.92610200000001,49.223320000000058],[-125.87888299999992,49.235824999999977],[-125.86749299999997,49.233330000000137],[-125.82917800000001,49.226379000000009],[-125.81806899999987,49.220543000000134],[-125.79915599999998,49.208328000000051],[-125.78888699999993,49.172768000000133],[-125.79583699999995,49.151932000000102],[-125.79833999999994,49.146385000000009],[-125.81249999999994,49.129158000000132],[-125.816101,49.125824000000136]],[[-126.13194299999992,49.393325999999945],[-126.126938,49.390274000000034],[-126.12470999999999,49.390274000000034],[-126.12053699999996,49.388602999999989],[-126.11054999999999,49.382210000000043],[-126.10665899999992,49.378601000000003],[-126.09612300000003,49.368599000000074],[-126.08640300000002,49.358604000000128],[-126.07277699999997,49.34304800000001],[-126.0497279999999,49.265548999999965],[-126.0511019999999,49.260550999999964],[-126.05583200000001,49.256104000000107],[-126.06471299999987,49.250832000000003],[-126.07112100000001,49.248329000000012],[-126.07972699999999,49.246658000000139],[-126.08917199999991,49.246101000000067],[-126.09638999999999,49.24721500000004],[-126.18666100000002,49.263328999999999],[-126.19167299999992,49.265548999999965],[-126.22332799999992,49.279716000000121],[-126.22944599999994,49.282493999999929],[-126.23916600000001,49.289718999999991],[-126.23473399999995,49.374161000000015],[-126.22917200000001,49.378601000000003],[-126.22138999999999,49.380547000000092],[-126.14138800000001,49.39415699999995],[-126.13194299999992,49.393325999999945]],[[-123.37943999999999,49.326941999999974],[-123.39222699999999,49.326103000000046],[-123.41027799999995,49.334159999999997],[-123.42194399999994,49.339714000000015],[-123.42666600000001,49.344154000000003],[-123.42804699999999,49.348877000000016],[-123.42027299999995,49.381660000000011],[-123.41332999999997,49.386107999999979],[-123.3600009999999,49.411658999999986],[-123.35472099999998,49.413322000000107],[-123.327789,49.416664000000083],[-123.31696299999999,49.417496000000142],[-123.31220999999999,49.414992999999981],[-123.30943300000001,49.41137700000013],[-123.31027199999994,49.40526600000004],[-123.31194299999993,49.401932000000045],[-123.327789,49.363052000000096],[-123.33112299999999,49.354996000000028],[-123.34472699999998,49.341934000000037],[-123.36833199999995,49.330275999999969],[-123.37943999999999,49.326941999999974]],[[-54.705276000000026,49.400543000000084],[-54.712776000000019,49.398330999999985],[-54.730277999999998,49.403046000000018],[-54.735557999999969,49.407211000000018],[-54.759726999999941,49.432495000000017],[-54.759170999999981,49.437766999999951],[-54.754723000000013,49.443878000000041],[-54.749442999999928,49.449158000000125],[-54.73833499999995,49.457771000000093],[-54.680556999999908,49.49193600000001],[-54.673057999999912,49.492493000000081],[-54.665001000000018,49.489159000000086],[-54.644164999999987,49.473320000000001],[-54.640281999999956,49.46915400000006],[-54.640838999999971,49.463881999999955],[-54.654716000000008,49.460823000000005],[-54.684440999999993,49.420546999999999],[-54.699164999999994,49.40387700000008],[-54.705276000000026,49.400543000000084]],[[-124.179169,49.441101000000117],[-124.18554699999999,49.439986999999974],[-124.31360599999999,49.456099999999992],[-124.32668299999995,49.460823000000005],[-124.36000099999995,49.474433999999974],[-124.36609599999997,49.477486000000056],[-124.37082699999996,49.481102000000135],[-124.37165799999997,49.483047000000113],[-124.38054699999998,49.506943000000035],[-124.38110399999994,49.511940000000095],[-124.37832599999996,49.515830999999991],[-124.37165799999997,49.518326000000002],[-124.361107,49.519157000000064],[-124.35500299999995,49.517494000000113],[-124.34889199999998,49.514442000000031],[-124.30471799999992,49.512214999999969],[-124.24471999999997,49.501389000000017],[-124.23750299999995,49.498329000000126],[-124.22138999999993,49.491379000000109],[-124.1875,49.474433999999974],[-124.18167099999999,49.471375000000023],[-124.17388900000003,49.45638299999996],[-124.17194399999994,49.446655000000135],[-124.17223399999989,49.444153000000085],[-124.179169,49.441101000000117]],[[-123.33277899999996,49.441101000000117],[-123.36028299999987,49.433051999999918],[-123.37499999999994,49.433327000000133],[-123.442207,49.438599000000067],[-123.448036,49.441658000000018],[-123.45944199999997,49.467209000000082],[-123.45973200000003,49.470543000000077],[-123.45305599999995,49.495544000000109],[-123.44526699999994,49.51527400000009],[-123.43666100000002,49.522217000000069],[-123.38082899999995,49.536110000000122],[-123.37000299999994,49.536110000000122],[-123.360817,49.534995999999978],[-123.3550029999999,49.531936999999971],[-123.33833300000003,49.50610400000005],[-123.33167999999995,49.500832000000116],[-123.32805599999995,49.496383999999978],[-123.32389799999993,49.488602000000014],[-123.319458,49.474708999999962],[-123.31777999999997,49.464157],[-123.319458,49.451934999999992],[-123.32224300000001,49.448043999999925],[-123.32695000000001,49.444153000000085],[-123.33277899999996,49.441101000000117]],[[-55.695548999999971,49.506943000000035],[-55.725829999999974,49.505554000000018],[-55.732497999999964,49.509163000000001],[-55.735001000000011,49.513610999999969],[-55.736114999999984,49.518599999999935],[-55.735832000000016,49.52388000000002],[-55.730277999999942,49.545547000000056],[-55.722771000000023,49.557770000000119],[-55.716110000000015,49.560271999999998],[-55.684998000000007,49.561104000000114],[-55.676948999999979,49.561104000000114],[-55.658332999999971,49.559158000000025],[-55.653052999999886,49.555267000000129],[-55.652221999999938,49.550270000000069],[-55.653885000000002,49.544716000000051],[-55.661384999999939,49.529716000000064],[-55.664444000000003,49.52388000000002],[-55.68111399999998,49.510826000000122],[-55.687499999999943,49.508049000000028],[-55.695548999999971,49.506943000000035]],[[-124.68943799999994,49.480270000000019],[-124.69611399999997,49.477767999999969],[-124.70221700000002,49.478042999999957],[-124.74137899999994,49.488045000000113],[-124.75361599999991,49.491379000000109],[-124.82362399999994,49.539435999999966],[-124.83666999999997,49.554993000000024],[-124.84111000000001,49.562767000000008],[-124.84249899999992,49.578605999999979],[-124.84194899999989,49.58415999999994],[-124.83416699999992,49.607773000000066],[-124.83168000000001,49.610549999999989],[-124.82749899999993,49.608887000000038],[-124.81054699999993,49.589714000000129],[-124.80888400000003,49.586655000000007],[-124.80583200000001,49.585823000000062],[-124.77887699999997,49.568886000000077],[-124.68804899999986,49.483604000000014],[-124.68943799999994,49.480270000000019]],[[-55.693053999999961,49.56749700000006],[-55.709166999999979,49.566383000000087],[-55.716659999999933,49.567214999999976],[-55.720832999999971,49.571381000000088],[-55.723052999999993,49.576102999999989],[-55.722771000000023,49.581383000000073],[-55.705832999999927,49.613883999999985],[-55.684998000000007,49.624992000000134],[-55.673888999999974,49.630547000000035],[-55.659720999999934,49.635551000000021],[-55.653052999999886,49.63638300000008],[-55.572776999999974,49.603881999999999],[-55.567504999999926,49.599998000000141],[-55.573058999999944,49.595543000000134],[-55.586387999999943,49.59137700000008],[-55.608054999999979,49.586104999999975],[-55.671669000000009,49.571381000000088],[-55.693053999999961,49.56749700000006]],[[-54.576667999999984,49.558601000000124],[-54.77305599999994,49.493880999999988],[-54.809440999999993,49.488045000000113],[-54.83916499999998,49.48443600000013],[-54.855835000000013,49.48443600000013],[-54.863060000000019,49.485268000000019],[-54.871940999999936,49.487495000000081],[-54.873055000000022,49.492218000000094],[-54.893616000000009,49.580551000000128],[-54.894447000000014,49.58526599999999],[-54.891945000000021,49.590546000000074],[-54.885276999999974,49.593048000000124],[-54.805556999999965,49.595825000000048],[-54.792228999999963,49.572768999999994],[-54.793335000000013,49.566939999999988],[-54.791671999999892,49.56249200000002],[-54.78833800000001,49.557770000000119],[-54.784172000000012,49.554161000000136],[-54.768607999999972,49.546661000000029],[-54.760001999999986,49.545547000000056],[-54.743889000000024,49.544998000000135],[-54.729720999999984,49.548050000000046],[-54.708611000000019,49.554436000000123],[-54.614722999999969,49.606102000000021],[-54.574722000000008,49.635269000000108],[-54.561942999999928,49.653603000000089],[-54.548889000000031,49.659988000000055],[-54.536117999999931,49.664153999999996],[-54.529723999999987,49.633881000000031],[-54.531669999999963,49.62221500000004],[-54.538054999999986,49.587494000000106],[-54.543334999999956,49.582497000000046],[-54.570557000000008,49.562209999999936],[-54.576667999999984,49.558601000000124]],[[-54.004448000000025,49.647491000000116],[-54.257781999999963,49.566666000000055],[-54.265839000000028,49.566939999999988],[-54.274719000000005,49.569160000000011],[-54.289444000000003,49.576102999999989],[-54.293335000000013,49.580551000000128],[-54.298888999999917,49.609993000000088],[-54.297782999999981,49.651100000000099],[-54.288054999999929,49.71138000000002],[-54.282775999999956,49.716660000000104],[-54.269996999999989,49.722487999999998],[-54.141945000000021,49.75],[-54.102225999999973,49.750274999999988],[-54.093886999999938,49.748878000000047],[-54.085830999999985,49.745544000000052],[-54.081115999999952,49.736381999999935],[-54.040000999999961,49.689987000000087],[-54.003058999999951,49.659988000000055],[-54.004448000000025,49.647491000000116]],[[-124.129707,49.650825999999995],[-124.139183,49.650543000000027],[-124.15361000000001,49.655548000000067],[-124.18694299999993,49.668883999999991],[-124.196663,49.676940999999999],[-124.20195000000001,49.701934999999992],[-124.19943199999989,49.706099999999992],[-124.14750699999996,49.746658000000025],[-124.14277600000003,49.75],[-124.13722199999995,49.752219999999966],[-124.09166699999997,49.767769000000101],[-124.03611799999999,49.777214000000129],[-124.029449,49.778328000000101],[-124.021118,49.77777100000003],[-124.01611299999996,49.775551000000007],[-124.01862299999999,49.77165999999994],[-124.02555799999993,49.767769000000101],[-124.04611199999999,49.756386000000077],[-124.06054699999999,49.744995000000131],[-124.07472200000001,49.733330000000024],[-124.09084300000001,49.715546000000131],[-124.10109699999992,49.700272000000041],[-124.10555999999991,49.689430000000016],[-124.10722399999992,49.677215999999987],[-124.11081699999994,49.664992999999924],[-124.11361699999998,49.659713999999951],[-124.12304699999993,49.651931999999988],[-124.129707,49.650825999999995]],[[-56.80361199999993,49.763329000000056],[-56.827498999999989,49.761107999999979],[-56.83555599999994,49.762771999999984],[-56.83805099999995,49.767494000000056],[-56.832779000000016,49.771934999999985],[-56.826667999999984,49.77526899999998],[-56.792503000000011,49.785552999999993],[-56.782218999999998,49.78694200000001],[-56.78194400000001,49.780822999999941],[-56.790840000000003,49.768326000000002],[-56.796669000000009,49.764999000000046],[-56.80361199999993,49.763329000000056]],[[-124.44611399999991,49.723320000000115],[-124.43749999999994,49.723045000000127],[-124.42887899999994,49.723877000000016],[-124.41000400000001,49.723045000000127],[-124.38137799999998,49.713326000000109],[-124.35138699999999,49.698044000000095],[-124.33277900000002,49.683327000000077],[-124.13474300000001,49.525269000000037],[-124.13221699999991,49.520271000000037],[-124.12416100000002,49.499161000000072],[-124.122772,49.493607000000054],[-124.12748699999997,49.489715999999987],[-124.13417099999992,49.487495000000081],[-124.14167799999996,49.485825000000091],[-124.14916999999997,49.486107000000004],[-124.15527299999985,49.488602000000014],[-124.281387,49.546661000000029],[-124.40583800000002,49.605826999999977],[-124.43804899999998,49.628875999999991],[-124.44220699999994,49.638046000000031],[-124.47666900000002,49.67193600000013],[-124.5396649999999,49.692768000000001],[-124.55249799999996,49.697105000000022],[-124.56167599999998,49.699935999999923],[-124.61416600000001,49.713607999999965],[-124.62721299999993,49.71915400000006],[-124.65416699999997,49.736107000000118],[-124.66082799999992,49.742767000000129],[-124.65666199999993,49.796943999999939],[-124.65110800000002,49.799995000000138],[-124.61945300000002,49.797218000000044],[-124.604446,49.789436000000137],[-124.59944199999995,49.78443900000002],[-124.59028599999999,49.77165999999994],[-124.56234000000001,49.753326000000015],[-124.55933399999998,49.751495000000034],[-124.49472000000003,49.733330000000024],[-124.44611399999991,49.723320000000115]],[[-126.67610199999996,49.583603000000039],[-126.68138099999993,49.583054000000118],[-126.68888899999996,49.583878000000084],[-126.69722000000002,49.585548000000074],[-126.78971899999999,49.612213000000111],[-126.80803699999996,49.61971299999999],[-126.81416299999995,49.622765000000072],[-126.90556300000003,49.685547000000099],[-126.96528599999999,49.726935999999966],[-126.96945199999999,49.731102000000078],[-126.97416699999991,49.740273000000002],[-126.97556299999997,49.75],[-126.94055200000003,49.831383000000017],[-126.890556,49.84777100000008],[-126.79915599999993,49.876099000000011],[-126.77749599999993,49.87971500000009],[-126.76872299999997,49.878616000000079],[-126.74944299999999,49.85694100000012],[-126.73416099999997,49.848045000000013],[-126.67804699999994,49.825272000000098],[-126.64472999999992,49.774162000000047],[-126.636124,49.759437999999989],[-126.63445300000001,49.753883000000087],[-126.61332699999997,49.648330999999985],[-126.61609599999997,49.624435000000062],[-126.62053699999996,49.606102000000021],[-126.62416099999996,49.601386999999988],[-126.63305700000001,49.596100000000035],[-126.66861,49.585548000000074],[-126.67610199999996,49.583603000000039]],[[-62.089721999999881,49.386383000000137],[-62.081389999999999,49.385551000000078],[-62.051665999999955,49.390274000000034],[-62.043616999999927,49.390549000000078],[-62.025276000000019,49.38749700000011],[-61.892226999999934,49.351387000000045],[-61.875557000000015,49.344994000000042],[-61.825835999999924,49.312209999999993],[-61.821114000000023,49.308883999999978],[-61.663329999999917,49.149162000000047],[-61.661666999999966,49.144439999999975],[-61.670837000000006,49.134163000000001],[-61.702224999999942,49.111107000000004],[-61.735557999999969,49.096099999999979],[-61.796111999999937,49.078048999999965],[-62.019996999999989,49.069443000000035],[-62.029167000000029,49.069443000000035],[-62.195549000000028,49.074997000000053],[-62.368057000000022,49.0991590000001],[-62.726105000000018,49.154709000000025],[-62.782218999999884,49.165824999999984],[-62.946662999999944,49.198874999999987],[-63.089995999999985,49.228043000000014],[-63.097778000000005,49.23054500000012],[-63.209442000000024,49.270827999999995],[-63.23082699999992,49.280273000000022],[-63.242774999999938,49.287498000000085],[-63.253059000000007,49.294997999999964],[-63.269996999999989,49.311104],[-63.275832999999977,49.314712999999983],[-63.283332999999914,49.317771999999934],[-63.387221999999952,49.34388000000007],[-63.416945999999882,49.350829999999974],[-63.501296999999965,49.370384000000115],[-63.537223999999867,49.379714999999976],[-63.573058999999944,49.396660000000111],[-63.61611199999993,49.446938000000102],[-63.621940999999879,49.455551000000071],[-63.620833999999945,49.461105000000089],[-63.616660999999908,49.46665999999999],[-63.61333499999995,49.473044999999956],[-63.612502999999947,49.478873999999962],[-63.61611199999993,49.488327000000027],[-63.619720000000029,49.492767000000015],[-63.662772999999959,49.533051],[-63.67888599999992,49.544716000000051],[-63.714446999999893,49.566383000000087],[-63.84194199999996,49.639160000000004],[-63.881942999999978,49.65915700000005],[-63.918334999999956,49.674438000000009],[-64.01556399999987,49.702492000000063],[-64.306945999999925,49.777489000000003],[-64.382216999999969,49.789436000000137],[-64.389998999999932,49.789719000000105],[-64.418335000000013,49.801658999999972],[-64.511123999999995,49.858604000000014],[-64.513901000000033,49.863609000000054],[-64.510283999999956,49.868599000000131],[-64.50111400000003,49.878043999999989],[-64.496108999999876,49.883049000000085],[-64.490828999999906,49.886939999999925],[-64.472778000000005,49.895828000000108],[-64.458618000000001,49.900826000000109],[-64.445540999999992,49.904434000000037],[-64.226943999999946,49.948326000000066],[-64.203613000000018,49.950271999999984],[-64.142775999999969,49.948044000000039],[-64.133057000000008,49.947212000000093],[-64.12388599999997,49.945267000000115],[-64.029175000000009,49.924438000000123],[-63.958892999999932,49.898048000000131],[-63.615836999999942,49.849158999999986],[-63.545006000000001,49.843323000000112],[-63.49222599999996,49.840828000000045],[-63.475272999999959,49.840546000000018],[-63.346946999999943,49.820274000000097],[-63.309722999999963,49.813880999999981],[-63.136115999999959,49.780822999999941],[-63.074447999999961,49.764160000000061],[-62.99610899999999,49.736656000000096],[-62.786667000000023,49.676384000000098],[-62.71055599999994,49.660820000000001],[-62.545554999999979,49.599998000000141],[-62.443610999999919,49.5472180000001],[-62.340553,49.486938000000009],[-62.212218999999948,49.41443600000008],[-62.205832999999984,49.41137700000013],[-62.188889000000017,49.405823000000112],[-62.169166999999959,49.401099999999985],[-62.099167000000023,49.387771999999984],[-62.089721999999881,49.386383000000137]],[[-124.92415599999998,50.05860100000001],[-124.96861299999995,50.035827999999981],[-125.00055699999996,50.056656000000032],[-125.06304899999998,50.103324999999984],[-125.06696299999999,50.107498000000135],[-125.066101,50.113884000000041],[-125.0625,50.118324000000086],[-125.03971899999999,50.130546999999922],[-124.991669,50.168327000000033],[-124.98222399999992,50.176102000000128],[-124.98055999999991,50.18221299999999],[-124.98332199999999,50.225548000000003],[-124.93138099999993,50.171104000000128],[-124.92859599999997,50.166100000000142],[-124.91528299999999,50.141380000000083],[-124.89778100000001,50.077492000000063],[-124.92415599999998,50.05860100000001]],[[-63.859443999999996,50.197768999999937],[-63.873610999999983,50.194434999999999],[-63.890282000000013,50.194709999999986],[-63.899993999999936,50.196098000000063],[-63.908607000000018,50.198601000000053],[-63.916107000000011,50.201660000000004],[-63.920837000000006,50.205551000000071],[-63.930557000000022,50.218597000000045],[-63.931389000000024,50.223877000000073],[-63.930557000000022,50.229431000000091],[-63.926948999999922,50.236107000000004],[-63.922774999999888,50.241661000000022],[-63.916663999999969,50.244713000000104],[-63.909995999999921,50.246658000000139],[-63.90193899999997,50.24721500000004],[-63.889724999999999,50.242218000000094],[-63.865554999999915,50.228325000000041],[-63.859443999999996,50.224709000000018],[-63.854720999999927,50.220824999999991],[-63.852782999999988,50.216103000000089],[-63.853614999999991,50.210548000000017],[-63.855835000000013,50.204437000000098],[-63.859443999999996,50.197768999999937]],[[-125.16777000000002,49.980819999999937],[-125.16999800000002,49.980819999999937],[-125.17111199999994,49.981659000000093],[-125.18582199999997,50.004165999999998],[-125.20722999999998,50.044998000000021],[-125.21417199999996,50.069992000000013],[-125.28167699999989,50.11332700000014],[-125.31777999999986,50.136107999999979],[-125.32362399999994,50.143326000000002],[-125.33999599999993,50.203049000000021],[-125.34916699999997,50.242493000000138],[-125.34973100000002,50.25777400000004],[-125.348343,50.261665000000107],[-125.34554299999996,50.263901000000033],[-125.33999599999993,50.26888300000013],[-125.31082200000003,50.281380000000127],[-125.26334400000002,50.293883999999991],[-125.25472999999988,50.293610000000058],[-125.24638399999998,50.290549999999996],[-125.24333199999995,50.288329999999974],[-125.16722099999987,50.213608000000079],[-125.16111799999999,50.200272000000098],[-125.16000400000001,50.190544000000102],[-125.18666100000002,50.141663000000051],[-125.1536099999999,50.006103999999937],[-125.15416699999997,50.000832000000003],[-125.16416900000002,49.985268000000133],[-125.16777000000002,49.980819999999937]],[[-124.8125,50.111381999999992],[-124.82112100000001,50.111107000000118],[-124.82749899999993,50.111937999999952],[-124.83361799999989,50.114441000000113],[-124.86110699999989,50.136383000000023],[-124.93916299999995,50.207771000000093],[-124.96305799999999,50.236382000000049],[-124.96610999999996,50.246941000000106],[-124.96556099999992,50.251663000000008],[-124.92304999999993,50.296386999999982],[-124.91832699999986,50.29972099999992],[-124.91082799999998,50.299995000000081],[-124.90249599999999,50.29833200000013],[-124.89862099999999,50.293883999999991],[-124.87581599999993,50.28472099999999],[-124.82167099999992,50.239716000000044],[-124.75666799999999,50.178328999999962],[-124.75250199999999,50.167770000000132],[-124.752228,50.161376999999959],[-124.75499699999995,50.156097000000102],[-124.80695300000002,50.113884000000041],[-124.8125,50.111381999999992]],[[-124.73082699999992,50.302215999999987],[-124.72693599999997,50.299164000000019],[-124.72471599999994,50.299164000000019],[-124.69554099999999,50.289436000000023],[-124.68331899999993,50.283333000000084],[-124.67250100000001,50.276100000000042],[-124.66860999999994,50.272491000000059],[-124.66111799999993,50.263054000000125],[-124.65943900000002,50.258330999999941],[-124.65750099999997,50.247772000000111],[-124.65611299999989,50.231377000000009],[-124.65834000000001,50.212212000000022],[-124.66000399999996,50.207496999999989],[-124.66251399999999,50.203323000000125],[-124.695831,50.157494000000042],[-124.70195000000001,50.158600000000092],[-124.70805399999995,50.161376999999959],[-124.79222099999993,50.22526600000009],[-124.79499800000002,50.228874000000019],[-124.78083800000002,50.269440000000031],[-124.77778599999999,50.27748900000006],[-124.74500299999994,50.299437999999952],[-124.74054699999994,50.30193300000002],[-124.73082699999992,50.302215999999987]],[[-125.54387700000001,50.393883000000017],[-125.63583399999999,50.379714999999976],[-125.69360399999999,50.383330999999998],[-125.70333899999991,50.384163000000115],[-125.75527999999997,50.391662999999994],[-125.762787,50.394157000000121],[-125.76363400000002,50.397491000000116],[-125.75527999999997,50.405548000000067],[-125.74416399999996,50.40776800000009],[-125.59528399999999,50.433052000000089],[-125.58640300000002,50.434158000000139],[-125.52390300000002,50.434433000000126],[-125.51889,50.431381000000044],[-125.51806599999998,50.428604000000121],[-125.51777600000003,50.409431000000041],[-125.520554,50.403320000000122],[-125.52500899999995,50.400825999999995],[-125.53639199999998,50.395827999999995],[-125.54387700000001,50.393883000000017]],[[-125.16555800000003,50.374435000000062],[-125.06139400000001,50.240547000000049],[-125.05194099999989,50.226653999999996],[-125.05027799999993,50.221657000000107],[-125.048607,50.207771000000093],[-125.04915599999993,50.193320999999969],[-125.05166599999995,50.190826000000129],[-125.11638599999998,50.136658000000011],[-125.12917299999998,50.126098999999954],[-125.13390400000003,50.122764999999958],[-125.14028899999994,50.121658000000025],[-125.14472999999987,50.12193300000007],[-125.15083299999998,50.12499200000002],[-125.15416699999997,50.133331000000055],[-125.13971699999996,50.159431000000097],[-125.15611299999995,50.239158999999972],[-125.21083099999993,50.313048999999921],[-125.21362299999993,50.316666000000055],[-125.22000099999991,50.318329000000006],[-125.26363400000002,50.323607999999979],[-125.27194199999997,50.323883000000023],[-125.31555199999997,50.318054000000018],[-125.32112099999989,50.316939999999988],[-125.32695000000001,50.313881000000038],[-125.33306900000002,50.304435999999953],[-125.33473200000003,50.29972099999992],[-125.33944699999989,50.29583000000008],[-125.35610999999994,50.290276000000063],[-125.37222300000002,50.289436000000023],[-125.38527699999997,50.289993000000095],[-125.390289,50.29222100000004],[-125.39306599999998,50.29583000000008],[-125.39917000000003,50.311104000000114],[-125.400284,50.320831000000055],[-125.39943699999998,50.331108000000086],[-125.39806399999998,50.333878000000084],[-125.391953,50.340546000000074],[-125.291946,50.433876000000055],[-125.28443899999996,50.435822000000144],[-125.27500900000001,50.433327000000133],[-125.27306399999992,50.431107000000111],[-125.23665599999993,50.415825000000098],[-125.21640000000002,50.404709000000139],[-125.16555800000003,50.374435000000062]],[[-125.42610200000001,50.3555530000001],[-125.45777899999996,50.349434000000088],[-125.46749899999998,50.350273000000016],[-125.52610800000002,50.378875999999991],[-125.52806099999998,50.381660000000124],[-125.51862299999993,50.390274000000034],[-125.47749299999998,50.424164000000133],[-125.47165699999999,50.427489999999977],[-125.465012,50.429993000000138],[-125.37998999999996,50.460823000000005],[-125.37165799999997,50.457771000000037],[-125.37082699999996,50.455826000000059],[-125.36665299999993,50.454162999999937],[-125.34306300000003,50.441658000000018],[-125.33194700000001,50.435547000000099],[-125.33000199999998,50.430824000000143],[-125.33056599999986,50.425270000000125],[-125.33693700000003,50.416664000000026],[-125.38583399999999,50.36971299999999],[-125.39835399999998,50.364159000000029],[-125.42610200000001,50.3555530000001]],[[-125.80721999999997,50.413605000000075],[-125.90695199999993,50.409714000000008],[-125.92194399999988,50.41027100000008],[-125.92804699999999,50.411658999999986],[-125.93110699999988,50.413879000000009],[-125.95111099999997,50.433876000000055],[-125.93943799999988,50.443047000000035],[-125.90583799999996,50.45638300000013],[-125.81416299999995,50.46804800000001],[-125.80777,50.467765999999983],[-125.80359599999997,50.465546000000131],[-125.79055799999998,50.456940000000031],[-125.74109599999997,50.431664000000012],[-125.73805199999998,50.428047000000049],[-125.73805199999998,50.426658999999972],[-125.74276700000001,50.424164000000133],[-125.75834700000001,50.419990999999982],[-125.79110700000001,50.414992999999981],[-125.80721999999997,50.413605000000075]],[[-126.22582999999997,50.555267000000129],[-126.30888399999998,50.528327999999988],[-126.33640299999996,50.521659999999997],[-126.35056299999997,50.52027099999998],[-126.486107,50.515549000000078],[-126.58805799999999,50.521378000000084],[-126.60417199999995,50.52526899999998],[-126.62389400000001,50.533881999999949],[-126.60417199999995,50.539719000000105],[-126.57444800000002,50.546387000000095],[-126.55695300000002,50.548607000000118],[-126.54194599999994,50.549438000000123],[-126.52667200000002,50.548882000000106],[-126.48860200000001,50.553321999999923],[-126.38110399999999,50.574715000000026],[-126.28611799999999,50.598327999999981],[-126.28278399999999,50.597488000000112],[-126.22609699999998,50.564156000000025],[-126.22305299999999,50.560546999999985],[-126.224716,50.556655999999919],[-126.22582999999997,50.555267000000129]],[[-126.46639999999996,50.575829000000056],[-126.47501399999993,50.575554000000011],[-126.47917199999995,50.576385000000016],[-126.53555299999999,50.590546000000018],[-126.54915599999998,50.596382000000062],[-126.55222300000003,50.598602000000085],[-126.554169,50.602776000000119],[-126.55248999999998,50.607498000000021],[-126.55027799999999,50.608604000000071],[-126.54360999999994,50.611382000000049],[-126.52916699999997,50.614998000000128],[-126.45361299999996,50.626937999999996],[-126.40499899999992,50.626099000000067],[-126.385559,50.625549000000035],[-126.37721299999993,50.623877999999934],[-126.364441,50.619438000000116],[-126.36138900000003,50.615829000000133],[-126.36165599999998,50.613052000000039],[-126.36971999999992,50.605826999999977],[-126.38027999999997,50.598602000000085],[-126.38474300000001,50.596100000000035],[-126.39138799999995,50.59276600000004],[-126.39806399999998,50.591103000000089],[-126.46639999999996,50.575829000000056]],[[-59.345832999999971,50.533881999999949],[-59.353888999999924,50.533881999999949],[-59.358337000000006,50.537773000000016],[-59.384170999999924,50.633049000000085],[-59.384170999999924,50.638328999999999],[-59.382773999999984,50.64388300000013],[-59.378051999999911,50.649161999999933],[-59.371940999999993,50.652771000000143],[-59.364448999999979,50.653876999999966],[-59.355003000000011,50.652214000000072],[-59.337775999999906,50.640831000000048],[-59.333610999999905,50.636108000000036],[-59.321670999999981,50.618881000000044],[-59.305556999999965,50.59165999999999],[-59.300277999999992,50.581940000000088],[-59.298339999999939,50.57249500000006],[-59.298339999999939,50.561935000000119],[-59.308891000000017,50.553047000000106],[-59.320557000000008,50.545830000000024],[-59.333060999999873,50.539436000000137],[-59.345832999999971,50.533881999999949]],[[-126.87332200000003,50.663322000000051],[-126.83416699999998,50.634163000000058],[-126.83112299999999,50.629158000000018],[-126.83583099999998,50.625267000000122],[-126.90249599999993,50.613883999999928],[-126.91251399999999,50.61360900000011],[-127.01666299999999,50.638328999999999],[-127.025284,50.639992000000063],[-127.04276999999996,50.637497000000053],[-127.05832700000002,50.632492000000013],[-127.10193600000002,50.627486999999974],[-127.12249800000001,50.62721300000004],[-127.13221699999991,50.628326000000129],[-127.14055599999995,50.62971500000009],[-127.14472999999998,50.633881000000031],[-127.14334100000002,50.63888500000013],[-127.13166799999999,50.652214000000072],[-127.12721299999998,50.656096999999988],[-127.10916099999997,50.665267999999969],[-127.093887,50.669159000000036],[-127.08640300000002,50.669716000000108],[-126.89028899999994,50.667213000000118],[-126.87970699999994,50.666100000000029],[-126.87332200000003,50.663322000000051]],[[-126.64388999999994,50.691933000000006],[-126.65249599999999,50.691376000000105],[-126.65888999999993,50.694435000000055],[-126.662781,50.69860099999994],[-126.66583300000002,50.703323000000012],[-126.69027699999998,50.75499700000006],[-126.68554699999993,50.758888000000127],[-126.66832699999998,50.759163000000115],[-126.60221899999999,50.770828000000051],[-126.58277900000002,50.769714000000022],[-126.54387700000001,50.765831000000105],[-126.53639199999992,50.763611000000083],[-126.53582799999998,50.758606000000043],[-126.63806199999993,50.694992000000127],[-126.64388999999994,50.691933000000006]],[[-55.564720000000023,50.699714999999912],[-55.580001999999922,50.698326000000122],[-55.588889999999992,50.699431999999945],[-55.64527899999996,50.71888000000007],[-55.65166499999998,50.72304500000007],[-55.653052999999886,50.727211000000011],[-55.629439999999931,50.780823000000112],[-55.62471800000003,50.787216000000058],[-55.619163999999955,50.791381999999999],[-55.462775999999963,50.805824000000143],[-55.454444999999964,50.802489999999977],[-55.450554000000011,50.798332000000016],[-55.449722000000008,50.792770000000075],[-55.454720000000009,50.788048000000003],[-55.46694199999996,50.784163999999976],[-55.512504999999976,50.722763000000043],[-55.525001999999972,50.715827999999988],[-55.551392000000021,50.703323000000012],[-55.557502999999997,50.701385000000073],[-55.564720000000023,50.699714999999912]],[[-126.27306399999998,50.652771000000143],[-126.46333300000003,50.641662999999937],[-126.56806899999998,50.648331000000098],[-126.58416699999992,50.650269000000037],[-126.59889199999998,50.654159999999933],[-126.60637699999995,50.657211000000132],[-126.612503,50.659988000000055],[-126.61749299999997,50.664993000000095],[-126.61749299999997,50.667770000000019],[-126.54583700000001,50.726096999999982],[-126.43720999999999,50.783882000000119],[-126.38971699999996,50.806381000000044],[-126.38221699999997,50.808043999999995],[-126.28056299999997,50.828331000000048],[-126.26640299999997,50.827773999999977],[-126.25805699999995,50.824715000000026],[-126.2538909999999,50.821938000000102],[-126.25171699999987,50.818932000000075],[-126.23832699999997,50.811104000000057],[-126.22944599999994,50.803322000000094],[-126.17832900000002,50.750832000000059],[-126.17722299999997,50.748604000000114],[-126.17666600000001,50.743881000000101],[-126.25305200000003,50.699646000000087],[-126.25611900000001,50.661377000000073],[-126.26083399999999,50.657211000000132],[-126.26640299999997,50.654709000000082],[-126.27306399999998,50.652771000000143]],[[-126.73137700000001,50.771934999999985],[-126.79778299999992,50.768883000000017],[-126.807503,50.769989000000066],[-126.85333300000002,50.782767999999919],[-126.86472299999997,50.78943600000008],[-126.90583799999996,50.822769000000108],[-126.90139799999992,50.825272000000098],[-126.88806199999999,50.829162999999994],[-126.88137799999993,50.830276000000026],[-126.64862099999999,50.847214000000122],[-126.64334100000002,50.846939000000134],[-126.63583399999999,50.845268000000033],[-126.62943999999993,50.842490999999995],[-126.58860800000002,50.821381000000031],[-126.56806899999998,50.807770000000062],[-126.56304899999992,50.799995000000138],[-126.56861900000001,50.797493000000088],[-126.73137700000001,50.771934999999985]],[[-127.22693599999991,50.636108000000036],[-126.975281,50.576942000000088],[-126.85472099999993,50.554436000000123],[-126.77639799999997,50.546104000000128],[-126.76806599999998,50.544441000000006],[-126.72138999999999,50.531936999999971],[-126.70527600000003,50.527489000000003],[-126.63999899999999,50.507773999999984],[-126.62332199999992,50.498329000000126],[-126.56388899999996,50.483604000000014],[-126.49388099999993,50.481934000000024],[-126.39472999999998,50.481658999999979],[-126.38694800000002,50.482765000000029],[-126.35582699999998,50.48333000000008],[-126.327789,50.480820000000051],[-126.22112299999998,50.468596999999988],[-126.20500199999992,50.466660000000104],[-126.15471600000001,50.459435000000042],[-126.06916799999999,50.438599000000067],[-126.04611199999994,50.432495000000017],[-126.031387,50.427773000000116],[-126.01889,50.42193600000013],[-125.97609699999992,50.394996999999989],[-125.96250900000001,50.388885000000016],[-125.94776899999994,50.38499500000006],[-125.92859599999997,50.382209999999986],[-125.81696299999999,50.378044000000102],[-125.58000199999987,50.365828999999962],[-125.56416300000001,50.363883999999985],[-125.54860699999989,50.359161000000029],[-125.46305799999993,50.329719999999952],[-125.44972200000001,50.323607999999979],[-125.44055200000003,50.318329000000006],[-125.43554699999999,50.314712999999983],[-125.43167099999999,50.310547000000042],[-125.42887899999994,50.305549999999982],[-125.42722300000003,50.299995000000081],[-125.42666599999995,50.293883999999991],[-125.42722300000003,50.287498000000085],[-125.41500899999994,50.261665000000107],[-125.39362299999999,50.215546000000018],[-125.37777699999998,50.17971799999998],[-125.36277799999993,50.138046000000088],[-125.33084099999996,50.113884000000041],[-125.28694199999995,50.08138300000013],[-125.229446,50.026657],[-125.22165699999999,50.018051000000071],[-125.21611000000001,50.001389000000074],[-125.21417199999996,49.976379000000065],[-125.212784,49.970825000000048],[-125.20722999999998,49.961662000000047],[-125.16860999999994,49.912766000000033],[-125.11221299999994,49.868324000000086],[-124.99305699999991,49.788330000000087],[-124.89806399999998,49.731658999999979],[-124.89138799999989,49.664711000000068],[-124.91639700000002,49.631660000000124],[-124.86028299999992,49.541663999999969],[-124.85305800000003,49.532494000000099],[-124.83306900000002,49.510826000000122],[-124.78943599999991,49.464157],[-124.579453,49.38749700000011],[-124.55110200000001,49.378044000000102],[-124.53555299999999,49.373878000000047],[-124.51917300000002,49.370270000000119],[-124.26083399999993,49.315269000000001],[-124.12193299999996,49.270271000000093],[-123.94304699999992,49.211104999999918],[-123.85637699999995,49.149162000000047],[-123.86028299999992,49.153046000000074],[-123.86638599999998,49.160820000000115],[-123.86805700000002,49.164436000000137],[-123.87110899999988,49.173607000000118],[-123.87138399999998,49.181106999999997],[-123.86638599999998,49.186378000000047],[-123.86165599999993,49.188880999999981],[-123.84999099999999,49.191658000000075],[-123.82444800000002,49.192764000000125],[-123.82055699999995,49.190544000000102],[-123.80722000000003,49.180275000000051],[-123.79444899999993,49.173325000000034],[-123.78859699999998,49.170273000000122],[-123.76944700000001,49.16304800000006],[-123.73805199999993,49.154433999999981],[-123.71112099999999,49.149993999999992],[-123.70417800000001,49.147491000000002],[-123.699432,49.143883000000073],[-123.696663,49.14027400000009],[-123.69638099999997,49.135551000000078],[-123.69915799999995,49.130272000000105],[-123.70388800000001,49.126381000000038],[-123.73137700000001,49.117493000000081],[-123.74166899999989,49.118049999999982],[-123.83750899999995,49.14138000000014],[-123.85056299999997,49.145546000000024],[-123.81027199999994,49.115829000000076],[-123.75195300000001,49.040833000000021],[-123.74944299999999,49.03527100000008],[-123.75028999999989,49.02915999999999],[-123.75695799999994,48.986938000000123],[-123.75862099999989,48.980819999999994],[-123.76334399999996,48.976936000000137],[-123.69193999999993,48.908325000000104],[-123.68222000000003,48.902214000000072],[-123.5911099999999,48.839989000000116],[-123.58277900000002,48.831940000000088],[-123.56555199999997,48.789719000000105],[-123.56304899999998,48.778327999999988],[-123.56471299999993,48.749718000000087],[-123.50945300000001,48.587493999999992],[-123.47666899999996,48.631660000000124],[-123.47083999999995,48.673324999999977],[-123.46916199999993,48.67943600000001],[-123.46444700000001,48.683327000000077],[-123.45973200000003,48.685822000000144],[-123.45140100000003,48.686652999999978],[-123.44193999999999,48.686652999999978],[-123.41639699999996,48.684433000000126],[-123.40110800000002,48.681381000000044],[-123.39639299999999,48.677773000000116],[-123.34973099999996,48.547775000000058],[-123.34834299999994,48.535828000000095],[-123.29527300000001,48.484718000000044],[-123.29167200000001,48.480820000000108],[-123.27861000000001,48.456100000000049],[-123.27610800000002,48.451103000000103],[-123.27694700000001,48.445540999999992],[-123.28694200000001,48.418602000000021],[-123.28971899999999,48.413321999999937],[-123.29444899999993,48.409714000000065],[-123.30082699999997,48.406654000000003],[-123.32055699999989,48.399437000000034],[-123.33640299999996,48.396942000000024],[-123.36028299999987,48.397217000000069],[-123.41665599999999,48.423882000000106],[-123.42138699999992,48.427490000000034],[-123.425003,48.431938000000002],[-123.45973200000003,48.411934000000031],[-123.51334400000002,48.374709999999993],[-123.53694200000001,48.338326000000109],[-123.54250300000001,48.312492000000077],[-123.54611199999999,48.307770000000005],[-123.55166600000001,48.304710000000114],[-123.55915800000002,48.303047000000049],[-123.58332799999994,48.301102000000014],[-123.598343,48.311661000000072],[-123.71444699999995,48.348045000000127],[-123.76251199999996,48.361664000000019],[-123.77166699999998,48.361664000000019],[-123.77999899999998,48.360550000000046],[-123.79499799999996,48.357498000000135],[-123.80888400000003,48.353324999999984],[-123.817497,48.352493000000095],[-123.823624,48.352776000000063],[-123.91610699999995,48.364159000000029],[-123.92415599999998,48.366104000000064],[-123.97609699999998,48.381934999999999],[-124.26363399999997,48.468880000000013],[-124.423607,48.516937000000041],[-124.609444,48.560547000000042],[-124.6885989999999,48.578330999999991],[-124.72083999999995,48.586655000000007],[-124.75917099999998,48.6055530000001],[-124.77111799999994,48.611663999999962],[-124.79499800000002,48.629989999999964],[-124.81777999999997,48.648880000000133],[-124.82277699999997,48.652489000000116],[-124.9225009999999,48.679993000000138],[-125.02887699999997,48.708885000000009],[-125.0625,48.714996000000099],[-125.09500100000002,48.721930999999984],[-125.10221899999993,48.724433999999917],[-125.11389199999996,48.731102000000078],[-125.18443299999996,48.796104000000128],[-125.18499800000001,48.800827000000083],[-125.01722699999999,48.920547000000113],[-124.90862300000003,48.969154000000003],[-124.90306099999998,48.97137500000008],[-124.84750399999996,49.011664999999994],[-124.84277299999985,49.015549000000021],[-124.83556399999998,49.02416199999999],[-124.78083800000002,49.131377999999984],[-124.77944899999994,49.144439999999975],[-124.78083800000002,49.150542999999914],[-124.79695099999998,49.215828000000101],[-124.79972799999996,49.22693600000008],[-124.80499299999997,49.236938000000066],[-124.80776999999995,49.240547000000049],[-124.81555199999997,49.238045],[-124.818893,49.234718000000044],[-124.82444800000002,49.224158999999986],[-124.82501199999996,49.217209000000139],[-124.82333399999993,49.205551000000128],[-124.81723,49.18332700000002],[-124.81610099999995,49.164711000000011],[-124.81806899999998,49.146103000000096],[-124.82611099999997,49.122489999999971],[-124.83139,49.112495000000081],[-124.87832599999996,49.025268999999923],[-124.88194299999998,49.020546000000138],[-124.89472999999998,49.008888000000127],[-124.90055799999993,49.00499700000006],[-124.906113,49.001938000000052],[-124.93694299999999,48.988045000000056],[-124.94999699999994,48.983330000000024],[-124.96278399999994,48.981102000000021],[-125.06916799999999,48.984436000000017],[-125.126938,48.991104000000007],[-125.19888300000002,48.96276899999998],[-125.21000699999996,48.955826000000002],[-125.21665999999988,48.953323000000012],[-125.22416699999991,48.951660000000118],[-125.23137699999995,48.951103000000046],[-125.24194299999988,48.951660000000118],[-125.318893,48.96443899999997],[-125.32721699999996,48.966102999999976],[-125.45722999999992,48.918052999999986],[-125.46472199999988,48.916382000000112],[-125.48361199999999,48.915825000000041],[-125.502228,48.917770000000019],[-125.50723299999999,48.920273000000009],[-125.75110599999994,49.055267000000072],[-125.76806599999998,49.098602000000028],[-125.73805199999998,49.105552999999986],[-125.69304699999992,49.12860100000006],[-125.64167800000001,49.16304800000006],[-125.63722200000001,49.166939000000127],[-125.60888699999998,49.198043999999982],[-125.60582699999992,49.210274000000084],[-125.60749800000002,49.215828000000101],[-125.611107,49.220267999999919],[-125.61638599999998,49.219711000000018],[-125.66443599999991,49.189987000000031],[-125.72083999999995,49.157767999999976],[-125.74694799999997,49.148604999999975],[-125.75334199999998,49.147491000000002],[-125.75611899999996,49.151657000000114],[-125.779449,49.241661000000022],[-125.79666099999992,49.310272000000055],[-125.86609599999991,49.274436999999978],[-125.952789,49.230270000000075],[-125.96501199999989,49.22526599999992],[-125.97028399999999,49.224709000000018],[-125.97444199999995,49.224991000000102],[-125.98137700000001,49.227211000000125],[-125.98750299999989,49.230270000000075],[-126.020554,49.263054000000125],[-126.02333099999993,49.268051000000071],[-126.02223200000003,49.280823000000055],[-126.01862299999993,49.285553000000107],[-126.01306199999999,49.288887000000102],[-126.00666799999993,49.290549999999996],[-125.98029300000002,49.292496000000085],[-125.97361799999999,49.294997999999964],[-125.96916199999998,49.297493000000031],[-125.950287,49.311935000000005],[-125.94554099999999,49.316666000000112],[-125.89750699999996,49.41027100000008],[-125.89584399999995,49.416381999999999],[-125.89695699999993,49.428047000000049],[-125.89972699999998,49.433601000000067],[-125.90471599999995,49.435822000000144],[-125.90915699999988,49.431938000000116],[-125.94722000000002,49.395546000000138],[-125.96250900000001,49.377487000000031],[-125.96501199999989,49.373604000000114],[-125.96528599999999,49.367493000000024],[-125.962219,49.3555530000001],[-125.962784,49.350273000000072],[-125.96610999999996,49.345543000000021],[-125.99527,49.324440000000095],[-126.00195300000001,49.321938000000046],[-126.00945299999989,49.321663000000001],[-126.03916900000002,49.330275999999969],[-126.04638699999987,49.333328000000108],[-126.06111099999998,49.344154000000003],[-126.06500199999999,49.348328000000038],[-126.07556199999999,49.386383000000137],[-126.07389799999999,49.392494000000056],[-126.120003,49.423049999999989],[-126.22556299999991,49.41027100000008],[-126.26390099999998,49.389435000000049],[-126.36527999999998,49.401657000000057],[-126.45916699999998,49.401932000000045],[-126.46167000000003,49.382767000000115],[-126.46611000000001,49.380272000000048],[-126.52667200000002,49.371933000000013],[-126.54222099999993,49.374435000000119],[-126.54723399999995,49.378044000000102],[-126.57778899999988,49.407767999999919],[-126.579453,49.413322000000107],[-126.57917799999996,49.419440999999949],[-126.56973299999999,49.576385000000073],[-126.56610099999995,49.584434999999985],[-126.47028399999999,49.635551000000021],[-126.46167000000003,49.636658000000125],[-126.40416699999997,49.637772000000098],[-126.38417099999992,49.63638300000008],[-126.36749299999997,49.633049000000085],[-126.36028299999998,49.630820999999969],[-126.34137699999997,49.628875999999991],[-126.28472899999997,49.634438000000102],[-126.22389199999998,49.640549000000021],[-126.13417099999998,49.649994000000049],[-126.09445199999988,49.655548000000067],[-126.08693699999998,49.657211000000018],[-126.08750899999995,49.662209000000018],[-126.09028599999999,49.666382000000112],[-126.09416199999993,49.671104000000014],[-126.10305799999998,49.679161000000022],[-126.11028299999992,49.681380999999988],[-126.11972000000003,49.681107000000054],[-126.20944199999991,49.673881999999992],[-126.23444399999994,49.669159000000036],[-126.24638400000003,49.664711000000068],[-126.283073,49.654990999999995],[-126.29833999999994,49.652214000000072],[-126.34084300000001,49.648605000000089],[-126.43110699999994,49.662491000000045],[-126.43831599999993,49.664153999999996],[-126.58500699999996,49.701103000000046],[-126.59028599999994,49.704437000000041],[-126.63027999999997,49.794998000000078],[-126.67971799999998,49.878876000000105],[-126.80444299999988,49.909156999999993],[-126.83917200000002,49.884720000000129],[-126.84555099999989,49.8822100000001],[-126.85221899999993,49.87971500000009],[-126.87609899999995,49.873322000000087],[-126.93943799999994,49.862770000000125],[-126.99416399999996,49.855270000000019],[-127.12111699999997,49.85228699999999],[-127.13249200000001,49.85694100000012],[-127.17749000000003,49.88888500000013],[-127.18554699999999,49.897491000000059],[-127.22444199999995,49.940269000000114],[-127.24137899999999,49.961937000000034],[-127.23889199999996,49.967208999999968],[-127.234444,49.97137500000008],[-127.17999299999991,50.021378000000027],[-127.18277,50.03166200000004],[-127.18360899999999,50.051102000000014],[-127.17666599999995,50.061104],[-127.172234,50.064995000000067],[-127.13027999999997,50.084717000000126],[-127.15833999999995,50.096382000000006],[-127.27055399999995,50.0991590000001],[-127.27500899999995,50.059990000000028],[-127.27749599999993,50.055267000000015],[-127.28388999999999,50.052216000000044],[-127.33000199999998,50.033882000000062],[-127.34500100000002,50.030273000000079],[-127.38054699999998,50.026100000000099],[-127.38999899999993,50.028603000000089],[-127.42331699999994,50.042221000000097],[-127.45195000000001,50.069716999999969],[-127.46916199999993,50.088042999999971],[-127.47193900000002,50.092765999999983],[-127.54804999999993,50.130272000000105],[-127.63276699999994,50.129990000000021],[-127.78028899999993,50.084160000000054],[-127.781387,50.084160000000054],[-127.78362299999998,50.084160000000054],[-127.890556,50.106941000000063],[-127.89584400000001,50.108886999999925],[-127.90083299999998,50.112495000000024],[-127.90695199999999,50.12082700000002],[-127.90666199999998,50.127769000000114],[-127.90334300000001,50.132492000000127],[-127.89222699999988,50.139160000000061],[-127.87917299999998,50.144440000000145],[-127.86805700000002,50.151099999999985],[-127.83721899999995,50.172493000000088],[-127.82833900000003,50.180550000000096],[-127.78888699999999,50.222214000000008],[-127.79915599999993,50.317772000000105],[-127.80444299999994,50.321380999999917],[-127.86389200000002,50.336937000000091],[-127.87138399999998,50.33776899999998],[-127.88110399999999,50.337212000000079],[-127.895554,50.326385000000073],[-127.90778399999999,50.319717000000082],[-127.92166099999997,50.316666000000055],[-127.93138099999993,50.31610100000006],[-127.94833399999993,50.321937999999989],[-127.95249899999993,50.324715000000083],[-127.97860700000001,50.342491000000052],[-127.97944599999994,50.347214000000065],[-127.92610199999996,50.459991000000059],[-127.92388900000003,50.462769000000037],[-127.91722099999993,50.464156999999943],[-127.75666799999993,50.486381999999992],[-127.708054,50.491661000000136],[-127.70028699999995,50.492218000000037],[-127.58416699999998,50.486938000000009],[-127.576683,50.484717999999987],[-127.57140400000003,50.481934000000024],[-127.56331599999999,50.4741590000001],[-127.53278399999999,50.439986999999974],[-127.50750700000003,50.409157000000107],[-127.49527,50.395827999999995],[-127.47444200000001,50.381660000000124],[-127.46193699999998,50.37582400000008],[-127.454453,50.373604000000057],[-127.44695300000001,50.372765000000129],[-127.446663,50.379714999999976],[-127.45249899999988,50.388885000000016],[-127.48665599999993,50.437492000000134],[-127.50583599999999,50.458602999999982],[-127.52027899999996,50.469711000000132],[-127.53083800000002,50.476936000000023],[-127.54750100000001,50.486938000000009],[-127.56388899999996,50.502220000000023],[-127.57000699999998,50.512214999999912],[-127.56749699999995,50.516105999999979],[-127.55027799999999,50.538329999999917],[-127.54472399999997,50.541664000000083],[-127.50361599999997,50.562210000000107],[-127.49694799999992,50.565269000000058],[-127.49027999999993,50.568054000000132],[-127.47501399999999,50.571663000000115],[-127.44360399999999,50.571663000000115],[-127.41972399999992,50.573883000000137],[-127.41416900000002,50.575829000000056],[-127.41166699999997,50.581383000000017],[-127.41139199999992,50.587494000000106],[-127.41944899999999,50.596657000000107],[-127.58168000000001,50.593880000000013],[-127.69138299999997,50.606659000000093],[-127.87332200000003,50.623877999999934],[-127.87666299999995,50.621658000000139],[-127.87361099999993,50.616936000000067],[-127.854446,50.608330000000137],[-127.80055199999998,50.587494000000106],[-127.78666699999997,50.582214000000022],[-127.76834099999996,50.579994000000056],[-127.75110599999999,50.581108000000029],[-127.72501399999993,50.584434999999928],[-127.708618,50.584991000000116],[-127.66251399999999,50.581383000000017],[-127.63445300000001,50.578049000000021],[-127.61028299999998,50.565825999999959],[-127.595551,50.55582400000003],[-127.59166699999997,50.551659000000029],[-127.58972199999999,50.546104000000128],[-127.595551,50.536659000000043],[-127.60109699999998,50.533333000000027],[-127.60888699999987,50.53138000000007],[-128.05142199999995,50.446693000000039],[-128.13363599999997,50.474709000000132],[-128.224152,50.531105000000082],[-128.319458,50.608604000000071],[-128.37527499999993,50.678604000000064],[-128.40695199999999,50.738883999999985],[-128.41473399999995,50.762771999999984],[-128.41665599999999,50.76915699999995],[-128.41305499999993,50.773880000000133],[-128.40863000000002,50.77777100000003],[-128.35583499999996,50.799721000000034],[-128.349152,50.801658999999972],[-128.10693400000002,50.860550000000103],[-128.05306999999999,50.87193300000007],[-127.91832699999998,50.872214999999983],[-127.90972899999991,50.871375999999998],[-127.882767,50.865546999999992],[-127.83332799999999,50.854163999999969],[-127.67749000000003,50.817497000000003],[-127.51471700000002,50.774437000000034],[-127.50723299999993,50.772217000000012],[-127.49582699999996,50.765831000000105],[-127.48750299999995,50.757217000000082],[-127.45916699999992,50.718322999999998],[-127.354446,50.676102000000014],[-127.22693599999991,50.636108000000036]],[[-127.65471599999995,50.837769000000094],[-127.66139199999998,50.834991000000059],[-127.67027300000001,50.835266000000104],[-127.75306699999999,50.852776000000063],[-127.83332799999999,50.879715000000033],[-127.83860799999997,50.881660000000068],[-127.83306899999997,50.884995000000117],[-127.73500100000001,50.909987999999998],[-127.72638699999993,50.908600000000092],[-127.71665999999999,50.90554800000001],[-127.71028099999995,50.901932000000102],[-127.69138299999997,50.887214999999969],[-127.67083699999995,50.86693600000001],[-127.65833999999995,50.854163999999969],[-127.65527299999997,50.849433999999974],[-127.65334299999995,50.843880000000127],[-127.65471599999995,50.837769000000094]],[[-55.555557000000022,50.886383000000023],[-55.563888999999961,50.884995000000117],[-55.571670999999924,50.885826000000122],[-55.581116000000009,50.888046000000145],[-55.604720999999984,50.898048000000074],[-55.615554999999972,50.906097000000102],[-55.619720000000029,50.910271000000137],[-55.636115999999959,50.950829000000056],[-55.635276999999917,50.961380000000133],[-55.629439999999931,50.965546000000018],[-55.565552000000025,50.983046999999999],[-55.558334000000002,50.984436000000017],[-55.550551999999925,50.985268000000076],[-55.54222900000002,50.984993000000088],[-55.535277999999948,50.981377000000009],[-55.531386999999995,50.977211000000125],[-55.529723999999987,50.968323000000112],[-55.549995000000024,50.890830999999991],[-55.555557000000022,50.886383000000023]],[[-55.993889000000024,51.200272000000098],[-55.999999999999943,51.196655000000135],[-56.00111400000003,51.201660000000004],[-55.998055000000022,51.207496999999989],[-55.992774999999995,51.212769000000094],[-55.981383999999935,51.22165700000005],[-55.975554999999986,51.225822000000051],[-55.967772999999966,51.226653999999996],[-55.968329999999867,51.221375000000023],[-55.970550999999944,51.218323000000055],[-55.982498000000021,51.208885000000066],[-55.993889000000024,51.200272000000098]],[[-58.413329999999917,51.238884000000098],[-58.462219000000005,51.216103000000089],[-58.563613999999973,51.228325000000041],[-58.565001999999993,51.23333000000008],[-58.561942999999928,51.239159000000086],[-58.555831999999953,51.242767000000015],[-58.513335999999924,51.264999000000103],[-58.506392999999946,51.268326000000059],[-58.419448999999986,51.274712000000136],[-58.412773000000016,51.267212000000029],[-58.409163999999919,51.256943000000035],[-58.413329999999917,51.238884000000098]],[[-53.756366999999955,48.50326200000012],[-53.997498000000007,48.425552000000039],[-54.011116000000015,48.421660999999972],[-54.025001999999915,48.418602000000021],[-54.048889000000031,48.420546999999999],[-54.057220000000029,48.421936000000017],[-54.072776999999917,48.428604000000007],[-54.081115999999952,48.429992999999968],[-54.094443999999953,48.425827000000083],[-54.100554999999929,48.422493000000088],[-54.147223999999994,48.391380000000083],[-54.138054000000011,48.359161000000029],[-54.134726999999998,48.354438999999957],[-54.12749500000001,48.353324999999984],[-54.118606999999997,48.364998000000014],[-54.088607999999965,48.395545999999968],[-54.075561999999934,48.401932000000102],[-54.069449999999961,48.40387700000008],[-54.054442999999935,48.404160000000047],[-54.045554999999979,48.401932000000102],[-54.029167000000029,48.399437000000034],[-54.021111000000019,48.399162000000047],[-53.998885999999914,48.400826000000052],[-53.99222599999996,48.402489000000003],[-53.97972099999987,48.408042999999964],[-53.913054999999929,48.444153000000085],[-53.756366999999955,48.50326200000012],[-53.674445999999932,48.534164000000089],[-53.647223999999994,48.541107000000068],[-53.631942999999978,48.541382000000056],[-53.623054999999965,48.53916200000009],[-53.586387999999999,48.525269000000037],[-53.574722000000008,48.507216999999969],[-53.558051999999975,48.474709000000018],[-53.588051000000007,48.428047000000106],[-53.562217999999973,48.439155999999969],[-53.533889999999985,48.451935000000049],[-53.48860899999994,48.507216999999969],[-53.461945000000014,48.555266999999958],[-53.46527900000001,48.568603999999993],[-53.465835999999967,48.57416500000005],[-53.465003999999965,48.579436999999984],[-53.437217999999973,48.619987000000094],[-53.424445999999989,48.625549000000035],[-53.345832999999914,48.615828999999962],[-53.33805099999995,48.612494999999967],[-53.313056999999958,48.595267999999976],[-53.305832000000009,48.586655000000007],[-53.303329000000019,48.581940000000145],[-53.226386999999932,48.555549999999926],[-53.216392999999925,48.566939999999988],[-53.153884999999946,48.628601000000003],[-53.079726999999991,48.6988750000001],[-53.072776999999917,48.700272000000041],[-53.067779999999914,48.696380999999974],[-53.02305599999994,48.660820000000001],[-53.018889999999942,48.656380000000013],[-52.978049999999996,48.604439000000127],[-52.976386999999988,48.599159000000043],[-52.976944000000003,48.59388000000007],[-52.987220999999977,48.548050000000046],[-53.053885999999977,48.442764000000068],[-53.075561999999991,48.422493000000088],[-53.097495999999978,48.405266000000097],[-53.1875,48.350829999999974],[-53.194159999999954,48.348602000000028],[-53.201941999999974,48.347488000000055],[-53.209723999999937,48.347771000000023],[-53.218055999999933,48.3491590000001],[-53.24888599999997,48.362770000000069],[-53.261391000000003,48.37082700000002],[-53.266395999999986,48.37499200000002],[-53.345001000000025,48.360275000000058],[-53.388892999999882,48.303879000000109],[-53.615279999999984,48.178046999999935],[-53.621383999999921,48.174712999999997],[-53.634170999999924,48.169991000000095],[-53.662216000000001,48.163321999999994],[-53.668609999999944,48.162490999999989],[-53.676948999999979,48.163879000000065],[-53.694716999999912,48.169158999999979],[-53.71055599999994,48.17582700000014],[-53.892501999999979,48.226936000000137],[-53.901389999999935,48.229156000000103],[-53.934165999999948,48.233330000000137],[-53.940551999999968,48.230819999999937],[-53.945273999999984,48.178879000000052],[-53.944159999999897,48.163879000000065],[-53.917777999999998,48.088043000000027],[-53.912498000000028,48.084160000000054],[-53.904167000000029,48.081940000000088],[-53.823616000000015,48.074439999999981],[-53.793335000000013,48.073608000000092],[-53.77027899999996,48.073326000000009],[-53.733611999999994,48.076103000000103],[-53.718604999999968,48.078049000000021],[-53.696944999999971,48.079162999999994],[-53.689163000000008,48.078880000000026],[-53.692885999999874,48.067993000000001],[-53.688389000000029,48.065989999999999],[-53.685219000000018,48.063660000000141],[-53.683887000000027,48.060822000000144],[-53.684222999999918,48.057822999999985],[-53.687888999999927,48.054825000000108],[-53.691055000000006,48.052658000000065],[-53.698883000000023,48.049328000000003],[-53.736945999999989,48.032767999999976],[-53.763335999999981,48.026382000000012],[-53.799445999999989,48.02165999999994],[-53.836661999999933,48.022217000000012],[-53.852225999999973,48.023048000000074],[-53.876389000000017,48.025826000000052],[-53.893889999999942,48.029991000000052],[-53.90166499999998,48.033607000000075],[-53.909438999999963,48.033882000000119],[-53.916663999999912,48.033332999999971],[-53.923614999999984,48.031662000000097],[-53.924170999999944,48.026657000000057],[-53.919167000000016,48.022490999999945],[-53.911384999999939,48.019157000000007],[-53.893058999999937,48.014442000000145],[-53.794448999999986,47.996384000000091],[-53.779166999999973,47.996658000000025],[-53.695388999999921,48.018218999999988],[-53.69138700000002,48.019215000000145],[-53.668723999999997,48.029880999999989],[-53.650218999999993,48.037884000000133],[-53.607779999999991,48.051102000000071],[-53.605835000000013,48.046387000000038],[-53.619164000000012,47.998878000000047],[-53.622498000000007,47.993050000000096],[-53.723610000000008,47.843880000000013],[-53.737777999999992,47.826660000000061],[-53.787506000000008,47.773048000000074],[-53.793335000000013,47.768599999999935],[-53.801391999999964,47.769989000000123],[-53.807502999999997,47.773604999999975],[-53.825561999999991,47.794998000000078],[-53.852500999999961,47.785271000000137],[-53.850554999999986,47.760551000000135],[-53.837501999999915,47.699432000000058],[-53.760283999999956,47.609993000000145],[-53.631110999999976,47.54332700000009],[-53.550551999999982,47.529159999999933],[-53.545279999999991,47.534439000000134],[-53.542502999999954,47.550270000000069],[-53.541114999999991,47.585266000000047],[-53.497779999999977,47.734717999999987],[-53.495834000000002,47.740273000000059],[-53.461113000000012,47.806655999999975],[-53.434998000000007,47.83776899999998],[-53.30610699999994,47.984161000000029],[-53.290840000000003,47.999435000000119],[-53.274445000000014,48.013329000000056],[-53.170554999999979,48.05360399999995],[-53.110001000000011,48.03943600000008],[-53.101943999999946,48.038048000000003],[-53.095001000000025,48.03943600000008],[-53.053329000000019,48.049721000000034],[-53.041945999999996,48.055824000000143],[-52.996947999999975,48.086380000000077],[-52.974716000000001,48.116385999999977],[-52.959723999999994,48.143051000000014],[-52.956389999999999,48.148605000000032],[-52.926948999999979,48.169991000000095],[-52.919998000000021,48.171379000000002],[-52.902221999999995,48.16304800000006],[-52.886115999999959,48.151100000000042],[-52.881942999999922,48.147491000000059],[-52.83555599999994,48.106383999999991],[-52.831389999999942,48.101661999999919],[-52.832779000000016,48.096939000000134],[-52.838889999999935,48.093605000000139],[-52.871940999999993,48.082214000000022],[-52.880279999999914,48.083327999999995],[-52.898055999999997,48.090546000000018],[-52.904167000000029,48.089714000000072],[-52.911384999999996,48.088043000000027],[-52.917503000000011,48.084716999999955],[-52.928336999999999,48.075553999999954],[-53.058051999999975,47.922493000000031],[-53.05999799999995,47.916939000000013],[-53.059440999999993,47.886658000000125],[-53.075835999999981,47.850830000000087],[-53.158607000000018,47.683052000000089],[-53.178336999999999,47.651382000000012],[-53.183608999999933,47.646385000000123],[-53.201667999999984,47.636383000000137],[-53.221106999999961,47.628601000000003],[-53.240836999999942,47.622489999999914],[-53.259726999999998,47.615829000000019],[-53.265006999999969,47.611664000000019],[-53.267220000000009,47.606102000000078],[-53.261672999999973,47.546386999999982],[-53.175560000000019,47.431381000000101],[-53.128333999999995,47.411102000000142],[-53.121940999999993,47.413321999999994],[-53.111945999999989,47.423607000000118],[-53.083060999999987,47.458327999999995],[-53.065833999999938,47.469986000000063],[-53.013061999999934,47.501389000000074],[-52.995002999999997,47.51138300000008],[-52.951667999999927,47.530823000000055],[-52.919167000000016,47.541663999999969],[-52.907218999999998,47.54833200000013],[-52.896949999999947,47.55860100000001],[-52.849167000000023,47.621101000000124],[-52.842498999999918,47.632767000000115],[-52.840552999999943,47.638329000000056],[-52.837501999999915,47.65415999999999],[-52.838889999999935,47.663879000000009],[-52.841110000000015,47.668602000000021],[-52.841667000000029,47.673324999999977],[-52.840552999999943,47.683876000000055],[-52.798889000000031,47.784164000000033],[-52.791388999999981,47.795547000000056],[-52.78556100000003,47.79972100000009],[-52.779442000000017,47.803047000000106],[-52.770554000000004,47.79972100000009],[-52.704169999999976,47.753882999999973],[-52.700554000000011,47.749435000000005],[-52.657776000000013,47.657493999999986],[-52.614448999999979,47.516662999999937],[-52.620276999999987,47.500275000000101],[-52.625832000000003,47.489158999999972],[-52.653327999999988,47.437767000000008],[-52.718055999999933,47.364998000000014],[-52.787506000000008,47.308043999999938],[-52.818610999999976,47.224159000000043],[-52.849723999999981,47.1616590000001],[-52.845276000000013,47.142493999999942],[-52.843613000000005,47.063880999999981],[-52.844161999999983,47.058601000000067],[-52.852782999999988,47.022491000000002],[-52.884170999999981,46.9741590000001],[-52.909995999999978,46.911658999999986],[-52.92972599999996,46.851662000000033],[-52.932776999999987,46.825554000000068],[-52.934998000000007,46.804993000000024],[-52.938332000000003,46.78916200000009],[-53.090836000000024,46.643326000000002],[-53.102501000000018,46.636658000000011],[-53.161110000000008,46.619986999999981],[-53.169166999999959,46.619713000000047],[-53.192497000000003,46.62332200000003],[-53.207221999999888,46.630272000000105],[-53.213332999999977,46.633881000000088],[-53.315552000000025,46.694709999999986],[-53.354171999999949,46.736938000000009],[-53.361945999999932,46.737495000000081],[-53.384170999999981,46.721375000000023],[-53.410552999999936,46.700828999999999],[-53.426391999999964,46.687210000000107],[-53.451392999999996,46.66137700000013],[-53.463614999999947,46.654160000000047],[-53.521111000000019,46.62082700000002],[-53.532776000000013,46.614159000000029],[-53.561667999999941,46.612770000000069],[-53.569449999999961,46.614159000000029],[-53.577224999999999,46.617493000000024],[-53.607779999999991,46.636107999999979],[-53.613891999999964,46.640274000000034],[-53.617774999999995,46.644157000000007],[-53.635001999999929,46.680823999999973],[-53.643058999999994,46.704437000000098],[-53.64416499999993,46.709160000000111],[-53.648055999999997,46.796661000000029],[-53.647781000000009,46.801932999999963],[-53.645279000000016,46.81249200000002],[-53.639724999999999,46.829163000000051],[-53.636391000000003,46.834717000000069],[-53.594718999999998,46.9447100000001],[-53.64166999999992,46.983879000000002],[-53.633614000000023,47.001105999999993],[-53.577781999999956,47.085265999999933],[-53.55083499999995,47.106659000000036],[-53.539444000000003,47.114158999999972],[-53.591385000000002,47.156096999999988],[-53.646392999999989,47.105270000000075],[-53.703612999999962,47.053047000000106],[-53.823059000000001,46.956657000000064],[-53.894164999999987,46.899994000000106],[-53.945830999999941,46.858887000000038],[-54.053328999999962,46.794998000000135],[-54.097220999999934,46.799438000000123],[-54.17888599999992,46.81610100000006],[-54.187774999999988,46.819160000000011],[-54.18999500000001,46.823607999999979],[-54.190833999999995,46.828605999999979],[-54.196387999999956,46.862494999999967],[-54.196663000000001,46.883330999999998],[-54.193329000000006,46.893607999999972],[-54.160827999999981,46.981934000000024],[-54.131942999999978,47.012496999999996],[-54.11500499999994,47.039719000000105],[-54.092498999999975,47.079437000000098],[-54.066665999999998,47.131104000000107],[-53.993889000000024,47.265274000000034],[-53.964721999999995,47.299721000000034],[-53.928611999999987,47.302773000000116],[-53.921943999999996,47.304161000000022],[-53.879997000000003,47.348045000000127],[-53.875557000000015,47.354163999999969],[-53.867500000000007,47.402771000000087],[-53.879439999999931,47.43082400000003],[-53.900275999999963,47.486107000000061],[-53.891669999999976,47.524711999999965],[-53.885558999999944,47.576941999999974],[-53.894721999999945,47.6055530000001],[-53.896950000000004,47.609993000000145],[-53.983886999999925,47.75777400000004],[-54.003333999999995,47.778877000000136],[-54.033332999999914,47.796661000000029],[-54.195273999999984,47.857498000000021],[-54.194999999999993,47.843048000000124],[-54.197219999999902,47.832214000000079],[-54.212776000000019,47.777771000000087],[-54.219161999999926,47.766106000000036],[-54.223884999999939,47.759995000000117],[-54.259170999999981,47.715271000000143],[-54.337776000000019,47.621658000000025],[-54.435271999999998,47.505554000000075],[-54.468605000000025,47.441658000000075],[-54.477492999999981,47.404991000000052],[-54.472495999999978,47.401099999999985],[-54.477492999999981,47.395828000000051],[-54.482772999999952,47.391663000000051],[-54.511116000000015,47.372765000000015],[-54.517219999999952,47.369438000000059],[-54.601394999999968,47.345268000000033],[-54.611388999999974,47.353049999999996],[-54.613060000000019,47.35833000000008],[-54.61333499999995,47.362770000000069],[-54.606948999999986,47.374434999999949],[-54.601944000000003,47.379715000000033],[-54.596663999999862,47.383880999999917],[-54.559998000000007,47.413879000000065],[-54.529166999999973,47.442214999999976],[-54.489998000000014,47.486382000000049],[-54.417220999999984,47.583603000000096],[-54.410827999999867,47.594994000000042],[-54.413329999999917,47.599715999999944],[-54.418334999999956,47.603607000000011],[-54.430557000000022,47.597771000000137],[-54.440833999999938,47.586937000000091],[-54.508614000000023,47.513328999999999],[-54.53194400000001,47.479987999999992],[-54.539444000000003,47.468048000000124],[-54.563613999999973,47.439987000000031],[-54.578887999999893,47.423882000000106],[-54.604720999999984,47.401932000000102],[-54.621383999999978,47.389992000000007],[-54.700279000000023,47.357773000000009],[-54.719993999999929,47.352218999999991],[-54.727218999999991,47.351387000000045],[-54.818610999999862,47.363609000000054],[-54.819450000000018,47.368599000000074],[-54.803054999999972,47.380546999999979],[-54.793616999999983,47.391936999999984],[-54.786667000000023,47.413879000000065],[-54.787506000000008,47.418884000000105],[-54.796111999999994,47.420830000000024],[-54.856392000000028,47.390549000000078],[-54.980552999999929,47.285552999999936],[-55.039169000000015,47.225821999999994],[-55.043892000000028,47.220825000000048],[-55.045554999999979,47.215271000000087],[-55.043335000000013,47.210548000000074],[-55.05361199999993,47.150826000000109],[-55.065833999999995,47.093323000000112],[-55.069450000000018,47.082214000000022],[-55.100280999999995,47.05471],[-55.149444999999957,47.012215000000083],[-55.154716000000008,47.008049000000028],[-55.193329000000006,46.984993000000145],[-55.225829999999974,46.934433000000126],[-55.230277999999942,46.928329000000076],[-55.236945999999932,46.923607000000004],[-55.246947999999975,46.916939000000013],[-55.258613999999966,46.91027100000008],[-55.358337000000006,46.874161000000129],[-55.384170999999924,46.865829000000133],[-55.399993999999936,46.865829000000133],[-55.456664999999987,46.874710000000107],[-55.463615000000004,46.877486999999974],[-55.468604999999968,46.881660000000124],[-55.471938999999963,46.886383000000137],[-55.626944999999921,46.868881000000101],[-55.634170999999981,46.866661000000079],[-55.689719999999966,46.858329999999967],[-55.803328999999962,46.860549999999989],[-55.845832999999971,46.86971299999999],[-55.915000999999961,46.88749700000011],[-55.923614999999927,46.889717000000076],[-55.931389000000024,46.892769000000044],[-55.946663000000001,46.899436999999978],[-55.966110000000015,46.909988000000112],[-55.98082699999992,46.932213000000104],[-55.982773000000009,46.936652999999978],[-55.984168999999952,46.941658000000018],[-55.983054999999979,46.952492000000063],[-55.980552999999986,46.957771000000037],[-55.96665999999999,46.981377000000123],[-55.952498999999989,46.996383999999921],[-55.886948000000018,47.056099000000017],[-55.87110899999999,47.069160000000124],[-55.865554999999972,47.072768999999937],[-55.775276000000019,47.10193600000008],[-55.768607999999972,47.103325000000041],[-55.745551999999918,47.10443900000007],[-55.738892000000021,47.10443900000007],[-55.723609999999951,47.104164000000026],[-55.715553,47.103050000000053],[-55.698050999999964,47.098045000000013],[-55.68250299999994,47.091377000000023],[-55.674445999999989,47.090270999999973],[-55.586945000000014,47.110275000000115],[-55.573616000000015,47.11360900000011],[-55.493331999999896,47.133880999999974],[-55.487777999999992,47.137214999999969],[-55.329445000000021,47.242493000000024],[-55.298339999999939,47.267211999999972],[-55.290557999999976,47.278328000000101],[-55.285278000000005,47.294998000000021],[-55.28583500000002,47.310272000000111],[-55.286948999999993,47.314995000000067],[-55.286117999999988,47.325554000000125],[-55.269721999999945,47.390830999999991],[-55.266662999999994,47.396659999999997],[-55.262221999999895,47.402771000000087],[-55.256949999999961,47.407211000000075],[-55.202224999999999,47.44609800000012],[-55.179169000000002,47.460548000000017],[-55.172501000000011,47.463882000000012],[-55.107779999999991,47.483604000000071],[-55.100554999999986,47.484160999999972],[-55.083611000000019,47.481101999999964],[-55.075835999999867,47.480820000000108],[-55.040282999999931,47.484993000000031],[-54.951392999999882,47.504997000000003],[-54.868057000000022,47.543883999999991],[-54.845832999999971,47.556938000000059],[-54.841666999999973,47.563324000000136],[-54.841385000000002,47.583603000000096],[-54.845551,47.633881000000088],[-54.949439999999925,47.599715999999944],[-54.956389999999999,47.59804500000007],[-54.970832999999971,47.596656999999993],[-55.019278999999926,47.621101000000124],[-55.028277999999887,47.620766000000117],[-55.033278999999936,47.621601000000112],[-55.036109999999894,47.623936000000015],[-55.037612999999908,47.626601999999991],[-55.037440999999887,47.62977200000006],[-55.03561000000002,47.633269999999982],[-55.029612999999927,47.639598999999976],[-55.013779,47.65310299999993],[-55.00777800000003,47.65943500000003],[-54.956389999999999,47.741379000000109],[-54.947494999999947,47.75360900000004],[-54.938048999999978,47.771103000000096],[-54.936110999999926,47.781661999999983],[-54.943054000000018,47.781105000000082],[-54.948607999999922,47.776657000000114],[-55.011391000000003,47.721374999999966],[-55.021942000000024,47.711661999999933],[-55.025276000000019,47.705268999999987],[-55.027221999999995,47.695267000000058],[-55.03055599999999,47.684158000000139],[-55.033614999999941,47.678329000000133],[-55.119114000000025,47.616936000000123],[-55.122443999999916,47.614269000000093],[-55.126281999999946,47.612774000000002],[-55.130774999999915,47.611938000000123],[-55.135777000000019,47.613605000000007],[-55.262778999999966,47.650543000000084],[-55.349167000000023,47.704437000000098],[-55.34833500000002,47.710274000000027],[-55.357506000000001,47.726097000000095],[-55.365004999999996,47.726379000000122],[-55.379722999999956,47.724991000000045],[-55.427497999999957,47.711661999999933],[-55.432502999999997,47.70638299999996],[-55.461944999999957,47.646103000000039],[-55.464721999999938,47.640274000000034],[-55.467498999999975,47.619155999999919],[-55.46665999999999,47.614159000000029],[-55.461387999999943,47.610275000000001],[-55.454444999999964,47.611107000000118],[-55.446663000000001,47.623046999999985],[-55.436110999999926,47.631659999999954],[-55.430000000000007,47.634163000000115],[-55.423057999999969,47.635826000000066],[-55.415276000000006,47.63249200000007],[-55.407776000000013,47.624161000000015],[-55.400276000000019,47.615547000000106],[-55.398337999999967,47.610275000000001],[-55.389724999999999,47.58638000000002],[-55.400276000000019,47.514717000000076],[-55.406661999999926,47.493050000000039],[-55.40972099999999,47.487213000000054],[-55.414161999999919,47.481101999999964],[-55.429726000000016,47.467209000000139],[-55.43638599999997,47.465546000000018],[-55.498610999999983,47.453880000000026],[-55.505835999999931,47.453322999999955],[-55.526108000000022,47.454436999999928],[-55.555274999999938,47.440269000000058],[-55.560555000000022,47.436104000000057],[-55.565001999999993,47.429993000000024],[-55.587776000000019,47.398604999999975],[-55.625,47.463608000000079],[-55.654167000000029,47.495270000000062],[-55.795279999999991,47.492767000000072],[-55.914443999999946,47.437767000000008],[-55.920279999999934,47.435265000000129],[-55.925560000000019,47.439156000000025],[-55.923889000000031,47.444709999999986],[-55.91972399999986,47.450829000000056],[-55.831673000000023,47.517212000000086],[-55.788895000000025,47.551102000000014],[-55.745834000000002,47.585266000000047],[-55.77305599999994,47.579720000000009],[-55.824172999999973,47.566382999999973],[-55.892226999999991,47.5366590000001],[-55.987777999999992,47.500549000000035],[-56.104172000000005,47.463608000000079],[-56.110557999999855,47.462494000000106],[-56.11860699999994,47.463608000000079],[-56.158889999999928,47.484718000000044],[-56.169167000000016,47.492493000000138],[-56.172500999999897,47.49721500000004],[-56.172500999999897,47.501663000000008],[-56.168059999999969,47.507216999999969],[-56.162498000000028,47.51138300000008],[-56.12027699999993,47.519157000000064],[-56.044448999999986,47.535271000000023],[-55.941939999999931,47.561661000000072],[-55.889998999999932,47.578330999999991],[-55.639998999999989,47.668053000000043],[-55.633330999999998,47.671104000000071],[-55.628333999999995,47.674713000000054],[-55.635001999999986,47.678329000000133],[-55.642501999999979,47.678604000000121],[-55.649993999999992,47.677773000000116],[-55.663886999999932,47.675552000000039],[-55.704169999999976,47.664992999999981],[-55.75,47.649437000000034],[-55.756110999999976,47.646942000000024],[-55.774718999999948,47.638329000000056],[-55.80471799999998,47.624435000000119],[-55.824447999999961,47.618599000000017],[-55.838889999999935,47.617210000000057],[-55.855835000000013,47.620270000000119],[-55.903327999999931,47.645270999999923],[-55.913611999999944,47.653046000000018],[-55.917503000000011,47.657493999999986],[-55.919448999999929,47.667213000000004],[-55.918609999999944,47.673049999999989],[-55.916388999999981,47.678329000000133],[-55.91194200000001,47.684432999999956],[-55.901389999999992,47.693047000000035],[-55.895554000000004,47.696655000000135],[-55.866393999999957,47.713882000000126],[-55.83277899999996,47.742493000000081],[-55.815001999999993,47.772491000000002],[-55.799445999999875,47.799164000000019],[-55.742226000000016,47.923325000000091],[-55.746947999999975,47.93249499999996],[-55.754447999999968,47.94110100000006],[-55.767219999999952,47.953323000000069],[-55.773613000000012,47.956940000000031],[-55.78055599999999,47.95526899999993],[-55.817504999999983,47.886939999999981],[-55.835273999999913,47.850830000000087],[-55.835555999999997,47.845543000000134],[-55.847220999999934,47.806938000000002],[-55.849998000000028,47.801102000000128],[-55.854445999999996,47.794716000000051],[-55.865279999999984,47.786110000000122],[-55.877219999999966,47.778602999999976],[-55.888892999999996,47.773048000000074],[-56.049727999999959,47.699432000000058],[-56.087501999999972,47.736938000000009],[-56.081116000000009,47.739715999999987],[-56.053611999999987,47.77388000000002],[-56.057502999999997,47.778327999999988],[-56.064163000000008,47.776657000000114],[-56.111671000000001,47.763610999999969],[-56.125,47.757216999999969],[-56.185271999999998,47.680274999999995],[-56.160278000000005,47.642220000000123],[-56.154998999999862,47.638329000000056],[-56.161384999999939,47.634163000000115],[-56.173332000000016,47.629714999999976],[-56.187499999999943,47.627213000000097],[-56.358336999999892,47.603324999999984],[-56.394722000000002,47.601105000000132],[-56.410277999999948,47.601387000000045],[-56.418892000000028,47.601936000000137],[-56.443053999999904,47.605827000000033],[-56.546950999999979,47.613883999999985],[-56.615554999999915,47.613327000000083],[-56.644164999999987,47.596100000000092],[-56.641113000000018,47.592216000000064],[-56.639998999999989,47.587212000000079],[-56.644164999999987,47.581108000000086],[-56.65055099999995,47.578330999999991],[-56.774719000000005,47.531937000000028],[-56.840836000000024,47.52137799999997],[-56.902221999999995,47.552490000000091],[-56.924445999999989,47.562209999999993],[-56.956107999999972,47.574996999999996],[-56.96527900000001,47.57777400000009],[-56.992500000000007,47.583878000000141],[-56.999725000000012,47.584717000000069],[-57.014724999999942,47.583878000000141],[-57.096663999999976,47.56610100000006],[-57.118332000000009,47.563881000000038],[-57.126105999999993,47.563881000000038],[-57.134445000000028,47.566382999999973],[-57.150276000000019,47.572769000000051],[-57.163329999999917,47.579720000000009],[-57.204720000000009,47.59304800000001],[-57.530829999999867,47.630821000000026],[-57.657776000000013,47.60305000000011],[-57.779441999999904,47.627487000000031],[-57.882499999999993,47.651382000000012],[-58.027495999999928,47.694153000000028],[-58.036391999999978,47.696098000000063],[-58.359443999999939,47.647217000000012],[-58.690552000000025,47.598877000000016],[-58.771110999999962,47.59137700000008],[-58.861945999999932,47.589157000000114],[-58.885001999999872,47.592766000000097],[-58.894164999999873,47.59388000000007],[-58.937499999999943,47.589989000000003],[-59.076667999999984,47.571663000000001],[-59.102130999999929,47.564251000000127],[-59.11361699999992,47.558327000000077],[-59.118889000000024,47.554710000000114],[-59.135559000000001,47.556380999999988],[-59.161941999999954,47.561661000000072],[-59.297782999999868,47.606658999999979],[-59.304442999999992,47.609993000000145],[-59.305831999999953,47.614998000000014],[-59.309440999999993,47.661102000000085],[-59.309440999999993,47.671379000000059],[-59.30499999999995,47.724991000000045],[-59.3024979999999,47.736107000000004],[-59.325561999999991,47.807213000000047],[-59.329726999999991,47.816383000000087],[-59.369164000000012,47.852775999999949],[-59.40193899999997,47.880271999999991],[-59.40694400000001,47.889717000000076],[-59.404715999999951,47.900269000000094],[-59.400832999999921,47.90665400000006],[-59.39166999999992,47.916664000000026],[-59.378051999999911,47.922493000000031],[-59.365554999999915,47.924995000000081],[-59.328612999999905,47.928879000000109],[-59.321945000000028,47.930549999999982],[-59.31639100000001,47.934158000000082],[-59.31138599999997,47.938881000000094],[-59.267775999999969,47.982208000000071],[-59.265006999999912,47.988045000000056],[-59.262778999999966,47.999435000000119],[-59.246947999999975,48.011940000000038],[-59.230277999999942,48.02276599999999],[-59.218605000000025,48.029160000000047],[-59.091384999999946,48.090271000000143],[-59.053885999999864,48.105552999999986],[-59.041114999999934,48.110275000000058],[-59.020554000000004,48.116385999999977],[-58.958054000000004,48.149993999999992],[-58.75,48.287498000000085],[-58.701392999999996,48.319716999999969],[-58.691108999999983,48.32888000000014],[-58.686385999999914,48.334160000000054],[-58.682502999999997,48.340546000000131],[-58.678336999999999,48.351936000000023],[-58.675835000000006,48.363051999999925],[-58.670279999999991,48.37499200000002],[-58.598884999999939,48.423325000000034],[-58.587775999999963,48.430550000000039],[-58.568892999999889,48.438599000000067],[-58.555831999999953,48.443047000000035],[-58.514724999999999,48.452773999999977],[-58.500556999999958,48.455551000000071],[-58.492774999999995,48.455551000000071],[-58.492774999999995,48.450272000000098],[-58.497779999999977,48.44582400000013],[-58.518889999999999,48.441375999999991],[-58.526108000000022,48.440544000000102],[-58.546394000000021,48.434990000000084],[-58.558891000000017,48.42971799999998],[-58.588889999999935,48.412765999999976],[-58.599998000000028,48.405822999999998],[-58.601112000000001,48.400826000000052],[-58.59194199999996,48.398879999999963],[-58.483611999999994,48.427773000000002],[-58.470832999999971,48.43221299999999],[-58.464721999999995,48.436377999999991],[-58.449439999999925,48.449158000000125],[-58.4183349999999,48.486655999999982],[-58.420279999999991,48.508049000000085],[-58.569449999999961,48.538605000000018],[-58.673614999999984,48.554710000000057],[-58.682502999999997,48.554993000000024],[-58.697219999999959,48.553046999999992],[-58.732215999999994,48.545830000000024],[-58.765556000000004,48.535828000000095],[-58.778052999999886,48.531937000000028],[-58.812499999999943,48.52388000000002],[-58.857506000000001,48.518599999999992],[-58.931389000000024,48.511939999999981],[-58.954720000000009,48.510825999999952],[-58.979163999999969,48.512497000000053],[-58.988335000000006,48.514442000000031],[-59.004722999999956,48.520271000000037],[-59.013335999999924,48.522217000000126],[-59.091667000000029,48.508331000000112],[-59.105559999999969,48.50471500000009],[-59.118889000000024,48.50110600000005],[-59.146392999999875,48.493049999999982],[-59.192771999999991,48.477767999999969],[-59.232497999999964,48.468597000000045],[-59.246947999999975,48.46665999999999],[-59.255279999999971,48.467490999999995],[-59.260558999999944,48.471931000000041],[-59.261115999999959,48.476653999999996],[-59.232773000000009,48.523048000000131],[-59.228881999999999,48.529160000000104],[-59.215003999999965,48.545547000000056],[-59.209998999999925,48.549995000000024],[-59.137504999999976,48.598876999999959],[-59.084166999999866,48.626380999999981],[-59.077782000000013,48.629158000000075],[-59.050277999999935,48.635551000000021],[-59.03055599999999,48.641937000000098],[-59.02416999999997,48.644714000000022],[-58.908889999999985,48.701934999999992],[-58.828888000000006,48.750832000000116],[-58.811667999999941,48.76166500000005],[-58.799727999999959,48.768050999999957],[-58.774719000000005,48.77887700000008],[-58.767775999999969,48.775551000000064],[-58.772498999999982,48.769989000000123],[-58.815001999999936,48.735825000000091],[-58.849723999999867,48.714996000000099],[-58.873885999999914,48.701659999999947],[-58.891113000000018,48.690826000000072],[-58.912773000000016,48.674713000000054],[-58.938605999999879,48.653603000000089],[-58.947776999999917,48.642769000000044],[-58.955832999999984,48.630272000000048],[-58.958610999999962,48.624161000000129],[-58.958610999999962,48.613883999999985],[-58.955832999999984,48.609436000000017],[-58.947494999999947,48.601105000000132],[-58.896950000000004,48.55193300000002],[-58.888335999999924,48.551101999999958],[-58.743057000000022,48.560822000000087],[-58.728332999999964,48.56249200000002],[-58.721381999999949,48.564438000000109],[-58.715003999999965,48.567215000000033],[-58.709442000000024,48.570831000000055],[-58.704445000000021,48.575271999999984],[-58.695549000000028,48.586937000000091],[-58.68332700000002,48.605827000000033],[-58.676666000000012,48.618050000000096],[-58.672501000000011,48.629433000000063],[-58.669998000000021,48.640831000000105],[-58.671386999999925,48.650825999999995],[-58.674171000000001,48.65526600000004],[-58.679442999999992,48.66944100000012],[-58.680832000000009,48.68471500000004],[-58.658051,48.743049999999982],[-58.618331999999896,48.779716000000064],[-58.543892000000028,48.860824999999977],[-58.535834999999963,48.878601000000117],[-58.506667999999934,48.949431999999945],[-58.506667999999934,48.98054499999995],[-58.503333999999995,48.997490000000084],[-58.500838999999928,49.003608999999926],[-58.400832999999864,49.127487000000087],[-58.396110999999962,49.131377999999984],[-58.351943999999889,49.15026899999998],[-58.348884999999996,49.145828000000108],[-58.342967999999985,49.100201000000027],[-58.365634999999997,49.079922000000067],[-58.368019000000004,49.061428000000035],[-58.353702999999939,49.056656000000032],[-58.31075299999992,49.068584000000044],[-58.292857999999967,49.072762000000068],[-58.240554999999972,49.070274000000097],[-58.17832199999998,49.063217000000066],[-58.143726000000015,49.041740000000118],[-58.09833500000002,48.99221799999998],[-58.084723999999937,48.985268000000133],[-58.077781999999956,48.981934000000138],[-58.060279999999921,48.976096999999982],[-58.050551999999982,48.973320000000115],[-57.99610899999999,48.96138000000002],[-57.961387999999999,48.956657000000007],[-57.938605999999993,48.958328000000051],[-57.90166499999998,48.96276899999998],[-57.888054000000011,48.966102999999976],[-57.881667999999991,48.96888000000007],[-57.892226999999934,48.981658999999922],[-57.900551000000007,48.9847180000001],[-57.929442999999992,48.978874000000076],[-57.958611000000019,48.976096999999982],[-57.974716000000001,48.976096999999982],[-58.009223999999961,48.98041500000005],[-58.02777900000001,48.985549999999989],[-58.035834999999963,48.988602000000128],[-58.050551999999982,48.99582700000002],[-58.09332999999998,49.025825999999995],[-58.103888999999924,49.033607000000075],[-58.108054999999922,49.037772999999959],[-58.135276999999974,49.082771000000037],[-58.144447000000014,49.12193300000007],[-58.122612000000004,49.124931000000004],[-58.119281999999998,49.127102000000036],[-58.115608000000009,49.129105000000038],[-58.111110999999994,49.129771999999946],[-58.094775999999968,49.124603000000036],[-58.078776999999945,49.121769000000029],[-58.049445999999932,49.120270000000005],[-57.925559999999962,49.123047000000042],[-57.918610000000001,49.124709999999993],[-57.913329999999974,49.129158000000132],[-57.882773999999927,49.157767999999976],[-57.878882999999973,49.170273000000122],[-57.89805599999994,49.158600000000092],[-57.912215999999944,49.152771000000087],[-57.925834999999893,49.148331000000042],[-57.939437999999996,49.144997000000046],[-57.947494999999947,49.144997000000046],[-58.057220000000029,49.144997000000046],[-58.075558000000001,49.153271000000075],[-58.081054999999992,49.154438000000141],[-58.086055999999928,49.156269000000123],[-58.092555999999945,49.160934000000111],[-58.09589399999993,49.166271000000108],[-58.064055999999994,49.183350000000132],[-58.063057000000015,49.185451999999941],[-58.065455999999983,49.190414000000033],[-58.060622999999964,49.188583000000051],[-58.05495499999995,49.187583999999958],[-58.034957999999904,49.185749000000044],[-58.025459000000012,49.185749000000044],[-58.011292000000026,49.186252999999965],[-58.002456999999993,49.188251000000093],[-57.995621000000028,49.192078000000038],[-57.988785000000007,49.197247000000118],[-57.932219999999973,49.234160999999972],[-57.928054999999972,49.240273000000116],[-57.93638599999997,49.239716000000044],[-57.995162999999991,49.236885000000086],[-58.003330000000005,49.234215000000006],[-58.011662000000001,49.23071299999998],[-58.031001999999944,49.224548000000027],[-58.03566399999994,49.223713000000032],[-58.049331999999936,49.222717000000046],[-58.058829999999944,49.223049000000003],[-58.191939999999931,49.236382000000049],[-58.200835999999867,49.239716000000044],[-58.211945000000014,49.24721500000004],[-58.233886999999982,49.27304799999996],[-58.236663999999905,49.27748900000006],[-58.240836999999942,49.286942000000067],[-58.241942999999992,49.291663999999969],[-58.241942999999992,49.302215999999987],[-58.223327999999924,49.390274000000034],[-58.216392999999982,49.402488999999946],[-58.192497000000003,49.429436000000067],[-58.157776000000013,49.464439000000027],[-58.152221999999995,49.468879999999956],[-58.043892000000028,49.541382000000056],[-58.032218999999941,49.548332000000073],[-58.019164999999873,49.553879000000052],[-57.998336999999992,49.559158000000025],[-57.971107000000018,49.554993000000024],[-57.915112000000022,49.532047000000034],[-57.910609999999963,49.530216000000053],[-57.903445999999974,49.525551000000064],[-57.861445999999944,49.505885999999975],[-57.746947999999918,49.453606000000093],[-57.715004000000022,49.454712000000086],[-57.707503999999915,49.455551000000071],[-57.701110999999969,49.458327999999995],[-57.696388000000013,49.463608000000022],[-57.698883000000023,49.468323000000055],[-57.705832999999984,49.47165700000005],[-57.788895000000025,49.500832000000116],[-57.864222999999981,49.534939000000065],[-57.869389000000012,49.535439000000054],[-57.872719000000018,49.537773000000072],[-57.942223000000013,49.60305000000011],[-57.944716999999969,49.607498000000078],[-57.951110999999912,49.652771000000143],[-57.951110999999912,49.65776800000009],[-57.948333999999932,49.674164000000076],[-57.935271999999998,49.708602999999925],[-57.926391999999964,49.726379000000065],[-57.899993999999992,49.762215000000083],[-57.82916999999992,49.845543000000077],[-57.671111999999937,50.084160000000054],[-57.631667999999934,50.144714000000079],[-57.543334999999956,50.29833200000013],[-57.524445000000014,50.334159999999997],[-57.521384999999952,50.345267999999976],[-57.521111000000019,50.35054800000006],[-57.515555999999947,50.373604000000057],[-57.507224999999949,50.390831000000105],[-57.498336999999992,50.408600000000035],[-57.490836999999999,50.420830000000137],[-57.448607999999979,50.486106999999947],[-57.377220000000023,50.584434999999928],[-57.37249799999995,50.590828000000101],[-57.361114999999927,50.598602000000085],[-57.341667000000029,50.607498000000021],[-57.310059000000024,50.608940000000132],[-57.300220000000024,50.609776000000068],[-57.295559000000026,50.60927200000009],[-57.291224999999997,50.607105000000047],[-57.276222000000018,50.601440000000082],[-57.245276999999987,50.596382000000062],[-57.228049999999939,50.594437000000084],[-57.204444999999964,50.596100000000035],[-57.173614999999927,50.60083000000003],[-57.166945999999996,50.603325000000098],[-57.161384999999996,50.606384000000048],[-57.150832999999921,50.616104000000121],[-57.148055999999997,50.621933000000126],[-57.154715999999951,50.625549000000035],[-57.171943999999996,50.624992000000134],[-57.276442999999915,50.640717000000052],[-57.378608999999926,50.687767000000065],[-57.334166999999923,50.711937000000091],[-57.325004999999919,50.711662000000047],[-57.236945999999989,50.727211000000011],[-57.162498000000028,50.751105999999993],[-57.14833799999991,50.756103999999993],[-57.089438999999913,50.780548000000124],[-57.072501999999986,50.793884000000048],[-56.983054999999979,50.868324000000086],[-56.927498000000014,50.915824999999984],[-56.898055999999997,51.019440000000088],[-56.899170000000026,51.024436999999978],[-56.903327999999988,51.028603000000089],[-56.909995999999978,51.03276800000009],[-56.927223000000026,51.038605000000018],[-56.964721999999995,51.04332700000009],[-56.921669000000009,51.051384000000098],[-56.892226999999991,51.060272000000055],[-56.879996999999946,51.065543999999989],[-56.784446999999943,51.137771999999984],[-56.781386999999995,51.143608000000029],[-56.78194400000001,51.149162000000047],[-56.785278000000005,51.153046000000074],[-56.793334999999956,51.16137700000013],[-56.80972300000002,51.183601000000067],[-56.793892000000028,51.239989999999921],[-56.744164000000012,51.293052999999929],[-56.738608999999997,51.298881999999935],[-56.733330000000024,51.302773000000002],[-56.68250299999994,51.339432000000102],[-56.623885999999914,51.366386000000034],[-56.616942999999935,51.368881000000044],[-56.512504999999976,51.402214000000072],[-56.476661999999919,51.411658999999986],[-56.461945000000014,51.414992999999981],[-56.45416999999992,51.415543000000014],[-56.271384999999952,51.471656999999993],[-56.110557999999855,51.523879999999963],[-56.011391000000003,51.56638300000003],[-55.998336999999992,51.572220000000016],[-55.960281000000009,51.593880000000013],[-55.943329000000006,51.606384000000048],[-55.918609999999944,51.62110100000001],[-55.90555599999999,51.626937999999996],[-55.898055999999997,51.628601000000117],[-55.890282000000013,51.629433000000006],[-55.837775999999963,51.621376000000055],[-55.846389999999928,51.60193600000008],[-55.857779999999991,51.593323000000112],[-55.885001999999929,51.562492000000134],[-55.886664999999937,51.556938000000002],[-55.886948000000018,51.551933000000133],[-55.887222000000008,51.500274999999988],[-55.886116000000015,51.495270000000119],[-55.87777699999998,51.492218000000037],[-55.694442999999978,51.481102000000078],[-55.639998999999989,51.481934000000024],[-55.648612999999955,51.485267999999962],[-55.68360899999999,51.5],[-55.729720999999984,51.543327000000033],[-55.737503000000004,51.552490000000034],[-55.739166000000012,51.556656000000089],[-55.73860899999994,51.567214999999976],[-55.735274999999945,51.573051000000021],[-55.724716000000001,51.583603000000039],[-55.718605000000025,51.587212000000022],[-55.653327999999988,51.590546000000018],[-55.631667999999991,51.569717000000026],[-55.625,51.565544000000102],[-55.598610000000008,51.561377999999991],[-55.589721999999995,51.560271999999941],[-55.581389999999942,51.560271999999941],[-55.574448000000018,51.562767000000008],[-55.547501000000011,51.584991000000116],[-55.515838999999971,51.602219000000048],[-55.458610999999962,51.592216000000008],[-55.411110000000008,51.580826000000116],[-55.40555599999999,51.576942000000088],[-55.404442000000017,51.571938000000102],[-55.405273000000022,51.561661000000129],[-55.40694400000001,51.556099000000017],[-55.454444999999964,51.455268999999987],[-55.492226000000016,51.377769000000058],[-55.508057000000008,51.363327000000083],[-55.597778000000005,51.303604000000064],[-55.612777999999935,51.301102000000128],[-55.62222300000002,51.30332199999998],[-55.702782000000013,51.328049000000078],[-55.820557000000008,51.350830000000087],[-56.030555999999876,51.378600999999946],[-56.078338999999971,51.36971299999999],[-56.085555999999997,51.368323999999973],[-56.096389999999985,51.318329000000006],[-56.025557999999876,51.238327000000027],[-56.012252999999987,51.212337000000048],[-55.992561000000023,51.176575000000128],[-55.959441999999967,51.197487000000081],[-55.851394999999968,51.226936000000023],[-55.837775999999963,51.230545000000063],[-55.769164999999987,51.216934000000094],[-55.760833999999988,51.213881999999955],[-55.726105000000018,51.190544000000045],[-55.712776000000019,51.178047000000049],[-55.709998999999982,51.173607000000061],[-55.719161999999983,51.123047000000042],[-55.732497999999964,51.079994000000113],[-55.735557999999912,51.074165000000107],[-55.751113999999973,51.058327000000077],[-55.756950000000018,51.053879000000109],[-55.796111999999994,51.03916200000009],[-55.805557000000022,51.009163000000058],[-55.859169000000009,50.942490000000021],[-55.999442999999872,50.788605000000075],[-56.068893000000003,50.724434000000088],[-56.092278000000022,50.725716000000091],[-56.097279000000015,50.725880000000018],[-56.101279999999917,50.728045999999949],[-56.125832000000003,50.754166000000055],[-56.130829000000006,50.763329000000056],[-56.133330999999998,50.773048000000017],[-56.128052000000025,50.846382000000062],[-56.12222300000002,50.863884000000098],[-56.119720000000029,50.869156000000032],[-56.116394000000014,50.874992000000077],[-56.107223999999974,50.887214999999969],[-56.103888999999981,50.893326000000002],[-56.103888999999981,50.898331000000042],[-56.107779999999934,50.902771000000087],[-56.12222300000002,50.899437000000091],[-56.143058999999937,50.892494000000113],[-56.155272999999966,50.885551000000135],[-56.172500999999897,50.85582700000009],[-56.157218999999941,50.690826000000072],[-56.141272999999956,50.671047000000101],[-56.135776999999962,50.669884000000138],[-56.163329999999917,50.617767000000072],[-56.258614000000023,50.502777000000094],[-56.323615999999959,50.446380999999974],[-56.423057999999912,50.352776000000006],[-56.421943999999939,50.347771000000137],[-56.422226000000023,50.342491000000052],[-56.423614999999984,50.336937000000091],[-56.426666000000012,50.331108000000086],[-56.462501999999915,50.272217000000126],[-56.501944999999921,50.214439000000084],[-56.511947999999961,50.203606000000093],[-56.555832000000009,50.167496000000028],[-56.635276999999974,50.106383999999991],[-56.743056999999965,50.022766000000104],[-56.767501999999922,49.962212000000079],[-56.778610000000015,49.933875999999998],[-56.78194400000001,49.917496000000028],[-56.775001999999972,49.919158999999979],[-56.726661999999976,49.916100000000029],[-56.759845999999982,49.837275999999974],[-56.82790399999999,49.785000000000082],[-56.866863000000023,49.777602999999999],[-56.90533099999999,49.747520000000122],[-56.820999000000029,49.74209600000006],[-56.784007999999972,49.731243000000006],[-56.782776000000013,49.690826000000072],[-56.815552000000025,49.594994000000042],[-56.818610999999976,49.588882000000012],[-56.848884999999939,49.544441000000006],[-56.843055999999933,49.548050000000046],[-56.826667999999984,49.562767000000008],[-56.782776000000013,49.609993000000088],[-56.763061999999991,49.631378000000041],[-56.749167999999884,49.64916199999999],[-56.735557999999969,49.666939000000013],[-56.712501999999972,49.696380999999974],[-56.677779999999927,49.733604000000128],[-56.598609999999894,49.811935000000062],[-56.56138599999997,49.842215999999951],[-56.477776000000006,49.892220000000009],[-56.464164999999923,49.896385000000009],[-56.431945999999982,49.890549000000135],[-56.412216000000001,49.909714000000122],[-56.388054000000011,49.943047000000092],[-56.385001999999929,49.949158000000011],[-56.330284000000006,50.024994000000106],[-56.324172999999973,50.029990999999995],[-56.237777999999992,50.100273000000072],[-56.220832999999971,50.112495000000024],[-56.208892999999989,50.120270000000119],[-56.160278000000005,50.148048000000074],[-56.153884999999946,50.150543000000084],[-56.132499999999993,50.155548000000124],[-56.12471800000003,50.15638000000007],[-56.116660999999965,50.153046000000074],[-56.067222999999956,50.096382000000006],[-56.065001999999936,50.091377000000136],[-56.005004999999983,50.031380000000013],[-55.938605999999936,50.036385000000053],[-55.905273000000022,50.033882000000062],[-55.896111000000019,50.031937000000084],[-55.881110999999976,50.024994000000106],[-55.853888999999924,50.005554000000075],[-55.846106999999961,49.996940999999936],[-55.845275999999956,49.99221799999998],[-55.845551,49.986938000000066],[-55.844161999999983,49.981934000000138],[-55.840836000000024,49.977211000000125],[-55.830001999999979,49.969154000000003],[-55.755004999999869,49.924164000000019],[-55.746108999999933,49.923050000000046],[-55.587218999999948,49.964157000000057],[-55.55610699999994,49.980270000000132],[-55.543892000000028,49.987213000000111],[-55.527221999999995,50.000275000000101],[-55.491698999999983,50.007309000000021],[-55.463332999999977,49.966933999999981],[-55.460830999999985,49.962212000000079],[-55.459723999999937,49.957497000000046],[-55.460281000000009,49.952216999999962],[-55.465004000000022,49.940826000000015],[-55.475272999999959,49.930275000000108],[-55.492226000000016,49.917213000000061],[-55.511391000000003,49.908882000000006],[-55.659163999999976,49.84777100000008],[-55.843055999999933,49.788330000000087],[-55.98611499999987,49.746940999999993],[-56.115279999999927,49.63999200000012],[-56.124167999999997,49.613327000000083],[-56.050551999999925,49.666382000000112],[-56.044448999999986,49.669990999999925],[-55.963889999999935,49.698600999999996],[-55.957779000000016,49.700272000000041],[-55.893889999999999,49.714157000000114],[-55.833327999999995,49.686652999999922],[-55.880279999999971,49.584990999999945],[-55.935443999999961,49.543991000000119],[-55.945441999999957,49.536159999999995],[-55.953444999999988,49.533660999999995],[-55.971607000000006,49.531826000000024],[-55.980277999999998,49.53049500000003],[-56.035277999999948,49.506660000000068],[-56.080001999999922,49.486938000000009],[-56.12749500000001,49.431107000000111],[-56.129165999999998,49.425552000000039],[-56.122771999999941,49.421379000000115],[-56.073891000000003,49.434432999999956],[-56.06221800000003,49.440544000000045],[-56.025275999999963,49.461105000000089],[-56.02027899999996,49.464995999999928],[-56.005279999999914,49.480820000000051],[-55.999725000000012,49.485268000000019],[-55.96305499999994,49.496155000000044],[-55.91705300000001,49.507496000000117],[-55.874717999999973,49.517212000000029],[-55.827781999999956,49.524162000000103],[-55.783332999999914,49.511940000000095],[-55.775001999999915,49.508605999999929],[-55.724997999999971,49.479431000000091],[-55.720832999999971,49.475822000000051],[-55.725554999999986,49.470543000000077],[-55.722771000000023,49.453880000000026],[-55.678336999999942,49.386940000000038],[-55.673057999999969,49.383049000000142],[-55.664444000000003,49.381934999999999],[-55.656386999999938,49.382210000000043],[-55.650275999999963,49.384162999999944],[-55.639167999999984,49.392769000000044],[-55.636115999999959,49.398604999999918],[-55.637778999999966,49.409157000000107],[-55.637778999999966,49.413605000000075],[-55.636115999999959,49.419159000000093],[-55.589164999999923,49.462494000000049],[-55.560279999999977,49.482490999999925],[-55.55388599999992,49.484993000000031],[-55.546950999999979,49.486381999999992],[-55.53167000000002,49.487770000000125],[-55.523055999999997,49.486655999999925],[-55.522223999999994,49.481934000000024],[-55.566390999999953,49.409157000000107],[-55.572776999999974,49.376656000000025],[-55.573058999999944,49.371658000000025],[-55.570556999999951,49.366936000000123],[-55.566665999999998,49.362770000000012],[-55.559998000000007,49.365273000000002],[-55.554717999999923,49.369713000000047],[-55.539443999999946,49.385551000000078],[-55.529723999999987,49.396942000000024],[-55.528053,49.402488999999946],[-55.528885000000002,49.408043000000134],[-55.529166999999973,49.423324999999977],[-55.526389999999992,49.42860399999995],[-55.49610899999999,49.453880000000026],[-55.441665999999998,49.491104000000064],[-55.430282999999974,49.498878000000104],[-55.37749500000001,49.50360900000004],[-55.369445999999982,49.503326000000072],[-55.349276999999972,49.468159000000014],[-55.332946999999933,49.416489000000126],[-55.33577699999995,49.388161000000025],[-55.333610999999905,49.359161000000029],[-55.338608000000022,49.355270000000132],[-55.336112999999955,49.350829999999974],[-55.315276999999924,49.314437999999939],[-55.310996999999929,49.355937999999981],[-55.306830999999931,49.356772999999976],[-55.274833999999998,49.385605000000055],[-55.267501999999979,49.396603000000027],[-55.264499999999998,49.403435000000059],[-55.264336000000014,49.406441000000086],[-55.266669999999863,49.409103000000073],[-55.269833000000006,49.411438000000032],[-55.280838000000017,49.41443600000008],[-55.28317299999992,49.41693500000008],[-55.310000999999943,49.484772000000021],[-55.310832999999946,49.487770000000125],[-55.305557000000022,49.534439000000077],[-55.261390999999946,49.541107000000068],[-55.149726999999928,49.546387000000095],[-55.141112999999962,49.545273000000122],[-55.137222000000008,49.540833000000134],[-55.123328999999956,49.496941000000049],[-55.124717999999973,49.465271000000143],[-55.221107000000018,49.261939999999981],[-55.231109999999944,49.251389000000074],[-55.237220999999977,49.248046999999929],[-55.296394000000021,49.226379000000009],[-55.315001999999936,49.216933999999924],[-55.365836999999999,49.165268000000083],[-55.369164000000012,49.159431000000097],[-55.369445999999982,49.154160000000047],[-55.360001000000011,49.151382000000069],[-55.347495999999978,49.157211000000075],[-55.339721999999995,49.158600000000092],[-55.331673000000023,49.156654000000003],[-55.323615999999959,49.153602999999976],[-55.319449999999904,49.149162000000047],[-55.307219999999973,49.104996000000085],[-55.307776999999987,49.0991590000001],[-55.317504999999983,49.087769000000037],[-55.323059000000001,49.083327999999938],[-55.383330999999998,49.040833000000021],[-55.345551,49.057770000000062],[-55.272223999999937,49.099998000000085],[-55.277495999999985,49.103882000000112],[-55.282501000000025,49.113051999999982],[-55.283332999999914,49.118049999999982],[-55.288054999999986,49.182495000000074],[-55.288054999999986,49.187210000000107],[-55.285004000000015,49.193047000000092],[-55.280555999999933,49.199157999999954],[-55.275275999999963,49.204436999999984],[-55.148055999999997,49.259995000000004],[-55.081116000000009,49.283882000000062],[-55.081673000000023,49.345825000000104],[-55.081389999999942,49.351105000000132],[-55.078055999999947,49.356941000000006],[-55.069450000000018,49.3555530000001],[-55.010284000000013,49.323883000000023],[-54.989998000000014,49.286942000000067],[-54.990554999999972,49.28166200000004],[-54.824448000000018,49.269157000000064],[-54.817779999999914,49.271660000000054],[-54.787506000000008,49.288605000000018],[-54.78194400000001,49.292770000000019],[-54.67972599999996,49.379990000000021],[-54.658332999999971,49.399162000000047],[-54.648055999999997,49.409431000000041],[-54.641388000000006,49.421104000000071],[-54.643889999999999,49.425827000000083],[-54.579726999999934,49.494713000000104],[-54.541114999999934,49.526657000000114],[-54.528885000000002,49.533333000000027],[-54.521111000000019,49.533882000000006],[-54.474716000000001,49.534995999999978],[-54.431945999999925,49.470824999999991],[-54.430831999999953,49.465828000000045],[-54.450554000000011,49.427773000000116],[-54.483330000000024,49.361938000000123],[-54.49361399999998,49.268051000000071],[-54.492500000000007,49.263611000000026],[-54.486945999999989,49.259719999999959],[-54.480552999999929,49.262215000000026],[-54.474716000000001,49.266662999999994],[-54.406386999999938,49.320831000000112],[-54.400832999999921,49.325272000000041],[-54.399170000000026,49.330551000000014],[-54.410278000000005,49.343605000000082],[-54.412773000000016,49.34804500000007],[-54.413612000000001,49.353049999999939],[-54.407501000000025,49.374710000000107],[-54.404167000000029,49.380547000000092],[-54.395003999999915,49.392769000000044],[-54.380279999999971,49.408882000000119],[-54.36999499999996,49.419159000000093],[-54.364166000000012,49.423607000000061],[-54.358054999999979,49.426941000000056],[-54.325279000000023,49.423882000000049],[-54.24888599999997,49.397490999999945],[-54.186661000000015,49.371101000000124],[-54.17888599999992,49.37082700000002],[-54.166106999999897,49.378044000000102],[-54.161941999999897,49.383606000000043],[-54.15582999999998,49.40526600000004],[-54.153327999999931,49.416100000000085],[-54.151938999999913,49.427216000000044],[-54.148337999999967,49.437492000000134],[-54.145279000000016,49.443320999999969],[-54.139998999999932,49.448601000000053],[-54.133888000000013,49.451934999999992],[-54.048889000000031,49.479431000000091],[-54.041671999999949,49.480820000000051],[-53.919998000000021,49.447769000000108],[-53.775001999999972,49.396103000000039],[-53.673331999999959,49.34304800000001],[-53.511116000000015,49.277214000000072],[-53.48860899999994,49.220543000000134],[-53.588332999999977,49.040833000000021],[-53.593886999999995,49.035552999999993],[-53.66194200000001,49.032211000000018],[-53.714721999999938,49.02915999999999],[-53.804442999999992,49.022217000000012],[-53.785277999999948,49.011107999999922],[-53.731667000000016,49.013329000000056],[-53.725273000000016,49.009720000000016],[-53.736664000000019,49.001105999999993],[-53.742774999999995,48.997771999999998],[-53.749167999999941,48.995270000000119],[-53.77027899999996,48.989433000000133],[-53.803611999999987,48.978043000000071],[-53.813056999999958,48.938881000000038],[-53.974441999999954,48.84777100000008],[-54.021384999999952,48.833327999999995],[-54.096106999999961,48.812210000000107],[-53.920279999999991,48.834991000000116],[-53.899170000000026,48.838043000000027],[-53.875557000000015,48.836937000000034],[-53.829445000000021,48.831383000000017],[-53.820556999999951,48.829436999999928],[-53.800835000000006,48.812767000000008],[-53.802223000000026,48.807770000000062],[-53.845276000000013,48.766936999999984],[-53.867774999999938,48.75],[-53.89055599999989,48.733604000000014],[-53.897223999999937,48.731377000000123],[-53.932219999999973,48.71393599999999],[-53.950554000000011,48.670830000000137],[-53.93250299999994,48.624710000000107],[-53.924445999999989,48.624435000000062],[-53.917220999999927,48.624991999999963],[-53.888610999999969,48.631660000000124],[-53.882773999999927,48.633606000000043],[-53.869163999999955,48.638885000000016],[-53.857223999999974,48.644157000000121],[-53.795554999999922,48.675827000000027],[-53.790001000000018,48.679993000000138],[-53.798889000000031,48.682213000000104],[-53.817779999999971,48.673882000000049],[-53.831389999999999,48.669990999999982],[-53.852782999999931,48.666381999999942],[-53.896950000000004,48.662209000000018],[-53.913054999999929,48.663605000000075],[-53.920836999999949,48.667213000000004],[-53.924445999999989,48.671379000000059],[-53.892058999999904,48.682938000000092],[-53.887225999999941,48.690102000000024],[-53.884051999999997,48.693100000000129],[-53.880554000000018,48.695099000000141],[-53.857558999999981,48.704937000000029],[-53.759170999999981,48.714156999999943],[-53.618056999999965,48.694435000000112],[-53.610001000000011,48.693046999999979],[-53.601943999999946,48.68971300000004],[-53.599723999999924,48.684990000000028],[-53.603888999999924,48.674164000000076],[-53.610001000000011,48.668602000000135],[-53.645835999999974,48.648330999999985],[-53.658607000000018,48.641937000000098],[-53.671943999999939,48.638602999999932],[-53.728881999999942,48.629433000000063],[-53.779998999999975,48.623604000000057],[-53.787780999999995,48.622490000000084],[-53.928336999999942,48.575829000000056],[-53.93332700000002,48.572220000000073],[-53.951392999999996,48.549995000000024],[-53.956107999999915,48.543883999999991],[-53.952498999999932,48.539436000000023],[-53.944159999999897,48.539718999999991],[-53.932219999999973,48.544998000000135],[-53.919998000000021,48.551659000000086],[-53.914444000000003,48.555824000000086],[-53.908332999999914,48.559158000000025],[-53.901389999999935,48.562209999999993],[-53.895003999999858,48.563048999999921],[-53.804169000000002,48.568053999999961],[-53.788054999999929,48.566383000000087],[-53.746391000000017,48.558600999999953],[-53.746947999999918,48.523322999999948],[-53.74888599999997,48.513329000000113],[-53.750838999999985,48.50777400000004],[-53.756366999999955,48.50326200000012]],[[-127.91443599999991,51.410820000000001],[-127.92443799999995,51.41027100000008],[-128.06527700000004,51.464157000000114],[-128.07583599999998,51.470543000000021],[-128.08111599999995,51.474709000000132],[-128.15307599999988,51.601661999999976],[-128.15417499999995,51.605826999999977],[-128.15280199999995,51.638046000000145],[-128.15249600000004,51.641937000000041],[-128.15029899999996,51.647491000000059],[-128.14556900000002,51.653603000000032],[-128.136414,51.6616590000001],[-128.01306199999993,51.72137500000008],[-128.00527999999997,51.723320000000058],[-128,51.720542999999964],[-127.99694799999997,51.714157000000057],[-127.99804699999999,51.711662000000047],[-127.995003,51.705269000000101],[-127.98388699999998,51.682495000000131],[-127.96749899999992,51.651931999999988],[-127.951683,51.633880999999974],[-127.93776699999995,51.621933000000126],[-127.92639199999996,51.608886999999982],[-127.91999800000002,51.600547999999947],[-127.90556300000003,51.55971500000004],[-127.87361099999993,51.464439000000027],[-127.87193300000001,51.451934999999992],[-127.87332200000003,51.447769000000051],[-127.87666299999995,51.443046999999979],[-127.90444899999994,51.414711000000068],[-127.91443599999991,51.410820000000001]],[[-55.367500000000007,51.874161000000015],[-55.37471800000003,51.873878000000047],[-55.382216999999912,51.875267000000065],[-55.428885999999977,51.884163000000001],[-55.430000000000007,51.885826000000122],[-55.431113999999923,51.887771999999984],[-55.430557000000022,51.896659999999997],[-55.42610899999994,51.905822999999998],[-55.423331999999959,51.909431000000097],[-55.387779000000023,51.942764000000125],[-55.353614999999991,51.963608000000079],[-55.301392000000021,51.993050000000039],[-55.283889999999985,52.001389000000074],[-55.277221999999938,52.002495000000067],[-55.269996999999989,52.000549000000035],[-55.268889999999942,51.998604],[-55.267501999999979,51.993881000000044],[-55.274170000000026,51.97693600000008],[-55.274170000000026,51.975548000000003],[-55.28194400000001,51.961937000000034],[-55.295005999999944,51.943321000000026],[-55.302222999999969,51.933326999999963],[-55.332503999999972,51.896384999999952],[-55.342223999999874,51.886383000000023],[-55.354720999999927,51.878043999999989],[-55.360001000000011,51.875824000000136],[-55.367500000000007,51.874161000000015]],[[-128.05389400000001,51.753609000000097],[-128.11972000000003,51.741661000000079],[-128.13192699999996,51.743881000000101],[-128.13613899999996,51.746657999999968],[-128.25445599999995,51.865829000000019],[-128.25308199999995,51.872214999999983],[-128.22222899999997,51.953323000000125],[-128.21749899999998,51.962769000000094],[-128.177795,52.008330999999941],[-128.150848,52.035271000000023],[-128.14529400000004,52.038605000000018],[-128.10775799999999,52.051659000000086],[-128.06082200000003,52.056380999999988],[-127.99582699999996,52.062767000000065],[-127.98332199999993,52.061934999999949],[-127.96028100000001,52.055549999999982],[-127.95472699999999,52.05332199999998],[-127.95121799999998,52.046913000000131],[-127.95140100000003,52.03054800000001],[-127.95472699999999,51.981101999999964],[-128.00723299999993,51.782493999999986],[-128.00945999999999,51.778328000000101],[-128.01306199999993,51.773605000000089],[-128.01861600000001,51.770271000000093],[-128.03582800000004,51.760826000000066],[-128.05389400000001,51.753609000000097]],[[-79.252791999999999,52.071380999999917],[-79.319732999999985,51.969986000000063],[-79.364440999999943,51.942214999999976],[-79.370543999999995,51.938599000000124],[-79.376663000000008,51.936104000000057],[-79.385833999999988,51.935546999999985],[-79.42361499999987,51.936935000000062],[-79.433318999999869,51.93832400000008],[-79.450561999999877,51.942214999999976],[-79.50111400000003,51.942489999999964],[-79.568344000000025,51.935546999999985],[-79.576675000000023,51.934158000000025],[-79.591949,51.922768000000133],[-79.604445999999996,51.916664000000083],[-79.611664000000019,51.914436000000137],[-79.617767000000015,51.917770000000132],[-79.621383999999978,51.9222180000001],[-79.652785999999992,51.981101999999964],[-79.654175000000009,51.986655999999982],[-79.650832999999977,51.991936000000067],[-79.633895999999993,52.017493999999942],[-79.629439999999988,52.022217000000126],[-79.62332200000003,52.025269000000037],[-79.61471599999993,52.023048000000131],[-79.608611999999994,52.01998900000001],[-79.603881999999942,52.016106000000036],[-79.596114999999998,52.013611000000026],[-79.585281000000009,52.012772000000041],[-79.567779999999971,52.014999000000103],[-79.538329999999974,52.023323000000005],[-79.408889999999985,52.071938000000046],[-79.396666999999866,52.077217000000019],[-79.383895999999936,52.090827999999988],[-79.345551,52.108604000000128],[-79.338332999999977,52.110275000000001],[-79.297225999999966,52.091933999999981],[-79.277221999999881,52.090546000000074],[-79.269729999999925,52.08776899999998],[-79.263625999999988,52.083878000000084],[-79.252791999999999,52.071380999999917]],[[-131.01889,51.946098000000063],[-131.02166699999998,51.940825999999959],[-131.02917500000001,51.941375999999991],[-131.03695700000003,51.944434999999999],[-131.04861499999998,51.951385000000016],[-131.07415800000001,51.970543000000134],[-131.09500099999997,51.989989999999977],[-131.10165399999994,52.00277699999998],[-131.120544,52.055549999999982],[-131.12719699999997,52.095543000000021],[-131.126373,52.106941000000006],[-131.12249800000001,52.124710000000107],[-131.11639400000001,52.148048000000017],[-131.11026000000004,52.151099999999929],[-131.10192899999998,52.151932000000045],[-131.08361799999989,52.151382000000012],[-131.07720900000004,52.150268999999923],[-131.00945999999999,52.102776000000006],[-130.99249299999991,52.060822000000087],[-131.00473,52.005829000000062],[-131.01889,51.946098000000063]],[[-127.96278399999989,52.074714999999912],[-128.05111699999992,52.07416500000005],[-128.06222500000001,52.074996999999996],[-128.07638499999996,52.079994000000113],[-128.09387199999998,52.090546000000074],[-128.10583500000001,52.100273000000016],[-128.10888699999992,52.105270000000132],[-128.12081899999998,52.141936999999928],[-128.11471599999987,52.14916199999999],[-128.10693400000002,52.152489000000116],[-128.03167699999995,52.163292000000126],[-128.01583900000003,52.164711000000125],[-127.89111299999996,52.171660999999972],[-127.88110399999999,52.172218000000044],[-127.87917299999998,52.166664000000026],[-127.88971700000002,52.131103999999993],[-127.89334100000002,52.126938000000052],[-127.94360399999999,52.079163000000051],[-127.94721999999996,52.075829000000113],[-127.96278399999989,52.074714999999912]],[[-128.21194499999996,52.015549000000135],[-128.22082499999999,52.014442000000031],[-128.23858599999994,52.014717000000076],[-128.2463679999999,52.016662999999937],[-128.25308199999995,52.019714000000135],[-128.29110699999995,52.101936000000137],[-128.29415899999998,52.113608999999997],[-128.29168700000002,52.118881000000101],[-128.25280799999996,52.171379000000059],[-128.24444600000004,52.179993000000138],[-128.23971599999993,52.184158000000139],[-128.23193399999997,52.187492000000134],[-128.18804899999998,52.193604000000107],[-128.16223100000002,52.196655000000135],[-128.15307599999988,52.195267000000001],[-128.14779699999997,52.191658000000018],[-128.14584399999995,52.186104],[-128.1480709999999,52.183327000000133],[-128.15472399999999,52.159431000000041],[-128.15612799999997,52.153320000000122],[-128.15862999999996,52.11971299999999],[-128.154449,52.108604000000128],[-128.15139799999997,52.103882000000056],[-128.14752199999998,52.092766000000097],[-128.15112299999993,52.081108000000086],[-128.20611600000001,52.01888300000013],[-128.21194499999996,52.015549000000135]],[[-128.42834499999992,52.13749700000011],[-128.44415300000003,52.134163000000115],[-128.44638099999997,52.13499500000006],[-128.50472999999994,52.16027100000008],[-128.50918599999994,52.16443600000008],[-128.51113899999996,52.169990999999982],[-128.50863600000002,52.175552000000039],[-128.50527999999997,52.180274999999995],[-128.50058000000001,52.184158000000139],[-128.45138499999996,52.217209000000082],[-128.448059,52.21915400000006],[-128.43331899999998,52.223320000000001],[-128.41641200000004,52.226379000000122],[-128.40972899999997,52.224991000000045],[-128.40640299999995,52.2227630000001],[-128.40527299999997,52.218596999999988],[-128.4100039999999,52.214714000000072],[-128.40777599999996,52.15277100000003],[-128.408905,52.149437000000034],[-128.41363499999994,52.145270999999923],[-128.42834499999992,52.13749700000011]],[[-128.29998799999998,52.133606000000043],[-128.308044,52.128875999999991],[-128.31362899999999,52.129714999999976],[-128.36499000000003,52.162491000000102],[-128.37304699999999,52.185265000000072],[-128.378601,52.213608000000022],[-128.37832599999996,52.220268000000033],[-128.37719699999991,52.223877000000073],[-128.37027,52.228600000000029],[-128.35665900000004,52.235825000000091],[-128.34527600000001,52.238602000000014],[-128.29724099999999,52.237212999999997],[-128.23721299999994,52.222488000000055],[-128.22943099999998,52.220268000000033],[-128.22720300000003,52.218880000000127],[-128.22610499999996,52.216934000000037],[-128.22747799999996,52.212769000000037],[-128.22997999999995,52.209435000000099],[-128.29998799999998,52.133606000000043]],[[-81.476944000000003,52.249161000000072],[-81.48582499999992,52.248329000000126],[-81.646118000000001,52.251389000000017],[-81.687499999999943,52.254997000000117],[-81.706115999999952,52.258049000000028],[-81.710007000000019,52.262496999999996],[-81.695830999999941,52.267212000000029],[-81.578063999999983,52.294716000000051],[-81.551666000000012,52.298050000000046],[-81.541672000000005,52.296661000000029],[-81.493057000000022,52.283881999999949],[-81.480559999999969,52.277489000000003],[-81.475280999999995,52.27388000000002],[-81.471664000000033,52.268051000000014],[-81.468063000000029,52.263054000000068],[-81.467772999999966,52.256942999999978],[-81.470839999999953,52.252220000000023],[-81.476944000000003,52.249161000000072]],[[-127.924713,52.174164000000133],[-127.93360899999999,52.173049999999932],[-128.036407,52.177489999999977],[-128.05416899999994,52.180550000000039],[-128.07971199999997,52.186377999999934],[-128.08639500000004,52.188599000000067],[-128.09277299999991,52.19221500000009],[-128.16696199999996,52.244713000000104],[-128.17001299999998,52.249718000000144],[-128.15862999999996,52.256386000000077],[-128.06945799999994,52.294716000000051],[-128.0477909999999,52.300545000000056],[-128.04000899999994,52.301659000000029],[-127.97944599999994,52.296661000000029],[-127.97277800000001,52.295273000000122],[-127.96193700000003,52.289436000000137],[-127.95861799999989,52.287498000000028],[-127.95111099999997,52.279716000000064],[-127.90943899999996,52.210274000000027],[-127.90750100000002,52.204712000000086],[-127.90666199999998,52.198600999999996],[-127.91055299999988,52.186377999999934],[-127.91776999999996,52.176940999999999],[-127.924713,52.174164000000133]],[[-128.18444799999992,52.278602999999976],[-128.20361299999996,52.277489000000003],[-128.21026599999993,52.278327999999988],[-128.21362299999998,52.279716000000064],[-128.18917799999986,52.330826000000116],[-128.18307499999997,52.339714000000129],[-128.11471599999987,52.41832700000009],[-128.11111499999998,52.421661000000086],[-128.10443099999992,52.421379000000002],[-128.09997599999991,52.418602000000135],[-128.09359699999999,52.411658999999929],[-128.09249899999998,52.408324999999934],[-128.08526599999999,52.396385000000066],[-128.05917399999998,52.352219000000048],[-128.05694600000004,52.346100000000035],[-128.05526699999996,52.334991000000116],[-128.05667099999994,52.328880000000083],[-128.06140099999999,52.324715000000083],[-128.15194700000001,52.282211000000075],[-128.18444799999992,52.278602999999976]],[[-127.72444199999995,51.97693600000008],[-127.87082699999991,51.944709999999986],[-127.87970699999994,51.94499200000007],[-127.886124,51.947768999999994],[-127.89167800000001,51.951385000000016],[-127.89472999999992,51.956100000000049],[-127.89943700000003,51.973320000000001],[-127.90110799999991,51.985824999999977],[-127.90055799999988,51.999435000000005],[-127.88110399999999,52.078880000000083],[-127.87361099999993,52.094994000000042],[-127.85138699999999,52.141380000000026],[-127.82833900000003,52.175827000000027],[-127.817497,52.191375999999934],[-127.79750100000001,52.213882000000126],[-127.78916899999996,52.221930999999984],[-127.75334199999998,52.245827000000077],[-127.74527,52.247772000000055],[-127.699997,52.257216999999912],[-127.68083199999995,52.258888000000013],[-127.65943900000002,52.259163000000001],[-127.65055799999999,52.260276999999974],[-127.58640300000002,52.281105000000082],[-127.51666299999999,52.304436000000123],[-127.51000999999985,52.306938000000002],[-127.46056399999998,52.345824999999991],[-127.45694700000001,52.350548000000003],[-127.45612299999988,52.362213000000054],[-127.45694700000001,52.368324000000143],[-127.45333900000003,52.373046999999929],[-127.4177699999999,52.385269000000108],[-127.36277799999999,52.403876999999966],[-127.26390100000003,52.436653000000092],[-127.25945300000001,52.435265000000015],[-127.23473399999995,52.416939000000013],[-127.20777899999996,52.344711000000018],[-127.21056399999992,52.33526599999999],[-127.218887,52.325829000000056],[-127.23222399999992,52.313049000000092],[-127.24749800000001,52.301933000000133],[-127.27084399999995,52.288605000000132],[-127.28916899999996,52.279433999999981],[-127.30304699999999,52.274162000000047],[-127.30999800000001,52.271659999999997],[-127.32584400000002,52.268051000000014],[-127.36193800000001,52.264717000000019],[-127.42582699999997,52.24610100000001],[-127.43971299999993,52.240829000000076],[-127.44526699999994,52.23832699999997],[-127.57972699999999,52.177216000000044],[-127.58444199999991,52.173324999999977],[-127.58805799999999,52.167770000000075],[-127.59631300000001,52.151793999999995],[-127.65416700000003,52.123877999999991],[-127.68694299999993,52.074440000000095],[-127.69193999999993,52.06360600000005],[-127.70111099999991,52.041107000000068],[-127.70388800000001,52.028877000000136],[-127.699997,52.017768999999987],[-127.69915799999995,52.01138300000008],[-127.699432,52.00471500000009],[-127.70194999999995,51.998604],[-127.708054,51.988327000000027],[-127.71749899999998,51.980270000000075],[-127.72444199999995,51.97693600000008]],[[-128.66860999999994,52.266388000000063],[-128.67556799999994,52.266388000000063],[-128.72055099999994,52.306938000000002],[-128.724152,52.311378000000047],[-128.72637899999995,52.316101000000003],[-128.74832200000003,52.369156000000089],[-128.76196299999998,52.41832700000009],[-128.76251200000002,52.423325000000091],[-128.76196299999998,52.429160999999965],[-128.759186,52.449432000000002],[-128.75280799999996,52.467766000000097],[-128.74722299999996,52.471656999999993],[-128.68139599999989,52.482208000000071],[-128.67443800000001,52.482208000000071],[-128.65029899999996,52.474434000000088],[-128.63696299999992,52.468597000000102],[-128.624146,52.461662000000103],[-128.61914099999996,52.457771000000037],[-128.615814,52.453606000000036],[-128.61608899999993,52.44860099999994],[-128.61331199999995,52.364441000000056],[-128.61471599999993,52.353325000000098],[-128.61776699999996,52.329994000000056],[-128.61999500000002,52.323883000000137],[-128.62554899999992,52.311378000000047],[-128.62997399999995,52.305550000000096],[-128.66860999999994,52.266388000000063]],[[-128.471924,52.492767000000129],[-128.46777299999991,52.483047000000056],[-128.46499599999993,52.47304500000007],[-128.46417199999996,52.46804800000001],[-128.46499599999993,52.462212000000136],[-128.46722399999999,52.456099999999935],[-128.47082499999993,52.449714999999969],[-128.48055999999991,52.440269000000001],[-128.4869379999999,52.437209999999993],[-128.49414100000001,52.434989999999971],[-128.50945999999999,52.432213000000104],[-128.51806599999998,52.431938000000059],[-128.59553499999998,52.460140000000081],[-128.66314699999987,52.491927999999973],[-128.75500499999998,52.487770000000012],[-128.77557399999995,52.49332400000003],[-128.78472899999991,52.496101000000124],[-128.80944799999997,52.515549000000078],[-128.81304899999992,52.519989000000066],[-128.81390399999998,52.524994000000106],[-128.811127,52.536941999999954],[-128.808899,52.543053000000043],[-128.73889199999996,52.587494000000049],[-128.732483,52.590545999999961],[-128.72470099999998,52.59165999999999],[-128.5781859999999,52.5936430000001],[-128.56750499999998,52.622490000000028],[-128.53527800000001,52.647217000000069],[-128.53167699999995,52.62110100000001],[-128.52890000000002,52.611107000000004],[-128.52194199999997,52.591377000000023],[-128.50085399999995,52.543610000000115],[-128.48889199999991,52.52027099999998],[-128.48526000000004,52.515831000000105],[-128.47970599999996,52.506660000000011],[-128.471924,52.492767000000129]],[[-131.46444700000001,52.627487000000087],[-131.58554099999998,52.585266000000104],[-131.59359699999999,52.585823000000005],[-131.60137900000001,52.588600000000099],[-131.6119379999999,52.596099999999979],[-131.62359600000002,52.608886999999982],[-131.70971700000001,52.705269000000044],[-131.691101,52.724991000000102],[-131.68499799999995,52.728043000000014],[-131.65945399999993,52.730270000000075],[-131.48471099999995,52.736938000000066],[-131.475281,52.736655999999982],[-131.46859699999999,52.733330000000137],[-131.46887200000003,52.73054500000012],[-131.44943199999994,52.714996000000042],[-131.44027699999998,52.706940000000145],[-131.43917799999991,52.701660000000061],[-131.44137599999999,52.684158000000025],[-131.45443699999998,52.636383000000023],[-131.45834399999995,52.630821000000083],[-131.46444700000001,52.627487000000087]],[[-128.43029799999994,52.368050000000039],[-128.44168099999996,52.368050000000039],[-128.45611599999989,52.373046999999929],[-128.46026599999999,52.37721300000004],[-128.46664399999986,52.386939999999981],[-128.46777299999991,52.393051000000071],[-128.43777499999999,52.543610000000115],[-128.44973800000002,52.620827000000077],[-128.45056199999999,52.626937999999996],[-128.44168099999996,52.746941000000106],[-128.43917799999997,52.752220000000079],[-128.43582200000003,52.756943000000092],[-128.39001500000001,52.797493000000031],[-128.383331,52.797493000000031],[-128.37332200000003,52.791107000000125],[-128.36276199999998,52.740272999999945],[-128.35861199999988,52.729156000000103],[-128.32138099999992,52.634720000000129],[-128.275848,52.496101000000124],[-128.27502400000003,52.489990000000034],[-128.28640699999994,52.457771000000037],[-128.31140099999999,52.423881999999992],[-128.365814,52.38220999999993],[-128.37164300000001,52.378875999999991],[-128.386414,52.374992000000134],[-128.40335099999993,52.371658000000139],[-128.43029799999994,52.368050000000039]],[[-128.97442599999999,52.453323000000069],[-128.98275799999999,52.453049000000135],[-129.11471599999993,52.556656000000089],[-129.21081499999997,52.64888000000002],[-129.26333599999998,52.710548000000074],[-129.27056899999997,52.719153999999946],[-129.29196200000001,52.761664999999994],[-129.29278599999998,52.766937000000098],[-129.28140299999995,52.81721500000009],[-129.27722199999988,52.823051000000135],[-129.27084400000001,52.826103000000046],[-129.26223799999997,52.826660000000118],[-129.252228,52.825272000000041],[-129.23111,52.81610100000006],[-129.218323,52.809158000000082],[-129.10415599999999,52.74110399999995],[-129.066101,52.714714000000129],[-128.94695999999993,52.626381000000094],[-128.926941,52.610825000000091],[-128.92333999999994,52.606659000000036],[-128.91973899999999,52.602218999999991],[-128.91861,52.527488999999946],[-128.92251599999997,52.515274000000034],[-128.93640099999999,52.480545000000006],[-128.94360399999999,52.469711000000075],[-128.9491579999999,52.465546000000074],[-128.96166999999997,52.459435000000042],[-128.97442599999999,52.453323000000069]],[[-128.26974499999994,52.596939000000134],[-128.27416999999997,52.595543000000077],[-128.27890000000002,52.595824999999991],[-128.28445399999998,52.598602000000028],[-128.28750600000001,52.602776000000063],[-128.28973399999995,52.60833000000008],[-128.29269399999993,52.661549000000036],[-128.32305899999994,52.74110399999995],[-128.32638499999996,52.771378000000027],[-128.32501199999996,52.776100000000099],[-128.26322900000002,52.784645000000125],[-128.21063200000003,52.798515000000009],[-128.18582199999992,52.826942000000031],[-128.177795,52.826103000000046],[-128.17334,52.823326000000122],[-128.17028799999997,52.817771999999991],[-128.17584199999999,52.787773000000129],[-128.17861899999997,52.776100000000099],[-128.20776399999994,52.704436999999984],[-128.21026599999993,52.698875000000044],[-128.24722299999996,52.620544000000109],[-128.24972500000001,52.616660999999965],[-128.26141399999995,52.604439000000013],[-128.26974499999994,52.596939000000134]],[[-131.63973999999996,52.828049000000135],[-131.64666699999992,52.825829000000113],[-131.64889499999998,52.826103000000046],[-131.66973899999999,52.819160000000068],[-131.70834400000001,52.811378000000104],[-131.72387700000002,52.808327000000077],[-131.73306299999996,52.80860100000001],[-131.81332399999997,52.82027400000004],[-131.82388300000002,52.82777400000009],[-131.83138999999994,52.841934000000037],[-131.83029199999999,52.846656999999993],[-131.82250999999991,52.848045000000127],[-131.74859599999996,52.853324999999984],[-131.72860699999995,52.851387000000045],[-131.644745,52.835548000000131],[-131.636414,52.832497000000103],[-131.63973999999996,52.828049000000135]],[[-128.50527999999997,52.641106000000036],[-128.5125119999999,52.641106000000036],[-128.51611300000002,52.645271000000037],[-128.52029400000004,52.654991000000109],[-128.54000899999994,52.703323000000012],[-128.53500399999996,52.758049000000085],[-128.53362999999996,52.769157000000121],[-128.51391599999999,52.860825000000034],[-128.51028400000001,52.867493000000024],[-128.50613399999992,52.873047000000042],[-128.49887100000001,52.87082700000002],[-128.49194299999994,52.868599000000074],[-128.48553499999997,52.865273000000002],[-128.471924,52.853049999999996],[-128.46832299999994,52.848602000000028],[-128.45083599999992,52.805267000000015],[-128.45361300000002,52.782493999999986],[-128.45443699999998,52.776939000000084],[-128.50167799999991,52.647491000000002],[-128.50527999999997,52.641106000000036]],[[-129.61053500000003,52.954993999999999],[-129.61831699999999,52.953606000000093],[-129.62222299999996,52.958046000000081],[-129.65139799999992,53.013329000000113],[-129.650848,53.01888300000013],[-129.62441999999993,53.02388000000002],[-129.615814,53.024436999999921],[-129.60720800000001,53.022766000000047],[-129.57055699999989,53.013611000000026],[-129.5625,53.010551000000135],[-129.55749499999996,53.006660000000068],[-129.55667099999999,53.001389000000017],[-129.55862400000001,52.997490000000028],[-129.55334500000004,52.984993000000031],[-129.561127,52.970543000000077],[-129.59637499999991,52.959435000000099],[-129.61053500000003,52.954993999999999]],[[-129.531677,53.010551000000135],[-129.53890999999993,53.008049000000085],[-129.546967,53.008888000000013],[-129.58859299999995,53.024162000000103],[-129.64001500000001,53.044158999999979],[-129.63391099999996,53.056099000000074],[-129.56277499999993,53.053046999999992],[-129.52444500000001,53.033606999999961],[-129.51779199999993,53.029991000000109],[-129.51724200000001,53.024993999999992],[-129.52056900000002,53.018326000000059],[-129.531677,53.010551000000135]],[[-55.763061999999991,53.029434000000037],[-55.853333000000021,53.01527399999992],[-55.861945999999989,53.015549000000135],[-55.870834000000002,53.018599999999992],[-55.876388999999961,53.02748900000006],[-55.876105999999993,53.032768000000033],[-55.872771999999998,53.043883999999991],[-55.869719999999973,53.04972100000009],[-55.857779999999991,53.06749700000006],[-55.854445999999996,53.071663000000001],[-55.848609999999951,53.076102999999989],[-55.808333999999945,53.09137700000008],[-55.800551999999982,53.093605000000025],[-55.79222900000002,53.093048000000124],[-55.788612000000001,53.089714000000129],[-55.788337999999953,53.086655000000007],[-55.749167999999997,53.069160000000011],[-55.748885999999914,53.064712999999927],[-55.755004999999869,53.038604999999961],[-55.756667999999991,53.033051],[-55.763061999999991,53.029434000000037]],[[-129.60247799999996,53.057213000000047],[-129.61080899999996,53.056655999999975],[-129.69250499999993,53.075829000000056],[-129.70193499999999,53.078330999999935],[-129.70834399999995,53.08166499999993],[-129.72305299999999,53.099159000000043],[-129.73611500000004,53.12221500000004],[-129.73831200000001,53.12721300000004],[-129.73275799999999,53.131103999999937],[-129.716949,53.133881000000031],[-129.69973800000002,53.134995000000004],[-129.66805999999991,53.136108000000092],[-129.66250600000001,53.135551000000021],[-129.65444899999994,53.132767000000058],[-129.650848,53.130547000000035],[-129.64416499999999,53.12721300000004],[-129.62081899999998,53.112494999999967],[-129.615814,53.108604000000071],[-129.58804299999991,53.084717000000069],[-129.58416699999998,53.08027600000014],[-129.58193999999997,53.075554000000068],[-129.58612099999999,53.069992000000127],[-129.59664900000001,53.061104000000114],[-129.60247799999996,53.057213000000047]],[[-79.909164000000033,53.081940000000145],[-79.919723999999974,53.081940000000145],[-79.926102000000014,53.084991000000002],[-79.92971799999998,53.089432000000102],[-79.932220000000029,53.094436999999971],[-79.938599000000011,53.122490000000084],[-79.938599000000011,53.134995000000004],[-79.93499799999995,53.147774000000084],[-79.930557000000022,53.152489000000116],[-79.906386999999995,53.172768000000076],[-79.897781000000009,53.174438000000009],[-79.887511999999958,53.174438000000009],[-79.877486999999974,53.173050000000103],[-79.866393999999957,53.16944100000012],[-79.858886999999868,53.166939000000013],[-79.846114999999941,53.160545000000013],[-79.795836999999892,53.116386000000034],[-79.789444000000003,53.106941000000006],[-79.787215999999944,53.101936000000137],[-79.789444000000003,53.095825000000048],[-79.796951000000035,53.093605000000025],[-79.835555999999997,53.083878000000084],[-79.843886999999995,53.082214000000079],[-79.909164000000033,53.081940000000145]],[[-129.4324949999999,53.151382000000012],[-129.35278299999993,53.072220000000073],[-129.29000899999988,52.993607000000054],[-129.28750600000001,52.978043000000014],[-129.28945899999985,52.971930999999984],[-129.29583700000001,52.968880000000013],[-129.31222499999996,52.966934000000094],[-129.341095,52.973320000000001],[-129.41418499999997,53.010551000000135],[-129.41915900000004,53.014442000000031],[-129.42138699999998,53.019157000000064],[-129.42471299999994,53.040276000000063],[-129.42916899999994,53.04972100000009],[-129.475281,53.101936000000137],[-129.50527999999997,53.126380999999981],[-129.51196300000004,53.129714999999976],[-129.52194199999985,53.131103999999937],[-129.53750600000001,53.128326000000129],[-129.54473899999994,53.128326000000129],[-129.54724099999993,53.133049000000142],[-129.54806500000001,53.14916199999999],[-129.546967,53.16027100000008],[-129.5386049999999,53.171660999999915],[-129.52166699999992,53.18360100000001],[-129.51446499999997,53.185822000000144],[-129.49859599999996,53.188599000000011],[-129.49026499999997,53.188881000000094],[-129.47997999999995,53.187767000000122],[-129.470551,53.185265000000015],[-129.46276899999992,53.179993000000081],[-129.4324949999999,53.151382000000012]],[[-81.106109999999887,53.199714999999969],[-81.087783999999886,53.17943600000001],[-81.045272999999952,53.148605000000089],[-80.978881999999942,53.113052000000039],[-80.973617999999988,53.109436000000017],[-80.809433000000013,52.97693600000008],[-80.775008999999955,52.944434999999942],[-80.763335999999924,52.931381000000044],[-80.669158999999979,52.776939000000084],[-80.667769999999962,52.771935000000099],[-80.667496000000028,52.759438000000102],[-80.670836999999892,52.745827000000133],[-80.673049999999932,52.740547000000049],[-80.699722000000008,52.69609800000012],[-80.705001999999979,52.692214999999976],[-80.712509000000011,52.689156000000025],[-80.720551,52.688324000000136],[-80.731673999999998,52.688881000000038],[-80.739166000000012,52.691376000000048],[-80.749161000000015,52.698875000000044],[-80.753066999999987,52.703323000000012],[-80.765839000000028,52.709717000000012],[-80.797500999999954,52.719153999999946],[-80.815001999999993,52.723045000000013],[-80.861388999999917,52.731102000000021],[-80.898894999999982,52.737495000000138],[-80.918883999999991,52.740272999999945],[-80.995543999999938,52.746101000000067],[-81.015563999999927,52.748604000000057],[-81.024444999999957,52.750549000000035],[-81.138061999999934,52.788048000000117],[-81.15306099999998,52.793052999999986],[-81.198882999999967,52.814156000000082],[-81.212783999999942,52.819991999999957],[-81.251953000000015,52.832497000000103],[-81.287216000000001,52.83998900000006],[-81.369155999999862,52.856102000000078],[-81.41722099999987,52.863052000000096],[-81.58444199999991,52.889160000000061],[-81.649170000000026,52.907211000000075],[-81.763625999999931,52.937767000000008],[-81.781386999999995,52.941658000000075],[-81.811660999999958,52.945267000000058],[-81.834166999999866,52.946381000000031],[-81.881377999999984,52.954162999999994],[-81.916655999999989,52.96166199999999],[-81.933318999999983,52.965828000000045],[-81.949721999999952,52.971375000000023],[-81.962783999999886,52.97693600000008],[-82.049987999999985,53.014442000000031],[-82.056655999999862,53.017494000000113],[-82.061661000000015,53.021102999999925],[-82.063323999999909,53.026657000000114],[-82.060271999999998,53.031937000000028],[-82.053329000000019,53.041938999999957],[-82.049164000000019,53.046661000000029],[-81.974716000000001,53.113883999999985],[-81.965285999999935,53.12221500000004],[-81.954177999999956,53.129990000000134],[-81.910827999999981,53.158882000000062],[-81.892226999999991,53.168326999999977],[-81.864440999999999,53.178604000000121],[-81.848052999999936,53.181664000000012],[-81.826110999999969,53.181381000000044],[-81.714721999999881,53.188599000000011],[-81.543059999999969,53.209160000000054],[-81.385283999999899,53.224990999999989],[-81.374999999999943,53.224990999999989],[-81.295546999999999,53.217765999999983],[-81.116394000000014,53.200829000000113],[-81.106109999999887,53.199714999999969]],[[-131.76223800000002,53.196655000000078],[-131.6305539999999,53.084159999999997],[-131.595551,53.046103999999957],[-131.59304800000001,53.041382000000056],[-131.59472700000003,53.035271000000023],[-131.60165399999994,53.033051],[-131.61026000000004,53.032211000000132],[-131.62887599999999,53.032494000000099],[-131.63973999999996,53.034439000000077],[-131.73666400000002,53.053879000000052],[-131.75558499999994,53.058601000000124],[-131.77444500000001,53.068886000000077],[-131.78390499999989,53.071381000000088],[-131.79473899999994,53.073051000000078],[-131.81362899999999,53.073607999999979],[-131.82971199999992,53.071381000000088],[-131.94332900000001,53.054993000000024],[-131.96472199999999,53.046386999999925],[-131.91195700000003,53.005271999999991],[-131.90835599999991,53.011108000000036],[-131.89944499999996,53.019714000000135],[-131.88806199999999,53.026939000000027],[-131.87027,53.037498000000028],[-131.85611,53.04222100000004],[-131.84777800000001,53.043052999999929],[-131.83111600000001,53.043052999999929],[-131.81167600000003,53.039718999999991],[-131.662781,53.00777400000004],[-131.644745,53.003882999999973],[-131.62860099999995,52.998328999999956],[-131.61498999999998,52.991661000000022],[-131.609711,52.988045000000113],[-131.59805299999999,52.97526600000009],[-131.59582499999993,52.964714000000072],[-131.59750399999996,52.958602999999982],[-131.61554000000001,52.920273000000066],[-131.662781,52.882210000000043],[-131.66805999999997,52.878043999999932],[-131.68057299999992,52.871658000000025],[-131.68749999999994,52.869155999999975],[-131.70443699999993,52.867767000000129],[-131.80221599999999,52.86471599999993],[-131.80862400000001,52.865829000000019],[-131.833618,52.88499500000006],[-131.849152,52.901932000000102],[-131.87027,52.922768000000076],[-131.88473499999992,52.934433000000013],[-131.89001500000001,52.93832400000008],[-131.898346,52.941100999999946],[-131.906677,52.940269000000058],[-131.93859899999995,52.934990000000084],[-131.94473299999999,52.931664000000012],[-131.982483,52.879715000000033],[-131.97860700000001,52.875549000000092],[-131.96859699999999,52.874435000000119],[-131.95278899999988,52.875267000000065],[-131.94528200000002,52.876938000000109],[-131.93139599999995,52.881660000000011],[-131.85638399999993,52.856102000000078],[-131.77557399999989,52.716660000000047],[-131.767517,52.713882000000012],[-131.73361199999999,52.69860100000011],[-131.72692900000004,52.695541000000048],[-131.72305299999988,52.691101000000003],[-131.683899,52.642220000000009],[-131.68139600000001,52.637496999999996],[-131.65945399999993,52.581665000000044],[-131.57278400000001,52.529991000000052],[-131.56527700000004,52.531662000000097],[-131.55667099999994,52.532211000000018],[-131.54583700000001,52.530273000000079],[-131.48193400000002,52.507773999999984],[-131.46749899999992,52.501389000000131],[-131.42361499999998,52.460823000000119],[-131.42748999999998,52.414993000000095],[-131.39849899999996,52.377827000000025],[-131.39533999999998,52.375492000000122],[-131.39016699999996,52.374660000000006],[-131.36749299999991,52.381827999999985],[-131.36549400000001,52.384491000000025],[-131.36599699999988,52.390986999999996],[-131.36715700000002,52.397160000000042],[-131.357483,52.403320000000065],[-131.35833699999989,52.414153999999996],[-131.35305799999998,52.41832700000009],[-131.32833900000003,52.431107000000054],[-131.31304899999998,52.434158000000082],[-131.27252199999998,52.438881000000038],[-131.25558499999988,52.440269000000001],[-131.23638900000003,52.439156000000082],[-131.23248299999995,52.434714999999983],[-131.24749800000001,52.365829000000133],[-131.25085399999995,52.359160999999972],[-131.25836200000003,52.34777100000008],[-131.26306199999999,52.34276600000004],[-131.30311599999993,52.332100000000025],[-131.31977799999993,52.335106000000053],[-131.33059700000001,52.332770999999923],[-131.33248899999995,52.293610000000001],[-131.32833900000003,52.284995999999978],[-131.32443199999989,52.280822999999998],[-131.27139299999999,52.277771000000087],[-131.259186,52.284164000000033],[-131.25613399999992,52.290833000000077],[-131.24832199999997,52.302216000000101],[-131.17971799999998,52.317772000000048],[-131.17193599999996,52.319442999999922],[-131.136414,52.311378000000047],[-131.09500099999997,52.286110000000122],[-131.01501500000001,52.225548000000117],[-131.00750699999998,52.217209000000082],[-131.00527999999991,52.206657000000064],[-131.01168799999988,52.193604000000107],[-131.01556400000004,52.187767000000122],[-131.024719,52.178047000000049],[-131.030304,52.173882000000049],[-131.036407,52.170830000000137],[-131.04305999999991,52.168326999999977],[-131.11512799999997,52.168289000000016],[-131.16610700000001,52.125549000000092],[-131.18057299999987,52.121658000000025],[-131.26473999999985,52.11971299999999],[-131.29888900000003,52.150268999999923],[-131.36025999999993,52.189156000000139],[-131.36694299999999,52.192490000000134],[-131.38946499999997,52.205826000000059],[-131.41168200000004,52.220543000000077],[-131.55111699999998,52.333878000000084],[-131.57333399999993,52.360824999999977],[-131.58194000000003,52.379990000000134],[-131.582764,52.385269000000108],[-131.58056599999986,52.390548999999965],[-131.57778899999994,52.393607999999972],[-131.57083099999994,52.396102999999982],[-131.54806500000001,52.400543000000027],[-131.53973399999995,52.401100000000099],[-131.52972399999993,52.400269000000094],[-131.52029400000004,52.397774000000027],[-131.56140099999999,52.431664000000126],[-131.66168199999998,52.478324999999984],[-131.67916899999994,52.483604000000128],[-131.70944199999991,52.491104000000007],[-131.76223800000002,52.50499700000006],[-131.77529899999996,52.51166500000005],[-131.89279199999999,52.582771000000093],[-132.01751699999994,52.677490000000034],[-132.08194000000003,52.727485999999942],[-132.08471700000001,52.732208000000014],[-132.060272,52.755272000000048],[-132.01028399999996,52.775269000000094],[-132.00250199999999,52.776939000000084],[-131.993042,52.774436999999978],[-131.97305299999999,52.764717000000076],[-131.96389799999997,52.756660000000124],[-131.94445799999988,52.735549999999989],[-131.93362400000001,52.728043000000014],[-131.92694099999994,52.724709000000075],[-131.91751099999988,52.722487999999942],[-131.91723599999995,52.725822000000107],[-131.93722499999996,52.763611000000083],[-131.93972799999995,52.768326000000116],[-131.95166,52.781105000000139],[-131.96221899999995,52.788605000000018],[-131.96887200000003,52.791939000000013],[-132.03417999999994,52.812767000000122],[-132.06167599999998,52.813881000000094],[-132.05804399999994,52.804161000000022],[-132.05557299999987,52.793610000000058],[-132.10247800000002,52.749435000000062],[-132.11026000000004,52.748046999999985],[-132.12026999999995,52.748877999999991],[-132.12747199999995,52.750832000000003],[-132.21417199999991,52.804710000000114],[-132.21945199999999,52.808327000000077],[-132.22888199999994,52.816382999999973],[-132.31640599999997,52.902214000000129],[-132.34414700000002,52.931664000000012],[-132.34695399999993,52.936377999999991],[-132.34304799999995,52.942214999999976],[-132.32971199999992,52.94582400000013],[-132.31362899999999,52.948043999999982],[-132.25558499999994,52.954711999999915],[-132.24527,52.953880000000026],[-132.23803699999991,52.951935000000049],[-132.16778599999992,52.928047000000106],[-132.15640300000001,52.958885000000066],[-132.11248799999998,52.987770000000125],[-132.11026000000004,52.993049999999982],[-132.11276199999992,52.997772000000055],[-132.11944599999998,53.00110600000005],[-132.25613399999997,53.028877000000136],[-132.26696799999996,53.030823000000055],[-132.29501300000004,53.031105000000082],[-132.41195700000003,53.031937000000028],[-132.47970599999996,53.027214000000015],[-132.49609399999991,53.032768000000033],[-132.50778199999996,53.040549999999996],[-132.51196300000004,53.044716000000051],[-132.55279499999995,53.089714000000129],[-132.55557299999992,53.094436999999971],[-132.56362899999999,53.139160000000004],[-132.56222500000001,53.145271000000093],[-132.55667099999994,53.149436999999978],[-132.54916399999991,53.151100000000099],[-132.53945899999991,53.148880000000077],[-132.52584799999994,53.142220000000066],[-132.50140399999998,53.133881000000031],[-132.48165899999998,53.130820999999969],[-132.45111099999986,53.128044000000102],[-132.41363499999989,53.127486999999974],[-132.378601,53.129433000000063],[-132.21081499999997,53.141662999999994],[-132.07083099999994,53.153877000000023],[-132.06390399999987,53.156380000000013],[-132.05777,53.159714000000008],[-132.03057899999999,53.179993000000081],[-132.00750700000003,53.1947100000001],[-131.92834500000004,53.230545000000006],[-131.92138699999992,53.233047000000056],[-131.811127,53.253608999999983],[-131.80194099999994,53.253326000000015],[-131.794464,53.251388999999961],[-131.79055800000003,53.247214999999926],[-131.76223800000002,53.196655000000078]],[[-55.778052999999943,53.289719000000105],[-55.786667000000023,53.288330000000087],[-55.794448999999929,53.291107000000011],[-55.797226000000023,53.295546999999999],[-55.793334999999956,53.300545],[-55.785003999999958,53.303604000000007],[-55.776108000000022,53.300270000000012],[-55.776389999999992,53.295273000000066],[-55.778052999999943,53.289719000000105]],[[-128.68945299999996,53.16443600000008],[-128.67944299999994,53.163047999999947],[-128.67083700000001,53.163605000000075],[-128.65222199999999,53.16276600000009],[-128.64196799999996,53.161377000000073],[-128.62469499999997,53.155548000000067],[-128.60555999999997,53.145271000000093],[-128.57611099999991,53.105270000000132],[-128.53167699999995,53.021102999999925],[-128.52890000000002,53.011108000000036],[-128.52056900000002,52.959435000000099],[-128.51834099999991,52.943604000000107],[-128.51779199999987,52.927489999999977],[-128.51834099999991,52.911102000000142],[-128.52001999999999,52.899719000000118],[-128.52279699999991,52.888046000000088],[-128.57028199999996,52.691376000000048],[-128.57223499999992,52.685265000000129],[-128.57528699999995,52.679993000000024],[-128.59359699999993,52.659156999999993],[-128.58526599999988,52.659431000000097],[-128.57748400000003,52.65638000000007],[-128.58581499999991,52.6322100000001],[-128.59222399999993,52.613884000000098],[-128.59722899999991,52.609161000000086],[-128.60497999999995,52.607773000000009],[-128.74887099999995,52.597214000000122],[-128.75167799999997,52.60083000000003],[-128.74859600000002,52.748604000000057],[-128.74804699999999,52.754165999999998],[-128.74444600000004,52.760826000000009],[-128.69250499999998,52.856102000000078],[-128.65335099999999,52.892769000000101],[-128.648346,52.89777400000014],[-128.64474499999994,52.904160000000047],[-128.64334099999996,52.915543000000071],[-128.64196799999996,52.948601000000053],[-128.64334099999996,52.958885000000066],[-128.646973,52.963325999999995],[-128.65335099999999,52.96665999999999],[-128.663635,52.968048000000067],[-128.67138699999998,52.96665999999999],[-128.67694099999994,52.962769000000094],[-128.67999299999997,52.957771000000093],[-128.75112899999999,52.835823000000119],[-128.75390600000003,52.830826000000059],[-128.76223800000002,52.810822000000087],[-128.76446499999997,52.804710000000114],[-128.78057899999999,52.739989999999977],[-128.78140299999995,52.734160999999972],[-128.77999899999998,52.72387700000013],[-128.77780200000001,52.718880000000013],[-128.77111799999994,52.704711999999972],[-128.76556400000004,52.695541000000048],[-128.77889999999991,52.66415400000011],[-128.84637499999997,52.653320000000065],[-128.88445999999999,52.648048000000131],[-128.89251699999994,52.64888000000002],[-129,52.697212000000093],[-129.03277600000001,52.719711000000075],[-129.04779099999996,52.731377000000009],[-129.08029199999999,52.772491000000116],[-129.10861199999999,52.812767000000122],[-129.11080899999996,52.817497000000117],[-129.114441,52.821938000000046],[-129.11886600000003,52.83138300000013],[-129.12191799999994,52.852218999999934],[-129.12191799999994,52.863052000000096],[-129.11999500000002,52.869155999999975],[-129.11080899999996,52.877487000000031],[-129.10360699999995,52.879715000000033],[-129.09500100000002,52.880272000000105],[-129.08444199999997,52.878043999999932],[-129.0763849999999,52.87499200000002],[-129.02224699999988,52.905548000000124],[-128.95178199999992,52.973660000000052],[-128.86999499999996,53.021935000000042],[-128.85498000000001,53.025269000000037],[-128.84082000000001,53.029716000000121],[-128.83639499999998,53.03555300000005],[-128.84359699999999,53.044158999999979],[-128.89556899999997,53.08277099999998],[-128.96389799999992,53.121657999999968],[-128.970551,53.124992000000134],[-129.00222799999995,53.136940000000038],[-129.01168799999999,53.139717000000076],[-129.01583900000003,53.133881000000031],[-129.01501499999995,53.128875999999991],[-129.00473,53.109993000000088],[-128.99386599999997,53.097214000000065],[-128.98748799999998,53.095825000000048],[-128.98110999999994,53.09887700000013],[-128.97387700000002,53.101105000000132],[-128.96444699999995,53.100548000000003],[-128.95666499999999,53.097771000000137],[-128.912781,53.073051000000078],[-128.86444099999989,53.038887000000045],[-128.862213,53.034164000000089],[-129.05584699999997,52.909156999999936],[-129.06915299999991,52.90387700000008],[-129.09500100000002,52.902489000000003],[-129.10583500000001,52.904708999999968],[-129.15945399999998,52.919715999999994],[-129.16583299999996,52.923049999999989],[-129.169464,52.927489999999977],[-129.17529300000001,52.936377999999991],[-129.18554700000004,52.955269000000044],[-129.18722499999996,52.965546000000018],[-129.191956,53.00777400000004],[-129.19137599999999,53.013329000000113],[-129.18804899999992,53.024162000000103],[-129.16665599999993,53.06610100000006],[-129.16168200000004,53.0711060000001],[-129.15472399999999,53.073326000000066],[-129.13165300000003,53.078049000000078],[-129.11804199999989,53.079163000000051],[-129.11749299999991,53.073882999999967],[-129.11804199999989,53.068329000000006],[-129.11499000000003,53.064712999999927],[-129.10861199999999,53.067772000000105],[-129.08248899999995,53.089989000000003],[-129.075287,53.10305000000011],[-129.07333399999999,53.109160999999972],[-129.07055700000001,53.131660000000124],[-129.05889899999988,53.231377000000123],[-129.06027199999988,53.241661000000136],[-129.064728,53.251105999999993],[-129.07193000000001,53.25999500000006],[-129.08221400000002,53.267769000000101],[-129.08972199999994,53.287216000000114],[-129.08612099999999,53.293610000000001],[-129.07971199999997,53.296661000000029],[-129.06664999999992,53.300827000000083],[-129.04305999999997,53.30471],[-129.025848,53.305550000000096],[-129.01861600000001,53.305550000000096],[-128.90084799999994,53.290276000000006],[-128.89138799999989,53.287773000000016],[-128.88137800000004,53.279991000000052],[-128.87777699999992,53.275826000000052],[-128.86389199999991,53.263610999999969],[-128.84359699999999,53.248047000000042],[-128.83221399999996,53.240546999999992],[-128.77529900000002,53.208885000000009],[-128.71167000000003,53.173882000000049],[-128.70526099999989,53.170546999999942],[-128.68945299999996,53.16443600000008]],[[-129.15307599999994,53.098328000000038],[-129.16168200000004,53.097771000000137],[-129.25945999999999,53.09804500000007],[-129.28945899999985,53.101936000000137],[-129.31140099999999,53.116936000000067],[-129.32665999999989,53.128601000000003],[-129.33248900000001,53.13749700000011],[-129.33471699999996,53.142493999999999],[-129.33639500000004,53.152770999999973],[-129.33889799999986,53.179161000000022],[-129.3383179999999,53.184990000000028],[-129.33639500000004,53.191101000000117],[-129.32528699999989,53.216103000000032],[-129.27389500000004,53.328049000000021],[-129.26806599999992,53.331940000000088],[-129.26028399999996,53.333327999999995],[-129.250854,53.333054000000061],[-129.22915599999988,53.328880000000026],[-129.22692899999998,53.326102999999932],[-129.20889299999999,53.321937999999932],[-129.19415299999997,53.315544000000102],[-129.18112199999996,53.308601000000067],[-129.17611699999998,53.30471],[-129.16860999999994,53.296104000000128],[-129.14529399999998,53.22165700000005],[-129.13247699999999,53.118599000000017],[-129.13192699999996,53.11360899999994],[-129.1339109999999,53.107498000000078],[-129.13891599999994,53.102493000000038],[-129.15307599999994,53.098328000000038]],[[-79.942764000000011,53.266936999999984],[-80.009170999999924,53.263885000000073],[-80.018065999999862,53.265830999999991],[-80.024445000000014,53.268883000000073],[-80.081679999999949,53.316101000000003],[-80.083892999999989,53.321106000000043],[-80.085281000000009,53.326942000000088],[-80.073333999999988,53.348877000000073],[-80.068892999999946,53.353325000000041],[-80.061385999999914,53.355553000000043],[-79.999724999999955,53.364716000000044],[-79.944716999999969,53.368050000000039],[-79.950561999999934,53.349716000000058],[-79.951949999999954,53.348327999999981],[-79.913054999999986,53.296104000000128],[-79.91194200000001,53.29055000000011],[-79.913329999999917,53.283051000000114],[-79.920836999999949,53.273048000000074],[-79.927215999999987,53.27027099999998],[-79.942764000000011,53.266936999999984]],[[-129.35833700000001,53.304161000000079],[-129.37441999999999,53.301383999999985],[-129.38363600000002,53.301933000000133],[-129.3875119999999,53.306099000000017],[-129.43499799999995,53.378876000000105],[-129.43307500000003,53.384720000000129],[-129.39501999999999,53.410819999999944],[-129.386414,53.40915700000005],[-129.37970000000001,53.40554800000001],[-129.37387100000001,53.400826000000109],[-129.36663799999991,53.398880000000077],[-129.32861300000002,53.377769000000001],[-129.30557299999998,53.335823000000005],[-129.30334499999992,53.331107999999972],[-129.30749500000002,53.31888600000002],[-129.31249999999989,53.313880999999981],[-129.32693499999999,53.309715000000097],[-129.35833700000001,53.304161000000079]],[[-55.787505999999951,53.394157000000064],[-55.793059999999969,53.391663000000108],[-55.801392000000021,53.392493999999942],[-55.949439999999981,53.430275000000108],[-55.958053999999947,53.434158000000082],[-55.971663999999919,53.445824000000016],[-55.978881999999942,53.454712000000029],[-55.979163999999912,53.459159999999997],[-55.976386999999988,53.463051000000064],[-55.958892999999932,53.472487999999998],[-55.945549000000028,53.478600000000142],[-55.931670999999994,53.483879000000115],[-55.923889000000031,53.485549999999989],[-55.916388999999981,53.485825000000034],[-55.883057000000008,53.486382000000106],[-55.878051999999968,53.486656000000039],[-55.811942999999928,53.483879000000115],[-55.757224999999949,53.468322999999998],[-55.740554999999915,53.462212000000079],[-55.729163999999969,53.455269000000101],[-55.729439000000013,53.450271999999984],[-55.787505999999951,53.394157000000064]],[[-128.94250499999998,53.317497000000003],[-129.11138899999997,53.315826000000129],[-129.12222299999996,53.318054000000132],[-129.12582399999991,53.322495000000004],[-129.13891599999994,53.339989000000116],[-129.14334099999996,53.349716000000058],[-129.14416499999993,53.354996000000142],[-129.14306599999986,53.366104000000121],[-129.14083899999997,53.37221500000004],[-129.13445999999993,53.383880999999974],[-129.08270299999998,53.429259999999999],[-129.05406199999999,53.453601999999989],[-129.05883799999998,53.487965000000145],[-129.051941,53.50499700000006],[-129.04779099999996,53.510551000000021],[-129.03778099999988,53.520271000000093],[-129.02194199999997,53.533882000000062],[-129.015289,53.536658999999986],[-128.99941999999987,53.53943600000008],[-128.988586,53.537216000000058],[-128.984711,53.533051000000057],[-128.98416099999997,53.52777100000003],[-128.98553499999997,53.523048000000017],[-128.98611499999998,53.513054000000011],[-128.98611499999998,53.502220000000136],[-128.9844359999999,53.491661000000079],[-128.97555499999987,53.472762999999986],[-128.95361300000002,53.446655000000021],[-128.94137599999993,53.434158000000082],[-128.93612699999994,53.430275000000108],[-128.90335099999993,53.39138000000014],[-128.90112299999998,53.386658000000068],[-128.90029900000002,53.381378000000041],[-128.91805999999997,53.331383000000017],[-128.92251599999997,53.325828999999999],[-128.92806999999999,53.321663000000115],[-128.94250499999998,53.317497000000003]],[[-79.709732000000031,53.508049000000142],[-79.720276000000013,53.507499999999993],[-79.730559999999969,53.508888000000127],[-79.746947999999918,53.513328999999999],[-79.764724999999942,53.523605000000089],[-79.769729999999925,53.527214000000129],[-79.773620999999991,53.531662000000097],[-79.77027899999996,53.536942000000124],[-79.761397999999929,53.546104000000071],[-79.755004999999983,53.543053000000043],[-79.70695499999988,53.515549000000021],[-79.703338999999914,53.511108000000092],[-79.709732000000031,53.508049000000142]],[[-129.93472299999985,53.484161000000029],[-129.94277999999991,53.482764999999972],[-129.95220899999998,53.483047000000056],[-130.01446499999997,53.501938000000052],[-130.02111799999994,53.505272000000048],[-129.98858599999988,53.528603000000089],[-129.94195599999995,53.551102000000071],[-129.93417399999998,53.552489999999977],[-129.92611699999992,53.551658999999972],[-129.89334099999991,53.545546999999999],[-129.88668799999999,53.542221000000097],[-129.88418599999994,53.537216000000058],[-129.88696300000004,53.534163999999976],[-129.894745,53.521934999999928],[-129.89889499999998,53.516388000000006],[-129.913635,53.501938000000052],[-129.92916899999994,53.488327000000083],[-129.93472299999985,53.484161000000029]],[[-129.87942499999991,53.392768999999987],[-129.72915599999993,53.215271000000087],[-129.73028599999992,53.204163000000108],[-129.73220799999996,53.198044000000095],[-129.74249299999997,53.178329000000076],[-129.75085399999989,53.166939000000013],[-129.75585899999993,53.162209000000018],[-129.76223799999997,53.158882000000062],[-129.86416600000001,53.153046000000018],[-129.91223100000002,53.156380000000013],[-129.93167099999999,53.158043000000077],[-129.93695099999997,53.161933999999974],[-130.08804299999991,53.289436000000137],[-130.11111500000004,53.328049000000021],[-130.16500899999988,53.358330000000137],[-130.20333899999997,53.378876000000105],[-130.24249299999997,53.384163000000058],[-130.261414,53.384720000000129],[-130.28695700000003,53.381378000000041],[-130.29638699999998,53.381660000000068],[-130.30584699999997,53.384163000000058],[-130.31640600000003,53.391937000000041],[-130.40194700000001,53.479988000000048],[-130.52722199999999,53.552216000000044],[-130.52999899999998,53.567771999999991],[-130.52944899999994,53.573326000000009],[-130.52224699999994,53.618599000000074],[-130.52029399999998,53.624709999999993],[-130.50836200000003,53.631935000000055],[-130.459991,53.637496999999996],[-130.450287,53.634995000000117],[-130.39584399999995,53.619438000000059],[-130.39111300000002,53.61693600000001],[-130.37554899999992,53.612212999999997],[-130.27529900000002,53.580276000000026],[-130.20220900000004,53.553878999999938],[-130.14083900000003,53.528877000000023],[-129.97720300000003,53.455550999999957],[-129.94415299999991,53.438598999999954],[-129.93222000000003,53.431380999999988],[-129.92056300000002,53.424164000000019],[-129.88418599999994,53.397217000000126],[-129.87942499999991,53.392768999999987]],[[-129.08639500000004,53.446097999999949],[-129.15750099999997,53.392768999999987],[-129.16778599999998,53.593880000000127],[-129.16583299999996,53.610825000000091],[-129.16305499999999,53.622489999999971],[-129.16082799999998,53.62860100000006],[-129.15307599999994,53.638603000000046],[-129.14724699999994,53.642494000000113],[-129.14083899999997,53.645546000000024],[-129.05249000000003,53.681106999999997],[-129.03860499999985,53.686377999999991],[-129.00805699999995,53.693321000000026],[-128.98330699999991,53.696655000000021],[-128.87554899999998,53.709434999999928],[-128.832764,53.712494000000106],[-128.82388299999997,53.713051000000007],[-128.81887800000004,53.709160000000111],[-128.82110599999999,53.703049000000021],[-128.82360799999998,53.700546000000088],[-128.87222299999991,53.661102000000142],[-128.97970599999996,53.58387799999997],[-128.98638900000003,53.580826000000059],[-128.99221799999992,53.576942000000031],[-129.07556199999993,53.514717000000132],[-129.08554100000003,53.50499700000006],[-129.08999599999999,53.499435000000062],[-129.09359699999993,53.492767000000129],[-129.09414699999996,53.487213000000111],[-129.093323,53.481934000000138],[-129.08889799999997,53.472487999999998],[-129.08526599999993,53.468047999999953],[-129.08306899999997,53.463326000000052],[-129.08221400000002,53.458328000000051],[-129.08276399999988,53.452492000000007],[-129.08639500000004,53.446097999999949]],[[-130.09109499999994,53.569443000000035],[-130.09832800000004,53.566940000000102],[-130.10775799999999,53.567497000000003],[-130.14862099999999,53.571938000000102],[-130.21887199999992,53.587212000000136],[-130.22833299999996,53.589431999999988],[-130.32916299999994,53.618049999999982],[-130.34249899999998,53.624709999999993],[-130.39028899999988,53.669991000000039],[-130.40335099999999,53.682495000000074],[-130.39111300000002,53.699432000000058],[-130.29888899999997,53.796944000000053],[-130.2836299999999,53.79833200000013],[-130.27194199999997,53.797775000000058],[-130.26168799999994,53.796386999999982],[-130.24664299999989,53.790276000000063],[-130.23330699999985,53.783607000000018],[-130.11944600000004,53.686653000000035],[-130.11721799999998,53.681938000000002],[-130.09109499999994,53.569443000000035]],[[-56.86721799999998,53.764998999999932],[-56.948607999999979,53.750000000000057],[-56.982773000000009,53.755271999999991],[-57.01139099999989,53.781105000000139],[-57.014450000000011,53.785553000000107],[-57.012222000000008,53.790276000000063],[-57.006667999999991,53.794716000000108],[-57,53.79833200000013],[-56.984726000000023,53.803879000000109],[-56.966942000000017,53.803879000000109],[-56.863060000000019,53.798050000000103],[-56.84444400000001,53.792496000000085],[-56.847518999999977,53.786644000000138],[-56.86721799999998,53.764998999999932]],[[-129.82611099999991,53.724158999999986],[-129.59722899999997,53.550270000000125],[-129.51611300000002,53.488045000000056],[-129.42471299999994,53.411377000000016],[-129.43472299999996,53.401656999999943],[-129.45165999999995,53.379158000000018],[-129.45498699999996,53.372490000000028],[-129.47415199999995,53.289162000000033],[-129.47387700000002,53.239990000000091],[-129.50668299999995,53.216660000000104],[-129.56390399999998,53.207497000000103],[-129.72582999999992,53.340546000000018],[-129.800568,53.380546999999979],[-129.80721999999997,53.384163000000058],[-129.82223499999986,53.401382000000126],[-129.85833700000001,53.456383000000073],[-129.87719699999997,53.50499700000006],[-129.87026999999995,53.518051000000128],[-129.86999500000002,53.534721000000047],[-129.87026999999995,53.545546999999999],[-129.88391100000001,53.579720000000009],[-129.91607699999992,53.601715000000013],[-129.9192349999999,53.604050000000143],[-129.92489599999999,53.605545000000006],[-129.93022199999996,53.605213000000106],[-129.939728,53.603549999999984],[-129.94305399999985,53.601215000000025],[-129.94605999999987,53.598216999999977],[-129.94555700000001,53.59521500000011],[-129.96139500000004,53.594711000000132],[-129.96554600000002,53.589156999999943],[-129.99941999999993,53.574714999999969],[-130.00750699999998,53.573326000000009],[-130.01611300000002,53.572769000000108],[-130.02694699999989,53.574714999999969],[-130.04028299999993,53.58138300000013],[-130.05166600000001,53.594437000000028],[-130.05639599999995,53.603882000000112],[-130.05584699999991,53.609436000000073],[-130.05166600000001,53.615273000000059],[-130.03085299999987,53.622765000000015],[-129.98288000000002,53.641605000000084],[-129.97805799999992,53.642436999999973],[-129.96240199999994,53.643436000000065],[-129.95622300000002,53.642769000000101],[-129.94955400000003,53.641434000000118],[-129.93505900000002,53.636272000000076],[-129.92938199999998,53.634765999999956],[-129.926895,53.636772000000065],[-129.92820699999993,53.639602999999966],[-129.93440199999992,53.644268000000125],[-129.94956999999994,53.646805000000086],[-129.95996100000002,53.649501999999927],[-129.96726999999993,53.650299000000018],[-129.98693799999995,53.658600000000092],[-130.01889,53.653046000000074],[-130.091949,53.677216000000101],[-130.15695199999999,53.721375000000023],[-130.283905,53.83277099999998],[-130.286407,53.837493999999992],[-130.27917499999995,53.856384000000105],[-130.27029400000004,53.875549000000092],[-130.26641799999999,53.881378000000097],[-130.25472999999994,53.889160000000061],[-130.20166,53.912491000000102],[-130.19445799999994,53.914711000000125],[-130.18640099999999,53.916100000000085],[-130.10916099999992,53.885551000000021],[-129.96444699999995,53.805824000000086],[-129.83139,53.728043000000014],[-129.82611099999991,53.724158999999986]],[[-79.864166000000012,53.906380000000013],[-79.873885999999914,53.90415999999999],[-79.906113000000005,53.913879000000009],[-79.918883999999991,53.920273000000066],[-79.922775000000001,53.924713000000054],[-79.925277999999878,53.929717999999923],[-79.926392000000021,53.935265000000072],[-79.915008999999998,53.933876000000055],[-79.867492999999968,53.919715999999994],[-79.862212999999997,53.915825000000098],[-79.860001000000011,53.910820000000058],[-79.864166000000012,53.906380000000013]],[[-130.14974999999998,53.989159000000086],[-130.16805999999997,53.988884000000098],[-130.179169,53.990829000000076],[-130.19415300000003,53.997214999999983],[-130.20306400000004,54.005271999999934],[-130.21499600000004,54.029160000000104],[-130.21694899999994,54.039436000000137],[-130.21640000000002,54.044998000000078],[-130.21304299999997,54.051659000000029],[-130.20278899999994,54.069160000000011],[-130.19360399999999,54.079720000000123],[-130.18640099999999,54.081940000000145],[-130.17834500000004,54.083328000000051],[-130.16861,54.083054000000118],[-130.15917999999994,54.080551000000128],[-130.15557899999999,54.075554000000011],[-130.14889500000004,54.072220000000016],[-130.14361599999995,54.068328999999949],[-130.13973999999996,54.064156000000025],[-130.13247699999999,54.049995000000024],[-130.12249799999995,54.024993999999992],[-130.1213679999999,54.019989000000123],[-130.12249799999995,54.0086060000001],[-130.12441999999999,54.002495000000067],[-130.13528399999996,53.993607000000054],[-130.14974999999998,53.989159000000086]],[[-130.25918599999994,54.004715000000033],[-130.237213,53.984161000000086],[-130.23330699999985,53.979987999999935],[-130.23083499999996,53.975266000000033],[-130.228882,53.964714000000072],[-130.22998000000001,53.953606000000093],[-130.23330699999985,53.946938000000102],[-130.24249299999997,53.936377999999991],[-130.338593,53.839157000000114],[-130.34445199999999,53.835266000000047],[-130.35220299999997,53.833878000000141],[-130.37860099999995,53.831939999999975],[-130.38723800000002,53.831383000000073],[-130.45016499999997,53.864326000000005],[-130.45433000000003,53.866325000000018],[-130.45849599999997,53.882159999999942],[-130.41278099999994,53.958602999999982],[-130.40777600000001,53.963325999999995],[-130.400848,53.965828000000045],[-130.38165300000003,53.965271000000143],[-130.35055499999993,53.961661999999933],[-130.341095,53.961380000000077],[-130.33306899999991,53.962769000000094],[-130.32748400000003,53.966934000000094],[-130.34359699999987,53.984993000000031],[-130.35497999999995,53.993324000000086],[-130.42944299999994,53.983047000000113],[-130.4375,53.981659000000036],[-130.44387800000004,53.978600000000029],[-130.452789,53.968048000000067],[-130.47517400000004,53.944213999999931],[-130.47550999999993,53.940712000000076],[-130.47917199999995,53.926379999999995],[-130.48266599999988,53.915379000000144],[-130.48516799999993,53.912048000000027],[-130.4895019999999,53.910549000000003],[-130.49465900000001,53.910217000000046],[-130.500854,53.910881000000131],[-130.524338,53.914711000000125],[-130.54724099999999,53.903877000000023],[-130.55248999999998,53.907767999999919],[-130.55639599999995,53.911934000000031],[-130.56527699999998,53.925827000000027],[-130.57748400000003,53.93721000000005],[-130.591949,53.949158000000125],[-130.59722899999997,53.953048999999965],[-130.60278299999993,53.956657000000064],[-130.61080900000002,53.959717000000126],[-130.62191799999999,53.961661999999933],[-130.65805099999989,53.964439000000027],[-130.66696200000001,53.963882000000126],[-130.67251599999997,53.959991000000059],[-130.67666600000001,53.954162999999994],[-130.69528200000002,53.91944100000012],[-130.698059,53.914154000000053],[-130.69555700000001,53.909431000000041],[-130.68499799999989,53.901932000000045],[-130.66305499999993,53.892220000000123],[-130.64666699999998,53.886657999999954],[-130.633331,53.879990000000021],[-130.62777700000004,53.876099000000124],[-130.62249799999995,53.872215000000097],[-130.6177669999999,53.862770000000012],[-130.61804199999995,53.857216000000051],[-130.62136799999996,53.85054800000006],[-130.62554899999998,53.844711000000075],[-130.6305539999999,53.839989000000003],[-130.64251699999994,53.83277099999998],[-130.65139799999997,53.834435000000042],[-130.69583099999994,53.844436999999971],[-130.70639,53.851936000000137],[-130.71026599999999,53.856384000000105],[-130.71276899999998,53.861107000000118],[-130.72305299999999,53.917213000000004],[-130.72277799999995,53.922768000000076],[-130.7202759999999,53.93471500000004],[-130.71777299999991,53.939986999999974],[-130.667236,53.986938000000009],[-130.66168200000004,53.990829000000076],[-130.59527600000001,54.026382000000069],[-130.523346,54.059989999999914],[-130.41113300000001,54.100830000000087],[-130.40249600000004,54.101386999999988],[-130.37081899999998,54.087212000000079],[-130.33612099999999,54.06749700000006],[-130.30499299999991,54.045273000000122],[-130.25918599999994,54.004715000000033]],[[-58.518332999999927,54.051659000000029],[-58.526664999999923,54.050545000000056],[-58.536666999999966,54.05082700000014],[-58.545554999999979,54.052216000000101],[-58.556389000000024,54.054710000000057],[-58.56138599999997,54.058044000000052],[-58.56138599999997,54.063880999999981],[-58.55777699999993,54.069160000000011],[-58.552779999999927,54.074440000000038],[-58.53556100000003,54.086654999999951],[-58.503058999999951,54.103050000000053],[-58.468605000000025,54.114716000000044],[-58.450554000000011,54.11721],[-58.437774999999988,54.115547000000049],[-58.378608999999926,54.106659000000093],[-58.373885999999914,54.104164000000083],[-58.378052000000025,54.099998000000141],[-58.407172999999943,54.090561000000037],[-58.426108999999997,54.070831000000055],[-58.43250299999994,54.067214999999976],[-58.440551999999968,54.064713000000097],[-58.456389999999999,54.061661000000015],[-58.518332999999927,54.051659000000029]],[[-132.808044,54.120270000000062],[-132.78890999999999,54.119987000000094],[-132.77999899999998,54.120827000000133],[-132.75723300000004,54.126380999999924],[-132.73580899999996,54.133881000000031],[-132.70306399999993,54.139160000000004],[-132.65835600000003,54.142220000000066],[-132.6480709999999,54.141380000000026],[-132.63946499999997,54.138603000000103],[-132.57528699999995,54.115547000000049],[-132.56973300000004,54.111938000000066],[-132.55777,54.088043000000084],[-132.558899,54.048332000000073],[-132.56054699999999,54.04222100000004],[-132.56664999999992,54.029160000000104],[-132.57583599999998,54.019157000000007],[-132.58139,54.014999000000103],[-132.59387199999998,54.0086060000001],[-132.62554899999992,54.002220000000023],[-132.63275099999993,53.999718000000144],[-132.66418499999997,53.98333000000008],[-132.67999299999997,53.958885000000066],[-132.68167099999999,53.952773999999977],[-132.68029799999999,53.947769000000108],[-132.65890499999989,53.939430000000073],[-132.57223499999992,53.976653999999996],[-132.55584699999997,53.989159000000086],[-132.55029299999995,53.993880999999988],[-132.5477909999999,53.999161000000072],[-132.54888899999997,54.004166000000112],[-132.55306999999999,54.008331000000112],[-132.54833999999994,54.02693899999997],[-132.54528800000003,54.033607000000131],[-132.54055799999998,54.038329999999974],[-132.41665599999999,54.096100000000035],[-132.40972899999997,54.098602000000085],[-132.40167199999985,54.099998000000141],[-132.30111699999998,54.111664000000133],[-132.29055800000003,54.110549999999989],[-132.28582799999998,54.107773000000066],[-132.25280799999996,54.08526599999999],[-132.22833300000002,54.065826000000015],[-132.15029899999996,53.992767000000015],[-132.142517,53.978600000000029],[-132.11111499999998,53.878326000000015],[-132.11721799999992,53.864998000000014],[-132.125,53.853324999999984],[-132.13445999999988,53.843605000000082],[-132.22500600000001,53.780273000000022],[-132.23111,53.776939000000027],[-132.24527,53.772217000000126],[-132.47442599999999,53.707496999999989],[-132.50500499999998,53.700271999999927],[-132.52084399999995,53.697212000000093],[-132.53805499999999,53.695823999999959],[-132.55721999999997,53.695823999999959],[-132.56832899999995,53.697768999999994],[-132.58889799999992,53.699715000000026],[-132.60693399999991,53.698874999999987],[-132.62441999999993,53.697487000000081],[-132.64724699999994,53.69193300000012],[-132.65890499999989,53.684433000000013],[-132.66332999999997,53.679436000000123],[-132.665009,53.673325000000034],[-132.46362299999993,53.612770000000069],[-132.41805999999997,53.606102000000078],[-132.32138099999992,53.663605000000132],[-132.31527699999998,53.666939000000127],[-132.308044,53.669158999999922],[-132.29943799999995,53.669991000000039],[-132.290009,53.669716000000051],[-132.27890000000002,53.6680530000001],[-132.24554399999994,53.662490999999989],[-132.15640300000001,53.716385000000002],[-132.15249600000004,53.812492000000077],[-132.08450299999998,53.872738000000027],[-132.106201,53.917881000000023],[-132.126373,53.979431000000034],[-132.07250999999997,54.022766000000047],[-132.01501499999989,54.021935000000042],[-131.98803699999996,54.023048000000074],[-131.97109999999998,54.025269000000037],[-131.87499999999994,54.052773000000002],[-131.86053500000003,54.057495000000074],[-131.81777999999997,54.071937999999989],[-131.75473,54.094993999999986],[-131.72778299999999,54.106102000000021],[-131.71499599999999,54.112495000000138],[-131.70361299999996,54.120543999999995],[-131.67193599999996,54.146660000000054],[-131.66305499999999,54.152214000000072],[-131.66000399999996,54.131104000000107],[-131.66665599999999,54.079436999999984],[-131.67279099999996,54.044158999999979],[-131.67971799999998,54.019714000000135],[-131.70498699999996,53.966934000000094],[-131.72082499999999,53.943878000000041],[-131.73889199999996,53.923324999999977],[-131.78640699999994,53.874435000000119],[-131.79666099999997,53.865273000000002],[-131.82971199999992,53.841102999999976],[-131.85333300000002,53.816382999999973],[-131.86886600000003,53.79332700000009],[-131.87222299999996,53.786942000000067],[-131.93331899999998,53.615273000000059],[-131.93499800000001,53.609161000000086],[-131.94000199999988,53.519714000000022],[-131.93917799999991,53.508888000000127],[-131.91778599999998,53.399162000000103],[-131.90863000000002,53.357498000000021],[-131.95916699999992,53.276382000000069],[-131.96832299999988,53.266388000000063],[-131.98220799999996,53.251663000000121],[-131.988586,53.248604000000114],[-132.00585899999993,53.247214999999926],[-132.036407,53.25],[-132.0561219999999,53.253326000000015],[-132.08331299999992,53.253052000000082],[-132.17138699999998,53.23832700000014],[-132.19500700000003,53.233879000000002],[-132.21054100000003,53.230545000000006],[-132.21749899999998,53.228324999999984],[-132.27279699999997,53.210274000000027],[-132.27029399999998,53.205551000000014],[-132.26611300000002,53.20138500000013],[-132.25558499999994,53.193877999999984],[-132.23776199999998,53.188881000000094],[-132.22997999999995,53.190544000000045],[-132.21581999999995,53.195267000000001],[-132.20361299999996,53.201659999999947],[-132.19415299999991,53.201659999999947],[-132.14501999999999,53.198325999999952],[-132.13391100000001,53.196655000000078],[-132.12441999999987,53.194153000000028],[-132.12191799999999,53.189430000000016],[-132.158905,53.169990999999982],[-132.18695099999997,53.160545000000013],[-132.19473300000004,53.158882000000062],[-132.390289,53.142769000000044],[-132.40835599999997,53.142220000000066],[-132.44665499999991,53.143607999999972],[-132.45748900000001,53.145271000000093],[-132.506958,53.161102000000085],[-132.53668199999998,53.178879000000109],[-132.56527700000004,53.212769000000037],[-132.57638499999996,53.232208000000128],[-132.58581500000003,53.240273000000059],[-132.59664899999996,53.247489999999971],[-132.61471599999993,53.252777000000094],[-132.64529399999992,53.255553999999961],[-132.66473400000001,53.256386000000077],[-132.68362400000001,53.256660000000011],[-132.67584199999999,53.281661999999926],[-132.61944599999998,53.300270000000012],[-132.55221599999999,53.308043999999995],[-132.54446399999995,53.309433000000013],[-132.53973400000001,53.314438000000052],[-132.53695700000003,53.321106000000043],[-132.53918499999997,53.326385000000016],[-132.54333499999996,53.330551000000071],[-132.54998799999987,53.333878000000027],[-132.55835000000002,53.336655000000121],[-132.56860399999999,53.337494000000106],[-132.67001300000004,53.326942000000088],[-132.72000100000002,53.320830999999998],[-132.73388699999998,53.337212000000022],[-132.709991,53.370270000000005],[-132.70443699999993,53.374435000000005],[-132.69750999999991,53.376937999999996],[-132.52076699999998,53.340160000000026],[-132.51744099999996,53.337990000000104],[-132.41641200000004,53.2972180000001],[-132.41055299999994,53.294715999999994],[-132.406677,53.300545],[-132.40362500000003,53.30721299999999],[-132.40057399999995,53.319443000000092],[-132.40029900000002,53.330826000000116],[-132.40280200000001,53.335548000000017],[-132.406677,53.339714000000072],[-132.41223099999996,53.343604999999968],[-132.52084399999995,53.412209000000132],[-132.54138199999994,53.416382000000112],[-132.73580899999996,53.453323000000012],[-132.85775799999999,53.461104999999975],[-132.86749299999997,53.463608000000136],[-132.87277199999988,53.467209000000025],[-132.97250399999996,53.555824000000143],[-132.991669,53.583054000000004],[-132.9941409999999,53.587769000000037],[-132.98889199999991,53.591934000000037],[-132.96139500000004,53.600273000000072],[-132.95361300000002,53.601936000000023],[-132.94415300000003,53.601936000000023],[-132.93444799999986,53.599716000000001],[-132.91805999999997,53.588600000000042],[-132.90972899999997,53.585823000000005],[-132.89862099999999,53.584160000000054],[-132.89083900000003,53.585548000000131],[-132.88445999999999,53.588882000000126],[-132.88082900000001,53.594711000000132],[-132.8805539999999,53.600273000000072],[-132.88192700000002,53.605552999999986],[-132.8861389999999,53.609717999999987],[-132.92028800000003,53.637214999999912],[-132.935272,53.648604999999975],[-132.95056199999999,53.654709000000025],[-133.00778200000002,53.676383999999985],[-132.95361300000002,53.682770000000119],[-132.95443699999998,53.702774000000034],[-132.9844359999999,53.742767000000072],[-133.02471899999995,53.751389000000074],[-133.03362999999996,53.75277699999998],[-133.09387200000003,53.775551000000121],[-133.10082999999997,53.778603000000032],[-133.10638399999993,53.782494000000099],[-133.10916099999997,53.786942000000067],[-133.13751199999996,53.87499200000002],[-133.13891599999994,53.880272000000048],[-133.14001500000001,53.908043000000134],[-133.13833599999992,53.914154000000053],[-133.13391100000001,53.919159000000093],[-133.11639399999996,53.934158000000139],[-133.09527599999996,53.949432000000058],[-133.09081999999995,53.954162999999994],[-133.04110700000001,54.031661999999983],[-133.03973400000001,54.037773000000072],[-133.04083299999996,54.0430530000001],[-133.05862399999995,54.076102999999989],[-133.07916299999999,54.09777100000008],[-133.08193999999992,54.102492999999981],[-133.07165499999996,54.168883999999991],[-133.06722999999988,54.173881999999992],[-133.04083299999996,54.176102000000014],[-133.03112799999991,54.176102000000014],[-132.94027700000004,54.161377000000073],[-132.93029799999994,54.15915700000005],[-132.92001299999993,54.15248900000006],[-132.90335099999993,54.135826000000009],[-132.82748400000003,54.122490000000084],[-132.808044,54.120270000000062]],[[-130.19555699999995,54.118050000000039],[-130.21166999999997,54.115273000000116],[-130.22109999999998,54.115547000000049],[-130.23220799999996,54.117493000000138],[-130.24581899999993,54.124161000000129],[-130.25112899999999,54.128044000000045],[-130.25500499999998,54.132209999999986],[-130.261414,54.141380000000026],[-130.26364099999995,54.146102999999982],[-130.26473999999996,54.151381999999955],[-130.26306199999993,54.16832700000009],[-130.2611389999999,54.174164000000076],[-130.25778199999996,54.180824000000086],[-130.2528079999999,54.185547000000099],[-130.23971599999999,54.189712999999983],[-130.23083499999996,54.190269000000001],[-130.20944199999985,54.187209999999993],[-130.20999099999989,54.18360100000001],[-130.20166,54.183052000000032],[-130.19223,54.180549999999982],[-130.17861900000003,54.173607000000004],[-130.16113300000001,54.16276600000009],[-130.15585299999992,54.158882000000062],[-130.15194699999995,54.154434000000094],[-130.15112299999998,54.149436999999978],[-130.153076,54.143326000000059],[-130.158051,54.138328999999999],[-130.169464,54.130547000000035],[-130.19555699999995,54.118050000000039]],[[-79.469727000000034,54.167496000000085],[-79.477218999999877,54.165825000000041],[-79.483611999999994,54.169159000000036],[-79.485001000000011,54.174712999999997],[-79.481109999999944,54.187492000000077],[-79.475554999999929,54.191376000000105],[-79.43472300000002,54.200272000000041],[-79.413054999999986,54.191657999999961],[-79.418610000000001,54.187209999999993],[-79.426392000000021,54.183052000000032],[-79.469727000000034,54.167496000000085]],[[-130.64862099999999,54.114441000000056],[-130.67138699999992,54.107773000000066],[-130.69055199999997,54.108330000000137],[-130.69888299999997,54.111107000000061],[-130.77417000000003,54.142220000000066],[-130.78500399999996,54.149994000000049],[-130.79806500000001,54.162208999999962],[-130.800568,54.166939000000013],[-130.79861500000004,54.173050000000103],[-130.78167699999995,54.211662000000103],[-130.77444500000001,54.213882000000069],[-130.76391599999999,54.212769000000037],[-130.75613399999992,54.209159999999997],[-130.74636799999996,54.206657000000064],[-130.72582999999997,54.196655000000078],[-130.64889500000004,54.149719000000061],[-130.64501999999993,54.145271000000093],[-130.64001500000001,54.135826000000009],[-130.63919099999993,54.130820999999969],[-130.63946499999997,54.124992000000134],[-130.64279199999999,54.118599000000017],[-130.64862099999999,54.114441000000056]],[[-130.35555999999991,54.257773999999984],[-130.36663799999991,54.241104000000007],[-130.375,54.244155999999975],[-130.38861099999997,54.250832000000059],[-130.40057400000001,54.258048999999971],[-130.45556599999998,54.295830000000137],[-130.46639999999996,54.303322000000094],[-130.46722399999993,54.308601000000067],[-130.44750999999991,54.325828999999999],[-130.44000199999999,54.328049000000021],[-130.43112199999996,54.328606000000093],[-130.41778599999992,54.326385000000016],[-130.39196799999996,54.312492000000134],[-130.38528400000001,54.308884000000035],[-130.37997399999995,54.305267000000072],[-130.37582399999997,54.300827000000083],[-130.35470599999996,54.269157000000007],[-130.35220299999997,54.264442000000145],[-130.35555999999991,54.257773999999984]],[[-130.26641799999999,54.260551000000078],[-130.32528699999995,54.243050000000096],[-130.33416699999998,54.244713000000047],[-130.33804299999997,54.248878000000047],[-130.355255,54.282211000000075],[-130.35415599999999,54.293326999999977],[-130.350281,54.305550000000039],[-130.34445199999999,54.30971500000004],[-130.29000899999994,54.332214000000022],[-130.27279699999991,54.329720000000066],[-130.26751699999994,54.325828999999999],[-130.25973499999998,54.317497000000003],[-130.25250199999999,54.303047000000049],[-130.25058000000001,54.292770000000075],[-130.25167799999991,54.281380000000013],[-130.255585,54.269440000000145],[-130.25973499999998,54.263610999999912],[-130.26641799999999,54.260551000000078]],[[-130.70416299999994,54.356659000000036],[-130.745544,54.354713000000118],[-130.754456,54.356102000000135],[-130.76391599999999,54.364159000000086],[-130.76724200000001,54.374161000000072],[-130.76834099999991,54.379433000000006],[-130.76779199999987,54.384995000000117],[-130.76446499999992,54.389434999999992],[-130.75805699999995,54.392494000000113],[-130.72943099999986,54.402771000000087],[-130.72222899999991,54.404991000000109],[-130.71417199999996,54.406380000000127],[-130.699432,54.40665400000006],[-130.68890399999998,54.393326000000059],[-130.68331899999998,54.373047000000099],[-130.685272,54.36693600000001],[-130.6894529999999,54.361381999999992],[-130.69610599999999,54.358047000000113],[-130.70416299999994,54.356659000000036]],[[-57.324721999999952,54.498877999999991],[-57.342498999999918,54.498604000000057],[-57.351668999999958,54.500275000000101],[-57.356666999999959,54.502220000000079],[-57.362777999999992,54.506104000000107],[-57.365004999999996,54.511664999999994],[-57.365554999999972,54.516387999999949],[-57.362502999999947,54.527489000000116],[-57.359443999999996,54.533332999999914],[-57.333327999999995,54.565543999999989],[-57.327782000000013,54.570831000000112],[-57.321114000000023,54.574997000000053],[-57.267220000000009,54.585548000000131],[-57.265556000000004,54.580551000000014],[-57.269722000000002,54.574997000000053],[-57.272728000000029,54.572495000000117],[-57.239440999999999,54.522217000000012],[-57.240279999999984,54.517769000000044],[-57.255004999999926,54.513328999999999],[-57.293059999999912,54.503609000000097],[-57.307776999999987,54.500549000000035],[-57.324721999999952,54.498877999999991]],[[-130.95166,54.454711999999972],[-130.95944199999997,54.453323000000012],[-130.96499600000004,54.456940000000145],[-130.96749899999992,54.461662000000047],[-130.96609499999994,54.510826000000009],[-130.96472199999994,54.527771000000143],[-130.96112099999999,54.539992999999981],[-130.93057299999998,54.61471599999993],[-130.92556799999994,54.619438000000059],[-130.88891599999994,54.628876000000048],[-130.88137800000004,54.629158000000132],[-130.754456,54.62943300000012],[-130.74777199999994,54.626099000000124],[-130.74664299999995,54.62082700000002],[-130.74694799999997,54.615273000000059],[-130.7441409999999,54.60166200000009],[-130.745544,54.584717000000126],[-130.74914599999994,54.572769000000051],[-130.75250199999999,54.566101000000117],[-130.75613399999992,54.559433000000126],[-130.76083399999999,54.554710000000114],[-130.76666299999999,54.550545000000113],[-130.84915199999995,54.496941000000106],[-130.85583500000001,54.493881000000044],[-130.93695099999997,54.459434999999985],[-130.95166,54.454711999999972]],[[-79.667220999999927,54.76388500000013],[-79.726944000000003,54.752495000000067],[-79.710281000000009,54.76388500000013],[-79.703613000000018,54.766937000000041],[-79.611114999999984,54.79332700000009],[-79.587218999999948,54.799164000000019],[-79.624435000000005,54.779716000000121],[-79.631103999999993,54.776657000000114],[-79.637786999999946,54.773605000000032],[-79.659728999999913,54.766106000000036],[-79.667220999999927,54.76388500000013]],[[-130.26834099999991,54.714995999999985],[-130.370544,54.692214999999976],[-130.37887599999988,54.695267000000058],[-130.37609899999995,54.700546000000031],[-130.37109399999991,54.705269000000044],[-130.32693499999999,54.739716000000044],[-130.32110599999987,54.743881000000044],[-130.22415199999989,54.803046999999992],[-130.21749899999998,54.806380999999988],[-130.20944199999985,54.807770000000119],[-130.20694000000003,54.803046999999992],[-130.19860800000004,54.783607000000018],[-130.20056199999999,54.77748900000006],[-130.20971699999996,54.760551000000135],[-130.21362299999993,54.748329000000012],[-130.21722399999999,54.741661000000022],[-130.22222899999986,54.736938000000009],[-130.23388699999998,54.728874000000019],[-130.2611389999999,54.717209000000139],[-130.26834099999991,54.714995999999985]],[[-130.51834099999996,54.70249200000012],[-130.52722199999999,54.701935000000049],[-130.5386049999999,54.703880000000026],[-130.56750499999993,54.716934000000094],[-130.57443199999994,54.72026800000009],[-130.58526599999999,54.727767999999969],[-130.60803199999992,54.748329000000012],[-130.61053499999991,54.753052000000139],[-130.61166399999996,54.758049000000085],[-130.60665900000004,54.763054000000125],[-130.48803699999991,54.807495000000131],[-130.47998000000001,54.808883999999921],[-130.46945199999999,54.807770000000119],[-130.458618,54.800270000000069],[-130.44665499999996,54.787216000000001],[-130.44027699999992,54.778327999999988],[-130.43777499999993,54.773605000000032],[-130.43582199999997,54.763329000000113],[-130.43972799999989,54.75110600000005],[-130.45388799999989,54.719154000000117],[-130.45748900000001,54.712769000000094],[-130.46331799999996,54.708603000000039],[-130.51834099999996,54.70249200000012]],[[-57.940833999999938,54.911933999999974],[-57.985832000000016,54.870826999999963],[-57.98860899999994,54.86721],[-57.991942999999935,54.833878000000084],[-57.983886999999868,54.802215999999987],[-57.980277999999942,54.798607000000118],[-57.971663999999976,54.798050000000046],[-57.965553,54.799437999999952],[-57.958892999999989,54.803046999999992],[-57.955558999999994,54.805824000000086],[-57.923888999999974,54.823326000000122],[-57.871666000000005,54.83166499999993],[-57.864723000000026,54.832214000000079],[-57.859726000000023,54.83027600000014],[-57.843613000000005,54.820549000000028],[-57.841110000000015,54.816939999999988],[-57.841667000000029,54.81249200000002],[-57.848334999999963,54.806938000000059],[-57.875,54.79332700000009],[-57.881942999999922,54.790549999999996],[-58.022774000000027,54.755554000000018],[-58.031386999999995,54.753882999999973],[-58.040000999999961,54.75277699999998],[-58.04999499999991,54.753052000000139],[-58.119995000000017,54.755554000000018],[-58.139167999999927,54.757216999999969],[-58.15943900000002,54.76138300000008],[-58.174171000000001,54.767768999999987],[-58.176948999999979,54.770828000000108],[-58.172378999999978,54.797314000000085],[-58.184173999999985,54.808471999999938],[-58.219718999999941,54.825829000000056],[-58.222771000000023,54.83027600000014],[-58.224715999999944,54.83526599999999],[-58.225554999999986,54.850273000000016],[-58.225554999999986,54.862770000000012],[-58.224998000000028,54.866936000000067],[-58.218886999999938,54.875267000000008],[-58.215836000000024,54.878044000000102],[-58.209723999999937,54.877487000000031],[-58.049445999999932,54.893326000000116],[-57.967773000000022,54.919159000000036],[-57.942771999999991,54.924995000000138],[-57.94027699999998,54.923607000000004],[-57.938605999999993,54.918602000000135],[-57.940833999999938,54.911933999999974]],[[-79.125823999999909,54.897217000000012],[-79.134445000000028,54.895827999999995],[-79.235000999999954,54.896660000000111],[-79.515288999999939,54.840546000000074],[-79.660277999999948,54.805549999999926],[-79.763625999999988,54.771660000000054],[-79.774170000000026,54.773048000000131],[-79.776947000000007,54.778046000000131],[-79.773330999999985,54.783333000000084],[-79.768889999999942,54.787773000000072],[-79.725554999999986,54.818886000000077],[-79.714721999999995,54.826385000000073],[-79.686934999999949,54.838326000000052],[-79.656661999999983,54.846656999999993],[-79.467223999999931,54.888328999999999],[-79.458617999999944,54.88999200000012],[-79.430557000000022,54.892769000000044],[-79.419448999999872,54.892769000000044],[-79.339446999999893,54.896941999999967],[-79.164169000000015,54.925552000000039],[-79.053878999999995,54.946655000000078],[-79.041945999999882,54.945824000000073],[-79.015014999999948,54.938324000000023],[-79.015014999999948,54.932213000000104],[-79.027221999999995,54.925270000000125],[-79.05749499999996,54.917770000000075],[-79.102782999999988,54.903877000000023],[-79.125823999999909,54.897217000000012]],[[-58.675277999999992,54.914153999999996],[-58.68360899999999,54.913048000000003],[-58.752501999999993,54.915825000000041],[-58.757225000000005,54.916100000000085],[-58.760558999999887,54.920546999999942],[-58.759170999999981,54.926102000000071],[-58.754723000000013,54.932495000000017],[-58.701667999999927,54.999161000000015],[-58.697495000000004,55.003326000000015],[-58.691108999999983,55.006942999999978],[-58.684722999999906,55.008331000000055],[-58.676391999999908,55.009437999999989],[-58.660277999999948,55.0086060000001],[-58.653609999999901,55.005554000000018],[-58.652778999999953,55.00110600000005],[-58.657500999999968,54.996100999999953],[-58.662772999999902,54.992218000000037],[-58.658332999999971,54.962494000000049],[-58.656661999999983,54.94221500000009],[-58.658607000000018,54.932495000000017],[-58.663054999999986,54.922493000000031],[-58.668892000000028,54.917770000000075],[-58.675277999999992,54.914153999999996]],[[-130.38528400000001,54.769988999999953],[-130.39916999999997,54.764717000000019],[-130.40917999999999,54.767212000000086],[-130.41445899999997,54.770828000000108],[-130.45556599999998,54.813324000000136],[-130.45944199999997,54.81749700000006],[-130.46194499999996,54.822220000000073],[-130.459991,54.828330999999991],[-130.41833499999996,54.853324999999927],[-130.38528400000001,54.868881000000101],[-130.34304800000001,54.894996999999989],[-130.27029400000004,54.950272000000041],[-130.25,54.969711000000132],[-130.22778299999993,54.997214999999983],[-130.2133179999999,55.012496999999996],[-130.20083599999992,55.019714000000079],[-130.18499800000001,55.023323000000119],[-130.17529300000001,55.023048000000074],[-130.16833500000001,55.019714000000079],[-130.16500899999988,55.014160000000118],[-130.16027799999995,55.004439999999988],[-130.146973,54.975822000000051],[-130.14529399999998,54.965271000000143],[-130.14556899999997,54.959717000000126],[-130.14611799999994,54.954163000000108],[-130.14974999999998,54.947487000000024],[-130.16332999999997,54.931381000000044],[-130.27029400000004,54.830826000000002],[-130.38528400000001,54.769988999999953]],[[-82.964721999999995,55.263611000000083],[-82.970000999999968,55.259720000000016],[-83.014450000000011,55.269714000000022],[-83.031951999999876,55.273880000000133],[-83.035278000000005,55.278877000000023],[-83.027495999999928,55.281380000000013],[-83.016953000000001,55.281662000000097],[-82.990279999999984,55.280548000000124],[-82.980835000000013,55.278877000000023],[-82.963332999999977,55.273880000000133],[-82.96166999999997,55.269157000000121],[-82.964721999999995,55.263611000000083]],[[-77.592772999999909,55.435265000000129],[-77.633330999999998,55.424438000000123],[-77.644164999999873,55.425827000000083],[-77.449431999999945,55.533882000000062],[-77.336120999999991,55.604439000000127],[-77.323058999999944,55.610550000000046],[-77.221389999999928,55.653602999999919],[-77.213897999999915,55.65526600000004],[-77.205276000000026,55.65387700000008],[-77.199996999999939,55.65026899999998],[-77.201110999999912,55.64415699999995],[-77.210555999999997,55.639717000000132],[-77.252227999999945,55.618050000000096],[-77.389174999999966,55.546386999999982],[-77.452224999999942,55.512772000000098],[-77.474166999999966,55.498046999999929],[-77.484160999999915,55.489158999999972],[-77.49499499999996,55.481377000000009],[-77.500564999999938,55.478325000000098],[-77.55221599999993,55.453049000000021],[-77.592772999999909,55.435265000000129]],[[-60.970832999999914,55.869437999999946],[-60.98833499999995,55.86721],[-60.998336999999992,55.867767000000072],[-61.008895999999936,55.869156000000089],[-61.016944999999964,55.873046999999985],[-61.051666000000012,55.901100000000099],[-61.056664000000012,55.905823000000055],[-61.059165999999948,55.909988000000055],[-61.070557000000008,55.938599000000011],[-61.065551999999968,55.944153000000028],[-61.047782999999981,55.945541000000105],[-61.036948999999993,55.9447100000001],[-60.96805599999999,55.936652999999922],[-60.948607999999979,55.930549999999982],[-60.908332999999971,55.898330999999985],[-60.906386999999995,55.893326000000116],[-60.911109999999951,55.887772000000098],[-60.917503000000011,55.884163000000115],[-60.970832999999914,55.869437999999946]],[[-60.858611999999994,55.864716000000044],[-60.876105999999993,55.863883999999985],[-60.892501999999979,55.864441000000056],[-60.898612999999955,55.86721],[-60.902221999999995,55.871376000000112],[-60.900551000000007,55.876380999999981],[-60.873610999999869,55.94360400000005],[-60.869995000000017,55.949432000000002],[-60.86500499999994,55.95277400000009],[-60.851944000000003,55.95526899999993],[-60.748336999999935,55.944153000000028],[-60.74138599999992,55.942764000000011],[-60.742500000000007,55.939156000000082],[-60.747498000000007,55.931663999999955],[-60.691939999999875,55.925270000000125],[-60.68638599999997,55.92193600000013],[-60.688048999999978,55.917213000000118],[-60.692771999999991,55.911658999999986],[-60.705001999999979,55.903046000000018],[-60.718604999999911,55.896385000000066],[-60.756393000000003,55.880272000000048],[-60.778610000000015,55.876099000000067],[-60.840836000000024,55.86610399999995],[-60.858611999999994,55.864716000000044]],[[-79.123046999999929,55.789993000000038],[-79.130553999999961,55.788887000000045],[-79.135559000000001,55.789162000000033],[-79.137786999999946,55.790549999999939],[-79.136123999999938,55.794158999999979],[-79.131667999999934,55.799995000000024],[-79.126099000000011,55.803879000000052],[-79.121932999999956,55.808601000000124],[-79.108886999999925,55.823883000000137],[-79.102782999999988,55.833054000000118],[-79.039168999999958,55.952492000000063],[-79.03083799999996,55.968596999999932],[-79.027221999999995,55.976935999999966],[-79.022232000000031,55.996384000000091],[-79.009353999999973,56.063614000000086],[-78.960007000000019,56.083054000000061],[-78.957503999999972,56.083602999999982],[-78.952788999999939,56.080826000000116],[-78.949157999999898,56.071663000000115],[-78.939712999999983,56.02526899999998],[-79.054442999999935,55.865547000000049],[-79.089995999999985,55.816939999999988],[-79.104445999999996,55.80082700000014],[-79.116652999999985,55.792496000000028],[-79.123046999999929,55.789993000000038]],[[-60.943329000000006,56.006660000000011],[-61.040557999999976,56.005272000000105],[-61.0819469999999,56.011382999999967],[-61.141387999999949,56.020545999999968],[-61.17111199999988,56.028602999999976],[-61.18721800000003,56.033882000000119],[-61.215836000000024,56.046387000000038],[-61.220832999999971,56.050827000000083],[-61.228333000000021,56.06332400000008],[-61.232772999999952,56.072769000000108],[-61.233611999999994,56.085548000000017],[-61.232772999999952,56.091103000000089],[-61.226944000000003,56.098045000000013],[-61.217498999999975,56.100547999999947],[-61.211670000000026,56.101387000000102],[-61.08916499999998,56.169991000000095],[-61.059165999999948,56.159714000000122],[-61.045836999999892,56.153877000000136],[-60.944442999999978,56.094993999999986],[-60.943610999999976,56.090271000000143],[-60.934440999999993,56.015830999999935],[-60.934722999999963,56.011382999999967],[-60.943329000000006,56.006660000000011]],[[-61.623610999999983,56.399993999999992],[-61.546668999999952,56.390830999999991],[-61.493057000000022,56.404991000000052],[-61.482773000000009,56.406654000000003],[-61.474716000000001,56.406654000000003],[-61.468329999999924,56.404433999999981],[-61.415275999999949,56.376656000000025],[-61.411667000000023,56.372214999999926],[-61.411109999999951,56.367210000000057],[-61.412216000000001,56.326659999999947],[-61.416106999999954,56.322220000000129],[-61.424171000000001,56.32027400000004],[-61.482773000000009,56.309990000000028],[-61.569449999999904,56.320549000000085],[-61.579726999999991,56.322494999999947],[-61.599723999999924,56.32777399999992],[-61.686385999999857,56.352776000000063],[-61.719993999999986,56.365829000000019],[-61.788895000000025,56.405822999999998],[-61.793335000000013,56.408882000000119],[-61.796111999999937,56.41304800000006],[-61.790557999999919,56.415824999999927],[-61.783889999999872,56.415824999999927],[-61.677779999999927,56.405548000000124],[-61.623610999999983,56.399993999999992]],[[-78.839995999999928,56.129990000000078],[-78.927490000000034,56.113884000000098],[-78.933318999999983,56.115547000000049],[-78.930556999999965,56.128601000000117],[-78.916945999999996,56.172493000000145],[-78.908339999999896,56.182495000000131],[-78.903884999999946,56.187209999999993],[-78.883330999999998,56.201935000000105],[-78.846389999999985,56.2347180000001],[-78.830291999999929,56.253326000000129],[-78.825287000000003,56.262772000000098],[-78.813323999999966,56.304709999999943],[-78.809432999999956,56.338882000000126],[-78.813888999999961,56.343323000000055],[-78.834732000000031,56.345543000000021],[-78.832503999999915,56.350829999999974],[-78.762512000000015,56.424713000000111],[-78.751403999999923,56.432495000000074],[-78.731673999999941,56.440544000000102],[-78.694992000000013,56.443878000000097],[-78.686385999999914,56.443320999999969],[-78.667220999999984,56.439713000000097],[-78.661666999999966,56.436104000000057],[-78.660003999999958,56.430550000000096],[-78.650832999999921,56.289161999999976],[-78.652785999999935,56.241936000000067],[-78.655563000000029,56.223602000000142],[-78.676392000000021,56.181106999999997],[-78.688599000000011,56.172767999999962],[-78.839995999999928,56.129990000000078]],[[-79.626937999999996,56.265273999999977],[-79.635833999999988,56.264998999999989],[-79.636672999999973,56.266388000000006],[-79.636397999999872,56.269157000000121],[-79.609436000000017,56.319716999999969],[-79.538605000000018,56.433051999999975],[-79.53443900000002,56.437491999999963],[-79.523894999999982,56.442764000000068],[-79.511123999999938,56.446381000000031],[-79.496947999999975,56.448601000000053],[-79.492217999999923,56.446937999999932],[-79.490554999999915,56.440826000000129],[-79.510833999999932,56.397491000000002],[-79.557769999999891,56.305267000000015],[-79.561110999999926,56.299164000000076],[-79.565552000000025,56.293884000000048],[-79.569457999999997,56.289992999999981],[-79.619445999999868,56.267211999999972],[-79.626937999999996,56.265273999999977]],[[-79.619995000000017,56.385268999999994],[-79.638061999999991,56.360550000000046],[-79.649444999999957,56.346382000000006],[-79.663329999999974,56.333878000000141],[-79.682495000000017,56.317496999999946],[-79.701110999999969,56.306381000000044],[-79.714447000000007,56.299995000000081],[-79.906661999999926,56.227211000000125],[-79.928328999999962,56.219711000000075],[-79.986114999999984,56.199715000000083],[-80.01916499999993,56.191376000000048],[-80.060546999999985,56.18443300000007],[-80.082503999999915,56.186653000000092],[-80.092223999999987,56.188324000000136],[-80.100554999999986,56.191376000000048],[-80.107497999999907,56.194992000000127],[-80.109726000000023,56.197768999999994],[-80.110275000000001,56.203323000000012],[-80.100280999999995,56.239158999999972],[-80.098617999999874,56.244156000000089],[-80.055267000000015,56.303604000000121],[-80.044448999999929,56.310822000000144],[-80.040558000000033,56.312767000000122],[-80.022506999999962,56.319716999999969],[-79.867492999999968,56.357498000000135],[-79.795546999999942,56.366661000000136],[-79.756667999999991,56.361937999999952],[-79.72444200000001,56.362770000000069],[-79.69888299999991,56.368880999999988],[-79.679169000000002,56.378326000000015],[-79.656386999999995,56.392769000000101],[-79.642501999999979,56.404433999999981],[-79.618880999999931,56.426941000000056],[-79.614440999999999,56.431664000000069],[-79.604171999999949,56.444153000000085],[-79.598052999999936,56.454437000000098],[-79.591384999999946,56.469154000000117],[-79.588333000000034,56.493881000000044],[-79.585281000000009,56.499161000000072],[-79.582503999999915,56.501663000000008],[-79.549728000000016,56.525269000000037],[-79.543334999999956,56.527771000000143],[-79.542770000000019,56.522217000000126],[-79.549438000000009,56.508049000000085],[-79.613891999999964,56.39527099999998],[-79.619995000000017,56.385268999999994]],[[-61.435829000000012,56.541382000000112],[-61.168059999999969,56.474709000000018],[-61.149993999999992,56.445540999999992],[-61.148887999999943,56.441101000000003],[-61.154442000000017,56.438599000000067],[-61.163612000000001,56.436653000000035],[-61.181945999999925,56.435265000000129],[-61.200278999999966,56.435265000000129],[-61.220832999999971,56.435546999999985],[-61.517501999999865,56.446937999999932],[-61.609169000000009,56.46166199999999],[-61.630553999999961,56.465270999999973],[-61.642226999999991,56.486382000000049],[-61.637221999999952,56.489716000000044],[-61.629997000000003,56.490547000000049],[-61.546394000000021,56.488044999999943],[-61.538612000000001,56.485824999999977],[-61.525832999999864,56.478874000000019],[-61.512778999999966,56.474991000000102],[-61.438048999999921,56.476379000000009],[-61.423057999999969,56.479156000000103],[-61.417777999999998,56.483330000000137],[-61.418335000000013,56.488327000000027],[-61.422501000000011,56.490547000000049],[-61.455276000000026,56.496383999999978],[-61.496666000000005,56.500000000000057],[-61.527221999999938,56.501663000000008],[-61.624167999999997,56.503882999999973],[-61.633330999999998,56.506386000000134],[-61.634445000000028,56.512497000000053],[-61.631942999999978,56.51638800000012],[-61.602225999999916,56.552773000000059],[-61.595832999999971,56.556380999999988],[-61.588332999999977,56.558044000000052],[-61.576667999999984,56.557769999999948],[-61.561667999999941,56.554161000000136],[-61.558051999999975,56.55193300000002],[-61.525947999999971,56.550212999999985],[-61.459166999999923,56.54583000000008],[-61.435829000000012,56.541382000000112]],[[-79.021666999999923,56.426941000000056],[-79.009445000000028,56.426383999999985],[-78.98832699999997,56.426941000000056],[-78.949157999999898,56.43082400000003],[-78.943054000000018,56.430550000000096],[-78.93582200000003,56.428878999999995],[-78.928878999999938,56.425827000000083],[-78.92471299999994,56.419441000000006],[-78.922775000000001,56.415268000000026],[-78.921111999999994,56.409714000000065],[-78.920546999999942,56.403320000000008],[-78.923049999999932,56.386940000000095],[-78.93638599999997,56.317496999999946],[-78.943328999999949,56.284996000000035],[-78.949996999999939,56.282493999999986],[-78.955276000000026,56.27915999999999],[-78.961394999999868,56.271378000000027],[-79.029174999999952,56.172493000000145],[-79.06138599999997,56.124435000000005],[-79.071670999999981,56.104996000000085],[-79.085007000000019,56.07749200000012],[-79.094161999999983,56.054993000000138],[-79.129990000000021,55.989432999999963],[-79.175277999999935,55.92332499999992],[-79.195266999999944,55.891937000000098],[-79.203613000000018,55.894157000000121],[-79.166267000000005,55.973881000000006],[-79.122116000000005,56.046715000000006],[-79.061935000000005,56.148605000000032],[-79.022781000000009,56.202492000000007],[-79.008895999999993,56.221656999999936],[-78.990829000000019,56.261664999999994],[-78.985824999999977,56.273605000000089],[-78.972777999999948,56.306656000000032],[-78.970275999999956,56.314156000000082],[-78.967772999999909,56.323608000000036],[-78.966109999999901,56.336105000000032],[-78.970275999999956,56.378043999999989],[-78.97084000000001,56.3836060000001],[-78.977218999999991,56.388602999999989],[-78.983321999999987,56.389716999999962],[-78.998885999999914,56.384163000000001],[-79.043334999999956,56.360550000000046],[-79.055267000000015,56.344437000000028],[-79.062209999999993,56.329720000000009],[-79.089172000000019,56.267769000000044],[-79.091109999999958,56.263054000000011],[-79.093062999999972,56.256943000000092],[-79.092948999999976,56.231716000000006],[-79.095443999999986,56.2190480000001],[-79.093948000000012,56.213717999999972],[-79.092781000000002,56.211551999999983],[-79.089110999999946,56.211884000000111],[-79.083327999999995,56.174164000000019],[-79.212783999999999,55.954163000000108],[-79.236114999999927,55.917496000000085],[-79.259444999999914,55.886108000000092],[-79.275283999999999,55.870270000000062],[-79.283324999999991,55.864441000000056],[-79.286666999999852,55.866661000000079],[-79.286117999999988,55.869987000000094],[-79.278060999999923,55.885551000000021],[-79.267226999999934,55.903046000000018],[-79.226668999999958,55.962493999999992],[-79.183608999999933,56.037497999999971],[-79.139998999999932,56.115273000000116],[-79.133895999999993,56.126656000000082],[-79.132721000000004,56.175770000000057],[-79.138564999999858,56.205269000000101],[-79.139724999999999,56.20776699999999],[-79.143561999999974,56.211266000000137],[-79.15055799999999,56.233046999999999],[-79.160552999999993,56.231377000000066],[-79.170272999999952,56.225548000000003],[-79.205565999999976,56.190826000000015],[-79.243880999999988,56.151100000000042],[-79.256393000000003,56.13110400000005],[-79.270844000000011,56.104712999999947],[-79.277495999999985,56.090828000000045],[-79.284164000000033,56.078049000000021],[-79.299727999999959,56.051658999999972],[-79.309158000000025,56.036385000000109],[-79.323623999999938,56.016936999999984],[-79.358611999999937,55.974434000000088],[-79.452498999999989,55.879990000000134],[-79.479996000000028,55.863883999999985],[-79.493056999999965,55.858887000000038],[-79.500564999999995,55.856659000000093],[-79.510559000000001,55.855553000000043],[-79.520279000000016,55.854713000000004],[-79.532500999999968,55.854996000000142],[-79.567779999999971,55.864716000000044],[-79.593886999999938,55.874435000000062],[-79.604996000000028,55.881660000000124],[-79.78195199999999,55.78804800000006],[-79.763061999999934,55.814156000000025],[-79.598052999999936,55.981658999999979],[-79.486937999999952,56.087212000000022],[-79.474716000000001,56.098327999999981],[-79.470275999999956,56.104439000000013],[-79.470551,56.112770000000125],[-79.472504000000015,56.11693600000001],[-79.478881999999999,56.123322000000087],[-79.497222999999963,56.133605999999986],[-79.513061999999991,56.134995000000117],[-79.523055999999997,56.133880999999974],[-79.537216000000001,56.12971500000009],[-79.550277999999935,56.123322000000087],[-79.567504999999983,56.112770000000125],[-79.59722899999997,56.091377000000023],[-79.645003999999972,56.050545],[-79.819457999999941,55.901100000000099],[-79.831680000000006,55.88999200000012],[-79.846663999999976,55.874161000000129],[-79.858046999999999,55.859993000000088],[-79.863892000000021,55.850830000000087],[-79.865829000000019,55.847214000000008],[-79.909164000000033,55.840546000000074],[-79.985824999999977,55.898048000000017],[-79.961944999999957,55.960274000000027],[-79.774444999999957,56.112213000000054],[-79.668059999999912,56.189987000000031],[-79.648620999999991,56.198326000000066],[-79.642226999999991,56.201385000000073],[-79.587783999999999,56.230270000000132],[-79.536330999999961,56.295052000000055],[-79.526839999999993,56.304214000000115],[-79.516173999999978,56.319881000000066],[-79.494666999999993,56.367214000000047],[-79.48733500000003,56.402714000000117],[-79.458892999999875,56.464157],[-79.458617999999944,56.468323000000112],[-79.458617999999944,56.478600000000085],[-79.466109999999958,56.498878000000104],[-79.474441999999954,56.521102999999982],[-79.471389999999928,56.544441000000063],[-79.466109999999958,56.54833200000013],[-79.456664999999987,56.55332199999998],[-79.448883000000023,56.554435999999953],[-79.445267000000001,56.553604000000064],[-79.441939999999875,56.551384000000041],[-79.438599000000011,56.547775000000058],[-79.418334999999956,56.490829000000076],[-79.419448999999872,56.443603999999937],[-79.443000999999981,56.393436000000008],[-79.474998000000028,56.320438000000138],[-79.531386999999995,56.206940000000145],[-79.514450000000011,56.186378000000047],[-79.461670000000026,56.193321000000026],[-79.438889000000017,56.197212000000093],[-79.427215999999987,56.203049000000078],[-79.416397000000018,56.212212000000079],[-79.413054999999986,56.216660000000047],[-79.309998000000007,56.424163999999962],[-79.301101999999958,56.447212000000036],[-79.298049999999932,56.459435000000099],[-79.293335000000013,56.488044999999943],[-79.291672000000005,56.498878000000104],[-79.286391999999921,56.570273999999984],[-79.139998999999932,56.546386999999982],[-79.133057000000008,56.542770000000019],[-79.129990000000021,56.537773000000072],[-79.125548999999978,56.514159999999947],[-79.121932999999956,56.495543999999938],[-79.119995000000017,56.489989999999977],[-79.111938000000009,56.47526600000009],[-79.099990999999989,56.463051000000007],[-79.091384999999889,56.454437000000098],[-79.075561999999934,56.444153000000085],[-79.055557000000022,56.433876000000112],[-79.038895000000025,56.428878999999995],[-79.021666999999923,56.426941000000056]],[[-79.141952999999944,56.616661000000079],[-79.15194699999995,56.616386000000091],[-79.260009999999966,56.628044000000102],[-79.268889999999999,56.629158000000075],[-79.274719000000005,56.632209999999986],[-79.277495999999985,56.637215000000026],[-79.279998999999975,56.648880000000133],[-79.280288999999982,56.654990999999995],[-79.275009000000011,56.667213000000004],[-79.271941999999967,56.67193600000013],[-79.254729999999881,56.679993000000138],[-79.244155999999919,56.682495000000017],[-79.218886999999938,56.684990000000028],[-79.208892999999989,56.683876000000055],[-79.193603999999937,56.678329000000133],[-79.160004000000015,56.65776800000009],[-79.151108000000022,56.649994000000106],[-79.141678000000013,56.635826000000066],[-79.138061999999991,56.626099000000124],[-79.138901000000033,56.619986999999924],[-79.141952999999944,56.616661000000079]],[[-61.1875,56.586104999999975],[-61.211670000000026,56.581664999999987],[-61.217498999999975,56.58277099999998],[-61.222770999999966,56.588882000000069],[-61.231667000000016,56.611663999999962],[-61.231941000000006,56.61971299999999],[-61.226104999999961,56.626656000000025],[-61.165832999999964,56.684433000000126],[-61.159163999999919,56.688324000000023],[-61.150276000000019,56.689430000000073],[-61.131942999999978,56.68721000000005],[-61.0819469999999,56.678878999999938],[-61.0777819999999,56.674995000000138],[-61.057776999999987,56.628875999999991],[-61.059440999999993,56.626380999999981],[-61.06361400000003,56.624160999999958],[-61.103888999999867,56.606658999999922],[-61.1875,56.586104999999975]],[[-79.560821999999973,56.617767000000129],[-79.567504999999983,56.615273000000002],[-79.573333999999988,56.618881000000101],[-79.583618000000001,56.648048000000017],[-79.583892999999932,56.65277100000003],[-79.589995999999985,56.768326000000002],[-79.587508999999898,56.788886999999988],[-79.581679999999949,56.80721299999999],[-79.578339000000028,56.81249200000002],[-79.57417299999986,56.815825999999959],[-79.567504999999983,56.817772000000048],[-79.516662999999937,56.78555300000005],[-79.496384000000035,56.766936999999984],[-79.476943999999946,56.72165700000005],[-79.474716000000001,56.689156000000139],[-79.486114999999984,56.658043000000134],[-79.488891999999964,56.655548000000067],[-79.560821999999973,56.617767000000129]],[[-79.881942999999978,56.743607000000054],[-79.888610999999969,56.741104000000064],[-79.904723999999987,56.741661000000136],[-79.923889000000031,56.751389000000017],[-79.930831999999953,56.754997000000117],[-79.941101000000003,56.763610999999969],[-79.944442999999922,56.767769000000101],[-79.947494999999947,56.773323000000119],[-79.957229999999925,56.799164000000019],[-79.958892999999932,56.805267000000129],[-79.958618000000001,56.811377999999991],[-79.954726999999934,56.823607999999922],[-79.945830999999998,56.833603000000039],[-79.919158999999922,56.858330000000137],[-79.915008999999998,56.861382000000049],[-79.865829000000019,56.866104000000121],[-79.858046999999999,56.865829000000133],[-79.843886999999995,56.858330000000137],[-79.83444199999991,56.852492999999981],[-79.819457999999941,56.84027100000003],[-79.81639100000001,56.835548000000017],[-79.814712999999927,56.829162999999994],[-79.81361400000003,56.816939999999988],[-79.833892999999989,56.793610000000001],[-79.83805799999999,56.788886999999988],[-79.872222999999906,56.752220000000023],[-79.876663000000008,56.747772000000055],[-79.881942999999978,56.743607000000054]],[[-79.750564999999938,56.905823000000055],[-79.717498999999918,56.813605999999993],[-79.71833799999996,56.80721299999999],[-79.721114999999884,56.802773000000002],[-79.725554999999986,56.798049999999989],[-79.730834999999956,56.794158999999922],[-79.749725000000012,56.783607000000131],[-79.757507000000032,56.781936999999971],[-79.781113000000005,56.784721000000104],[-79.78832999999986,56.785828000000038],[-79.793555999999967,56.795792000000063],[-79.794373000000007,56.832947000000104],[-79.793143999999984,56.859890000000064],[-79.82376899999997,56.895003999999972],[-79.852753000000007,56.885204000000044],[-79.894164999999873,56.881935000000112],[-79.897506999999962,56.884995000000004],[-79.89805599999994,56.891106000000036],[-79.896118000000001,56.897217000000126],[-79.892776000000026,56.90248900000006],[-79.858611999999937,56.938599000000011],[-79.851943999999946,56.940268999999944],[-79.808333999999945,56.948326000000122],[-79.799438000000009,56.949431999999945],[-79.790833000000021,56.947769000000051],[-79.784164000000033,56.940826000000072],[-79.753615999999965,56.910820000000001],[-79.750564999999938,56.905823000000055]],[[-61.429211000000009,56.929707000000008],[-61.397204999999985,56.927715000000035],[-61.37261199999989,56.930972999999994],[-61.354888999999957,56.93639799999994],[-61.343319000000008,56.934227000000078],[-61.340785999999866,56.930248000000006],[-61.355277999999998,56.910820000000001],[-61.400275999999963,56.884720000000129],[-61.404716000000008,56.87971500000009],[-61.399444999999957,56.875824000000023],[-61.378052000000025,56.871658000000139],[-61.360282999999924,56.866104000000121],[-61.352225999999973,56.857773000000066],[-61.355834999999956,56.852776000000119],[-61.361670999999944,56.848045000000013],[-61.375831999999946,56.840546000000018],[-61.443168999999898,56.817719000000125],[-61.48966999999999,56.807549000000108],[-61.563331999999946,56.784721000000104],[-61.570281999999906,56.781661999999983],[-61.576949999999954,56.778046000000074],[-61.585555999999997,56.766388000000063],[-61.584998999999982,56.761383000000023],[-61.58277899999996,56.756660000000011],[-61.575561999999991,56.753052000000082],[-61.564720000000023,56.751663000000121],[-61.555831999999953,56.752777000000094],[-61.540839999999946,56.757773999999984],[-61.526664999999866,56.76527400000009],[-61.515282000000013,56.774712000000079],[-61.497653999999955,56.78694200000001],[-61.488975999999923,56.789295000000038],[-61.476315,56.79019900000003],[-61.434002000000021,56.783688000000097],[-61.393313999999918,56.778988000000027],[-61.386626999999976,56.775913000000003],[-61.382107000000019,56.771393000000103],[-61.373965999999996,56.74390800000009],[-61.368724999999984,56.695988],[-61.368632999999988,56.6857720000001],[-61.370804000000021,56.675282000000038],[-61.378399000000002,56.632607000000007],[-61.379119999999944,56.626820000000066],[-61.39358900000002,56.617779000000041],[-61.409137999999928,56.615608000000009],[-61.444217999999978,56.619587000000081],[-61.484000999999978,56.641647000000091],[-61.521975999999938,56.669857000000093],[-61.561034999999947,56.682513999999969],[-61.588157999999964,56.703853999999978],[-61.605334999999968,56.713798999999995],[-61.635353000000009,56.731518000000051],[-61.644393999999977,56.734775999999954],[-61.644031999999868,56.73802900000004],[-61.634991000000014,56.770938999999998],[-61.624865999999997,56.82591200000013],[-61.632098999999982,56.859547000000077],[-61.588698999999963,56.893539000000089],[-61.534812999999986,56.901859000000002],[-61.522517999999934,56.914879000000099],[-61.5261339999999,56.933323000000087],[-61.523963999999921,56.940193000000079],[-61.499370999999996,56.952849999999955],[-61.473694000000023,56.95900000000006],[-61.460673999999983,56.955021000000045],[-61.446571000000006,56.935131000000126],[-61.429211000000009,56.929707000000008]],[[-76.621108999999933,57.075554000000125],[-76.646956999999986,57.073050999999964],[-76.660278000000005,57.075828999999999],[-76.671386999999925,57.083327999999995],[-76.675551999999925,57.087769000000094],[-76.681106999999997,57.097771000000023],[-76.709732000000031,57.182213000000047],[-76.708617999999944,57.18832400000008],[-76.678329000000019,57.205269000000044],[-76.669998000000021,57.20249199999995],[-76.667496000000028,57.195541000000048],[-76.626099000000011,57.142769000000101],[-76.618880999999988,57.080276000000026],[-76.621108999999933,57.075554000000125]],[[-61.621666000000005,57.335548000000131],[-61.611114999999984,57.334991000000002],[-61.605559999999912,57.335548000000131],[-61.594443999999953,57.334159999999997],[-61.589995999999985,57.330275999999969],[-61.589438999999913,57.325272000000041],[-61.59194199999996,57.321380999999974],[-61.608337000000006,57.308327000000077],[-61.652221999999995,57.290549999999996],[-61.658051,57.290276000000063],[-61.734725999999966,57.290276000000063],[-61.739998000000014,57.291939000000013],[-61.753333999999938,57.302490000000091],[-61.763617999999951,57.311661000000072],[-61.766662999999937,57.315269000000001],[-61.767776000000026,57.319716999999969],[-61.768607999999915,57.324996999999996],[-61.767501999999979,57.328330999999991],[-61.752228000000002,57.360275000000001],[-61.74888599999997,57.365546999999935],[-61.74500299999994,57.369155999999975],[-61.726944000000003,57.374435000000119],[-61.702498999999989,57.372765000000129],[-61.693329000000006,57.368050000000096],[-61.677497999999957,57.357216000000051],[-61.632216999999912,57.337769000000037],[-61.621666000000005,57.335548000000131]],[[-76.715012000000002,57.292770000000019],[-76.72972099999987,57.289718999999991],[-76.734726000000023,57.291382000000112],[-76.740279999999984,57.294441000000063],[-76.744445999999982,57.299438000000009],[-76.793059999999969,57.374709999999936],[-76.821944999999914,57.419715999999994],[-76.823623999999995,57.424713000000111],[-76.821670999999981,57.429436000000067],[-76.812774999999931,57.428329000000133],[-76.78443900000002,57.41693900000007],[-76.761397999999986,57.40387700000008],[-76.735549999999989,57.386383000000137],[-76.731109999999944,57.381934999999999],[-76.725554999999986,57.372765000000129],[-76.721114999999941,57.356658999999979],[-76.708054000000004,57.29583000000008],[-76.715012000000002,57.292770000000019]],[[-61.655273000000022,57.391380000000083],[-61.675003000000004,57.389992000000007],[-61.839721999999995,57.408043000000134],[-61.860000999999954,57.412491000000102],[-61.877494999999954,57.418602000000021],[-61.889998999999989,57.426102000000071],[-61.894446999999957,57.42971799999998],[-61.897780999999952,57.433327000000133],[-61.900275999999963,57.437492000000134],[-61.897498999999982,57.444153000000085],[-61.813003999999921,57.473709000000042],[-61.772738999999945,57.495097999999984],[-61.742774999999995,57.534995999999978],[-61.737220999999977,57.536942000000067],[-61.719993999999986,57.536384999999996],[-61.648055999999997,57.530272999999966],[-61.643889999999999,57.522766000000047],[-61.634726999999998,57.509438000000046],[-61.613616999999977,57.416100000000142],[-61.615279999999984,57.409157000000107],[-61.634170999999924,57.398880000000133],[-61.648337999999967,57.393608000000029],[-61.655273000000022,57.391380000000083]],[[-61.878333999999995,57.46305099999995],[-61.926948999999979,57.45249200000012],[-61.937499999999943,57.453049000000021],[-61.946945000000028,57.454993999999999],[-61.955832999999927,57.458046000000081],[-61.962776000000019,57.462212000000022],[-62.012504999999919,57.508331000000112],[-62.021942000000024,57.521102999999925],[-62.02305599999994,57.534164000000033],[-62.020279000000016,57.540276000000063],[-62.014450000000011,57.549438000000123],[-61.992500000000007,57.569160000000011],[-61.974997999999971,57.581383000000073],[-61.968886999999995,57.584434999999985],[-61.953056000000004,57.59027100000003],[-61.944442999999978,57.590828000000101],[-61.878052000000025,57.584991000000002],[-61.855002999999954,57.580551000000128],[-61.833327999999995,57.574440000000038],[-61.817504999999926,57.567215000000033],[-61.783614999999941,57.550545000000056],[-61.781386999999995,57.548050000000046],[-61.778885000000002,57.543883999999935],[-61.77694699999995,57.52388000000002],[-61.777778999999953,57.518326000000059],[-61.779441999999904,57.513611000000026],[-61.783057999999869,57.508331000000112],[-61.864165999999955,57.466385000000116],[-61.878333999999995,57.46305099999995]],[[-79.797501000000011,57.418884000000048],[-79.801666000000012,57.415825000000098],[-79.805556999999965,57.418053000000043],[-79.835830999999985,57.460274000000084],[-79.826949999999897,57.53804800000006],[-79.808883999999978,57.561661000000015],[-79.792769999999962,57.578880000000083],[-79.749160999999958,57.609718000000044],[-79.740828999999962,57.615547000000106],[-79.734160999999915,57.618881000000044],[-79.727782999999931,57.61721],[-79.723052999999993,57.612770000000012],[-79.706116000000009,57.585548000000074],[-79.70666499999993,57.580826000000002],[-79.704726999999991,57.576660000000061],[-79.698607999999979,57.563324000000136],[-79.695830999999998,57.531661999999983],[-79.698607999999979,57.519989000000123],[-79.705001999999922,57.508605999999929],[-79.712508999999955,57.500548999999978],[-79.797501000000011,57.418884000000048]],[[-61.688605999999936,57.713051000000121],[-61.696105999999929,57.712212000000136],[-61.757506999999976,57.715546000000131],[-61.768889999999999,57.716934000000037],[-61.894164999999987,57.754166000000055],[-61.896950000000004,57.758331000000055],[-61.896110999999962,57.769714000000079],[-61.891669999999976,57.779160000000047],[-61.865836999999999,57.799721000000034],[-61.853614999999934,57.808327000000133],[-61.80889099999996,57.836936999999978],[-61.800551999999925,57.841377000000023],[-61.778885000000002,57.84526800000009],[-61.773055999999997,57.845543000000077],[-61.711113000000012,57.834160000000111],[-61.698607999999922,57.830276000000083],[-61.653610000000015,57.784721000000104],[-61.652221999999995,57.782494000000042],[-61.651664999999923,57.779433999999981],[-61.652495999999928,57.775826000000052],[-61.654166999999916,57.771103000000096],[-61.668609999999887,57.738884000000041],[-61.674171000000001,57.726936000000023],[-61.684440999999936,57.714996000000099],[-61.688605999999936,57.713051000000121]],[[-61.947494999999947,57.787216000000114],[-61.957222000000002,57.78694200000001],[-62.08916499999998,57.808043999999995],[-62.100280999999995,57.816101000000003],[-62.108337000000006,57.824715000000026],[-62.109443999999996,57.829437000000098],[-62.108054999999922,57.837769000000094],[-62.099723999999924,57.846382000000062],[-62.094443999999953,57.850547999999947],[-62.065276999999924,57.870544000000109],[-62.028884999999946,57.892768999999987],[-62.009170999999924,57.904434000000037],[-61.995002999999997,57.90915700000005],[-61.986114999999984,57.910271000000023],[-61.971663999999976,57.911377000000016],[-61.941108999999983,57.909988000000055],[-61.928336999999942,57.908599999999922],[-61.923332000000016,57.906096999999988],[-61.918891999999971,57.90248900000006],[-61.884444999999971,57.86693600000001],[-61.867774999999881,57.84276600000004],[-61.867774999999881,57.838600000000099],[-61.879439999999931,57.816665999999998],[-61.881942999999922,57.812767000000008],[-61.885558999999887,57.809157999999968],[-61.889998999999989,57.806381000000101],[-61.940833999999938,57.788886999999988],[-61.947494999999947,57.787216000000114]],[[-77.678328999999962,58.235549999999932],[-77.687774999999931,58.235268000000076],[-77.702788999999996,58.238884000000098],[-77.761123999999938,58.257499999999936],[-77.946380999999917,58.3211060000001],[-77.950835999999924,58.32416500000005],[-77.947495000000004,58.328605999999979],[-77.940551999999968,58.330551000000014],[-77.932495000000017,58.331383000000073],[-77.917312999999922,58.329369000000042],[-77.829726999999934,58.311378000000047],[-77.80749499999996,58.305267000000015],[-77.801392000000021,58.303046999999992],[-77.702788999999996,58.260277000000031],[-77.689437999999996,58.253882999999973],[-77.670273000000009,58.244156000000032],[-77.668334999999956,58.241936000000067],[-77.668334999999956,58.240547000000049],[-77.678328999999962,58.235549999999932]],[[-67.596114999999998,58.284164000000089],[-67.616394000000014,58.284164000000089],[-67.637786999999946,58.28472099999999],[-67.666106999999954,58.292770000000019],[-67.673888999999917,58.296104000000014],[-67.676666000000012,58.301384000000041],[-67.675827000000027,58.306099000000074],[-67.672775000000001,58.312209999999993],[-67.624435000000005,58.368050000000096],[-67.61999499999996,58.372215000000097],[-67.61082499999992,58.373877999999991],[-67.599166999999909,58.373046999999985],[-67.580565999999976,58.369986999999924],[-67.527221999999995,58.343605000000082],[-67.520844000000011,58.339989000000003],[-67.517501999999979,58.335266000000047],[-67.51916499999993,58.329719999999952],[-67.524445000000014,58.32416500000005],[-67.551102000000014,58.302215999999987],[-67.557220000000029,58.298050000000046],[-67.571670999999867,58.290833000000134],[-67.596114999999998,58.284164000000089]],[[-78.453888000000006,58.539993000000038],[-78.455565999999862,58.537215999999944],[-78.463332999999977,58.537498000000028],[-78.474716000000001,58.541382000000056],[-78.649993999999936,58.601386999999988],[-78.672501000000011,58.610549999999989],[-78.683884000000035,58.620827000000133],[-78.697495000000004,58.678329000000076],[-78.698607999999979,58.688599000000011],[-78.696944999999971,58.690543999999989],[-78.692764000000011,58.691933000000006],[-78.665008999999998,58.674995000000081],[-78.659163999999976,58.669991000000095],[-78.635284000000013,58.618598999999961],[-78.631942999999978,58.616386000000034],[-78.628051999999968,58.614158999999972],[-78.56639100000001,58.586104999999918],[-78.513061999999934,58.563880999999981],[-78.457229999999981,58.542770000000132],[-78.453888000000006,58.539993000000038]],[[-69.194442999999922,59.064712999999983],[-69.18638599999997,59.064437999999996],[-69.180831999999953,59.06721500000009],[-69.178328999999906,59.029715999999951],[-69.227218999999934,58.971931000000041],[-69.320281999999963,58.946381000000088],[-69.327498999999989,58.94499200000007],[-69.338897999999972,58.944434999999999],[-69.350280999999995,58.946381000000088],[-69.355559999999969,58.949715000000083],[-69.360000999999954,58.958603000000039],[-69.357223999999974,58.964714000000129],[-69.318344000000025,59.02555099999995],[-69.319457999999997,59.098045000000127],[-69.353057999999976,59.127213000000097],[-69.357773000000009,59.13499500000006],[-69.357223999999974,59.139717000000132],[-69.345550999999944,59.144714000000079],[-69.339447000000007,59.146103000000039],[-69.282227000000034,59.154433999999981],[-69.275283999999942,59.154991000000052],[-69.198607999999922,59.14527099999998],[-69.18638599999997,59.138329000000056],[-69.18249499999996,59.128601000000003],[-69.194991999999957,59.09415400000006],[-69.199996999999996,59.077217000000019],[-69.200561999999877,59.072495000000117],[-69.198607999999922,59.06721500000009],[-69.194442999999922,59.064712999999983]],[[-80.53443900000002,59.369438000000002],[-80.544158999999979,59.365547000000106],[-80.552215999999873,59.365829000000133],[-80.555832000000009,59.369438000000002],[-80.549437999999952,59.446938000000046],[-80.537506000000008,59.455268999999987],[-80.488051999999982,59.477486000000056],[-80.475554999999929,59.481102000000078],[-80.465011999999945,59.463882000000126],[-80.471389999999928,59.454994000000113],[-80.477218999999934,59.451103000000046],[-80.520844000000011,59.382767000000058],[-80.525283999999942,59.377486999999974],[-80.53443900000002,59.369438000000002]],[[-80.277495999999985,59.618599000000131],[-80.319167999999991,59.612213000000054],[-80.329726999999991,59.612495000000138],[-80.340560999999923,59.614158999999972],[-80.343886999999995,59.619156000000032],[-80.340835999999967,59.625267000000122],[-80.295273000000009,59.678329000000019],[-80.232773000000009,59.725265999999976],[-80.222228999999857,59.723602000000142],[-80.171386999999925,59.715271000000087],[-80.154175000000009,59.709991000000002],[-80.14527899999996,59.705550999999957],[-80.154723999999931,59.682495000000131],[-80.156661999999983,59.678329000000019],[-80.170546999999999,59.673881999999992],[-80.205840999999964,59.665267999999912],[-80.222777999999892,59.660271000000023],[-80.229720999999984,59.656380000000127],[-80.233063000000016,59.651100000000042],[-80.237212999999997,59.639434999999992],[-80.240554999999858,59.634163000000058],[-80.246384000000035,59.629990000000078],[-80.260833999999988,59.623604],[-80.277495999999985,59.618599000000131]],[[-64.019729999999925,59.714713999999958],[-64.124160999999958,59.695267000000115],[-64.134170999999981,59.695541000000048],[-64.146118000000001,59.696655000000021],[-64.157226999999978,59.699715000000083],[-64.16332999999986,59.703605999999979],[-64.204452999999944,59.734436000000017],[-64.192490000000021,59.765549000000021],[-64.121933000000013,59.849433999999974],[-64.115828999999962,59.852776000000063],[-64.107223999999974,59.854996000000085],[-64.067504999999926,59.863884000000041],[-64.061385999999914,59.864440999999943],[-64.052779999999984,59.859992999999974],[-64.049727999999959,59.855270000000019],[-64.047774999999945,59.849433999999974],[-64.055266999999958,59.835266000000104],[-64.054442999999992,59.829437000000041],[-64.042769999999905,59.783882000000062],[-64.020278999999903,59.781104999999968],[-64.002791999999943,59.774712000000022],[-63.959723999999937,59.75638600000002],[-63.959441999999967,59.752220000000136],[-63.99722300000002,59.723602000000142],[-64.011397999999872,59.716385000000059],[-64.019729999999925,59.714713999999958]],[[-80.089721999999938,59.751938000000052],[-80.166945999999996,59.742493000000024],[-80.177779999999984,59.744156000000089],[-80.184158000000025,59.747771999999998],[-80.184722999999963,59.752777000000037],[-80.128875999999991,59.82388300000008],[-80.11500499999994,59.837769000000037],[-80.103057999999976,59.844994000000099],[-80.015015000000005,59.884995000000117],[-80.00778200000002,59.886107999999979],[-79.946944999999914,59.880272000000105],[-79.937774999999931,59.877768999999944],[-79.929992999999911,59.873603999999943],[-79.884170999999924,59.85833000000008],[-79.878875999999991,59.854713000000118],[-79.883621000000005,59.849998000000085],[-79.906661999999926,59.828049000000135],[-79.922226000000023,59.815544000000045],[-79.928054999999972,59.811661000000072],[-80.025283999999942,59.764442000000088],[-80.089721999999938,59.751938000000052]],[[-64.427673000000027,60.372932000000048],[-64.452788999999996,60.357215999999994],[-64.442763999999897,60.309715000000097],[-64.438323999999966,60.305550000000096],[-64.423614999999984,60.282494000000042],[-64.429442999999935,60.281936999999971],[-64.438048999999864,60.282494000000042],[-64.448607999999979,60.284164000000033],[-64.50111400000003,60.301933000000133],[-64.521712999999977,60.310730000000035],[-64.541106999999954,60.324440000000038],[-64.557219999999916,60.331383000000017],[-64.601943999999889,60.350273000000016],[-64.610001000000011,60.353606999999954],[-64.632216999999912,60.357498000000021],[-64.643889999999942,60.357773000000066],[-64.655562999999972,60.357498000000021],[-64.666107000000011,60.356940999999949],[-64.675551999999982,60.355270000000075],[-64.710007000000019,60.358330000000137],[-64.728881999999999,60.363327000000083],[-64.790282999999931,60.391106000000093],[-64.815552000000025,60.406096999999988],[-64.831116000000009,60.419159000000036],[-64.867492999999911,60.450272000000041],[-64.868606999999997,60.453323000000069],[-64.868056999999965,60.458885000000009],[-64.856110000000001,60.473877000000016],[-64.84722899999997,60.478874000000133],[-64.837783999999999,60.482491000000039],[-64.823058999999944,60.485268000000133],[-64.639998999999989,60.4847180000001],[-64.61860699999994,60.477211000000011],[-64.426940999999943,60.401381999999955],[-64.423889000000031,60.397216999999955],[-64.422501000000011,60.391937000000098],[-64.423889000000031,60.383049000000085],[-64.427673000000027,60.372932000000048]],[[-68.25140399999998,60.230820000000051],[-68.310546999999985,60.223045000000127],[-68.340285999999992,60.223320000000001],[-68.361937999999952,60.225822000000051],[-68.376937999999996,60.232491000000095],[-68.387222000000008,60.240829000000076],[-68.393065999999976,60.249161000000072],[-68.394729999999981,60.254440000000045],[-68.395003999999972,60.259995000000117],[-68.393065999999976,60.276100000000042],[-68.384170999999924,60.29972100000009],[-68.37777699999998,60.310271999999998],[-68.314437999999996,60.390273999999977],[-68.175277999999992,60.53443900000002],[-68.129439999999931,60.570549000000085],[-68.119155999999919,60.577217000000076],[-68.092223999999987,60.581665000000044],[-68.081679999999949,60.582496999999989],[-68.035277999999948,60.581107999999972],[-67.999435000000005,60.57749200000012],[-67.956664999999987,60.566100999999946],[-67.948607999999922,60.561377999999991],[-67.887221999999952,60.503883000000087],[-67.862212999999997,60.488045000000056],[-67.839721999999995,60.478043000000071],[-67.831389999999999,60.474990999999989],[-67.821395999999993,60.472487999999998],[-67.808043999999938,60.467209000000025],[-67.803054999999972,60.463051000000064],[-67.79861499999987,60.457497000000103],[-67.794998000000021,60.447769000000051],[-67.795546999999942,60.443877999999984],[-67.79861499999987,60.432213000000104],[-67.806106999999997,60.417496000000085],[-67.815276999999924,60.408043000000077],[-67.836394999999925,60.388603000000103],[-67.841385000000002,60.384438000000102],[-67.853333000000021,60.375266999999951],[-67.885559000000001,60.353606999999954],[-67.898055999999997,60.345267999999919],[-67.934433000000013,60.321662999999944],[-67.965285999999992,60.30832700000002],[-67.97222899999997,60.30582400000003],[-68.167496000000028,60.245544000000109],[-68.17721599999993,60.243049999999982],[-68.205276000000026,60.238045000000113],[-68.25140399999998,60.230820000000051]],[[-64.689986999999917,60.584435000000099],[-64.697220000000016,60.582214000000022],[-64.704452999999944,60.582496999999989],[-64.712783999999942,60.590271000000143],[-64.713897999999915,60.59526800000009],[-64.713057999999876,60.598877000000073],[-64.710830999999985,60.602776000000119],[-64.615554999999858,60.681664000000069],[-64.610274999999945,60.685265000000129],[-64.599166999999966,60.689430000000129],[-64.592772999999909,60.685547000000042],[-64.590835999999967,60.676659000000029],[-64.592498999999975,60.666939000000127],[-64.593886999999995,60.648331000000098],[-64.59584000000001,60.645271000000037],[-64.620543999999995,60.616661000000022],[-64.631667999999991,60.60833000000008],[-64.638061999999934,60.604996000000085],[-64.689986999999917,60.584435000000099]],[[-78.656386999999995,60.702774000000034],[-78.664718999999991,60.702217000000132],[-78.674163999999962,60.704711999999972],[-78.689986999999974,60.712212000000079],[-78.694716999999912,60.716660000000047],[-78.698333999999988,60.721656999999936],[-78.697768999999937,60.724159000000043],[-78.616393999999957,60.771935000000099],[-78.573623999999995,60.784163999999919],[-78.399993999999992,60.809990000000028],[-78.223891999999978,60.830826000000059],[-78.21945199999999,60.823883000000023],[-78.219161999999983,60.817497000000117],[-78.221114999999998,60.814156000000082],[-78.226669000000015,60.808883999999978],[-78.277221999999995,60.769157000000121],[-78.285004000000015,60.766106000000093],[-78.397231999999917,60.743881000000044],[-78.62332200000003,60.705551000000128],[-78.656386999999995,60.702774000000034]],[[-69.977218999999991,60.933051999999975],[-69.983886999999982,60.93110699999994],[-69.995269999999948,60.931381000000101],[-70.003615999999965,60.935265000000072],[-70.007781999999963,60.939155999999969],[-70.026107999999965,60.995827000000077],[-70.025008999999955,61.001937999999996],[-70.021666999999866,61.008605999999986],[-70.016662999999994,61.013611000000026],[-70.009170999999867,61.017768999999987],[-70.003341999999918,61.020828000000108],[-69.982772999999895,61.028327999999988],[-69.964721999999995,61.032768000000033],[-69.954177999999956,61.033882000000006],[-69.943603999999993,61.031380000000127],[-69.931380999999931,61.020271000000037],[-69.929992999999854,61.016663000000108],[-69.929717999999923,61.010825999999952],[-69.930832000000009,61.00471500000009],[-69.933883999999921,60.998047000000099],[-69.977218999999991,60.933051999999975]],[[-64.723891999999921,61.53833000000003],[-64.71665999999999,61.535827999999981],[-64.706954999999994,61.536658999999986],[-64.688323999999909,61.535552999999993],[-64.683318999999869,61.531105000000025],[-64.675277999999992,61.508606000000043],[-64.674164000000019,61.503325999999959],[-64.686935000000005,61.465827999999988],[-64.705276000000026,61.444153000000142],[-64.715012000000002,61.433327000000077],[-64.820557000000008,61.355270000000075],[-64.866942999999992,61.324164999999994],[-64.870833999999945,61.32249500000006],[-64.875274999999988,61.32249500000006],[-64.887222000000008,61.324715000000026],[-64.972503999999958,61.344154000000117],[-64.977492999999924,61.34777100000008],[-64.985000999999954,61.367493000000138],[-65.179168999999945,61.466933999999981],[-65.18582200000003,61.47554800000006],[-65.187499999999943,61.480270000000132],[-65.190552000000025,61.494995000000074],[-65.195267000000001,61.499160999999958],[-65.295272999999895,61.528877000000023],[-65.329453000000001,61.531937000000084],[-65.353333000000021,61.534721000000047],[-65.37249799999995,61.537216000000058],[-65.381103999999993,61.540550000000053],[-65.47444200000001,61.586936999999978],[-65.481109999999887,61.590828000000045],[-65.487777999999935,61.599433999999974],[-65.486938000000009,61.610825000000091],[-65.485000999999954,61.62193300000007],[-65.482223999999974,61.62860100000006],[-65.472228999999857,61.64027400000009],[-65.466400000000021,61.644997000000046],[-65.459441999999854,61.649162000000047],[-65.453063999999983,61.651932000000102],[-65.449158000000011,61.653602999999976],[-65.441375999999934,61.656654000000003],[-65.43582200000003,61.658043000000021],[-65.339721999999938,61.670547000000056],[-65.247498000000007,61.68082400000003],[-65.174438000000009,61.686935000000119],[-65.068343999999968,61.693047000000092],[-65.036391999999921,61.693603999999993],[-65.018889999999885,61.692490000000021],[-65.016112999999962,61.692214999999976],[-64.99499499999996,61.689987000000031],[-64.733062999999959,61.659987999999998],[-64.719161999999983,61.658043000000021],[-64.646392999999932,61.603882000000112],[-64.646118000000001,61.599716000000001],[-64.650833000000034,61.594437000000028],[-64.65972899999997,61.588042999999971],[-64.662780999999995,61.587769000000037],[-64.714172000000019,61.556381000000044],[-64.720275999999956,61.551383999999928],[-64.726104999999961,61.542220999999927],[-64.723891999999921,61.53833000000003]],[[-65.695266999999888,61.776657],[-65.71945199999999,61.754165999999998],[-65.803054999999915,61.755554000000075],[-65.827224999999942,61.758049000000085],[-65.891388000000006,61.76638800000012],[-65.903885000000002,61.768326000000059],[-65.931106999999997,61.778328000000045],[-65.939163000000008,61.782210999999961],[-65.944442999999978,61.785828000000095],[-65.948043999999925,61.790276000000063],[-65.94749499999989,61.796104000000014],[-65.943877999999927,61.799720999999977],[-65.818344000000025,61.860825000000034],[-65.809432999999956,61.86332700000014],[-65.789992999999981,61.865547000000106],[-65.778060999999866,61.865547000000106],[-65.767501999999979,61.862770000000012],[-65.718613000000005,61.841102999999976],[-65.714721999999938,61.836937000000091],[-65.713622999999984,61.824165000000107],[-65.695266999999888,61.776657]],[[-92.963897999999972,61.879158000000075],[-92.995270000000005,61.851105000000132],[-93.00167799999997,61.847214000000065],[-93.051940999999943,61.829437000000041],[-93.07028200000002,61.825272000000041],[-93.079726999999991,61.826941999999974],[-93.086669999999913,61.829437000000041],[-93.115828999999962,61.860275000000001],[-93.120270000000005,61.864441000000113],[-93.126937999999882,61.868599000000074],[-93.135833999999988,61.872489999999914],[-93.14805599999994,61.87582400000008],[-93.179717999999923,61.875549000000092],[-93.189437999999996,61.874161000000015],[-93.211120999999935,61.875267000000008],[-93.218886999999995,61.87943300000012],[-93.223327999999981,61.888329000000056],[-93.226105000000018,61.908325000000048],[-93.223617999999931,61.913048000000003],[-93.218886999999995,61.918884000000048],[-93.20944199999991,61.921104000000071],[-93.072509999999909,61.929993000000138],[-93.062209999999993,61.930550000000039],[-92.96945199999999,61.888329000000056],[-92.962783999999999,61.884162999999944],[-92.963897999999972,61.879158000000075]],[[-64.916106999999954,61.719437000000084],[-64.926940999999943,61.718880000000013],[-64.951950000000011,61.722488000000112],[-65.14805599999994,61.780548000000067],[-65.156661999999926,61.783882000000062],[-65.210555999999883,61.816940000000045],[-65.214721999999881,61.821938000000046],[-65.251953000000015,61.869713000000047],[-65.255843999999968,61.885551000000078],[-65.255004999999926,61.901657000000057],[-65.249435000000005,61.91027100000008],[-65.245270000000005,61.914711000000125],[-65.189712999999983,61.945540999999992],[-65.170273000000009,61.947769000000108],[-65.156951999999876,61.946938000000102],[-65.080291999999929,61.931107000000111],[-65.074448000000018,61.928329000000133],[-65.06806899999998,61.923882000000049],[-65.039169000000015,61.899719000000118],[-64.980834999999956,61.885826000000066],[-64.893341000000021,61.829994000000113],[-64.886948000000018,61.825554000000068],[-64.828887999999893,61.766662999999994],[-64.825835999999981,61.761939999999981],[-64.825287000000003,61.758330999999998],[-64.828887999999893,61.752220000000079],[-64.83555599999994,61.748877999999991],[-64.858046999999942,61.739158999999972],[-64.889449999999954,61.725822000000107],[-64.906112999999948,61.721100000000035],[-64.916106999999954,61.719437000000084]],[[-65.852492999999924,62.084717000000012],[-65.869155999999919,62.079720000000123],[-65.889998999999989,62.080551000000128],[-65.913329999999974,62.084990999999945],[-66.009734999999978,62.116661000000079],[-66.016662999999994,62.120543999999995],[-66.020279000000016,62.124435000000062],[-66.021118000000001,62.128326000000129],[-66.020843999999954,62.131660000000124],[-66.014724999999942,62.136658000000125],[-65.991942999999935,62.141380000000026],[-65.928054999999972,62.151657],[-65.904449,62.152771000000143],[-65.853607000000011,62.131104000000107],[-65.845000999999911,62.124992000000134],[-65.83555599999994,62.115272999999945],[-65.835830999999928,62.099716000000114],[-65.843886999999995,62.088599999999985],[-65.852492999999924,62.084717000000012]],[[-92.223617999999931,62.355552999999986],[-92.306106999999997,62.351661999999919],[-92.339721999999995,62.354712999999947],[-92.34973100000002,62.356659000000036],[-92.371932999999956,62.386939999999925],[-92.372498000000007,62.391937000000041],[-92.354445999999939,62.410820000000115],[-92.347777999999948,62.414436000000023],[-92.319457999999941,62.415268000000083],[-92.308333999999945,62.414436000000023],[-92.162216000000001,62.402214000000015],[-92.139724999999999,62.399719000000005],[-92.141112999999905,62.394714000000135],[-92.15834000000001,62.390549000000135],[-92.223617999999931,62.355552999999986]],[[-79.540558000000033,62.411102000000028],[-79.449996999999939,62.382767000000001],[-79.442764000000011,62.379990000000078],[-79.433883999999978,62.371376000000055],[-79.429168999999945,62.361664000000076],[-79.427215999999987,62.356102000000135],[-79.424438000000009,62.344154000000117],[-79.420546999999942,62.339989000000116],[-79.359160999999972,62.296104000000071],[-79.347228999999913,62.288886999999988],[-79.328613000000018,62.283332999999971],[-79.272780999999952,62.262215000000083],[-79.266112999999962,62.258048999999971],[-79.260833999999988,62.253608999999983],[-79.256393000000003,62.244438000000002],[-79.255568999999923,62.23971599999993],[-79.261397999999929,62.163605000000018],[-79.262222000000008,62.158882000000062],[-79.329726999999991,62.01527400000009],[-79.353881999999999,61.999718000000144],[-79.396392999999932,61.968879999999956],[-79.457229999999925,61.893883000000017],[-79.461944999999957,61.881660000000011],[-79.465560999999923,61.876099000000124],[-79.524445000000014,61.811378000000104],[-79.541320999999925,61.799789000000089],[-79.552779999999927,61.796386999999982],[-79.568344000000025,61.790276000000063],[-79.583618000000001,61.783051],[-79.596664000000033,61.774436999999978],[-79.605269999999962,61.765273999999977],[-79.611114999999984,61.754440000000102],[-79.612777999999992,61.742767000000072],[-79.611938000000009,61.738045],[-79.608336999999949,61.732208000000014],[-79.606110000000001,61.726654000000053],[-79.605559999999969,61.721100000000035],[-79.607498000000021,61.708885000000123],[-79.628875999999934,61.669158999999979],[-79.632216999999969,61.664993000000038],[-79.642226999999991,61.655822999999998],[-79.65695199999999,61.642494000000113],[-79.740828999999962,61.588600000000099],[-79.75389100000001,61.580276000000026],[-79.761397999999929,61.576942000000031],[-79.779449,61.571938000000102],[-79.805831999999896,61.568054000000075],[-79.827788999999939,61.566665999999998],[-79.846114999999941,61.569992000000013],[-79.87110899999999,61.609717999999987],[-79.954178000000013,61.683601000000124],[-80.06806899999998,61.745270000000062],[-80.079453000000001,61.747772000000111],[-80.092223999999987,61.748046999999929],[-80.138610999999912,61.748604000000057],[-80.161941999999954,61.748604000000057],[-80.173324999999977,61.750275000000101],[-80.191665999999884,61.755554000000075],[-80.205276000000026,61.762772000000098],[-80.275283999999999,61.806656000000032],[-80.27806099999998,61.810272000000055],[-80.278884999999946,61.816382999999973],[-80.291381999999942,61.929993000000138],[-80.295273000000009,61.983604000000014],[-80.268616000000009,62.107215999999994],[-80.266662999999994,62.111382000000049],[-80.198607999999979,62.1988750000001],[-80.180283000000031,62.217491000000109],[-80.017501999999979,62.358604000000014],[-80.009445000000028,62.362495000000081],[-79.981383999999935,62.374161000000072],[-79.947220000000016,62.386108000000036],[-79.938048999999978,62.388603000000046],[-79.919723999999974,62.393051000000014],[-79.900283999999999,62.395828000000108],[-79.842772999999909,62.403603000000032],[-79.833617999999944,62.404160000000104],[-79.730834999999956,62.399162000000103],[-79.605559999999969,62.41304800000006],[-79.584166999999979,62.417213000000061],[-79.561934999999892,62.417213000000061],[-79.540558000000033,62.411102000000028]],[[-92.411117999999931,62.39388300000013],[-92.420546999999942,62.391663000000108],[-92.431380999999988,62.391663000000108],[-92.440825999999959,62.393608000000086],[-92.529175000000009,62.378326000000072],[-92.539443999999946,62.377212999999983],[-92.561385999999914,62.377486999999917],[-92.583892999999989,62.379990000000078],[-92.595839999999953,62.382491999999957],[-92.600554999999986,62.386939999999925],[-92.600280999999995,62.392494000000113],[-92.596953999999926,62.397774000000027],[-92.592772999999966,62.40248900000006],[-92.539992999999981,62.428329000000019],[-92.531112999999948,62.431380999999931],[-92.410278000000005,62.408882000000006],[-92.403884999999946,62.404709000000025],[-92.405563000000029,62.399436999999921],[-92.411117999999931,62.39388300000013]],[[-64.653884999999946,62.540833000000021],[-64.580840999999964,62.538605000000075],[-64.559722999999963,62.554161000000022],[-64.559998000000007,62.55860100000001],[-64.555556999999965,62.560822000000144],[-64.549727999999959,62.56221000000005],[-64.397506999999962,62.536385000000053],[-64.389724999999999,62.533882000000062],[-64.385284000000013,62.531105000000139],[-64.382767000000001,62.525825999999995],[-64.382767000000001,62.511383000000137],[-64.39416499999993,62.461379999999963],[-64.477218999999991,62.408043000000021],[-64.528609999999958,62.386658000000068],[-64.59056099999998,62.367210000000114],[-64.598891999999978,62.366385999999977],[-64.653610000000015,62.372490000000028],[-64.772781000000009,62.386383000000023],[-64.87110899999999,62.406380000000127],[-64.926666000000012,62.41832700000009],[-64.937209999999993,62.421103999999957],[-64.945830999999998,62.424438000000123],[-64.952498999999875,62.428329000000019],[-64.953887999999949,62.431380999999931],[-64.965835999999911,62.465827999999931],[-64.846114999999998,62.555267000000015],[-64.815552000000025,62.559714999999983],[-64.797500999999954,62.561378000000104],[-64.766953000000001,62.562767000000122],[-64.753066999999987,62.562492000000077],[-64.741669000000002,62.560822000000144],[-64.653884999999946,62.540833000000021]],[[-78.008347000000015,62.593605000000082],[-77.86721799999998,62.589157000000114],[-77.850554999999986,62.582771000000037],[-77.841674999999952,62.568054000000018],[-77.837783999999999,62.556938000000116],[-77.840835999999911,62.549995000000081],[-77.844726999999978,62.544716000000108],[-77.852782999999988,62.541664000000026],[-77.86221299999994,62.53943600000008],[-77.873046999999985,62.537773000000129],[-77.885009999999966,62.537498000000141],[-77.913054999999929,62.53943600000008],[-78.103333000000021,62.559158000000082],[-78.113051999999925,62.56221000000005],[-78.114440999999943,62.570549000000085],[-78.111664000000019,62.578049000000135],[-78.107772999999952,62.582771000000037],[-78.105835000000013,62.583328000000108],[-78.047500999999897,62.591934000000037],[-78.030838000000017,62.593323000000055],[-78.019164999999987,62.591934000000037],[-78.008347000000015,62.593605000000082]],[[-77.805267000000015,62.592491000000109],[-77.727218999999934,62.585822999999948],[-77.665832999999907,62.586655000000064],[-77.628052000000025,62.588326000000109],[-77.621384000000035,62.584435000000042],[-77.637787000000003,62.570831000000112],[-77.651108000000022,62.563881000000094],[-77.659164000000033,62.560822000000144],[-77.734725999999966,62.535827999999981],[-77.745270000000005,62.534163999999976],[-77.758620999999891,62.535553000000107],[-77.780288999999925,62.539161999999976],[-77.808608999999933,62.546660999999915],[-77.813613999999973,62.551102000000014],[-77.831116000000009,62.590271000000087],[-77.831679999999949,62.595825000000104],[-77.821121000000005,62.596099999999922],[-77.809433000000013,62.59415400000006],[-77.805267000000015,62.592491000000109]],[[-64.983063000000016,62.528046000000018],[-65.007232999999928,62.526382000000012],[-65.096389999999985,62.534996000000035],[-65.119720000000029,62.537498000000141],[-65.131942999999978,62.539719000000048],[-65.138061999999991,62.542770000000075],[-65.141677999999956,62.54694400000011],[-65.137787000000003,62.550544999999943],[-65.022507000000019,62.594994000000099],[-65.00306699999993,62.598877000000016],[-64.972503999999958,62.602493000000095],[-64.909163999999976,62.604438999999957],[-64.892501999999979,62.598877000000016],[-64.884734999999921,62.59415400000006],[-64.843886999999938,62.582771000000037],[-64.839447000000007,62.57777399999992],[-64.860824999999863,62.561378000000104],[-64.866104000000007,62.558044000000109],[-64.874435000000005,62.554709999999943],[-64.965285999999878,62.531380000000013],[-64.972778000000005,62.529716000000008],[-64.983063000000016,62.528046000000018]],[[-91.572783999999956,62.627487000000087],[-91.578612999999962,62.62193300000007],[-91.668059999999912,62.649162000000047],[-91.683059999999955,62.662209000000075],[-91.685546999999985,62.666939000000127],[-91.67582699999997,62.669159000000093],[-91.663329999999974,62.665543000000071],[-91.655272999999909,62.662209000000075],[-91.581954999999994,62.641380000000083],[-91.575561999999934,62.637215000000083],[-91.571121000000005,62.632767000000115],[-91.572783999999956,62.627487000000087]],[[-90.979995999999971,62.657767999999976],[-90.990279999999984,62.656654000000003],[-91.003341999999918,62.657211000000075],[-91.098891999999921,62.654433999999981],[-91.244719999999973,62.669991000000039],[-91.256393000000003,62.671936000000017],[-91.266952999999944,62.675552000000096],[-91.271117999999944,62.679992999999968],[-91.267226999999991,62.685546999999985],[-91.226944000000003,62.691658000000075],[-91.173049999999989,62.691375999999991],[-91.080291999999986,62.686935000000062],[-91.056106999999997,62.681664000000069],[-90.981673999999998,62.661376999999959],[-90.979995999999971,62.657767999999976]],[[-74.347778000000005,62.679436000000067],[-74.309998000000007,62.679161000000079],[-74.285552999999993,62.679992999999968],[-74.25028999999995,62.682495000000074],[-74.216109999999958,62.684990000000084],[-74.181670999999994,62.688880999999981],[-74.158889999999985,62.688880999999981],[-74.145843999999954,62.687767000000008],[-74.015839000000028,62.664993000000038],[-74.009170999999981,62.662490999999932],[-73.959732000000031,62.62082700000002],[-73.958054000000004,62.616661000000136],[-73.958054000000004,62.612495000000024],[-73.962508999999955,62.607772999999952],[-73.969727000000034,62.604163999999969],[-73.988602000000014,62.602218999999991],[-74.128875999999877,62.600829999999974],[-74.154448999999886,62.601105000000018],[-74.169158999999922,62.602218999999991],[-74.183608999999933,62.603882000000056],[-74.333618000000001,62.62943300000012],[-74.541381999999942,62.668327000000033],[-74.551102000000014,62.670829999999967],[-74.586394999999925,62.683051999999975],[-74.617217999999923,62.696098000000063],[-74.639724999999999,62.706383000000017],[-74.64973399999991,62.712769000000094],[-74.651397999999858,62.716934000000094],[-74.645844000000011,62.720824999999991],[-74.537215999999944,62.748878000000104],[-74.526671999999905,62.748878000000104],[-74.519164999999873,62.747772000000111],[-74.482772999999952,62.739716000000044],[-74.392226999999934,62.687210000000107],[-74.379989999999964,62.682495000000074],[-74.374160999999958,62.681381000000101],[-74.347778000000005,62.679436000000067]],[[-70.711670000000026,62.81499500000001],[-70.659728999999913,62.79833200000013],[-70.587783999999999,62.774162000000103],[-70.547500999999954,62.765273999999977],[-70.415557999999976,62.729156000000103],[-70.396956999999986,62.723045000000013],[-70.226104999999961,62.603049999999996],[-70.217772999999966,62.594437000000028],[-70.212218999999948,62.584160000000054],[-70.211120999999991,62.579163000000108],[-70.211945000000014,62.57777399999992],[-70.264724999999999,62.559158000000082],[-70.283324999999991,62.55443600000001],[-70.373610999999926,62.533332999999914],[-70.393065999999976,62.530273000000079],[-70.414444000000003,62.529434000000094],[-70.466659999999933,62.53166200000004],[-70.501113999999973,62.533607000000075],[-70.686385999999914,62.546104000000014],[-70.723891999999978,62.550270000000125],[-70.746383999999978,62.554709999999943],[-70.765015000000005,62.560547000000099],[-70.770844000000011,62.564712999999983],[-70.819732999999985,62.604713000000118],[-70.825011999999958,62.614441000000113],[-70.854445999999939,62.713608000000079],[-70.846663999999976,62.766106000000036],[-70.945540999999935,62.798050000000046],[-71.01916499999993,62.811934999999949],[-71.032500999999968,62.81249200000002],[-71.043334999999956,62.811934999999949],[-71.051665999999955,62.810547000000042],[-71.106383999999935,62.80082700000014],[-71.141113000000018,62.794998000000135],[-71.148620999999935,62.794998000000135],[-71.15834000000001,62.797217999999987],[-71.176101999999958,62.809158000000082],[-71.240554999999972,62.876380999999981],[-71.241378999999995,62.881378000000097],[-71.236389000000031,62.886658000000125],[-71.229445999999882,62.888046000000031],[-71.191100999999946,62.884720000000016],[-71.073897999999929,62.871933000000013],[-70.788054999999929,62.836104999999975],[-70.760283999999956,62.829994000000056],[-70.711670000000026,62.81499500000001]],[[-66.368331999999953,62.83526599999999],[-66.373885999999857,62.833603000000096],[-66.386123999999995,62.834434999999985],[-66.490279999999984,62.855270000000132],[-66.505279999999971,62.861382000000106],[-66.601669000000015,62.906654000000117],[-66.593886999999938,62.911934000000031],[-66.574172999999973,62.913048000000003],[-66.547775000000001,62.910545000000013],[-66.540282999999931,62.907493999999986],[-66.441939999999988,62.871101000000124],[-66.377776999999924,62.843322999999998],[-66.370270000000005,62.839713999999958],[-66.368331999999953,62.83526599999999]],[[-81.87110899999999,62.928329000000133],[-81.865554999999972,62.923324999999977],[-81.864165999999955,62.919990999999982],[-81.90695199999999,62.866386000000091],[-81.926101999999958,62.744156000000032],[-81.924712999999997,62.739158999999972],[-81.923889000000031,62.733046999999942],[-81.924164000000019,62.728325000000041],[-81.926101999999958,62.723602000000085],[-81.929169000000002,62.719437000000084],[-81.938598999999954,62.709991000000116],[-81.958892999999989,62.697768999999937],[-81.973052999999993,62.689713000000097],[-82.102218999999991,62.629158000000132],[-82.1875,62.599433999999917],[-82.277785999999935,62.584160000000054],[-82.286941999999897,62.581664999999987],[-82.315552000000025,62.571663000000058],[-82.369155999999919,62.547493000000031],[-82.381667999999991,62.53943600000008],[-82.387786999999946,62.534721000000047],[-82.40194699999995,62.520546000000138],[-82.40834000000001,62.509720000000016],[-82.408889999999928,62.496657999999968],[-82.414444000000003,62.478043000000071],[-82.425811999999951,62.469986000000063],[-82.442214999999919,62.458603000000096],[-82.449722000000008,62.455269000000101],[-82.499434999999949,62.438599000000124],[-82.533889999999985,62.428604000000064],[-82.551940999999999,62.423881999999992],[-82.583617999999944,62.412766000000033],[-82.621384000000035,62.395271000000037],[-82.641113000000018,62.385269000000051],[-82.647232000000031,62.38110400000005],[-82.670273000000009,62.35943600000013],[-82.688599000000011,62.341103000000089],[-82.713057999999933,62.321381000000031],[-82.731383999999935,62.309990000000084],[-82.743606999999997,62.302489999999977],[-82.769164999999987,62.290276000000006],[-82.985549999999989,62.209717000000126],[-83.001953000000015,62.204437000000041],[-83.087783999999999,62.178879000000109],[-83.121932999999956,62.173050000000103],[-83.136397999999986,62.173050000000103],[-83.143889999999999,62.176659000000086],[-83.150832999999977,62.182770000000005],[-83.15943900000002,62.198600999999996],[-83.168059999999912,62.207497000000103],[-83.176392000000021,62.213051000000064],[-83.198607999999979,62.222214000000065],[-83.249435000000005,62.240829000000019],[-83.275832999999977,62.248604000000114],[-83.308043999999882,62.252777000000037],[-83.322784000000013,62.253052000000082],[-83.337783999999942,62.252219999999966],[-83.359726000000023,62.249718000000087],[-83.405562999999972,62.238884000000041],[-83.471938999999907,62.222763000000043],[-83.480835000000013,62.219986000000119],[-83.498885999999914,62.213326000000109],[-83.513335999999924,62.20638300000013],[-83.539992999999924,62.191933000000006],[-83.57417299999986,62.176384000000098],[-83.639174999999966,62.151100000000099],[-83.653885000000002,62.145827999999995],[-83.672774999999945,62.141106000000093],[-83.683318999999983,62.139717000000076],[-83.703887999999949,62.141662999999994],[-83.709441999999967,62.144440000000088],[-83.713897999999972,62.147216999999955],[-83.71833799999996,62.152214000000072],[-83.722778000000005,62.160271000000023],[-83.722778000000005,62.167213000000118],[-83.718063000000029,62.17943600000001],[-83.711945000000014,62.217209000000025],[-83.711669999999913,62.235825000000034],[-83.721389999999985,62.281662000000097],[-83.722778000000005,62.286385000000109],[-83.725829999999917,62.295273000000066],[-83.731673999999998,62.303604000000007],[-83.738892000000021,62.306937999999946],[-83.756667999999991,62.312492000000134],[-83.783324999999991,62.31888600000002],[-83.806655999999975,62.326385000000016],[-83.824448000000018,62.337212000000022],[-83.902495999999871,62.387497000000053],[-83.918610000000001,62.399162000000103],[-83.933608999999876,62.412209000000132],[-83.942489999999964,62.421661000000029],[-83.945267000000001,62.42721599999993],[-83.946654999999964,62.434158000000025],[-83.946654999999964,62.440269000000114],[-83.945267000000001,62.447212000000093],[-83.939162999999951,62.457497000000046],[-83.914168999999958,62.478600000000142],[-83.908339999999953,62.482764999999972],[-83.869445999999982,62.501105999999936],[-83.853058000000033,62.508049000000142],[-83.814437999999996,62.523880000000077],[-83.741378999999995,62.551658999999916],[-83.704177999999956,62.569443000000035],[-83.698043999999925,62.573051000000135],[-83.570007000000032,62.675270000000012],[-83.559433000000013,62.684157999999968],[-83.550277999999935,62.69999700000011],[-83.545546999999999,62.712212000000022],[-83.545546999999999,62.71776600000004],[-83.551392000000021,62.726653999999996],[-83.555831999999953,62.731659000000036],[-83.558884000000035,62.743881000000044],[-83.533614999999884,62.810272000000055],[-83.527495999999928,62.8211060000001],[-83.523055999999997,62.825271999999984],[-83.516953000000001,62.829994000000056],[-83.400283999999999,62.897491000000116],[-83.374160999999958,62.906937000000084],[-83.31082200000003,62.924438000000066],[-83.298614999999984,62.925827000000027],[-83.211670000000026,62.913605000000075],[-83.204177999999956,62.91027100000008],[-83.198333999999988,62.906654000000117],[-83.193877999999984,62.901932000000045],[-83.182495000000017,62.881378000000097],[-83.178054999999915,62.876380999999981],[-83.156112999999948,62.860549999999989],[-83.142501999999979,62.854439000000127],[-83.124709999999936,62.84804500000007],[-83.108337000000006,62.843322999999998],[-83.087509000000011,62.840271000000087],[-83.061935000000005,62.837493999999992],[-83.041107000000011,62.837212000000079],[-83.021392999999989,62.838599999999985],[-83.001677999999913,62.842491000000052],[-82.982223999999917,62.847771000000137],[-82.857497999999964,62.88999200000012],[-82.825561999999991,62.90277100000003],[-82.793335000000013,62.915543000000014],[-82.759734999999921,62.926940999999999],[-82.751952999999901,62.928878999999938],[-82.694442999999978,62.939430000000073],[-82.652221999999995,62.943878000000041],[-82.62470999999988,62.945540999999935],[-82.606658999999979,62.945540999999935],[-82.573623999999995,62.943878000000041],[-82.540833000000021,62.939430000000073],[-82.507781999999963,62.933601000000067],[-82.461394999999982,62.927489999999977],[-82.436110999999983,62.925270000000125],[-82.420837000000006,62.924995000000138],[-82.398055999999883,62.927489999999977],[-82.381377999999984,62.932770000000005],[-82.378052000000025,62.936377999999934],[-82.376389000000017,62.941101000000117],[-82.379165999999998,62.946655000000135],[-82.383620999999948,62.95138500000013],[-82.379989999999964,62.957497000000103],[-82.37222300000002,62.960274000000027],[-82.292770000000019,62.98333000000008],[-82.266662999999937,62.989159000000086],[-82.239440999999999,62.990273000000059],[-82.185821999999916,62.979988000000105],[-82.121932999999956,62.966660000000104],[-82.008057000000008,62.954993999999942],[-81.94027699999998,62.95387999999997],[-81.911666999999966,62.952217000000076],[-81.905838000000017,62.949997000000053],[-81.87110899999999,62.928329000000133]],[[-66.825561999999991,62.984161000000086],[-66.831389999999999,62.982765000000029],[-66.871384000000035,62.988884000000041],[-66.881942999999978,62.991661000000136],[-66.889450000000011,62.995269999999948],[-67.069457999999997,63.107498000000021],[-67.032776000000013,63.103881999999999],[-66.965285999999992,63.082496999999989],[-66.952224999999999,63.078049000000021],[-66.946105999999872,63.07499700000011],[-66.944442999999922,63.072768999999994],[-66.930557000000022,63.066939999999988],[-66.917496000000028,63.059715000000097],[-66.907501000000025,63.052773000000002],[-66.830001999999922,62.992493000000081],[-66.826950000000011,62.989990000000091],[-66.825011999999958,62.985550000000046],[-66.825561999999991,62.984161000000086]],[[-67.764450000000011,63.162491000000045],[-67.775833000000034,63.1616590000001],[-67.787505999999951,63.163048000000117],[-67.79861499999987,63.165543000000127],[-67.806380999999988,63.168602000000135],[-67.851943999999946,63.191376000000105],[-67.863327000000027,63.199158000000011],[-67.876388999999961,63.211937000000091],[-67.876937999999996,63.216933999999981],[-67.875,63.22304500000007],[-67.866393999999957,63.232491000000039],[-67.852218999999877,63.244438000000002],[-67.84445199999999,63.247215000000097],[-67.839721999999995,63.247215000000097],[-67.831954999999994,63.244155999999919],[-67.821945000000028,63.236656000000039],[-67.822234999999921,63.233330000000024],[-67.816101000000003,63.23054499999995],[-67.791671999999949,63.214996000000042],[-67.769454999999994,63.198326000000122],[-67.746108999999933,63.178879000000109],[-67.744720000000029,63.173050000000103],[-67.746384000000035,63.166939000000013],[-67.764450000000011,63.162491000000045]],[[-67.925003000000004,63.183327000000077],[-67.956116000000009,63.181107000000054],[-67.966949,63.183875999999998],[-68.000838999999985,63.208046000000024],[-68.017226999999991,63.220543000000021],[-68.061385999999914,63.257773999999984],[-68.105834999999956,63.299438000000066],[-68.111663999999962,63.309158000000139],[-68.112212999999997,63.313606000000107],[-68.106383999999991,63.318604000000107],[-68.096953999999926,63.318885999999964],[-68.085555999999997,63.316101000000117],[-68.069167999999877,63.309432999999956],[-68.048889000000031,63.297493000000088],[-68.032227000000034,63.284996000000092],[-68.00028999999995,63.260276999999917],[-67.92582699999997,63.196098000000006],[-67.920546999999999,63.191376000000105],[-67.916945999999939,63.186653000000092],[-67.925003000000004,63.183327000000077]],[[-78.079726999999991,63.469436999999914],[-77.946105999999986,63.468048000000124],[-77.937774999999988,63.471100000000035],[-77.930556999999965,63.474991000000102],[-77.924164000000019,63.47693600000008],[-77.911941999999954,63.476379000000009],[-77.845001000000025,63.472214000000008],[-77.680557000000022,63.434433000000013],[-77.636672999999917,63.402771000000087],[-77.495834000000002,63.274994000000106],[-77.493880999999988,63.269989000000066],[-77.49499499999996,63.265831000000105],[-77.50389100000001,63.252494999999954],[-77.573333999999932,63.200546000000145],[-77.641953000000001,63.171936000000073],[-77.785277999999892,63.121658000000139],[-77.898894999999925,63.09276600000004],[-77.906661999999983,63.09165999999999],[-77.931380999999931,63.090546000000018],[-77.946655000000021,63.091103000000089],[-77.958343999999954,63.093048000000124],[-78.025008999999898,63.11721],[-78.124709999999993,63.165825000000041],[-78.226944000000003,63.221656999999993],[-78.295546999999999,63.25999500000006],[-78.311385999999914,63.272217000000012],[-78.322234999999978,63.281105000000025],[-78.343613000000005,63.29694400000011],[-78.354445999999996,63.303604000000121],[-78.446655000000021,63.350273000000129],[-78.486937999999896,63.364998000000071],[-78.519729999999981,63.370270000000005],[-78.523894999999982,63.372489999999971],[-78.562499999999943,63.395828000000108],[-78.572234999999921,63.434715000000097],[-78.572783999999956,63.440269000000114],[-78.551665999999955,63.44499200000007],[-78.379989999999964,63.476379000000009],[-78.278885000000002,63.489716000000044],[-78.214111000000003,63.496535999999992],[-78.212783999999999,63.496101000000067],[-78.158614999999884,63.482208000000014],[-78.091675000000009,63.470543000000134],[-78.079726999999991,63.469436999999914]],[[-90.653884999999946,63.441101000000003],[-90.697495000000004,63.439713000000097],[-90.708892999999932,63.440544000000102],[-90.719161999999983,63.443603999999993],[-90.72582999999986,63.448043999999982],[-90.755004999999983,63.489716000000044],[-90.757232999999985,63.494438000000116],[-90.748046999999929,63.498329000000012],[-90.737502999999947,63.499161000000129],[-90.645553999999947,63.483330000000137],[-90.620269999999948,63.47693600000008],[-90.602782999999988,63.463882000000012],[-90.598052999999993,63.454436999999984],[-90.602218999999991,63.449158000000011],[-90.611937999999952,63.44609800000012],[-90.621932999999956,63.444153000000142],[-90.653884999999946,63.441101000000003]],[[-78.55749499999996,63.457497000000046],[-78.600554999999929,63.456383000000017],[-78.603333000000021,63.45777099999998],[-78.56138599999997,63.502495000000124],[-78.543334999999956,63.516106000000093],[-78.515839000000028,63.53166200000004],[-78.505004999999869,63.532493999999929],[-78.496108999999933,63.529434000000094],[-78.473327999999981,63.519157000000121],[-78.468063000000029,63.515549000000021],[-78.46166999999997,63.507499999999993],[-78.459166999999979,63.479988000000048],[-78.461945000000014,63.47387700000013],[-78.467223999999987,63.469436999999914],[-78.475554999999986,63.466933999999981],[-78.531113000000005,63.458603000000039],[-78.55749499999996,63.457497000000046]],[[-90.793609999999944,63.494156000000089],[-90.804442999999935,63.493324000000143],[-90.816956000000005,63.495827000000133],[-90.877212999999983,63.514717000000076],[-90.933318999999983,63.534164000000089],[-90.965835999999967,63.54583000000008],[-90.96833799999996,63.550270000000125],[-90.957503999999972,63.551384000000098],[-90.771117999999944,63.55193300000002],[-90.748046999999929,63.550270000000125],[-90.720001000000025,63.543052999999986],[-90.709731999999974,63.539992999999924],[-90.700835999999981,63.536110000000008],[-90.681380999999988,63.52304799999996],[-90.676940999999886,63.518599999999992],[-90.674712999999997,63.513884999999959],[-90.678604000000007,63.508330999999998],[-90.688889000000017,63.50638600000002],[-90.793609999999944,63.494156000000089]],[[-64.851944000000003,63.385826000000122],[-64.856948999999986,63.385826000000122],[-64.882216999999969,63.395546000000024],[-64.904175000000009,63.40638000000007],[-64.918335000000013,63.413879000000065],[-64.942215000000033,63.43082400000003],[-64.950835999999924,63.439156000000025],[-65.026672000000019,63.515549000000021],[-65.035278000000005,63.524436999999978],[-65.053054999999972,63.548331999999959],[-65.051940999999999,63.552215999999987],[-64.977218999999991,63.568329000000062],[-64.967498999999918,63.568329000000062],[-64.954726999999991,63.558883999999978],[-64.954726999999991,63.553879000000109],[-64.93360899999999,63.544716000000108],[-64.912216000000001,63.533333000000084],[-64.909163999999976,63.528603000000089],[-64.867492999999911,63.461662000000047],[-64.860824999999863,63.447212000000093],[-64.847504000000015,63.407494000000042],[-64.844726999999978,63.396942000000081],[-64.847778000000005,63.387496999999996],[-64.851944000000003,63.385826000000122]],[[-72.182495000000017,63.51998900000001],[-72.207503999999972,63.51998900000001],[-72.218886999999995,63.522491000000059],[-72.226943999999946,63.525825999999995],[-72.232772999999895,63.530273000000022],[-72.286666999999909,63.583328000000108],[-72.279174999999952,63.585548000000131],[-72.232223999999917,63.586655000000064],[-72.230285999999978,63.587212000000136],[-72.205276000000026,63.583054000000004],[-72.184432999999956,63.577217000000019],[-72.135559000000001,63.562767000000065],[-72.129165999999998,63.558883999999978],[-72.128052000000025,63.553879000000109],[-72.145003999999972,63.539436000000023],[-72.165833000000021,63.526381999999955],[-72.173614999999984,63.522766000000104],[-72.182495000000017,63.51998900000001]],[[-91.329177999999956,63.559714999999983],[-91.401947000000007,63.549438000000009],[-91.424438000000009,63.550270000000125],[-91.43638599999997,63.55193300000002],[-91.461944999999901,63.558327000000077],[-91.540282999999931,63.601662000000033],[-91.540558000000033,63.606658999999979],[-91.534164000000033,63.611381999999935],[-91.501113999999973,63.611938000000123],[-91.463897999999915,63.6097180000001],[-91.440826000000015,63.608047000000056],[-91.428604000000007,63.606383999999935],[-91.416396999999961,63.603607000000068],[-91.362503000000004,63.590271000000087],[-91.34944200000001,63.586655000000064],[-91.299727999999959,63.567771999999934],[-91.308884000000035,63.563881000000094],[-91.329177999999956,63.559714999999983]],[[-64.092498999999918,63.481659000000093],[-64.101944000000003,63.47943099999992],[-64.109160999999915,63.483046999999999],[-64.169448999999986,63.523605000000089],[-64.180556999999965,63.533051000000057],[-64.184158000000025,63.537216000000058],[-64.209166999999979,63.574996999999996],[-64.216109999999901,63.595268000000033],[-64.216948999999943,63.601105000000132],[-64.215285999999935,63.617493000000024],[-64.212783999999942,63.623604000000114],[-64.199722000000008,63.633331000000055],[-64.191939999999988,63.637215000000083],[-64.182495000000017,63.639435000000105],[-64.17193599999996,63.633606000000043],[-64.09333799999996,63.568329000000062],[-64.078338999999914,63.550545000000113],[-64.077224999999999,63.545273000000009],[-64.077788999999882,63.539718999999991],[-64.086120999999935,63.493050000000039],[-64.087508999999955,63.486655999999982],[-64.092498999999918,63.481659000000093]],[[-68.656386999999938,63.626381000000038],[-68.717772999999909,63.624161000000015],[-68.731109999999944,63.625549000000092],[-68.815552000000025,63.649162000000047],[-68.821670999999981,63.652488999999946],[-68.820007000000032,63.65526600000004],[-68.793059999999969,63.661659000000043],[-68.71444699999995,63.672493000000088],[-68.691665999999941,63.673607000000061],[-68.676940999999999,63.671379000000115],[-68.668883999999935,63.668326999999977],[-68.666397000000018,63.663879000000009],[-68.666259999999966,63.662581999999986],[-68.655272999999966,63.634437999999989],[-68.654449,63.630272000000105],[-68.656386999999938,63.626381000000038]],[[-64.061110999999983,63.270546000000138],[-64.070556999999951,63.268326000000116],[-64.078338999999914,63.268883000000017],[-64.181945999999982,63.29694400000011],[-64.25140399999998,63.320830999999998],[-64.266953000000001,63.326384999999959],[-64.349730999999963,63.392220000000009],[-64.353881999999885,63.395828000000108],[-64.421936000000017,63.471657000000107],[-64.496108999999876,63.6097180000001],[-64.490554999999972,63.620544000000052],[-64.479171999999949,63.636940000000038],[-64.473617999999874,63.640549000000078],[-64.386672999999973,63.675270000000012],[-64.377212999999927,63.677489999999977],[-64.367217999999923,63.675270000000012],[-64.363051999999925,63.671936000000017],[-64.328888000000006,63.644440000000145],[-64.325561999999934,63.637496999999939],[-64.325561999999934,63.59804500000007],[-64.324447999999961,63.588042999999971],[-64.321670999999981,63.577492000000063],[-64.316101000000003,63.562492000000077],[-64.262511999999958,63.421104000000128],[-64.232498000000021,63.388329000000113],[-64.225280999999939,63.384438000000046],[-64.20666499999993,63.384163000000001],[-64.166945999999996,63.369438000000059],[-64.144729999999925,63.355552999999986],[-64.099990999999932,63.322769000000108],[-64.057495000000017,63.278046000000018],[-64.057495000000017,63.273880000000133],[-64.061110999999983,63.270546000000138]],[[-71.799164000000019,63.615546999999935],[-71.806945999999868,63.611938000000123],[-71.845275999999956,63.613608999999997],[-71.855269999999905,63.615829000000019],[-71.863327000000027,63.619438000000002],[-71.865829000000019,63.624435000000119],[-71.865829000000019,63.636383000000137],[-71.864166000000012,63.669440999999949],[-71.830565999999919,63.693878000000041],[-71.821945000000028,63.695267000000058],[-71.789444000000003,63.691375999999991],[-71.779449,63.68832400000008],[-71.775283999999999,63.683051999999918],[-71.777221999999938,63.670830000000137],[-71.791107000000011,63.627213000000097],[-71.799164000000019,63.615546999999935]],[[-76.810546999999985,63.601105000000132],[-76.710555999999997,63.565826000000072],[-76.672225999999966,63.528877000000023],[-76.675551999999925,63.496658000000139],[-76.681609999999978,63.481354000000067],[-76.61332699999997,63.473602000000085],[-76.565551999999911,63.46776600000004],[-76.546111999999994,63.464714000000129],[-76.541945999999939,63.462494000000106],[-76.543883999999991,63.461104999999918],[-76.675002999999947,63.374709999999993],[-76.682219999999973,63.370827000000077],[-76.692214999999976,63.367767000000015],[-76.703338999999971,63.365829000000076],[-76.712783999999942,63.365546999999992],[-76.726105000000018,63.36693600000001],[-76.847778000000005,63.385269000000051],[-76.984160999999915,63.40638000000007],[-77.035277999999948,63.423882000000106],[-77.039443999999946,63.426102000000128],[-77.046111999999994,63.42971799999998],[-77.051391999999964,63.434158000000025],[-77.05360399999995,63.436935000000119],[-77.055556999999965,63.442764000000125],[-77.06138599999997,63.450546000000088],[-77.105834999999956,63.476654000000053],[-77.111663999999962,63.479713000000004],[-77.327788999999996,63.572220000000129],[-77.36721799999998,63.583054000000004],[-77.391388000000006,63.585548000000131],[-77.411666999999966,63.584991000000002],[-77.422226000000023,63.586655000000064],[-77.427779999999984,63.589157000000114],[-77.431945999999982,63.591934000000037],[-77.442215000000033,63.608330000000024],[-77.457229999999981,63.643325999999945],[-77.453887999999949,63.652214000000129],[-77.44027699999998,63.665268000000026],[-77.410277999999948,63.686652999999978],[-77.40055799999999,63.688880999999981],[-77.378051999999968,63.692214999999919],[-77.343338000000017,63.696098000000063],[-77.116942999999935,63.681107000000111],[-77.103332999999964,63.67971799999998],[-77.06138599999997,63.672768000000076],[-77.021392999999932,63.664154000000053],[-76.810546999999985,63.601105000000132]],[[-72.594727000000034,63.642494000000056],[-72.604445999999939,63.641663000000051],[-72.780563000000029,63.659987999999942],[-72.783324999999877,63.66443600000008],[-72.770553999999947,63.669715999999994],[-72.756667999999877,63.672768000000076],[-72.723052999999993,63.67860399999995],[-72.506667999999991,63.707214000000022],[-72.483886999999982,63.708885000000066],[-72.474166999999909,63.705826000000116],[-72.470839999999953,63.702217000000076],[-72.471389999999985,63.700828999999999],[-72.468886999999938,63.699158000000125],[-72.463333000000034,63.689156000000139],[-72.459731999999974,63.679161000000079],[-72.46055599999994,63.672768000000076],[-72.463897999999972,63.668326999999977],[-72.584441999999967,63.644440000000145],[-72.594727000000034,63.642494000000056]],[[-64.032501000000025,63.68971300000004],[-64.161117999999988,63.674438000000066],[-64.181106999999997,63.675827000000083],[-64.200286999999946,63.685546999999985],[-64.208344000000011,63.697487000000081],[-64.21166999999997,63.706383000000017],[-64.212509000000011,63.712212000000022],[-64.208892999999989,63.721930999999984],[-64.180283000000031,63.742218000000094],[-64.17471299999994,63.745270000000005],[-64.166655999999989,63.747772000000055],[-64.083069000000023,63.758331000000112],[-64.078063999999983,63.758331000000112],[-64.075287000000003,63.758049000000028],[-64.073333999999932,63.756386000000134],[-64.054840000000013,63.736595000000079],[-64.043335000000013,63.734161000000086],[-64.030288999999982,63.729713000000118],[-64.025283999999942,63.70249200000012],[-64.025283999999942,63.697487000000081],[-64.026397999999915,63.693878000000041],[-64.032501000000025,63.68971300000004]],[[-72.667769999999962,63.69582400000013],[-72.6949919999999,63.690269000000058],[-72.703613000000018,63.692490000000134],[-72.734160999999972,63.710823000000005],[-72.738891999999908,63.714439000000084],[-72.741669000000002,63.719711000000018],[-72.743880999999874,63.730270000000019],[-72.739989999999977,63.736107000000004],[-72.719727000000034,63.76388500000013],[-72.715560999999923,63.766106000000036],[-72.705841000000021,63.767494000000113],[-72.693877999999984,63.765830999999991],[-72.682495000000017,63.762214999999969],[-72.664718999999934,63.755554000000018],[-72.642226999999934,63.745270000000005],[-72.635833999999988,63.741379000000109],[-72.626663000000008,63.732207999999957],[-72.625823999999966,63.727486000000056],[-72.626389000000017,63.721099999999979],[-72.634170999999981,63.709160000000054],[-72.649993999999992,63.701385000000016],[-72.667769999999962,63.69582400000013]],[[-64.28443900000002,63.708602999999982],[-64.286391999999978,63.708046000000081],[-64.311110999999926,63.709991000000116],[-64.329178000000013,63.71665999999999],[-64.336394999999925,63.719986000000006],[-64.348617999999988,63.728042999999957],[-64.356948999999986,63.736938000000009],[-64.363616999999977,63.746383999999978],[-64.381103999999993,63.807495000000131],[-64.35943599999996,63.803879000000052],[-64.339721999999938,63.796943999999996],[-64.331954999999994,63.791663999999969],[-64.302779999999927,63.78054800000001],[-64.278610000000015,63.770828000000108],[-64.275008999999955,63.766663000000108],[-64.255279999999971,63.729713000000118],[-64.255004999999926,63.72526600000009],[-64.260833999999875,63.719711000000018],[-64.28443900000002,63.708602999999982]],[[-64.170273000000009,63.856384000000105],[-64.180831999999896,63.785270999999966],[-64.195267000000001,63.778603000000032],[-64.203338999999971,63.776382000000126],[-64.234435999999903,63.771378000000141],[-64.245834000000002,63.771378000000141],[-64.256957999999997,63.774162000000103],[-64.325561999999934,63.80582400000003],[-64.398346000000004,63.845543000000134],[-64.39916999999997,63.849434000000031],[-64.397780999999895,63.851386999999988],[-64.396117999999944,63.851936000000137],[-64.353881999999885,63.861107000000061],[-64.334091000000001,63.852081000000055],[-64.325561999999934,63.850273000000016],[-64.31082200000003,63.848328000000038],[-64.268340999999907,63.846100000000035],[-64.215012000000002,63.850273000000016],[-64.208344000000011,63.852776000000006],[-64.200286999999946,63.859718000000044],[-64.186661000000015,63.86721],[-64.179992999999911,63.865547000000106],[-64.175827000000027,63.861938000000066],[-64.170273000000009,63.856384000000105]],[[-92.954178000000013,63.871101000000067],[-92.96055599999994,63.866386000000034],[-92.972778000000005,63.867767000000072],[-92.998610999999983,63.873046999999985],[-93.068619000000012,63.888046000000031],[-93.093886999999995,63.899994000000049],[-93.094451999999933,63.904990999999995],[-93.087783999999999,63.908882000000062],[-93.070007000000032,63.909713999999951],[-93.002791999999943,63.911377000000073],[-92.990829000000019,63.910820000000001],[-92.978333000000021,63.908324999999991],[-92.97444200000001,63.901657],[-92.955275999999969,63.880820999999969],[-92.952498999999989,63.876099000000067],[-92.954178000000013,63.871101000000067]],[[-64.576110999999855,63.780822999999998],[-64.525832999999977,63.771378000000141],[-64.467772999999966,63.771378000000141],[-64.461945000000014,63.774712000000136],[-64.452498999999989,63.777214000000015],[-64.432769999999948,63.779434000000037],[-64.426102000000014,63.777771000000087],[-64.394729999999981,63.745827000000077],[-64.387511999999958,63.737495000000081],[-64.386123999999938,63.73443600000013],[-64.386123999999938,63.701660000000004],[-64.389998999999932,63.696381000000031],[-64.404175000000009,63.687492000000134],[-64.419158999999979,63.67971799999998],[-64.436385999999914,63.673324999999977],[-64.450561999999934,63.671660999999972],[-64.459441999999967,63.672768000000076],[-64.47444200000001,63.679161000000079],[-64.496947999999918,63.690826000000129],[-64.661666999999909,63.754997000000117],[-64.802215999999987,63.764442000000031],[-64.813323999999966,63.767212000000029],[-64.890288999999939,63.789435999999966],[-64.90055799999999,63.793883999999935],[-64.906386999999995,63.797493000000145],[-64.916396999999904,63.806380999999931],[-64.918335000000013,63.815269000000114],[-64.920272999999952,63.824715000000083],[-64.917769999999905,63.831108000000029],[-64.910277999999948,63.837212000000079],[-64.896392999999989,63.845267999999976],[-64.811660999999958,63.87721300000004],[-64.710555999999997,63.908882000000062],[-64.682494999999903,63.91443600000008],[-64.660278000000005,63.916382000000112],[-64.647231999999974,63.916100000000085],[-64.557219999999916,63.909988000000112],[-64.553054999999915,63.906380000000013],[-64.549437999999952,63.895271000000093],[-64.571121000000005,63.870827000000133],[-64.585555999999997,63.844994000000042],[-64.576110999999855,63.780822999999998]],[[-77.743880999999931,63.926658999999916],[-77.753341999999975,63.925551999999982],[-77.948607999999979,63.950829000000113],[-77.956954999999937,63.95388000000014],[-77.966948999999886,63.959160000000054],[-77.978881999999999,63.96915400000006],[-77.982497999999964,63.97554800000006],[-77.982497999999964,63.983047000000056],[-77.976105000000018,63.990273000000059],[-77.957503999999972,64.004715000000033],[-77.950287000000003,64.009155000000021],[-77.943603999999993,64.011107999999979],[-77.923889000000031,64.014999000000046],[-77.889998999999989,64.019989000000066],[-77.774445000000014,64.031662000000097],[-77.753890999999953,64.032761000000107],[-77.648620999999991,64.032486000000063],[-77.591110000000015,64.030272999999966],[-77.557219999999973,64.028046000000074],[-77.549727999999959,64.025543000000084],[-77.544448999999986,64.021927000000062],[-77.545273000000009,64.018600000000106],[-77.623610999999983,63.997214999999926],[-77.623885999999914,63.99582700000002],[-77.628052000000025,63.991104000000064],[-77.639450000000011,63.981934000000024],[-77.68638599999997,63.954437000000041],[-77.728606999999954,63.932213000000104],[-77.737212999999883,63.928329000000076],[-77.743880999999931,63.926658999999916]],[[-89.808884000000035,64.056366000000082],[-89.817229999999938,64.054703000000131],[-89.828887999999893,64.055816999999934],[-89.839447000000007,64.058868000000132],[-89.847778000000005,64.063034000000073],[-89.861114999999984,64.071655000000135],[-89.869995000000017,64.080826000000116],[-89.871933000000013,64.085541000000148],[-89.867767000000015,64.095824999999991],[-89.857498000000021,64.0977630000001],[-89.831679999999892,64.091094999999939],[-89.828063999999927,64.088318000000072],[-89.819732999999928,64.080276000000083],[-89.80471799999998,64.0619200000001],[-89.808884000000035,64.056366000000082]],[[-64.962783999999999,64.110809000000074],[-64.948607999999979,64.109710999999947],[-64.903609999999901,64.111099000000081],[-64.87110899999999,64.099152000000117],[-64.869445999999982,64.096649000000127],[-64.869995000000017,64.093323000000112],[-64.87332200000003,64.090820000000122],[-64.884445000000028,64.086655000000121],[-64.905563000000029,64.082214000000022],[-64.946655000000021,64.078872999999987],[-64.988892000000021,64.081375000000037],[-65.002228000000002,64.083878000000027],[-65.02305599999994,64.089432000000045],[-65.045546999999942,64.099426000000051],[-65.055556999999965,64.108596999999975],[-65.057495000000017,64.11303700000002],[-65.056380999999931,64.117203000000075],[-65.05221599999993,64.121093999999971],[-65.039718999999934,64.124985000000038],[-65.025009000000011,64.127472000000125],[-65.015563999999927,64.126922999999977],[-64.995270000000005,64.12303199999991],[-64.989990000000034,64.118590999999981],[-64.980834999999956,64.115265000000136],[-64.962783999999999,64.110809000000074]],[[-64.491104000000007,64.109146000000123],[-64.499999999999943,64.10803199999998],[-64.511397999999929,64.108321999999987],[-64.587508999999955,64.147491000000059],[-64.592498999999975,64.151931999999988],[-64.595276000000013,64.15498400000007],[-64.59584000000001,64.156647000000021],[-64.567779999999971,64.163605000000018],[-64.554169000000002,64.166931000000034],[-64.524444999999957,64.167206000000022],[-64.518111999999917,64.166214000000025],[-64.50111400000003,64.163314999999955],[-64.453339000000028,64.146942000000081],[-64.450287000000003,64.130264000000011],[-64.491104000000007,64.109146000000123]],[[-73.176940999999999,64.200271999999984],[-73.282776000000013,64.143326000000059],[-73.291945999999939,64.14387499999998],[-73.386397999999872,64.158874999999966],[-73.396956999999986,64.161102000000028],[-73.401672000000019,64.165543000000127],[-73.394729999999925,64.187759000000085],[-73.393065999999919,64.192474000000118],[-73.385559000000001,64.196365000000014],[-73.309433000000013,64.194977000000108],[-73.206664999999987,64.213882000000069],[-73.189986999999917,64.212203999999929],[-73.178054999999972,64.209991000000002],[-73.17332499999992,64.205261000000121],[-73.176940999999999,64.200271999999984]],[[-81.471389999999985,64.188873000000058],[-81.493606999999997,64.188309000000118],[-81.516112999999962,64.190536000000009],[-81.527785999999992,64.194137999999953],[-81.536666999999852,64.208603000000096],[-81.538054999999929,64.218048000000124],[-81.532226999999921,64.223038000000031],[-81.470000999999911,64.239426000000094],[-81.458618000000001,64.238876000000062],[-81.413329999999974,64.233322000000044],[-81.390288999999939,64.229155999999932],[-81.378601000000003,64.22554000000008],[-81.375823999999909,64.220825000000048],[-81.374999999999943,64.215820000000008],[-81.378875999999934,64.211929000000112],[-81.388901000000033,64.204987000000017],[-81.405272999999909,64.19470200000012],[-81.471389999999985,64.188873000000058]],[[-64.52027899999996,64.220261000000107],[-64.576401000000033,64.210541000000035],[-64.601668999999958,64.212493999999992],[-64.611938000000009,64.215820000000008],[-64.619445999999925,64.219711000000075],[-64.646956999999986,64.244141000000127],[-64.647781000000009,64.250000000000114],[-64.643616000000009,64.255829000000119],[-64.637512000000015,64.259995000000004],[-64.629715000000033,64.261658000000125],[-64.571670999999924,64.264998999999989],[-64.557525999999996,64.264862000000051],[-64.553054999999915,64.263321000000076],[-64.55221599999993,64.261658000000125],[-64.552490000000034,64.256653000000085],[-64.468062999999972,64.243316999999934],[-64.464721999999938,64.240814],[-64.462218999999948,64.237487999999928],[-64.464447000000007,64.234420999999998],[-64.471114999999998,64.231659000000093],[-64.52027899999996,64.220261000000107]],[[-75.551392000000021,64.303863999999976],[-75.691939999999988,64.302475000000129],[-75.702224999999999,64.305817000000104],[-75.708892999999989,64.315262000000132],[-75.705840999999964,64.341934000000037],[-75.696655000000021,64.351089000000115],[-75.686385999999914,64.353317000000061],[-75.665008999999998,64.350815000000011],[-75.578887999999949,64.346099999999979],[-75.572784000000013,64.344985999999949],[-75.502501999999936,64.319716999999969],[-75.493606999999997,64.316376000000105],[-75.50111400000003,64.313309000000004],[-75.511123999999938,64.311096000000077],[-75.551392000000021,64.303863999999976]],[[-64.938598999999954,64.235535000000027],[-64.989165999999955,64.209152000000017],[-65.00306699999993,64.21026599999999],[-65.048614999999984,64.218322999999998],[-65.052779999999984,64.219436999999971],[-65.059997999999894,64.223312000000135],[-65.065551999999968,64.227478000000019],[-65.073059000000001,64.240540000000067],[-65.102492999999981,64.296371000000136],[-65.109160999999972,64.310806000000071],[-65.113892000000021,64.323608000000036],[-65.114715999999987,64.329437000000041],[-65.114166000000012,64.334991000000059],[-65.112503000000004,64.339706000000092],[-65.110001000000011,64.343596999999988],[-65.101669000000015,64.346374999999966],[-65.08944699999995,64.349716000000001],[-65.028884999999889,64.361099000000024],[-65.021392999999932,64.362487999999985],[-65.010283999999956,64.361649000000057],[-65.006393000000003,64.360535000000084],[-65.001952999999958,64.356934000000024],[-64.99888599999997,64.354431000000034],[-64.982223999999974,64.333054000000004],[-64.884734999999921,64.28776600000009],[-64.886123999999938,64.283051000000057],[-64.890838999999971,64.276382000000012],[-64.926940999999943,64.242477000000065],[-64.938598999999954,64.235535000000027]],[[-73.876389000000017,64.301376000000005],[-73.883620999999948,64.298874000000069],[-73.951674999999966,64.304977000000008],[-73.96556099999998,64.30664100000007],[-73.972503999999958,64.309707999999944],[-73.97444200000001,64.313309000000004],[-73.960281000000009,64.362197999999978],[-73.95666499999993,64.368317000000047],[-73.952498999999932,64.370819000000097],[-73.942214999999919,64.372757000000036],[-73.932219999999916,64.37359600000002],[-73.918335000000013,64.371918000000051],[-73.909438999999963,64.369980000000112],[-73.889175000000023,64.359711000000118],[-73.879165999999941,64.351928999999984],[-73.874160999999958,64.343323000000055],[-73.87332200000003,64.305252000000053],[-73.876389000000017,64.301376000000005]],[[-73.69776899999988,64.269989000000066],[-73.704726999999934,64.268875000000037],[-73.72084000000001,64.272765999999933],[-73.75389100000001,64.28276100000005],[-73.776671999999962,64.294708000000014],[-73.823333999999988,64.324707000000046],[-73.833618000000001,64.331665000000044],[-73.781386999999995,64.405547999999953],[-73.776108000000022,64.407486000000119],[-73.765563999999983,64.409424000000058],[-73.749161000000015,64.410262999999986],[-73.744445999999982,64.405822999999998],[-73.730835000000013,64.386383000000023],[-73.729172000000005,64.386107999999979],[-73.726944000000003,64.383331000000055],[-73.724441999999954,64.377472000000068],[-73.702498999999989,64.322769000000108],[-73.699157999999954,64.314147999999989],[-73.690552000000025,64.276932000000045],[-73.691665999999998,64.273605000000089],[-73.694442999999922,64.271103000000039],[-73.69776899999988,64.269989000000066]],[[-64.849730999999963,64.307479999999998],[-64.861388999999974,64.307479999999998],[-64.877212999999983,64.313309000000004],[-64.888061999999991,64.321105999999986],[-64.937774999999988,64.361649000000057],[-64.944992000000013,64.37052900000009],[-64.955565999999976,64.383880999999917],[-64.959732000000031,64.397217000000069],[-64.958618000000001,64.405822999999998],[-64.951674999999909,64.411376999999959],[-64.946655000000021,64.413605000000132],[-64.932495000000017,64.417480000000126],[-64.925277999999992,64.418594000000098],[-64.910004000000015,64.416655999999989],[-64.902495999999985,64.412766000000147],[-64.897507000000019,64.408600000000092],[-64.820007000000032,64.379425000000026],[-64.771941999999967,64.348877000000016],[-64.770553999999947,64.345825000000104],[-64.773055999999997,64.34248400000007],[-64.849730999999963,64.307479999999998]],[[-74.27194199999991,64.413605000000132],[-74.285004000000015,64.41304000000008],[-74.357497999999964,64.421097000000088],[-74.377212999999983,64.424423000000104],[-74.423324999999977,64.443863000000079],[-74.437209999999936,64.450271999999927],[-74.439437999999996,64.453323000000125],[-74.338608000000022,64.49470500000001],[-74.331679999999949,64.496933000000126],[-74.31040999999999,64.49884000000003],[-74.285277999999948,64.481659000000036],[-74.228607000000011,64.451096000000064],[-74.205841000000021,64.44747899999993],[-74.183060000000012,64.443039000000113],[-74.17332499999992,64.439148000000046],[-74.174712999999997,64.434981999999991],[-74.178328999999962,64.433867999999961],[-74.27194199999991,64.413605000000132]],[[-73.744995000000017,64.426086000000055],[-73.758346999999958,64.425537000000077],[-73.77806099999998,64.428314],[-73.781386999999995,64.431931000000134],[-73.782776000000013,64.437484999999924],[-73.782500999999968,64.442474000000061],[-73.776108000000022,64.495818999999983],[-73.773894999999982,64.501937999999996],[-73.773330999999928,64.503326000000072],[-73.746917999999937,64.508513999999991],[-73.736664000000019,64.507216999999969],[-73.729172000000005,64.505264000000068],[-73.724166999999852,64.50221300000004],[-73.673049999999989,64.469711000000018],[-73.668610000000001,64.464432000000045],[-73.668334999999956,64.460265999999933],[-73.671936000000017,64.455826000000116],[-73.67971799999998,64.452208999999982],[-73.727218999999934,64.431091000000094],[-73.735001000000011,64.428040000000067],[-73.744995000000017,64.426086000000055]],[[-74.212783999999999,64.483046999999999],[-74.223327999999981,64.480270000000075],[-74.229171999999949,64.481369000000029],[-74.307495000000017,64.516098000000113],[-74.331116000000009,64.526656999999943],[-74.337508999999955,64.531096999999988],[-74.357773000000009,64.546936000000073],[-74.357773000000009,64.551086000000112],[-74.353881999999999,64.553589000000045],[-74.345550999999944,64.555251999999996],[-74.253066999999987,64.548035000000084],[-74.240554999999972,64.546371000000079],[-74.236114999999984,64.545532000000094],[-74.169723999999974,64.523880000000077],[-74.169448999999929,64.519714000000135],[-74.206664999999987,64.486374000000069],[-74.212783999999999,64.483046999999999]],[[-73.557495000000017,64.312758999999971],[-73.577788999999939,64.309982000000105],[-73.601669000000015,64.310257000000092],[-73.626388999999904,64.312758999999971],[-73.650283999999999,64.31721500000009],[-73.655563000000029,64.320267000000001],[-73.658339999999953,64.334991000000059],[-73.669532999999888,64.426849000000118],[-73.610442999999975,64.470489999999984],[-73.68249499999996,64.509720000000129],[-73.679992999999911,64.526093000000003],[-73.677779999999927,64.532211000000132],[-73.666655999999875,64.535538000000088],[-73.577224999999999,64.559982000000048],[-73.537215999999944,64.567764000000011],[-73.527785999999992,64.566940000000045],[-73.521118000000001,64.56303400000013],[-73.509170999999981,64.552475000000072],[-73.504729999999938,64.542480000000012],[-73.50306699999993,64.53414900000007],[-73.489165999999955,64.463318000000072],[-73.488051999999982,64.453598],[-73.48832699999997,64.443863000000079],[-73.490279999999927,64.439148000000046],[-73.555266999999958,64.314697000000137],[-73.557495000000017,64.312758999999971]],[[-65.492767000000015,64.517761000000007],[-65.658339999999953,64.509720000000129],[-65.669448999999929,64.510269000000108],[-65.67971799999998,64.512207000000046],[-65.686110999999926,64.515273999999977],[-65.689712999999983,64.51998900000001],[-65.690276999999924,64.524155000000064],[-65.689712999999983,64.52998400000007],[-65.686935000000005,64.538879000000122],[-65.672500999999954,64.56053200000008],[-65.660278000000005,64.573883000000023],[-65.651108000000022,64.580551000000014],[-65.615829000000019,64.599152000000004],[-65.563323999999909,64.615540000000067],[-65.554442999999992,64.618591000000094],[-65.546951000000035,64.622481999999991],[-65.449158000000011,64.678863999999976],[-65.443877999999927,64.684708000000001],[-65.43582200000003,64.696365000000128],[-65.381942999999922,64.716934000000037],[-65.292495999999971,64.735535000000084],[-65.256957999999941,64.709991000000059],[-65.252501999999936,64.706375000000037],[-65.258057000000008,64.700821000000019],[-65.266402999999912,64.6933140000001],[-65.249999999999886,64.663605000000075],[-65.208054000000004,64.639708999999982],[-65.208618000000001,64.631363000000079],[-65.213897999999915,64.626083000000051],[-65.228057999999919,64.6202550000001],[-65.309433000000013,64.60054000000008],[-65.420272999999952,64.55442800000003],[-65.452788999999939,64.532760999999994],[-65.450835999999924,64.528320000000065],[-65.453613000000018,64.524428999999998],[-65.460555999999997,64.521102999999982],[-65.468886999999995,64.519150000000025],[-65.492767000000015,64.517761000000007]],[[-63.353333000000021,64.994980000000112],[-63.349167000000023,64.991652999999985],[-63.34722099999999,64.991927999999973],[-63.330558999999994,64.986923000000104],[-63.257506999999976,64.92942800000003],[-63.256392999999889,64.926376000000118],[-63.258895999999936,64.921097000000145],[-63.27305599999994,64.918045000000063],[-63.281386999999938,64.918320000000051],[-63.37777699999998,64.940811000000053],[-63.385276999999974,64.944138000000009],[-63.393889999999942,64.951096000000007],[-63.417220999999984,64.97137499999991],[-63.420279999999934,64.976089000000059],[-63.420279999999934,64.978317000000004],[-63.418892000000028,64.982483000000116],[-63.415549999999996,64.986923000000104],[-63.395279000000016,64.995529000000033],[-63.376105999999993,64.998871000000008],[-63.363616999999977,64.997208000000057],[-63.353333000000021,64.994980000000112]],[[-63.243613999999923,65.254990000000134],[-63.251395999999943,65.253875999999991],[-63.256667999999991,65.256104000000107],[-63.310554999999965,65.290542999999957],[-63.313331999999946,65.293869000000029],[-63.311667999999941,65.298035000000084],[-63.306663999999898,65.302475000000129],[-63.257781999999963,65.320831000000112],[-63.244445999999925,65.322769000000051],[-63.236663999999962,65.321655000000078],[-63.227218999999991,65.313873000000115],[-63.166388999999924,65.286102000000085],[-63.165833000000021,65.282486000000006],[-63.166663999999969,65.27915999999999],[-63.235274999999888,65.256943000000092],[-63.243613999999923,65.254990000000134]],[[-66.92471299999994,65.284424000000115],[-66.933883999999978,65.283324999999991],[-66.962509000000011,65.283599999999979],[-66.976943999999946,65.284424000000115],[-66.989166000000012,65.286377000000073],[-66.99110399999995,65.288878999999952],[-67.011123999999938,65.319153000000028],[-67.011948000000018,65.323044000000095],[-67.010559000000001,65.333328000000108],[-67.005004999999926,65.339706000000092],[-66.992217999999923,65.346100000000092],[-66.974441999999954,65.350540000000137],[-66.932494999999903,65.358032000000094],[-66.920273000000009,65.358597000000088],[-66.910827999999867,65.356933999999967],[-66.908614999999998,65.355255],[-66.908050999999944,65.351089000000059],[-66.90943900000002,65.346100000000092],[-66.91194200000001,65.342209000000025],[-66.920273000000009,65.294434000000024],[-66.921386999999982,65.289703000000088],[-66.92471299999994,65.284424000000115]],[[-89.005568999999923,65.385544000000039],[-89.017501999999979,65.385544000000039],[-89.030288999999982,65.387496999999939],[-89.076110999999969,65.394714000000079],[-89.100280999999882,65.400818000000072],[-89.099990999999932,65.405822999999941],[-89.091674999999952,65.408325000000048],[-89.06806899999998,65.408325000000048],[-89.03195199999999,65.407211000000075],[-89.018615999999952,65.403320000000008],[-89.009445000000028,65.399155000000007],[-89.005279999999914,65.395538000000045],[-89.003066999999987,65.390549000000078],[-89.005568999999923,65.385544000000039]],[[-88.430282999999918,65.455261000000064],[-88.465011999999888,65.453597999999943],[-88.489990000000034,65.456650000000081],[-88.503615999999909,65.460541000000148],[-88.510284000000013,65.464995999999985],[-88.512222000000008,65.469711000000018],[-88.507506999999976,65.474991000000045],[-88.496383999999978,65.476928999999984],[-88.485001000000011,65.477767999999969],[-88.461120999999991,65.477478000000133],[-88.424163999999962,65.474426000000051],[-88.398620999999878,65.47026100000005],[-88.39416499999993,65.465820000000122],[-88.399733999999967,65.461380000000077],[-88.421386999999982,65.456940000000088],[-88.430282999999918,65.455261000000064]],[[-62.795005999999887,65.519988999999953],[-62.804442999999992,65.519150000000025],[-62.819450000000018,65.524155000000064],[-62.826950000000011,65.528046000000131],[-62.893889999999942,65.581100000000106],[-62.895553999999947,65.585541000000035],[-62.895553999999947,65.589981000000023],[-62.889724999999942,65.599152000000004],[-62.884444999999971,65.60554500000012],[-62.87471800000003,65.613602000000071],[-62.8663939999999,65.617477000000065],[-62.856392000000028,65.61914100000007],[-62.849723999999981,65.618866000000082],[-62.842773000000022,65.616378999999995],[-62.838051000000007,65.613602000000071],[-62.834998999999925,65.606644000000131],[-62.834998999999925,65.604705999999965],[-62.830001999999979,65.593048000000124],[-62.824448000000018,65.58526599999999],[-62.817504999999926,65.578598],[-62.810279999999977,65.574706999999933],[-62.785560999999973,65.564148000000102],[-62.765006999999969,65.557480000000112],[-62.750838999999985,65.551376000000062],[-62.788894999999968,65.523315000000025],[-62.795005999999887,65.519988999999953]],[[-83.882766999999944,65.666931000000091],[-83.893889999999942,65.664703000000145],[-83.906386999999938,65.666931000000091],[-83.937499999999943,65.677199999999914],[-83.943054000000018,65.681931000000077],[-83.942214999999976,65.686920000000043],[-83.93638599999997,65.691925000000083],[-83.928328999999962,65.69720500000011],[-83.896118000000001,65.710266000000047],[-83.884734999999978,65.712769000000037],[-83.872771999999941,65.712203999999986],[-83.864440999999943,65.707763999999997],[-83.868880999999988,65.696930000000123],[-83.871384000000035,65.686920000000043],[-83.876937999999939,65.672210999999947],[-83.882766999999944,65.666931000000091]],[[-67.472504000000015,65.705261000000007],[-67.55972300000002,65.702209000000096],[-67.584731999999974,65.703598000000113],[-67.640563999999927,65.696091000000138],[-67.691375999999934,65.685806000000014],[-67.701401000000033,65.686096000000077],[-67.706954999999937,65.688034000000016],[-67.713897999999858,65.696640000000116],[-67.715835999999967,65.701659999999947],[-67.713332999999921,65.705551000000014],[-67.695830999999885,65.720825000000104],[-67.658614999999998,65.725266000000033],[-67.577498999999989,65.731658999999979],[-67.529175000000009,65.734985000000052],[-67.499999999999943,65.734985000000052],[-67.48971599999993,65.734985000000052],[-67.424438000000009,65.735260000000039],[-67.446944999999914,65.718596999999988],[-67.472504000000015,65.705261000000007]],[[-62.268332999999984,65.701659999999947],[-62.259445000000028,65.699707000000046],[-62.238051999999982,65.702484000000084],[-62.221107000000018,65.708038000000101],[-62.20416999999992,65.711655000000064],[-62.186385999999914,65.711928999999998],[-62.167777999999942,65.70277399999992],[-62.131667999999934,65.678863999999976],[-62.128333999999938,65.674149000000114],[-62.131942999999978,65.657211000000018],[-62.135276999999974,65.651382000000012],[-62.142226999999991,65.64498900000001],[-62.194999999999993,65.612762000000032],[-62.202498999999989,65.610259999999982],[-62.215004000000022,65.609984999999938],[-62.22444200000001,65.611098999999967],[-62.296950999999979,65.624985000000095],[-62.455001999999979,65.659988000000112],[-62.466109999999958,65.663879000000009],[-62.483886999999925,65.721099999999922],[-62.484443999999939,65.726928999999984],[-62.483611999999994,65.731658999999979],[-62.480552999999873,65.737761999999918],[-62.473609999999951,65.74192800000003],[-62.46832999999998,65.744140999999956],[-62.461944999999957,65.745254999999986],[-62.283889999999928,65.74443100000002],[-62.27194199999991,65.744140999999956],[-62.260283999999956,65.74331699999999],[-62.252501999999993,65.74192800000003],[-62.251396,65.739151000000106],[-62.258613999999909,65.728592000000049],[-62.27027899999996,65.723038000000088],[-62.297501000000011,65.708602999999982],[-62.268332999999984,65.701659999999947]],[[-83.283889999999928,65.834152000000131],[-83.292220999999927,65.828872999999987],[-83.30360399999995,65.826385000000016],[-83.315551999999968,65.826096000000064],[-83.327498999999932,65.82748399999997],[-83.347777999999892,65.832489000000066],[-83.395279000000016,65.8316650000001],[-83.406661999999983,65.830276000000083],[-83.418059999999969,65.827774000000034],[-83.429168999999945,65.824432000000058],[-83.439986999999917,65.819153000000085],[-83.456389999999999,65.808867999999961],[-83.473327999999981,65.800262000000032],[-83.485274999999945,65.800812000000064],[-83.498046999999929,65.804152999999928],[-83.529723999999987,65.817489999999964],[-83.559157999999968,65.831100000000049],[-83.575561999999934,65.839980999999966],[-83.581679999999892,65.844711000000018],[-83.585007000000019,65.849426000000051],[-83.586120999999991,65.854156000000103],[-83.580291999999986,65.859420999999941],[-83.571670999999981,65.862488000000042],[-83.560271999999941,65.864990000000148],[-83.525283999999886,65.868317000000104],[-83.478058000000033,65.870255000000043],[-83.442490000000021,65.870818999999983],[-83.36999499999996,65.866653000000042],[-83.345551,65.863876000000005],[-83.333069000000023,65.860260000000096],[-83.291106999999954,65.843597000000045],[-83.285277999999948,65.838882000000012],[-83.283889999999928,65.834152000000131]],[[-65.645843999999954,65.813034000000073],[-65.656386999999995,65.812759000000028],[-65.660278000000005,65.819717000000026],[-65.654998999999918,65.869431000000077],[-65.651671999999962,65.876647999999989],[-65.647781000000009,65.879974000000004],[-65.636123999999882,65.88638300000008],[-65.623885999999914,65.891373000000101],[-65.583069000000023,65.902771000000143],[-65.542769999999962,65.908035000000098],[-65.531676999999945,65.908874999999966],[-65.516112999999962,65.906371999999976],[-65.511397999999929,65.903046000000131],[-65.512221999999895,65.894440000000031],[-65.513335999999981,65.890548999999965],[-65.52806099999998,65.859420999999941],[-65.559433000000013,65.834717000000012],[-65.645843999999954,65.813034000000073]],[[-85.480559999999969,65.791930999999977],[-85.468062999999972,65.790817000000004],[-85.456389999999942,65.791367000000037],[-85.445266999999944,65.793869000000086],[-85.424164000000019,65.801926000000094],[-85.413895000000025,65.807480000000055],[-85.40834000000001,65.812485000000095],[-85.404998999999975,65.817489999999964],[-85.404175000000009,65.822495000000004],[-85.393065999999862,65.832764000000054],[-85.381942999999978,65.835265999999933],[-85.369995000000017,65.834991000000116],[-85.333327999999995,65.832214000000022],[-85.313613999999916,65.830276000000083],[-85.288605000000018,65.826660000000004],[-85.263061999999991,65.821106000000043],[-85.213622999999984,65.808029000000033],[-85.202788999999939,65.803588999999988],[-85.18582200000003,65.794708000000071],[-85.162505999999894,65.78137200000009],[-85.156386999999938,65.776657000000057],[-85.049164000000019,65.621643000000006],[-85.047774999999945,65.616928000000144],[-85.048614999999984,65.611923000000104],[-85.051666000000012,65.606934000000138],[-85.067504999999926,65.59637500000008],[-85.08805799999999,65.585541000000035],[-85.120270000000005,65.574996999999996],[-85.142226999999934,65.569992000000127],[-85.175827000000027,65.563309000000118],[-85.232223999999917,65.554703000000018],[-85.24360699999994,65.55386400000009],[-85.267776000000026,65.555542000000003],[-85.280563000000029,65.55802900000009],[-85.291945999999882,65.557205000000124],[-85.302490000000034,65.552765000000079],[-85.307770000000005,65.547760000000039],[-85.311110999999926,65.542479999999955],[-85.311935000000005,65.537766000000033],[-85.308043999999995,65.533051],[-85.295836999999949,65.52388000000002],[-85.271118000000001,65.511658000000068],[-85.240829000000019,65.498322000000087],[-85.204178000000013,65.485809000000017],[-85.165557999999976,65.474991000000045],[-85.127776999999924,65.466095000000109],[-85.088608000000022,65.453597999999943],[-85.043609999999944,65.436371000000122],[-85.02694699999995,65.427475000000015],[-85.015015000000005,65.418319999999937],[-85.011123999999938,65.413605000000075],[-85.002791999999943,65.401382000000069],[-85.001403999999923,65.396652000000017],[-85.005004999999983,65.37692300000009],[-85.011672999999973,65.352203000000031],[-84.930557000000022,65.214157000000057],[-84.924712999999997,65.209717000000012],[-84.912216000000001,65.206375000000094],[-84.900283999999942,65.206100000000106],[-84.832503999999972,65.212494000000106],[-84.821395999999879,65.213882000000012],[-84.810271999999998,65.216385000000002],[-84.800277999999992,65.221649000000014],[-84.792496000000028,65.226929000000041],[-84.748046999999985,65.292755000000056],[-84.746947999999975,65.297485000000052],[-84.749724999999899,65.307204999999954],[-84.755004999999869,65.316666000000112],[-84.762221999999952,65.326096000000007],[-84.761123999999995,65.331099999999992],[-84.758056999999951,65.336105000000032],[-84.754729999999938,65.341095000000053],[-84.745834000000002,65.351379000000065],[-84.740279999999984,65.356368999999972],[-84.595839999999953,65.475540000000024],[-84.58555599999994,65.481093999999985],[-84.573623999999995,65.481659000000036],[-84.561934999999949,65.481093999999985],[-84.549437999999952,65.47886699999998],[-84.440276999999924,65.456650000000081],[-84.432220000000029,65.453323000000125],[-84.426392000000021,65.448593000000074],[-84.424712999999997,65.443863000000079],[-84.42582699999997,65.438873000000001],[-84.314437999999996,65.381653000000142],[-84.291945999999996,65.37692300000009],[-84.161391999999921,65.341934000000037],[-84.151107999999908,65.338593000000003],[-84.147507000000019,65.333878000000141],[-84.153060999999923,65.328598000000056],[-84.194153000000028,65.297485000000052],[-84.201950000000011,65.292206000000078],[-84.220839999999953,65.284713999999951],[-84.228881999999999,65.279434000000094],[-84.230834999999956,65.269440000000088],[-84.229720999999984,65.264708999999982],[-84.141388000000006,65.219986000000063],[-84.088333000000034,65.203873000000044],[-83.899993999999992,65.165543000000071],[-83.876098999999954,65.162766000000033],[-83.852782999999931,65.161652000000004],[-83.666945999999939,65.160811999999964],[-83.620543999999938,65.160811999999964],[-83.540282999999931,65.16415400000011],[-83.52806099999998,65.161925999999937],[-83.408614999999998,65.135544000000095],[-83.388061999999934,65.126647999999932],[-83.378875999999991,65.117203000000075],[-83.33805799999999,65.074707000000046],[-83.334732000000031,65.069992000000013],[-83.335830999999928,65.064986999999974],[-83.339447000000007,65.059982000000105],[-83.343063000000029,65.045258000000047],[-83.340835999999967,65.035537999999974],[-83.330840999999964,65.021378000000084],[-83.319457999999941,65.012207000000103],[-83.208053999999947,64.945526000000086],[-83.198043999999868,64.941086000000098],[-83.190552000000025,64.939423000000147],[-83.156386999999995,64.939972000000068],[-83.005004999999926,64.913039999999967],[-82.992766999999901,64.909714000000122],[-82.865828999999962,64.873596000000077],[-82.855834999999956,64.86914100000007],[-82.848052999999993,64.864426000000037],[-82.842498999999918,64.859985000000108],[-82.829726999999991,64.840819999999951],[-82.828613000000018,64.836104999999918],[-82.825287000000003,64.831375000000094],[-82.816390999999953,64.821930000000009],[-82.800277999999992,64.808868000000018],[-82.770003999999972,64.795532000000037],[-82.75778200000002,64.791092000000049],[-82.709166999999979,64.776382000000069],[-82.697220000000016,64.77388000000002],[-82.569732999999928,64.763885000000073],[-82.361388999999974,64.763610999999969],[-82.34944200000001,64.760269000000051],[-82.211944999999957,64.718323000000055],[-82.202224999999885,64.713608000000022],[-82.203339000000028,64.708602999999982],[-82.209166999999979,64.703598000000113],[-82.217498999999975,64.698593000000074],[-82.203612999999962,64.684417999999994],[-82.064437999999996,64.648605000000089],[-81.932495000000017,64.584427000000062],[-81.763061999999991,64.501099000000067],[-81.753890999999953,64.486923000000047],[-81.75140399999998,64.472488000000112],[-81.753066999999987,64.355820000000051],[-81.764174999999966,64.341095000000109],[-81.770003999999972,64.336105000000032],[-81.777221999999995,64.326096000000007],[-81.778885000000002,64.321105999999986],[-81.777221999999995,64.31164600000011],[-81.77416999999997,64.30664100000007],[-81.74888599999997,64.273605000000089],[-81.727218999999934,64.258330999999998],[-81.712783999999999,64.250000000000114],[-81.702788999999996,64.2452550000001],[-81.669723999999974,64.232758000000103],[-81.646118000000001,64.22554000000008],[-81.622498000000007,64.216660000000047],[-81.613051999999982,64.212203999999929],[-81.600280999999939,64.20277400000009],[-81.594451999999933,64.193313999999987],[-81.590835999999967,64.183594000000085],[-81.589995999999928,64.17886400000009],[-81.602492999999981,64.129974000000004],[-81.610824999999977,64.125809000000004],[-81.717772999999966,64.099426000000051],[-81.758621000000005,64.089432000000045],[-81.76916499999993,64.088043000000027],[-81.824447999999961,64.086380000000077],[-81.879165999999941,64.080826000000116],[-81.955840999999964,64.0619200000001],[-81.964171999999962,64.0577550000001],[-81.970000999999968,64.052765000000022],[-81.973617999999931,64.047759999999982],[-81.999160999999958,64.003326000000015],[-81.996384000000035,63.998604000000114],[-81.986938000000009,63.994155999999975],[-81.975005999999951,63.990546999999992],[-81.963897999999972,63.988884000000041],[-81.952498999999932,63.98832700000014],[-81.930556999999965,63.988045000000056],[-81.897507000000019,63.989990000000091],[-81.875823999999909,63.991661000000136],[-81.56082200000003,64.029433999999981],[-81.44027699999998,64.067764000000068],[-81.383620999999948,64.090546000000018],[-81.287780999999882,64.080276000000083],[-81.276397999999972,64.07748399999997],[-81.270003999999915,64.072495000000004],[-81.264174999999966,64.062759000000028],[-81.256957999999997,64.059143000000006],[-81.245543999999995,64.055542000000116],[-80.964721999999938,63.991936000000123],[-80.942489999999964,63.990546999999992],[-80.931670999999994,63.991936000000123],[-80.920837000000006,63.994995000000131],[-80.910277999999892,63.999161000000015],[-80.906661999999926,64.004166000000055],[-80.903335999999967,64.013885000000073],[-80.909163999999976,64.023315000000139],[-80.914168999999958,64.028046000000074],[-80.92582699999997,64.032761000000107],[-80.948607999999979,64.038879000000065],[-80.967498999999918,64.04803499999997],[-80.972778000000005,64.052765000000022],[-80.975554999999986,64.0577550000001],[-80.973891999999978,64.062485000000095],[-80.935821999999973,64.111923000000047],[-80.890838999999971,64.11554000000001],[-80.812209999999993,64.091094999999939],[-80.777495999999871,64.079437000000098],[-80.734726000000023,64.054153000000099],[-80.566100999999946,63.994155999999975],[-80.543335000000013,63.987770000000069],[-80.531677000000002,63.983330000000024],[-80.522507000000019,63.978600000000029],[-80.517501999999979,63.973877000000016],[-80.488327000000027,63.910545000000013],[-80.49221799999998,63.905548000000067],[-80.503066999999987,63.902489000000116],[-80.567504999999926,63.889435000000049],[-80.453063999999927,63.859436000000017],[-80.363051999999925,63.841102999999976],[-80.217223999999987,63.809989999999971],[-80.194480999999996,63.804474000000084],[-80.189986999999974,63.799995000000024],[-80.174712999999883,63.780822999999998],[-80.172225999999966,63.776100000000042],[-80.171660999999972,63.771102999999925],[-80.178878999999881,63.756660000000068],[-80.184998000000007,63.751663000000121],[-80.195830999999885,63.748604],[-80.346953999999982,63.728042999999957],[-80.357772999999952,63.728600000000085],[-80.369155999999975,63.73333000000008],[-80.380279999999971,63.734993000000031],[-80.391387999999949,63.734993000000031],[-80.402221999999995,63.734717999999987],[-80.434433000000013,63.731102000000135],[-80.454178000000013,63.727767999999969],[-80.485275000000001,63.715546000000018],[-80.493606999999997,63.710274000000084],[-80.504729999999995,63.690826000000129],[-80.506393000000003,63.685822000000144],[-80.510009999999966,63.681107000000111],[-80.52194199999991,63.671104000000071],[-80.587783999999999,63.635826000000066],[-80.608886999999982,63.628326000000015],[-80.774445000000014,63.573326000000122],[-80.912216000000001,63.526381999999955],[-80.922501000000011,63.521378000000027],[-80.930557000000022,63.516106000000093],[-80.936385999999914,63.511108000000092],[-80.938048999999864,63.50638600000002],[-80.9375,63.501389000000074],[-80.934433000000013,63.496658000000139],[-80.930557000000022,63.482208000000014],[-80.930282999999974,63.477486000000113],[-80.9375,63.467491000000052],[-80.958053999999947,63.458328000000051],[-80.968613000000005,63.455269000000044],[-80.989440999999999,63.450829000000056],[-81.011123999999995,63.449158000000011],[-81.032775999999956,63.44860100000011],[-81.054442999999992,63.449158000000011],[-81.076401000000033,63.451385000000016],[-81.110000999999954,63.458328000000051],[-81.386123999999938,63.526381999999955],[-81.694153000000028,63.607498000000135],[-81.734160999999972,63.625549000000092],[-81.757232999999985,63.634720000000073],[-81.768889999999999,63.638046000000088],[-81.779998999999975,63.639717000000132],[-81.801940999999943,63.641105999999979],[-81.823623999999995,63.639435000000105],[-81.855270000000019,63.63249200000007],[-81.876662999999951,63.629990000000021],[-81.887512000000015,63.62943300000012],[-81.909728999999913,63.631934999999999],[-81.995270000000005,63.661102000000142],[-82.01167299999986,63.667213000000004],[-82.026397999999972,63.676383999999985],[-82.031386999999938,63.681107000000111],[-82.041107000000011,63.685822000000144],[-82.052490000000034,63.689156000000139],[-82.06361400000003,63.690826000000129],[-82.107772999999952,63.692214999999919],[-82.129439999999988,63.691658000000018],[-82.214172000000019,63.687766999999951],[-82.224715999999887,63.686377999999991],[-82.285552999999993,63.678047000000049],[-82.296111999999937,63.674713000000111],[-82.299437999999952,63.669715999999994],[-82.298889000000031,63.664992999999981],[-82.302215999999987,63.659987999999942],[-82.307769999999948,63.654991000000052],[-82.318344000000025,63.651657000000057],[-82.328887999999949,63.65026899999998],[-82.339995999999871,63.650826000000052],[-82.351395000000025,63.653320000000008],[-82.472228999999913,63.680275000000051],[-82.483886999999982,63.68471500000004],[-82.491103999999893,63.689156000000139],[-82.535278000000005,63.726378999999952],[-82.545836999999949,63.735550000000103],[-82.549728000000016,63.745270000000005],[-82.550827000000027,63.750000000000057],[-82.546951000000035,63.764717000000019],[-82.543334999999956,63.769714000000135],[-82.532226999999978,63.779991000000109],[-82.514450000000011,63.790276000000063],[-82.504456000000005,63.795547000000056],[-82.484160999999972,63.804993000000024],[-82.473617999999931,63.80832700000002],[-82.431945999999982,63.820273999999984],[-82.420837000000006,63.820831000000055],[-82.40972899999997,63.819160000000011],[-82.398055999999883,63.815826000000015],[-82.386672999999973,63.814156000000025],[-82.376389000000017,63.81749700000006],[-82.372771999999998,63.82249500000006],[-82.353881999999942,63.852219000000105],[-82.351395000000025,63.861938000000066],[-82.358336999999949,63.900543000000027],[-82.361388999999974,63.905265999999983],[-82.368880999999988,63.909988000000112],[-82.378325999999959,63.91443600000008],[-82.413894999999968,63.926940999999999],[-82.525833000000034,63.966103000000032],[-82.548888999999974,63.96915400000006],[-82.828613000000018,63.979431000000034],[-82.967223999999987,63.965546000000131],[-82.978058000000033,63.963051000000121],[-83.064162999999951,63.951934999999992],[-83.086944999999957,63.954994000000113],[-83.098891999999921,63.959160000000054],[-83.12388599999997,63.972763000000043],[-83.129165999999941,63.977486000000056],[-83.145279000000016,64.001099000000124],[-83.139724999999999,64.006103999999993],[-83.095550999999887,64.028320000000008],[-83.029449,64.074707000000103],[-83.016113000000018,64.084991000000116],[-82.996947999999975,64.10026600000009],[-82.980285999999978,64.11554000000001],[-82.97084000000001,64.125534000000016],[-82.961944999999901,64.135818000000029],[-82.960555999999997,64.140548999999965],[-82.96166999999997,64.145538000000101],[-82.964721999999995,64.150269000000037],[-83.008346999999958,64.187484999999981],[-83.019729999999981,64.188873000000058],[-83.072783999999956,64.186646000000053],[-83.105269999999962,64.181655999999975],[-83.126388999999961,64.175811999999951],[-83.157227000000034,64.163040000000137],[-83.339447000000007,64.134720000000129],[-83.488327000000027,64.122482000000048],[-83.519729999999981,64.11442599999998],[-83.530288999999925,64.111099000000081],[-83.548339999999996,64.102478000000133],[-83.673324999999977,64.017212000000029],[-83.682220000000029,64.007217000000082],[-83.683318999999983,64.002212999999927],[-83.676666000000012,63.992766999999958],[-83.665833000000021,63.983603999999957],[-83.642501999999979,63.969986000000119],[-83.626099000000011,63.956099999999992],[-83.608611999999994,63.937492000000077],[-83.605559999999969,63.932770000000005],[-83.604171999999949,63.928047000000049],[-83.595839999999896,63.825829000000056],[-83.596664000000033,63.820831000000055],[-83.623046999999929,63.781661999999983],[-83.631942999999865,63.771659999999997],[-83.637222000000008,63.766388000000063],[-83.647507000000019,63.763054000000125],[-83.658614999999941,63.763611000000026],[-83.670272999999952,63.766937000000041],[-83.694442999999978,63.775826000000109],[-83.718613000000005,63.779991000000109],[-83.740554999999972,63.779991000000109],[-83.750838999999985,63.776657000000114],[-83.824172999999973,63.747490000000028],[-84.007232999999985,63.668053000000043],[-84.012786999999889,63.662765999999976],[-84.021117999999944,63.65277100000003],[-84.027495999999928,63.642769000000044],[-84.050277999999935,63.626938000000109],[-84.069457999999997,63.616386000000091],[-84.079453000000001,63.611938000000123],[-84.089447000000007,63.607773000000122],[-84.09973100000002,63.605270000000132],[-84.110000999999954,63.603607000000068],[-84.121383999999978,63.604163999999969],[-84.132767000000001,63.606658999999979],[-84.144729999999925,63.610825000000034],[-84.162216000000001,63.619713000000047],[-84.174164000000019,63.623047000000042],[-84.196380999999917,63.62499200000002],[-84.261123999999995,63.62082700000002],[-84.286117999999988,63.615546999999935],[-84.388061999999991,63.559158000000082],[-84.395279000000016,63.553879000000109],[-84.40055799999999,63.548607000000004],[-84.446380999999974,63.488045],[-84.449431999999888,63.483046999999999],[-84.452224999999942,63.472488000000112],[-84.447220000000016,63.453323000000012],[-84.449157999999954,63.443603999999993],[-84.477492999999981,63.3836060000001],[-84.563323999999966,63.337494000000049],[-84.754456000000005,63.264160000000061],[-84.774170000000026,63.257217000000082],[-84.793883999999991,63.250274999999988],[-84.823059000000001,63.237213000000111],[-84.841949,63.227211000000011],[-84.870834000000002,63.214157000000114],[-84.890563999999983,63.207214000000079],[-85.143341000000021,63.139992000000063],[-85.224166999999966,63.120827000000133],[-85.244995000000017,63.118598999999961],[-85.266402999999968,63.117493000000138],[-85.288054999999986,63.118324000000143],[-85.343338000000017,63.122765000000072],[-85.375823999999909,63.123877999999934],[-85.396956999999929,63.122765000000072],[-85.449158000000011,63.116661000000022],[-85.482223999999974,63.118598999999961],[-85.493331999999953,63.119987000000094],[-85.505004999999983,63.123046999999929],[-85.536391999999921,63.134995000000004],[-85.543883999999935,63.138328999999999],[-85.577788999999939,63.165543000000127],[-85.589171999999962,63.174712999999997],[-85.592498999999975,63.17943600000001],[-85.638061999999934,63.244995000000074],[-85.639175000000023,63.249718000000087],[-85.648345999999947,63.33554799999996],[-85.653884999999946,63.408882000000006],[-85.650833000000034,63.428604000000007],[-85.644454999999994,63.443603999999993],[-85.635833999999988,63.458603000000039],[-85.626098999999897,63.468880000000013],[-85.618057000000022,63.479156000000103],[-85.60722399999986,63.494438000000116],[-85.604995999999971,63.509163000000058],[-85.591110000000015,63.617493000000024],[-85.59333799999996,63.631934999999999],[-85.596114999999941,63.641380000000083],[-85.607497999999964,63.665268000000026],[-85.61332699999997,63.669715999999994],[-85.717498999999975,63.716103000000089],[-85.879439999999988,63.704711999999915],[-85.98582499999992,63.693320999999969],[-86.017226999999934,63.68832400000008],[-86.183608999999933,63.653046000000074],[-86.224441999999954,63.642769000000044],[-86.244995000000017,63.639435000000105],[-86.266952999999944,63.638046000000088],[-86.300277999999935,63.639717000000132],[-86.346114999999998,63.645546000000138],[-86.381377999999984,63.652214000000129],[-86.450286999999889,63.660545000000013],[-86.552779999999871,63.670273000000066],[-86.56361400000003,63.670546999999999],[-86.596114999999941,63.668602000000021],[-86.626937999999996,63.661659000000043],[-86.666397000000018,63.648331000000042],[-86.694442999999922,63.633606000000043],[-86.733886999999982,63.606658999999979],[-86.759170999999981,63.590271000000087],[-86.778060999999923,63.581108000000086],[-86.807495000000017,63.571380999999974],[-86.837783999999999,63.563323999999966],[-86.847778000000005,63.560822000000087],[-86.879165999999998,63.555549999999982],[-86.922225999999966,63.552773000000059],[-87.050551999999982,63.549720999999977],[-87.083618000000001,63.550270000000125],[-87.095275999999956,63.551384000000098],[-87.118606999999997,63.555824000000086],[-87.141388000000006,63.563881000000094],[-87.14973399999991,63.568329000000062],[-87.188048999999864,63.589989000000003],[-87.217223999999987,63.622215000000097],[-87.222778000000005,63.631660000000011],[-87.226394999999968,63.641105999999979],[-87.225280999999995,63.651099999999985],[-87.22193900000002,63.665825000000098],[-87.218886999999938,63.675827000000083],[-87.210830999999985,63.691100999999946],[-87.200835999999867,63.706657000000121],[-87.186661000000015,63.722213999999951],[-87.161117999999931,63.743607000000054],[-86.943877999999927,63.900543000000027],[-86.934432999999956,63.906097000000045],[-86.915282999999988,63.91443600000008],[-86.875823999999966,63.928604000000121],[-86.784163999999976,63.956940000000031],[-86.763625999999988,63.962212000000136],[-86.700287000000003,63.972214000000122],[-86.668609999999887,63.978324999999984],[-86.503890999999896,64.018326000000002],[-86.41361999999998,64.048598999999967],[-86.255004999999926,64.076096000000064],[-86.233611999999994,64.079437000000098],[-86.223327999999981,64.081940000000088],[-86.213333000000034,64.085541000000148],[-86.203888000000006,64.091094999999939],[-86.189437999999882,64.101653999999996],[-86.178328999999962,64.121918000000107],[-86.178878999999995,64.131653000000028],[-86.182220000000029,64.141373000000101],[-86.212219000000005,64.178589000000045],[-86.253066999999987,64.200546000000088],[-86.273894999999982,64.208878000000084],[-86.300551999999982,64.221924000000058],[-86.308884000000035,64.226379000000065],[-86.3125,64.230819999999994],[-86.354720999999984,64.289978000000133],[-86.384170999999981,64.36442599999998],[-86.401672000000019,64.436645999999996],[-86.401107999999965,64.441649999999925],[-86.383620999999948,64.564987000000087],[-86.368880999999988,64.629424999999969],[-86.315552000000025,64.701096000000064],[-86.272506999999962,64.768051000000014],[-86.24888599999997,64.793868999999916],[-86.238891999999964,64.804152999999985],[-86.231383999999935,64.809418000000051],[-86.221114999999998,64.813034000000073],[-86.210280999999952,64.814697000000024],[-86.198607999999922,64.81442300000009],[-86.187209999999993,64.815262000000018],[-86.176665999999955,64.817764000000125],[-86.171660999999915,64.823043999999982],[-86.152495999999928,64.918045000000063],[-86.151947000000007,64.923035000000084],[-86.153335999999911,64.927765000000136],[-86.157226999999978,64.932479999999998],[-86.181106999999997,64.955551000000014],[-86.187209999999993,64.959991000000002],[-86.212509000000011,64.966385000000059],[-86.22084000000001,64.970535000000041],[-86.226394999999968,64.979980000000126],[-86.227782999999988,64.983871000000022],[-86.225829999999974,64.998596000000134],[-86.225006000000008,65.003601000000003],[-86.212219000000005,65.03387500000008],[-86.206389999999885,65.043869000000086],[-86.198333999999988,65.054153000000099],[-86.189986999999917,65.064423000000033],[-86.18472300000002,65.069717000000026],[-86.165282999999931,65.080551000000071],[-86.144729999999981,65.08859300000006],[-86.138335999999924,65.094437000000028],[-86.138061999999991,65.099425999999994],[-86.135558999999944,65.1827550000001],[-86.137221999999952,65.197753999999975],[-86.141953000000001,65.212204000000099],[-86.146118000000001,65.216660000000047],[-86.151397999999972,65.226379000000009],[-86.164168999999958,65.250000000000114],[-86.170546999999942,65.269150000000081],[-86.171660999999915,65.278869999999984],[-86.153335999999911,65.384720000000073],[-86.149733999999967,65.394714000000079],[-86.111937999999952,65.494141000000013],[-86.097777999999948,65.529160000000104],[-86.013900999999976,65.709152000000074],[-86.010009999999909,65.714996000000099],[-85.993880999999988,65.730545000000006],[-85.982773000000009,65.740814000000057],[-85.975280999999882,65.746094000000085],[-85.888335999999981,65.799987999999928],[-85.832503999999915,65.832489000000066],[-85.791381999999999,65.853317000000118],[-85.770554000000004,65.862198000000035],[-85.728333000000021,65.879425000000083],[-85.696654999999907,65.891937000000041],[-85.621108999999933,65.917480000000012],[-85.56527699999998,65.930267000000015],[-85.542496000000028,65.933319000000097],[-85.506667999999991,65.934418000000051],[-85.493880999999988,65.932205000000124],[-85.491013000000009,65.931060999999943],[-85.482773000000009,65.927765000000079],[-85.476944000000003,65.923309000000017],[-85.468886999999938,65.913879000000122],[-85.469726999999978,65.908874999999966],[-85.473891999999978,65.898880000000077],[-85.488892000000021,65.878586000000098],[-85.511123999999995,65.857758000000047],[-85.520554000000004,65.84275800000006],[-85.523620999999991,65.823043999999982],[-85.520554000000004,65.813309000000061],[-85.516662999999994,65.808594000000028],[-85.510559000000001,65.804152999999928],[-85.493331999999953,65.795258000000103],[-85.480559999999969,65.791930999999977]],[[-62.136664999999937,65.851379000000009],[-62.141669999999976,65.849716000000058],[-62.154442000000017,65.850815000000068],[-62.162216000000001,65.854156000000103],[-62.210830999999985,65.880539000000056],[-62.296950999999979,65.927765000000079],[-62.296669000000009,65.938583000000051],[-62.281386999999995,65.946365000000014],[-62.265006999999969,65.946930000000066],[-62.230552999999986,65.943862999999965],[-62.167220999999984,65.932754999999986],[-62.137779000000023,65.925811999999951],[-62.139724999999999,65.913040000000137],[-62.118606999999997,65.881087999999977],[-62.129996999999889,65.859146000000123],[-62.136664999999937,65.851379000000009]],[[-67.138335999999981,65.92692599999998],[-67.145844000000011,65.926376000000118],[-67.154448999999943,65.92886400000009],[-67.161117999999988,65.932205000000124],[-67.185271999999941,65.948317999999972],[-67.209166999999923,65.978867000000037],[-67.211945000000014,65.982758000000103],[-67.208892999999989,65.984421000000054],[-67.199158000000011,65.986373999999955],[-67.181380999999874,65.987198000000092],[-67.166945999999939,65.984984999999995],[-67.153885000000002,65.978591999999992],[-67.152785999999992,65.974990999999989],[-67.152602999999885,65.970733999999993],[-67.134445000000028,65.933044000000052],[-67.134734999999921,65.930267000000015],[-67.138335999999981,65.92692599999998]],[[-83.576950000000011,65.983047000000056],[-83.588607999999965,65.981658999999922],[-83.60082999999986,65.983322000000044],[-83.604445999999996,65.987762000000089],[-83.60082999999986,65.993042000000116],[-83.588897999999972,66.003052000000025],[-83.570007000000032,66.013611000000083],[-83.547500999999954,66.019440000000088],[-83.511397999999986,66.019989000000066],[-83.498885999999914,66.01748699999996],[-83.493056999999965,66.012771999999927],[-83.50140399999998,66.00749200000007],[-83.510009999999966,66.003325999999959],[-83.554442999999935,65.988876000000062],[-83.576950000000011,65.983047000000056]],[[-84.722777999999948,65.546097000000088],[-84.733886999999982,65.544708000000128],[-84.746108999999933,65.545822000000101],[-84.78472899999997,65.556640999999956],[-84.803604000000007,65.565536000000009],[-84.828612999999962,65.578873000000044],[-84.840835999999967,65.588043000000084],[-84.848052999999879,65.597487999999998],[-84.853333000000021,65.606934000000138],[-84.852218999999934,65.611923000000104],[-84.857772999999952,65.645827999999995],[-84.858886999999925,65.650818000000072],[-84.866393999999957,65.659988000000112],[-84.878601000000003,65.669144000000074],[-84.900283999999942,65.67804000000001],[-85.028609999999958,65.711655000000064],[-85.063048999999921,65.723312000000021],[-85.073897999999986,65.727768000000083],[-85.082229999999981,65.732208000000128],[-85.106948999999929,65.750548999999921],[-85.118057000000022,65.764709000000039],[-85.181945999999982,65.945526000000086],[-85.173049999999932,65.994705000000067],[-85.143889999999942,66.021103000000039],[-85.137222000000008,66.023315000000082],[-85.081679999999949,66.026657],[-85.057495000000017,66.02609300000006],[-84.9375,66.010543999999982],[-84.924712999999997,66.008040999999992],[-84.910277999999892,66.000000000000114],[-84.887221999999952,65.945526000000086],[-84.883330999999885,65.940811000000053],[-84.807770000000005,65.895828000000108],[-84.755004999999869,65.853317000000118],[-84.716110000000015,65.817215000000147],[-84.714171999999962,65.807205000000067],[-84.712783999999942,65.802200000000028],[-84.707779000000016,65.792755000000113],[-84.637222000000008,65.712203999999986],[-84.597503999999958,65.696640000000116],[-84.586670000000026,65.692200000000071],[-84.574172999999917,65.639160000000004],[-84.576110999999969,65.629150000000095],[-84.585006999999962,65.61914100000007],[-84.598617999999931,65.608597000000032],[-84.667769999999962,65.560532000000023],[-84.722777999999948,65.546097000000088]],[[-83.608611999999994,66.044144000000074],[-83.642226999999991,66.034988000000112],[-83.652221999999995,66.036652000000117],[-83.653609999999901,66.04136699999998],[-83.647507000000019,66.046646000000123],[-83.644164999999987,66.051650999999993],[-83.626099000000011,66.066940000000102],[-83.618056999999965,66.072220000000129],[-83.607223999999974,66.07748400000014],[-83.597778000000005,66.078873000000101],[-83.583618000000001,66.070540999999935],[-83.577788999999996,66.06581100000011],[-83.570847000000015,66.056366000000025],[-83.574447999999961,66.051376000000005],[-83.58555599999994,66.048035000000141],[-83.59722899999997,66.046646000000123],[-83.608611999999994,66.044144000000074]],[[-85.019164999999987,66.05720500000001],[-85.135558999999944,66.044434000000081],[-85.147781000000009,66.045821999999987],[-85.149170000000026,66.05053700000002],[-85.107773000000009,66.084427000000119],[-85.09973100000002,66.089706000000092],[-85.063323999999966,66.087769000000037],[-85.038604999999961,66.086105000000032],[-85.016112999999905,66.079712000000086],[-85.008620999999948,66.070540999999935],[-85.006957999999941,66.065536000000066],[-85.010283999999956,66.060531999999967],[-85.019164999999987,66.05720500000001]],[[-83.649444999999901,66.083602999999982],[-83.661117999999988,66.081940000000031],[-83.673614999999984,66.083327999999938],[-83.692490000000021,66.091370000000097],[-83.696105999999986,66.096099999999979],[-83.689986999999974,66.111099000000024],[-83.685271999999941,66.121093999999914],[-83.678878999999995,66.125259000000142],[-83.606658999999979,66.124146000000053],[-83.593886999999938,66.121643000000063],[-83.587783999999999,66.117203000000075],[-83.591674999999896,66.112197999999978],[-83.604445999999996,66.105820000000051],[-83.610549999999932,66.10165399999994],[-83.638061999999991,66.086928999999998],[-83.649444999999901,66.083602999999982]],[[-83.921386999999982,66.009720000000016],[-83.730834999999956,65.947754000000032],[-83.705840999999964,65.934143000000063],[-83.694152999999972,65.924697999999978],[-83.683318999999983,65.910538000000088],[-83.680832000000009,65.901093000000003],[-83.689163000000008,65.866653000000042],[-83.699721999999952,65.851379000000009],[-83.713897999999972,65.841094999999939],[-83.724715999999944,65.836929000000055],[-83.73582499999992,65.833603000000039],[-83.727492999999924,65.799713000000111],[-83.525008999999955,65.737761999999918],[-83.360001000000011,65.727478000000076],[-83.348052999999993,65.726928999999984],[-83.25111400000003,65.716934000000037],[-83.226944000000003,65.714157000000114],[-83.214447000000007,65.710541000000092],[-83.210830999999871,65.705826000000059],[-83.25111400000003,65.654709000000139],[-83.259445000000028,65.649429000000055],[-83.288894999999968,65.632750999999985],[-83.299727999999959,65.629424999999969],[-83.311110999999983,65.627196999999967],[-83.345000999999968,65.62081900000004],[-83.379165999999998,65.615540000000067],[-83.391387999999949,65.617203000000131],[-83.399170000000026,65.62081900000004],[-83.406113000000005,65.630264000000068],[-83.41194200000001,65.634720000000016],[-83.419998000000021,65.639435000000049],[-83.430557000000022,65.643875000000037],[-83.443328999999949,65.648041000000148],[-83.468612999999948,65.654984000000127],[-83.493056999999965,65.65776100000005],[-83.505004999999926,65.658324999999991],[-83.528610000000015,65.658324999999991],[-83.598891999999978,65.656372000000033],[-83.660277999999948,65.647217000000012],[-83.829726999999991,65.64498900000001],[-83.842772999999909,65.649155000000121],[-83.846114999999941,65.653869999999984],[-83.84973100000002,65.668320000000108],[-83.846389999999985,65.673309000000074],[-83.840560999999866,65.678589000000102],[-83.794158999999979,65.719437000000028],[-83.785827999999981,65.724700999999982],[-83.775009000000011,65.728043000000127],[-83.740828999999962,65.733322000000101],[-83.695266999999944,65.741089000000045],[-83.684158000000025,65.74443100000002],[-83.682769999999948,65.749419999999986],[-83.688888999999961,65.754166000000055],[-83.785278000000005,65.788879000000065],[-83.797501000000011,65.789429000000098],[-83.808883999999978,65.78804000000008],[-83.84973100000002,65.780548000000124],[-83.90583799999996,65.767487000000017],[-83.927490000000034,65.759720000000073],[-83.938048999999978,65.74443100000002],[-83.948607999999922,65.740265000000079],[-83.960007000000019,65.737761999999918],[-83.971664000000033,65.737198000000149],[-83.983886999999925,65.738586000000055],[-84.071121000000005,65.75],[-84.120543999999938,65.758331000000055],[-84.133330999999941,65.760817999999972],[-84.143615999999952,65.764160000000061],[-84.145003999999972,65.769149999999968],[-84.141388000000006,65.774155000000007],[-84.11721799999998,65.789703000000031],[-84.111388999999974,65.794983000000059],[-84.103333000000021,65.809981999999934],[-84.101105000000018,65.819717000000026],[-84.123610999999926,65.900269000000037],[-84.189437999999996,65.968322999999998],[-84.198043999999925,65.973038000000031],[-84.208617999999888,65.977203000000031],[-84.286391999999978,65.999145999999996],[-84.299438000000009,66.002487000000031],[-84.31138599999997,66.003052000000025],[-84.323333999999988,66.002487000000031],[-84.358046999999999,65.997756999999979],[-84.369995000000017,65.997208000000057],[-84.382766999999944,66.000549000000092],[-84.424163999999962,66.028046000000018],[-84.436110999999926,66.037201000000096],[-84.464447000000007,66.060257000000092],[-84.468062999999972,66.064986999999974],[-84.469161999999983,66.069992000000013],[-84.470001000000025,66.089431999999988],[-84.471114999999998,66.128311000000053],[-84.470275999999956,66.133331000000112],[-84.464447000000007,66.138321000000133],[-84.455841000000021,66.141663000000051],[-84.433060000000012,66.138885000000073],[-84.381103999999993,66.129149999999981],[-84.368056999999908,66.125808999999947],[-84.240279999999927,66.098328000000095],[-84.146392999999875,66.081099999999992],[-84.039443999999946,66.076934999999992],[-84.00167799999997,66.033600000000035],[-83.921386999999982,66.009720000000016]],[[-84.579726999999991,66.141373000000044],[-84.627486999999917,66.139160000000118],[-84.639998999999989,66.140549000000078],[-84.648346000000004,66.144989000000123],[-84.654449,66.149429000000112],[-84.675827000000027,66.173035000000027],[-84.678604000000007,66.182480000000055],[-84.667220999999927,66.184981999999991],[-84.618880999999988,66.176651000000049],[-84.59333799999996,66.171097000000088],[-84.589447000000007,66.166382000000056],[-84.574448000000018,66.147491000000002],[-84.579726999999991,66.141373000000044]],[[-84.265288999999996,66.177765000000022],[-84.276947000000007,66.175262000000089],[-84.289169000000015,66.175537000000077],[-84.301391999999964,66.176926000000094],[-84.313889000000017,66.179428000000144],[-84.353333000000021,66.190262000000018],[-84.361937999999952,66.194702000000063],[-84.364440999999943,66.204436999999928],[-84.363616999999977,66.209427000000005],[-84.360001000000011,66.214432000000045],[-84.348343,66.215820000000122],[-84.335830999999985,66.214432000000045],[-84.30972300000002,66.207764000000054],[-84.299164000000019,66.203322999999955],[-84.27305599999994,66.196640000000002],[-84.264450000000011,66.192199999999957],[-84.258347000000015,66.187759000000085],[-84.256957999999997,66.1827550000001],[-84.265288999999996,66.177765000000022]],[[-62.183883999999864,66.237198000000092],[-62.199164999999994,66.216933999999924],[-62.404998999999862,66.218597000000045],[-62.415276000000006,66.219147000000078],[-62.421668999999952,66.222214000000008],[-62.42999999999995,66.229156000000103],[-62.426665999999898,66.233046999999999],[-62.419167000000016,66.237762000000032],[-62.319450000000018,66.269440000000031],[-62.301940999999999,66.274994000000049],[-62.287223999999924,66.278046000000131],[-62.278336000000024,66.279709000000082],[-62.261672999999973,66.280273000000022],[-62.24888599999997,66.278595000000109],[-62.243057000000022,66.276931999999988],[-62.231383999999935,66.269440000000031],[-62.183883999999864,66.237198000000092]],[[-83.067229999999881,66.255554000000075],[-83.054992999999911,66.254990000000134],[-83.043059999999969,66.255264000000068],[-83.031113000000005,66.256653000000028],[-83.019454999999994,66.259155000000135],[-82.996947999999975,66.265823000000069],[-82.960830999999985,66.272491000000059],[-82.937209999999936,66.275269000000037],[-82.91332999999986,66.276093000000003],[-82.902495999999985,66.271652000000131],[-82.904175000000009,66.266662999999937],[-82.910278000000005,66.261658000000068],[-82.918610000000001,66.257492000000013],[-82.92971799999998,66.25221300000004],[-82.935546999999929,66.251389000000074],[-82.990279999999984,66.203598],[-82.996384000000035,66.19859300000013],[-83.00778200000002,66.195250999999985],[-83.019729999999981,66.194977000000051],[-83.080291999999986,66.196640000000002],[-83.093062999999972,66.198868000000118],[-83.263335999999981,66.247208000000001],[-83.287216000000001,66.256104000000107],[-83.293335000000013,66.260544000000095],[-83.296660999999972,66.265273999999977],[-83.297775000000001,66.270263999999997],[-83.298339999999882,66.313873000000115],[-83.285004000000015,66.329163000000108],[-83.273055999999997,66.339432000000102],[-83.264175000000023,66.343597000000102],[-83.252228000000002,66.344986000000119],[-83.226944000000003,66.33998100000008],[-83.216110000000015,66.335541000000035],[-83.204726999999934,66.316666000000112],[-83.173889000000031,66.288589000000115],[-83.168059999999912,66.283874999999966],[-83.067229999999881,66.255554000000075]],[[-66.62332200000003,66.280823000000055],[-66.641952999999944,66.279434000000037],[-66.656951999999933,66.280273000000022],[-66.667495999999971,66.282760999999994],[-66.678878999999995,66.286925999999994],[-66.701400999999976,66.297760000000039],[-66.741942999999878,66.316376000000105],[-66.843063000000029,66.362487999999985],[-66.905837999999903,66.376648000000046],[-66.916107000000011,66.379974000000118],[-66.944716999999969,66.394989000000066],[-66.956115999999952,66.401932000000045],[-66.958617999999944,66.40637200000009],[-66.958344000000011,66.411926000000051],[-66.955276000000026,66.413605000000075],[-66.944442999999922,66.413879000000009],[-66.851943999999946,66.402205999999978],[-66.829726999999991,66.398330999999985],[-66.823059000000001,66.392761000000121],[-66.820846999999958,66.388046000000088],[-66.801101999999958,66.375534000000073],[-66.782227000000034,66.369141000000127],[-66.726944000000003,66.354980000000126],[-66.705565999999976,66.349715999999944],[-66.678329000000019,66.345535000000041],[-66.662216000000001,66.343597000000102],[-66.650283999999942,66.34304800000001],[-66.639724999999999,66.340546000000074],[-66.62388599999997,66.335266000000047],[-66.584441999999967,66.320541000000105],[-66.575012000000015,66.313873000000115],[-66.573623999999995,66.310806000000014],[-66.591675000000009,66.293593999999985],[-66.605269999999962,66.286652000000061],[-66.62332200000003,66.280823000000055]],[[-66.998336999999935,66.493042000000003],[-66.990279999999984,66.489150999999936],[-66.976104999999961,66.489150999999936],[-66.963332999999977,66.487198000000035],[-66.873321999999973,66.468596999999988],[-66.868880999999988,66.464431999999988],[-66.871384000000035,66.460541000000092],[-66.878052000000025,66.458327999999995],[-66.936110999999926,66.445525999999973],[-66.948883000000023,66.444702000000007],[-66.987212999999997,66.445250999999928],[-67.030288999999925,66.45248400000014],[-67.036666999999966,66.456099999999992],[-67.038329999999974,66.472488000000055],[-67.038054999999986,66.478043000000127],[-67.035278000000005,66.484711000000118],[-67.025008999999955,66.489975000000129],[-67.006957999999884,66.493042000000003],[-66.998336999999935,66.493042000000003]],[[-107.92304999999993,66.850540000000024],[-107.93499799999989,66.849152000000117],[-107.94611399999991,66.851089000000115],[-107.94554099999993,66.856934000000024],[-107.837784,67.003875999999991],[-107.83029199999993,67.008606000000043],[-107.81696299999993,67.009155000000135],[-107.80666400000001,67.005829000000119],[-107.79499800000002,66.997208000000001],[-107.79110699999995,66.988312000000064],[-107.78971899999999,66.985259999999982],[-107.79055800000003,66.979705999999965],[-107.82389799999999,66.901093000000003],[-107.83000199999992,66.895538000000101],[-107.89499699999999,66.860809000000017],[-107.90360999999996,66.856934000000024],[-107.92304999999993,66.850540000000024]],[[-108.01445000000001,66.897766000000047],[-108.025284,66.895538000000101],[-108.03859699999998,66.897217000000126],[-108.04444899999993,66.901382000000126],[-108.09638999999993,66.967484000000013],[-108.09777800000001,66.972762999999986],[-108.10659799999996,67.026001000000065],[-108.06360599999988,67.001099000000067],[-107.93831599999999,66.946930000000066],[-107.95944199999991,66.931655999999975],[-107.96665999999993,66.926651000000106],[-108.00583599999987,66.901931999999931],[-108.01445000000001,66.897766000000047]],[[-63.059166000000005,66.957764000000111],[-63.083327999999995,66.954987000000017],[-63.095550999999944,66.955826000000002],[-63.116942999999992,66.963043000000084],[-63.136391000000003,66.974701000000096],[-63.163054999999929,66.995255000000043],[-63.165549999999996,66.999145999999939],[-63.166106999999954,67.004990000000134],[-63.159163999999976,67.015549000000021],[-63.154166999999973,67.021378000000027],[-63.144446999999957,67.028869999999984],[-63.127494999999954,67.033599999999979],[-63.123055000000022,67.034713999999951],[-63.110831999999903,67.033875000000023],[-63.101668999999902,67.029709000000082],[-63.098052999999936,67.027205999999978],[-63.097778000000005,67.023315000000082],[-63.021111000000019,66.996643000000006],[-63.011672999999973,66.992477000000065],[-63.003890999999953,66.988585999999998],[-62.999999999999886,66.984420999999998],[-62.999442999999985,66.978591999999992],[-63.002228000000002,66.97554000000008],[-63.020835999999974,66.966385000000002],[-63.040000999999961,66.960815000000139],[-63.059166000000005,66.957764000000111]],[[-62.918334999999956,67.009720000000016],[-62.938048999999978,67.005829000000119],[-62.977775999999949,67.006653000000085],[-63.009726999999998,67.009995000000004],[-63.037780999999939,67.015823000000125],[-63.068335999999988,67.025543000000027],[-63.092772999999966,67.035812000000078],[-63.12388599999997,67.049149000000114],[-63.135559000000001,67.054703000000075],[-63.138892999999996,67.059418000000107],[-63.138054000000011,67.065262000000132],[-63.135833999999988,67.069716999999969],[-63.130279999999914,67.074158000000068],[-63.11721799999998,67.078873000000101],[-63.110557999999969,67.080276000000026],[-63.100081999999929,67.079712000000086],[-63.002228000000002,67.069443000000035],[-62.978333000000021,67.062759000000142],[-62.961112999999955,67.054703000000075],[-62.941108999999926,67.043593999999985],[-62.922500999999954,67.031097000000045],[-62.914444000000003,67.023041000000148],[-62.912215999999944,67.014708999999982],[-62.918334999999956,67.009720000000016]],[[-62.64416499999993,67.057479999999998],[-62.646949999999947,67.049988000000042],[-62.65166499999998,67.04693600000013],[-62.752501999999993,67.010543999999982],[-62.764449999999954,67.009155000000135],[-62.782775999999956,67.009430000000009],[-62.813056999999958,67.016937000000098],[-62.832222000000002,67.024429000000055],[-62.899445000000014,67.058318999999983],[-62.894599999999969,67.059113000000082],[-62.865004999999996,67.057479999999998],[-62.82028200000002,67.055817000000047],[-62.810279999999977,67.05693100000002],[-62.806664000000012,67.05914300000012],[-62.702869000000021,67.128685000000075],[-62.652221999999995,67.166091999999992],[-62.641945000000021,67.174149],[-62.631942999999865,67.176926000000037],[-62.547782999999924,67.186096000000134],[-62.533889999999985,67.187195000000088],[-62.425277999999992,67.191085999999984],[-62.418059999999969,67.19081099999994],[-62.37888299999986,67.169708000000071],[-62.375274999999931,67.165817000000004],[-62.376105999999936,67.164429000000098],[-62.388054000000011,67.157486000000063],[-62.443610999999919,67.135817999999972],[-62.451942000000031,67.132751000000042],[-62.472495999999978,67.126083000000051],[-62.504172999999923,67.119430999999963],[-62.538612000000001,67.113876000000062],[-62.569449999999961,67.105819999999994],[-62.580001999999979,67.102203000000088],[-62.596106999999961,67.092209000000025],[-62.631667999999934,67.069991999999957],[-62.638610999999912,67.063873000000115],[-62.64416499999993,67.057479999999998]],[[-107.40778399999999,67.083054000000004],[-107.49054699999999,67.071380999999974],[-107.50639299999995,67.072495000000117],[-107.51750199999987,67.074706999999989],[-107.52778599999999,67.078048999999965],[-107.54972800000002,67.08998100000008],[-107.56500199999999,67.103317000000061],[-107.57444799999996,67.112198000000149],[-107.58389299999988,67.121368000000018],[-107.59110999999996,67.130813999999987],[-107.62917299999992,67.18331900000004],[-107.63054699999992,67.188582999999994],[-107.62970699999988,67.194138000000066],[-107.62666300000001,67.200272000000098],[-107.62053700000001,67.206100000000049],[-107.60833700000001,67.20748900000001],[-107.59777799999995,67.204162999999994],[-107.58168000000001,67.196365000000128],[-107.57584400000002,67.192200000000128],[-107.56194299999987,67.183868000000132],[-107.51000999999991,67.15637200000009],[-107.47778299999993,67.140823000000012],[-107.46193700000003,67.133331000000055],[-107.44360399999999,67.126083000000051],[-107.412781,67.115814000000057],[-107.40055799999993,67.113037000000134],[-107.40778399999999,67.083054000000004]],[[-95.361663999999962,67.197754000000145],[-95.373610999999926,67.196365000000128],[-95.400557999999933,67.197204999999997],[-95.415282999999988,67.199707000000103],[-95.430831999999896,67.202773999999977],[-95.527495999999928,67.223037999999974],[-95.543334999999956,67.226379000000009],[-95.551392000000021,67.230270000000075],[-95.552779999999927,67.235260000000096],[-95.542220999999984,67.238585999999941],[-95.391112999999962,67.263046000000145],[-95.377776999999924,67.262772000000041],[-95.317229999999995,67.255554000000018],[-95.307220000000029,67.252486999999917],[-95.305832000000009,67.247757000000092],[-95.309432999999956,67.242203000000075],[-95.314712999999927,67.238585999999941],[-95.336669999999913,67.212769000000094],[-95.342772999999966,67.206940000000088],[-95.361663999999962,67.197754000000145]],[[-107.66278099999994,67.22026100000005],[-107.675003,67.218872000000033],[-107.73029300000002,67.289978000000076],[-107.73306300000002,67.300261999999918],[-107.73029300000002,67.306366000000139],[-107.72501399999993,67.31303400000013],[-107.71083099999998,67.319153000000142],[-107.67777999999993,67.311919999999986],[-107.66944899999993,67.30802900000009],[-107.66000399999996,67.298874000000012],[-107.64472999999998,67.269150000000025],[-107.64028899999994,67.253601000000117],[-107.63945000000001,67.242752000000053],[-107.64250199999992,67.236649000000114],[-107.64778100000001,67.229980000000012],[-107.65416699999997,67.224426000000051],[-107.66278099999994,67.22026100000005]],[[-63.366393999999957,67.287766000000033],[-63.396111000000019,67.269988999999953],[-63.417777999999998,67.26638800000012],[-63.456107999999972,67.264434999999992],[-63.507506999999976,67.269440000000031],[-63.541945999999939,67.272491000000059],[-63.55972300000002,67.273041000000092],[-63.578339000000028,67.273315000000025],[-63.62027699999993,67.269150000000025],[-63.763618000000008,67.272491000000059],[-63.81361400000003,67.279160000000104],[-63.829726999999878,67.28414900000007],[-63.819449999999961,67.289978000000076],[-63.796668999999952,67.299987999999985],[-63.688331999999889,67.341660000000047],[-63.666663999999969,67.345535000000041],[-63.646110999999962,67.348038000000031],[-63.605559999999969,67.352203000000031],[-63.585830999999871,67.353317000000004],[-63.485001000000011,67.341094999999996],[-63.369164000000012,67.302475000000072],[-63.357779999999991,67.293868999999972],[-63.366393999999957,67.287766000000033]],[[-107.91082799999998,67.310532000000023],[-107.93443300000001,67.306640999999956],[-107.94803599999995,67.308319000000097],[-108.08444199999997,67.381363000000079],[-108.076683,67.424698000000035],[-108.07389799999993,67.430817000000104],[-108.06861899999996,67.437485000000038],[-108.06111099999993,67.442200000000071],[-107.94748700000002,67.479980000000012],[-107.91776999999996,67.48942599999998],[-107.90306099999992,67.489151000000106],[-107.89472999999992,67.485535000000084],[-107.88722200000001,67.476089000000115],[-107.88276699999989,67.462494000000049],[-107.89806399999998,67.319717000000082],[-107.90110799999997,67.313598999999954],[-107.91082799999998,67.310532000000023]],[[-108.36833200000001,67.467209000000082],[-108.38194299999998,67.466660000000104],[-108.39806399999998,67.467758000000003],[-108.43388399999998,67.47665400000011],[-108.44444299999992,67.479980000000012],[-108.45278899999994,67.483871000000079],[-108.45889299999988,67.488037000000134],[-108.49249299999997,67.519714000000079],[-108.49638400000003,67.524429000000112],[-108.49582700000002,67.529984000000013],[-108.49137899999999,67.563034000000073],[-108.48137700000001,67.566375999999991],[-108.45777899999996,67.568054000000132],[-108.33583099999993,67.565810999999997],[-108.29750100000001,67.557205000000067],[-108.28582799999998,67.54304500000012],[-108.28443899999996,67.537766000000147],[-108.29527299999995,67.49693300000007],[-108.30166600000001,67.491089000000045],[-108.35722399999986,67.469437000000028],[-108.36833200000001,67.467209000000082]],[[-108.14111300000002,67.449997000000053],[-108.16944899999993,67.449707000000046],[-108.23665599999993,67.456650000000025],[-108.25167799999997,67.458878000000141],[-108.26222200000001,67.462204000000042],[-108.26806599999992,67.466660000000104],[-108.27194199999991,67.471374999999966],[-108.275284,67.481658999999979],[-108.22556299999997,67.565536000000122],[-108.21916199999987,67.571106000000043],[-108.20638999999994,67.570540999999992],[-108.19833399999999,67.566665999999998],[-108.17360699999995,67.552475000000015],[-108.1661069999999,67.54304500000012],[-108.13137799999993,67.481934000000024],[-108.12970699999994,67.47665400000011],[-108.12888299999997,67.465820000000065],[-108.12943999999999,67.460266000000047],[-108.13249200000001,67.454163000000108],[-108.14111300000002,67.449997000000053]],[[-108.32277699999997,67.589980999999966],[-108.32362399999994,67.586655000000121],[-108.33944700000001,67.587769000000094],[-108.42027300000001,67.599426000000051],[-108.48222399999992,67.631363000000022],[-108.48388699999992,67.636658000000068],[-108.475281,67.640548999999965],[-108.46389799999992,67.643051000000071],[-108.44803599999995,67.641937000000041],[-108.41832699999992,67.63638300000008],[-108.40334299999995,67.634155000000135],[-108.390289,67.631088000000034],[-108.379707,67.627762000000132],[-108.37138400000003,67.62414600000011],[-108.33416699999992,67.604156000000103],[-108.32277699999997,67.589980999999966]],[[-63.881942999999978,67.503326000000015],[-63.935555000000022,67.501938000000109],[-63.979163999999912,67.503052000000082],[-63.99500299999994,67.504166000000055],[-64.005279999999914,67.505263999999954],[-64.025283999999942,67.510544000000039],[-64.029723999999874,67.513885000000073],[-64.031677000000002,67.518600000000106],[-64.034728999999913,67.52887000000004],[-64.038054999999872,67.542755000000113],[-64.034438999999907,67.558594000000028],[-63.981110000000001,67.644150000000025],[-63.976944000000003,67.649428999999998],[-63.969993999999986,67.653595000000109],[-63.962775999999963,67.65554800000001],[-63.952498999999989,67.654434000000037],[-63.945549000000028,67.651382000000126],[-63.93721800000003,67.645263999999997],[-63.926392000000021,67.633330999999941],[-63.922226000000023,67.624985000000038],[-63.915549999999996,67.617203000000131],[-63.904442000000017,67.60803199999998],[-63.875556999999958,67.593048000000067],[-63.853888999999924,67.585541000000148],[-63.815276999999924,67.566665999999998],[-63.787223999999981,67.550537000000077],[-63.769996999999989,67.537766000000147],[-63.763618000000008,67.529709000000025],[-63.758056999999951,67.520538000000045],[-63.760833999999988,67.51527400000009],[-63.769447000000014,67.513321000000133],[-63.818335999999988,67.5086060000001],[-63.842223999999931,67.506377999999984],[-63.881942999999978,67.503326000000015]],[[-108.05999799999995,67.475266000000033],[-108.08972199999994,67.465546000000131],[-108.10333300000002,67.467209000000082],[-108.109444,67.471374999999966],[-108.11332700000003,67.476089000000115],[-108.14389,67.530547999999953],[-108.14277600000003,67.541655999999989],[-108.13362099999989,67.628036000000066],[-108.13221699999997,67.639434999999992],[-108.11776699999996,67.669982999999945],[-108.11361699999998,67.675261999999975],[-108.10109699999992,67.676651000000106],[-108.087219,67.674988000000042],[-108.01418299999995,67.662491000000045],[-108.00361599999997,67.65914900000007],[-107.99553700000001,67.655258000000003],[-107.98944099999994,67.651093000000003],[-107.98332199999999,67.644714000000135],[-107.92832900000002,67.561645999999996],[-107.92304999999993,67.551651000000049],[-107.92138699999992,67.54664600000001],[-107.922234,67.540817000000004],[-107.92749000000003,67.534424000000058],[-108.05999799999995,67.475266000000033]],[[-97.502791999999943,67.624420000000043],[-97.515563999999927,67.623871000000065],[-97.530288999999982,67.624985000000038],[-97.541381999999999,67.628860000000032],[-97.549437999999952,67.638045999999974],[-97.551391999999964,67.642761000000007],[-97.553054999999915,67.647766000000104],[-97.560546999999929,67.692748999999992],[-97.40055799999999,67.731658999999922],[-97.387786999999889,67.732208000000071],[-97.360001000000011,67.731658999999922],[-97.346389999999928,67.728317000000004],[-97.337783999999999,67.724152000000004],[-97.337783999999999,67.721100000000092],[-97.33277899999996,67.70637499999998],[-97.327224999999999,67.681655999999975],[-97.33277899999996,67.675812000000008],[-97.341675000000009,67.670532000000094],[-97.370543999999882,67.657760999999994],[-97.433608999999933,67.637497000000053],[-97.478881999999942,67.627472000000125],[-97.502791999999943,67.624420000000043]],[[-109.11221299999994,67.763321000000076],[-109.12581599999987,67.76249700000011],[-109.14111299999996,67.764998999999989],[-109.195267,67.775543000000027],[-109.20612299999993,67.778869999999984],[-109.20777900000002,67.783875000000023],[-109.16944899999999,67.797759999999926],[-109.15943899999996,67.801085999999998],[-109.135559,67.802764999999965],[-109.0933379999999,67.803863999999976],[-109.07584400000002,67.802199999999971],[-109.06054699999999,67.799713000000054],[-109.03916899999996,67.793320000000108],[-109.04083299999996,67.788315000000068],[-109.05277999999993,67.782486000000063],[-109.08000199999987,67.771103000000039],[-109.08972199999994,67.768051000000128],[-109.11221299999994,67.763321000000076]],[[-96.170546999999999,67.773041000000148],[-96.182769999999948,67.77165199999996],[-96.192490000000021,67.773605000000089],[-96.196380999999917,67.778046000000018],[-96.185821999999973,67.794708000000014],[-96.179992999999968,67.800262000000032],[-96.171386999999925,67.806366000000025],[-96.098617999999988,67.832213999999965],[-96.077224999999942,67.838882000000126],[-96.065552000000025,67.841095000000109],[-96.053328999999962,67.842758000000003],[-96.040282999999931,67.843323000000055],[-96.02806099999998,67.841659999999933],[-95.997498000000007,67.820830999999998],[-95.996384000000035,67.81581100000011],[-96.004729999999995,67.809708000000001],[-96.016113000000018,67.807479999999998],[-96.040832999999964,67.804428000000087],[-96.170546999999999,67.773041000000148]],[[-114.11501299999998,67.883880999999974],[-114.08222999999998,67.883041000000105],[-114.02223200000003,67.884155000000078],[-114.00583599999999,67.8836060000001],[-113.95500199999998,67.881362999999965],[-113.92138699999998,67.878036000000009],[-113.925003,67.874694999999974],[-113.94138299999986,67.875259000000142],[-113.98638899999997,67.874419999999986],[-113.99999999999994,67.873306000000014],[-114.01027699999992,67.871368000000075],[-114.05166600000001,67.870254999999986],[-114.08306900000002,67.87052900000009],[-114.195267,67.872482000000048],[-114.22972099999987,67.874146000000053],[-114.25250199999999,67.879974000000004],[-114.29638699999998,67.892212000000029],[-114.29695100000004,67.895263999999941],[-114.27555799999999,67.900542999999914],[-114.25110599999994,67.904433999999981],[-114.21972700000003,67.904160000000047],[-114.20612299999993,67.901932000000102],[-114.17388899999997,67.892487000000074],[-114.14862099999999,67.887206999999989],[-114.13305700000001,67.885269000000051],[-114.11501299999998,67.883880999999974]],[[-97.856383999999935,67.850539999999967],[-97.866942999999992,67.846939000000134],[-97.924164000000019,67.849991000000045],[-97.954453000000001,67.856368999999972],[-97.963333000000034,67.860260000000039],[-97.970001000000025,67.86442599999998],[-97.974166999999909,67.869141000000013],[-97.973327999999924,67.874146000000053],[-97.976944000000003,67.884155000000078],[-97.97444200000001,67.904984000000013],[-97.961120999999991,67.90554800000001],[-97.933318999999983,67.89888000000002],[-97.920272999999952,67.893600000000106],[-97.91361999999998,67.889160000000118],[-97.895554000000004,67.881362999999965],[-97.86221299999994,67.859985000000052],[-97.858046999999942,67.855255],[-97.856383999999935,67.850539999999967]],[[-108.64695699999999,67.86943100000002],[-108.66082799999998,67.868865999999969],[-108.66915899999998,67.872482000000048],[-108.64666699999998,67.887206999999989],[-108.58500700000002,67.915543000000071],[-108.56610099999989,67.922759999999982],[-108.54472399999997,67.928314],[-108.531113,67.928864000000033],[-108.38027999999997,67.922484999999995],[-108.37082699999996,67.919708000000071],[-108.36444099999994,67.915543000000071],[-108.36110699999989,67.905257999999947],[-108.35944399999994,67.899993999999992],[-108.41221599999994,67.885817999999972],[-108.64695699999999,67.86943100000002]],[[-113.390289,67.897766000000047],[-113.46389799999997,67.895828000000108],[-113.52694699999995,67.896378000000141],[-113.55972300000002,67.897491000000002],[-113.59416199999993,67.899428999999941],[-113.60333299999991,67.903046000000074],[-113.59750399999996,67.906647000000135],[-113.58528100000001,67.908600000000092],[-113.41972399999997,67.925262000000089],[-113.39111300000002,67.926651000000049],[-113.34750400000001,67.928040000000067],[-113.27390299999996,67.929977000000122],[-113.25723299999993,67.929428000000144],[-113.25029000000001,67.925262000000089],[-113.24694799999997,67.914429000000098],[-113.25361599999997,67.909424000000058],[-113.27778599999999,67.905822999999998],[-113.297234,67.904433999999981],[-113.33444199999991,67.901092999999946],[-113.390289,67.897766000000047]],[[-112.93055700000002,67.916655999999989],[-112.98361199999999,67.915268000000083],[-112.99999999999989,67.916092000000049],[-113.06027199999994,67.915268000000083],[-113.13110399999999,67.911652000000004],[-113.14750700000002,67.912200999999982],[-113.14750700000002,67.915817000000004],[-113.13806199999999,67.919144000000131],[-112.94304699999998,67.931091000000094],[-112.89639299999999,67.93081699999999],[-112.88722199999995,67.927200000000028],[-112.890289,67.921921000000054],[-112.90110800000002,67.919144000000131],[-112.93055700000002,67.916655999999989]],[[-111.07167099999998,67.847488000000055],[-111.08666999999997,67.847488000000055],[-111.0911099999999,67.852203000000088],[-111.08693700000003,67.858871000000079],[-111.07028200000002,67.867203000000075],[-110.84889199999998,67.954711999999972],[-110.83917200000002,67.958037999999988],[-110.82668299999995,67.959717000000012],[-110.81388900000002,67.959152000000017],[-110.80722000000003,67.954987000000017],[-110.80943300000001,67.948867999999948],[-110.81696299999999,67.940262000000018],[-110.86221299999994,67.894989000000123],[-110.86945300000002,67.889984000000084],[-110.88027999999991,67.887496999999996],[-111.05943300000001,67.849152000000061],[-111.07167099999998,67.847488000000055]],[[-114.21916199999998,67.945250999999985],[-114.29583699999995,67.944702000000063],[-114.30999799999995,67.945816000000036],[-114.31722999999988,67.949707000000103],[-114.31082200000003,67.954711999999972],[-114.30027799999988,67.957489000000066],[-114.25446299999987,67.963318000000072],[-114.17138699999992,67.969147000000078],[-114.13999899999999,67.96887200000009],[-114.12416099999996,67.967209000000139],[-114.12110899999993,67.961929000000055],[-114.12332199999992,67.958037999999988],[-114.16332999999986,67.949142000000052],[-114.20388800000001,67.945816000000036],[-114.21916199999998,67.945250999999985]],[[-108.13806199999999,67.872482000000048],[-108.15167199999996,67.871918000000107],[-108.24553699999996,67.878036000000009],[-108.25418100000002,67.881927000000076],[-108.25556899999992,67.887206999999989],[-108.23916599999995,67.920258000000103],[-108.236107,67.926376000000062],[-108.23111,67.933044000000052],[-108.22471599999994,67.938873000000058],[-108.198036,67.950821000000076],[-108.14723200000003,67.96665999999999],[-108.12581599999999,67.972214000000008],[-108.114441,67.974426000000051],[-108.10056299999997,67.974991000000102],[-108.08416699999998,67.97387700000013],[-108.07140399999992,67.971100000000035],[-108.06054699999999,67.967758000000117],[-108.05444299999988,67.963318000000072],[-108.05055199999998,67.958603000000039],[-108.048607,67.949142000000052],[-108.05139200000002,67.926651000000049],[-108.06331599999993,67.902206000000035],[-108.06833599999999,67.895538000000045],[-108.07501200000002,67.889709000000039],[-108.08249699999999,67.884995000000117],[-108.09137699999985,67.880814000000044],[-108.11277799999999,67.87553400000013],[-108.13806199999999,67.872482000000048]],[[-113.72000099999997,67.973312000000078],[-113.72778299999993,67.969147000000078],[-113.73998999999998,67.967209000000139],[-113.75361599999997,67.966094999999996],[-113.79750099999995,67.964705999999978],[-113.99305699999996,67.961104999999918],[-113.99109599999997,67.964995999999985],[-113.98249800000002,67.967209000000139],[-113.97250400000001,67.968597000000045],[-113.91639700000002,67.972214000000008],[-113.88639799999999,67.972762999999986],[-113.83833299999998,67.971924000000001],[-113.81111099999993,67.97387700000013],[-113.78527800000001,67.976929000000041],[-113.77223199999997,67.980270000000075],[-113.74082899999996,67.979980000000069],[-113.72501399999999,67.978043000000014],[-113.72000099999997,67.973312000000078]],[[-109.195267,67.989974999999959],[-109.04998799999993,67.958328000000051],[-109.03028899999993,67.966933999999924],[-108.99082900000002,67.976379000000009],[-108.97693599999997,67.976929000000041],[-108.95111099999991,67.973312000000078],[-108.89723199999997,67.956940000000088],[-108.88445300000001,67.94859300000013],[-108.86554699999999,67.905822999999998],[-108.86609599999991,67.90026899999998],[-108.87943999999999,67.875259000000142],[-108.88806199999999,67.871093999999971],[-108.90055799999999,67.869705000000124],[-108.916946,67.87052900000009],[-109.04888900000003,67.90387000000004],[-109.10305799999998,67.920258000000103],[-109.135559,67.930267000000129],[-109.16972399999992,67.945250999999985],[-109.18888899999996,67.957764000000054],[-109.195267,67.962204000000099],[-109.19888299999997,67.972488000000112],[-109.198036,67.983871000000136],[-109.195267,67.989974999999959]],[[-110.33444199999997,68.011658000000125],[-110.39362299999993,68.011108000000092],[-110.41000400000001,68.011932000000058],[-110.42111199999994,68.014998999999932],[-110.42083700000001,68.020827999999995],[-110.41055299999999,68.024704000000042],[-110.32640099999992,68.047760000000096],[-110.317497,68.049712999999997],[-110.31082199999992,68.045532000000094],[-110.30888400000003,68.037491000000045],[-110.316101,68.019150000000025],[-110.32333399999999,68.014160000000004],[-110.33444199999997,68.011658000000125]],[[-98.951401000000033,67.979980000000069],[-98.963622999999927,67.978317000000118],[-98.979445999999939,67.980270000000075],[-99.005004999999983,67.987198000000092],[-99.014450000000011,67.991088999999988],[-99.028335999999911,67.999420000000043],[-99.078612999999905,68.045592999999997],[-99.051392000000021,68.055817000000047],[-98.990554999999858,68.078323000000069],[-98.975554999999986,68.077209000000039],[-98.968886999999995,68.073044000000039],[-98.964721999999995,68.064987000000087],[-98.934432999999956,67.99664300000012],[-98.934998000000007,67.991363999999976],[-98.942763999999954,67.985259999999926],[-98.951401000000033,67.979980000000069]],[[-65.397232000000031,68.039978000000133],[-65.409163999999976,68.039428999999984],[-65.500290000000007,68.046097000000145],[-65.510833999999988,68.04942299999999],[-65.516662999999994,68.05442800000003],[-65.519729999999981,68.067490000000078],[-65.518065999999976,68.072220000000073],[-65.505279999999971,68.076385000000073],[-65.43582200000003,68.088042999999971],[-65.394454999999994,68.08998100000008],[-65.386397999999929,68.088318000000129],[-65.390288999999996,68.078323000000069],[-65.383057000000008,68.053314000000057],[-65.383330999999941,68.048599000000024],[-65.387222000000008,68.043320000000051],[-65.397232000000031,68.039978000000133]],[[-108.50611900000001,68.034714000000122],[-108.51862299999993,68.033324999999934],[-108.53388999999999,68.035538000000088],[-108.54028299999993,68.039978000000133],[-108.53751399999999,68.046097000000145],[-108.45472699999999,68.090546000000074],[-108.44748700000002,68.087769000000037],[-108.44583099999994,68.082489000000123],[-108.44611399999991,68.074706999999989],[-108.45140100000003,68.068054000000018],[-108.46665999999999,68.058319000000097],[-108.49722299999996,68.038879000000122],[-108.50611900000001,68.034714000000122]],[[-109.32167099999998,67.981094000000041],[-109.33556399999992,67.980270000000075],[-109.35193600000002,67.981369000000086],[-109.37805199999991,67.986923000000047],[-109.432503,68.003052000000025],[-109.49804699999993,68.022766000000104],[-109.50666799999993,68.026382000000126],[-109.53888699999999,68.047485000000052],[-109.54305999999991,68.052200000000084],[-109.50473,68.088882000000069],[-109.49749799999989,68.093597000000102],[-109.484734,68.095260999999937],[-109.44722000000002,68.092209000000025],[-109.41055299999999,68.071930000000066],[-109.32167099999998,68.039978000000133],[-109.31527699999987,68.035812000000021],[-109.3116609999999,68.025543000000027],[-109.31111099999987,67.997756999999922],[-109.3116609999999,67.991928000000087],[-109.31416299999995,67.985809000000074],[-109.32167099999998,67.981094000000041]],[[-108.36054999999999,68.049712999999997],[-108.37444299999993,68.048874000000069],[-108.38751200000002,68.05192599999998],[-108.40638699999994,68.064697000000081],[-108.40805099999994,68.069716999999969],[-108.40167200000002,68.075546000000145],[-108.38221699999991,68.092758000000003],[-108.37444299999993,68.095535000000041],[-108.36193800000001,68.096939000000077],[-108.32000699999992,68.098877000000016],[-108.306107,68.099425999999937],[-108.29444899999999,68.097214000000065],[-108.297234,68.091095000000053],[-108.29778299999998,68.085541000000035],[-108.30082700000003,68.079437000000041],[-108.30860899999999,68.074706999999989],[-108.34916699999997,68.05192599999998],[-108.36054999999999,68.049712999999997]],[[-110.21362299999998,68.038039999999967],[-110.23998999999998,68.035812000000021],[-110.25639299999995,68.036652000000061],[-110.25862100000001,68.041931000000034],[-110.25,68.046097000000145],[-110.22165699999994,68.056641000000013],[-110.18195300000002,68.069716999999969],[-109.93276999999989,68.131927000000076],[-109.92166099999997,68.134155000000021],[-109.89639299999999,68.13749700000011],[-109.88583399999993,68.136383000000137],[-109.87721299999993,68.12692300000009],[-109.87748699999997,68.121368000000018],[-109.882767,68.114151000000106],[-109.88527699999997,68.108032000000037],[-109.88999899999993,68.101379000000065],[-109.89584399999995,68.095535000000041],[-109.90334300000001,68.090546000000074],[-109.92111199999994,68.081664999999987],[-109.93222000000003,68.079163000000108],[-110.08721899999995,68.053314000000057],[-110.21362299999998,68.038039999999967]],[[-112.78056299999997,68.131088000000091],[-112.79276999999996,68.129424999999969],[-112.88999899999999,68.137207000000103],[-112.9058379999999,68.139160000000061],[-112.91722099999998,68.142211999999972],[-112.922234,68.146652000000017],[-112.91832699999992,68.153594999999996],[-112.91306299999997,68.159424000000001],[-112.90638699999994,68.164429000000041],[-112.89835399999998,68.168869000000086],[-112.88861099999997,68.172211000000004],[-112.87638900000002,68.173874000000126],[-112.86110699999995,68.174149000000114],[-112.76722699999993,68.166656000000103],[-112.75167799999997,68.164703000000145],[-112.74973299999994,68.158034999999984],[-112.74472000000003,68.153594999999996],[-112.74638399999998,68.147490999999945],[-112.75334199999998,68.142211999999972],[-112.76139799999993,68.138046000000088],[-112.78056299999997,68.131088000000091]],[[-74.21556099999998,68.117751999999939],[-74.164718999999991,68.065536000000066],[-73.974716000000001,68.041092000000106],[-73.736388999999974,68.013611000000026],[-73.655471999999975,68.007705999999985],[-73.643340999999907,68.012207000000046],[-73.619995000000017,68.014998999999932],[-73.608886999999868,68.015548999999965],[-73.578063999999983,68.014434999999992],[-73.567504999999983,68.013046000000031],[-73.543883999999935,68.008330999999998],[-73.439986999999974,67.985535000000141],[-73.428329000000019,67.982208000000014],[-73.418883999999991,67.97886699999998],[-73.411666999999966,67.974991000000102],[-73.409728999999913,67.970534999999984],[-73.348617999999988,67.828048999999965],[-73.361664000000019,67.810257000000092],[-73.377776999999867,67.793869000000029],[-73.383330999999941,67.789429000000041],[-73.404175000000009,67.774994000000106],[-73.411391999999921,67.770537999999988],[-73.418609999999944,67.766388000000006],[-73.429442999999992,67.762771999999927],[-73.449431999999945,67.76249700000011],[-73.664168999999958,67.774704000000099],[-73.932219999999916,67.78637700000013],[-73.993057000000022,67.788040000000024],[-74.038329999999917,67.788589000000002],[-74.083892999999875,67.788315000000068],[-74.113327000000027,67.787201000000096],[-74.168059999999855,67.78276100000005],[-74.228881999999942,67.775268999999923],[-74.251952999999901,67.772491000000116],[-74.263061999999991,67.77165199999996],[-74.305832000000009,67.768600000000049],[-74.32028200000002,67.768875000000094],[-74.388610999999969,67.775268999999923],[-74.400833000000034,67.776657000000057],[-74.481109999999944,67.789429000000041],[-74.535278000000005,67.804703000000131],[-74.564162999999951,67.814423000000033],[-74.581680000000006,67.821381000000031],[-74.59722899999997,67.828598000000113],[-74.640838999999971,67.852203000000088],[-74.659728999999913,67.864700000000084],[-74.684433000000013,67.881927000000076],[-74.758895999999993,67.950271999999984],[-74.772232000000031,67.963318000000072],[-74.775557999999876,67.969147000000078],[-74.777221999999995,67.97387700000013],[-74.778060999999923,68.006104000000107],[-74.777495999999985,68.017761000000064],[-74.773055999999997,68.029984000000127],[-74.760009999999966,68.05442800000003],[-74.754181000000017,68.06053200000008],[-74.748610999999926,68.065536000000066],[-74.731948999999872,68.070831000000112],[-74.718613000000005,68.072220000000073],[-74.629990000000021,68.078598000000056],[-74.615279999999984,68.078323000000069],[-74.436661000000015,68.097487999999998],[-74.363892000000021,68.166381999999999],[-74.355834999999956,68.172759999999982],[-74.346953999999926,68.176376000000005],[-74.339447000000007,68.177199999999971],[-74.322509999999909,68.173035000000141],[-74.268889999999999,68.154984000000013],[-74.239440999999999,68.144989000000066],[-74.231673999999941,68.141936999999984],[-74.216399999999965,68.134155000000021],[-74.212509000000011,68.130538999999942],[-74.210830999999985,68.124984999999981],[-74.21556099999998,68.117751999999939]],[[-65.642226999999991,68.159424000000001],[-65.56639100000001,68.152205999999978],[-65.512787000000003,68.15277100000003],[-65.502791999999999,68.151093000000117],[-65.497771999999941,68.14776599999999],[-65.494445999999925,68.142487000000017],[-65.495543999999995,68.128310999999997],[-65.500838999999985,68.121918000000051],[-65.516953000000001,68.113037000000077],[-65.525283999999999,68.109711000000061],[-65.675551999999982,68.096100000000092],[-65.686935000000005,68.095825000000104],[-65.696105999999929,68.098877000000016],[-65.709731999999974,68.106094000000098],[-65.713897999999972,68.112762000000089],[-65.721938999999963,68.164429000000041],[-65.716949,68.175812000000064],[-65.711670000000026,68.180267000000072],[-65.701400999999976,68.181366000000082],[-65.67582699999997,68.179977000000065],[-65.656661999999926,68.175262000000032],[-65.648345999999947,68.168594000000041],[-65.646666999999923,68.163605000000075],[-65.642226999999991,68.159424000000001]],[[-107.47361799999993,68.144714000000079],[-107.48500100000001,68.142487000000017],[-107.50140399999998,68.143600000000049],[-107.55499299999991,68.160537999999974],[-107.55416899999994,68.166091999999992],[-107.54499800000002,68.169983000000059],[-107.5038909999999,68.182480000000055],[-107.49472000000003,68.18664600000011],[-107.48444399999994,68.189697000000137],[-107.46806300000003,68.188582999999994],[-107.46193700000003,68.184142999999949],[-107.46028100000001,68.179153000000099],[-107.45935800000001,68.175629000000015],[-107.45667299999997,68.174423000000047],[-107.45527600000003,68.169144000000074],[-107.45584099999996,68.163605000000075],[-107.46694899999994,68.15026899999998],[-107.47361799999993,68.144714000000079]],[[-104.453056,68.102203000000031],[-104.48277299999995,68.079712000000029],[-104.497772,68.080275999999969],[-104.50334199999992,68.084717000000069],[-104.55304699999999,68.140274000000034],[-104.55610699999994,68.145264000000111],[-104.55695299999996,68.15026899999998],[-104.55387899999999,68.161651999999947],[-104.54666099999997,68.164992999999981],[-104.42639200000002,68.199997000000053],[-104.41555799999998,68.202773999999977],[-104.391953,68.206940000000088],[-104.37721299999998,68.199707000000046],[-104.36860699999994,68.190536000000122],[-104.370003,68.184982000000105],[-104.37416100000002,68.178863999999976],[-104.40499899999992,68.139435000000049],[-104.453056,68.102203000000031]],[[-107.38890100000003,68.172211000000004],[-107.40278599999999,68.171645999999953],[-107.41111799999999,68.17553700000002],[-107.44167299999992,68.196929999999952],[-107.445267,68.201660000000004],[-107.43998699999997,68.208327999999995],[-107.42944299999999,68.211380000000077],[-107.41443599999997,68.211105000000089],[-107.30972300000002,68.209152000000131],[-107.295547,68.20748900000001],[-107.29167200000001,68.202773999999977],[-107.31054699999999,68.196091000000024],[-107.38890100000003,68.172211000000004]],[[-111.83332799999999,68.181931000000077],[-111.84722899999997,68.180817000000104],[-111.860817,68.183594000000028],[-111.86554699999999,68.188034000000016],[-111.83222999999998,68.204987000000131],[-111.81416300000001,68.212494000000049],[-111.79194599999994,68.21775800000006],[-111.77944899999994,68.219437000000028],[-111.764183,68.219437000000028],[-111.75499699999995,68.215820000000122],[-111.75945299999995,68.209152000000131],[-111.76666299999994,68.206375000000037],[-111.79194599999994,68.193588000000034],[-111.81111099999998,68.186920000000043],[-111.83332799999999,68.181931000000077]],[[-98.650283999999999,68.180267000000072],[-98.674438000000009,68.173874000000126],[-98.704453000000001,68.176085999999998],[-98.702788999999996,68.191650000000095],[-98.693328999999949,68.213608000000022],[-98.684433000000013,68.218872000000033],[-98.672226000000023,68.220534999999927],[-98.657226999999978,68.219437000000028],[-98.643065999999976,68.216095000000109],[-98.638610999999969,68.211655000000121],[-98.636672999999917,68.206650000000025],[-98.643065999999976,68.201660000000004],[-98.650283999999999,68.180267000000072]],[[-74.062774999999988,68.151657000000057],[-74.073623999999938,68.150818000000072],[-74.138335999999924,68.170258000000047],[-74.169723999999974,68.195525999999973],[-74.176392000000021,68.204162999999994],[-74.171386999999982,68.208602999999982],[-74.15583799999996,68.217484000000127],[-74.138061999999991,68.225815000000011],[-74.117217999999923,68.232207999999957],[-74.105835000000013,68.235260000000096],[-74.097228999999913,68.236649000000057],[-74.086944999999957,68.235260000000096],[-74.079726999999991,68.232483000000002],[-74.075286999999946,68.227767999999969],[-74.073059000000001,68.223877000000073],[-74.063323999999909,68.203049000000021],[-74.055557000000022,68.172485000000108],[-74.054442999999992,68.159988000000112],[-74.057219999999973,68.154984000000013],[-74.062774999999988,68.151657000000057]],[[-108.59028599999999,68.214431999999988],[-108.63944999999995,68.151382000000012],[-108.6499859999999,68.152481000000023],[-108.65862299999998,68.156097000000045],[-108.67748999999998,68.168869000000086],[-108.67360699999995,68.186371000000122],[-108.67194399999994,68.191085999999984],[-108.63500999999997,68.228592000000106],[-108.62748699999992,68.233597000000145],[-108.60555999999997,68.23692299999999],[-108.56610099999989,68.240540000000124],[-108.55972300000002,68.236099000000024],[-108.59028599999999,68.214431999999988]],[[-109.78388999999999,68.13749700000011],[-109.81166099999996,68.136107999999979],[-109.828056,68.136932000000115],[-109.84137699999997,68.139708999999982],[-109.84999099999999,68.143325999999945],[-109.85665899999998,68.14776599999999],[-109.85417200000001,68.153869999999984],[-109.845551,68.158034999999984],[-109.77194199999997,68.188309000000061],[-109.676941,68.224152000000061],[-109.64417300000002,68.232207999999957],[-109.58889799999997,68.245254999999986],[-109.57749899999988,68.247482000000048],[-109.56806899999998,68.247208000000114],[-109.57055699999995,68.241089000000102],[-109.57695000000001,68.232483000000002],[-109.58194700000001,68.225815000000011],[-109.59416199999993,68.214431999999988],[-109.67388899999997,68.173309000000074],[-109.7625119999999,68.143325999999945],[-109.77250699999991,68.139984000000027],[-109.78388999999999,68.13749700000011]],[[-66.31361400000003,68.14776599999999],[-66.326950000000011,68.147490999999945],[-66.354995999999971,68.153319999999951],[-66.381103999999937,68.158600000000035],[-66.396392999999932,68.161102000000085],[-66.468612999999948,68.171097000000032],[-66.527785999999878,68.177765000000022],[-66.570847000000015,68.181366000000082],[-66.601944000000003,68.182480000000055],[-66.607223999999974,68.217209000000082],[-66.5,68.239700000000084],[-66.299437999999952,68.254440000000045],[-66.221938999999963,68.241089000000102],[-66.256667999999991,68.163605000000075],[-66.269729999999925,68.158600000000035],[-66.301391999999964,68.149154999999951],[-66.31361400000003,68.14776599999999]],[[-96.384170999999924,68.200821000000019],[-96.422775000000001,68.198318000000086],[-96.436935000000005,68.198593000000074],[-96.448607999999922,68.20248400000014],[-96.454726999999934,68.206650000000025],[-96.462783999999999,68.216095000000109],[-96.456664999999987,68.221649000000127],[-96.375,68.254715000000033],[-96.364166000000012,68.258041000000105],[-96.350829999999974,68.258605999999929],[-96.344451999999933,68.254166000000112],[-96.317504999999926,68.231934000000024],[-96.324448000000018,68.221099999999979],[-96.338897999999915,68.212204000000042],[-96.348891999999864,68.208037999999988],[-96.360001000000011,68.204712000000086],[-96.384170999999924,68.200821000000019]],[[-78.571670999999981,68.200272000000098],[-78.655563000000029,68.187759000000028],[-78.662216000000001,68.189147999999989],[-78.660277999999892,68.196365000000128],[-78.643065999999976,68.218323000000055],[-78.607223999999917,68.248322000000087],[-78.593886999999881,68.255554000000018],[-78.581115999999952,68.258880999999974],[-78.550277999999992,68.263610999999969],[-78.548049999999989,68.263046000000145],[-78.545273000000009,68.25],[-78.525283999999999,68.233597000000145],[-78.517226999999934,68.223312000000021],[-78.522506999999905,68.21775800000006],[-78.532226999999978,68.213043000000027],[-78.558883999999978,68.203049000000021],[-78.571670999999981,68.200272000000098]],[[-86.426391999999964,68.069152999999972],[-86.397507000000019,68.021652000000131],[-86.378325999999959,67.993317000000104],[-86.376662999999951,67.988585999999998],[-86.368606999999997,67.954711999999972],[-86.370833999999945,67.939972000000012],[-86.396117999999944,67.859711000000118],[-86.403609999999958,67.848877000000073],[-86.465012000000002,67.786652000000117],[-86.47084000000001,67.78137200000009],[-86.489989999999977,67.770537999999988],[-86.571945000000028,67.728867000000037],[-86.583617999999944,67.725266000000147],[-86.596663999999976,67.72554000000008],[-86.676665999999955,67.731658999999922],[-86.690552000000025,67.733871000000022],[-86.858336999999949,67.79693599999996],[-86.879439999999931,67.810257000000092],[-86.883895999999936,67.814986999999974],[-86.910278000000005,67.8477630000001],[-86.918610000000001,67.86192299999999],[-86.926940999999999,67.876373000000115],[-86.945830999999941,67.909424000000058],[-86.951949999999897,67.923874000000012],[-86.948607999999979,67.928864000000033],[-86.940551999999968,67.934418000000051],[-86.926101999999958,67.931366000000082],[-86.913329999999974,67.931931000000134],[-86.854445999999882,67.954163000000051],[-86.84333799999996,67.958603000000039],[-86.838897999999972,67.986374000000126],[-86.836945000000014,68.001099000000067],[-86.840835999999911,68.010818000000029],[-86.847503999999958,68.020263999999997],[-86.851944000000003,68.024994000000049],[-86.863892000000021,68.029159999999933],[-86.878325999999959,68.032210999999961],[-86.904175000000009,68.030548000000067],[-86.932495000000017,68.035812000000021],[-86.942214999999976,68.040267999999969],[-86.986664000000019,68.061646000000053],[-86.992766999999901,68.066666000000112],[-86.991942999999935,68.071655000000078],[-86.98832699999997,68.081664999999987],[-86.978881999999999,68.096939000000077],[-86.906386999999938,68.180267000000072],[-86.89805599999994,68.185531999999967],[-86.742492999999911,68.282760999999937],[-86.711944999999957,68.299149],[-86.700561999999934,68.303589000000045],[-86.675003000000004,68.306091000000094],[-86.646666999999923,68.301651000000106],[-86.602782999999988,68.291367000000037],[-86.538605000000018,68.270538000000101],[-86.487503000000004,68.24859600000002],[-86.458617999999888,68.235535000000084],[-86.411117999999988,68.208878000000027],[-86.406661999999983,68.204162999999994],[-86.402785999999992,68.194427000000019],[-86.434998000000007,68.162491000000102],[-86.433884000000035,68.098601999999971],[-86.432495000000017,68.088882000000069],[-86.426391999999964,68.069152999999972]],[[-111.71028100000001,68.220534999999927],[-111.72556299999997,68.220260999999994],[-111.74221799999998,68.221099999999979],[-111.75583599999993,68.223602000000028],[-111.76500699999997,68.227203000000088],[-111.77194199999991,68.231369000000029],[-111.77639799999992,68.236099000000024],[-111.77887699999997,68.241089000000102],[-111.77916699999997,68.246933000000126],[-111.77722199999999,68.253052000000139],[-111.77166699999998,68.258880999999974],[-111.71501199999994,68.296936000000073],[-111.70388799999989,68.299422999999933],[-111.52887699999991,68.310806000000127],[-111.51363400000002,68.311096000000134],[-111.49944299999993,68.296936000000073],[-111.50446299999999,68.292480000000126],[-111.52861000000001,68.290543000000071],[-111.55777,68.289429000000098],[-111.58277899999996,68.286101999999971],[-111.60526999999996,68.281096999999932],[-111.61361699999998,68.276657000000114],[-111.62777699999998,68.266663000000108],[-111.633331,68.260818000000029],[-111.63305699999995,68.249709999999993],[-111.63054699999992,68.24443100000002],[-111.63249200000001,68.238312000000008],[-111.63945000000001,68.23332199999993],[-111.64943700000003,68.229980000000012],[-111.67166099999997,68.224701000000039],[-111.696663,68.221375000000023],[-111.71028100000001,68.220534999999927]],[[-75.582779000000016,68.300262000000089],[-75.5625,68.294433999999967],[-75.453888000000006,68.266663000000108],[-75.42971799999998,68.262206999999989],[-75.386672999999917,68.258041000000105],[-75.263061999999934,68.247208000000114],[-75.228881999999942,68.24552900000009],[-75.199158000000011,68.24552900000009],[-75.183059999999955,68.243866000000025],[-75.158614999999941,68.239975000000129],[-75.134734999999864,68.234711000000118],[-75.121933000000013,68.229156000000046],[-75.030563000000029,68.167205999999965],[-75.011948000000018,68.14776599999999],[-75.003066999999987,68.132202000000063],[-75,68.119690000000105],[-75.002227999999945,68.114426000000094],[-75.049163999999962,68.041367000000093],[-75.052490000000034,68.036652000000061],[-75.063323999999966,68.027206000000092],[-75.091675000000009,68.009995000000004],[-75.148055999999997,67.974426000000051],[-75.153609999999901,67.969437000000084],[-75.164443999999946,67.954163000000051],[-75.164443999999946,67.949417000000096],[-75.162780999999939,67.943863000000079],[-75.113891999999964,67.86192299999999],[-75.104445999999996,67.847488000000055],[-75.064162999999951,67.782486000000063],[-75.025008999999955,67.625534000000016],[-75.025283999999999,67.619431000000077],[-75.068892999999889,67.542755000000113],[-75.071944999999971,67.538879000000065],[-75.133620999999948,67.481658999999979],[-75.161117999999988,67.463882000000126],[-75.198607999999979,67.443314000000044],[-75.388061999999934,67.354705999999965],[-75.395843999999954,67.353043000000071],[-75.553603999999893,67.333603000000096],[-75.662506000000008,67.305251999999996],[-75.84445199999999,67.264159999999947],[-75.946105999999929,67.251937999999996],[-76.116652999999928,67.255554000000018],[-76.226943999999946,67.260818000000029],[-76.30860899999999,67.253601000000117],[-76.490829000000019,67.236374000000069],[-76.66361999999998,67.219986000000006],[-76.693053999999961,67.221099999999979],[-76.978057999999976,67.245529000000147],[-77.026672000000019,67.254990000000078],[-77.044723999999917,67.260544000000095],[-77.057219999999916,67.267212000000086],[-77.074448000000018,67.280823000000055],[-77.101395000000025,67.30581699999999],[-77.246947999999975,67.451934999999992],[-77.247222999999963,67.457214000000135],[-77.236937999999952,67.495254999999986],[-77.224441999999954,67.535538000000031],[-77.225829999999974,67.543869000000086],[-77.230285999999978,67.554428000000144],[-77.242217999999923,67.569153000000085],[-77.275008999999955,67.614699999999971],[-77.312209999999993,67.676376000000118],[-77.320847000000015,67.691649999999981],[-77.322509999999909,67.698029000000076],[-77.319167999999991,67.71138000000002],[-77.258346999999958,67.816375999999934],[-77.251953000000015,67.82638500000013],[-77.243332000000009,67.837494000000049],[-77.233062999999959,67.848877000000073],[-77.228333000000021,67.853867000000093],[-77.220551,67.86192299999999],[-77.203888000000006,67.876373000000115],[-76.865554999999972,68.15776100000005],[-76.858886999999925,68.161651999999947],[-76.726105000000018,68.238876000000118],[-76.702498999999932,68.24859600000002],[-76.673888999999974,68.259155000000078],[-76.635009999999909,68.271927000000062],[-76.606948999999929,68.279434000000037],[-76.28195199999999,68.332764000000111],[-76.267226999999934,68.332764000000111],[-76.258346999999901,68.3316650000001],[-76.251953000000015,68.328598],[-76.25,68.323044000000039],[-76.25306699999993,68.313599000000124],[-76.249161000000015,68.307480000000112],[-76.235824999999977,68.303314],[-76.221663999999976,68.301376000000062],[-76.116104000000007,68.296646000000067],[-76.083327999999995,68.295257999999933],[-76.060546999999985,68.296936000000073],[-76.052779999999984,68.298598999999967],[-76.032227000000034,68.304703000000018],[-76.000564999999995,68.316939999999988],[-75.985001000000011,68.324432000000115],[-75.966399999999965,68.331100000000106],[-75.954178000000013,68.333878000000084],[-75.930831999999953,68.336929000000112],[-75.917495999999915,68.338318000000072],[-75.887511999999958,68.339705999999978],[-75.818068999999866,68.336655000000007],[-75.756667999999991,68.332489000000066],[-75.726105000000018,68.33027600000014],[-75.695540999999878,68.326935000000105],[-75.667496000000028,68.322768999999994],[-75.62249799999995,68.313034000000073],[-75.602492999999868,68.307480000000112],[-75.582779000000016,68.300262000000089]],[[-79.020553999999947,68.169144000000074],[-79.032500999999911,68.165268000000026],[-79.075012000000015,68.168320000000108],[-79.089721999999938,68.170258000000047],[-79.101669000000015,68.175262000000032],[-79.171386999999868,68.205261000000064],[-79.176940999999943,68.209427000000119],[-79.179992999999968,68.215545999999961],[-79.188323999999966,68.247208000000114],[-79.191100999999946,68.319442999999978],[-79.151671999999962,68.346649000000014],[-79.141952999999944,68.34887700000013],[-79.125548999999978,68.350266000000147],[-79.099441999999954,68.348602000000142],[-79.044997999999964,68.343322999999941],[-78.929992999999911,68.338882000000012],[-78.826110999999969,68.295532000000037],[-78.809998000000007,68.287490999999989],[-78.804717999999923,68.283051],[-78.801666000000012,68.279160000000104],[-78.80221599999993,68.272491000000002],[-78.805266999999958,68.266663000000108],[-78.815551999999911,68.255554000000018],[-78.823333999999932,68.250548999999978],[-78.841948999999886,68.240540000000124],[-79.020553999999947,68.169144000000074]],[[-100.07472200000001,68.349716000000114],[-100.08640299999996,68.296097000000088],[-100.09166700000003,68.284987999999998],[-100.09944200000001,68.278595000000053],[-100.11221299999994,68.276382000000069],[-100.12832600000002,68.278320000000065],[-100.14028899999994,68.281661999999983],[-100.16443600000002,68.288589000000059],[-100.20056199999999,68.299149],[-100.22693600000002,68.316086000000041],[-100.23082699999992,68.319717000000082],[-100.21556099999998,68.318603999999993],[-100.20249899999988,68.319717000000082],[-100.19110099999995,68.322220000000073],[-100.1183319999999,68.347214000000008],[-100.11000100000001,68.352478000000019],[-100.08583099999998,68.368866000000082],[-100.07668299999989,68.359711000000004],[-100.07444799999996,68.354980000000069],[-100.07472200000001,68.349716000000114]],[[-82.05999799999995,68.306091000000094],[-82.072509999999966,68.303040000000067],[-82.271117999999944,68.338593000000117],[-82.312774999999988,68.349151999999947],[-82.326675000000023,68.353591999999992],[-82.33805799999999,68.358322000000044],[-82.344451999999876,68.362762000000032],[-82.345550999999944,68.36775200000011],[-82.333327999999995,68.371917999999994],[-82.230559999999969,68.385543999999982],[-82.216949,68.384155000000135],[-82.135558999999944,68.372756999999979],[-82.012512000000015,68.350815000000068],[-82.001113999999973,68.34637500000008],[-81.99722300000002,68.34137000000004],[-82.010009999999909,68.332764000000111],[-82.05999799999995,68.306091000000094]],[[-111.11444099999994,68.405823000000055],[-111.12832600000002,68.404984000000127],[-111.13751199999996,68.408599999999979],[-111.141953,68.413315000000011],[-111.14890300000002,68.428863999999919],[-111.14917000000003,68.439972000000125],[-111.141953,68.444976999999994],[-111.13054699999992,68.447479000000044],[-111.11527999999998,68.447754000000089],[-111.09861799999999,68.446930000000123],[-111.08249699999993,68.44470200000012],[-111.07611099999991,68.436919999999986],[-111.08416699999998,68.424988000000042],[-111.10582699999998,68.409988000000055],[-111.11444099999994,68.405823000000055]],[[-99.045273000000009,68.423874000000069],[-99.054992999999911,68.408324999999991],[-99.147781000000009,68.442200000000071],[-99.154723999999987,68.446365000000071],[-99.159163999999919,68.451096000000007],[-99.149733999999853,68.455261000000007],[-99.12110899999999,68.454987000000074],[-99.105269999999962,68.453048999999965],[-99.087219000000005,68.449416999999983],[-99.045273000000009,68.423874000000069]],[[-74.162216000000001,68.246093999999971],[-74.190552000000025,68.242477000000008],[-74.20777899999996,68.243317000000047],[-74.221114999999998,68.247208000000114],[-74.228881999999942,68.250823999999966],[-74.244155999999862,68.261383000000023],[-74.260559000000001,68.273314999999968],[-74.388610999999969,68.398330999999985],[-74.399733999999967,68.42025799999999],[-74.402221999999938,68.427765000000136],[-74.400283999999999,68.43414300000012],[-74.393065999999919,68.445251000000098],[-74.376937999999882,68.459717000000126],[-74.360275000000001,68.463882000000126],[-74.340835999999911,68.462493999999992],[-74.307769999999948,68.461655000000064],[-74.293883999999991,68.460541000000092],[-74.279448999999943,68.458328000000108],[-74.269729999999868,68.454712000000029],[-74.217498999999862,68.426086000000112],[-74.198043999999982,68.414992999999924],[-74.079452999999944,68.338593000000117],[-74.074722000000008,68.330825999999945],[-74.077498999999989,68.325546000000088],[-74.144454999999937,68.254440000000045],[-74.149733999999853,68.25],[-74.162216000000001,68.246093999999971]],[[-100.71056399999998,68.402480999999966],[-100.72416699999997,68.401657],[-100.78943599999997,68.409988000000055],[-100.88971699999996,68.45277400000009],[-100.88027999999997,68.457214000000135],[-100.84889199999992,68.464996000000099],[-100.83029199999999,68.468596999999932],[-100.79332699999986,68.468872000000147],[-100.78611799999999,68.464706000000092],[-100.71806300000003,68.411926000000051],[-100.71305799999999,68.407486000000006],[-100.71056399999998,68.402480999999966]],[[-110.86250299999995,68.474152000000061],[-110.92610199999996,68.465820000000065],[-111.05444299999999,68.469711000000132],[-111.08833299999998,68.473311999999964],[-111.09750400000001,68.477203000000031],[-111.09750400000001,68.482757999999933],[-111.09249899999998,68.487198000000149],[-111.08528099999995,68.492203000000018],[-111.07528699999995,68.495529000000033],[-110.984734,68.515549000000078],[-110.82167099999998,68.54803499999997],[-110.80332899999996,68.546371000000136],[-110.79222099999998,68.543319999999937],[-110.76390100000003,68.533600000000035],[-110.74582700000002,68.526382000000069],[-110.69833399999999,68.491364000000033],[-110.69611399999991,68.486374000000012],[-110.70889299999988,68.484711000000061],[-110.72833300000002,68.484421000000054],[-110.79499799999996,68.479980000000126],[-110.86250299999995,68.474152000000061]],[[-110.58693700000003,68.524155000000007],[-110.625,68.519440000000145],[-110.6600039999999,68.521927000000005],[-110.72112299999998,68.531097000000102],[-110.73249800000002,68.534149000000014],[-110.74610899999999,68.542480000000069],[-110.75974300000001,68.55664100000007],[-110.76194800000002,68.561645999999939],[-110.75473,68.566665999999998],[-110.63861099999997,68.569443000000092],[-110.62832600000002,68.559143000000006],[-110.52971600000001,68.54803499999997],[-110.520554,68.544144000000074],[-110.51834100000002,68.539154000000053],[-110.52722199999988,68.534987999999942],[-110.53859699999992,68.532486000000063],[-110.58693700000003,68.524155000000007]],[[-104.54527300000001,68.396102999999982],[-104.58667000000003,68.394440000000088],[-104.64666699999998,68.395827999999995],[-104.69332900000001,68.402480999999966],[-104.708618,68.40525800000006],[-104.75974299999996,68.418045000000063],[-104.88305699999995,68.449996999999996],[-104.91915899999992,68.459991000000059],[-104.9375,68.46748400000007],[-105.08167999999995,68.546371000000136],[-105.04415899999998,68.562759000000028],[-105.024719,68.570540999999992],[-105.01390100000003,68.573318000000086],[-104.98999000000003,68.57748400000014],[-104.93859900000001,68.583327999999995],[-104.91000399999996,68.583878000000027],[-104.76167299999997,68.582764000000054],[-104.74610899999993,68.582214000000022],[-104.71193699999998,68.578597999999943],[-104.682503,68.57388300000008],[-104.55332899999996,68.537201000000096],[-104.52999899999992,68.530548000000124],[-104.50917099999992,68.523315000000139],[-104.48277299999995,68.511658000000011],[-104.46916199999998,68.503326000000015],[-104.46362299999998,68.498871000000008],[-104.44915799999995,68.485260000000039],[-104.44055200000003,68.476089000000059],[-104.42777999999987,68.456940000000031],[-104.42527799999999,68.441360000000032],[-104.426941,68.435806000000014],[-104.43083199999995,68.429703000000075],[-104.43499799999995,68.423599000000024],[-104.44138299999997,68.417206000000078],[-104.45111099999991,68.413315000000011],[-104.48332199999999,68.404709000000082],[-104.51917299999997,68.398330999999985],[-104.54527300000001,68.396102999999982]],[[-105.139183,68.53637700000013],[-105.12609900000001,68.533325000000048],[-105.11305199999998,68.534424000000001],[-105.10109699999998,68.536652000000004],[-105.08693699999998,68.536926000000108],[-105.07861300000002,68.533051000000114],[-105.06639099999995,68.519149999999968],[-105.05972300000002,68.509430000000066],[-105.05888400000003,68.504166000000055],[-105.06833599999999,68.500274999999988],[-105.08612099999999,68.502777000000037],[-105.11193800000001,68.508881000000088],[-105.23361199999994,68.541091999999992],[-105.24416400000001,68.544708000000071],[-105.29110700000001,68.576935000000049],[-105.29222099999998,68.582214000000022],[-105.28138699999994,68.584991000000116],[-105.25611900000001,68.588318000000015],[-105.24305700000002,68.589705999999978],[-105.228882,68.589980999999966],[-105.21112099999993,68.587769000000094],[-105.18582200000003,68.580826000000116],[-105.18611099999998,68.576660000000004],[-105.18167099999994,68.566665999999998],[-105.17832900000002,68.561645999999939],[-105.139183,68.53637700000013]],[[-113.78611799999999,68.582764000000054],[-113.80166599999995,68.58248900000001],[-113.85249299999998,68.584152000000131],[-113.88945000000001,68.586929000000055],[-113.93138099999999,68.593872000000033],[-113.95259099999987,68.597389000000078],[-113.95966299999998,68.603195000000142],[-113.96611000000001,68.611099000000081],[-113.95667300000002,68.614699999999914],[-113.94248999999996,68.615814000000114],[-113.91388699999999,68.615814000000114],[-113.89972699999998,68.616928000000087],[-113.83693700000003,68.608871000000079],[-113.80027799999999,68.606093999999985],[-113.78611799999999,68.60386699999998],[-113.77667200000002,68.60026600000009],[-113.76194800000002,68.592209000000082],[-113.761124,68.586655000000121],[-113.77223199999997,68.583878000000027],[-113.78611799999999,68.582764000000054]],[[-100.74054699999999,68.596375000000023],[-100.78388999999993,68.594437000000084],[-100.86805699999991,68.603043000000014],[-100.88249200000001,68.611374000000069],[-100.87666300000001,68.616379000000109],[-100.86527999999998,68.619141000000013],[-100.85305800000003,68.620818999999983],[-100.83972199999999,68.62164300000012],[-100.81388900000002,68.619141000000013],[-100.75556899999992,68.607758000000047],[-100.74082899999996,68.604706000000078],[-100.73361199999994,68.600540000000024],[-100.74054699999999,68.596375000000023]],[[-78.468886999999995,68.563873000000001],[-78.474441999999897,68.55831900000004],[-78.482223999999917,68.553313999999943],[-78.503066999999987,68.545532000000037],[-78.530837999999903,68.541091999999992],[-78.545836999999949,68.540817000000004],[-78.562209999999993,68.541930999999977],[-78.599227999999925,68.550644000000034],[-78.614554999999939,68.553650000000061],[-78.638901000000033,68.558028999999976],[-78.654723999999987,68.558594000000028],[-78.668883999999991,68.554153000000099],[-78.724715999999944,68.521927000000005],[-78.715835999999911,68.515823000000012],[-78.691375999999991,68.509155000000021],[-78.674438000000009,68.509720000000073],[-78.653335999999967,68.512496999999939],[-78.636123999999938,68.513046000000088],[-78.621947999999975,68.509720000000073],[-78.617615000000001,68.507217000000082],[-78.610275000000001,68.502213000000097],[-78.610824999999977,68.498032000000023],[-78.618056999999965,68.492203000000018],[-78.705565999999976,68.451660000000118],[-78.716110000000015,68.447754000000089],[-78.743057000000022,68.442748999999992],[-78.776672000000019,68.439147999999989],[-78.795272999999952,68.438583000000108],[-78.813048999999921,68.438873000000115],[-78.828063999999983,68.440811000000053],[-78.861663999999962,68.446365000000071],[-78.876389000000017,68.450546000000145],[-78.959732000000031,68.474700999999982],[-78.946105999999986,68.508041000000048],[-78.943328999999949,68.511932000000115],[-78.936935000000005,68.516388000000006],[-78.822784000000013,68.547759999999982],[-78.809432999999956,68.550537000000077],[-78.791672000000005,68.550262000000032],[-78.759170999999981,68.54803499999997],[-78.743880999999988,68.546097000000032],[-78.723891999999978,68.547484999999938],[-78.704177999999899,68.554703000000131],[-78.698883000000023,68.558028999999976],[-78.688889000000017,68.564697000000137],[-78.670837000000006,68.578872999999987],[-78.668609999999944,68.583327999999995],[-78.672774999999945,68.58859300000006],[-78.680557000000022,68.593323000000112],[-78.693054000000018,68.596939000000134],[-78.705841000000021,68.600540000000024],[-78.784163999999976,68.618590999999981],[-78.851395000000025,68.634155000000078],[-78.894454999999994,68.646378000000141],[-78.89805599999994,68.64888000000002],[-78.889724999999942,68.652771000000087],[-78.863892000000021,68.659714000000122],[-78.837783999999886,68.661102000000028],[-78.720001000000025,68.657211000000132],[-78.689437999999939,68.653320000000065],[-78.495834000000002,68.627762000000132],[-78.481948999999929,68.624985000000038],[-78.469451999999933,68.621093999999971],[-78.460555999999997,68.617203000000075],[-78.467223999999987,68.569153000000085],[-78.468886999999995,68.563873000000001]],[[-74.768889999999999,68.673874000000012],[-74.756667999999991,68.672760000000039],[-74.65583799999996,68.65498400000007],[-74.648346000000004,68.652206000000092],[-74.522231999999974,68.565262000000018],[-74.518340999999907,68.558594000000028],[-74.531951999999876,68.552765000000022],[-74.551392000000021,68.550537000000077],[-74.586944999999957,68.548874000000126],[-74.726668999999902,68.556091000000038],[-74.742767000000015,68.557480000000055],[-74.807219999999916,68.563599000000067],[-74.821945000000028,68.56581099999994],[-74.833892999999989,68.569717000000026],[-74.84333799999996,68.575821000000076],[-74.870543999999995,68.598877000000073],[-74.883056999999894,68.61303700000002],[-74.890288999999996,68.624985000000038],[-74.805832000000009,68.668868999999972],[-74.796111999999994,68.671646000000067],[-74.787216000000001,68.673035000000027],[-74.779998999999975,68.673874000000012],[-74.77194199999991,68.673035000000027],[-74.768889999999999,68.673874000000012]],[[-114.04723399999995,68.613602000000014],[-114.06139399999995,68.612488000000042],[-114.075287,68.614699999999914],[-114.10193600000002,68.625809000000004],[-114.12666299999995,68.637206999999989],[-114.14890299999996,68.649428999999998],[-114.16166699999991,68.658035000000098],[-114.18998699999986,68.680266999999958],[-114.18639400000001,68.683594000000085],[-114.15387699999991,68.679703000000018],[-114.141953,68.676925999999924],[-114.14111299999996,68.671097000000088],[-114.05638099999987,68.635818000000029],[-114.04888900000003,68.631927000000132],[-114.04167200000001,68.627762000000132],[-114.03778099999994,68.616928000000087],[-114.04723399999995,68.613602000000014]],[[-74.811385999999914,68.320541000000048],[-74.817504999999926,68.318603999999993],[-75,68.333344000000125],[-75.002227999999945,68.333603000000039],[-75.008346999999958,68.337204000000099],[-75.010284000000013,68.346649000000014],[-75.005004999999926,68.353591999999992],[-75.002791999999999,68.35914600000001],[-75.00140399999998,68.366378999999995],[-75.015014999999948,68.379700000000128],[-75.029174999999952,68.390549000000021],[-75.037505999999951,68.394714000000022],[-75.081679999999892,68.404984000000127],[-75.10943599999996,68.406937000000084],[-75.138061999999991,68.409988000000055],[-75.153060999999866,68.413040000000024],[-75.241378999999995,68.436371000000065],[-75.263900999999919,68.444976999999994],[-75.294723999999974,68.457763999999997],[-75.369995000000017,68.489700000000028],[-75.396118000000001,68.503601000000003],[-75.416397000000018,68.518051000000128],[-75.416397000000018,68.524429000000112],[-75.396956999999873,68.611099000000081],[-75.389175000000023,68.62303200000008],[-75.307770000000005,68.694702000000063],[-75.299727999999959,68.700546000000088],[-75.280562999999972,68.709717000000069],[-75.254729999999881,68.717484000000013],[-75.239440999999999,68.718048000000124],[-75.014450000000011,68.677200000000028],[-75,68.672241000000099],[-74.942764000000011,68.576096000000064],[-74.938323999999909,68.571655000000135],[-74.931380999999931,68.566665999999998],[-74.836945000000014,68.511658000000011],[-74.801940999999999,68.501099000000124],[-74.785004000000015,68.494705000000067],[-74.780288999999982,68.490265000000079],[-74.772232000000031,68.479980000000126],[-74.768341000000021,68.473311999999964],[-74.776397999999915,68.410537999999917],[-74.811385999999914,68.320541000000048]],[[-84.808043999999938,68.763885000000016],[-84.821395999999879,68.763611000000083],[-84.835830999999985,68.766662999999994],[-84.939163000000008,68.793594000000041],[-84.907776000000013,68.803589000000102],[-84.895279000000016,68.80720500000001],[-84.882492000000013,68.809707999999944],[-84.855835000000013,68.810806000000014],[-84.841385000000002,68.807479999999998],[-84.837219000000005,68.802765000000136],[-84.837783999999999,68.79693600000013],[-84.801665999999955,68.769150000000081],[-84.808043999999938,68.763885000000016]],[[-68.110275000000001,68.78276100000005],[-67.807494999999903,68.733597000000032],[-67.781676999999945,68.729155999999932],[-67.679169000000002,68.711379999999963],[-67.668335000000013,68.707214000000079],[-67.661391999999921,68.701935000000105],[-67.662216000000001,68.698317999999972],[-67.676666000000012,68.695816000000093],[-67.850554999999929,68.697754000000032],[-67.869720000000029,68.69859299999996],[-67.897781000000009,68.704987000000017],[-67.918609999999887,68.712493999999936],[-67.951400999999976,68.721649000000014],[-68.039169000000015,68.738037000000077],[-68.188323999999909,68.763885000000016],[-68.306106999999997,68.779434000000094],[-68.323623999999995,68.779984000000127],[-68.339995999999985,68.778594999999939],[-68.352492999999981,68.775543000000027],[-68.367492999999854,68.774994000000106],[-68.433608999999933,68.781097000000045],[-68.451400999999976,68.783875000000023],[-68.457779000000016,68.785812000000078],[-68.459441999999967,68.791092000000106],[-68.455275999999969,68.802199999999914],[-68.450835999999867,68.80720500000001],[-68.439163000000008,68.812485000000038],[-68.428328999999962,68.813034000000016],[-68.418899999999894,68.810257000000092],[-68.375548999999921,68.808029000000147],[-68.241942999999935,68.798874000000069],[-68.224716000000001,68.797485000000108],[-68.110275000000001,68.78276100000005]],[[-101.83112299999999,68.566940000000102],[-101.84555099999989,68.566665999999998],[-101.86028299999998,68.569717000000026],[-101.88527699999986,68.576385000000016],[-101.90527299999991,68.583878000000027],[-102.00583599999999,68.613875999999948],[-102.112213,68.62359600000002],[-102.23000300000001,68.64027399999992],[-102.254997,68.646942000000081],[-102.31639100000001,68.672211000000061],[-102.3125,68.688583000000051],[-102.21665999999999,68.718322999999998],[-102.14862099999999,68.734984999999938],[-102.13639799999993,68.736923000000104],[-102.11389200000002,68.742477000000065],[-102.09249899999998,68.748871000000122],[-102.073059,68.756943000000092],[-102.05638099999993,68.768051000000071],[-102.05166600000001,68.773880000000077],[-102.04943799999995,68.779434000000094],[-102.04972799999996,68.784714000000008],[-102.05555699999996,68.794434000000081],[-102.05555699999996,68.799713000000054],[-102.05082700000003,68.805542000000059],[-102.04276999999996,68.811096000000077],[-102.02306399999992,68.819443000000035],[-101.99833699999999,68.823044000000095],[-101.98500099999995,68.824158000000068],[-101.95612299999999,68.824158000000068],[-101.93943799999994,68.822494999999947],[-101.9119419999999,68.816086000000098],[-101.77861000000001,68.783875000000023],[-101.69387799999993,68.768051000000071],[-101.69999699999994,68.737762000000032],[-101.68055699999996,68.672484999999995],[-101.68250299999994,68.661652000000061],[-101.701683,68.637772000000041],[-101.83112299999999,68.566940000000102]],[[-102.60082999999997,68.813309000000004],[-102.60749799999996,68.80914300000012],[-102.69695299999995,68.813034000000016],[-102.70722999999992,68.816666000000112],[-102.68888900000002,68.833328000000108],[-102.67859599999997,68.836928999999998],[-102.64055599999995,68.841934000000037],[-102.61277799999993,68.84304800000001],[-102.59889199999986,68.841095000000053],[-102.60221899999999,68.834152000000074],[-102.60082999999997,68.813309000000004]],[[-89.944442999999978,68.662200999999982],[-89.956389999999942,68.661652000000061],[-89.974166999999966,68.705826000000002],[-89.999160999999958,68.730819999999937],[-90.017226999999934,68.740540000000067],[-90.022507000000019,68.74581900000004],[-90.027495999999985,68.752486999999974],[-90.027785999999992,68.758606000000043],[-90.025557999999933,68.771927000000005],[-90.00306699999993,68.806641000000013],[-89.958618000000001,68.838042999999971],[-89.944442999999978,68.847488000000055],[-89.931945999999982,68.852203000000088],[-89.921935999999903,68.853867000000093],[-89.914443999999946,68.853043000000127],[-89.781677000000002,68.766662999999994],[-89.784163999999919,68.760818000000086],[-89.791381999999999,68.752486999999974],[-89.808884000000035,68.733322000000044],[-89.857498000000021,68.700546000000088],[-89.877486999999917,68.690810999999997],[-89.944442999999978,68.662200999999982]],[[-114.35082999999997,68.871643000000063],[-114.37917299999992,68.86943100000002],[-114.39639299999999,68.869705000000124],[-114.429169,68.87359600000002],[-114.45333900000003,68.879425000000026],[-114.46305799999999,68.882751000000042],[-114.468613,68.887206999999989],[-114.47165699999999,68.892487000000017],[-114.46056399999998,68.895264000000111],[-114.44444299999998,68.896103000000096],[-114.424713,68.896942000000024],[-114.37609899999995,68.893600000000106],[-114.34084300000001,68.890549000000078],[-114.32888800000001,68.887496999999996],[-114.32333399999999,68.883041000000048],[-114.32861299999996,68.87692300000009],[-114.33805799999993,68.87359600000002],[-114.35082999999997,68.871643000000063]],[[-67.847777999999948,68.851928999999984],[-67.863891999999964,68.849425999999994],[-67.883056999999951,68.849990999999989],[-67.897232000000031,68.853043000000127],[-67.908051,68.857208000000128],[-67.956389999999942,68.915268000000026],[-67.96055599999994,68.922484999999995],[-67.96055599999994,68.929977000000065],[-67.954726999999934,68.935806000000127],[-67.946654999999964,68.940810999999997],[-67.938048999999978,68.944427000000019],[-67.923889000000031,68.94859300000013],[-67.892226999999991,68.951660000000004],[-67.876388999999961,68.949417000000096],[-67.869445999999982,68.944138000000066],[-67.83944699999995,68.911926000000108],[-67.831389999999999,68.875809000000118],[-67.833068999999909,68.861374000000012],[-67.837509000000011,68.856368999999972],[-67.847777999999948,68.851928999999984]],[[-85.341675000000009,68.983596999999975],[-85.351669000000015,68.981094000000041],[-85.379165999999941,68.981934000000081],[-85.407227000000034,68.984420999999941],[-85.437209999999993,68.991928000000087],[-85.446944999999971,68.996368000000075],[-85.451400999999976,69.001099000000011],[-85.453063999999983,69.005829000000062],[-85.44387799999987,69.010269000000108],[-85.418883999999991,69.009430000000123],[-85.369995000000017,69.001937999999996],[-85.354720999999927,68.997757000000092],[-85.342223999999931,68.993317000000104],[-85.337783999999999,68.988585999999941],[-85.341675000000009,68.983596999999975]],[[-89.90834000000001,68.917755000000113],[-89.915008999999998,68.913315000000125],[-89.952498999999875,68.926376000000062],[-89.978332999999964,68.933867999999961],[-90,68.937575999999979],[-90.03195199999999,68.943039000000113],[-90.075561999999991,68.948028999999963],[-90.070557000000008,68.981934000000081],[-89.946380999999917,69.010269000000108],[-89.93360899999999,69.011658000000068],[-89.920837000000006,69.010269000000108],[-89.914169000000015,69.006943000000035],[-89.910277999999948,69.003052000000139],[-89.906661999999983,68.922484999999995],[-89.90834000000001,68.917755000000113]],[[-100.17555199999987,68.794708000000014],[-100.22083999999995,68.764435000000049],[-100.25446299999999,68.769150000000081],[-100.26917300000002,68.772217000000012],[-100.28555299999994,68.774155000000121],[-100.29915599999998,68.773315000000082],[-100.30860899999999,68.768875000000037],[-100.31639100000001,68.76249700000011],[-100.35749799999996,68.71527100000003],[-100.36694299999994,68.710541000000035],[-100.40722699999998,68.708038000000045],[-100.423607,68.709991000000002],[-100.61332700000003,68.758040999999992],[-100.62304699999999,68.761932000000058],[-100.62805199999997,68.766388000000006],[-100.632767,68.77609300000006],[-100.62581599999999,68.912490999999932],[-100.59999099999999,69.000548999999978],[-100.56111099999993,69.025818000000015],[-100.54360999999994,69.036652000000061],[-100.52916699999997,69.036652000000061],[-100.497772,69.034714000000122],[-100.41610700000001,69.026382000000126],[-100.38110399999994,69.020828000000108],[-100.35082999999997,69.014709000000096],[-100.34111000000001,69.010818000000029],[-100.33361799999994,69.006653000000028],[-100.32861300000002,69.00221300000004],[-100.32362399999994,68.996093999999971],[-100.32888800000001,68.989975000000129],[-100.33168000000001,68.984420999999941],[-100.33168000000001,68.979431000000091],[-100.326683,68.974701000000039],[-100.31276700000001,68.965820000000122],[-100.23889200000002,68.924149],[-100.22888199999994,68.920258000000103],[-100.21665999999988,68.916930999999977],[-100.20361300000002,68.915543000000071],[-100.16027799999995,68.915268000000026],[-100.14362299999993,68.913315000000125],[-100.13110399999999,68.909987999999998],[-100.12638899999996,68.905548000000124],[-100.17194399999994,68.799423000000047],[-100.17555199999987,68.794708000000014]],[[-85.119445999999925,69.014709000000096],[-85.132216999999855,69.013045999999974],[-85.166107000000011,69.031096999999988],[-85.170273000000009,69.035812000000021],[-85.155562999999972,69.056090999999981],[-85.14555399999989,69.058319000000097],[-85.095551,69.048035000000084],[-85.068343999999968,69.041367000000093],[-85.061385999999914,69.036652000000061],[-85.075835999999924,69.031096999999988],[-85.119445999999925,69.014709000000096]],[[-85.265288999999996,69.072495000000117],[-85.343886999999938,69.06303400000013],[-85.357773000000009,69.063598999999954],[-85.373046999999929,69.067763999999954],[-85.392776000000026,69.076660000000118],[-85.397232000000031,69.081374999999923],[-85.398894999999982,69.086104999999975],[-85.392501999999979,69.09137000000004],[-85.380279999999914,69.095825000000048],[-85.301392000000021,69.104155999999989],[-85.287780999999882,69.104706000000022],[-85.258895999999993,69.100266000000147],[-85.248885999999914,69.095825000000048],[-85.241942999999992,69.09137000000004],[-85.245543999999995,69.086104999999975],[-85.246658000000025,69.081374999999923],[-85.253066999999987,69.07609599999995],[-85.265288999999996,69.072495000000117]],[[-99.999434999999949,68.943588000000034],[-100.006958,68.939423000000033],[-100.021118,68.939696999999967],[-100.03778099999988,68.941360000000088],[-100.12000299999994,68.950821000000076],[-100.16166699999997,68.961380000000133],[-100.18138099999999,68.968872000000033],[-100.19860799999998,68.976929000000041],[-100.20612299999988,68.981094000000041],[-100.23693800000001,69.008605999999986],[-100.25666799999999,69.026656999999943],[-100.25890399999992,69.031661999999983],[-100.25862099999995,69.041931000000034],[-100.23693800000001,69.081374999999923],[-100.23194899999993,69.087203999999986],[-100.21333300000003,69.097214000000065],[-100.12970699999994,69.130264000000125],[-100.09555099999994,69.117477000000122],[-100.05304699999999,69.102478000000019],[-100.03333299999991,69.094711000000075],[-100.02834299999995,69.090271000000087],[-99.978881999999999,69.01388500000013],[-99.976943999999946,69.003876000000105],[-99.999434999999949,68.943588000000034]],[[-90.124709999999993,69.04942299999999],[-90.12721299999987,69.044982999999945],[-90.138061999999991,69.04525799999999],[-90.231948999999986,69.065536000000009],[-90.247498000000007,69.070267000000115],[-90.279175000000009,69.098328000000038],[-90.276397999999858,69.125809000000061],[-90.263335999999924,69.141936999999928],[-90.262511999999958,69.142761000000064],[-90.253890999999953,69.142761000000064],[-90.147231999999974,69.103591999999992],[-90.125,69.055542000000003],[-90.124709999999993,69.04942299999999]],[[-101.66416900000002,69.083603000000096],[-101.67749000000003,69.082764000000111],[-101.69027699999998,69.086104999999975],[-101.69554099999993,69.090546000000074],[-101.69833399999993,69.095261000000107],[-101.71806300000003,69.178588999999931],[-101.71584300000001,69.189147999999989],[-101.71112099999993,69.195251000000098],[-101.70361300000002,69.201660000000004],[-101.695267,69.206940000000031],[-101.68443300000001,69.210815000000025],[-101.65834000000001,69.213608000000022],[-101.60166899999996,69.215546000000131],[-101.55860899999999,69.216660000000104],[-101.53527799999995,69.209427000000119],[-101.5202789999999,69.197479000000101],[-101.497772,69.170258000000047],[-101.49500299999994,69.165543000000014],[-101.49500299999994,69.160262999999929],[-101.49999999999994,69.154434000000094],[-101.55555699999991,69.105255000000113],[-101.56360599999999,69.099990999999989],[-101.65139799999997,69.085541000000035],[-101.66416900000002,69.083603000000096]],[[-90.512512000000015,69.20248400000014],[-90.575561999999991,69.198593000000074],[-90.613327000000027,69.207763999999997],[-90.777221999999995,69.272491000000002],[-90.778609999999901,69.317215000000147],[-90.775832999999977,69.32998699999996],[-90.762512000000015,69.345534999999984],[-90.757232999999985,69.349426000000051],[-90.740829000000019,69.357483000000059],[-90.692215000000033,69.37164300000012],[-90.67332499999992,69.373871000000065],[-90.655272999999966,69.374695000000031],[-90.638610999999969,69.373871000000065],[-90.608046999999999,69.36970500000001],[-90.595001000000025,69.365264999999965],[-90.582503999999972,69.359711000000004],[-90.559433000000013,69.347214000000008],[-90.548614999999984,69.339981000000023],[-90.47193900000002,69.281097000000102],[-90.460830999999928,69.267487000000017],[-90.455565999999976,69.234711000000118],[-90.454452999999887,69.226379000000122],[-90.457503999999972,69.222763000000043],[-90.512512000000015,69.20248400000014]],[[-78.412215999999887,69.379700000000128],[-78.396392999999932,69.377761999999962],[-78.338608000000022,69.3808140000001],[-78.305832000000009,69.377761999999962],[-78.291381999999999,69.374985000000095],[-78.279723999999987,69.370255000000043],[-78.270844000000011,69.364150999999993],[-78.211394999999925,69.299987999999985],[-78.210830999999985,69.294434000000138],[-78.214447000000007,69.288315000000125],[-78.318344000000025,69.238312000000008],[-78.396118000000001,69.210541000000092],[-78.472504000000015,69.191360000000032],[-78.551392000000021,69.089157000000057],[-78.556655999999919,69.083603000000096],[-78.572234999999921,69.073317999999972],[-78.601943999999946,69.066086000000041],[-78.62777699999998,69.058593999999914],[-78.707229999999981,69.014709000000096],[-78.715011999999945,69.009720000000129],[-78.718062999999972,69.003601000000117],[-78.71665999999999,68.99664300000012],[-78.712783999999999,68.984985000000108],[-78.716110000000015,68.979156000000103],[-78.725280999999995,68.968872000000033],[-78.735000999999954,68.963608000000079],[-78.830291999999929,68.91304000000008],[-78.840285999999935,68.908600000000092],[-78.867492999999968,68.900543000000084],[-78.934433000000013,68.888596000000121],[-78.978881999999999,68.882477000000108],[-79.033614999999998,68.877197000000024],[-79.095275999999956,68.872757000000036],[-79.185271999999941,68.853317000000061],[-79.194152999999972,68.849425999999994],[-79.197219999999902,68.839157000000114],[-79.204726999999991,68.833878000000141],[-79.216949,68.829987000000074],[-79.238892000000021,68.827484000000084],[-79.287216000000001,68.83137499999998],[-79.353332999999964,68.844147000000021],[-79.366103999999893,68.847763000000043],[-79.386948000000018,68.856093999999985],[-79.392501999999865,68.860535000000084],[-79.396392999999932,68.864990000000091],[-79.400283999999999,68.871918000000051],[-79.402221999999938,68.923598999999967],[-79.379439999999931,68.931656000000089],[-79.353881999999999,68.943863000000079],[-79.330565999999976,68.958327999999995],[-79.309432999999956,68.973602000000085],[-79.303878999999938,68.978317000000118],[-79.292769999999962,68.995818999999983],[-79.283065999999963,69.012772000000041],[-79.238892000000021,69.066376000000048],[-79.227218999999991,69.076385000000073],[-79.216949,69.081100000000106],[-79.146117999999944,69.093597000000102],[-79.049438000000009,69.102203000000031],[-78.985824999999977,69.099990999999989],[-78.974441999999954,69.100266000000147],[-78.960280999999952,69.102478000000019],[-78.864165999999955,69.141098],[-78.855834999999956,69.145537999999988],[-78.749160999999901,69.261107999999979],[-78.721938999999963,69.310532000000023],[-78.726668999999902,69.318603999999993],[-78.724715999999944,69.331100000000049],[-78.722778000000005,69.336105000000089],[-78.716110000000015,69.34027100000003],[-78.606948999999986,69.371368000000132],[-78.577498999999989,69.377197000000137],[-78.568618999999956,69.378860000000032],[-78.489989999999977,69.391098000000113],[-78.47084000000001,69.392212000000086],[-78.458617999999944,69.38998400000014],[-78.412215999999887,69.379700000000128]],[[-135.28890999999993,69.309418000000051],[-135.29751599999997,69.304977000000122],[-135.33138999999989,69.322768999999994],[-135.34805299999994,69.330551000000128],[-135.38613899999996,69.344986000000063],[-135.39779699999997,69.348037999999974],[-135.44000199999999,69.355820000000108],[-135.48693800000001,69.362198000000092],[-135.51501500000001,69.367477000000065],[-135.52694699999995,69.370529000000147],[-135.55999800000001,69.380264000000068],[-135.56527700000004,69.384995000000004],[-135.56555199999997,69.390548999999965],[-135.55999800000001,69.396652000000131],[-135.54998799999998,69.399994000000049],[-135.52444499999996,69.403595000000109],[-135.50723300000004,69.403046000000131],[-135.42028799999997,69.397491000000059],[-135.365814,69.393599999999992],[-135.33776899999992,69.388596000000064],[-135.32806400000004,69.384995000000004],[-135.27224699999988,69.358321999999987],[-135.27139299999999,69.346938999999963],[-135.27722199999999,69.328322999999955],[-135.28332499999988,69.315262000000018],[-135.28890999999993,69.309418000000051]],[[-76.950835999999867,69.395263999999997],[-76.923614999999984,69.393599999999992],[-76.902221999999995,69.394713999999965],[-76.804168999999945,69.400269000000037],[-76.787780999999995,69.402480999999966],[-76.779174999999952,69.403870000000097],[-76.760833999999875,69.40914900000007],[-76.75140399999998,69.412766000000033],[-76.744445999999982,69.416931000000034],[-76.732772999999952,69.422760000000039],[-76.723327999999981,69.423599000000024],[-76.716400000000021,69.422211000000118],[-76.705840999999964,69.418868999999972],[-76.652221999999938,69.38638300000008],[-76.644729999999925,69.381363000000022],[-76.643889999999942,69.374420000000043],[-76.646666999999979,69.336929000000055],[-76.648894999999925,69.331940000000088],[-76.676391999999964,69.306091000000094],[-76.706389999999999,69.303588999999988],[-76.718886999999995,69.301651000000049],[-76.736937999999952,69.296371000000022],[-76.799438000000009,69.272491000000002],[-76.926392000000021,69.21748400000007],[-76.933608999999933,69.213882000000126],[-76.939986999999974,69.209152000000074],[-76.945830999999998,69.203598000000113],[-76.949431999999945,69.197479000000101],[-76.950561999999934,69.1933140000001],[-76.958892999999989,69.14248699999996],[-77.118057000000022,69.119431000000134],[-77.137787000000003,69.116652999999928],[-77.171660999999915,69.117202999999961],[-77.213622999999984,69.125809000000061],[-77.238601999999958,69.132750999999985],[-77.25778200000002,69.139984000000027],[-77.285827999999924,69.153594999999996],[-77.301392000000021,69.164153999999996],[-77.320281999999963,69.181366000000025],[-77.381942999999865,69.247482000000048],[-77.384170999999981,69.263610999999969],[-77.383330999999941,69.270538000000045],[-77.359725999999966,69.392761000000064],[-77.356383999999935,69.396652000000131],[-77.348342999999943,69.401657],[-77.288329999999917,69.417755],[-77.259170999999924,69.424698000000035],[-77.189162999999951,69.438309000000004],[-77.153610000000015,69.444427000000076],[-77.129989999999964,69.445251000000042],[-77.113616999999977,69.441650000000038],[-77.075561999999991,69.428314000000057],[-77.043335000000013,69.417206000000078],[-77.006957999999997,69.406372000000033],[-76.978332999999907,69.399994000000049],[-76.950835999999867,69.395263999999997]],[[-90.329453000000001,69.235809000000017],[-90.34722899999997,69.234711000000118],[-90.361388999999974,69.238312000000008],[-90.506392999999946,69.329162999999994],[-90.510009999999909,69.334717000000012],[-90.514450000000011,69.363876000000005],[-90.501113999999973,69.372482000000105],[-90.491669000000002,69.376647999999989],[-90.301940999999943,69.434418000000107],[-90.205275999999913,69.445816000000093],[-90.200835999999981,69.444427000000076],[-90.199722000000008,69.439148000000102],[-90.195267000000001,69.416931000000034],[-90.178604000000007,69.409988000000055],[-90.149733999999967,69.375534000000016],[-90.148345999999947,69.370255000000043],[-90.154723999999987,69.350815000000068],[-90.15972899999997,69.34526100000005],[-90.271666999999923,69.255554000000018],[-90.288605000000018,69.249419999999986],[-90.329453000000001,69.235809000000017]],[[-135.59222399999999,69.482208000000071],[-135.574432,69.446640000000059],[-135.61999499999996,69.468597000000102],[-135.62942499999991,69.472214000000065],[-135.66528299999999,69.481368999999916],[-135.69360399999999,69.486649],[-135.74081399999994,69.493041999999946],[-135.77835099999999,69.496094000000085],[-135.81054700000004,69.497756999999979],[-135.81555200000003,69.502487000000031],[-135.8125,69.508041000000048],[-135.79528799999997,69.516663000000051],[-135.78555299999999,69.519989000000066],[-135.77389500000004,69.52276599999999],[-135.76113899999996,69.524429000000055],[-135.74526999999995,69.524704000000099],[-135.66610700000001,69.505828999999949],[-135.59942599999999,69.486098999999967],[-135.59222399999999,69.482208000000071]],[[-101.05304699999999,69.504439999999988],[-101.00611900000001,69.486923000000104],[-101.00862099999995,69.450272000000041],[-101.12526700000001,69.401382000000126],[-101.21861299999989,69.371368000000132],[-101.23029299999996,69.368591000000038],[-101.24305700000002,69.371917999999994],[-101.26888999999994,69.378860000000032],[-101.27916700000003,69.382476999999994],[-101.271118,69.385818000000029],[-101.256958,69.386658000000068],[-101.24526999999995,69.389434999999992],[-101.2369379999999,69.394713999999965],[-101.23166699999996,69.400818000000015],[-101.18888899999996,69.469711000000075],[-101.18639400000001,69.475265999999976],[-101.22749299999992,69.495529000000033],[-101.23805199999998,69.499145999999996],[-101.2538909999999,69.500274999999988],[-101.266953,69.49832200000003],[-101.31749699999995,69.511107999999922],[-101.38445300000001,69.53276100000005],[-101.38722199999995,69.53776600000009],[-101.35833700000001,69.566940000000102],[-101.34973099999996,69.572495000000004],[-101.34056099999992,69.574707000000046],[-101.27555799999993,69.580826000000059],[-101.26167299999992,69.581665000000044],[-101.07305899999994,69.534988000000112],[-101.06276699999995,69.53137200000009],[-101.05999800000001,69.526382000000012],[-101.05304699999999,69.504439999999988]],[[-96.663054999999929,69.569717000000026],[-96.563323999999966,69.564147999999989],[-96.461120999999991,69.564147999999989],[-96.401671999999905,69.562759000000028],[-96.373610999999983,69.560806000000071],[-96.358886999999868,69.55720500000001],[-96.351943999999946,69.55304000000001],[-96.345275999999899,69.548599000000081],[-96.343886999999995,69.543594000000041],[-96.335555999999997,69.534424000000001],[-96.328613000000018,69.529983999999956],[-96.31639100000001,69.526382000000012],[-96.291671999999892,69.531097000000045],[-96.218063000000029,69.546371000000136],[-96.207229999999981,69.55053700000002],[-96.198333999999875,69.55664100000007],[-96.194442999999978,69.561920000000043],[-96.184432999999956,69.56721500000009],[-96.169723999999917,69.566940000000102],[-96.152221999999995,69.563599000000067],[-96.139998999999932,69.559982000000105],[-96.133330999999941,69.555542000000059],[-96.134445000000028,69.550262000000032],[-96.136397999999986,69.546097000000032],[-96.104171999999949,69.49832200000003],[-96.101104999999961,69.493041999999946],[-96.097778000000005,69.483322000000044],[-96.096114999999998,69.46804800000001],[-96.098617999999988,69.457763999999941],[-96.143065999999919,69.351379000000009],[-96.146666999999979,69.345824999999991],[-96.163329999999974,69.348037999999974],[-96.233886999999982,69.359711000000004],[-96.248610999999926,69.36303700000002],[-96.270003999999972,69.370818999999983],[-96.288604999999961,69.378860000000032],[-96.304992999999911,69.387497000000053],[-96.325286999999946,69.400269000000037],[-96.333617999999944,69.409714000000122],[-96.348343,69.423035000000084],[-96.382216999999912,69.44470200000012],[-96.401108000000022,69.453048999999908],[-96.430557000000022,69.459717000000069],[-96.461944999999957,69.462493999999992],[-96.507232999999985,69.464432000000102],[-96.524719000000005,69.467484000000013],[-96.548889000000031,69.474990999999989],[-96.630828999999949,69.512207000000103],[-96.654175000000009,69.524994000000106],[-96.736663999999962,69.576660000000004],[-96.735549999999989,69.581940000000031],[-96.721663999999919,69.58248900000001],[-96.691665999999884,69.581940000000031],[-96.676940999999999,69.578323000000125],[-96.663054999999929,69.569717000000026]],[[-67.310546999999929,69.549149000000114],[-67.324172999999973,69.533875000000023],[-67.331680000000006,69.53137200000009],[-67.351105000000018,69.530823000000112],[-67.388610999999969,69.533051000000057],[-67.473052999999936,69.533875000000023],[-67.492766999999958,69.533051000000057],[-67.53083799999996,69.52915999999999],[-67.545272999999895,69.525818000000072],[-67.552489999999977,69.523041000000148],[-67.549437999999896,69.519714000000022],[-67.507232999999985,69.514998999999989],[-67.499999999999943,69.512833000000057],[-67.49888599999997,69.51249700000011],[-67.489990000000034,69.508606000000043],[-67.481673999999941,69.500000000000114],[-67.492492999999854,69.495529000000033],[-67.50778200000002,69.494980000000112],[-67.573623999999995,69.506653000000085],[-67.58555599999994,69.50749200000007],[-67.598891999999978,69.506378000000097],[-67.626662999999951,69.500549000000092],[-67.642226999999878,69.500274999999988],[-67.731948999999929,69.513611000000083],[-67.744445999999925,69.515822999999955],[-67.749725000000012,69.521103000000039],[-67.739440999999943,69.540817000000118],[-67.730834999999956,69.544434000000081],[-67.723052999999993,69.545258000000047],[-67.707229999999981,69.544434000000081],[-67.686661000000015,69.541091999999992],[-67.674712999999883,69.540268000000026],[-67.663329999999974,69.54193099999992],[-67.578063999999983,69.559708000000001],[-67.550277999999935,69.565536000000122],[-67.541381999999999,69.569153000000028],[-67.531386999999995,69.576384999999959],[-67.527221999999995,69.581940000000031],[-67.48443599999996,69.590271000000143],[-67.425002999999947,69.588882000000126],[-67.394454999999994,69.584991000000059],[-67.367217999999923,69.578323000000125],[-67.321395999999993,69.560531999999967],[-67.314437999999996,69.55664100000007],[-67.309433000000013,69.552765000000022],[-67.310546999999929,69.549149000000114]],[[-96.760558999999944,69.54553199999998],[-96.770003999999915,69.543594000000041],[-96.786666999999909,69.54553199999998],[-96.868880999999874,69.555817000000104],[-96.883895999999993,69.55914300000012],[-96.888061999999991,69.563873000000001],[-96.902221999999995,69.5977630000001],[-96.900283999999999,69.602203000000088],[-96.870543999999995,69.601379000000122],[-96.851395000000025,69.599425999999994],[-96.840835999999967,69.597488000000055],[-96.81639100000001,69.590271000000143],[-96.809433000000013,69.585815000000025],[-96.766402999999968,69.554977000000065],[-96.761947999999961,69.55053700000002],[-96.760558999999944,69.54553199999998]],[[-91.110001000000011,69.549423000000047],[-91.119155999999975,69.548324999999977],[-91.140288999999939,69.560806000000071],[-91.142501999999922,69.564986999999974],[-91.136397999999986,69.575546000000031],[-91.121384000000035,69.593048000000067],[-91.108886999999925,69.602203000000088],[-91.037215999999944,69.614990000000091],[-90.969161999999926,69.618317000000047],[-90.959732000000031,69.61943100000002],[-90.937499999999943,69.616379000000109],[-90.923049999999932,69.611374000000069],[-90.920272999999952,69.608032000000094],[-90.919158999999979,69.606093999999985],[-90.930832000000009,69.599152000000061],[-91.110001000000011,69.549423000000047]],[[-133.93222000000003,69.560256999999922],[-133.948059,69.560256999999922],[-133.96304299999997,69.561371000000122],[-133.98611499999998,69.565536000000122],[-134.01196299999992,69.571381000000031],[-134.01666299999994,69.576096000000064],[-134.01419099999998,69.58248900000001],[-134.01028400000001,69.585541000000092],[-133.94528199999996,69.613312000000008],[-133.93362399999995,69.616089000000102],[-133.89446999999996,69.621093999999971],[-133.87997399999995,69.621918000000107],[-133.86581399999994,69.619141000000013],[-133.84472700000003,69.600815000000011],[-133.84695399999998,69.588882000000126],[-133.868042,69.56721500000009],[-133.87719699999997,69.565261999999962],[-133.93222000000003,69.560256999999922]],[[-95.488892000000021,69.565536000000122],[-95.452498999999932,69.550262000000032],[-95.375548999999978,69.517761000000121],[-95.366104000000007,69.513611000000083],[-95.359726000000023,69.509155000000021],[-95.362212999999997,69.498870999999951],[-95.402495999999985,69.383330999999998],[-95.515839000000028,69.330826000000116],[-95.527221999999995,69.327484000000027],[-95.539718999999991,69.325271999999927],[-95.606383999999935,69.319153000000085],[-95.620270000000005,69.318603999999993],[-95.634170999999924,69.318329000000119],[-95.692489999999964,69.319153000000085],[-95.706954999999994,69.319442999999922],[-95.722778000000005,69.320831000000055],[-95.736938000000009,69.324432000000058],[-95.741104000000007,69.329162999999994],[-95.741668999999945,69.334717000000012],[-95.731673999999941,69.373031999999967],[-95.727782999999874,69.378585999999927],[-95.716949,69.382750999999928],[-95.693877999999984,69.389434999999992],[-95.669158999999979,69.394150000000025],[-95.657776000000013,69.397217000000126],[-95.648346000000004,69.403320000000065],[-95.666397000000018,69.497756999999979],[-95.669158999999979,69.50749200000007],[-95.694442999999978,69.540268000000026],[-95.708053999999947,69.548874000000126],[-95.720001000000025,69.552765000000022],[-95.736663999999905,69.554977000000065],[-95.815826000000015,69.562759000000028],[-95.827498999999932,69.559708000000001],[-95.831680000000006,69.554153000000099],[-95.822784000000013,69.514435000000049],[-95.817504999999926,69.504990000000021],[-95.809432999999956,69.495529000000033],[-95.797225999999966,69.481658999999979],[-95.862212999999997,69.348037999999974],[-95.87222300000002,69.34275800000006],[-95.899445000000014,69.340820000000122],[-95.961670000000026,69.346375000000023],[-95.978881999999999,69.349426000000051],[-95.990829000000019,69.353317000000118],[-96.011123999999882,69.478043000000071],[-96.009734999999978,69.483047000000056],[-95.919998000000021,69.595260999999994],[-95.909164000000033,69.599425999999994],[-95.789443999999946,69.634155000000078],[-95.773894999999925,69.632751000000098],[-95.625548999999921,69.616089000000102],[-95.61221299999994,69.61442599999998],[-95.488892000000021,69.565536000000122]],[[-138.86721799999992,69.588318000000015],[-138.87332200000003,69.583054000000061],[-138.88305699999995,69.579437000000098],[-138.91000399999996,69.576096000000064],[-138.945831,69.57887299999993],[-138.97720300000003,69.583054000000061],[-138.99609399999997,69.584152000000131],[-139.02307099999996,69.580826000000059],[-139.03417999999999,69.578048999999965],[-139.05306999999999,69.570540999999992],[-139.12109399999997,69.52915999999999],[-139.137787,69.530823000000112],[-139.33248899999995,69.566085999999927],[-139.32998699999996,69.571655000000135],[-139.32223499999992,69.576096000000064],[-139.26779199999993,69.605820000000051],[-139.24221799999992,69.618317000000047],[-139.23275799999999,69.621918000000107],[-139.19973800000002,69.630538999999999],[-139.14416499999999,69.644989000000123],[-139.13305700000001,69.647766000000047],[-139.12027,69.649993999999992],[-139.10333299999996,69.648041000000035],[-139.02029399999998,69.633331000000112],[-138.95611600000001,69.619705000000124],[-138.92111199999994,69.610535000000084],[-138.88055399999996,69.596939000000134],[-138.872772,69.59275800000006],[-138.86721799999992,69.588318000000015]],[[-135.51724199999995,69.569153000000028],[-135.54305999999997,69.565536000000122],[-135.55721999999997,69.568054000000075],[-135.57138099999997,69.576934999999992],[-135.58111600000001,69.580551000000071],[-135.5883179999999,69.584717000000126],[-135.591095,69.589980999999966],[-135.58944699999989,69.596099999999979],[-135.58612099999993,69.601653999999996],[-135.57888800000001,69.606644000000017],[-135.55471799999992,69.620254999999986],[-135.51196299999998,69.641663000000108],[-135.50030500000003,69.644439999999975],[-135.43972799999995,69.65248100000008],[-135.42388900000003,69.65248100000008],[-135.40972899999991,69.649993999999992],[-135.39779699999997,69.646942000000081],[-135.40917999999999,69.634995000000117],[-135.4655459999999,69.585541000000092],[-135.474152,69.581375000000037],[-135.505585,69.571655000000135],[-135.51724199999995,69.569153000000028]],[[-67.920273000000009,69.521927000000005],[-67.935271999999941,69.518875000000094],[-68.002228000000002,69.526657000000057],[-68.049437999999952,69.533875000000023],[-68.238892000000021,69.570267000000058],[-68.248885999999914,69.596649000000127],[-68.078339000000028,69.665268000000083],[-67.970839999999896,69.701935000000049],[-67.959731999999974,69.704987000000017],[-67.946380999999974,69.706375000000094],[-67.895553999999947,69.708603000000039],[-67.889724999999999,69.708328000000051],[-67.869720000000029,69.700821000000076],[-67.821120999999948,69.676376000000062],[-67.831680000000006,69.601928999999984],[-67.910278000000005,69.526657000000057],[-67.920273000000009,69.521927000000005]],[[-134.26058999999987,68.733535999999958],[-134.23248299999989,68.706100000000106],[-134.22778299999993,68.701385000000073],[-134.22726399999999,68.696426000000088],[-134.23580900000002,68.694977000000108],[-134.26779199999999,68.695816000000093],[-134.35693400000002,68.703049000000078],[-134.38861099999997,68.707214000000079],[-134.436127,68.713608000000136],[-134.45748899999995,68.719147000000135],[-134.46194499999996,68.72387700000013],[-134.49554399999994,68.75221300000004],[-134.53640699999994,68.786926000000051],[-134.66946399999989,68.894440000000145],[-134.741669,68.935531999999967],[-134.75500499999987,68.944427000000019],[-134.76696799999991,68.953323000000125],[-134.78306599999996,68.965355000000045],[-134.82583599999998,68.97886699999998],[-134.85278299999999,68.976379000000009],[-134.89224200000001,68.971924000000001],[-134.90472399999999,68.969986000000006],[-134.91473400000001,68.96665999999999],[-134.92028799999997,68.960815000000082],[-134.91973899999994,68.949417000000096],[-134.91723599999995,68.944138000000066],[-134.91641199999998,68.926926000000094],[-134.92028799999997,68.914703000000031],[-134.92584199999999,68.908600000000092],[-134.93307499999997,68.903594999999996],[-134.94137599999999,68.899429000000112],[-134.96112099999999,68.892487000000017],[-134.97500599999995,68.891663000000051],[-134.99999999999994,68.892082000000073],[-135.00750699999998,68.892212000000029],[-135.12609900000001,68.899429000000112],[-135.14196800000002,68.901382000000069],[-135.167236,68.907211000000075],[-135.17083699999995,68.911102000000142],[-135.17806999999999,68.920822000000044],[-135.18084699999997,68.926085999999998],[-135.20165999999995,68.9327550000001],[-135.23330699999991,68.934708000000001],[-135.262787,68.933594000000028],[-135.36111500000004,68.926651000000049],[-135.39196799999996,68.926651000000049],[-135.42138699999987,68.928864000000033],[-135.444458,68.934981999999934],[-135.45388799999995,68.938582999999994],[-135.46081499999997,68.942749000000106],[-135.76916499999993,68.896378000000084],[-135.808044,68.895264000000111],[-135.843323,68.897217000000069],[-135.88247699999999,68.905258000000117],[-135.90585299999992,68.911376999999959],[-135.94805899999994,68.924698000000092],[-135.99527,68.942474000000061],[-136.00250199999999,68.946640000000002],[-136.00527999999997,68.951935000000049],[-135.98916599999995,69.029160000000104],[-135.98525999999998,69.035812000000021],[-135.97833299999996,69.040817000000061],[-135.96859699999999,69.044434000000024],[-135.95443699999998,69.045532000000094],[-135.88861099999991,69.026093000000003],[-135.85012800000004,69.007401000000129],[-135.83389299999993,68.998322000000144],[-135.82888799999989,68.993591000000038],[-135.80248999999992,68.989426000000037],[-135.77001999999999,68.989150999999993],[-135.64889499999998,68.991928000000087],[-135.63473499999998,68.993042000000059],[-135.57861300000002,69.006104000000107],[-135.52557399999995,69.021102999999982],[-135.51779199999999,69.023880000000077],[-135.529449,69.026931999999988],[-135.72082499999999,69.046097000000145],[-135.91583300000002,69.088318000000129],[-135.92748999999998,69.09137000000004],[-135.93472299999996,69.095535000000041],[-135.95138499999996,69.142761000000064],[-135.96582000000001,69.197754000000089],[-135.96722399999999,69.214706000000092],[-135.95944199999997,69.228317000000061],[-135.94695999999993,69.23942599999998],[-135.92611699999998,69.254715000000033],[-135.915009,69.257492000000127],[-135.89862099999999,69.255554000000018],[-135.89138800000001,69.251389000000017],[-135.82138099999986,69.215271000000143],[-135.75140399999998,69.179428000000087],[-135.74194299999999,69.175812000000064],[-135.66610700000001,69.146941999999967],[-135.65667699999995,69.143600000000049],[-135.56750499999993,69.11775200000011],[-135.55279499999989,69.116652999999928],[-135.48693800000001,69.113312000000121],[-135.49581899999993,69.124145999999996],[-135.60720799999996,69.145264000000054],[-135.6305539999999,69.151382000000012],[-135.64001499999995,69.154984000000127],[-135.81082199999997,69.242751999999996],[-135.83999600000004,69.259430000000066],[-135.85220300000003,69.268051000000014],[-135.85498000000001,69.273315000000139],[-135.8558349999999,69.284714000000065],[-135.85415599999999,69.290817000000004],[-135.84860199999997,69.296936000000017],[-135.8416749999999,69.301926000000094],[-135.83331299999998,69.306366000000082],[-135.80389400000001,69.316666000000055],[-135.79251099999999,69.319442999999922],[-135.57192999999995,69.33859300000006],[-135.5561219999999,69.338882000000012],[-135.48580900000002,69.33526599999999],[-135.44860799999998,69.332214000000022],[-135.41332999999997,69.323043999999982],[-135.39196799999996,69.309981999999991],[-135.38723800000002,69.30525200000011],[-135.379974,69.301086000000055],[-135.37027,69.297484999999995],[-135.32333399999999,69.285262999999986],[-135.25778200000002,69.271378000000084],[-135.24386599999997,69.268600000000106],[-135.22970599999996,69.266098000000056],[-135.18554699999993,69.258880999999917],[-135.17056300000002,69.257766999999944],[-135.16223099999996,69.261931999999945],[-135.15805099999994,69.268600000000106],[-135.15835599999997,69.274429000000112],[-135.16500899999994,69.279160000000047],[-135.17443800000001,69.283051000000114],[-135.23971599999987,69.3316650000001],[-135.28695699999992,69.413605000000018],[-135.28723100000002,69.419144000000017],[-135.28527800000001,69.425537000000134],[-135.278076,69.430542000000003],[-135.26834099999996,69.434143000000063],[-135.16082800000004,69.473602000000142],[-135.15084799999994,69.476929000000098],[-135.137787,69.478592000000049],[-134.99664300000001,69.48414600000001],[-134.91528299999993,69.485259999999982],[-134.69473300000004,69.481658999999979],[-134.67749000000003,69.480819999999994],[-134.64251699999988,69.477203000000031],[-134.62832599999996,69.474426000000108],[-134.60861199999988,69.468597000000102],[-134.570831,69.453873000000044],[-134.55917399999987,69.450821000000133],[-134.53112799999997,69.445526000000086],[-134.49609399999997,69.441925000000026],[-134.48165900000004,69.442748999999992],[-134.46859699999993,69.444427000000076],[-134.43832399999997,69.454712000000029],[-134.42083699999995,69.463042999999914],[-134.413635,69.468322999999998],[-134.40777600000001,69.474152000000004],[-134.40557899999993,69.480270000000132],[-134.40835600000003,69.491364000000033],[-134.41778599999992,69.500549000000092],[-134.43667600000003,69.508041000000048],[-134.44833399999999,69.511107999999922],[-134.46887200000003,69.542755000000056],[-134.40167199999996,69.638321000000133],[-134.40249600000004,69.649719000000005],[-134.406677,69.654434000000037],[-134.44277999999997,69.68081699999999],[-134.48580899999996,69.706100000000049],[-134.49054000000001,69.710815000000082],[-134.49304199999995,69.715819999999951],[-134.49108899999993,69.722214000000008],[-134.47637900000001,69.723037999999974],[-134.30972299999996,69.715819999999951],[-134.20388799999995,69.668868999999972],[-134.17748999999998,69.64027400000009],[-134.19638099999992,69.621093999999971],[-134.20388799999995,69.616089000000102],[-134.24026500000002,69.585815000000025],[-134.24472000000003,69.579162999999994],[-134.24472000000003,69.573318000000029],[-134.24221799999998,69.568054000000075],[-134.11331200000001,69.538879000000009],[-134.09860199999997,69.539978000000019],[-134.08111600000001,69.548324999999977],[-134.06195099999997,69.555817000000104],[-134.03750600000001,69.560256999999922],[-134.02001999999999,69.559417999999994],[-134.00836200000003,69.556091000000038],[-134.00140399999998,69.551926000000037],[-133.97778299999999,69.528594999999996],[-133.96112099999999,69.509155000000021],[-133.94723499999992,69.506378000000097],[-133.91833499999996,69.508331000000055],[-133.87914999999998,69.513321000000076],[-133.86749299999997,69.515822999999955],[-133.86026000000004,69.520828000000051],[-133.82250999999997,69.555252000000053],[-133.823151,69.5600740000001],[-133.81973300000004,69.564986999999974],[-133.801941,69.573608000000092],[-133.79168699999997,69.576934999999992],[-133.77835099999993,69.576384999999959],[-133.75057999999996,69.547485000000108],[-133.74832199999992,69.542205999999965],[-133.79861500000004,69.481094000000098],[-133.81805399999996,69.464157000000114],[-133.85055499999999,69.445816000000093],[-133.87692300000003,69.433044000000109],[-133.92083699999995,69.412201000000039],[-133.94137599999999,69.405258000000003],[-133.96444699999995,69.400269000000037],[-134.08554100000003,69.340546000000018],[-134.21112099999993,69.276092999999946],[-134.21832299999988,69.271103000000096],[-134.27557400000001,69.226089000000115],[-134.27999899999986,69.219437000000028],[-134.28222699999998,69.213318000000015],[-134.28195199999999,69.20748900000001],[-134.27722199999994,69.202773999999977],[-134.27471899999995,69.197754000000089],[-134.27444500000001,69.186096000000077],[-134.28030399999994,69.180267000000072],[-134.287781,69.175262000000032],[-134.38363599999997,69.11831699999999],[-134.39779699999997,69.117477000000122],[-134.44888300000002,69.119705000000067],[-134.47720300000003,69.118042000000116],[-134.53112799999997,69.112762000000089],[-134.5680539999999,69.106644000000131],[-134.58526599999999,69.098038000000031],[-134.67361500000004,69.017761000000007],[-134.67584199999993,69.01138300000008],[-134.675568,69.005829000000062],[-134.66973899999999,68.9727630000001],[-134.67166099999997,68.966385000000002],[-134.66665599999999,68.956100000000049],[-134.65280200000001,68.947754000000145],[-134.60665900000004,68.935256999999979],[-134.58831799999996,68.928040000000067],[-134.51419099999987,68.887496999999996],[-134.50723300000004,68.883041000000048],[-134.48858599999994,68.870254999999986],[-134.47470099999998,68.856093999999985],[-134.46417199999991,68.84248400000007],[-134.45693999999997,68.826934999999992],[-134.44750999999991,68.811920000000043],[-134.44027700000004,68.80192599999998],[-134.43112199999996,68.792755000000056],[-134.417236,68.784423999999944],[-134.39889499999998,68.777205999999978],[-134.37609899999995,68.770827999999995],[-134.3511049999999,68.764998999999989],[-134.29666099999992,68.754440000000102],[-134.28750599999995,68.75082400000008],[-134.28057899999999,68.746643000000006],[-134.26058999999987,68.733535999999958]],[[-102.14527900000002,69.648604999999975],[-102.16027800000001,69.648331000000042],[-102.17832900000002,69.651093000000003],[-102.21028099999995,69.662200999999982],[-102.22609699999992,69.670258000000103],[-102.23166700000002,69.674698000000149],[-102.24305699999996,69.694138000000123],[-102.243607,69.704436999999984],[-102.24137899999999,69.71026599999999],[-102.23416099999997,69.716660000000047],[-102.22556299999991,69.721924000000001],[-102.21584300000001,69.726654000000053],[-102.15778399999999,69.736099000000081],[-102.13474300000001,69.724701000000096],[-102.12943999999993,69.72026100000005],[-102.12332199999997,69.71276899999998],[-102.12026999999989,69.708038000000045],[-102.11721799999998,69.697753999999975],[-102.11554699999999,69.666655999999989],[-102.11805700000002,69.660812000000135],[-102.12277199999994,69.65498400000007],[-102.13221699999991,69.650542999999971],[-102.14527900000002,69.648604999999975]],[[-77.946655000000021,69.646652000000074],[-77.944992000000013,69.639709000000039],[-77.946105999999986,69.633331000000112],[-77.965835999999967,69.624985000000038],[-78.07028200000002,69.59275800000006],[-78.169997999999964,69.570540999999992],[-78.311934999999949,69.54304500000012],[-78.397780999999952,69.520828000000051],[-78.505004999999869,69.488876000000062],[-78.576401000000033,69.501663000000065],[-78.588057999999933,69.506103999999993],[-78.611388999999917,69.509430000000009],[-78.626098999999954,69.50999500000006],[-78.646117999999888,69.50999500000006],[-78.664443999999889,69.50749200000007],[-78.685271999999941,69.49832200000003],[-78.698043999999982,69.489151000000049],[-78.718886999999938,69.479980000000126],[-78.756957999999941,69.467484000000013],[-78.801940999999943,69.455826000000002],[-78.817504999999926,69.45277400000009],[-78.838608000000022,69.451385000000073],[-78.853058000000033,69.454163000000108],[-78.861938000000009,69.457489000000123],[-78.868331999999953,69.460541000000035],[-78.873885999999857,69.464706000000035],[-78.880279999999971,69.476929000000098],[-78.87860099999989,69.479980000000126],[-78.874160999999958,69.486923000000104],[-78.865004999999996,69.494980000000112],[-78.841385000000002,69.508041000000048],[-78.826110999999969,69.511657999999954],[-78.809722999999963,69.514160000000061],[-78.783324999999991,69.521103000000039],[-78.764175000000023,69.527205999999978],[-78.717772999999966,69.544708000000014],[-78.695266999999944,69.556931000000077],[-78.674438000000009,69.568329000000062],[-78.652785999999935,69.581940000000031],[-78.628051999999968,69.608597000000145],[-78.615554999999915,69.617477000000008],[-78.586394999999925,69.631927000000132],[-78.575835999999981,69.636383000000023],[-78.522506999999905,69.648331000000042],[-78.499724999999899,69.650542999999971],[-78.482772999999895,69.649428999999941],[-78.400283999999999,69.643326000000002],[-78.260833999999932,69.659987999999998],[-78.245270000000005,69.663605000000132],[-78.229445999999996,69.67164600000001],[-78.228057999999976,69.677475000000072],[-78.236938000000009,69.688583000000051],[-78.244995000000017,69.693313999999987],[-78.256957999999941,69.705825999999945],[-78.263625999999931,69.713608000000079],[-78.26916499999993,69.728043000000014],[-78.268615999999952,69.732208000000014],[-78.265838999999971,69.733871000000136],[-78.180557000000022,69.75221300000004],[-78.164168999999958,69.752486999999974],[-78.154174999999952,69.750549000000035],[-78.141953000000001,69.742477000000065],[-78.080001999999979,69.72943099999992],[-78.018341000000021,69.708328000000051],[-77.992767000000015,69.699417000000096],[-77.982773000000009,69.694702000000063],[-77.973891999999978,69.688583000000051],[-77.966110000000015,69.681655999999975],[-77.955565999999976,69.668319999999994],[-77.946655000000021,69.646652000000074]],[[-82.507781999999963,69.704987000000017],[-82.542770000000019,69.704163000000051],[-82.678878999999995,69.726379000000009],[-82.720001000000025,69.733321999999987],[-82.865004999999996,69.770827999999995],[-82.877776999999924,69.774994000000049],[-82.879439999999931,69.778595000000109],[-82.856383999999991,69.800261999999975],[-82.846664000000033,69.803040000000124],[-82.839171999999962,69.80386400000009],[-82.811661000000015,69.806090999999981],[-82.803054999999915,69.805817000000047],[-82.796111999999994,69.805251999999996],[-82.776108000000022,69.804153000000042],[-82.677779999999927,69.794707999999957],[-82.629990000000021,69.789153999999996],[-82.563889000000017,69.778595000000109],[-82.460281000000009,69.761658000000125],[-82.453063999999983,69.720534999999984],[-82.455001999999922,69.714432000000045],[-82.467223999999987,69.709990999999945],[-82.507781999999963,69.704987000000017]],[[-79.423049999999989,69.784988000000055],[-79.331680000000006,69.713318000000072],[-79.328338999999971,69.707214000000079],[-79.329452999999944,69.701385000000016],[-79.333892999999989,69.697478999999987],[-79.354720999999984,69.688034000000073],[-79.482223999999917,69.646103000000096],[-79.544997999999964,69.626647999999932],[-79.571670999999981,69.61943100000002],[-79.600280999999995,69.612761999999975],[-79.631667999999934,69.608871000000079],[-79.957503999999972,69.619979999999998],[-79.963333000000034,69.626373000000115],[-79.974166999999852,69.631652999999972],[-79.994995000000017,69.638596000000007],[-80.02194199999991,69.643599999999935],[-80.038054999999986,69.645263999999941],[-80.059432999999899,69.64387499999998],[-80.065552000000025,69.641663000000108],[-80.081954999999994,69.630538999999999],[-80.082779000000016,69.626923000000147],[-80.078887999999949,69.622208000000114],[-80.032776000000013,69.587204000000042],[-79.991378999999938,69.568878000000041],[-79.937774999999931,69.531937000000084],[-79.935546999999985,69.527205999999978],[-79.93638599999997,69.523604999999918],[-79.940276999999924,69.518875000000094],[-79.974441999999954,69.502213000000097],[-79.993880999999931,69.494431000000134],[-80.011948000000018,69.491652999999985],[-80.021117999999944,69.49275200000011],[-80.046111999999937,69.497756999999979],[-80.200561999999991,69.530823000000112],[-80.214721999999995,69.586655000000064],[-80.353606999999954,69.614700000000084],[-80.461944999999957,69.656372000000147],[-80.492767000000015,69.664993000000038],[-80.577788999999996,69.667480000000126],[-80.74360699999994,69.666092000000049],[-80.761123999999995,69.666930999999977],[-80.793334999999956,69.670258000000103],[-80.804442999999878,69.675537000000077],[-80.809433000000013,69.683044000000052],[-80.809433000000013,69.68942300000009],[-80.801392000000021,69.701096000000121],[-80.730835000000013,69.746368000000132],[-80.725006000000008,69.74914600000011],[-80.720275999999899,69.750549000000035],[-80.649733999999967,69.748596000000077],[-80.520003999999972,69.720825000000048],[-80.498610999999983,69.759719999999959],[-80.50111400000003,69.762497000000053],[-80.502791999999943,69.76638800000012],[-80.504455999999948,69.774994000000049],[-80.503066999999987,69.779984000000127],[-80.499999999999943,69.783324999999991],[-80.490554999999972,69.788589000000115],[-80.46665999999999,69.791931000000091],[-80.388901000000033,69.799988000000042],[-80.371384000000035,69.799149000000057],[-80.340285999999992,69.794707999999957],[-80.338607999999908,69.790542999999957],[-80.343063000000029,69.784149000000127],[-80.34445199999999,69.776931999999988],[-80.329726999999991,69.774155000000121],[-80.314712999999983,69.778045999999961],[-80.289444000000003,69.786652000000061],[-80.264175000000023,69.79525799999999],[-80.246657999999968,69.798599000000024],[-80.232773000000009,69.79942299999999],[-80.20666499999993,69.798035000000084],[-80.191665999999884,69.79525799999999],[-80.182769999999948,69.792755000000056],[-80.129165999999941,69.765549000000021],[-80.073058999999944,69.74971000000005],[-79.972778000000005,69.723312000000078],[-79.862777999999935,69.741088999999988],[-79.768065999999976,69.75277699999998],[-79.756392999999889,69.778869999999927],[-79.752501999999993,69.783599999999979],[-79.744720000000029,69.788589000000115],[-79.687209999999993,69.814697000000081],[-79.678329000000019,69.814423000000147],[-79.512787000000003,69.80693100000002],[-79.476943999999946,69.803589000000102],[-79.453888000000006,69.798874000000069],[-79.442489999999907,69.794983000000002],[-79.431670999999938,69.789703000000088],[-79.423049999999989,69.784988000000055]],[[-83.674437999999952,69.719986000000063],[-83.688598999999954,69.719436999999914],[-83.717772999999966,69.723312000000078],[-83.776947000000007,69.732758000000047],[-83.806945999999982,69.739426000000037],[-83.898894999999982,69.764434999999992],[-83.908614999999998,69.769150000000025],[-83.917220999999984,69.778595000000109],[-83.913054999999986,69.793320000000051],[-83.900833000000034,69.808318999999926],[-83.886948000000018,69.81860400000005],[-83.873885999999914,69.823044000000095],[-83.860274999999945,69.824432000000002],[-83.832503999999972,69.825272000000041],[-83.577498999999989,69.797760000000096],[-83.533324999999934,69.791366999999923],[-83.529174999999952,69.786652000000061],[-83.542220999999984,69.783324999999991],[-83.576675000000023,69.780823000000055],[-83.601944000000003,69.779984000000127],[-83.695830999999998,69.763884999999959],[-83.708618000000001,69.759429999999952],[-83.712783999999999,69.754440000000102],[-83.705840999999964,69.750000000000057],[-83.693329000000006,69.745529000000147],[-83.662506000000008,69.736923000000047],[-83.655838000000017,69.732208000000014],[-83.654175000000009,69.727203000000145],[-83.661117999999988,69.722214000000008],[-83.674437999999952,69.719986000000063]],[[-82.429442999999992,69.782210999999961],[-82.444153000000028,69.778320000000122],[-82.470551,69.781372000000033],[-82.513335999999867,69.788315000000011],[-82.526107999999965,69.790542999999957],[-82.551392000000021,69.796646000000123],[-82.564437999999996,69.800812000000008],[-82.688599000000011,69.850815000000125],[-82.674438000000009,69.874984999999981],[-82.673049999999989,69.875809000000118],[-82.660552999999993,69.876083000000051],[-82.636397999999986,69.871094000000085],[-82.555831999999953,69.860809000000131],[-82.517226999999934,69.854155999999989],[-82.446105999999986,69.822220000000129],[-82.436661000000015,69.817490000000078],[-82.428878999999938,69.812195000000031],[-82.426666000000012,69.799988000000042],[-82.425827000000027,69.793045000000063],[-82.426101999999958,69.786925999999994],[-82.429442999999992,69.782210999999961]],[[-91.520003999999915,69.731369000000086],[-91.535278000000005,69.726929000000041],[-91.549438000000009,69.727203000000145],[-91.560271999999884,69.728316999999947],[-91.725280999999995,69.784149000000127],[-91.735549999999989,69.789153999999996],[-91.733321999999873,69.791931000000091],[-91.475829999999974,69.875534000000073],[-91.449432000000002,69.879149999999981],[-91.433883999999978,69.880538999999942],[-91.419448999999986,69.879974000000118],[-91.409164000000033,69.874984999999981],[-91.456664999999987,69.774994000000049],[-91.463332999999977,69.763611000000026],[-91.470551,69.755554000000075],[-91.520003999999915,69.731369000000086]],[[-91.819167999999934,69.821655000000078],[-91.833892999999989,69.821105999999929],[-91.844727000000034,69.822220000000129],[-91.860001000000011,69.838593000000003],[-91.864166000000012,69.844146999999964],[-91.860549999999989,69.848877000000016],[-91.84944200000001,69.858871000000022],[-91.821120999999891,69.868042000000003],[-91.782501000000025,69.877762000000075],[-91.763901000000033,69.880264000000125],[-91.745543999999995,69.881653000000142],[-91.728607000000011,69.880813999999987],[-91.71305799999999,69.878310999999997],[-91.701110999999969,69.875259000000085],[-91.644454999999937,69.859421000000054],[-91.639724999999999,69.854980000000126],[-91.651671999999962,69.851089000000059],[-91.666397000000018,69.847487999999998],[-91.819167999999934,69.821655000000078]],[[-97.397781000000009,69.685532000000023],[-97.41194200000001,69.684708000000057],[-97.441939999999931,69.685532000000023],[-97.455841000000021,69.684708000000057],[-97.468338000000017,69.682480000000112],[-97.479720999999984,69.678864000000033],[-97.489440999999999,69.673874000000012],[-97.490279999999871,69.668594000000098],[-97.476944000000003,69.654709000000025],[-97.398346000000004,69.597488000000055],[-97.391388000000006,69.593323000000055],[-97.378875999999934,69.592484000000127],[-97.372771999999998,69.598328000000095],[-97.351943999999946,69.631362999999965],[-97.350829999999974,69.636658000000068],[-97.347504000000015,69.642212000000029],[-97.329726999999878,69.669708000000071],[-97.31639100000001,69.686645999999996],[-97.303878999999938,69.698317999999915],[-97.289168999999958,69.69802900000002],[-97.273894999999982,69.694702000000063],[-97.226395000000025,69.675537000000077],[-97.206954999999937,69.667480000000126],[-97.113892000000021,69.622208000000114],[-97.106948999999929,69.617751999999996],[-97.103607000000011,69.614150999999936],[-97.101944000000003,69.609146000000067],[-97.102782999999931,69.603867000000093],[-97.09944200000001,69.594147000000021],[-97.09056099999998,69.584991000000059],[-97.064437999999939,69.572769000000108],[-96.955565999999976,69.523315000000082],[-96.879165999999998,69.491364000000033],[-96.866942999999992,69.487762000000089],[-96.637786999999946,69.437194999999974],[-96.502501999999936,69.409714000000122],[-96.32028200000002,69.354705999999965],[-96.301391999999964,69.346648999999957],[-96.208892999999989,69.306931000000134],[-96.202224999999942,69.302765000000022],[-96.189986999999974,69.288879000000065],[-96.172226000000023,69.26527400000009],[-96.170546999999999,69.260544000000039],[-96.171935999999903,69.255264000000011],[-96.175551999999925,69.249709999999993],[-96.193329000000006,69.237488000000042],[-96.203339000000028,69.232482999999945],[-96.209732000000031,69.22665399999994],[-96.21305799999999,69.211105000000032],[-96.223617999999931,69.141936999999928],[-96.235000999999954,69.064148000000102],[-96.23361199999988,69.059418000000051],[-96.229720999999984,69.054703000000018],[-96.225554999999986,69.049987999999985],[-96.218886999999995,69.045822000000101],[-96.195266999999944,69.038315000000011],[-96.166396999999904,69.031371999999976],[-96.1324919999999,69.024994000000049],[-96.118880999999931,69.025542999999971],[-96.115279999999984,69.030823000000055],[-96.113891999999964,69.036102000000028],[-96.129990000000021,69.054703000000018],[-96.152221999999995,69.103043000000071],[-96.15695199999999,69.163315000000068],[-96.155838000000017,69.168594000000041],[-96.149444999999901,69.174423000000047],[-96.073623999999995,69.231658999999979],[-96.05972300000002,69.232208000000128],[-96.047774999999888,69.228317000000061],[-96.041107000000011,69.223877000000073],[-95.955565999999919,69.141936999999928],[-95.951675000000023,69.13749700000011],[-95.924438000000009,69.089432000000102],[-95.925827000000027,69.084427000000062],[-95.93472300000002,69.078323000000012],[-95.953612999999905,69.067215000000033],[-95.971389999999928,69.054976999999951],[-95.977782999999988,69.049149000000057],[-95.978881999999999,69.043868999999972],[-95.97084000000001,69.034714000000122],[-95.938599000000011,69.003876000000105],[-95.925551999999982,68.995255000000043],[-95.843886999999995,68.923035000000027],[-95.82028200000002,68.870254999999986],[-95.770554000000004,68.891098000000056],[-95.756957999999997,68.891373000000044],[-95.745833999999945,68.888596000000121],[-95.674163999999962,68.869980000000112],[-95.670272999999895,68.865540000000124],[-95.668609999999944,68.860535000000084],[-95.667495999999971,68.855545000000006],[-95.671386999999982,68.850266000000033],[-95.667220999999984,68.835266000000047],[-95.663329999999974,68.830826000000059],[-95.654175000000009,68.826659999999947],[-95.626098999999954,68.826659999999947],[-95.575835999999981,68.830276000000026],[-95.550277999999878,68.833054000000004],[-95.528335999999911,68.840271000000087],[-95.510284000000013,68.852478000000076],[-95.489989999999977,68.861649000000057],[-95.446655000000021,68.879149999999981],[-95.42471299999994,68.886658000000011],[-95.389998999999989,68.895264000000111],[-95.378052000000025,68.89776599999999],[-95.365004999999996,68.899155000000007],[-95.351395000000025,68.899429000000112],[-95.335555999999997,68.897217000000069],[-95.321395999999993,68.893600000000106],[-95.240279999999984,68.86692800000003],[-95.228881999999942,68.863037000000134],[-95.21055599999994,68.854706000000022],[-95.206954999999994,68.850266000000033],[-95.210830999999985,68.844711000000132],[-95.263061999999991,68.802765000000136],[-95.273055999999997,68.797485000000108],[-95.476395000000025,68.711929000000112],[-95.543610000000001,68.702484000000027],[-95.539992999999924,68.708038000000045],[-95.538895000000025,68.713318000000129],[-95.538895000000025,68.723312000000135],[-95.546386999999982,68.732483000000059],[-95.559433000000013,68.741364000000033],[-95.568344000000025,68.745529000000033],[-95.593886999999938,68.752777000000037],[-95.608046999999885,68.753326000000129],[-95.621932999999956,68.752777000000037],[-95.790558000000033,68.737198000000092],[-95.801666000000012,68.733870999999965],[-95.848343,68.669983000000116],[-95.859726000000023,68.653320000000065],[-95.988891999999964,68.62164300000012],[-96.000838999999928,68.61943100000002],[-96.14973399999991,68.55720500000001],[-96.256393000000003,68.503326000000015],[-96.262512000000015,68.497481999999991],[-96.264724999999885,68.487198000000149],[-96.270844000000011,68.481368999999972],[-96.291381999999942,68.473038000000031],[-96.30221599999993,68.469711000000132],[-96.313888999999961,68.467209000000025],[-96.503615999999909,68.446091000000138],[-96.530563000000029,68.444976999999994],[-96.717498999999918,68.474990999999989],[-96.768341000000021,68.485260000000039],[-96.913895000000025,68.518051000000128],[-96.928328999999962,68.521378000000084],[-97.094451999999876,68.539154000000053],[-97.095550999999944,68.534149000000014],[-97.098891999999978,68.528594999999996],[-97.11999499999996,68.520828000000051],[-97.130828999999949,68.517487000000017],[-97.142501999999979,68.514999000000046],[-97.154175000000009,68.512771999999984],[-97.181106999999997,68.511382999999967],[-97.460007000000019,68.534149000000014],[-97.475005999999951,68.535537999999974],[-97.506118999999956,68.541930999999977],[-97.553329000000019,68.55664100000007],[-97.574172999999917,68.564148000000046],[-97.583618000000001,68.568054000000075],[-97.667220999999927,68.60386699999998],[-97.727218999999991,68.63220199999995],[-97.918609999999944,68.675537000000134],[-98.020554000000004,68.693588000000091],[-98.035552999999936,68.694702000000063],[-98.049987999999985,68.694977000000108],[-98.062774999999988,68.693588000000091],[-98.078338999999971,68.683319000000097],[-98.083892999999989,68.677475000000072],[-98.09333799999996,68.672211000000061],[-98.104995999999971,68.669708000000128],[-98.11999499999996,68.670822000000101],[-98.129715000000033,68.674698000000149],[-98.240279999999984,68.720825000000048],[-98.261123999999938,68.733597000000032],[-98.281677000000002,68.746368000000132],[-98.290558000000033,68.755554000000075],[-98.292495999999971,68.760543999999982],[-98.291945999999939,68.765823000000125],[-98.286117999999931,68.771652000000131],[-98.269729999999981,68.783875000000023],[-98.260833999999932,68.789153999999996],[-98.249161000000015,68.800812000000008],[-98.243056999999965,68.811920000000043],[-98.244155999999975,68.822220000000129],[-98.263061999999991,68.829987000000074],[-98.275283999999886,68.833602999999982],[-98.369719999999973,68.857483000000116],[-98.383330999999941,68.859985000000052],[-98.408051,68.855820000000051],[-98.418609999999944,68.852478000000076],[-98.425003000000004,68.841370000000097],[-98.415282999999988,68.815262000000132],[-98.40194699999995,68.801650999999993],[-98.393615999999952,68.787201000000039],[-98.394729999999925,68.776932000000045],[-98.400283999999942,68.770827999999995],[-98.408614999999941,68.764708999999982],[-98.418609999999944,68.760543999999982],[-98.451110999999969,68.750000000000114],[-98.476395000000025,68.746933000000013],[-98.489990000000034,68.746094000000028],[-98.519454999999994,68.747481999999934],[-98.724715999999887,68.791092000000106],[-98.84722899999997,68.825546000000145],[-98.859436000000017,68.829163000000108],[-98.866394000000014,68.833328000000108],[-98.875548999999978,68.84248400000007],[-98.879714999999976,68.852203000000088],[-98.879165999999941,68.857483000000116],[-98.86999499999996,68.874146000000053],[-98.864440999999999,68.879974000000118],[-98.856383999999991,68.886383000000023],[-98.847503999999958,68.891663000000051],[-98.826675000000023,68.899429000000112],[-98.817504999999869,68.904709000000025],[-98.811934999999949,68.910538000000031],[-98.811385999999914,68.915817000000004],[-98.820556999999951,68.924987999999928],[-98.827498999999989,68.929152999999928],[-98.84944200000001,68.933594000000028],[-98.965835999999967,68.949417000000096],[-98.981109999999944,68.950546000000031],[-98.993057000000022,68.947754000000145],[-99.077498999999989,68.918319999999994],[-99.09584000000001,68.899429000000112],[-99.076401000000033,68.891663000000051],[-99.062209999999936,68.883041000000048],[-99.043883999999935,68.864990000000091],[-99.044158999999866,68.859711000000118],[-99.176102000000014,68.825821000000019],[-99.188599000000011,68.824158000000068],[-99.21055599999994,68.831664999999987],[-99.236664000000019,68.848877000000016],[-99.24610899999999,68.852768000000083],[-99.267226999999991,68.859146000000067],[-99.311385999999914,68.868866000000139],[-99.413329999999974,68.884155000000021],[-99.428054999999972,68.887206999999989],[-99.437774999999988,68.891098000000056],[-99.444992000000013,68.895538000000045],[-99.449722000000008,68.899993999999992],[-99.454178000000013,68.909714000000065],[-99.451110999999912,68.915268000000026],[-99.447768999999994,68.926085999999998],[-99.448882999999967,68.936645999999996],[-99.450835999999981,68.941650000000095],[-99.460555999999997,68.950821000000076],[-99.489166000000012,68.967484000000127],[-99.523330999999871,68.983596999999975],[-99.562499999999943,68.99914600000011],[-99.589721999999881,69.011108000000036],[-99.594161999999983,69.015823000000069],[-99.596389999999928,69.020538000000101],[-99.596114999999998,69.025818000000015],[-99.593338000000017,69.031371999999976],[-99.579880000000003,69.043930000000046],[-99.513625999999874,69.101929000000098],[-99.492217999999866,69.1202550000001],[-99.485824999999977,69.125259000000028],[-99.476943999999946,69.13081399999993],[-99.466659999999933,69.13499500000006],[-99.311385999999914,69.158875000000023],[-99.296660999999972,69.158600000000035],[-99.238051999999982,69.149719000000061],[-99.168334999999956,69.138321000000076],[-99.035278000000005,69.135818000000086],[-99.006957999999997,69.136383000000137],[-98.798049999999989,69.17053199999998],[-98.774445000000014,69.17553700000002],[-98.730559999999969,69.189423000000033],[-98.720275999999956,69.193863000000022],[-98.711120999999991,69.199141999999995],[-98.702788999999996,69.205261000000007],[-98.699722000000008,69.210815000000025],[-98.701110999999969,69.220825000000104],[-98.705275999999969,69.230820000000051],[-98.615554999999915,69.294708000000071],[-98.533889999999928,69.291367000000037],[-98.441375999999877,69.298035000000027],[-98.415558000000033,69.301086000000055],[-98.403335999999967,69.303588999999988],[-98.393341000000021,69.308029000000033],[-98.387512000000015,69.313873000000058],[-98.384170999999981,69.319442999999922],[-98.388061999999991,69.329162999999994],[-98.397232000000031,69.338318000000072],[-98.44027699999998,69.363876000000005],[-98.457229999999981,69.371917999999994],[-98.476944000000003,69.379974000000061],[-98.488892000000021,69.383605999999986],[-98.523330999999985,69.388321000000019],[-98.535552999999936,69.391937000000098],[-98.555556999999965,69.399994000000049],[-98.562499999999943,69.404159999999933],[-98.598052999999993,69.430542000000003],[-98.611937999999952,69.444138000000009],[-98.608886999999868,69.449706999999989],[-98.591675000000009,69.467484000000013],[-98.585555999999997,69.473312000000135],[-98.577224999999999,69.479430999999977],[-98.563323999999909,69.477203000000031],[-98.553329000000019,69.473312000000135],[-98.540833000000021,69.469711000000075],[-98.508347000000015,69.463318000000129],[-98.477492999999924,69.461928999999941],[-98.447768999999994,69.461655000000007],[-98.422501000000011,69.465820000000008],[-98.419448999999986,69.47137499999991],[-98.424164000000019,69.475815000000125],[-98.44888299999991,69.483047000000056],[-98.463897999999972,69.486374000000012],[-98.549438000000009,69.501389000000131],[-98.564712999999927,69.504715000000147],[-98.577224999999999,69.508331000000055],[-98.586944999999901,69.512207000000103],[-98.601669000000015,69.520828000000051],[-98.605559999999912,69.530548000000124],[-98.604995999999971,69.535812000000078],[-98.601943999999946,69.541091999999992],[-98.592772999999909,69.552765000000022],[-98.575561999999991,69.570267000000058],[-98.566955999999948,69.576384999999959],[-98.556655999999862,69.580826000000059],[-98.531386999999938,69.584991000000059],[-98.501403999999923,69.584427000000119],[-98.485549999999989,69.583327999999995],[-98.433318999999983,69.575546000000031],[-98.385559000000001,69.566085999999927],[-98.357773000000009,69.55914300000012],[-98.350554999999929,69.554703000000131],[-98.338897999999972,69.546097000000032],[-98.334166999999979,69.54136699999998],[-98.322509999999909,69.532486000000063],[-98.310821999999973,69.523880000000133],[-98.28443900000002,69.506378000000097],[-98.248610999999983,69.484984999999995],[-98.092498999999975,69.424988000000042],[-98.078613000000018,69.422760000000039],[-98.049727999999959,69.423035000000084],[-98.036666999999852,69.424698000000035],[-98.024719000000005,69.427200000000084],[-98.00389100000001,69.435806000000014],[-97.997771999999998,69.441650000000038],[-97.99722300000002,69.446930000000066],[-98.006957999999997,69.450821000000133],[-98.071395999999993,69.468872000000147],[-98.157226999999978,69.4994200000001],[-98.166945999999996,69.503326000000015],[-98.188599000000011,69.516098],[-98.211394999999925,69.538879000000009],[-98.255843999999968,69.574707000000046],[-98.263061999999991,69.57887299999993],[-98.295837000000006,69.585266000000104],[-98.330291999999986,69.590271000000143],[-98.360549999999932,69.596649000000127],[-98.367767000000015,69.601089000000115],[-98.321670999999981,69.713608000000079],[-98.314163000000008,69.722214000000008],[-98.281951999999933,69.751663000000008],[-98.230285999999978,69.788879000000122],[-98.211120999999991,69.79942299999999],[-98.199722000000008,69.802765000000136],[-98.187209999999936,69.805251999999996],[-98.143889999999942,69.806366000000025],[-98.118057000000022,69.81053200000008],[-98.107772999999895,69.814697000000081],[-98.088608000000022,69.825272000000041],[-98.079726999999991,69.83137499999998],[-98.061661000000015,69.848877000000016],[-98.058333999999888,69.854431000000034],[-98.049164000000019,69.865814],[-98.043059999999969,69.871643000000006],[-98.034164000000033,69.878036000000009],[-98.012222000000008,69.885817999999972],[-97.999725000000012,69.888046000000088],[-97.974166999999909,69.892211999999972],[-97.945540999999992,69.893600000000106],[-97.930557000000022,69.893325999999945],[-97.913329999999974,69.891098],[-97.880279999999914,69.88499500000006],[-97.755004999999926,69.851379000000065],[-97.691101000000003,69.819992000000127],[-97.689162999999951,69.815262000000132],[-97.682219999999973,69.810806000000014],[-97.660004000000015,69.803314000000057],[-97.610000999999954,69.788589000000115],[-97.579726999999991,69.781937000000028],[-97.449158000000011,69.760269000000108],[-97.341109999999958,69.706375000000094],[-97.33944699999995,69.701385000000016],[-97.348052999999879,69.695251000000042],[-97.358611999999994,69.690810999999997],[-97.37110899999999,69.688583000000051],[-97.397781000000009,69.685532000000023]],[[-97.325012000000015,69.889160000000061],[-97.315276999999924,69.888046000000088],[-97.301665999999955,69.889709000000039],[-97.289992999999924,69.893051000000128],[-97.276947000000007,69.894440000000145],[-97.267775999999969,69.894440000000145],[-97.25,69.891373000000044],[-97.237503000000004,69.887771999999984],[-97.230559999999912,69.883331000000055],[-97.226943999999946,69.873596000000134],[-97.230559999999912,69.868042000000003],[-97.236937999999896,69.862198000000149],[-97.243880999999988,69.857483000000116],[-97.269164999999987,69.852478000000076],[-97.283889999999985,69.852768000000083],[-97.299163999999905,69.856094000000098],[-97.308883999999978,69.860260000000039],[-97.317779999999914,69.869431000000134],[-97.418334999999956,69.893600000000106],[-97.448883000000023,69.894149999999911],[-97.465835999999911,69.896378000000084],[-97.480285999999921,69.898880000000133],[-97.488892000000021,69.908035000000041],[-97.492767000000015,69.917755000000113],[-97.488602000000014,69.943863000000079],[-97.485000999999954,69.949417000000039],[-97.476105000000018,69.955551000000071],[-97.466399999999965,69.960815000000082],[-97.453612999999962,69.963043000000027],[-97.4375,69.961929000000055],[-97.350829999999974,69.949417000000039],[-97.335555999999997,69.946091000000024],[-97.328339000000028,69.941650000000095],[-97.327498999999989,69.931656000000089],[-97.346114999999998,69.917205999999965],[-97.349730999999963,69.911651999999947],[-97.351669000000015,69.901382000000012],[-97.347228999999913,69.896652000000017],[-97.337509000000011,69.892761000000121],[-97.325012000000015,69.889160000000061]],[[-100.84973099999991,69.925537000000077],[-100.86389199999991,69.924698000000092],[-100.87444299999999,69.928588999999988],[-100.87999000000002,69.933043999999995],[-100.87999000000002,69.938309000000061],[-100.85861199999994,69.977767999999969],[-100.85333300000002,69.983597000000145],[-100.84333800000002,69.98803700000002],[-100.83112299999993,69.990814000000057],[-100.81500199999994,69.989700000000084],[-100.80695300000002,69.985809000000017],[-100.80526700000001,69.980270000000019],[-100.80721999999997,69.97526600000009],[-100.80721999999997,69.969986000000006],[-100.81249999999994,69.958878000000027],[-100.83112299999993,69.935531999999967],[-100.83999599999999,69.929977000000065],[-100.84973099999991,69.925537000000077]],[[-87.091385000000002,70.150269000000094],[-87.06361400000003,70.147766000000104],[-87.051665999999955,70.141937000000098],[-87.02555799999999,70.135543999999982],[-87.020843999999954,70.131927000000019],[-87.023894999999982,70.127762000000018],[-87.021941999999967,70.121094000000028],[-87.009170999999924,70.116378999999995],[-86.994155999999975,70.113602000000071],[-86.922501000000011,70.104156000000103],[-86.905562999999972,70.103043000000071],[-86.87388599999997,70.09887700000013],[-86.856658999999922,70.097762999999986],[-86.825835999999924,70.092758000000117],[-86.798889000000031,70.087204000000099],[-86.778060999999923,70.089706000000035],[-86.761123999999938,70.093597000000102],[-86.688599000000011,70.115265000000022],[-86.670273000000009,70.118042000000116],[-86.639724999999999,70.116653000000099],[-86.611664000000019,70.111923000000104],[-86.598617999999988,70.108597000000032],[-86.586670000000026,70.104430999999977],[-86.545546999999942,70.081375000000094],[-86.549728000000016,70.07249500000006],[-86.550551999999982,70.066376000000048],[-86.536666999999909,70.062484999999981],[-86.511123999999995,70.053040000000067],[-86.505004999999983,70.048035000000027],[-86.503615999999965,70.036925999999994],[-86.505844000000025,70.028595000000053],[-86.50556899999998,70.023315000000025],[-86.502501999999993,70.020828000000108],[-86.487503000000004,70.017761000000007],[-86.47193900000002,70.015823000000069],[-86.460555999999997,70.012206999999989],[-86.45666499999993,70.007491999999957],[-86.460006999999962,70.00471500000009],[-86.468886999999995,69.999709999999993],[-86.489715999999987,69.983871000000079],[-86.502791999999999,69.980545000000063],[-86.523620999999991,69.978042999999957],[-86.542496000000028,69.977478000000133],[-86.662216000000001,69.967484000000127],[-86.714447000000007,69.966934000000094],[-86.747771999999998,69.969437000000084],[-86.76556399999987,69.969711000000018],[-86.833069000000023,69.974426000000051],[-86.864440999999999,69.978592000000106],[-86.881377999999984,69.979706000000078],[-86.89805599999994,69.982207999999957],[-86.926391999999964,69.989150999999993],[-86.938599000000011,69.993317000000047],[-86.962219000000005,70.00471500000009],[-86.985274999999945,70.01388500000013],[-87.002227999999945,70.014999000000103],[-87.016113000000018,70.010544000000095],[-87.021941999999967,70.005264000000011],[-87.029449,70.000824000000023],[-87.037215999999944,69.99664300000012],[-87.050277999999878,69.991653000000042],[-87.066665999999998,69.989150999999993],[-87.086394999999925,69.987761999999975],[-87.104172000000005,69.987761999999975],[-87.135009999999966,69.992752000000053],[-87.148055999999997,69.997482000000048],[-87.168883999999991,70.008605999999929],[-87.182769999999948,70.01388500000013],[-87.195830999999998,70.017212000000029],[-87.21362299999987,70.017487000000074],[-87.229445999999996,70.019440000000031],[-87.240828999999906,70.021378000000141],[-87.255004999999983,70.025269000000037],[-87.274444999999957,70.034987999999998],[-87.277495999999985,70.038879000000065],[-87.27694699999995,70.044983000000116],[-87.273620999999991,70.050812000000121],[-87.272507000000019,70.054703000000018],[-87.272780999999952,70.059981999999991],[-87.278335999999967,70.067490000000021],[-87.288329999999974,70.073317999999972],[-87.295837000000006,70.077484000000027],[-87.307495000000017,70.080826000000002],[-87.319457999999884,70.083328000000051],[-87.335555999999997,70.085541000000035],[-87.34973100000002,70.086104999999975],[-87.363892000000021,70.088593000000117],[-87.376937999999939,70.093322999999941],[-87.378325999999959,70.096100000000035],[-87.376099000000011,70.099426000000108],[-87.371384000000035,70.103867000000037],[-87.355834999999956,70.107208000000071],[-87.341948999999886,70.108597000000032],[-87.307495000000017,70.107208000000071],[-87.277785999999992,70.114699999999971],[-87.267226999999878,70.113312000000064],[-87.265609999999924,70.113556000000017],[-87.254729999999995,70.112198000000092],[-87.222503999999901,70.111374000000126],[-87.187774999999931,70.108322000000044],[-87.180557000000022,70.109420999999998],[-87.173049999999989,70.112198000000092],[-87.164443999999946,70.117203000000131],[-87.156112999999891,70.11914100000007],[-87.130829000000006,70.120255000000043],[-87.118332000000009,70.11914100000007],[-87.102782999999988,70.12081900000004],[-87.099730999999963,70.123596000000077],[-87.100554999999929,70.125534000000073],[-87.143065999999976,70.139435000000049],[-87.145279000000016,70.142761000000064],[-87.141388000000006,70.146378000000027],[-87.128326000000015,70.149719000000061],[-87.113891999999964,70.148880000000077],[-87.091385000000002,70.150269000000094]],[[-125.05695299999996,70.118317000000104],[-125.08500700000002,70.116333000000111],[-125.10221899999993,70.118072999999981],[-125.11971999999997,70.124954000000002],[-125.122772,70.130066000000056],[-125.12332200000003,70.13546800000006],[-125.12110899999999,70.141372999999987],[-125.11277799999999,70.14697300000006],[-125.10333300000002,70.151688000000092],[-125.08332799999999,70.159973000000093],[-125.07055700000001,70.16187999999994],[-125,70.162933000000066],[-124.97693600000002,70.167206000000078],[-124.96305799999999,70.168320000000051],[-124.95500199999998,70.164153999999996],[-124.98832700000003,70.134430000000009],[-124.99777199999994,70.129974000000061],[-125.04415899999992,70.120315999999946],[-125.05695299999996,70.118317000000104]],[[-124.67944299999994,70.161652000000117],[-124.69444299999998,70.161377000000073],[-124.73750299999995,70.174149000000114],[-124.75361599999991,70.182479999999998],[-124.75917099999998,70.186919999999986],[-124.76194799999996,70.191925000000083],[-124.75890400000003,70.196640000000116],[-124.74471999999997,70.197754000000089],[-124.55110200000001,70.208602999999925],[-124.53611799999987,70.208602999999925],[-124.51888999999994,70.206940000000031],[-124.51055899999994,70.20277399999992],[-124.50527999999997,70.198318000000029],[-124.50750700000003,70.192749000000049],[-124.53694200000001,70.18193100000002],[-124.67944299999994,70.161652000000117]],[[-112.65527299999991,70.266098],[-112.67223399999995,70.266098],[-112.69193999999999,70.267487000000017],[-112.72193900000002,70.272491000000002],[-112.74722300000002,70.278594999999996],[-112.75499699999995,70.282761000000107],[-112.76027699999992,70.287201000000096],[-112.76306199999993,70.292480000000069],[-112.76139799999993,70.298598999999967],[-112.75389100000001,70.303588999999988],[-112.73111,70.309708000000001],[-112.71611000000001,70.310531999999967],[-112.699997,70.309417999999994],[-112.6875,70.306366000000082],[-112.67971799999992,70.302475000000015],[-112.67859599999991,70.300812000000064],[-112.64334099999996,70.28137200000009],[-112.64277600000003,70.275818000000129],[-112.64472999999987,70.269714000000079],[-112.65527299999991,70.266098]],[[-112.96972700000003,70.28137200000009],[-113.00306699999999,70.281097000000102],[-113.104446,70.281936999999971],[-113.14083899999997,70.283325000000048],[-113.15834000000001,70.285262999999986],[-113.20361300000002,70.292480000000069],[-113.16972399999992,70.306931000000134],[-113.15750100000002,70.309708000000001],[-113.12888299999997,70.312485000000095],[-113.11054999999993,70.3119200000001],[-112.993607,70.299423000000104],[-112.97609699999992,70.297484999999938],[-112.96362299999998,70.294434000000138],[-112.95333900000003,70.290817000000004],[-112.94554099999999,70.286652000000004],[-112.95612299999999,70.283325000000048],[-112.96972700000003,70.28137200000009]],[[-100.765289,70.25],[-100.78083800000002,70.25],[-100.7938769999999,70.253326000000015],[-100.84166699999997,70.278320000000008],[-100.86305199999993,70.291091999999992],[-100.86833200000001,70.295532000000037],[-100.85193600000002,70.323883000000137],[-100.83889799999992,70.325546000000031],[-100.80943300000001,70.324158000000125],[-100.77639799999997,70.322495000000004],[-100.75890399999997,70.320540999999992],[-100.74804699999999,70.316940000000102],[-100.74082899999996,70.310531999999967],[-100.75890399999997,70.254990000000021],[-100.765289,70.25]],[[-116.80526699999996,70.509430000000009],[-116.78971899999993,70.507217000000026],[-116.75418100000002,70.50749200000007],[-116.63390400000003,70.493591000000094],[-116.60722399999997,70.488037000000077],[-116.59638999999993,70.484984999999995],[-116.56833599999999,70.473876999999959],[-116.57305899999989,70.467758000000117],[-116.70111099999997,70.468597000000102],[-116.71916199999993,70.470261000000107],[-116.787781,70.483597000000032],[-116.814438,70.488876000000062],[-116.82055700000001,70.493591000000094],[-116.82861300000002,70.503601000000003],[-116.82224300000001,70.508881000000031],[-116.80526699999996,70.509430000000009]],[[-116.287781,70.553314000000114],[-116.26027699999992,70.549988000000042],[-116.24333199999995,70.550261999999975],[-116.18943799999994,70.54553199999998],[-116.140556,70.538589000000002],[-116.12748699999997,70.535812000000078],[-116.13110399999999,70.532486000000006],[-116.29110699999995,70.515549000000021],[-116.32333399999993,70.513611000000083],[-116.44611399999991,70.508881000000031],[-116.46472199999999,70.509154999999964],[-116.47778299999999,70.511932000000058],[-116.495003,70.519989000000066],[-116.49582700000002,70.522765999999933],[-116.47000099999997,70.538040000000024],[-116.30304699999988,70.552199999999971],[-116.287781,70.553314000000114]],[[-116.56304899999998,70.534424000000001],[-116.57833900000003,70.533051000000057],[-116.596947,70.533324999999991],[-116.75028999999995,70.539153999999996],[-116.76363400000002,70.541931000000091],[-116.77443700000003,70.545258000000047],[-116.766953,70.548324999999977],[-116.75527999999991,70.551085999999941],[-116.72361799999987,70.556366000000025],[-116.71193699999998,70.559417999999937],[-116.68167099999999,70.561920000000043],[-116.66471899999999,70.562485000000038],[-116.64611799999994,70.562195000000031],[-116.54305999999997,70.559707999999944],[-116.52278100000001,70.558593999999971],[-116.50945300000001,70.556091000000038],[-116.50778200000002,70.550261999999975],[-116.51806599999998,70.546646000000123],[-116.56304899999998,70.534424000000001]],[[-115.92054699999989,70.54136699999998],[-115.95445299999994,70.540267999999969],[-115.99333200000001,70.541656000000103],[-116.051941,70.54553199999998],[-116.06111099999993,70.548324999999977],[-116.04250299999995,70.552199999999971],[-115.98388699999998,70.560806000000071],[-115.97222899999991,70.563599000000011],[-115.91972399999997,70.572494999999947],[-115.87917299999998,70.578598000000113],[-115.86389200000002,70.579987000000074],[-115.82501199999996,70.578323000000069],[-115.81416300000001,70.574997000000053],[-115.80803700000001,70.570541000000105],[-115.81082199999997,70.564986999999974],[-115.81916799999999,70.560806000000071],[-115.84111000000001,70.554153000000042],[-115.86638599999998,70.549423000000047],[-115.92054699999989,70.54136699999998]],[[-116.87943999999993,70.547485000000108],[-116.88945000000001,70.543869000000029],[-116.923317,70.542755000000056],[-117.03611799999993,70.546371000000136],[-117.18331899999998,70.537491000000102],[-117.20195000000001,70.53776600000009],[-117.22000099999997,70.539153999999996],[-117.27555799999993,70.550261999999975],[-117.28888699999993,70.55304000000001],[-117.29778299999998,70.556931000000077],[-117.30166600000001,70.561920000000043],[-117.29778299999998,70.571380999999974],[-117.26083399999999,70.584717000000126],[-117.25140399999992,70.587204000000042],[-117.23805199999998,70.589156999999943],[-117.21640000000002,70.591095000000109],[-117.19943199999994,70.591660000000104],[-117.16332999999997,70.588593000000003],[-116.89444700000001,70.556091000000038],[-116.88362100000001,70.552765000000136],[-116.87943999999993,70.547485000000108]],[[-128.08612099999999,70.605545000000006],[-128.10415599999999,70.595825000000104],[-128.1201779999999,70.597214000000122],[-128.11444099999994,70.591934000000037],[-128.11721799999992,70.580551000000014],[-128.12387100000001,70.57388300000008],[-128.13275099999993,70.569153000000028],[-128.34054599999996,70.539153999999996],[-128.34167499999995,70.542205999999908],[-128.252228,70.646378000000084],[-128.24581899999998,70.653046000000074],[-128.23416099999986,70.656097000000102],[-128.21639999999996,70.654709000000025],[-128.18832399999997,70.648604999999975],[-128.11498999999998,70.628036000000009],[-128.10360699999995,70.624419999999986],[-128.09472700000003,70.62052900000009],[-128.0883179999999,70.616089000000045],[-128.08499099999995,70.611099000000024],[-128.08612099999999,70.605545000000006]],[[-100.23082699999992,70.451660000000061],[-100.24333199999995,70.449142000000109],[-100.26000999999985,70.449996999999996],[-100.27610799999997,70.453049000000078],[-100.47250400000001,70.496367999999961],[-100.49916100000002,70.503326000000129],[-100.63054699999998,70.543320000000108],[-100.662781,70.554703000000075],[-100.67083700000001,70.558868000000075],[-100.67639199999996,70.563309000000004],[-100.68138099999993,70.573044000000095],[-100.68138099999993,70.583602999999982],[-100.67832900000002,70.594147000000021],[-100.66443599999991,70.637771999999984],[-100.65194699999995,70.669708000000071],[-100.51194800000002,70.676376000000062],[-100.49500299999988,70.675262000000089],[-100.48000300000001,70.673309000000131],[-100.46916199999998,70.669434000000138],[-100.46112099999999,70.659987999999998],[-100.451683,70.651932000000102],[-100.44360399999999,70.64776599999999],[-100.34722899999991,70.608032000000094],[-100.33640300000002,70.604431000000034],[-100.31945799999994,70.603317000000061],[-100.21833799999996,70.564422999999977],[-100.22444200000001,70.456649999999968],[-100.23082699999992,70.451660000000061]],[[-103.17777999999993,70.622482000000048],[-103.19360399999994,70.622208000000114],[-103.24833699999994,70.622757000000036],[-103.26640299999991,70.624146000000053],[-103.27500900000001,70.628311000000053],[-103.28111299999995,70.632751000000042],[-103.281387,70.638046000000088],[-103.26834099999996,70.666382000000056],[-103.22582999999986,70.676376000000062],[-103.21000700000002,70.676651000000049],[-103.19415299999997,70.673035000000027],[-103.173607,70.6336060000001],[-103.17304999999999,70.628586000000041],[-103.17777999999993,70.622482000000048]],[[-103.35082999999992,70.687195000000088],[-103.36416599999995,70.685256999999979],[-103.38110399999988,70.685806000000127],[-103.39499699999999,70.689148000000046],[-103.42887899999994,70.69999700000011],[-103.43776700000001,70.703872999999987],[-103.44638099999997,70.708037999999988],[-103.45249899999993,70.712494000000106],[-103.45889299999999,70.722214000000008],[-103.46278399999994,70.732208000000014],[-103.45694700000001,70.737198000000035],[-103.44360399999999,70.739150999999993],[-103.42777999999998,70.739426000000037],[-103.39917000000003,70.737198000000035],[-103.36361699999992,70.727767999999969],[-103.34111000000001,70.72026100000005],[-103.33500699999996,70.716094999999996],[-103.33444199999997,70.710815000000082],[-103.33860800000002,70.699417000000096],[-103.34333799999996,70.693588000000091],[-103.35082999999992,70.687195000000088]],[[-71.471664000000033,71.012772000000041],[-71.428878999999995,71.012206999999989],[-71.389175000000023,71.013885000000073],[-71.371108999999933,71.011931999999945],[-71.357497999999964,71.009720000000073],[-71.344727000000034,71.005554000000018],[-71.339171999999962,70.998322000000087],[-71.339721999999995,70.99136400000009],[-71.343063000000029,70.984985000000052],[-71.386672999999917,70.922485000000108],[-71.392226999999991,70.916656000000103],[-71.402495999999871,70.911926000000051],[-71.415557999999976,70.90776100000005],[-71.433060000000012,70.904709000000139],[-71.451110999999912,70.903046000000018],[-71.474441999999954,70.902481000000023],[-71.495543999999938,70.90277100000003],[-71.654448999999943,70.890822999999955],[-71.733063000000016,70.874984999999924],[-71.933884000000035,70.833328000000051],[-71.937774999999931,70.824706999999989],[-71.946380999999974,70.820831000000112],[-71.955565999999976,70.818329000000006],[-71.991668999999945,70.814697000000081],[-72.038605000000018,70.811371000000008],[-72.081954999999994,70.809708000000114],[-72.096664000000033,70.809708000000114],[-72.112212999999997,70.811371000000008],[-72.198607999999979,70.882750999999985],[-72.223327999999981,70.916931000000091],[-72.225280999999939,70.924423000000047],[-72.226395000000025,70.930542000000059],[-72.213897999999915,70.934708000000001],[-72.202224999999999,70.93664600000011],[-72.166655999999989,70.938034000000016],[-72.148894999999925,70.936371000000065],[-72.136672999999973,70.933594000000028],[-72.133620999999948,70.931656000000032],[-72.145554000000004,70.926085999999998],[-72.149170000000026,70.921097000000032],[-72.136123999999995,70.916931000000091],[-72.117492999999911,70.917205999999965],[-72.097778000000005,70.919708000000014],[-72.078339000000028,70.923599000000081],[-72.057769999999948,70.933043999999995],[-72.044723999999917,70.944426999999962],[-72.039443999999946,70.950272000000098],[-72.033324999999934,70.963042999999971],[-72.026672000000019,70.98275799999999],[-72.019729999999868,71.034424000000058],[-72.021392999999989,71.041930999999977],[-72.008620999999948,71.049713000000111],[-71.916107000000011,71.06442300000009],[-71.884170999999924,71.068878000000097],[-71.851669000000015,71.072220000000016],[-71.831680000000006,71.071106000000043],[-71.794723999999974,71.053040000000067],[-71.730834999999956,71.045532000000037],[-71.644454999999994,71.034987999999998],[-71.546950999999979,71.018600000000106],[-71.471664000000033,71.012772000000041]],[[-96.563323999999966,71.292205999999965],[-96.546950999999979,71.289154000000053],[-96.535552999999993,71.28276100000005],[-96.472504000000015,71.232208000000071],[-96.470275999999956,71.226089000000059],[-96.480835000000013,71.208878000000141],[-96.487503000000004,71.203598000000056],[-96.561110999999983,71.208328000000108],[-96.578063999999983,71.210541000000035],[-96.628601000000003,71.220260999999937],[-96.638610999999912,71.226089000000059],[-96.641678000000013,71.231368999999972],[-96.642776000000026,71.234421000000054],[-96.652495999999985,71.287201000000096],[-96.649170000000026,71.29304500000012],[-96.610549999999989,71.290543000000014],[-96.581116000000009,71.293594000000041],[-96.563323999999966,71.292205999999965]],[[-98.895554000000004,71.27777100000003],[-98.90834000000001,71.273040999999978],[-98.97444200000001,71.284714000000008],[-98.989715999999987,71.290543000000014],[-99.000290000000007,71.297211000000004],[-99.00556899999998,71.301926000000037],[-99.008621000000005,71.308029000000147],[-99.008895999999936,71.313873000000001],[-99.00306699999993,71.319443000000092],[-98.963622999999927,71.352203000000088],[-98.955840999999964,71.352203000000088],[-98.930283000000031,71.342209000000082],[-98.923324999999977,71.337769000000094],[-98.914443999999946,71.331665000000044],[-98.895554000000004,71.27777100000003]],[[-73.120543999999995,71.479705999999965],[-73.129439999999931,71.450821000000076],[-73.077498999999932,71.466385000000002],[-73.043335000000013,71.47886699999998],[-73.035552999999936,71.48414600000001],[-73.016402999999968,71.500000000000114],[-73.005844000000025,71.511658000000125],[-72.998046999999985,71.517211999999915],[-72.985275000000001,71.521378000000027],[-72.97222899999997,71.521378000000027],[-72.962508999999955,71.51998900000001],[-72.934157999999968,71.509155000000135],[-72.827498999999989,71.454987000000017],[-72.820281999999963,71.449707000000103],[-72.817504999999983,71.444977000000108],[-72.823333999999988,71.439697000000024],[-72.831954999999994,71.435806000000127],[-72.849730999999963,71.4327550000001],[-72.872497999999894,71.43081699999999],[-72.921660999999972,71.428314],[-72.992767000000015,71.419433999999967],[-73.010009999999966,71.415543000000071],[-73.022780999999952,71.411101999999971],[-73.031112999999948,71.406646999999964],[-73.028885000000002,71.399155000000064],[-73.007507000000032,71.352203000000088],[-72.978881999999942,71.329712000000086],[-72.974166999999909,71.324997000000053],[-72.97193900000002,71.317490000000134],[-72.973617999999874,71.313309000000061],[-72.983886999999982,71.308594000000028],[-72.996657999999911,71.304153000000099],[-73.025283999999999,71.297485000000108],[-73.060546999999929,71.294708000000014],[-73.089446999999893,71.313873000000001],[-73.163329999999917,71.33248900000001],[-73.198607999999922,71.336380000000077],[-73.244995000000017,71.348877000000073],[-73.265288999999939,71.357483000000002],[-73.272506999999962,71.36192299999999],[-73.275008999999955,71.365814000000057],[-73.276397999999972,71.379150000000038],[-73.265015000000005,71.396378000000141],[-73.255004999999926,71.408874999999966],[-73.254729999999995,71.415268000000083],[-73.293609999999887,71.454711999999972],[-73.301392000000021,71.459717000000012],[-73.320556999999894,71.469711000000075],[-73.347504000000015,71.477768000000026],[-73.362502999999947,71.481094000000041],[-73.374160999999901,71.485809000000074],[-73.379990000000021,71.519714000000022],[-73.377212999999983,71.522766000000104],[-73.366942999999992,71.527480999999966],[-73.189986999999917,71.565536000000066],[-73.176940999999999,71.566376000000105],[-73.147507000000019,71.564423000000147],[-73.132216999999912,71.561371000000065],[-73.090285999999935,71.546371000000079],[-73.081116000000009,71.542206000000078],[-73.073623999999938,71.536926000000051],[-73.074722000000008,71.531372000000033],[-73.11332699999997,71.485809000000074],[-73.120543999999995,71.479705999999965]],[[-72.760833999999875,71.531937000000084],[-72.786391999999978,71.530273000000022],[-72.830841000000021,71.531096999999988],[-72.848891999999921,71.532211000000018],[-72.867492999999911,71.533875000000023],[-72.949996999999996,71.547211000000118],[-72.982497999999907,71.553589000000102],[-73.008895999999879,71.56109600000002],[-73.020554000000004,71.565811000000053],[-73.030562999999916,71.571655000000078],[-73.035277999999948,71.575546000000145],[-73.039992999999981,71.579987000000074],[-73.037506000000008,71.587203999999986],[-73.034164000000033,71.592209000000025],[-72.968062999999972,71.636658000000011],[-72.948607999999979,71.644714000000079],[-72.924712999999997,71.649429000000112],[-72.806655999999919,71.659149000000014],[-72.781113000000005,71.660812000000135],[-72.745269999999948,71.659987999999942],[-72.726669000000015,71.658325000000048],[-72.709166999999979,71.655258000000117],[-72.695830999999941,71.651093000000117],[-72.684433000000013,71.642761000000121],[-72.662215999999944,71.604431000000034],[-72.660552999999936,71.598038000000031],[-72.671111999999994,71.585815000000025],[-72.682495000000017,71.574706999999989],[-72.701110999999912,71.557479999999998],[-72.712783999999942,71.547211000000118],[-72.718886999999995,71.542755000000056],[-72.727492999999981,71.538589000000115],[-72.742492999999968,71.534149000000127],[-72.760833999999875,71.531937000000084]],[[-73.370270000000005,71.554428000000087],[-73.394454999999937,71.554428000000087],[-73.406661999999983,71.556366000000025],[-73.418335000000013,71.56109600000002],[-73.42860399999995,71.566940000000045],[-73.436934999999949,71.573318000000029],[-73.450561999999991,71.584152000000074],[-73.449721999999952,71.58998100000008],[-73.448043999999925,71.594146999999964],[-73.441939999999988,71.598877000000016],[-73.388610999999912,71.634155000000021],[-73.348342999999943,71.658325000000048],[-73.276108000000022,71.691924999999912],[-73.243332000000009,71.696639999999945],[-73.213332999999977,71.698593000000074],[-73.209166999999979,71.698868000000118],[-73.190552000000025,71.697204999999997],[-73.167496000000028,71.692200000000128],[-73.155562999999972,71.687195000000088],[-73.148894999999982,71.679977000000065],[-73.149993999999992,71.674423000000104],[-73.170546999999942,71.668319999999937],[-73.221114999999998,71.660262999999986],[-73.249434999999949,71.652481000000023],[-73.262511999999958,71.648041000000035],[-73.282776000000013,71.637771999999984],[-73.303604000000007,71.621918000000051],[-73.320281999999963,71.605545000000006],[-73.325012000000015,71.599152000000061],[-73.331679999999949,71.588042999999971],[-73.338607999999965,71.571105999999929],[-73.339721999999938,71.565262000000132],[-73.352492999999981,71.557479999999998],[-73.370270000000005,71.554428000000087]],[[-96.958892999999932,71.704437000000098],[-96.99888599999997,71.701096000000064],[-97.036391999999921,71.701385000000016],[-97.050277999999935,71.704162999999994],[-97.049727999999902,71.709991000000116],[-97.040282999999988,71.72026100000005],[-97.02416999999997,71.731093999999985],[-96.99888599999997,71.741363999999919],[-96.991668999999945,71.743042000000059],[-96.990829000000019,71.743866000000025],[-96.96945199999999,71.74859600000002],[-96.963897999999972,71.752212999999983],[-96.924163999999962,71.755554000000018],[-96.886397999999986,71.755264000000011],[-96.866942999999992,71.753601000000117],[-96.850554999999872,71.749419999999986],[-96.84445199999999,71.744141000000013],[-96.851104999999905,71.738875999999948],[-96.86860699999994,71.728592000000106],[-96.881377999999927,71.723312000000078],[-96.896956999999929,71.718323000000112],[-96.915832999999964,71.713608000000079],[-96.958892999999932,71.704437000000098]],[[-95.339995999999928,71.731369000000029],[-95.39805599999994,71.729431000000091],[-95.43582200000003,71.729980000000012],[-95.471114999999941,71.733597000000145],[-95.483062999999902,71.736923000000047],[-95.48832699999997,71.740814000000114],[-95.488051999999868,71.745529000000147],[-95.450286999999946,71.818877999999927],[-95.44027699999998,71.824158000000011],[-95.420836999999892,71.828873000000044],[-95.384170999999981,71.836104999999975],[-95.348891999999978,71.840546000000074],[-95.328613000000018,71.842208999999968],[-95.301666000000012,71.844147000000135],[-95.286666999999966,71.843048000000124],[-95.275832999999977,71.84027100000003],[-95.265838999999971,71.836655000000007],[-95.261672999999973,71.833328000000051],[-95.259734999999921,71.827484000000027],[-95.310546999999929,71.737198000000035],[-95.324721999999952,71.732758000000047],[-95.339995999999928,71.731369000000029]],[[-134.49554399999994,68.75221300000004],[-134.48803699999991,68.736649],[-134.48803699999991,68.731094000000098],[-134.48306299999996,68.720535000000041],[-134.47387700000002,68.711379999999963],[-134.46472199999994,68.707489000000066],[-134.44638099999997,68.700271999999984],[-134.40112299999993,68.687759000000085],[-134.37387100000001,68.682480000000112],[-134.33999599999999,68.67886400000009],[-134.30804399999994,68.678040000000124],[-134.28277600000001,68.681366000000139],[-134.24636799999996,68.687484999999981],[-134.23071299999998,68.692841000000101],[-134.22692899999998,68.694138000000123],[-134.22332800000004,68.699706999999933],[-134.26058999999987,68.733535999999958],[-134.26251200000002,68.736374000000126],[-134.28750599999995,68.753601000000003],[-134.30835000000002,68.766097999999943],[-134.32638499999996,68.773605000000089],[-134.42306500000001,68.831664999999987],[-134.54168700000002,68.919708000000071],[-134.558044,68.933043999999995],[-134.614441,68.983321999999987],[-134.62387099999995,68.992752000000053],[-134.62887599999999,69.003052000000139],[-134.62914999999992,69.008880999999974],[-134.62469499999992,69.015548999999965],[-134.56222499999996,69.082764000000111],[-134.55499299999997,69.08776899999998],[-134.53750600000001,69.09387200000009],[-134.49194299999999,69.104155999999989],[-134.46362299999998,69.106094000000098],[-134.44805899999989,69.106094000000098],[-134.36303699999996,69.102203000000031],[-134.34887700000002,69.103043000000071],[-134.33889799999992,69.106369000000086],[-134.22747800000002,69.174988000000099],[-134.22305299999999,69.181656000000032],[-134.22082499999993,69.188034000000016],[-134.22137499999997,69.216385000000116],[-134.21694899999989,69.223038000000088],[-134.162781,69.254715000000033],[-134.15389999999996,69.258880999999917],[-134.142517,69.261383000000023],[-134.12832599999996,69.262206999999989],[-134.06915299999997,69.262771999999984],[-134.05471799999998,69.263610999999969],[-134.02917500000001,69.266936999999984],[-133.92861899999991,69.282211000000075],[-133.90557899999988,69.287490999999989],[-133.89529400000004,69.290817000000004],[-133.88668799999999,69.294983000000116],[-133.87914999999998,69.299987999999985],[-133.87332199999997,69.30581699999999],[-133.86859100000004,69.312484999999924],[-133.86886599999997,69.318329000000119],[-133.87332199999997,69.323043999999982],[-133.87582399999997,69.328322999999955],[-133.86972000000003,69.33415199999996],[-133.67028799999997,69.386658000000068],[-133.65863000000002,69.389160000000004],[-133.55056799999994,69.405823000000055],[-133.40777600000001,69.414703000000088],[-133.37222299999991,69.412201000000039],[-133.35583499999996,69.409988000000055],[-133.32806400000004,69.404709000000082],[-133.30972299999996,69.402771000000143],[-133.23443599999996,69.397217000000126],[-133.21749899999992,69.39637799999997],[-133.20584099999991,69.398880000000077],[-133.073059,69.434982000000048],[-132.99941999999999,69.481934000000138],[-132.966095,69.511657999999954],[-132.95220899999998,69.563309000000061],[-132.95193499999999,69.569153000000028],[-132.95666499999993,69.57388300000008],[-132.96581999999995,69.57748400000014],[-132.98638900000003,69.590271000000143],[-132.988586,69.595260999999994],[-132.98361199999994,69.602203000000088],[-132.97747800000002,69.608032000000094],[-132.92251599999997,69.642212000000029],[-132.904449,69.650542999999971],[-132.89388999999994,69.65387000000004],[-132.86471599999999,69.658325000000104],[-132.82110599999999,69.660538000000031],[-132.78778099999994,69.659714000000065],[-132.66229199999998,69.651206999999999],[-132.628784,69.648048000000074],[-132.62028499999997,69.646378000000141],[-132.61479199999991,69.644043000000011],[-132.606628,69.639046000000121],[-132.55279499999995,69.631362999999965],[-132.53527800000001,69.630264000000011],[-132.41751099999993,69.635544000000039],[-132.39389,69.64027400000009],[-132.372772,69.646942000000081],[-132.34527600000001,69.659424000000058],[-132.33248900000001,69.671097000000088],[-132.32748399999997,69.677765000000079],[-132.333618,69.682480000000112],[-132.441101,69.702484000000027],[-132.45748900000001,69.704711999999972],[-132.46777299999991,69.701385000000016],[-132.51779199999999,69.68331900000004],[-132.54823299999998,69.685310000000129],[-132.55523700000003,69.683823000000018],[-132.57455400000003,69.683983000000126],[-132.582718,69.685654],[-132.586884,69.688148000000126],[-132.58673099999993,69.691649999999981],[-132.54833999999994,69.735809000000074],[-132.54055799999998,69.740814000000114],[-132.52749600000004,69.742477000000065],[-132.47305299999999,69.747756999999922],[-132.39974999999998,69.751663000000008],[-132.28918499999992,69.724991000000102],[-132.21304299999997,69.690810999999997],[-132.19888300000002,69.688034000000073],[-132.16305499999999,69.685256999999979],[-132.14697299999995,69.685256999999979],[-132.12304700000004,69.713608000000079],[-132.11663799999991,69.719436999999914],[-132.10720800000001,69.723602000000085],[-132.08331299999992,69.728591999999992],[-131.95443699999998,69.75471500000009],[-131.87469499999992,69.763884999999959],[-131.85861199999999,69.763611000000026],[-131.84527600000001,69.765273999999977],[-131.8347169999999,69.768599999999992],[-131.76556400000004,69.794707999999957],[-131.75891100000001,69.800536999999963],[-131.75836200000003,69.806366000000025],[-131.76028400000001,69.811646000000053],[-131.7647399999999,69.816376000000105],[-131.76666299999994,69.821655000000078],[-131.76000999999997,69.827484000000084],[-131.75058000000001,69.83137499999998],[-131.64501999999999,69.864990000000034],[-131.62359600000002,69.871368000000018],[-131.44778400000001,69.918594000000041],[-131.42639199999991,69.947479000000101],[-131.42111199999994,69.954162999999994],[-131.41027799999995,69.957214000000022],[-131.34887700000002,69.95248400000014],[-131.26916499999993,69.937759000000028],[-131.24609399999991,69.931091000000038],[-131.237213,69.927199999999971],[-131.23055999999991,69.923035000000141],[-131.20916699999998,69.899155000000007],[-131.20333899999997,69.889160000000061],[-131.20138499999996,69.883881000000088],[-131.20193499999999,69.878036000000009],[-131.2049869999999,69.871918000000051],[-131.21054099999998,69.865265000000079],[-131.21722399999987,69.859421000000054],[-131.22164899999996,69.854155999999989],[-131.22222899999991,69.848328000000038],[-131.220551,69.84304800000001],[-131.21194499999996,69.833603000000096],[-131.20526100000001,69.829437000000041],[-131.19638099999997,69.825546000000145],[-131.18499799999995,69.824158000000068],[-131.08056599999998,69.88499500000006],[-131.07501199999996,69.891663000000051],[-131.03140299999995,69.949417000000039],[-131.01028399999996,69.98692299999999],[-131.01278699999995,70.023315000000025],[-131.01947000000001,70.027771000000087],[-130.93029799999999,70.083054000000118],[-130.89224200000001,70.099152000000004],[-130.74832199999997,70.081940000000145],[-130.65612799999991,70.108597000000032],[-130.554169,70.165267999999969],[-130.54305999999991,70.168320000000051],[-130.48721299999994,70.173309000000017],[-130.47222899999997,70.173874000000069],[-130.46771200000001,70.170089999999959],[-130.47271699999993,70.167099000000121],[-130.48388699999998,70.164992999999981],[-130.51141399999995,70.162201000000039],[-130.52224699999994,70.158875000000023],[-130.54724099999999,70.127472000000012],[-130.54806499999995,70.121643000000006],[-130.54638699999992,70.116378999999995],[-130.54223599999995,70.111648999999943],[-130.53555299999999,70.107483000000059],[-130.52416999999997,70.103867000000037],[-130.5102839999999,70.101089000000002],[-130.49527,70.101654000000053],[-130.48416099999992,70.104705999999965],[-130.43237299999998,70.125870000000134],[-130.40722700000003,70.140533000000119],[-130.35360699999995,70.132202000000007],[-130.33084099999996,70.110809000000074],[-130.32250999999997,70.101379000000009],[-130.18472299999996,70.053589000000045],[-130.16861,70.053314],[-129.97555499999993,70.069442999999978],[-129.96304299999997,70.071655000000021],[-129.92611699999992,70.078598],[-129.89083900000003,70.092758000000117],[-129.86444099999994,70.126923000000033],[-129.84609999999986,70.154984000000127],[-129.8324889999999,70.195525999999916],[-129.79000899999994,70.219986000000119],[-129.73138399999999,70.253052000000082],[-129.69778400000001,70.262496999999996],[-129.68667600000003,70.265549000000078],[-129.67306499999995,70.266936999999984],[-129.64724699999999,70.251663000000065],[-129.60916099999992,70.213042999999971],[-129.45916699999998,70.147491000000116],[-129.40472399999999,70.123031999999967],[-129.40335099999999,70.11775200000011],[-129.40527299999997,70.106369000000086],[-129.40640300000001,70.10054000000008],[-129.4100039999999,70.094436999999971],[-129.433899,70.068054000000132],[-129.49749800000001,70.020538000000101],[-129.57360799999998,69.997757000000092],[-129.59555099999994,69.991363999999919],[-129.88946499999992,69.917205999999965],[-129.99304199999989,69.892487000000017],[-130.22805800000003,69.840546000000131],[-130.49581899999998,69.78166200000004],[-130.55999800000001,69.737198000000092],[-130.56140099999999,69.725815000000068],[-130.56472799999995,69.719711000000018],[-130.57028200000002,69.713043000000084],[-130.57833900000003,69.708038000000045],[-130.62136799999996,69.695251000000042],[-130.64697299999989,69.691360000000145],[-130.70416299999994,69.688309000000118],[-130.75750700000003,69.682480000000112],[-130.78030399999994,69.676926000000094],[-130.78973400000001,69.672760000000039],[-130.83639500000004,69.6336060000001],[-130.83944699999995,69.627472000000068],[-130.84081999999995,69.616089000000102],[-130.83667000000003,69.611099000000024],[-130.83749399999999,69.605545000000063],[-130.84414699999996,69.599716000000001],[-130.91915899999998,69.56721500000009],[-130.92861899999997,69.563309000000061],[-130.94473299999999,69.565536000000122],[-131.02667199999996,69.593048000000067],[-131.03973399999995,69.601653999999996],[-131.04168699999997,69.606934000000024],[-131.04083300000002,69.612761999999975],[-131.05306999999999,69.637206999999989],[-131.16332999999992,69.627762000000132],[-131.18859900000001,69.623871000000065],[-131.32861299999996,69.579987000000131],[-131.40750099999997,69.586655000000064],[-131.58694500000001,69.567490000000134],[-131.69168100000002,69.551650999999993],[-131.70498699999996,69.560256999999922],[-131.71389799999992,69.563873000000001],[-131.72778299999999,69.566940000000102],[-131.74108899999993,69.567490000000134],[-131.75585899999999,69.566940000000102],[-131.99722299999991,69.53137200000009],[-132.00640899999996,69.527205999999978],[-132.03890999999999,69.508331000000055],[-132.04666099999992,69.503326000000015],[-132.0799869999999,69.480819999999994],[-132.14169300000003,69.412766000000033],[-132.13305699999995,69.403320000000065],[-132.12164299999995,69.399994000000049],[-132.09750399999996,69.396057000000098],[-132.08526599999999,69.390823000000069],[-132.08084099999996,69.386108000000036],[-132.07888800000001,69.3808140000001],[-132.08166499999999,69.374695000000031],[-132.09472700000003,69.362762000000032],[-132.11663799999991,69.357208000000014],[-132.32916299999999,69.31442300000009],[-132.52417000000003,69.277771000000087],[-132.53195199999999,69.280547999999953],[-132.54556300000002,69.283325000000048],[-132.56167599999998,69.285812000000135],[-132.57998699999996,69.287490999999989],[-132.59222399999993,69.287200999999982],[-132.70611600000001,69.26887499999998],[-132.71777299999997,69.266388000000063],[-132.739441,69.260817999999972],[-132.76028399999996,69.254166000000112],[-132.76779199999999,69.249146000000053],[-132.90722699999998,69.1244200000001],[-132.90722699999998,69.118866000000082],[-132.90527299999997,69.042755],[-132.94610599999999,69.037491000000045],[-133.05084199999999,69.054703000000018],[-133.10638399999993,69.050537000000134],[-133.1719359999999,69.043320000000051],[-133.18331899999998,69.040817000000061],[-133.19332900000001,69.037491000000045],[-133.20083599999987,69.032485999999949],[-133.20556599999998,69.025818000000015],[-133.21499600000004,69.006653000000028],[-133.21664399999997,69.001937999999996],[-133.21444700000001,68.99664300000012],[-133.209991,68.991928000000087],[-133.20333900000003,68.987761999999975],[-133.19860799999998,68.983046999999942],[-133.19888300000002,68.977203000000145],[-133.21304299999991,68.938034000000073],[-133.22610499999996,68.913605000000132],[-133.23361199999999,68.908600000000092],[-133.31332399999985,68.871918000000051],[-133.32333399999993,68.868590999999924],[-133.33471699999996,68.866089000000045],[-133.34887699999996,68.865265000000079],[-133.36331200000001,68.866652999999985],[-133.37692300000003,68.869140999999956],[-133.38583399999999,68.873032000000023],[-133.39944500000001,68.881362999999965],[-133.40167199999991,68.886658000000011],[-133.39529400000004,68.89027400000009],[-133.37969999999996,68.89027400000009],[-133.36694299999994,68.891936999999984],[-133.359711,68.896942000000024],[-133.35360700000001,68.90277100000003],[-133.35803199999992,68.907486000000063],[-133.36944599999993,68.910538000000031],[-133.38275099999998,68.911102000000142],[-133.39556899999997,68.909424000000058],[-133.46112099999999,68.892761000000121],[-133.466095,68.888321000000133],[-133.484711,68.850266000000033],[-133.493042,68.826659999999947],[-133.49081399999994,68.821655000000078],[-133.48416099999997,68.81164600000011],[-133.47082499999999,68.797485000000108],[-133.46389799999992,68.793320000000108],[-133.4549869999999,68.789703000000145],[-133.40557899999999,68.772217000000012],[-133.32138099999992,68.746368000000132],[-133.16418499999992,68.707214000000079],[-133.08999599999999,68.694977000000108],[-133.05416899999994,68.691360000000145],[-133.03750599999995,68.690536000000009],[-133.02334599999995,68.691360000000145],[-133.01083399999987,68.693038999999999],[-132.98803699999996,68.697754000000032],[-132.95861799999994,68.69859299999996],[-132.94305399999996,68.696365000000014],[-132.91833500000001,68.690262000000075],[-132.92056299999996,68.695526000000029],[-132.9336239999999,68.709717000000069],[-132.94250499999998,68.713318000000129],[-132.95471199999997,68.71527100000003],[-133.00723299999999,68.719711000000075],[-133.02252199999998,68.719711000000075],[-133.03527800000001,68.718048000000124],[-133.04583699999995,68.711379999999963],[-133.11248799999998,68.714996000000042],[-133.142517,68.718597000000102],[-133.15249599999993,68.720825000000048],[-133.25500499999998,68.758606000000043],[-133.25945999999999,68.763321000000076],[-133.26611299999996,68.778869999999984],[-133.26141399999995,68.785537999999974],[-133.24999999999994,68.788040000000024],[-133.23416099999992,68.785812000000078],[-133.225281,68.782211000000018],[-133.22082499999999,68.777480999999966],[-133.22082499999999,68.771652000000131],[-133.21664399999997,68.766937000000098],[-133.20306399999998,68.764160000000004],[-133.16168200000004,68.75749200000007],[-133.14752199999998,68.758330999999998],[-133.13891599999994,68.76249700000011],[-133.1397399999999,68.766937000000098],[-133.21139499999998,68.790817000000118],[-133.23498499999999,68.795821999999987],[-133.250854,68.798035000000141],[-133.28178399999996,68.794426000000101],[-133.28863499999989,68.793097999999986],[-133.30145300000004,68.789429000000041],[-133.32556199999999,68.787491000000045],[-133.33554099999992,68.789703000000145],[-133.34445199999993,68.793594000000041],[-133.35665899999992,68.801085999999941],[-133.35888699999998,68.806366000000025],[-133.35415599999993,68.832214000000135],[-133.332764,68.843872000000147],[-133.27722199999988,68.856934000000024],[-133.26583900000003,68.859421000000054],[-133.23776199999998,68.861099000000024],[-133.22192399999994,68.858871000000022],[-133.18804899999986,68.849152000000061],[-133.16778599999998,68.836655000000064],[-133.15917999999999,68.827209000000096],[-133.15222199999999,68.823044000000095],[-133.12191799999994,68.805817000000047],[-133.10833700000001,68.80304000000001],[-133.09167500000001,68.802199999999914],[-133.06222500000001,68.802765000000136],[-133.00527999999997,68.815262000000132],[-132.95803799999993,68.835541000000092],[-132.962219,68.846099999999922],[-132.9619449999999,68.85165400000011],[-132.95193499999999,68.854979999999955],[-132.93667599999998,68.854979999999955],[-132.86749299999997,68.846099999999922],[-132.85611,68.842758000000003],[-132.78594999999996,68.818428000000097],[-132.75363199999998,68.802765000000136],[-132.49194299999994,68.801085999999941],[-132.48055999999991,68.803589000000102],[-132.47027600000001,68.806931000000077],[-132.40557899999999,68.842758000000003],[-132.40029900000002,68.847214000000122],[-132.39529400000004,68.853867000000093],[-132.39279199999999,68.859985000000052],[-132.396973,68.864700000000084],[-132.49249299999997,68.90637200000009],[-132.50363200000004,68.909714000000065],[-132.55334499999998,68.916091999999992],[-132.56750499999998,68.915268000000026],[-132.57638499999996,68.911102000000142],[-132.574432,68.906097000000102],[-132.56777999999991,68.901657000000057],[-132.54055799999998,68.896103000000096],[-132.55557299999992,68.878311000000053],[-132.66528299999993,68.841934000000037],[-132.67806999999993,68.840271000000087],[-132.69360399999994,68.840546000000131],[-132.76229899999998,68.857491000000095],[-132.77094999999997,68.858147000000031],[-132.77778599999999,68.860153000000082],[-132.78027299999991,68.862983999999983],[-132.833618,68.917755000000113],[-132.85998499999988,68.989150999999993],[-132.868042,69.021378000000141],[-132.87191799999999,69.056641000000013],[-132.86944600000004,69.062759000000085],[-132.86553999999995,69.068329000000006],[-132.81527699999998,69.08638000000002],[-132.80526699999996,69.089432000000102],[-132.77111799999994,69.085541000000035],[-132.75418100000002,69.084717000000069],[-132.68917799999991,69.082489000000123],[-132.67501800000002,69.083328000000051],[-132.66332999999997,69.085815000000139],[-132.54083300000002,69.135268999999994],[-132.46081500000003,69.124695000000088],[-132.46472199999999,69.119141000000127],[-132.46749899999998,69.107208000000071],[-132.45916699999992,69.108032000000037],[-132.42861900000003,69.11775200000011],[-132.40777599999996,69.1244200000001],[-132.38500999999997,69.139160000000061],[-132.37887599999999,69.145264000000054],[-132.36886600000003,69.158600000000035],[-132.36138899999997,69.171371000000136],[-132.343323,69.203323000000069],[-132.34249899999992,69.220260999999994],[-132.33972199999994,69.22665399999994],[-132.33056599999998,69.230820000000051],[-132.32055699999995,69.233871000000079],[-132.30612199999996,69.234711000000118],[-132.22360199999997,69.213608000000022],[-132.2225039999999,69.141662999999994],[-132.16805999999997,69.213882000000126],[-132.11694299999999,69.242203000000075],[-132.05804399999994,69.242203000000075],[-131.99600199999998,69.251632999999913],[-131.96389799999997,69.256942999999978],[-131.87527499999999,69.279709000000025],[-131.86499000000003,69.283051000000114],[-131.8052669999999,69.316375999999991],[-131.79751599999986,69.321381000000088],[-131.79110700000001,69.327208999999982],[-131.71444699999995,69.397766000000104],[-131.72555499999993,69.401093000000003],[-131.73416099999997,69.400542999999971],[-131.80667099999999,69.39137299999993],[-131.950287,69.395827999999938],[-131.96499600000004,69.397217000000126],[-131.97277800000001,69.400269000000037],[-131.97000099999997,69.406372000000033],[-131.65222199999994,69.471924000000058],[-131.63919099999998,69.473602000000142],[-131.60748299999995,69.473312000000135],[-131.59136999999993,69.470825000000048],[-131.45889299999999,69.449141999999938],[-131.44528200000002,69.446365000000071],[-131.432953,69.437194999999974],[-131.42910799999993,69.434700000000134],[-131.43160999999998,69.431365999999969],[-131.43710299999992,69.429031000000066],[-131.45193499999999,69.420532000000094],[-131.46221899999995,69.417206000000078],[-131.47164900000001,69.413039999999967],[-131.47943099999998,69.408035000000098],[-131.48611500000004,69.402206000000092],[-131.53472899999997,69.333327999999995],[-131.52584799999994,69.329436999999928],[-131.49941999999999,69.332489000000066],[-131.42083700000001,69.361649000000114],[-131.41278099999994,69.366653000000099],[-131.40750099999997,69.373306000000071],[-131.38989300000003,69.404159999999933],[-131.377228,69.427483000000052],[-131.32193000000001,69.49331699999999],[-131.27166699999992,69.501099000000124],[-131.25723299999999,69.501663000000065],[-131.24581899999998,69.49832200000003],[-131.23330699999991,69.48414600000001],[-131.22387700000002,69.463608000000136],[-131.22027599999996,69.453323000000012],[-131.21664399999992,69.442748999999992],[-131.21276899999992,69.422202999999968],[-131.21093799999989,69.4125370000001],[-131.21026599999999,69.406044000000065],[-131.21304299999997,69.387497000000053],[-131.22360200000003,69.384430000000123],[-131.23330699999991,69.384720000000129],[-131.24526999999995,69.382202000000007],[-131.26641799999993,69.375809000000061],[-131.31777999999997,69.358871000000136],[-131.39529399999998,69.318603999999993],[-131.40307599999994,69.313873000000058],[-131.415009,69.301376000000062],[-131.41445899999997,69.296936000000017],[-131.33526599999993,69.316666000000055],[-131.32470699999999,69.31999200000007],[-131.19332899999995,69.365264999999965],[-131.18859900000001,69.368317000000104],[-131.16650400000003,69.404930000000093],[-131.16223099999996,69.490540000000067],[-131.16418499999997,69.495529000000033],[-131.23123199999992,69.543892000000028],[-131.25385999999997,69.571846000000107],[-131.22546399999999,69.580719000000101],[-131.20681799999994,69.55720500000001],[-131.15046699999994,69.518600000000049],[-131.13006599999994,69.516388000000006],[-131.11053499999997,69.485329000000036],[-131.130157,69.429375000000107],[-131.14851399999992,69.403534000000036],[-131.1458439999999,69.374695000000031],[-131.13583399999999,69.359985000000108],[-131.12832599999996,69.361923000000047],[-131.10122699999999,69.393921000000091],[-131.08525099999991,69.440514000000007],[-131.06085199999995,69.470688000000109],[-131.06617699999993,69.491096000000084],[-131.06394999999998,69.512389999999982],[-131.08924899999994,69.531914000000143],[-131.10920699999997,69.543449000000123],[-131.127838,69.554543000000024],[-131.14781199999993,69.561195000000112],[-131.16599999999988,69.567856000000006],[-131.18832399999991,69.574707000000046],[-131.19473300000004,69.57887299999993],[-131.19665499999991,69.584152000000131],[-131.19610599999999,69.589980999999966],[-131.19055199999997,69.596649000000127],[-131.183899,69.602478000000133],[-131.17471299999994,69.606369000000029],[-131.13833599999998,69.614150999999936],[-131.12359600000002,69.614700000000084],[-131.10748299999989,69.612488000000042],[-131.09359699999999,69.609421000000111],[-131.087219,69.605255],[-131.08306900000002,69.600539999999967],[-131.04577599999999,69.524429000000055],[-131.02999899999998,69.485809000000131],[-131.02780200000001,69.463882000000069],[-131.03390499999995,69.429153000000042],[-131.03695700000003,69.423035000000084],[-131.07028200000002,69.367477000000065],[-131.10803199999992,69.33526599999999],[-131.11331200000001,69.328598],[-131.11639400000001,69.32249500000006],[-131.10888699999998,69.321655000000021],[-131.09973100000002,69.325821000000076],[-131.05084199999993,69.354431000000091],[-131.02667199999996,69.383865000000128],[-130.98999000000003,69.449141999999938],[-130.99121099999996,69.50104500000009],[-130.9922029999999,69.504203999999959],[-130.99026500000002,69.539429000000041],[-130.98083499999996,69.543594000000041],[-130.96887200000003,69.545821999999987],[-130.952789,69.543320000000108],[-130.94638099999992,69.539154000000053],[-130.94222999999994,69.534148999999957],[-130.94055200000003,69.52915999999999],[-130.9244379999999,69.448593000000017],[-130.93971299999998,69.421486000000016],[-130.94154400000002,69.417816000000073],[-130.94555699999995,69.414314000000047],[-130.95039399999996,69.411324000000093],[-130.98580900000002,69.383040999999935],[-131.02583299999998,69.347878000000037],[-131.02984600000002,69.344368000000088],[-131.03317300000003,69.340377999999987],[-131.03199799999999,69.337212000000022],[-131.03668200000004,69.310532000000023],[-131.02780200000001,69.306641000000127],[-131.01696800000002,69.307480000000055],[-131.01419099999993,69.313873000000058],[-131.01333599999998,69.319442999999922],[-131.010559,69.325546000000088],[-131.00500499999998,69.332214000000022],[-130.99832200000003,69.338043000000027],[-130.95693999999997,69.371917999999994],[-130.93194599999998,69.38348400000001],[-130.92710899999992,69.386490000000038],[-130.91844200000003,69.386818000000005],[-130.91177400000004,69.384818999999993],[-130.90928599999995,69.381980999999996],[-130.89611799999994,69.380539000000056],[-130.89889500000004,69.352768000000026],[-130.90249600000004,69.340820000000122],[-130.90640300000001,69.328872999999987],[-130.91427599999992,69.318313999999987],[-130.93194599999998,69.304977000000122],[-130.93972799999995,69.299987999999985],[-130.96362299999987,69.285262999999986],[-131.00057999999996,69.256653000000142],[-131.024719,69.209717000000126],[-131.01806599999992,69.141936999999928],[-131.01419099999993,69.136932000000058],[-130.99832200000003,69.134720000000016],[-130.9372249999999,69.134430000000009],[-130.92861899999997,69.145264000000054],[-130.93112199999996,69.222488000000055],[-130.93276999999995,69.227767999999912],[-130.93917799999991,69.232208000000128],[-130.9513849999999,69.246368000000075],[-130.950287,69.257766999999944],[-130.94723499999998,69.264160000000118],[-130.94168100000002,69.270538000000045],[-130.93499800000001,69.276382000000069],[-130.82110599999993,69.374695000000031],[-130.81304899999998,69.379700000000128],[-130.77139299999999,69.398880000000077],[-130.76055899999994,69.402206000000092],[-130.73165899999998,69.403320000000065],[-130.71472199999999,69.402206000000092],[-130.70028699999995,69.402771000000143],[-130.689728,69.406096999999988],[-130.66027800000001,69.42942800000003],[-130.65472399999993,69.43609600000002],[-130.64529400000004,69.454712000000029],[-130.65280200000001,69.457763999999941],[-130.667236,69.457214000000079],[-130.74777199999994,69.449141999999938],[-130.71499599999993,69.462203999999986],[-130.52502400000003,69.543594000000041],[-130.50723300000004,69.552474999999959],[-130.47860700000001,69.574707000000046],[-130.392517,69.645828000000108],[-130.385559,69.651657000000114],[-130.36248799999998,69.673874000000012],[-130.36608899999987,69.686371000000008],[-130.28112799999991,69.700271999999984],[-130.03308099999998,69.731934000000081],[-129.691956,69.784424000000115],[-129.67251599999992,69.792480000000012],[-129.65307599999994,69.800536999999963],[-129.624146,69.812485000000038],[-129.60220300000003,69.818877999999984],[-129.41332999999992,69.838042999999971],[-129.31555199999997,69.84664900000007],[-129.24276699999984,69.849990999999989],[-129.17999299999997,69.849152000000004],[-129.14862099999993,69.849990999999989],[-129.09942599999994,69.858871000000022],[-129.05889899999988,69.873871000000008],[-129.04196199999996,69.883606000000043],[-129.02722199999999,69.895264000000111],[-129.01501499999995,69.908325000000048],[-129.00058000000001,69.933043999999995],[-128.98831199999995,69.946091000000024],[-128.97360200000003,69.95748900000001],[-128.96527100000003,69.962494000000049],[-128.95526100000001,69.966385000000116],[-128.94415300000003,69.969437000000084],[-128.93194600000004,69.971649000000127],[-128.90084799999994,69.971924000000115],[-128.88723799999997,69.968872000000033],[-128.86471599999999,69.961655000000121],[-128.85610999999989,69.957764000000054],[-128.85470599999996,69.954711999999915],[-128.93444799999992,69.844146999999964],[-128.94665499999991,69.841934000000037],[-128.96417199999996,69.843322999999998],[-129.03805499999999,69.851929000000098],[-129.08248899999995,69.850540000000137],[-129.10971099999989,69.847763000000043],[-129.134186,69.843322999999998],[-129.14529399999998,69.840271000000087],[-129.15612799999997,69.836928999999998],[-129.163635,69.83137499999998],[-129.169464,69.824706999999989],[-129.16027799999995,69.715819999999951],[-129.15390000000002,69.700271999999984],[-129.14999399999994,69.695526000000029],[-129.14138800000001,69.691649999999981],[-129.13027999999991,69.688034000000073],[-128.97747800000002,69.674698000000149],[-128.96304299999997,69.675262000000089],[-128.92501799999997,69.68081699999999],[-128.78613300000001,69.760818000000086],[-128.64001500000001,69.84304800000001],[-128.54473899999999,69.885268999999994],[-128.44195599999989,69.921920999999998],[-128.32415800000001,69.948318000000086],[-128.31054700000004,69.958327999999995],[-128.30862400000001,70.008041000000105],[-128.31222499999996,70.012772000000041],[-128.349152,70.03915400000011],[-128.35638399999999,70.048874000000012],[-128.36138900000003,70.058868000000018],[-128.36972000000003,70.095825000000048],[-128.36831699999988,70.101654000000053],[-128.36193800000001,70.108322000000044],[-128.35333299999996,70.113037000000077],[-128.34304799999995,70.116928000000144],[-128.31054700000004,70.126923000000033],[-128.24414099999996,70.146378000000027],[-128.10916099999997,70.182204999999954],[-128.09414700000002,70.182479999999998],[-128.05667099999994,70.178039999999953],[-128.01055899999994,70.178314000000114],[-127.99472000000003,70.179428000000087],[-127.96833799999996,70.182754999999986],[-127.84861799999999,70.208878000000141],[-127.61501299999992,70.228867000000093],[-127.58500699999996,70.229431000000034],[-127.54998799999998,70.22665400000011],[-127.51500699999985,70.22164900000007],[-127.51750199999998,70.225540000000137],[-127.55082700000003,70.236374000000012],[-127.578056,70.242751999999996],[-127.61305199999987,70.247757000000036],[-127.71665999999999,70.259720000000073],[-127.73166700000002,70.261382999999967],[-127.79194599999994,70.25999500000006],[-127.85833699999995,70.263046000000088],[-127.87581599999987,70.264435000000105],[-128.02835099999993,70.28637700000013],[-128.03695700000003,70.290543000000071],[-128.06664999999987,70.307205000000067],[-128.07611099999991,70.343597000000045],[-128.07843000000003,70.346436000000097],[-128.07144199999988,70.348267000000078],[-128.0616149999999,70.347923000000037],[-128.05343599999998,70.346092000000056],[-128.04661599999986,70.343933000000106],[-128.02711499999998,70.340766999999971],[-127.98889200000002,70.345824999999991],[-127.97250399999996,70.34526100000005],[-127.96000699999996,70.347488000000112],[-127.94860799999998,70.350540000000024],[-127.94082600000002,70.356094000000041],[-127.90194699999995,70.393326000000059],[-127.91555800000003,70.396652000000074],[-127.93195300000002,70.396942000000081],[-127.95417799999996,70.39387499999998],[-127.97693600000002,70.387772000000041],[-127.987213,70.383880999999974],[-128.02166699999998,70.374695000000031],[-128.06500199999994,70.377312000000018],[-128.13833599999992,70.37598400000013],[-128.15183999999994,70.380310000000122],[-128.15933199999995,70.385483000000022],[-128.19665499999996,70.391937000000041],[-128.19888300000002,70.40248100000008],[-128.19055200000003,70.436646000000053],[-128.17749000000003,70.460815000000139],[-128.16055299999999,70.491364000000033],[-128.15249600000004,70.503601000000003],[-128.13583399999993,70.523041000000148],[-128.006958,70.588593000000003],[-127.99665799999997,70.590546000000131],[-127.97138999999999,70.583878000000141],[-127.90360999999996,70.562485000000038],[-127.83556399999998,70.540817000000118],[-127.68028300000003,70.486098999999967],[-127.51583900000003,70.426086000000055],[-127.42859599999991,70.393326000000059],[-127.27471899999995,70.326096000000064],[-127.24889399999995,70.314148000000046],[-127.18831599999999,70.280548000000124],[-127.173607,70.272217000000069],[-127.125,70.237198000000149],[-127.07640100000003,70.196365000000071],[-127.05499299999997,70.178039999999953],[-127.03443899999996,70.148880000000077],[-126.89334099999996,70.008880999999974],[-126.87888299999997,70.000548999999978],[-126.81276700000001,69.910537999999974],[-126.81194299999993,69.905258000000117],[-126.80526700000001,69.895538000000045],[-126.74388099999999,69.813873000000115],[-126.71472199999999,69.775269000000094],[-126.70584099999996,69.766098000000113],[-126.69999699999994,69.76138300000008],[-126.6808319999999,69.748031999999967],[-126.67250100000001,69.743866000000082],[-126.62053699999996,69.719986000000063],[-126.60166899999996,69.712479000000144],[-126.45944199999997,69.644149999999968],[-126.29055799999998,69.558594000000028],[-126.26777599999997,69.540817000000118],[-126.26722699999993,69.535537999999974],[-126.25583599999999,69.526657000000057],[-126.11221299999994,69.469436999999971],[-126.08860800000002,69.462493999999992],[-126.0497279999999,69.45277400000009],[-126.03666699999997,69.449706999999989],[-125.98889199999996,69.430542000000003],[-125.96806299999997,69.423035000000084],[-125.95749699999999,69.419434000000024],[-125.91055299999999,69.405548000000067],[-125.88474300000001,69.399155000000064],[-125.83972199999999,69.389160000000004],[-125.55110200000001,69.33718900000008],[-125.42639200000002,69.312180000000126],[-125.41528299999987,69.313019000000054],[-125.37249800000001,69.33580000000012],[-125.36554699999999,69.342468000000054],[-125.39083900000003,69.370513999999957],[-125.40110800000002,69.374130000000036],[-125.37748699999997,69.396087999999963],[-125.21000699999996,69.381912],[-125.16528299999999,69.381638000000066],[-125.14167800000001,69.38638300000008],[-125.13249200000001,69.391098000000113],[-125.12554899999998,69.397491000000059],[-125.11193800000001,69.415817000000061],[-125.08944700000001,69.449706999999989],[-125.11277799999999,69.464157000000114],[-125.12304699999993,69.468032999999991],[-125.462784,69.452469000000065],[-125.53056300000003,69.435242000000073],[-125.609444,69.415253000000121],[-125.62249799999995,69.418593999999985],[-125.61805700000002,69.42442299999999],[-125.57805599999995,69.471649000000014],[-125.48832700000003,69.50749200000007],[-125.47721899999993,69.510268999999994],[-125.46472199999988,69.512207000000103],[-125.449997,69.51249700000011],[-125.30695300000002,69.499984999999981],[-125.14723200000003,69.485519000000124],[-125.13166799999993,69.484694999999988],[-125.11805699999996,69.485793999999942],[-125.12082700000002,69.490798999999981],[-125.13137799999993,69.49441500000006],[-125.18554699999987,69.507202000000063],[-125.21640000000002,69.513031000000069],[-125.25499699999995,69.523026000000016],[-125.265556,69.526917000000083],[-125.41000399999996,69.628036000000066],[-125.41306299999997,69.633041000000105],[-125.41361999999992,69.638321000000133],[-125.41166699999991,69.64387499999998],[-125.37805200000003,69.678589000000045],[-125.36554699999999,69.690262000000075],[-125.35527000000002,69.694138000000123],[-125.079453,69.742752000000053],[-125.06555200000003,69.743591000000038],[-125.04972800000002,69.743042000000116],[-125.016953,69.740524000000107],[-125,69.738190000000088],[-124.98581699999994,69.734711000000004],[-124.97528099999994,69.730820000000108],[-124.96749899999998,69.726929000000041],[-124.93554699999999,69.678314],[-124.92500299999995,69.644714000000135],[-124.90638699999994,69.65387000000004],[-124.88166799999999,69.670532000000037],[-124.82195300000001,69.714995999999985],[-124.82972699999999,69.719147000000078],[-124.86165599999993,69.735809000000074],[-124.88555899999994,69.748031999999967],[-124.89750700000002,69.750549000000035],[-125.01418299999995,69.750534000000016],[-125.22805799999998,69.759140000000116],[-125.24137899999999,69.760254000000089],[-125.25890399999992,69.784103000000016],[-125.27639799999997,69.808243000000061],[-125.225281,69.839676000000054],[-125.20638999999994,69.849120999999968],[-125.19611399999997,69.853026999999997],[-125.18443299999996,69.855804000000091],[-125.16750300000001,69.85414099999997],[-125.16194199999995,69.849700999999982],[-125.15722700000003,69.823563000000036],[-125.15666199999998,69.818283000000122],[-125.17083700000001,69.805496000000119],[-125.170547,69.800216999999975],[-125.165009,69.795502000000113],[-125.15055799999999,69.793564000000003],[-125.05666399999996,69.795242000000087],[-125.03222700000003,69.817200000000071],[-125.00945300000001,69.845520000000079],[-124.94748700000002,69.910537999999974],[-124.94027699999987,69.916930999999977],[-124.89334100000002,69.940262000000018],[-124.76444999999995,69.970824999999991],[-124.79527299999995,70.008880999999974],[-124.82695000000001,70.012496999999996],[-124.88694799999996,70.011932000000002],[-124.99027999999998,70.00610400000005],[-125.025284,69.998000999999988],[-125.04695100000004,69.989990000000091],[-125.08640299999996,69.968535999999915],[-125.10722399999997,69.953522000000078],[-125.10759699999994,69.947975000000099],[-125.11138899999997,69.941940000000102],[-125.12389400000001,69.939956999999993],[-125.19082600000002,69.932433999999944],[-125.20667299999991,69.933228000000099],[-125.21721599999995,69.936905000000081],[-125.21777299999997,69.942337000000066],[-125.20221699999991,69.998581000000058],[-125.19748700000002,70.004501000000118],[-125.18831599999999,70.009033000000102],[-125.016953,70.076218000000097],[-125,70.079987000000017],[-124.98972300000003,70.078598],[-124.98166700000002,70.074432000000115],[-124.97556299999991,70.064697000000024],[-124.97528099999994,70.059418000000051],[-124.98194899999999,70.047760000000039],[-124.98665599999998,70.041655999999989],[-124.99610899999999,70.036925999999994],[-124.99768799999998,70.036925999999994],[-125,70.036925999999994],[-125.03999299999992,70.029068000000109],[-125.04804999999999,70.023041000000092],[-125.04527300000001,70.017990000000111],[-125.03443900000002,70.013931000000014],[-125.01999699999993,70.011993000000075],[-124.90139799999997,70.021378000000141],[-124.86332699999997,70.027206000000092],[-124.85527000000002,70.03054800000001],[-124.86972000000003,70.032760999999994],[-124.93916299999995,70.02748100000008],[-124.95500199999998,70.028320000000065],[-124.95694699999996,70.032211000000132],[-124.93916299999995,70.042480000000126],[-124.92859599999997,70.046097000000088],[-124.81416300000001,70.061645999999996],[-124.71444700000001,70.069153000000142],[-124.67527799999993,70.071930000000066],[-124.64527900000002,70.071930000000066],[-124.63474300000001,70.068329000000006],[-124.63417099999992,70.057754999999929],[-124.60333300000002,70.019714000000135],[-124.59777799999995,70.01527400000009],[-124.58473199999992,70.011932000000002],[-124.56861899999996,70.011108000000036],[-124.55583199999995,70.013046000000145],[-124.45754999999997,70.035706000000118],[-124.45172100000002,70.038376000000028],[-124.44672400000002,70.0417020000001],[-124.423607,70.056366000000139],[-124.44138299999997,70.076096000000121],[-124.449432,70.08027600000014],[-124.506958,70.100266000000147],[-124.51999699999999,70.103867000000037],[-124.54888899999997,70.109984999999938],[-124.58556399999992,70.115265000000022],[-124.59944199999995,70.114151000000049],[-124.62053700000001,70.106644000000074],[-124.63221699999997,70.103867000000037],[-124.68138099999999,70.094436999999971],[-124.71972699999998,70.088593000000117],[-124.735817,70.089432000000102],[-124.73889200000002,70.094436999999971],[-124.75195299999996,70.116378999999995],[-124.75250199999999,70.121643000000006],[-124.74388099999999,70.127197000000137],[-124.734444,70.131927000000019],[-124.70472699999993,70.14498900000001],[-124.69415299999997,70.148605000000089],[-124.68028299999997,70.149719000000061],[-124.43611099999998,70.15109300000006],[-124.39138800000001,70.134155000000135],[-124.35861199999988,70.068603999999993],[-124.36945299999996,70.034987999999998],[-124.37193300000001,70.029434000000037],[-124.38394199999993,70.017761000000007],[-124.41776999999996,69.98942599999998],[-124.42610199999996,69.983871000000079],[-124.45944199999991,69.956375000000037],[-124.42971799999992,69.849425999999937],[-124.44249000000002,69.832763999999997],[-124.45722999999998,69.819716999999969],[-124.47972099999998,69.803589000000102],[-124.50167799999991,69.784424000000115],[-124.50361599999997,69.730820000000108],[-124.5005569999999,69.725815000000068],[-124.49526999999995,69.72137500000008],[-124.487503,69.717209000000139],[-124.45916699999998,69.710815000000082],[-124.36138900000003,69.701096000000121],[-124.29499800000002,69.695251000000042],[-124.28111299999995,69.696091000000081],[-124.26862299999993,69.69802900000002],[-124.2433319999999,69.714705999999978],[-124.23388699999998,69.719147000000078],[-124.21305799999993,69.726654000000053],[-124.20140099999998,69.72943099999992],[-124.1875,69.73054500000012],[-124.06973299999987,69.723602000000085],[-124.04083300000002,69.701385000000016],[-124.05526700000001,69.670532000000037],[-124.21193699999998,69.586380000000077],[-124.24054699999994,69.550262000000032],[-124.24999999999994,69.54553199999998],[-124.28028899999998,69.533600000000035],[-124.33444199999997,69.516936999999984],[-124.37777699999992,69.496933000000013],[-124.39527899999996,69.486923000000104],[-124.51888999999994,69.404159999999933],[-124.51390099999998,69.399428999999998],[-124.48000300000001,69.378036000000066],[-124.47222899999991,69.37414600000011],[-124.44666299999994,69.367203000000131],[-124.32584399999996,69.351929000000041],[-124.26363399999997,69.348602000000085],[-124.21888699999994,69.347762999999929],[-124.16194200000001,69.349152000000117],[-124.12026999999995,69.351379000000009],[-124.09528399999999,69.354980000000069],[-124.01640299999997,69.379150000000095],[-123.962219,69.383040999999935],[-123.83138999999994,69.38888500000013],[-123.81696299999999,69.38888500000013],[-123.73055999999997,69.377472000000125],[-123.702789,69.371094000000028],[-123.69776899999988,69.366378999999995],[-123.69748699999997,69.361099000000081],[-123.69248999999996,69.356644000000074],[-123.67999299999991,69.353317000000118],[-123.66639700000002,69.354156000000103],[-123.502792,69.377197000000137],[-123.47778299999993,69.381088000000034],[-123.46611000000001,69.383881000000031],[-123.41915899999998,69.404434000000037],[-123.40750100000002,69.416092000000106],[-123.43276999999995,69.423035000000084],[-123.44027699999998,69.427200000000084],[-123.45084399999996,69.446930000000066],[-123.45084399999996,69.452209000000039],[-123.44833399999993,69.457763999999941],[-123.44332900000001,69.463882000000069],[-123.43611099999998,69.470261000000107],[-123.42859599999991,69.476379000000065],[-123.39998599999996,69.490265000000079],[-123.36527999999998,69.49832200000003],[-123.33999599999999,69.502213000000097],[-123.30110200000001,69.506653000000085],[-123.27306399999998,69.507767000000115],[-123.26139799999999,69.504990000000021],[-123.26287799999994,69.500267000000008],[-123.25723299999999,69.496094000000085],[-123.19275699999997,69.490814],[-123.17999299999991,69.492477000000122],[-123.16861,69.4952550000001],[-123.16332999999992,69.501389000000131],[-123.13166799999999,69.559708000000001],[-123.12666300000001,69.571105999999986],[-123.09638999999999,69.670532000000037],[-123.09612299999998,69.686371000000008],[-123.10637700000001,69.743042000000116],[-123.10888699999998,69.747756999999922],[-123.11665299999993,69.75221300000004],[-123.10527000000002,69.77915999999999],[-123.01583900000003,69.818329000000062],[-122.97083999999995,69.830826000000002],[-122.95916699999992,69.833603000000096],[-122.94332900000001,69.832763999999997],[-122.90499899999998,69.822220000000129],[-122.876938,69.810257000000092],[-122.85388199999994,69.803040000000124],[-122.82584400000002,69.796371000000079],[-122.80803699999996,69.793593999999985],[-122.79332699999992,69.793593999999985],[-122.779449,69.794707999999957],[-122.76666299999999,69.796371000000079],[-122.754997,69.799149000000057],[-122.74610899999999,69.80442800000003],[-122.66443599999997,69.818054000000018],[-122.61554699999999,69.812195000000031],[-122.58833300000003,69.807479999999998],[-122.47778299999999,69.802765000000136],[-122.45805399999995,69.802475000000129],[-122.24333200000001,69.802200000000084],[-122.12777699999992,69.802475000000129],[-122.06220999999999,69.813309000000004],[-122.04415899999998,69.813599000000011],[-121.89639299999999,69.805542000000059],[-121.71916199999993,69.79582199999993],[-121.68388400000003,69.793593999999985],[-121.44304699999998,69.765549000000021],[-121.41639700000002,69.760818000000086],[-121.38054699999992,69.75221300000004],[-121.33332799999994,69.740814000000114],[-121.28611799999999,69.729156000000103],[-121.18305999999995,69.702484000000027],[-121.12027,69.6827550000001],[-121.08667000000003,69.673598999999967],[-121.03555299999999,69.663315000000125],[-121.00890400000003,69.658325000000104],[-120.93415800000002,69.648604999999975],[-120.88110399999994,69.638885000000073],[-120.82556199999999,69.62359600000002],[-120.79638699999992,69.613036999999963],[-120.760559,69.598328000000095],[-120.73999000000003,69.585266000000104],[-120.73528299999992,69.580276000000026],[-120.72860700000001,69.575821000000019],[-120.70111099999997,69.558594000000028],[-120.67859599999991,69.546097000000032],[-120.61609599999997,69.520264000000054],[-120.39334100000002,69.439697000000081],[-120.27528399999994,69.404159999999933],[-120.23166700000002,69.391662999999937],[-119.98222399999986,69.344711000000018],[-119.93499800000001,69.339705999999978],[-119.91776999999996,69.338318000000072],[-119.63527699999997,69.315810999999997],[-119.46140300000002,69.303314],[-119.33500700000002,69.301926000000094],[-119.31582599999996,69.301086000000055],[-119.23000300000001,69.294434000000138],[-118.94082600000002,69.259430000000066],[-118.85555999999997,69.252487000000087],[-118.84056099999992,69.250548999999978],[-118.79998799999993,69.243317000000047],[-118.69360399999999,69.223602000000028],[-118.65527299999997,69.215820000000065],[-118.64472999999998,69.212494000000049],[-118.63639799999993,69.20887799999997],[-118.58168000000001,69.180267000000072],[-118.55248999999998,69.163605000000075],[-118.53999299999998,69.154984000000127],[-118.502228,69.134720000000016],[-118.48554999999999,69.12692300000009],[-118.45777900000002,69.117477000000122],[-118.432503,69.112198000000092],[-118.18611099999998,69.063873000000115],[-118.08167999999995,69.031371999999976],[-118.03555299999999,69.019714000000135],[-118.010559,69.014434999999992],[-117.87053700000001,68.985535000000141],[-117.83693700000003,68.982483000000002],[-117.74221799999998,68.978043000000014],[-117.63390400000003,68.973602000000085],[-117.59612300000003,68.971649000000127],[-117.5625,68.968597000000045],[-117.41583299999996,68.953598],[-117.26917300000002,68.915268000000026],[-117.19110099999995,68.893874999999923],[-117.15387699999997,68.885544000000039],[-117.13667299999997,68.885544000000039],[-116.978882,68.899993999999992],[-116.96639999999996,68.902206000000035],[-116.96056399999992,68.907211000000075],[-116.93907899999994,68.911003000000107],[-116.88667299999992,68.90887500000008],[-116.74445299999996,68.880538999999999],[-116.515289,68.858032000000094],[-116.50029000000001,68.857208000000128],[-116.43611099999998,68.858597000000088],[-116.42054699999994,68.859146000000067],[-116.41111799999999,68.862761999999918],[-116.40666199999998,68.868590999999924],[-116.40943899999996,68.879974000000118],[-116.39862099999999,68.882751000000042],[-116.38137799999998,68.882477000000108],[-116.36472300000003,68.880813999999987],[-116.34028599999994,68.875259000000085],[-116.28555299999999,68.859711000000118],[-116.22721899999993,68.839157000000114],[-116.22138999999999,68.834427000000119],[-116.21362299999998,68.830551000000014],[-116.12304699999993,68.818329000000062],[-116.10637700000001,68.816666000000112],[-115.99388099999999,68.806641000000013],[-115.96000699999996,68.804703000000075],[-115.94915800000001,68.807479999999998],[-115.94138299999997,68.811920000000043],[-115.94471699999997,68.816940000000045],[-115.95249899999993,68.820831000000112],[-116.12193299999996,68.872481999999991],[-116.31639099999995,68.94747899999993],[-116.32417299999992,68.951660000000004],[-116.33000199999992,68.956100000000049],[-116.325287,68.961929000000055],[-116.31610099999995,68.965546000000018],[-116.30526699999996,68.968597000000045],[-116.26139799999987,68.979980000000069],[-116.239441,68.985535000000141],[-116.20500199999987,68.984985000000108],[-116.19027699999998,68.982758000000047],[-116.068893,68.960541000000148],[-116.00750700000003,68.946365000000128],[-115.96833799999996,68.938582999999994],[-115.88417099999998,68.924698000000092],[-115.86749299999991,68.922759999999982],[-115.77806099999987,68.936371000000122],[-115.76695299999994,68.939148000000046],[-115.77500900000001,68.943039000000113],[-115.80943299999996,68.952208999999982],[-115.83332799999999,68.992477000000008],[-115.59306300000003,68.971649000000127],[-115.44638099999992,68.937759000000028],[-115.06471299999993,68.867476999999951],[-115.05055199999993,68.868866000000139],[-115.03500400000001,68.869140999999956],[-115.01640299999997,68.868042000000003],[-114.98999000000003,68.862761999999918],[-114.97805800000003,68.859146000000067],[-114.82167099999998,68.809707999999944],[-114.79194599999994,68.799423000000047],[-114.77916699999992,68.77915999999999],[-114.77055399999995,68.769440000000088],[-114.74916100000002,68.751389000000074],[-114.729446,68.744431000000134],[-114.71528599999999,68.742203000000131],[-114.69666299999994,68.740814],[-114.66555799999998,68.741653000000099],[-114.57833899999997,68.728043000000071],[-114.54250300000001,68.719436999999971],[-114.44833399999999,68.689697000000024],[-114.44055200000003,68.685805999999957],[-114.46028100000001,68.670532000000094],[-114.46528599999999,68.664428999999927],[-114.46221899999995,68.659424000000058],[-114.45667300000002,68.654709000000025],[-114.40471600000001,68.614990000000148],[-114.39499699999993,68.611374000000069],[-114.30444299999988,68.586929000000055],[-114.23361199999994,68.569443000000092],[-114.12165799999997,68.517487000000017],[-114.10665899999992,68.509430000000066],[-114.08889799999997,68.496368000000018],[-114.07055699999995,68.477478000000076],[-114.064438,68.467209000000025],[-114.06054699999993,68.456650000000025],[-114.01112399999994,68.250275000000045],[-114.01390100000003,68.244979999999998],[-114.02333099999998,68.24136400000009],[-114.03582799999998,68.23942599999998],[-114.28806299999997,68.228866999999923],[-114.32000700000003,68.229156000000046],[-114.33805799999993,68.230545000000063],[-114.35166900000002,68.233597000000145],[-114.37053700000001,68.240540000000124],[-114.37805199999997,68.24443100000002],[-114.38305700000001,68.248871000000065],[-114.390556,68.253052000000139],[-114.41166699999997,68.259430000000066],[-114.42555199999998,68.261932000000002],[-114.44167299999987,68.263610999999969],[-114.47361799999987,68.26388500000013],[-114.70249899999999,68.250275000000045],[-114.75527999999997,68.189697000000137],[-114.76471699999996,68.186096000000077],[-114.861107,68.153594999999996],[-114.87193300000001,68.151093000000117],[-114.89639299999999,68.146942000000024],[-114.92971799999992,68.14776599999999],[-114.97749299999992,68.153319999999951],[-115.00750700000003,68.157211000000018],[-115.076683,68.168869000000086],[-115.17054699999994,68.180542000000116],[-115.22501399999993,68.184142999999949],[-115.23721299999988,68.18220500000001],[-115.24194299999999,68.176376000000005],[-115.24388099999993,68.041367000000093],[-115.24054699999994,68.036377000000073],[-115.23528299999998,68.03166200000004],[-115.220551,68.023880000000077],[-115.204453,68.021927000000119],[-115.17138699999998,68.021102999999982],[-115.15638699999994,68.021652000000131],[-115.12526699999995,68.020263999999997],[-115.11389200000002,68.017487000000131],[-115.11054999999999,68.012207000000046],[-115.11665299999999,68.007217000000026],[-115.12581599999999,68.003601000000117],[-115.20472699999993,67.978043000000014],[-115.216949,67.976089000000002],[-115.34221599999995,67.958037999999988],[-115.50334199999986,67.934418000000051],[-115.52749599999999,67.930267000000129],[-115.53639199999998,67.926651000000049],[-115.5425029999999,67.92164600000001],[-115.53694200000001,67.905257999999947],[-115.53388999999993,67.899993999999992],[-115.52834299999995,67.895538000000045],[-115.521118,67.891663000000108],[-115.50723299999993,67.889435000000105],[-115.281387,67.866379000000109],[-115.27610800000002,67.861649000000057],[-115.20028699999995,67.821930000000123],[-115.19082599999996,67.818329000000062],[-115.11361699999998,67.798599000000081],[-115.1036069999999,67.796646000000123],[-115.02887699999985,67.786652000000117],[-115.01251200000002,67.78637700000013],[-114.99916099999996,67.787491000000102],[-114.93611099999998,67.79553199999998],[-114.88667299999997,67.802764999999965],[-114.84916699999991,67.807755000000043],[-114.80999800000001,67.812195000000031],[-114.78307299999989,67.814423000000033],[-114.75334199999992,67.814986999999974],[-114.73693799999995,67.814697000000137],[-114.718887,67.813309000000061],[-114.70749699999999,67.810531999999967],[-114.6866609999999,67.804153000000099],[-114.67722299999997,67.800812000000064],[-114.65527299999997,67.788879000000009],[-114.64499699999999,67.779709000000139],[-114.637787,67.775543000000027],[-114.29778299999992,67.718597000000102],[-114.28362300000003,67.717484000000013],[-114.27139299999999,67.719436999999971],[-114.25029000000001,67.724700999999982],[-114.24109599999991,67.728317000000004],[-114.22000099999997,67.733871000000022],[-114.19583099999994,67.737762000000089],[-114.1808319999999,67.738037000000077],[-114.14835399999993,67.736923000000104],[-114.11472300000003,67.733871000000022],[-113.99694799999992,67.723038000000031],[-113.98332199999999,67.720535000000041],[-113.94943199999994,67.711655000000007],[-113.89250199999992,67.696930000000066],[-113.84584000000001,67.691359999999975],[-113.76862299999999,67.691086000000041],[-113.70889299999999,67.691925000000026],[-113.55082699999997,67.698029000000076],[-113.25583599999999,67.704436999999984],[-113.24082899999996,67.704436999999984],[-113.20694700000001,67.702484000000084],[-113.17804699999988,67.698029000000076],[-113.15556300000003,67.692200000000014],[-113.11916399999996,67.678040000000124],[-113.10777300000001,67.674988000000042],[-113.06777999999997,67.667480000000012],[-113.04998799999993,67.666092000000106],[-112.965012,67.669708000000128],[-112.73972300000003,67.669434000000024],[-112.3958439999999,67.679153000000042],[-112.370003,67.68193100000002],[-112.348343,67.687194999999974],[-112.34056099999998,67.691359999999975],[-112.33361799999989,67.696365000000014],[-112.18331899999993,67.727768000000083],[-111.912781,67.754166000000055],[-111.88305700000001,67.754439999999988],[-111.79972799999996,67.75082400000008],[-111.66000399999996,67.733322000000044],[-111.57277699999992,67.744431000000134],[-111.45861799999989,67.763046000000088],[-111.37082699999991,67.781097000000045],[-111.32250999999991,67.806931000000077],[-111.31276699999995,67.810531999999967],[-111.29083299999996,67.815536000000066],[-111.200287,67.834152000000131],[-111.17582699999991,67.837494000000049],[-111.15943900000002,67.836655000000064],[-111.14835399999998,67.833602999999982],[-111.14388999999994,67.82887299999993],[-111.146118,67.822769000000108],[-111.12082700000002,67.780823000000112],[-111.03443899999996,67.764160000000061],[-111.01834100000002,67.763321000000076],[-111.00583599999999,67.764998999999989],[-110.84056099999998,67.800262000000032],[-110.83222999999998,67.804428000000087],[-110.80972300000002,67.818604000000107],[-110.78859699999998,67.833602999999982],[-110.78278399999994,67.839431999999988],[-110.75890400000003,67.852767999999969],[-110.74221799999992,67.861099000000024],[-110.73249800000002,67.86442599999998],[-110.41443600000002,67.947754000000145],[-110.33999599999999,67.965546000000018],[-110.1991579999999,67.972214000000008],[-110.17999299999991,67.994431000000077],[-110.1725009999999,67.999420000000043],[-110.162781,68.00277699999998],[-110.15167200000002,68.005264000000068],[-110.13054699999998,68.008040999999992],[-110.11694299999994,68.008881000000031],[-110.08389299999999,68.006943000000092],[-110.07084699999996,68.004165999999998],[-110.04888900000003,67.997756999999922],[-110.00110599999999,67.979705999999965],[-109.979446,67.967483999999956],[-109.97083999999995,67.958037999999988],[-109.96888699999994,67.953049000000021],[-109.96749899999992,67.941360000000145],[-109.97028399999999,67.929703000000018],[-109.97749299999987,67.911377000000016],[-109.99166899999994,67.891373000000044],[-110.00110599999999,67.872482000000048],[-110.00361599999991,67.866379000000109],[-110.00361599999991,67.860535000000084],[-109.99749799999995,67.850815000000011],[-109.98889200000002,67.841370000000097],[-109.98249800000002,67.837204000000042],[-109.97389199999998,67.833602999999982],[-109.96305799999993,67.830276000000026],[-109.948036,67.830276000000026],[-109.93554699999999,67.831940000000031],[-109.92582699999997,67.835266000000104],[-109.91722099999998,67.839157],[-109.91251399999999,67.845824999999934],[-109.912216,67.85165399999994],[-109.91639700000002,67.856093999999985],[-109.94888300000002,67.877197000000081],[-109.95305599999995,67.881927000000076],[-109.94193999999993,67.884430000000066],[-109.89028899999994,67.879974000000004],[-109.86193799999995,67.874985000000038],[-109.823059,67.866089000000102],[-109.81416299999995,67.862198000000035],[-109.80777,67.858032000000094],[-109.76722699999993,67.827773999999977],[-109.73082699999998,67.791931000000091],[-109.72917200000001,67.767761000000121],[-109.73581699999994,67.74275200000011],[-109.74553700000001,67.739426000000094],[-109.75167799999991,67.733597000000088],[-109.74973299999994,67.728592000000049],[-109.7369379999999,67.720261000000107],[-109.72609699999998,67.716933999999981],[-109.55222300000003,67.687759000000142],[-109.53472899999991,67.685806000000014],[-109.52250700000002,67.687484999999981],[-109.51139799999999,67.689697000000081],[-109.50279199999994,67.693862999999965],[-109.48805199999993,67.703873000000044],[-109.37026999999995,67.729155999999989],[-109.25361599999997,67.731934000000138],[-109.21028100000001,67.732208000000071],[-109.15915699999999,67.727478000000019],[-109.06582600000002,67.714157000000114],[-109.05972300000002,67.709991000000002],[-109.01471699999996,67.676651000000106],[-109.00279199999994,67.662491000000045],[-108.91915899999992,67.535812000000135],[-108.921944,67.529709000000025],[-108.95388800000001,67.511932000000115],[-108.96362299999998,67.5086060000001],[-108.99665800000002,67.501389000000017],[-109.00119000000001,67.5],[-109.00666799999993,67.498322000000087],[-109.01528899999994,67.494141000000013],[-109.02139299999999,67.488311999999951],[-109.02528399999994,67.483322000000101],[-109.01806599999998,67.462494000000049],[-109.002228,67.443587999999977],[-108.98554999999993,67.436096000000077],[-108.84999099999993,67.388596000000064],[-108.83112299999993,67.353591999999992],[-108.82501200000002,67.349426000000108],[-108.81276700000001,67.348876999999959],[-108.80416899999994,67.352768000000026],[-108.79666099999986,67.357758000000103],[-108.79055799999998,67.363602000000128],[-108.76611299999996,67.396378000000027],[-108.75834700000001,67.409149000000127],[-108.75583599999999,67.415267999999969],[-108.74445299999996,67.445525999999973],[-108.74109599999997,67.457214000000135],[-108.73638900000003,67.481093999999985],[-108.735817,67.486649000000057],[-108.734734,67.547759999999982],[-108.735817,67.558594000000028],[-108.73777799999993,67.563873000000058],[-108.73889200000002,67.574707000000103],[-108.73916599999995,67.596938999999963],[-108.73638900000003,67.603043000000014],[-108.73000299999995,67.608597000000032],[-108.71472199999999,67.61914100000007],[-108.70612299999988,67.623306000000071],[-108.69611399999997,67.626373000000001],[-108.67027299999995,67.628586000000098],[-108.65527299999991,67.62831100000011],[-108.62053700000001,67.624695000000031],[-108.6100009999999,67.621093999999971],[-108.58500700000002,67.609985000000108],[-108.57888799999989,67.605545000000063],[-108.516953,67.497482000000048],[-108.51139799999999,67.487487999999985],[-108.510559,67.47665400000011],[-108.51334399999996,67.470535000000098],[-108.52333099999993,67.45748900000001],[-108.52390300000002,67.451659999999947],[-108.52278100000001,67.44081100000011],[-108.49804699999993,67.363037000000077],[-108.49027999999998,67.353591999999992],[-108.48416099999997,67.349426000000108],[-108.47138999999993,67.346649000000014],[-108.458054,67.347214000000065],[-108.43720999999994,67.352768000000026],[-108.42971799999998,67.357483000000059],[-108.42471299999994,67.364151000000049],[-108.421944,67.3702550000001],[-108.42944299999999,67.379700000000128],[-108.43554699999999,67.383881000000031],[-108.439438,67.388596000000064],[-108.44275699999997,67.399155000000121],[-108.43998699999992,67.427475000000129],[-108.43472300000002,67.431656000000032],[-108.39388999999994,67.443587999999977],[-108.38166799999999,67.445251000000098],[-108.36694299999994,67.444976999999994],[-108.34361299999989,67.438582999999937],[-108.33556399999998,67.434982000000105],[-108.32112100000001,67.426926000000037],[-108.30750299999988,67.413040000000024],[-108.301941,67.403320000000122],[-108.30027799999999,67.398041000000148],[-108.29666099999997,67.393326000000116],[-108.28832999999997,67.389435000000049],[-108.13417099999992,67.329163000000051],[-108.06360599999988,67.305251999999996],[-108.02583300000003,67.296371000000022],[-108.015289,67.293045000000006],[-107.98554999999999,67.271927000000119],[-107.94471699999997,67.236374000000069],[-107.94082600000002,67.231659000000036],[-107.875,67.140823000000012],[-107.87526700000001,67.052765000000136],[-107.88054699999998,67.04832499999992],[-107.89362299999999,67.047760000000096],[-107.90499899999998,67.049713000000054],[-107.95028699999995,67.062195000000031],[-108.00834699999996,67.077484000000084],[-108.02084399999995,67.080551000000014],[-108.03666699999991,67.081664999999987],[-108.14862099999993,67.076660000000118],[-108.15722700000003,67.072769000000051],[-108.18916300000001,67.054977000000008],[-108.19304699999986,67.049713000000054],[-108.192207,67.038878999999952],[-108.19082600000002,67.033599999999979],[-108.19138299999992,67.028046000000018],[-108.19526699999994,67.022766000000104],[-108.20388799999995,67.018875000000037],[-108.21611000000001,67.017211999999915],[-108.23277300000001,67.019150000000081],[-108.24527,67.022217000000012],[-108.45028699999995,67.083328000000108],[-108.46056399999992,67.086928999999998],[-108.495003,67.102203000000088],[-108.51722699999999,67.113876000000062],[-108.541382,67.130813999999987],[-108.55555700000002,67.138885000000073],[-108.58029199999999,67.15026899999998],[-108.59056099999998,67.153594999999996],[-108.6063769999999,67.154708999999968],[-108.61971999999997,67.15387000000004],[-108.622772,67.149993999999936],[-108.53028899999993,67.042480000000012],[-108.52416999999997,67.038315000000011],[-108.51611300000002,67.034423999999944],[-108.50140399999998,67.032211000000018],[-108.491669,67.0352630000001],[-108.48554999999988,67.041092000000106],[-108.48500100000001,67.046646000000123],[-108.48665599999998,67.05192599999998],[-108.49054699999988,67.056641000000013],[-108.48944099999994,67.067764000000011],[-108.48194899999999,67.072769000000051],[-108.468887,67.073318000000029],[-108.45612299999999,67.070541000000105],[-108.44193999999999,67.062485000000038],[-108.39222699999993,67.028869999999984],[-108.35637700000001,67.003326000000129],[-108.34665699999994,66.994431000000077],[-108.33056599999998,66.986923000000104],[-108.31806899999998,66.983871000000136],[-108.28971899999993,66.979980000000069],[-108.25862099999995,66.977768000000026],[-108.22860700000001,66.976654000000053],[-108.19695300000001,66.972214000000008],[-108.16639700000002,66.962204000000099],[-108.14998600000001,66.954436999999984],[-108.11472299999997,66.928864000000033],[-107.98528299999998,66.828598000000113],[-107.94138299999997,66.788315000000068],[-107.93831599999999,66.778046000000074],[-107.93971299999993,66.766663000000051],[-107.94193999999999,66.749709999999936],[-107.94471699999997,66.743591000000094],[-107.94803599999995,66.731933999999967],[-107.949432,66.720535000000098],[-107.94583099999994,66.715820000000065],[-107.89444699999996,66.671646000000123],[-107.88276699999989,66.663315000000011],[-107.87082699999996,66.662491000000045],[-107.86444099999989,66.668320000000051],[-107.86389200000002,66.673874000000069],[-107.86776700000001,66.71138000000002],[-107.88474299999996,66.750823999999909],[-107.88834400000002,66.755554000000132],[-107.88194299999992,66.759155000000021],[-107.86776700000001,66.758881000000088],[-107.85333299999996,66.756378000000097],[-107.829453,66.744980000000112],[-107.81777999999997,66.736374000000012],[-107.76500699999997,66.686919999999986],[-107.72416699999991,66.629700000000128],[-107.64750699999996,66.574707000000103],[-107.62805199999997,66.562194999999974],[-107.60082999999997,66.546097000000088],[-107.56945799999994,66.53054800000001],[-107.55721999999997,66.527771000000087],[-107.43305999999995,66.453598000000113],[-107.2911069999999,66.36831699999999],[-107.26027699999986,66.353043000000071],[-107.24804699999993,66.349990999999989],[-107.23500100000001,66.348602000000142],[-107.22222899999997,66.349152000000004],[-107.21140299999996,66.351379000000065],[-107.203056,66.355254999999943],[-107.196663,66.360809000000131],[-107.195831,66.366379000000052],[-107.19722000000002,66.371643000000006],[-107.20056199999993,66.376373000000058],[-107.23554999999993,66.407486000000063],[-107.34221599999995,66.461655000000064],[-107.43888899999996,66.513046000000145],[-107.56220999999994,66.591369999999984],[-107.56582599999996,66.596100000000035],[-107.56861899999996,66.606644000000074],[-107.56777999999991,66.612198000000092],[-107.56916799999999,66.617477000000065],[-107.57055700000001,66.622482000000105],[-107.57417299999997,66.627471999999955],[-107.62416100000002,66.660812000000021],[-107.64943700000003,66.693862999999965],[-107.69387799999998,66.755829000000006],[-107.74665800000002,66.922760000000039],[-107.68861399999997,66.977097000000128],[-107.63806199999999,67.024429000000055],[-107.66665599999993,67.063034000000016],[-107.66805999999985,67.068329000000062],[-107.66166699999997,67.073883000000023],[-107.65083299999992,67.076096000000007],[-107.63612399999994,67.073883000000023],[-107.60777299999995,67.063309000000004],[-107.58361799999994,67.051650999999993],[-107.52390300000002,67.020264000000054],[-107.51666299999999,67.010543999999982],[-107.48388699999998,66.924149],[-107.48473399999995,66.918593999999928],[-107.49694799999997,66.917206000000022],[-107.57972699999988,66.916382000000056],[-107.59445199999999,66.918868999999972],[-107.60221899999988,66.922760000000039],[-107.608047,66.926926000000094],[-107.62332200000003,66.940262000000075],[-107.626938,66.944977000000108],[-107.632767,66.949417000000096],[-107.64083899999997,66.953049000000078],[-107.647064,66.942711000000031],[-107.65521999999999,66.943710000000067],[-107.66238399999997,66.942879000000062],[-107.66754900000001,66.940376000000072],[-107.67138699999998,66.937035000000037],[-107.67038700000001,66.933868000000018],[-107.63527699999997,66.892212000000029],[-107.57028199999991,66.837769000000094],[-107.564438,66.833602999999982],[-107.51306199999993,66.822220000000016],[-107.42832900000002,66.804703000000131],[-107.41610699999995,66.806091000000038],[-107.40888999999993,66.811096000000077],[-107.39111299999996,66.891373000000101],[-107.39584400000001,66.901382000000126],[-107.422234,66.939697000000024],[-107.42944299999999,66.949142000000109],[-107.43888899999996,66.958328000000051],[-107.44471699999997,66.962493999999936],[-107.44387799999993,66.968048000000124],[-107.435272,66.972214000000008],[-107.421944,66.972762999999986],[-107.40611299999995,66.97137500000008],[-107.37943999999993,66.966094999999996],[-107.35916099999992,66.959427000000005],[-107.23388699999992,66.902206000000092],[-107.21806299999997,66.894714000000135],[-107.21028099999995,66.890823000000069],[-107.1875,66.87359600000002],[-107.15750099999991,66.846939000000134],[-107.15055799999999,66.837494000000049],[-107.14916999999991,66.832214000000022],[-107.137787,66.823608000000092],[-107.12554899999992,66.820540999999992],[-107.09472700000003,66.818329000000119],[-107.08361799999994,66.820540999999992],[-107.15527299999997,66.899719000000005],[-107.20388800000001,66.944702000000063],[-107.22666900000002,66.961655000000007],[-107.24027999999998,66.969986000000063],[-107.29750100000001,67.001938000000052],[-107.3052669999999,67.005829000000119],[-107.31139399999995,67.127197000000024],[-107.38806199999993,67.144440000000145],[-107.43083200000001,67.158325000000048],[-107.44915800000001,67.165543000000071],[-107.47332799999992,67.176926000000037],[-107.48137700000001,67.180816999999934],[-107.50306699999993,67.192749000000106],[-107.53250100000002,67.214157],[-107.64862099999993,67.359984999999995],[-107.57694999999995,67.475540000000137],[-107.57389799999993,67.481658999999979],[-107.57528699999995,67.48692299999999],[-107.57888800000001,67.491652999999985],[-107.58277899999996,67.496368000000018],[-107.58860799999991,67.500823999999966],[-107.71833800000002,67.573318000000086],[-107.74054699999994,67.585265999999933],[-107.77362099999999,67.600540000000024],[-107.81331599999999,67.614426000000037],[-107.84472700000003,67.624420000000043],[-107.89055599999989,67.642487000000074],[-107.96916199999998,67.676651000000106],[-107.98972300000003,67.688873000000115],[-107.99944299999999,67.698029000000076],[-108.006958,67.707489000000123],[-108.01334399999996,67.728317000000004],[-108.01445000000001,67.73414600000001],[-108.015289,67.744980000000055],[-108.01390099999998,67.756103999999993],[-108.00805699999995,67.768326000000116],[-107.99249299999997,67.788040000000024],[-107.94833399999993,67.841095000000109],[-107.94193999999999,67.846939000000134],[-107.93415800000002,67.85165399999994],[-107.92278299999998,67.853867000000093],[-107.890289,67.85165399999994],[-107.87777699999992,67.853317000000061],[-107.85527000000002,67.85775799999999],[-107.75666799999993,67.880814000000044],[-107.71472199999994,67.892487000000074],[-107.70472699999993,67.895828000000108],[-107.674713,67.916092000000049],[-107.66166699999997,67.927475000000015],[-107.65110800000002,67.940535999999952],[-107.65499899999992,67.945250999999985],[-107.66555800000003,67.94859300000013],[-107.77050800000001,67.96526300000005],[-107.81133999999992,67.971596000000034],[-107.91027800000001,67.988585999999998],[-107.91639699999996,67.993042000000059],[-107.91999800000002,67.997756999999922],[-107.89055599999989,68.081664999999987],[-107.88527699999997,68.088318000000129],[-107.87888299999997,68.093872000000147],[-107.86332699999997,68.103592000000049],[-107.85166899999996,68.106094000000098],[-107.837784,68.104430999999977],[-107.72112300000003,68.082763999999941],[-107.69943199999994,68.075821000000133],[-107.69360399999994,68.071655000000078],[-107.69776899999994,68.066376000000105],[-107.70667300000002,68.062485000000038],[-107.72721899999993,68.056090999999981],[-107.73860200000001,68.05386400000009],[-107.77250700000002,68.05693100000002],[-107.78778099999994,68.057205000000124],[-107.80027799999999,68.055817000000047],[-107.80943299999996,68.051650999999936],[-107.83332799999988,68.013046000000031],[-107.83389299999999,68.007217000000026],[-107.82778899999988,68.003052000000025],[-107.8038479999999,68.004264999999975],[-107.78733799999998,67.997597000000042],[-107.77900699999998,67.996765000000096],[-107.763847,67.998428000000047],[-107.75699599999996,67.999771000000123],[-107.75426500000003,68.006812999999966],[-107.73306300000002,68.020827999999995],[-107.72501399999993,68.025818000000015],[-107.69027699999992,68.042480000000012],[-107.67999299999997,68.04582199999993],[-107.61028299999998,68.058593999999971],[-107.58583099999998,68.059982000000048],[-107.57084700000001,68.059708000000114],[-107.53806299999997,68.057479999999998],[-107.45028699999989,68.047211000000118],[-107.38890100000003,68.04525799999999],[-107.36221299999994,68.04693600000013],[-107.34944200000001,68.048599000000024],[-107.32640099999998,68.053040000000124],[-107.28778099999994,68.064987000000087],[-107.25140399999998,68.080826000000002],[-107.22638699999993,68.094436999999971],[-107.154449,68.12692300000009],[-107.141953,68.128310999999997],[-107.11028299999998,68.12692300000009],[-107.10665899999998,68.122208000000057],[-107.11888099999987,68.084717000000069],[-106.96556099999998,68.113312000000121],[-106.95278899999988,68.114700000000028],[-106.85611,68.116927999999973],[-106.84111000000001,68.116379000000052],[-106.80194099999994,68.197479000000101],[-106.80943300000001,68.207214000000022],[-106.80610699999994,68.213043000000027],[-106.80027799999993,68.217484000000127],[-106.79110700000001,68.221375000000023],[-106.62748699999997,68.246643000000063],[-106.61444099999994,68.24803200000008],[-106.5994419999999,68.247482000000048],[-106.58860800000002,68.244141000000013],[-106.468613,68.190536000000122],[-106.45777900000002,68.176376000000005],[-106.45417799999996,68.160812000000078],[-106.45056199999999,68.155823000000112],[-106.44471699999991,68.151657000000057],[-106.43195300000002,68.153046000000018],[-106.42138699999987,68.156097000000045],[-106.35056299999997,68.179153000000099],[-106.34472699999998,68.183318999999983],[-106.35056299999997,68.187759000000028],[-106.35888699999992,68.191650000000095],[-106.39277600000003,68.201660000000004],[-106.42083700000001,68.207214000000022],[-106.468887,68.214431999999988],[-106.48194899999993,68.217484000000127],[-106.48999000000003,68.221375000000023],[-106.49582699999996,68.225540000000024],[-106.49722300000002,68.230820000000051],[-106.46833799999996,68.329711999999972],[-106.46501199999994,68.335815000000139],[-106.45667299999991,68.340820000000008],[-106.44748700000002,68.344711000000075],[-106.42639200000002,68.350815000000068],[-106.25611900000001,68.387772000000098],[-106.24416400000001,68.38998400000014],[-106.21833800000002,68.392487000000131],[-106.203056,68.392211999999915],[-106.185272,68.38998400000014],[-106.17471299999994,68.386658000000125],[-106.16665599999999,68.382750999999985],[-106.15471599999989,68.373871000000122],[-105.79638699999998,68.422211000000118],[-105.79055799999998,68.418045000000063],[-105.78222699999998,68.413878999999952],[-105.76583900000003,68.41276600000009],[-105.75167799999991,68.413040000000024],[-105.73972300000003,68.415267999999969],[-105.73029300000002,68.419144000000017],[-105.72305299999999,68.424698000000035],[-105.70111099999991,68.469711000000132],[-105.69721999999996,68.486649],[-105.69833399999993,68.49192800000003],[-105.70278899999994,68.501938000000109],[-105.71444699999995,68.510544000000039],[-105.74305700000002,68.564697000000137],[-105.724716,68.574158000000125],[-105.64499699999999,68.633880999999974],[-105.65083300000003,68.638046000000145],[-105.66639699999996,68.638596000000007],[-105.90222199999999,68.635269000000051],[-105.92832899999996,68.632476999999994],[-106.02944899999994,68.619704999999954],[-106.041382,68.617477000000008],[-106.04972799999996,68.612761999999975],[-106.04750100000001,68.602203000000145],[-106.05332900000002,68.595824999999991],[-106.06416300000001,68.59275800000006],[-106.2077789999999,68.567764000000068],[-106.23638900000003,68.566665999999998],[-106.37027,68.545258000000103],[-106.51083399999999,68.518326000000002],[-106.54387700000001,68.511932000000115],[-106.62470999999999,68.46748400000007],[-106.63166799999999,68.461928999999998],[-106.62888299999992,68.45138500000013],[-106.62165799999997,68.441925000000026],[-106.61582899999996,68.437759000000142],[-106.59528399999994,68.425261999999975],[-106.58473200000003,68.421646000000123],[-106.57167099999992,68.418593999999985],[-106.55387899999994,68.416656000000046],[-106.52194199999997,68.414992999999924],[-106.50446299999999,68.41276600000009],[-106.493607,68.409424000000115],[-106.48777799999988,68.404984000000127],[-106.48055999999997,68.395537999999988],[-106.52722199999994,68.300812000000121],[-106.53415699999999,68.295257999999933],[-106.54332699999998,68.291367000000037],[-106.556107,68.289978000000076],[-106.57277699999986,68.291092000000049],[-106.58444199999991,68.293319999999994],[-106.59500099999997,68.296646000000067],[-106.60109699999998,68.301086000000055],[-106.6119379999999,68.315262000000075],[-106.6383439999999,68.343048000000124],[-106.64444700000001,68.347487999999942],[-106.77887699999997,68.408034999999984],[-106.78971899999999,68.411652000000117],[-106.80277999999993,68.414428999999984],[-107.01363400000002,68.369431000000077],[-107.02166699999998,68.364699999999971],[-107.02027899999996,68.359420999999998],[-107.01666299999999,68.354705999999965],[-107.01750199999998,68.349151999999947],[-107.03138699999994,68.33776899999998],[-107.13221699999991,68.283325000000104],[-107.24610899999999,68.261383000000023],[-107.25890400000003,68.259995000000117],[-107.26500699999997,68.264160000000118],[-107.274719,68.273314999999968],[-107.28611799999993,68.287490999999989],[-107.29611199999994,68.296646000000067],[-107.30194099999994,68.300812000000121],[-107.32721699999991,68.312484999999981],[-107.33805799999999,68.315810999999997],[-107.54666099999992,68.347487999999942],[-107.56082200000003,68.349151999999947],[-107.81331599999999,68.342484000000013],[-107.82611099999997,68.341094999999996],[-107.83640300000002,68.338043000000084],[-107.84973100000002,68.326385000000073],[-107.85500299999995,68.31999200000007],[-107.88527699999997,68.26887499999998],[-107.88362100000001,68.263610999999969],[-107.879707,68.258880999999974],[-107.85417199999995,68.247482000000048],[-107.83029199999993,68.241089000000102],[-107.74194299999999,68.216934000000094],[-107.61332700000003,68.178588999999988],[-107.60249299999998,68.175262000000032],[-107.59861799999999,68.17053199999998],[-107.60305800000003,68.165268000000026],[-107.61582900000002,68.163879000000009],[-107.63221699999997,68.164992999999981],[-107.68998699999997,68.174423000000047],[-107.78639199999992,68.183868000000132],[-107.80027799999999,68.183318999999983],[-107.82584399999996,68.180542000000116],[-107.87193300000001,68.171371000000136],[-108.03388999999999,68.168594000000041],[-108.16139199999986,68.172759999999982],[-108.18694299999999,68.169983000000059],[-108.19695300000001,68.166656000000103],[-108.22028399999999,68.152205999999978],[-108.24944299999993,68.141663000000051],[-108.30055199999993,68.125809000000118],[-108.33222999999998,68.117203000000018],[-108.37026999999989,68.112762000000089],[-108.38555899999994,68.113037000000077],[-108.40306099999998,68.114990000000034],[-108.41388699999993,68.11831699999999],[-108.42250099999995,68.122208000000057],[-108.43277,68.131088000000091],[-108.43611099999987,68.141373000000044],[-108.43306000000001,68.147490999999945],[-108.42804699999994,68.154160000000047],[-108.40888999999999,68.16137700000013],[-108.39750700000002,68.163605000000075],[-108.36694299999994,68.161102000000085],[-108.36277799999993,68.15637200000009],[-108.36582899999996,68.15026899999998],[-108.37361099999993,68.145264000000111],[-108.37998999999996,68.139708999999982],[-108.37832599999996,68.134430000000009],[-108.36527999999993,68.133606000000043],[-108.34612299999998,68.140823000000012],[-108.33860800000002,68.145828000000051],[-108.33332799999994,68.152205999999978],[-108.33056599999998,68.158600000000035],[-108.32695000000001,68.170258000000047],[-108.32444800000002,68.192749000000049],[-108.32945299999989,68.208327999999995],[-108.3958439999999,68.289978000000076],[-108.40222199999994,68.294144000000131],[-108.44360399999999,68.308029000000033],[-108.46000700000002,68.309143000000006],[-108.484444,68.305251999999939],[-108.504997,68.298874000000012],[-108.55999800000001,68.275542999999971],[-108.56500199999999,68.26887499999998],[-108.56806899999992,68.262772000000041],[-108.57444799999996,68.257216999999969],[-108.58444199999997,68.253876000000105],[-108.71556099999998,68.231369000000029],[-108.72944599999988,68.230820000000051],[-108.74610899999993,68.231934000000024],[-108.756958,68.235260000000096],[-108.765556,68.238876000000118],[-108.81527699999998,68.262206999999989],[-108.81916799999993,68.266663000000108],[-108.81416299999989,68.273314999999968],[-108.74889400000001,68.33776899999998],[-108.74109599999997,68.342758000000117],[-108.71417199999996,68.354705999999965],[-108.70417799999996,68.35803199999998],[-108.69387799999993,68.361098999999911],[-108.67083700000001,68.365813999999943],[-108.63999899999993,68.375534000000016],[-108.62082700000002,68.382750999999985],[-108.61193800000001,68.386658000000125],[-108.58112299999999,68.406372000000033],[-108.56667299999998,68.416931000000091],[-108.53443900000002,68.445526000000086],[-108.52916699999992,68.452209000000096],[-108.52278100000001,68.458038000000101],[-108.43167099999994,68.538315000000068],[-108.40416700000003,68.560256999999979],[-108.383331,68.576660000000004],[-108.36888099999999,68.587204000000042],[-108.34528399999994,68.601928999999984],[-108.31416300000001,68.611374000000069],[-108.27916700000003,68.618317000000047],[-108.25195299999996,68.620529000000147],[-108.1702729999999,68.626647999999989],[-107.93331899999998,68.64027399999992],[-107.80499299999997,68.645538000000101],[-107.63834399999996,68.665543000000127],[-107.43167099999994,68.690536000000009],[-107.23137700000001,68.71887200000009],[-107.10833700000001,68.748596000000134],[-106.96140300000002,68.783051000000057],[-106.93859899999995,68.788315000000011],[-106.82084700000001,68.811371000000065],[-106.79444899999993,68.813872999999944],[-106.765556,68.814986999999917],[-106.63500999999991,68.818329000000062],[-106.31555200000003,68.892761000000121],[-106.27250699999996,68.904709000000025],[-106.262787,68.90887500000008],[-106.25446299999993,68.913605000000132],[-106.24833699999988,68.919983000000059],[-106.24472000000003,68.926085999999998],[-106.24360699999994,68.931656000000089],[-106.23998999999998,68.937759000000028],[-106.22917200000001,68.940810999999997],[-106.21472199999999,68.941360000000088],[-106.20140100000003,68.940536000000122],[-106.14943699999998,68.933594000000028],[-106.08084099999996,68.918869000000086],[-105.81360599999988,68.881927000000076],[-105.79804999999999,68.879425000000026],[-105.77639799999997,68.872481999999991],[-105.71806300000003,68.844985999999949],[-105.48693800000001,68.729430999999977],[-105.475281,68.720535000000041],[-105.47165699999999,68.715820000000008],[-105.47833300000002,68.69859299999996],[-105.48194899999999,68.692474000000118],[-105.4891659999999,68.68691999999993],[-105.49889400000001,68.683044000000052],[-105.49944299999999,68.621368000000075],[-105.41443600000002,68.528594999999996],[-105.38082900000001,68.486649],[-105.40888999999999,68.492477000000122],[-105.42304999999999,68.49192800000003],[-105.43388400000003,68.489151000000106],[-105.44360399999994,68.485260000000039],[-105.52944899999994,68.450272000000041],[-105.53806299999991,68.445526000000086],[-105.54387700000001,68.439147999999989],[-105.54778299999998,68.433044000000109],[-105.54888900000003,68.427475000000129],[-105.54804999999999,68.422211000000118],[-105.54110699999995,68.41276600000009],[-105.53307299999994,68.408599999999979],[-105.51777600000003,68.406096999999988],[-105.41639700000002,68.406937000000084],[-105.39028899999988,68.409424000000115],[-105.34528399999999,68.384155000000135],[-105.34889199999992,68.378036000000122],[-105.350281,68.372482000000105],[-105.34472700000003,68.368042000000116],[-105.29499800000002,68.339157000000057],[-105.28694200000001,68.33526599999999],[-105.10082999999992,68.266098000000056],[-105.07305899999994,68.260269000000051],[-105.05555700000002,68.258041000000105],[-105.02639799999992,68.257767000000001],[-105.00894900000003,68.264938000000029],[-105.00661500000001,68.268599999999935],[-105.00578300000001,68.272094999999922],[-105.00666799999993,68.278595000000053],[-105.01695299999994,68.282211000000132],[-105.02610800000002,68.309418000000051],[-104.88474300000001,68.339705999999978],[-104.86416600000001,68.332489000000066],[-104.84805299999999,68.324707000000103],[-104.83917200000002,68.315536000000009],[-104.83583099999998,68.310806000000127],[-104.83416699999998,68.300262000000089],[-104.83944699999995,68.288589000000059],[-104.84584000000001,68.282211000000132],[-104.85305800000003,68.276657000000114],[-104.86277799999993,68.272766000000047],[-104.87332199999997,68.269714000000135],[-104.94554099999999,68.258041000000105],[-104.952789,68.252487000000087],[-104.95194999999995,68.247482000000048],[-104.94055200000003,68.238586000000112],[-104.924713,68.230545000000063],[-104.91443600000002,68.227203000000088],[-104.900284,68.22526600000009],[-104.88639799999999,68.225540000000024],[-104.87332199999997,68.226928999999984],[-104.79750100000001,68.24443100000002],[-104.73111,68.250275000000045],[-104.68776699999995,68.250275000000045],[-104.63999899999999,68.246933000000126],[-104.609734,68.24136400000009],[-104.59889199999998,68.232483000000002],[-104.59722899999997,68.222214000000122],[-104.61277799999999,68.198029000000133],[-104.61888099999993,68.191650000000095],[-104.6324919999999,68.179428000000087],[-104.65471600000001,68.162766000000147],[-104.66722099999993,68.149994000000106],[-104.67027299999995,68.138596000000121],[-104.59221599999989,68.083603000000096],[-104.50778200000002,68.035812000000021],[-104.5,68.031937000000028],[-104.48638900000003,68.029984000000127],[-104.45722999999992,68.029709000000082],[-104.36694299999994,68.034149000000127],[-104.21472199999994,68.024155000000064],[-104.199997,68.021378000000027],[-104.16665599999993,68.017487000000131],[-104.12470999999994,68.018326000000059],[-104.11193800000001,68.019440000000031],[-104.06471299999998,68.027480999999966],[-104.01139799999999,68.042206000000078],[-103.99944299999999,68.044144000000017],[-103.98554999999999,68.044434000000024],[-103.97084000000001,68.043869000000029],[-103.94082600000002,68.038315000000011],[-103.92832900000002,68.034988000000055],[-103.89806399999998,68.024155000000064],[-103.88362100000001,68.021378000000027],[-103.87082699999996,68.020263999999997],[-103.84306300000003,68.020827999999995],[-103.791382,68.025269000000094],[-103.76695299999994,68.028320000000065],[-103.55526700000001,68.057205000000124],[-103.54444899999987,68.059982000000048],[-103.53694200000001,68.065536000000066],[-103.53278399999999,68.071655000000078],[-103.53333299999991,68.076660000000118],[-103.53639199999998,68.081664999999987],[-103.54472399999997,68.090820000000008],[-103.55526700000001,68.099715999999944],[-103.55803699999996,68.104430999999977],[-103.55304699999999,68.109711000000061],[-103.52139299999999,68.130813999999987],[-103.50389099999995,68.140274000000034],[-103.49526999999995,68.144714000000079],[-103.46694899999994,68.156936999999914],[-103.45722999999998,68.160537999999974],[-103.42166099999997,68.166656000000103],[-103.40416700000003,68.164154000000053],[-103.38971700000002,68.16137700000013],[-103.38194299999992,68.157211000000018],[-103.36888099999999,68.148880000000133],[-103.34416199999993,68.121094000000085],[-103.34137699999991,68.116089000000045],[-103.34028599999988,68.105819999999994],[-103.341949,68.100265999999976],[-103.37249799999995,68.06860400000005],[-103.36916399999996,68.010818000000029],[-103.36609599999997,68.005829000000062],[-103.25418100000002,67.966385000000002],[-103.22084000000001,67.962204000000099],[-103.20612299999999,67.961380000000133],[-103.17832899999996,67.961929000000055],[-103.14943699999998,67.961380000000133],[-103.13694800000002,67.958037999999988],[-103.12943999999999,67.953872999999987],[-103.12416100000002,67.949707000000103],[-103.11277799999999,67.930267000000129],[-103.1052699999999,67.926086000000055],[-103.09306300000003,67.923035000000027],[-103.01471700000002,67.913605000000132],[-103.00083899999998,67.913879000000065],[-102.99082899999996,67.917480000000126],[-102.98222399999997,67.922211000000061],[-102.97250399999996,67.925812000000121],[-102.95944199999985,67.926926000000094],[-102.94972199999995,67.923309000000131],[-102.94444299999998,67.918868999999916],[-102.939438,67.914429000000098],[-102.92111199999999,67.896378000000141],[-102.82972699999993,67.831940000000031],[-102.80027799999993,67.820830999999998],[-102.68639400000001,67.804703000000131],[-102.67054699999994,67.80304000000001],[-102.53611799999999,67.795258000000047],[-102.50446299999999,67.791931000000091],[-102.47083999999995,67.786926000000051],[-102.446663,67.780273000000079],[-102.39306599999992,67.76249700000011],[-102.33972199999994,67.744705000000067],[-102.25110599999999,67.725266000000147],[-102.22444199999995,67.733871000000022],[-102.21556099999992,67.738312000000121],[-102.15139799999997,67.765549000000021],[-102.1416779999999,67.769150000000081],[-101.92610200000001,67.760268999999994],[-101.76471699999991,67.723312000000135],[-101.671944,67.691649999999981],[-101.54250300000001,67.67942800000003],[-101.51500699999997,67.67942800000003],[-101.446663,67.732483000000116],[-101.43388400000003,67.733322000000044],[-101.10582699999992,67.741928000000144],[-101.09889199999998,67.737762000000089],[-101.01278699999995,67.742477000000122],[-100.99973299999999,67.74331699999999],[-100.92749000000003,67.753325999999959],[-100.90387699999991,67.756942999999922],[-100.89277600000003,67.759720000000016],[-100.81139400000001,67.794708000000014],[-100.72028399999994,67.834427000000119],[-100.58167999999995,67.834152000000131],[-100.39555399999995,67.847488000000055],[-100.18415799999997,67.843048000000067],[-100.16832699999998,67.841095000000109],[-100.156387,67.837769000000037],[-100.14723200000003,67.828598000000113],[-100.135559,67.825272000000098],[-100.083618,67.814986999999974],[-99.820006999999919,67.795821999999987],[-99.618606999999997,67.789153999999996],[-99.607772999999952,67.791931000000091],[-99.589172000000019,67.800812000000064],[-99.577788999999996,67.803314000000114],[-99.500564999999938,67.799713000000054],[-99.412215999999887,67.788315000000068],[-99.403060999999923,67.784424000000001],[-99.398620999999991,67.779983999999956],[-99.396666999999979,67.774994000000106],[-99.387787000000003,67.765822999999955],[-99.378325999999959,67.761932000000058],[-99.236114999999984,67.713608000000136],[-99.21055599999994,67.706940000000145],[-98.986938000000009,67.718322999999998],[-98.813613999999973,67.741928000000144],[-98.528884999999889,67.777481000000023],[-98.385833999999988,67.785812000000078],[-98.363327000000027,67.790817000000118],[-98.354445999999996,67.796097000000032],[-98.358046999999942,67.805817000000104],[-98.442490000000021,67.861374000000069],[-98.449431999999945,67.865814000000057],[-98.463333000000034,67.868865999999969],[-98.475554999999986,67.867203000000075],[-98.486114999999927,67.863876000000118],[-98.49888599999997,67.863312000000008],[-98.514724999999942,67.865265000000136],[-98.540282999999988,67.872208000000114],[-98.65583799999996,67.916382000000056],[-98.665008999999998,67.920258000000103],[-98.696944999999914,67.936645999999996],[-98.719726999999921,67.948867999999948],[-98.724166999999852,67.953598],[-98.746947999999975,68.047760000000096],[-98.732772999999952,68.070267000000001],[-98.615554999999915,68.074706999999989],[-98.544998000000021,68.061371000000065],[-98.336945000000014,67.96026599999999],[-98.321121000000005,67.952208999999982],[-98.266952999999887,67.923309000000131],[-98.233321999999987,67.901932000000102],[-98.171111999999994,67.843323000000055],[-98.169158999999922,67.838593000000003],[-98.122771999999941,67.788040000000024],[-98.094451999999933,67.766098],[-97.956664999999873,67.727768000000083],[-97.799438000000009,67.68553200000008],[-97.66194200000001,67.643051000000071],[-97.650283999999999,67.639434999999992],[-97.637512000000015,67.6308140000001],[-97.626099000000011,67.618042000000059],[-97.613051999999982,67.609420999999998],[-97.603881999999999,67.605255000000056],[-97.592772999999852,67.601653999999996],[-97.576674999999966,67.598602000000085],[-97.561385999999914,67.596649000000127],[-97.547501000000011,67.596375000000023],[-97.509734999999921,67.599152000000117],[-97.48582499999992,67.602203000000145],[-97.415008999999998,67.613312000000064],[-97.392226999999991,67.618042000000059],[-97.381942999999978,67.621368000000132],[-97.353058000000033,67.634430000000123],[-97.33444199999991,67.643875000000037],[-97.316665999999941,67.654434000000037],[-97.295546999999942,67.661102000000028],[-97.283324999999991,67.662491000000045],[-97.167220999999927,67.675537000000134],[-97.138900999999919,67.674149000000057],[-97.116942999999878,67.777481000000023],[-97.115828999999962,67.78276100000005],[-97.119155999999919,67.792480000000069],[-97.127212999999983,67.801650999999993],[-97.240279999999984,67.926086000000055],[-97.254180999999903,67.929428000000144],[-97.263061999999934,67.924149],[-97.268889999999942,67.918319999999994],[-97.27305599999994,67.907761000000107],[-97.273620999999991,67.90248100000008],[-97.277221999999938,67.896942000000081],[-97.282776000000013,67.891098000000056],[-97.291107000000011,67.884995000000117],[-97.301392000000021,67.881652999999972],[-97.324447999999961,67.876648000000102],[-97.336670000000026,67.875259000000142],[-97.362503000000004,67.873871000000008],[-97.376388999999961,67.874146000000053],[-97.392226999999991,67.876373000000115],[-97.403335999999967,67.879974000000004],[-97.412216000000001,67.884155000000078],[-97.416397000000018,67.888596000000007],[-97.41972399999986,67.898331000000042],[-97.428054999999858,67.907761000000107],[-97.434433000000013,67.911926000000108],[-97.449996999999996,67.920258000000103],[-97.643616000000009,68.008330999999998],[-97.652495999999985,68.012207000000046],[-97.683060000000012,68.018599999999992],[-97.695267000000001,68.017212000000086],[-97.705001999999979,68.012772000000098],[-97.708344000000011,68.007217000000026],[-97.710555999999997,67.991653000000099],[-97.87777699999998,67.963608000000079],[-97.996657999999911,67.950271999999984],[-98.009734999999921,67.949707000000103],[-98.029998999999975,67.941924999999969],[-98.045837000000006,67.929428000000144],[-98.051391999999964,67.923598999999967],[-98.057495000000017,67.912490999999989],[-98.060271999999998,67.891663000000108],[-98.063888999999961,67.829162999999937],[-98.078613000000018,67.830276000000026],[-98.095276000000013,67.833327999999938],[-98.106658999999979,67.836928999999998],[-98.115828999999962,67.840820000000065],[-98.176392000000021,67.873871000000008],[-98.189437999999996,67.882476999999938],[-98.194716999999969,67.897217000000069],[-98.200835999999981,67.906647000000135],[-98.213622999999984,67.920532000000037],[-98.224716000000001,67.929428000000144],[-98.25140399999998,67.946365000000014],[-98.283324999999934,67.962768999999923],[-98.319732999999928,67.978591999999992],[-98.34056099999998,67.986099000000081],[-98.378051999999968,67.996368000000132],[-98.398620999999991,68.004165999999998],[-98.412216000000001,68.012497000000053],[-98.581115999999952,68.139984000000027],[-98.587509000000011,68.149429000000112],[-98.58444199999991,68.154984000000013],[-98.485275000000001,68.184417999999994],[-98.473891999999978,68.186920000000043],[-98.459732000000031,68.183594000000028],[-98.450561999999991,68.179703000000131],[-98.432495000000017,68.166656000000103],[-98.428054999999915,68.162201000000096],[-98.424437999999952,68.152205999999978],[-98.425551999999925,68.141936999999984],[-98.428329000000019,68.136383000000137],[-98.434158000000025,68.130538999999942],[-98.44027699999998,68.119431000000134],[-98.441100999999946,68.10914600000001],[-98.439437999999996,68.104155999999989],[-98.430556999999908,68.094986000000119],[-98.417220999999927,68.08638000000002],[-98.408051,68.082489000000123],[-98.393889999999999,68.079163000000108],[-98.379990000000021,68.079163000000108],[-98.367767000000015,68.080551000000014],[-98.358886999999982,68.085814999999968],[-98.350829999999917,68.092209000000025],[-98.339721999999938,68.103867000000037],[-98.321670999999981,68.136932000000115],[-98.317779999999971,68.14776599999999],[-98.317229999999938,68.153046000000018],[-98.317504999999983,68.162201000000096],[-98.326110999999969,68.171371000000136],[-98.333068999999966,68.17553700000002],[-98.342223999999931,68.179428000000087],[-98.377486999999917,68.190262000000018],[-98.40834000000001,68.196640000000116],[-98.439712999999927,68.200821000000019],[-98.469727000000034,68.203049000000021],[-98.485275000000001,68.204987000000131],[-98.501113999999973,68.208602999999982],[-98.531113000000005,68.22526600000009],[-98.537780999999995,68.229431000000091],[-98.542220999999927,68.234146000000123],[-98.561110999999983,68.27388000000002],[-98.607772999999952,68.293319999999994],[-98.704178000000013,68.352768000000026],[-98.710830999999985,68.356934000000081],[-98.715285999999992,68.361648999999943],[-98.717223999999931,68.366378999999995],[-98.71444699999995,68.372208000000001],[-98.704726999999934,68.376373000000001],[-98.680557000000022,68.380539000000113],[-98.667496000000028,68.381363000000079],[-98.637221999999952,68.379150000000095],[-98.606383999999991,68.372756999999979],[-98.594161999999983,68.36914100000007],[-98.580565999999919,68.360809000000074],[-98.571670999999981,68.351654000000053],[-98.548614999999984,68.339157000000057],[-98.532501000000025,68.331100000000106],[-98.521392999999932,68.328323000000012],[-98.511397999999929,68.329711999999972],[-98.470839999999953,68.348327999999981],[-98.462218999999948,68.353591999999992],[-98.461394999999982,68.358871000000136],[-98.471389999999985,68.373596000000077],[-98.491942999999935,68.38638300000008],[-98.503615999999965,68.38998400000014],[-98.49499499999996,68.409424000000115],[-98.319457999999997,68.358871000000136],[-98.30972300000002,68.354980000000069],[-98.298889000000031,68.346100000000035],[-98.294448999999929,68.34137000000004],[-98.292495999999971,68.336655000000007],[-98.288329999999974,68.331940000000145],[-98.281386999999995,68.327774000000034],[-98.225554999999929,68.304152999999985],[-98.213897999999915,68.300537000000134],[-98.199722000000008,68.300262000000089],[-98.187499999999943,68.301926000000094],[-98.096663999999976,68.317764000000125],[-98.073897999999986,68.334990999999945],[-97.905838000000017,68.384155000000135],[-97.894118999999932,68.386459000000002],[-97.86471599999993,68.384995000000004],[-97.849166999999909,68.383040999999992],[-97.777785999999878,68.366378999999995],[-97.761123999999995,68.363312000000064],[-97.748885999999914,68.364699999999971],[-97.743056999999908,68.370528999999976],[-97.75140399999998,68.379700000000128],[-97.764174999999909,68.393600000000049],[-97.768616000000009,68.398041000000148],[-97.781951999999933,68.406647000000021],[-97.79611199999988,68.409988000000055],[-97.81138599999997,68.411377000000073],[-97.869719999999973,68.414153999999996],[-97.885559000000001,68.416382000000112],[-97.899993999999936,68.419707999999957],[-97.906386999999995,68.423874000000069],[-98.009734999999921,68.498032000000023],[-98.011397999999929,68.503052000000082],[-98.010833999999988,68.508041000000048],[-97.999725000000012,68.535262999999986],[-97.994155999999919,68.541091999999992],[-97.852492999999981,68.542480000000069],[-97.836394999999925,68.540268000000026],[-97.723891999999921,68.523041000000035],[-97.692764000000011,68.516663000000051],[-97.665008999999941,68.504715000000033],[-97.658339999999896,68.500549000000092],[-97.654174999999896,68.496094000000085],[-97.650557999999933,68.486098999999967],[-97.653884999999946,68.480545000000006],[-97.655272999999966,68.470260999999994],[-97.650283999999999,68.455551000000014],[-97.646118000000001,68.450820999999962],[-97.639175000000023,68.446640000000059],[-97.611663999999962,68.434708000000114],[-97.537780999999995,68.418320000000051],[-97.523055999999997,68.416931000000091],[-97.511123999999938,68.419434000000024],[-97.502228000000002,68.424698000000035],[-97.49888599999997,68.430267000000015],[-97.500564999999995,68.434982000000048],[-97.509170999999981,68.444427000000132],[-97.520554000000004,68.448029000000076],[-97.535552999999993,68.449141999999995],[-97.547501000000011,68.446640000000059],[-97.573333999999932,68.444427000000132],[-97.589171999999962,68.446640000000059],[-97.603332999999964,68.449996999999996],[-97.615004999999996,68.453598000000056],[-97.619155999999919,68.458328000000108],[-97.617767000000015,68.462493999999992],[-97.597778000000005,68.483597000000088],[-97.578613000000018,68.493042000000003],[-97.567779999999971,68.496368000000018],[-97.544448999999986,68.501389000000131],[-97.531112999999948,68.501938000000109],[-97.516952999999944,68.501663000000065],[-97.385559000000001,68.495254999999929],[-97.353606999999954,68.491089000000045],[-97.282776000000013,68.474152000000061],[-97.259170999999867,68.466660000000104],[-97.160278000000005,68.389435000000049],[-97.053329000000019,68.353316999999947],[-97.058334000000002,68.302765000000079],[-97.070007000000032,68.300262000000089],[-97.075835999999924,68.294433999999967],[-97.091110000000015,68.268051000000014],[-97.089447000000007,68.263320999999962],[-97.080291999999929,68.259155000000078],[-96.939162999999951,68.239700000000084],[-96.925003000000004,68.239150999999993],[-96.912505999999951,68.240814000000057],[-96.817779999999914,68.258331000000112],[-96.806380999999931,68.260818000000029],[-96.799438000000009,68.265548999999965],[-96.767775999999969,68.270263999999997],[-96.693877999999927,68.280272999999966],[-96.680556999999965,68.280822999999998],[-96.669158999999979,68.276931999999931],[-96.625274999999874,68.251663000000121],[-96.553328999999962,68.273605000000032],[-96.533066000000019,68.281936999999971],[-96.47084000000001,68.305542000000003],[-96.448883000000023,68.312194999999974],[-96.437209999999993,68.314697000000024],[-96.42471299999994,68.316086000000041],[-96.410552999999993,68.315536000000009],[-96.404174999999952,68.311371000000008],[-96.496947999999975,68.207764000000054],[-96.508895999999993,68.196365000000128],[-96.525832999999977,68.184142999999949],[-96.623046999999985,68.115540000000067],[-96.690551999999968,68.079987000000074],[-96.702224999999999,68.077484000000084],[-96.730285999999921,68.078323000000069],[-96.743057000000022,68.07777400000009],[-96.75556899999998,68.076096000000007],[-96.778884999999946,68.071380999999974],[-96.797225999999966,68.06109600000002],[-96.808883999999978,68.04942299999999],[-96.812209999999936,68.043869000000029],[-96.813323999999909,68.038589000000115],[-96.811660999999901,68.033599999999979],[-96.801940999999999,68.025818000000015],[-96.789169000000015,68.017212000000086],[-96.77305599999994,68.013884999999959],[-96.722778000000005,68.009719999999959],[-96.708343999999954,68.008605999999986],[-96.676101999999958,68.018599999999992],[-96.556655999999975,68.033324999999934],[-96.540282999999931,68.030273000000022],[-96.52806099999998,68.03166200000004],[-96.466399999999965,68.038879000000122],[-96.450835999999981,68.053040000000124],[-96.479996000000028,68.090271000000087],[-96.49110399999995,68.094147000000135],[-96.505004999999926,68.094436999999971],[-96.516113000000018,68.091095000000053],[-96.53443900000002,68.080826000000002],[-96.546950999999979,68.079437000000041],[-96.548339999999996,68.084152000000074],[-96.547501000000011,68.089432000000102],[-96.535277999999892,68.101089000000059],[-96.510009999999966,68.119431000000134],[-96.482498000000021,68.134720000000016],[-96.463057999999933,68.144149999999911],[-96.432220000000029,68.156097000000045],[-96.31082200000003,68.192200000000128],[-96.288329999999974,68.197754000000089],[-96.171386999999925,68.221649000000127],[-96.136123999999938,68.228592000000106],[-95.980285999999978,68.254715000000033],[-95.968338000000017,68.230820000000051],[-96.043334999999956,68.179428000000087],[-96.069167999999991,68.16137700000013],[-96.075012000000015,68.155548000000124],[-96.078612999999962,68.149994000000106],[-96.077498999999989,68.144989000000066],[-96.073623999999995,68.140274000000034],[-96.045837000000006,68.133331000000055],[-96.03443900000002,68.129700000000014],[-96.02806099999998,68.125259000000085],[-96.020553999999947,68.116089000000045],[-96.01916499999993,68.111098999999967],[-96.020279000000016,68.106094000000098],[-96.083618000000001,68.00221300000004],[-96.144164999999987,67.923598999999967],[-96.211669999999913,67.829162999999937],[-96.215285999999878,67.823608000000036],[-96.217223999999987,67.813309000000061],[-96.221389999999985,67.697754000000032],[-96.220000999999911,67.693038999999999],[-96.212508999999955,67.683868000000075],[-96.206116000000009,67.67942800000003],[-96.195540999999992,67.682754999999986],[-96.186934999999949,67.688873000000115],[-96.179717999999923,67.692748999999992],[-96.168335000000013,67.694977000000108],[-96.166655999999989,67.690262000000075],[-96.174712999999997,67.643051000000071],[-96.185271999999941,67.626373000000001],[-96.191939999999988,67.62164300000012],[-96.203339000000028,67.61914100000007],[-96.216400000000021,67.618591000000038],[-96.230834999999956,67.619979999999998],[-96.246657999999968,67.623306000000071],[-96.257781999999963,67.626923000000033],[-96.266402999999968,67.631088000000034],[-96.329726999999991,67.610260000000096],[-96.437774999999931,67.541367000000037],[-96.461394999999925,67.508880999999917],[-96.464721999999881,67.503326000000015],[-96.469161999999983,67.492751999999996],[-96.464721999999881,67.478043000000127],[-96.461120999999991,67.473312000000021],[-96.451675000000023,67.471374999999966],[-96.441939999999931,67.475540000000137],[-96.363892000000021,67.478043000000127],[-96.294158999999979,67.444702000000007],[-96.222778000000005,67.421920999999941],[-96.210006999999962,67.419144000000074],[-96.196380999999917,67.418869000000029],[-96.185821999999973,67.422211000000004],[-96.158051,67.43664600000011],[-96.141388000000006,67.448868000000061],[-96.135559000000001,67.454712000000086],[-96.118880999999931,67.466660000000104],[-96.107498000000021,67.469147000000021],[-96.09722899999997,67.464706000000092],[-96.069457999999997,67.433593999999971],[-96.070281999999963,67.428314000000114],[-96.124161000000015,67.377196999999967],[-96.166655999999989,67.341660000000047],[-96.177215999999873,67.336929000000112],[-96.208618000000001,67.326935000000105],[-96.218613000000005,67.322768999999994],[-96.226944000000003,67.316666000000055],[-96.251113999999916,67.25277699999998],[-96.252228000000002,67.247482000000048],[-96.243606999999884,67.243317000000047],[-96.129990000000021,67.21665999999999],[-96.114440999999999,67.213318000000072],[-96.102492999999981,67.214705999999978],[-96.091384999999946,67.217209000000139],[-95.921111999999994,67.278595000000053],[-95.817504999999926,67.331940000000145],[-95.756393000000003,67.367477000000065],[-95.739990000000034,67.376648000000046],[-95.603057999999919,67.383330999999998],[-95.58944699999995,67.383040999999992],[-95.576949999999954,67.380264000000068],[-95.565825999999959,67.376648000000046],[-95.549163999999962,67.368316999999934],[-95.53472899999997,67.359984999999995],[-95.528610000000015,67.35554500000012],[-95.525008999999955,67.351089000000059],[-95.553328999999962,67.313309000000118],[-95.561660999999958,67.307205000000124],[-95.618056999999965,67.278320000000065],[-95.638061999999991,67.270828000000108],[-95.677489999999977,67.254166000000112],[-95.696654999999964,67.244979999999998],[-95.763061999999877,67.212769000000094],[-95.807495000000017,67.186096000000134],[-95.823897999999986,67.174149],[-95.829726999999991,67.168319999999937],[-95.833327999999938,67.162766000000147],[-95.821670999999924,67.161102000000142],[-95.796951000000035,67.16304000000008],[-95.774719000000005,67.167755000000113],[-95.74221799999998,67.176651000000049],[-95.712218999999948,67.188309000000061],[-95.651397999999915,67.198868000000118],[-95.568893000000003,67.210541000000148],[-95.544158999999922,67.212494000000106],[-95.515839000000028,67.209717000000012],[-95.501113999999973,67.20748900000001],[-95.435546999999929,67.193863000000079],[-95.379439999999931,67.154708999999968],[-95.326110999999969,67.027205999999978],[-95.328613000000018,67.016937000000098],[-95.337218999999948,66.99054000000001],[-95.34333799999996,66.974701000000096],[-95.350280999999882,66.963882000000069],[-95.357773000000009,66.959991000000002],[-95.416396999999961,66.951935000000105],[-95.53472899999997,66.941086000000041],[-95.597778000000005,66.948868000000004],[-95.614166000000012,66.970261000000107],[-95.721114999999998,66.964706000000035],[-95.743331999999953,66.959991000000002],[-95.839171999999962,66.94802900000002],[-95.876099000000011,66.945816000000036],[-95.902495999999985,66.946640000000002],[-95.928054999999972,66.952484000000027],[-95.93638599999997,66.956649999999968],[-95.990279999999984,67.004990000000134],[-95.993880999999931,67.009720000000016],[-95.990554999999915,67.014998999999989],[-95.978881999999999,67.026657],[-95.961120999999991,67.043869000000029],[-95.93638599999997,67.065262000000132],[-95.932219999999973,67.069716999999969],[-95.946945000000028,67.072220000000129],[-95.958344000000011,67.069716999999969],[-95.967772999999909,67.065536000000066],[-96.004456000000005,67.045821999999987],[-96.046111999999937,67.016387999999949],[-96.051665999999955,67.010818000000086],[-96.053878999999995,67.000275000000101],[-96.046660999999972,66.991088999999988],[-96.040558000000033,66.986648999999943],[-96.023620999999935,66.978591999999992],[-96.025008999999955,66.973312000000135],[-96.033066000000019,66.967484000000013],[-96.042770000000019,66.963043000000084],[-96.110549999999932,66.950821000000133],[-96.12332200000003,66.950271999999984],[-96.138610999999912,66.953598],[-96.240828999999962,66.983597000000032],[-96.262512000000015,66.991088999999988],[-96.279175000000009,66.999145999999939],[-96.285278000000005,67.003600999999946],[-96.286941999999954,67.008606000000043],[-96.285827999999981,67.013611000000083],[-96.274170000000026,67.025269000000094],[-96.265288999999996,67.030548000000067],[-96.261947999999961,67.035812000000078],[-96.261123999999995,67.041092000000106],[-96.263625999999988,67.051086000000112],[-96.268889999999885,67.06053200000008],[-96.288054999999929,67.068329000000062],[-96.37721299999987,67.084717000000126],[-96.392226999999991,67.086928999999998],[-96.403884999999946,67.085541000000092],[-96.452498999999989,67.068329000000062],[-96.460555999999883,67.062195000000031],[-96.456664999999987,67.057754999999986],[-96.403884999999946,67.008330999999998],[-96.273620999999991,66.950271999999984],[-96.146392999999989,66.894714000000135],[-96.128051999999968,66.881653000000028],[-96.11721799999998,66.867752000000053],[-96.115829000000019,66.862761999999975],[-96.11721799999998,66.857483000000002],[-96.116652999999985,66.847488000000055],[-96.115554999999972,66.842484000000127],[-96.114165999999898,66.837494000000049],[-96.108886999999982,66.832764000000054],[-96.100554999999929,66.828598000000113],[-96.006667999999934,66.794434000000081],[-95.980559999999912,66.787491000000102],[-95.956115999999952,66.782211000000075],[-95.912215999999944,66.775543000000084],[-95.883621000000005,66.768875000000094],[-95.862212999999997,66.761107999999979],[-95.848052999999993,66.752777000000037],[-95.841948999999943,66.74832200000003],[-95.784728999999913,66.674149000000057],[-95.777495999999985,66.654984000000127],[-95.777221999999881,66.644714000000022],[-95.780838000000017,66.629150000000095],[-95.741378999999938,66.638046000000031],[-95.656386999999995,66.6602630000001],[-95.646666999999979,66.664428999999984],[-95.629714999999976,66.675536999999963],[-95.627486999999974,66.68609600000002],[-95.648894999999982,66.724152000000004],[-95.652221999999995,66.728592000000049],[-95.660552999999993,66.732757999999933],[-95.674437999999896,66.734146000000067],[-95.784728999999913,66.737198000000149],[-95.993056999999965,66.84275800000006],[-96.087783999999999,66.907486000000119],[-96.091674999999896,66.911925999999994],[-96.092772999999966,66.916931000000034],[-96.091674999999896,66.922211000000061],[-96.08555599999994,66.926926000000094],[-96.066956000000005,66.936371000000008],[-96.047500999999954,66.944702000000063],[-96.037216000000001,66.94802900000002],[-96.026108000000022,66.950271999999984],[-96.000290000000007,66.950546000000088],[-95.902495999999985,66.946640000000002],[-95.814437999999996,66.941360000000145],[-95.785004000000015,66.93691999999993],[-95.772780999999952,66.932754999999929],[-95.766662999999994,66.928314],[-95.763061999999877,66.923874000000012],[-95.760559000000001,66.913879000000065],[-95.756957999999997,66.90914900000007],[-95.75111400000003,66.90498400000007],[-95.738051999999982,66.901382000000126],[-95.724715999999944,66.900817999999958],[-95.516662999999994,66.902206000000092],[-95.493057000000022,66.90498400000007],[-95.472228999999913,66.911652000000061],[-95.389175000000023,66.911102000000028],[-95.336669999999913,66.893051000000014],[-95.323623999999882,66.889434999999992],[-95.311385999999914,66.889984000000084],[-95.300827000000027,66.893326000000059],[-95.291672000000005,66.898331000000098],[-95.267501999999979,66.91415400000011],[-95.259170999999981,66.920257999999933],[-95.220839999999896,66.968322999999941],[-95.21945199999999,66.973602000000142],[-95.226394999999968,66.982758000000103],[-95.232223999999974,66.987198000000092],[-95.289443999999946,67.024994000000049],[-95.345000999999968,67.084427000000119],[-95.352218999999991,67.148331000000042],[-95.346389999999985,67.15387000000004],[-95.266112999999905,67.212769000000094],[-95.166107000000011,67.276931999999988],[-95.162216000000001,67.282211000000132],[-95.163329999999974,67.287200999999982],[-95.171936000000017,67.291367000000093],[-95.18249499999996,67.29525799999999],[-95.217223999999931,67.306366000000139],[-95.279723999999874,67.319442999999978],[-95.306380999999874,67.326660000000061],[-95.314712999999927,67.330550999999957],[-95.332779000000016,67.34387200000009],[-95.336394999999982,67.348328000000038],[-95.384170999999981,67.444138000000009],[-95.339995999999928,67.499709999999993],[-95.331679999999949,67.505829000000006],[-95.324172999999917,67.516663000000051],[-95.321670999999924,67.527206000000035],[-95.323058999999944,67.531936999999971],[-95.330001999999922,67.541367000000037],[-95.343613000000005,67.554977000000122],[-95.34973100000002,67.559417999999994],[-95.466400000000021,67.637207000000046],[-95.492492999999968,67.643326000000059],[-95.535003999999958,67.646652000000074],[-95.548339999999996,67.649994000000049],[-95.693054000000018,67.704436999999984],[-95.707779000000016,67.723038000000031],[-95.709166999999923,67.727768000000083],[-95.708053999999947,67.733047000000056],[-95.704453000000001,67.738586000000055],[-95.698333999999988,67.744431000000134],[-95.68110699999994,67.756378000000097],[-95.671936000000017,67.761657999999954],[-95.64973399999991,67.767211999999972],[-95.637511999999958,67.768600000000049],[-95.626388999999961,67.771927000000005],[-95.577498999999989,67.787491000000102],[-95.558883999999978,67.797759999999926],[-95.550277999999878,67.803863999999976],[-95.544158999999922,67.809708000000001],[-95.53443900000002,67.820830999999998],[-95.525833000000034,67.836928999999998],[-95.522231999999974,67.852767999999969],[-95.527221999999995,67.872208000000114],[-95.452224999999999,67.981094000000041],[-95.416945999999996,68.027771000000143],[-95.42721599999993,68.032486000000006],[-95.47193900000002,68.054977000000008],[-95.475280999999939,68.058319000000097],[-95.472777999999948,68.06053200000008],[-95.461394999999868,68.063873000000115],[-95.404175000000009,68.069443000000035],[-95.34973100000002,68.074432000000002],[-95.343063000000029,68.074432000000002],[-95.075561999999877,68.068877999999984],[-95.071120999999948,68.063599000000011],[-95.065276999999924,68.060257000000036],[-95.054992999999911,68.055251999999996],[-95.043883999999935,68.051376000000118],[-95.023620999999991,68.04582199999993],[-95.008895999999936,68.044434000000024],[-94.86721799999998,68.034149000000127],[-94.839721999999938,68.034149000000127],[-94.788054999999986,68.040543000000127],[-94.72222899999997,68.054977000000008],[-94.714172000000019,68.059418000000107],[-94.707503999999972,68.065811000000053],[-94.696654999999964,68.078598000000056],[-94.693877999999984,68.083328000000108],[-94.604995999999971,68.139708999999982],[-94.37249799999995,68.221375000000023],[-94.210555999999997,68.262772000000041],[-94.199157999999954,68.267761000000007],[-94.193603999999993,68.272217000000069],[-94.192214999999976,68.276382000000069],[-94.191665999999941,68.281372000000147],[-94.192489999999907,68.292206000000022],[-94.193603999999993,68.298325000000034],[-94.205275999999913,68.313309000000118],[-94.209166999999979,68.323607999999979],[-94.210280999999952,68.328049000000078],[-94.210830999999985,68.361374000000126],[-94.208054000000004,68.366088999999988],[-94.203888000000006,68.370255000000043],[-94.123046999999985,68.416931000000091],[-94.104720999999984,68.424149000000057],[-94.00028999999995,68.460815000000025],[-93.968063000000029,68.468596999999932],[-93.953613000000018,68.471924000000058],[-93.936661000000015,68.474700999999982],[-93.922774999999945,68.475540000000137],[-93.893615999999952,68.474700999999982],[-93.875823999999909,68.477203000000031],[-93.81138599999997,68.488037000000134],[-93.661391999999978,68.520828000000051],[-93.656661999999983,68.523315000000139],[-93.619155999999975,68.544144000000074],[-93.553329000000019,68.586380000000077],[-93.559722999999963,68.611649000000114],[-93.621933000000013,68.624419999999986],[-93.647507000000019,68.626923000000147],[-93.65306099999998,68.626373000000115],[-93.705276000000026,68.657211000000132],[-93.697220000000016,68.749145999999939],[-93.695267000000001,68.751938000000052],[-93.639450000000011,68.780548000000067],[-93.571670999999924,68.834152000000074],[-93.567504999999926,68.839706000000092],[-93.566100999999946,68.849425999999994],[-93.634444999999971,68.959152000000131],[-93.642226999999934,68.963882000000012],[-93.666945999999996,68.972214000000008],[-93.731383999999991,68.974991000000102],[-93.925551999999868,68.974701000000039],[-94.030838000000017,68.918594000000098],[-94.039169000000015,68.914154000000053],[-94.055832000000009,68.901932000000102],[-94.068893000000003,68.891098000000056],[-94.079726999999991,68.847488000000055],[-94.071120999999891,68.843596999999988],[-94.034164000000033,68.833328000000108],[-94.021118000000001,68.836105000000032],[-93.933884000000035,68.855255],[-93.852492999999981,68.879149999999981],[-93.838607999999965,68.885268999999994],[-93.837783999999999,68.886383000000023],[-93.824722000000008,68.891373000000044],[-93.813889000000017,68.893050999999957],[-93.80999799999995,68.890549000000078],[-93.813889000000017,68.88499500000006],[-93.829726999999934,68.876083000000051],[-93.934157999999968,68.824997000000053],[-94.085006999999962,68.761108000000092],[-94.095276000000013,68.758040999999992],[-94.108046999999999,68.755264000000068],[-94.15972899999997,68.747756999999979],[-94.385559000000001,68.729155999999932],[-94.490828999999962,68.728867000000037],[-94.625,68.761383000000137],[-94.608886999999925,68.819443000000035],[-94.588897999999915,68.841370000000097],[-94.583327999999938,68.845825000000104],[-94.570847000000015,68.850266000000033],[-94.561661000000015,68.855255],[-94.556106999999997,68.859985000000052],[-94.553054999999972,68.864425999999924],[-94.545273000000009,68.884720000000073],[-94.548049999999932,68.888885000000073],[-94.557495000000017,68.893050999999957],[-94.569457999999941,68.893600000000106],[-94.577224999999999,68.896652000000017],[-94.585555999999997,68.903046000000074],[-94.589995999999985,68.908325000000048],[-94.605835000000013,68.951096000000064],[-94.604172000000005,68.961929000000055],[-94.599166999999966,68.965546000000018],[-94.587219000000005,68.968872000000033],[-94.553329000000019,68.973877000000073],[-94.37388599999997,69.003052000000139],[-94.224166999999966,69.027771000000143],[-94.163054999999986,69.052200000000084],[-94.151397999999972,69.057205000000124],[-94.072784000000013,69.126648000000046],[-94.072509999999966,69.144989000000066],[-94.137511999999901,69.131927000000019],[-94.22084000000001,69.1202550000001],[-94.235001000000011,69.119431000000134],[-94.248336999999935,69.120529000000033],[-94.312209999999993,69.144989000000066],[-94.323058999999944,69.149994000000106],[-94.327498999999989,69.15525800000006],[-94.329177999999899,69.16137700000013],[-94.309433000000013,69.294144000000131],[-94.306655999999975,69.300262000000089],[-94.303328999999962,69.304977000000122],[-94.291672000000005,69.313873000000058],[-94.284163999999976,69.318878000000097],[-94.259170999999924,69.326660000000061],[-94.166655999999989,69.342483999999956],[-94.043335000000013,69.357483000000059],[-94.025009000000011,69.359711000000004],[-93.955276000000026,69.362762000000032],[-93.736664000000019,69.399994000000049],[-93.626937999999939,69.432479999999941],[-93.574721999999952,69.441650000000038],[-93.562774999999988,69.442748999999992],[-93.526397999999915,69.438309000000004],[-93.532501000000025,69.429977000000008],[-93.547774999999945,69.420532000000094],[-93.67971799999998,69.347762999999929],[-93.691665999999941,69.34275800000006],[-93.741378999999995,69.324432000000058],[-93.753066999999987,69.320540999999992],[-93.764174999999966,69.320540999999992],[-93.828612999999962,69.265549000000078],[-93.856110000000001,69.176926000000037],[-93.856658999999979,69.172211000000004],[-93.845001000000025,69.164992999999981],[-93.837218999999891,69.164429000000041],[-93.634734999999978,69.251663000000121],[-93.467498999999918,69.317490000000021],[-93.456664999999987,69.323043999999982],[-93.362777999999992,69.37164300000012],[-93.365279999999984,69.376082999999994],[-93.379439999999988,69.376373000000001],[-93.459166999999866,69.359711000000004],[-93.470001000000025,69.356644000000074],[-93.478057999999976,69.353317000000118],[-93.498046999999985,69.349152000000117],[-93.511947999999961,69.349426000000051],[-93.565001999999936,69.367752000000053],[-93.560546999999929,69.383881000000031],[-93.538054999999929,69.410538000000088],[-93.527221999999995,69.421646000000067],[-93.515839000000028,69.425537000000134],[-93.503066999999874,69.427475000000072],[-93.488892000000021,69.434982000000048],[-93.439437999999939,69.475265999999976],[-93.441375999999991,69.48054499999995],[-93.487777999999992,69.502777000000037],[-93.509734999999921,69.513046000000088],[-93.532501000000025,69.521103000000039],[-93.540833000000021,69.523315000000082],[-93.587219000000005,69.528046000000018],[-93.621933000000013,69.527205999999978],[-93.683883999999978,69.522217000000012],[-93.709732000000031,69.516098],[-93.808884000000035,69.488876000000062],[-93.869719999999973,69.451660000000118],[-94.045272999999952,69.439148000000102],[-94.279175000000009,69.440262000000075],[-94.299728000000016,69.443038999999999],[-94.313048999999978,69.446640000000059],[-94.343886999999938,69.459152000000074],[-94.451674999999966,69.518600000000049],[-94.502501999999993,69.556366000000025],[-94.591948999999943,69.637206999999989],[-94.629439999999988,69.683044000000052],[-94.670273000000009,69.677475000000072],[-94.712783999999999,69.67164600000001],[-94.749435000000005,69.663605000000132],[-94.755004999999926,69.661652000000004],[-94.764174999999966,69.65498400000007],[-94.766662999999937,69.651093000000003],[-94.762222000000008,69.644714000000135],[-94.742217999999923,69.628311000000053],[-94.724441999999954,69.61442599999998],[-94.725554999999929,69.608597000000145],[-94.730835000000013,69.602767999999969],[-94.740279999999984,69.597488000000055],[-94.769729999999981,69.583054000000061],[-94.801101999999901,69.572219999999959],[-94.820007000000032,69.56721500000009],[-94.831116000000009,69.56581100000011],[-94.846664000000033,69.565536000000122],[-94.862777999999878,69.566940000000102],[-94.951950000000011,69.584427000000119],[-95.010558999999944,69.603043000000127],[-95,69.618865999999969],[-95.009444999999971,69.621643000000063],[-95.021118000000001,69.621643000000063],[-95.078612999999962,69.616379000000109],[-95.168609999999887,69.630538999999999],[-95.396118000000001,69.678864000000033],[-95.40834000000001,69.681931000000134],[-95.423049999999932,69.686096000000134],[-95.544997999999964,69.726929000000041],[-95.648055999999997,69.780273000000022],[-95.71556099999998,69.791366999999923],[-95.724715999999944,69.789978000000133],[-95.728332999999907,69.789153999999996],[-95.738892000000021,69.786102000000028],[-95.757232999999928,69.777205999999921],[-95.758620999999948,69.772766000000104],[-95.86332699999997,69.772216999999955],[-95.960830999999985,69.778045999999961],[-95.975554999999929,69.781937000000028],[-96.020279000000016,69.80442800000003],[-96.035827999999924,69.813873000000115],[-96.074447999999961,69.841934000000037],[-96.087783999999999,69.869141000000127],[-96.082229999999925,69.873596000000134],[-96.085007000000019,69.91137700000013],[-96.097778000000005,69.946639999999945],[-96.116104000000007,69.953872999999987],[-96.177215999999873,69.964705999999921],[-96.195540999999992,69.965546000000018],[-96.198607999999979,69.964995999999985],[-96.209441999999967,69.961655000000121],[-96.217223999999987,69.958327999999995],[-96.220550999999944,69.95748900000001],[-96.235000999999954,69.95748900000001],[-96.246947999999918,69.958878000000027],[-96.257232999999928,69.963043000000027],[-96.272780999999952,69.971099999999979],[-96.38137799999987,70.02748100000008],[-96.402495999999871,70.039978000000076],[-96.459441999999967,70.075546000000088],[-96.500290000000007,70.101379000000009],[-96.509170999999924,70.108597000000032],[-96.525283999999942,70.122756999999979],[-96.531677000000002,70.131088000000034],[-96.55610699999994,70.191925000000083],[-96.568892999999946,70.224425999999994],[-96.571670999999867,70.234421000000054],[-96.570281999999963,70.251099000000124],[-96.568619000000012,70.268600000000106],[-96.562774999999931,70.300262000000032],[-96.558608999999933,70.3119200000001],[-96.555557000000022,70.317490000000134],[-96.548339999999996,70.328872999999987],[-96.535003999999958,70.344147000000078],[-96.294723999999974,70.522491000000116],[-96.232773000000009,70.562195000000031],[-96.078887999999893,70.587494000000049],[-96.069732999999928,70.587769000000037],[-96.045273000000009,70.584152000000074],[-96.041107000000011,70.576934999999992],[-96.033324999999934,70.572769000000108],[-95.995269999999948,70.559707999999944],[-95.93499799999995,70.547485000000108],[-95.92332499999992,70.545258000000047],[-95.806106999999997,70.528869999999984],[-95.797225999999966,70.529434000000094],[-95.789443999999946,70.536652000000117],[-95.791381999999999,70.542755000000056],[-95.799164000000019,70.549149000000114],[-95.855834999999956,70.553314000000114],[-95.914168999999902,70.559417999999937],[-95.931670999999938,70.562195000000031],[-95.96444699999995,70.568878000000041],[-96.000564999999995,70.579987000000074],[-96.049987999999928,70.600266000000033],[-96.058334000000002,70.605820000000051],[-96.061385999999857,70.617203000000018],[-96.055557000000022,70.643050999999957],[-96.048339999999996,70.646942000000024],[-95.952498999999989,70.679702999999961],[-95.848343,70.706940000000088],[-95.815551999999968,70.70915199999996],[-95.817779999999971,70.710265999999933],[-95.901947000000007,70.707764000000054],[-95.932770000000005,70.701096000000064],[-96.115554999999972,70.656097000000102],[-96.138061999999991,70.646378000000084],[-96.149993999999936,70.637206999999989],[-96.152785999999935,70.632477000000108],[-96.154723999999987,70.624694999999974],[-96.153885000000002,70.621643000000063],[-96.158051,70.617476999999951],[-96.160277999999948,70.616379000000052],[-96.16361999999998,70.615540000000124],[-96.202788999999996,70.621643000000063],[-96.376098999999954,70.673035000000027],[-96.385284000000013,70.677765000000022],[-96.394729999999981,70.683594000000028],[-96.401108000000022,70.690536000000122],[-96.410003999999958,70.702484000000027],[-96.415557999999976,70.71527100000003],[-96.422500999999954,70.726089000000002],[-96.43472300000002,70.737198000000035],[-96.446654999999964,70.741928000000087],[-96.53694200000001,70.763321000000019],[-96.580565999999976,70.777480999999909],[-96.603881999999942,70.788040000000137],[-96.611938000000009,70.794434000000024],[-96.61500499999994,70.80442800000003],[-96.61361699999992,70.8211060000001],[-96.601944000000003,70.849990999999989],[-96.591674999999952,70.866928000000144],[-96.578613000000018,70.878035999999952],[-96.571121000000005,70.883040999999992],[-96.545272999999895,70.904983999999956],[-96.53083799999996,70.921371000000136],[-96.52416999999997,70.931656000000032],[-96.513061999999991,70.949707000000046],[-96.510833999999932,70.955826000000059],[-96.503066999999987,70.99693300000007],[-96.495833999999888,71.040268000000083],[-96.481673999999884,71.043319999999994],[-96.450286999999946,71.044983000000116],[-96.414444000000003,71.053589000000045],[-96.406661999999926,71.058594000000085],[-96.369995000000017,71.089981000000023],[-96.371108999999933,71.093048000000124],[-96.375823999999966,71.098037999999974],[-96.40943900000002,71.119431000000077],[-96.417770000000019,71.113602000000071],[-96.420273000000009,71.107208000000014],[-96.412215999999944,71.095824999999991],[-96.410003999999958,71.089705999999978],[-96.413619999999923,71.084152000000017],[-96.421111999999994,71.0816650000001],[-96.440825999999959,71.079163000000051],[-96.461394999999925,71.080551000000128],[-96.476669000000015,71.08526599999999],[-96.50556899999998,71.097214000000008],[-96.538329999999974,71.11303700000002],[-96.552215999999987,71.119980000000055],[-96.560546999999985,71.126373000000001],[-96.559433000000013,71.1308140000001],[-96.553878999999995,71.136932000000058],[-96.548614999999927,71.140548999999965],[-96.467223999999931,71.165267999999969],[-96.457992999999988,71.195564000000047],[-96.462203999999986,71.255501000000038],[-96.504455999999891,71.276093000000117],[-96.503890999999953,71.277205999999978],[-96.488891999999964,71.286102000000085],[-96.278060999999923,71.326384999999959],[-96.24499499999996,71.353866999999923],[-96.21833799999996,71.375809000000004],[-96.193329000000006,71.389984000000084],[-96.168335000000013,71.399993999999992],[-96.134170999999981,71.409714000000065],[-96.046386999999982,71.418045000000006],[-96.027785999999935,71.417755],[-95.926392000000021,71.400542999999971],[-95.893889999999942,71.390823000000069],[-95.882766999999944,71.384155000000078],[-95.878875999999991,71.378586000000098],[-95.878052000000025,71.37303200000008],[-95.878875999999991,71.367203000000075],[-95.859160999999972,71.354980000000012],[-95.830001999999922,71.343048000000067],[-95.792220999999927,71.328049000000021],[-95.673049999999989,71.287491000000102],[-95.658889999999985,71.285537999999974],[-95.551102000000014,71.289978000000019],[-95.535278000000005,71.290816999999947],[-95.455276000000026,71.367751999999996],[-95.451401000000033,71.375809000000004],[-95.547775000000001,71.487762000000032],[-95.779998999999975,71.503875999999991],[-95.832779000000016,71.515823000000125],[-95.936660999999901,71.546646000000123],[-95.943054000000018,71.553589000000102],[-95.908339999999953,71.600540000000137],[-95.895003999999915,71.610535000000027],[-95.889998999999989,71.613312000000121],[-95.877212999999983,71.61831699999999],[-95.863892000000021,71.619430999999963],[-95.812209999999936,71.621918000000051],[-95.744719999999973,71.624145999999996],[-95.678878999999995,71.646378000000084],[-95.539718999999991,71.703597999999943],[-95.399733999999967,71.718597000000045],[-95.301620000000014,71.721099999999979],[-95.289443999999946,71.753601000000117],[-95.289443999999946,71.757491999999957],[-95.288054999999872,71.761932000000002],[-95.285827999999981,71.767212000000086],[-95.239440999999999,71.82249500000006],[-95.226944000000003,71.826660000000061],[-95.073059000000001,71.84137000000004],[-94.890288999999996,71.844711000000075],[-94.856383999999991,71.843322999999998],[-94.838897999999972,71.841094999999996],[-94.795272999999952,71.833328000000051],[-94.744155999999975,71.823044000000039],[-94.73443599999996,71.823317999999972],[-94.716399999999965,71.826096000000121],[-94.653884999999946,71.845261000000107],[-94.612503000000004,71.859711000000004],[-94.606658999999979,71.863312000000064],[-94.607772999999952,71.866378999999995],[-94.615279999999984,71.868866000000082],[-94.629715000000033,71.866928000000144],[-94.65583799999996,71.861923000000104],[-94.706115999999952,71.848038000000031],[-94.743056999999965,71.839432000000102],[-94.756957999999941,71.837493999999936],[-94.775283999999942,71.838882000000069],[-94.783066000000019,71.84137000000004],[-94.826110999999969,71.847487999999998],[-94.853607000000011,71.849426000000108],[-94.903885000000002,71.850266000000147],[-95.102492999999981,71.851089000000002],[-95.119155999999975,71.850266000000147],[-95.157227000000034,71.845825000000048],[-95.179992999999968,71.843048000000124],[-95.180557000000022,71.842208999999968],[-95.192489999999964,71.84137000000004],[-95.213333000000034,71.843048000000124],[-95.231110000000001,71.849152000000004],[-95.240829000000019,71.853867000000037],[-95.25167799999997,71.86053499999997],[-95.256667999999934,71.866928000000144],[-95.255004999999983,71.895537999999988],[-95.222778000000005,71.942200000000071],[-95.217498999999862,71.944976999999994],[-95.201400999999976,71.94720500000011],[-94.97193900000002,71.975814999999955],[-94.741104000000007,71.99192800000003],[-94.698043999999982,71.993590999999924],[-94.661666999999966,71.994980000000112],[-94.579726999999991,71.99693300000007],[-94.56361400000003,71.99693300000007],[-94.530288999999982,71.99443100000002],[-94.499435000000005,71.988037000000134],[-94.487212999999997,71.983322000000101],[-94.393615999999952,71.938309000000004],[-94.387222000000008,71.933868000000075],[-94.388610999999912,71.924149000000114],[-94.460555999999997,71.849426000000108],[-94.47222899999997,71.847214000000065],[-94.506667999999991,71.847762999999986],[-94.521118000000001,71.849990999999932],[-94.539444000000003,71.851379000000065],[-94.562499999999943,71.849990999999932],[-94.574448000000018,71.84693900000002],[-94.64416499999993,71.818329000000006],[-94.61860699999994,71.753326000000072],[-94.611937999999952,71.74971000000005],[-94.599730999999906,71.744704999999954],[-94.594161999999983,71.743317000000047],[-94.569457999999941,71.744979999999998],[-94.555831999999896,71.750000000000057],[-94.538604999999961,71.758331000000112],[-94.536391999999978,71.761108000000036],[-94.528609999999958,71.771378000000141],[-94.519729999999925,71.78915400000011],[-94.497498000000007,71.818329000000006],[-94.48832699999997,71.824158000000011],[-94.484726000000023,71.824706999999933],[-94.392226999999991,71.81442300000009],[-94.366104000000007,71.802475000000072],[-94.356658999999866,71.796371000000022],[-94.354720999999984,71.792479999999955],[-94.389998999999989,71.71775800000006],[-94.419448999999986,71.667205999999965],[-94.423889000000031,71.66137700000013],[-94.418335000000013,71.659987999999942],[-94.40695199999999,71.660812000000135],[-94.368880999999988,71.675262000000032],[-94.267226999999991,71.730820000000051],[-94.258895999999993,71.741928000000087],[-94.255843999999968,71.753876000000105],[-94.242766999999958,71.770828000000108],[-94.228058000000033,71.781661999999983],[-94.207229999999925,71.789428999999927],[-94.194442999999922,71.791931000000034],[-94.181670999999994,71.791931000000034],[-94.036941999999954,71.787200999999982],[-94.023620999999991,71.785812000000021],[-94.014724999999885,71.781096999999988],[-94.008347000000015,71.774993999999992],[-94.006393000000003,71.763321000000019],[-93.993880999999988,71.753052000000139],[-93.972503999999958,71.745818999999983],[-93.942490000000021,71.743590999999981],[-93.909728999999913,71.744979999999998],[-93.888061999999991,71.748322000000087],[-93.871383999999978,71.753052000000139],[-93.850280999999995,71.763321000000019],[-93.830841000000021,71.771652000000074],[-93.818892999999889,71.774703999999986],[-93.802215999999987,71.775542999999971],[-93.784164000000033,71.774155000000064],[-93.741942999999992,71.769150000000025],[-93.726669000000015,71.76638800000012],[-93.71166999999997,71.761383000000023],[-93.707229999999925,71.754990000000078],[-93.694153000000028,71.716095000000109],[-93.696655000000021,71.710815000000082],[-93.704452999999944,71.705261000000064],[-93.737777999999992,71.689423000000033],[-93.764724999999999,71.679703000000131],[-93.811110999999926,71.657486000000063],[-93.818618999999956,71.651932000000102],[-93.81138599999997,71.645538000000045],[-93.797226000000023,71.639435000000105],[-93.658339999999896,71.581940000000031],[-93.618057000000022,71.56860400000005],[-93.589447000000007,71.561371000000065],[-93.513061999999877,71.544707999999957],[-93.494994999999903,71.541656000000046],[-93.476944000000003,71.540267999999969],[-93.428328999999962,71.534149000000127],[-93.412216000000001,71.530823000000055],[-93.230835000000013,71.473602000000142],[-93.214171999999962,71.467209000000139],[-93.201401000000033,71.461380000000133],[-93.18638599999997,71.435806000000127],[-93.18638599999997,71.430267000000129],[-93.18998699999986,71.423874000000012],[-93.193877999999927,71.419433999999967],[-93.195540999999935,71.413605000000132],[-93.190551999999968,71.408035000000098],[-93.180556999999965,71.401093000000003],[-93.142501999999979,71.374985000000038],[-93.128875999999991,71.368866000000025],[-93.101944000000003,71.367477000000008],[-93.062774999999988,71.36943100000002],[-93.045272999999952,71.367751999999996],[-93.029175000000009,71.36442599999998],[-92.997222999999963,71.353866999999923],[-92.985824999999863,71.348877000000073],[-92.977218999999934,71.343872000000033],[-92.973891999999978,71.340820000000122],[-92.941939999999931,71.288879000000009],[-92.938599000000011,71.270538000000045],[-92.936110999999926,71.247481999999991],[-92.931945999999925,71.220535000000041],[-92.930831999999953,71.214432000000102],[-92.923889000000031,71.207763999999941],[-92.854445999999996,71.151382000000126],[-92.862777999999992,71.139434999999992],[-92.869155999999975,71.128036000000122],[-92.888610999999969,71.074707000000103],[-92.889998999999932,71.065810999999997],[-92.906951999999933,70.912491000000102],[-93.030838000000017,70.878860000000088],[-93.040833000000021,70.877762000000018],[-93.048339999999996,70.873870999999951],[-93.046111999999937,70.867203000000018],[-93.042769999999905,70.863876000000062],[-93.027495999999985,70.852768000000083],[-92.982498000000021,70.825546000000145],[-92.958618000000001,70.817490000000078],[-92.928328999999962,70.811371000000008],[-92.911391999999978,70.809982000000048],[-92.813048999999978,70.805817000000047],[-92.688598999999954,70.775542999999971],[-92.676666000000012,70.771652000000074],[-92.641112999999962,70.71527100000003],[-92.639449999999954,70.709991000000116],[-92.642501999999979,70.706375000000094],[-92.621933000000013,70.683594000000028],[-92.592772999999966,70.685806000000127],[-92.430557000000022,70.666091999999992],[-92.418059999999969,70.66304000000008],[-92.208053999999947,70.610260000000039],[-92.199158000000011,70.606644000000017],[-92.169158999999979,70.590271000000143],[-92.159163999999976,70.584152000000074],[-92.157501000000025,70.579163000000108],[-92.156661999999983,70.573044000000095],[-92.168335000000013,70.569992000000013],[-92.196105999999986,70.571105999999986],[-92.228607000000011,70.573608000000036],[-92.245543999999995,70.571380999999974],[-92.25,70.569716999999969],[-92.265014999999892,70.551926000000037],[-92.265014999999892,70.548035000000141],[-92.25,70.501389000000131],[-92.238051999999982,70.487198000000092],[-92.116652999999985,70.470825000000048],[-92.110000999999897,70.468322999999998],[-91.996947999999975,70.390823000000069],[-91.987777999999992,70.355820000000108],[-91.992492999999968,70.320540999999992],[-91.995269999999948,70.316665999999998],[-91.985549999999932,70.289703000000031],[-91.959732000000031,70.2586060000001],[-91.952224999999999,70.255264000000125],[-91.946945000000028,70.258041000000048],[-91.942214999999976,70.263610999999969],[-91.920273000000009,70.296370999999965],[-91.900283999999999,70.330826000000116],[-91.903610000000015,70.337204000000042],[-91.904449,70.343323000000112],[-91.89805599999994,70.349152000000117],[-91.890288999999996,70.354431000000091],[-91.878052000000025,70.358321999999987],[-91.867492999999968,70.360260000000096],[-91.853058000000033,70.361374000000069],[-91.73721299999994,70.358596999999975],[-91.729720999999984,70.356934000000081],[-91.703887999999949,70.34526100000005],[-91.698883000000023,70.342484000000127],[-91.69387799999987,70.336380000000077],[-91.636123999999938,70.231658999999979],[-91.565276999999924,70.200546000000145],[-91.524169999999913,70.179153000000042],[-91.513625999999931,70.167206000000078],[-91.511948000000018,70.158875000000023],[-91.511397999999986,70.152771000000143],[-91.516953000000001,70.146378000000027],[-91.529174999999952,70.142487000000131],[-91.542495999999915,70.140823000000125],[-91.578063999999927,70.13749700000011],[-91.916655999999989,70.119980000000055],[-91.953339000000028,70.118317000000104],[-91.972228999999913,70.118591000000038],[-92.003890999999953,70.121368000000132],[-92.021392999999989,70.123596000000077],[-92.036117999999931,70.126923000000033],[-92.049438000000009,70.132202000000007],[-92.05749499999996,70.136932000000058],[-92.234436000000017,70.212203999999986],[-92.268341000000021,70.208878000000141],[-92.393065999999976,70.150543000000027],[-92.450287000000003,70.0711060000001],[-92.432220000000029,70.075546000000088],[-92.285278000000005,70.089706000000035],[-92.268341000000021,70.090546000000074],[-92.177489999999977,70.088318000000072],[-92.129990000000021,70.084991000000002],[-92.087508999999898,70.079711999999972],[-92.026397999999972,70.066376000000048],[-91.993056999999965,70.058594000000085],[-91.985274999999945,70.053864000000033],[-91.939712999999983,70.020263999999997],[-91.946654999999907,70.015823000000069],[-92.114440999999999,69.956375000000037],[-92.148894999999925,69.946639999999945],[-92.203887999999949,69.92053199999998],[-92.369445999999982,69.847763000000043],[-92.543335000000013,69.780548000000067],[-92.658614999999998,69.761108000000092],[-92.778610000000015,69.722214000000008],[-92.775283999999999,69.706375000000094],[-92.565552000000025,69.71276899999998],[-92.551392000000021,69.712494000000106],[-92.535004000000015,69.709427000000005],[-92.535277999999948,69.705261000000121],[-92.709732000000031,69.673874000000012],[-92.728881999999999,69.67164600000001],[-92.743805000000009,69.671951000000035],[-92.777221999999938,69.676086000000055],[-92.858046999999999,69.6827550000001],[-92.871384000000035,69.682480000000112],[-92.908889999999985,69.680541999999946],[-92.922774999999888,69.679427999999973],[-92.923614999999927,69.678314],[-92.920273000000009,69.669708000000071],[-92.897506999999962,69.665543000000071],[-92.836120999999991,69.655822999999998],[-92.827498999999989,69.655822999999998],[-92.694442999999978,69.656372000000147],[-92.634726999999998,69.671088999999938],[-92.629378999999972,69.673592000000099],[-92.619056999999998,69.675758000000087],[-92.5625,69.687484999999981],[-92.523620999999935,69.692749000000106],[-92.506957999999941,69.693588000000091],[-92.340835999999967,69.694138000000123],[-92.305831999999896,69.665817000000004],[-92.205276000000026,69.645538000000101],[-92.091110000000015,69.624695000000031],[-92.088333000000034,69.62303200000008],[-92.088607999999965,69.618865999999969],[-92.090835999999911,69.616089000000102],[-92.110549999999932,69.613036999999963],[-92.122771999999998,69.612198000000035],[-92.134170999999981,69.612488000000042],[-92.243606999999884,69.630264000000011],[-92.28195199999999,69.639984000000084],[-92.291107000000011,69.641373000000101],[-92.300551999999925,69.641663000000108],[-92.297501000000011,69.636932000000002],[-92.124709999999936,69.554977000000065],[-92.084166999999979,69.544708000000014],[-91.938323999999909,69.517761000000121],[-91.803329000000019,69.498870999999951],[-91.804168999999888,69.504990000000021],[-91.798339999999939,69.513885000000016],[-91.497498000000007,69.658600000000092],[-91.485001000000011,69.663315000000125],[-91.475280999999939,69.664429000000098],[-91.450835999999981,69.65887499999991],[-91.418883999999935,69.65554800000001],[-91.314163000000008,69.652771000000087],[-91.221114999999998,69.653320000000008],[-91.202224999999942,69.655258000000003],[-91.188599000000011,69.65387000000004],[-91.097777999999948,69.638321000000133],[-91.094161999999983,69.636108000000036],[-91.091949,69.631652999999972],[-91.095275999999956,69.626647999999932],[-91.101943999999946,69.620819000000097],[-91.105835000000013,69.619141000000013],[-91.334441999999967,69.552765000000022],[-91.36082499999992,69.54553199999998],[-91.380554000000018,69.542480000000069],[-91.396118000000001,69.541091999999992],[-91.460555999999997,69.539703000000145],[-91.494720000000029,69.537201000000096],[-91.514450000000011,69.534148999999957],[-91.562774999999931,69.522491000000116],[-91.570281999999963,69.520264000000054],[-91.56639100000001,69.514708999999982],[-91.557770000000005,69.508041000000048],[-91.553878999999995,69.505554000000132],[-91.402221999999938,69.522217000000012],[-91.333618000000001,69.534988000000112],[-91.321670999999924,69.538879000000009],[-91.192215000000033,69.562759000000028],[-91.17971799999998,69.558868000000132],[-91.160277999999892,69.546097000000032],[-91.15055799999999,69.537201000000096],[-91.146666999999923,69.531662000000097],[-91.143616000000009,69.525268999999923],[-91.138610999999855,69.519150000000081],[-91.128326000000015,69.514160000000061],[-91.114166000000012,69.510817999999915],[-91.102782999999988,69.508881000000088],[-90.969727000000034,69.511383000000137],[-90.830001999999922,69.484984999999995],[-90.758620999999948,69.482758000000103],[-90.751953000000015,69.487198000000149],[-90.751403999999866,69.49275200000011],[-90.758057000000008,69.501389000000131],[-90.755843999999968,69.507217000000082],[-90.754181000000017,69.509155000000021],[-90.716109999999958,69.539429000000041],[-90.698607999999922,69.539429000000041],[-90.651108000000022,69.534424000000001],[-90.536666999999909,69.513885000000016],[-90.493332000000009,69.504166000000055],[-90.436661000000015,69.489700000000028],[-90.318619000000012,69.454437000000041],[-90.307769999999948,69.450272000000041],[-90.307769999999948,69.44720500000011],[-90.319457999999997,69.440536000000009],[-90.34445199999999,69.432205000000124],[-90.358046999999942,69.429703000000075],[-90.396392999999875,69.428589000000102],[-90.411391999999921,69.431365999999969],[-90.427489999999977,69.440811000000053],[-90.43360899999999,69.444976999999938],[-90.438323999999966,69.448029000000076],[-90.450561999999991,69.450272000000041],[-90.463332999999921,69.448593000000017],[-90.493332000000009,69.440811000000053],[-90.555556999999965,69.422485000000052],[-90.613891999999908,69.451096000000007],[-90.621932999999956,69.453323000000012],[-90.703612999999962,69.453598000000056],[-90.704453000000001,69.451385000000073],[-90.698607999999922,69.446091000000138],[-90.636948000000018,69.429703000000075],[-90.585830999999985,69.419144000000017],[-90.582229999999925,69.416931000000034],[-90.584732000000031,69.41415399999994],[-90.600829999999974,69.408599999999979],[-90.694991999999957,69.389709000000096],[-90.705275999999969,69.387772000000098],[-90.718613000000005,69.387772000000098],[-90.741378999999938,69.382750999999928],[-90.790282999999988,69.362762000000032],[-90.809432999999956,69.342209000000139],[-90.813048999999921,69.338318000000072],[-90.815826000000015,69.333327999999995],[-90.818619000000012,69.298598999999967],[-90.815001999999993,69.293319999999994],[-90.80860899999999,69.287490999999989],[-90.805557000000022,69.282761000000107],[-90.803878999999995,69.259720000000073],[-90.804717999999923,69.255829000000006],[-90.809432999999956,69.253326000000015],[-90.822234999999978,69.251663000000121],[-90.903885000000002,69.246368000000075],[-90.920837000000006,69.246368000000075],[-90.931380999999931,69.247482000000048],[-91.081115999999952,69.266936999999984],[-91.214721999999938,69.290268000000083],[-91.296386999999925,69.3119200000001],[-91.345276000000013,69.328049000000021],[-91.355834999999956,69.332214000000022],[-91.426391999999964,69.350540000000024],[-91.438599000000011,69.352768000000026],[-91.447220000000016,69.352768000000026],[-91.446655000000021,69.349716000000058],[-91.431945999999982,69.33859300000006],[-91.335281000000009,69.304428000000144],[-91.130553999999961,69.24192800000003],[-91.031386999999938,69.218323000000055],[-90.918883999999935,69.160812000000078],[-90.895003999999972,69.150818000000072],[-90.815001999999993,69.133606000000043],[-90.664718999999991,69.083328000000051],[-90.654998999999918,69.078049000000078],[-90.654174999999952,69.07609599999995],[-90.654449,69.070541000000048],[-90.660552999999993,69.059982000000048],[-90.669448999999929,69.049987999999985],[-90.583892999999989,68.928864000000033],[-90.544998000000021,68.911102000000142],[-90.528884999999946,68.908600000000092],[-90.47444200000001,68.890549000000078],[-90.436385999999914,68.874419999999986],[-90.419448999999986,68.840820000000065],[-90.446105999999986,68.779709000000139],[-90.449158000000011,68.77609300000006],[-90.454177999999956,68.773605000000089],[-90.464721999999995,68.770827999999995],[-90.478332999999964,68.768326000000116],[-90.492492999999968,68.767761000000064],[-90.497498000000007,68.768326000000116],[-90.501113999999973,68.770827999999995],[-90.513900999999976,68.759155000000135],[-90.526672000000019,68.744431000000134],[-90.527785999999992,68.736649],[-90.522507000000019,68.729980000000069],[-90.506957999999997,68.724990999999932],[-90.480285999999921,68.707764000000111],[-90.479172000000005,68.705826000000002],[-90.47444200000001,68.530822999999941],[-90.509734999999978,68.495254999999929],[-90.519454999999994,68.487487999999985],[-90.528335999999911,68.483322000000101],[-90.557770000000005,68.474700999999982],[-90.584732000000031,68.465546000000131],[-90.603881999999999,68.455826000000059],[-90.607772999999952,68.451096000000007],[-90.606658999999979,68.446091000000138],[-90.603881999999999,68.439697000000081],[-90.601395000000025,68.436371000000065],[-90.55999799999995,68.423599000000024],[-90.523894999999982,68.414428999999984],[-90.466948999999886,68.403869999999984],[-90.361938000000009,68.384155000000135],[-90.332779000000016,68.378036000000122],[-90.317504999999983,68.373306000000071],[-90.315001999999993,68.369980000000055],[-90.319167999999991,68.368317000000104],[-90.343886999999938,68.365265000000022],[-90.367492999999911,68.345261000000107],[-90.271392999999989,68.238876000000118],[-90.255004999999926,68.23275799999999],[-90.232772999999952,68.230270000000019],[-90.207229999999925,68.231093999999985],[-90.178604000000007,68.235809000000017],[-90.144454999999994,68.243866000000025],[-90.132216999999912,68.24859600000002],[-90.122771999999941,68.25360100000006],[-90.119720000000029,68.257216999999969],[-90.118057000000022,68.262206999999989],[-90.038604999999961,68.352202999999975],[-89.985275000000001,68.396102999999982],[-89.912216000000001,68.467209000000025],[-89.893065999999919,68.543319999999937],[-89.911666999999966,68.547484999999938],[-89.919998000000021,68.553588999999988],[-89.927779999999984,68.563599000000067],[-89.948607999999979,68.599426000000051],[-89.950561999999991,68.60386699999998],[-89.949721999999952,68.607758000000047],[-89.894729999999868,68.65248100000008],[-89.80972300000002,68.71026599999999],[-89.802489999999921,68.712203999999929],[-89.789168999999958,68.71026599999999],[-89.780563000000029,68.705826000000002],[-89.763335999999924,68.690536000000009],[-89.757507000000032,68.684708000000057],[-89.746947999999975,68.669708000000128],[-89.729172000000005,68.699142000000109],[-89.693328999999949,68.763885000000016],[-89.68472300000002,68.810257000000092],[-89.687499999999943,68.819716999999969],[-89.689986999999917,68.824707000000046],[-89.714721999999995,68.846939000000077],[-89.733886999999925,68.881653000000142],[-89.739166000000012,68.892761000000121],[-89.756957999999884,68.939972000000012],[-89.75556899999998,68.954162999999994],[-89.753066999999987,68.958327999999995],[-89.71665999999999,69.006104000000107],[-89.707229999999925,69.014709000000096],[-89.700561999999991,69.019150000000025],[-89.684433000000013,69.028870000000097],[-89.666107000000011,69.038315000000011],[-89.644164999999987,69.048325000000091],[-89.582779000000016,69.06860400000005],[-89.56082200000003,69.077209000000039],[-89.529357999999945,69.090606999999977],[-89.489990000000034,69.110535000000027],[-89.482497999999907,69.115540000000067],[-89.458618000000001,69.133606000000043],[-89.402221999999995,69.178863999999976],[-89.398620999999935,69.182479999999998],[-89.394454999999937,69.193039000000056],[-89.394454999999937,69.199141999999995],[-89.396956999999929,69.208602999999982],[-89.394454999999937,69.214431999999988],[-89.389998999999932,69.219147000000021],[-89.322234999999921,69.247208000000114],[-89.306655999999919,69.251389000000017],[-89.258621000000005,69.259995000000117],[-89.220551,69.266663000000051],[-89.174164000000019,69.273315000000139],[-89.134170999999981,69.275542999999914],[-89.114440999999886,69.27526899999998],[-89.09056099999998,69.271927000000062],[-89.049987999999985,69.264435000000105],[-89.038054999999872,69.261931999999945],[-88.999435000000005,69.251389000000017],[-88.968886999999938,69.24136400000009],[-88.942489999999964,69.229980000000012],[-88.938048999999978,69.226928999999984],[-88.935546999999985,69.222214000000122],[-88.93472300000002,69.219986000000006],[-88.9375,69.214156999999943],[-88.936660999999958,69.209152000000074],[-88.929992999999968,69.198029000000133],[-88.870269999999948,69.148605000000089],[-88.85943599999996,69.142211999999972],[-88.782501000000025,69.103043000000071],[-88.772507000000019,69.098876999999959],[-88.62388599999997,69.042755],[-88.480285999999978,68.998871000000065],[-88.457229999999925,68.992752000000053],[-88.406113000000005,68.982758000000047],[-88.270844000000011,68.934981999999934],[-88.208618000000001,68.911652000000004],[-88.197768999999994,68.906647000000135],[-88.115829000000019,68.860535000000084],[-88.082229999999981,68.841370000000097],[-88.052215999999987,68.823044000000095],[-88.038329999999974,68.814147999999989],[-87.971664000000033,68.766097999999943],[-87.96444699999995,68.760543999999982],[-87.947768999999994,68.731659000000093],[-87.921660999999915,68.673035000000027],[-87.916655999999989,68.656372000000147],[-87.917496000000028,68.647491000000059],[-87.925002999999947,68.632476999999994],[-87.93499799999995,68.61943100000002],[-87.942489999999907,68.610809000000017],[-87.947768999999994,68.605255000000056],[-87.933883999999978,68.576935000000049],[-87.924163999999905,68.559708000000001],[-87.883621000000005,68.494430999999963],[-87.881377999999984,68.491089000000045],[-87.841675000000009,68.432479999999998],[-87.835555999999997,68.42442299999999],[-87.817504999999926,68.417206000000078],[-87.798614999999984,68.40525800000006],[-87.791672000000005,68.398330999999985],[-87.789718999999934,68.391937000000098],[-87.789444000000003,68.386658000000125],[-87.792220999999927,68.334427000000005],[-87.800551999999925,68.3119200000001],[-87.845276000000013,68.247757000000092],[-87.848891999999864,68.244141000000013],[-87.929168999999945,68.197204999999997],[-87.93582200000003,68.195815999999979],[-87.946945000000028,68.198593000000074],[-88.106658999999866,68.242751999999996],[-88.22193900000002,68.36554000000001],[-88.384445000000028,68.291092000000049],[-88.392226999999991,68.287490999999989],[-88.395553999999947,68.285263000000043],[-88.401671999999962,68.280272999999966],[-88.403335999999911,68.275542999999971],[-88.402785999999878,68.270263999999997],[-88.398345999999947,68.260544000000095],[-88.380829000000006,68.24552900000009],[-88.361937999999952,68.233871000000079],[-88.342498999999975,68.223602000000028],[-88.334732000000031,68.217484000000127],[-88.330841000000021,68.213043000000027],[-88.279723999999931,68.118041999999946],[-88.277495999999985,68.111649],[-88.277785999999992,68.105545000000006],[-88.283065999999963,68.099990999999989],[-88.315551999999968,68.086104999999975],[-88.331680000000006,68.076385000000073],[-88.338332999999977,68.070541000000105],[-88.341109999999901,68.064987000000087],[-88.347777999999948,68.037201000000039],[-88.366942999999992,68.03166200000004],[-88.381103999999993,68.025269000000094],[-88.372771999999941,67.96887200000009],[-88.370834000000002,67.959152000000017],[-88.36860699999994,67.954436999999984],[-88.285278000000005,67.81721500000009],[-88.276397999999972,67.80304000000001],[-88.269164999999987,67.793594000000041],[-88.160552999999993,67.682479999999941],[-88.151107999999908,67.673309000000017],[-88.139449999999954,67.664428999999984],[-88.124999999999943,67.65554800000001],[-88.095839999999953,67.642487000000074],[-88.066100999999946,67.634720000000129],[-88.009170999999924,67.622757000000092],[-87.979996000000028,67.615814000000114],[-87.965285999999992,67.611649000000114],[-87.955841000000021,67.607483000000002],[-87.881377999999984,67.568054000000132],[-87.841385000000002,67.536102000000142],[-87.827224999999999,67.527206000000035],[-87.789169000000015,67.505263999999954],[-87.623046999999929,67.412491000000102],[-87.606383999999935,67.403869999999984],[-87.585007000000019,67.395264000000054],[-87.53694200000001,67.378860000000088],[-87.460830999999985,67.344147000000135],[-87.357773000000009,67.262207000000046],[-87.359160999999972,67.247482000000048],[-87.361938000000009,67.242203000000075],[-87.429168999999945,67.208603000000039],[-87.440551999999968,67.204987000000131],[-87.486664000000019,67.194138000000066],[-87.497771999999941,67.190536000000122],[-87.50556899999998,67.185256999999979],[-87.511397999999986,67.174988000000099],[-87.511948000000018,67.169983000000059],[-87.516953000000001,67.115540000000124],[-87.510284000000013,67.112198000000149],[-87.497498000000007,67.115265000000079],[-87.322784000000013,67.162766000000147],[-87.240828999999906,67.216094999999939],[-87.117766999999958,67.212769000000094],[-87.069732999999928,67.219437000000084],[-86.968612999999948,67.245255000000043],[-86.96305799999999,67.250548999999978],[-86.967498999999975,67.255264000000011],[-87.008895999999936,67.282211000000132],[-87.075561999999934,67.327209000000039],[-87.086670000000026,67.336379999999963],[-87.090560999999923,67.345825000000048],[-87.089995999999985,67.350815000000125],[-87.081389999999999,67.354430999999977],[-86.874435000000005,67.404984000000127],[-86.804169000000002,67.420821999999987],[-86.79222099999987,67.422485000000108],[-86.779175000000009,67.422211000000004],[-86.765288999999939,67.419144000000074],[-86.709731999999974,67.388046000000031],[-86.689163000000008,67.3744200000001],[-86.68472300000002,67.369980000000055],[-86.675551999999982,67.365540000000067],[-86.647232000000031,67.358322000000044],[-86.592498999999975,67.345261000000107],[-86.579726999999991,67.344986000000063],[-86.543883999999935,67.344986000000063],[-86.53195199999999,67.346649000000014],[-86.523620999999991,67.352203000000031],[-86.518065999999976,67.357208000000071],[-86.509170999999981,67.36775200000011],[-86.50306699999993,67.377762000000018],[-86.473891999999978,67.468596999999988],[-86.472777999999892,67.478592000000049],[-86.47444200000001,67.483322000000101],[-86.49499499999996,67.49693300000007],[-86.485001000000011,67.516936999999984],[-86.452224999999999,67.592484000000127],[-86.451401000000033,67.597488000000112],[-86.455840999999964,67.601929000000041],[-86.465285999999935,67.606369000000029],[-86.479720999999984,67.610535000000141],[-86.488892000000021,67.614699999999971],[-86.521392999999932,67.671921000000111],[-86.525283999999999,67.681366000000139],[-86.508056999999894,67.69720500000011],[-86.359160999999915,67.827773999999977],[-86.350554999999986,67.833327999999938],[-86.286941999999897,67.869979999999941],[-86.098052999999993,67.978043000000014],[-86.041381999999942,68.000549000000035],[-86.029723999999931,68.004990000000134],[-86.005004999999983,68.008330999999998],[-85.99221799999998,68.009155000000135],[-85.979995999999915,68.011658000000125],[-85.898346000000004,68.046097000000145],[-85.892501999999979,68.051376000000118],[-85.890838999999971,68.061371000000065],[-85.912506000000008,68.084717000000069],[-85.916396999999961,68.094147000000135],[-85.914443999999946,68.104155999999989],[-85.888061999999991,68.189697000000137],[-85.842772999999966,68.317214999999976],[-85.839172000000019,68.321381000000088],[-85.712783999999942,68.411652000000117],[-85.726943999999946,68.486374000000012],[-85.733321999999987,68.598602000000085],[-85.675277999999992,68.711104999999975],[-85.663619999999923,68.726929000000098],[-85.645843999999954,68.737488000000099],[-85.633895999999936,68.741928000000144],[-85.620269999999948,68.741653000000099],[-85.606383999999991,68.740265000000022],[-85.591675000000009,68.737198000000092],[-85.569457999999941,68.728317000000004],[-85.558043999999938,68.726089000000002],[-85.494445999999925,68.736923000000104],[-85.481948999999929,68.739426000000037],[-85.466171000000031,68.749992000000134],[-85.464164999999923,68.752991000000122],[-85.464721999999938,68.759720000000016],[-85.507781999999963,68.766662999999994],[-85.550827000000027,68.773315000000082],[-85.562774999999988,68.776657],[-85.55360399999995,68.781097000000045],[-85.540833000000021,68.78276100000005],[-85.514175000000023,68.783875000000023],[-85.458053999999947,68.777770999999973],[-85.415008999999998,68.770827999999995],[-85.371383999999978,68.762207000000103],[-85.361664000000019,68.757767000000058],[-85.368056999999965,68.752486999999974],[-85.379439999999988,68.747208000000001],[-85.388335999999981,68.741928000000144],[-85.384170999999981,68.737198000000092],[-85.328612999999962,68.724990999999932],[-85.314162999999951,68.722762999999986],[-85.228881999999999,68.71026599999999],[-85.215835999999967,68.710815000000139],[-85.209166999999979,68.714996000000042],[-85.210830999999985,68.719711000000075],[-85.21945199999999,68.729155999999932],[-85.226669000000015,68.733597000000032],[-85.148345999999947,68.750000000000114],[-85.067504999999926,68.749710000000107],[-84.912780999999939,68.746933000000013],[-84.898055999999997,68.742477000000065],[-84.883895999999993,68.740265000000022],[-84.801102000000014,68.73414600000001],[-84.787215999999944,68.733597000000032],[-84.775283999999999,68.737198000000092],[-84.767501999999922,68.747208000000001],[-84.760009999999909,68.757217000000026],[-84.752791999999999,68.767487000000131],[-84.754180999999903,68.772217000000012],[-84.761123999999995,68.776932000000045],[-84.834732000000031,68.820541000000105],[-84.846664000000033,68.82388300000008],[-84.860824999999977,68.825272000000041],[-84.899993999999936,68.820541000000105],[-84.912216000000001,68.818054000000018],[-84.976944000000003,68.809418000000107],[-85.003615999999909,68.808318999999983],[-85.031677000000002,68.810806000000014],[-85.131942999999922,68.826934999999992],[-85.143889999999942,68.830276000000026],[-85.163054999999929,68.839157000000114],[-85.17721599999993,68.848328000000095],[-85.184158000000025,68.853043000000127],[-85.192764000000011,68.862198000000149],[-85.194442999999865,68.867203000000018],[-85.190826000000015,68.872208000000057],[-85.177779999999984,68.87359600000002],[-85.15306099999998,68.873032000000023],[-85.125,68.870254999999986],[-85.053329000000019,68.858871000000022],[-85.039992999999981,68.859421000000054],[-85.005568999999923,68.877472000000068],[-85.001952999999958,68.882477000000108],[-84.99749799999995,68.925812000000064],[-85.007232999999871,68.930267000000129],[-85.021117999999944,68.931656000000089],[-85.046660999999972,68.926651000000049],[-85.059998000000007,68.925812000000064],[-85.08805799999999,68.928588999999988],[-85.116942999999935,68.93331900000004],[-85.129439999999931,68.937485000000095],[-85.136123999999995,68.942200000000128],[-85.140563999999927,68.946640000000002],[-85.136947999999961,68.951935000000049],[-85.127776999999924,68.956100000000049],[-85.115004999999996,68.958603000000039],[-85.087508999999955,68.958037999999988],[-84.973785000000021,68.946869000000106],[-84.914718999999991,68.938034000000073],[-84.818893000000003,68.927765000000022],[-84.805831999999953,68.929152999999928],[-84.796386999999982,68.933594000000028],[-84.791381999999942,68.94331399999993],[-84.793334999999956,68.948318000000086],[-84.799987999999871,68.952774000000034],[-84.809433000000013,68.957214000000022],[-84.821945000000028,68.961655000000121],[-84.837219000000005,68.965820000000122],[-84.851394999999968,68.968323000000112],[-84.865554999999915,68.969711000000018],[-84.906951999999933,68.971649000000127],[-84.921386999999982,68.973877000000073],[-84.936110999999926,68.977203000000145],[-84.986922999999933,68.999511999999982],[-84.981673999999941,69.007492000000013],[-84.957779000000016,69.017487000000074],[-84.944442999999978,69.018051000000014],[-84.836394999999925,69.012772000000041],[-84.720000999999968,69.006943000000035],[-84.591674999999952,68.994431000000077],[-84.578063999999983,68.993866000000025],[-84.565552000000025,68.997482000000105],[-84.541381999999999,69.007216999999969],[-84.532227000000034,69.012497000000053],[-84.528335999999967,69.017487000000074],[-84.535277999999948,69.022217000000126],[-84.563613999999973,69.025818000000015],[-84.745543999999995,69.039703000000088],[-84.953887999999949,69.085815000000139],[-85.108337000000006,69.113312000000121],[-85.020554000000004,69.160262999999929],[-85.006957999999941,69.160812000000078],[-84.994155999999919,69.163315000000068],[-84.987502999999947,69.168594000000041],[-84.994719999999973,69.173035000000141],[-85.008895999999993,69.174423000000047],[-85.064712999999927,69.176926000000037],[-85.143775999999946,69.167091000000028],[-85.151778999999976,69.166091999999935],[-85.159110999999996,69.164101000000073],[-85.163276999999994,69.161598000000083],[-85.155272999999966,69.153107000000091],[-85.176665999999898,69.143600000000049],[-85.197494999999947,69.132750999999985],[-85.210555999999997,69.130264000000125],[-85.223617999999988,69.128860000000088],[-85.236937999999952,69.128036000000122],[-85.25140399999998,69.130264000000125],[-85.266662999999994,69.133606000000043],[-85.308334000000002,69.143600000000049],[-85.315552000000025,69.148041000000148],[-85.317504999999983,69.15277100000003],[-85.308043999999995,69.158034999999984],[-85.29611199999988,69.162491000000102],[-85.283324999999877,69.165267999999969],[-85.235001000000011,69.174698000000035],[-85.227501000000018,69.176872000000003],[-85.226836999999989,69.179870999999991],[-85.231162999999981,69.182541000000072],[-85.240829000000019,69.192474000000004],[-85.254729999999995,69.192749000000049],[-85.337783999999999,69.193863000000022],[-85.383057000000008,69.205551000000071],[-85.392776000000026,69.209991000000059],[-85.473327999999924,69.271927000000062],[-85.477782999999874,69.276382000000069],[-85.50306699999993,69.31442300000009],[-85.508057000000008,69.395263999999997],[-85.506957999999997,69.400269000000037],[-85.503341999999975,69.405258000000003],[-85.494155999999919,69.410812000000021],[-85.481948999999929,69.415267999999969],[-85.467498999999918,69.417206000000078],[-85.453339000000028,69.416931000000034],[-85.424437999999952,69.413315000000011],[-85.396117999999944,69.411652000000061],[-85.383330999999941,69.415267999999969],[-85.339172000000019,69.438873000000115],[-85.343613000000005,69.443587999999977],[-85.353606999999954,69.448029000000076],[-85.378875999999934,69.456649999999968],[-85.39416499999993,69.460815000000139],[-85.422774999999945,69.462493999999992],[-85.436385999999914,69.460815000000139],[-85.445830999999998,69.45637499999998],[-85.465011999999945,69.440811000000053],[-85.477218999999991,69.436371000000008],[-85.491378999999995,69.436646000000053],[-85.500838999999985,69.439148000000102],[-85.510833999999988,69.443587999999977],[-85.525283999999999,69.45277400000009],[-85.538894999999968,69.466933999999981],[-85.542496000000028,69.476379000000065],[-85.547775000000001,69.647217000000069],[-85.546951000000035,69.652206000000035],[-85.514724999999999,69.768051000000071],[-85.450287000000003,69.784714000000122],[-85.423324999999977,69.788879000000122],[-85.409163999999976,69.788589000000115],[-85.393889999999999,69.7852630000001],[-85.389174999999966,69.780548000000067],[-85.389998999999932,69.775818000000015],[-85.39416499999993,69.770537999999988],[-85.406951999999933,69.760269000000108],[-85.410827999999981,69.755264000000068],[-85.406386999999995,69.750549000000035],[-85.391952999999944,69.750275000000101],[-85.379165999999941,69.753601000000117],[-85.366652999999985,69.758040999999992],[-85.342498999999975,69.768875000000037],[-85.333068999999966,69.774155000000121],[-85.331954999999994,69.77915999999999],[-85.34445199999999,69.813033999999959],[-85.349166999999909,69.817490000000078],[-85.361938000000009,69.821930000000066],[-85.377212999999927,69.824158000000068],[-85.433608999999933,69.823608000000036],[-85.461394999999982,69.822495000000117],[-85.489990000000034,69.823044000000095],[-85.518615999999952,69.823608000000036],[-85.56138599999997,69.824706999999989],[-85.586394999999982,69.826934999999935],[-85.582229999999981,69.845825000000104],[-85.578613000000018,69.850815000000125],[-85.571945000000028,69.856094000000098],[-85.561935000000005,69.859421000000054],[-85.548049999999932,69.859984999999995],[-85.377212999999927,69.851089000000059],[-85.361938000000009,69.848877000000016],[-85.315552000000025,69.838042999999971],[-85.274169999999913,69.825272000000041],[-85.222504000000015,69.80802900000009],[-85.212509000000011,69.803589000000102],[-85.199432000000002,69.799149000000057],[-85.170836999999949,69.790542999999957],[-85.093886999999995,69.773315000000025],[-85.079177999999956,69.771102999999982],[-85.064437999999996,69.76998900000001],[-84.871658000000025,69.816086000000098],[-84.86471599999993,69.821105999999929],[-84.854172000000005,69.83137499999998],[-84.574172999999917,69.857483000000116],[-84.546386999999868,69.859421000000054],[-84.476669000000015,69.862198000000149],[-84.433608999999933,69.861098999999967],[-84.375823999999966,69.857483000000116],[-84.346663999999976,69.854706000000022],[-84.331680000000006,69.852203000000031],[-84.169448999999986,69.822220000000129],[-84.125823999999909,69.809418000000107],[-84.118606999999997,69.804703000000075],[-84.114165999999955,69.799988000000042],[-84.112220999999977,69.793593999999985],[-84.104171999999949,69.785812000000021],[-84.091674999999952,69.781372000000033],[-83.971938999999963,69.74971000000005],[-83.941665999999998,69.743042000000116],[-83.748610999999926,69.708878000000084],[-83.733886999999982,69.706649999999911],[-83.705001999999922,69.703598],[-83.603881999999942,69.693588000000091],[-83.589447000000007,69.692200000000014],[-83.360549999999989,69.676376000000062],[-83.346389999999985,69.676086000000055],[-83.333069000000023,69.678314],[-83.306380999999931,69.693862999999908],[-83.293610000000001,69.699142000000109],[-83.280562999999916,69.702484000000027],[-83.253341999999975,69.705261000000121],[-83.238892000000021,69.704711999999972],[-83.180557000000022,69.694977000000108],[-83.122771999999998,69.689148000000046],[-83.021941999999967,69.679703000000018],[-83.008056999999951,69.679152999999985],[-82.826950000000011,69.688873000000058],[-82.696654999999964,69.695816000000036],[-82.541007999999977,69.674477000000138],[-82.539672999999937,69.671593000000087],[-82.536162999999874,69.668823000000032],[-82.527328000000011,69.666153000000122],[-82.509505999999874,69.661979999999971],[-82.500671000000011,69.660491999999977],[-82.483329999999967,69.657990000000098],[-82.457503999999972,69.655327],[-82.291672000000005,69.639984000000084],[-82.263335999999981,69.638046000000145],[-82.254729999999995,69.636383000000023],[-82.307495000000017,69.622208000000114],[-82.334731999999974,69.61943100000002],[-82.390288999999996,69.618865999999969],[-82.47066499999994,69.62303200000008],[-82.476333999999952,69.625870000000077],[-82.483664999999974,69.628539999999987],[-82.492500000000007,69.630043000000001],[-82.552337999999963,69.635376000000008],[-82.560836999999992,69.635704000000146],[-82.56899999999996,69.634872000000087],[-82.577002999999991,69.632874000000129],[-82.653885000000002,69.62303200000008],[-82.654723999999987,69.568604000000107],[-82.612503000000004,69.566940000000102],[-82.600280999999995,69.562485000000095],[-82.535278000000005,69.534988000000112],[-82.489989999999977,69.507217000000082],[-82.476668999999958,69.497756999999979],[-82.486937999999896,69.493591000000094],[-82.500564999999938,69.492203000000018],[-82.528884999999946,69.4952550000001],[-82.74221799999998,69.50999500000006],[-82.897507000000019,69.518875000000094],[-82.939712999999927,69.521378000000084],[-82.982223999999917,69.524154999999951],[-83.067779999999914,69.533051000000057],[-83.125548999999921,69.539978000000019],[-83.154175000000009,69.543869000000086],[-83.228057999999976,69.538589000000002],[-83.082503999999972,69.514160000000061],[-83.025283999999999,69.508041000000048],[-82.954726999999991,69.503601000000003],[-82.870270000000005,69.500274999999988],[-82.856658999999922,69.50082400000008],[-82.842498999999918,69.500274999999988],[-82.785277999999948,69.494141000000127],[-82.68472300000002,69.479706000000022],[-82.324172999999917,69.418868999999972],[-82.295272999999952,69.413879000000122],[-82.23721299999994,69.400818000000015],[-82.225280999999995,69.39637799999997],[-82.221389999999928,69.391662999999937],[-82.231673999999941,69.387497000000053],[-82.289718999999991,69.251663000000121],[-82.291381999999999,69.246643000000063],[-82.273055999999997,69.237488000000042],[-82.258620999999948,69.233871000000079],[-82.244995000000017,69.233322000000101],[-82.217223999999931,69.233047000000113],[-82.203612999999962,69.233597000000145],[-82.054442999999992,69.24136400000009],[-82.041107000000011,69.242751999999996],[-82.027785999999992,69.244979999999941],[-81.99129499999998,69.25470700000011],[-81.914718999999877,69.269440000000145],[-81.70777899999996,69.264709000000039],[-81.693877999999984,69.263046000000145],[-81.67971799999998,69.260544000000039],[-81.650283999999999,69.251663000000121],[-81.512222000000008,69.20138500000013],[-81.416396999999904,69.208038000000101],[-81.402221999999995,69.207214000000135],[-81.388335999999981,69.204712000000086],[-81.359725999999966,69.196640000000116],[-81.347778000000005,69.191925000000083],[-81.338897999999972,69.187485000000038],[-81.332503999999858,69.182479999999998],[-81.299438000000009,69.1202550000001],[-81.330841000000021,69.095261000000107],[-81.57028200000002,68.992477000000008],[-81.59584000000001,68.984146000000123],[-81.71665999999999,68.949142000000052],[-81.75556899999998,68.941360000000088],[-81.809433000000013,68.9327550000001],[-81.888061999999991,68.919144000000131],[-81.914169000000015,68.914429000000098],[-81.966110000000015,68.904433999999981],[-82.005004999999983,68.895538000000045],[-82.043059999999969,68.883881000000088],[-82.055556999999965,68.878586000000041],[-82.057219999999973,68.873871000000008],[-82.043335000000013,68.872208000000057],[-82.00306699999993,68.874146000000053],[-81.977218999999991,68.879700000000014],[-81.833068999999966,68.907211000000075],[-81.819457999999997,68.908600000000092],[-81.68638599999997,68.905258000000117],[-81.673049999999989,68.904433999999981],[-81.66194200000001,68.90277100000003],[-81.650283999999999,68.899155000000007],[-81.58805799999999,68.869705000000124],[-81.581954999999937,68.864990000000091],[-81.438323999999966,68.874984999999981],[-81.424712999999997,68.87553400000013],[-81.382767000000001,68.866652999999985],[-81.354171999999892,68.857483000000116],[-81.238051999999925,68.774704000000042],[-81.23443599999996,68.76998900000001],[-81.232772999999952,68.760268999999937],[-81.252227999999945,68.653046000000131],[-81.255843999999911,68.643051000000014],[-81.260558999999944,68.638046000000145],[-81.267501999999922,68.633041000000105],[-81.357773000000009,68.599152000000117],[-81.560271999999998,68.541656000000103],[-81.687209999999993,68.509430000000066],[-81.798889000000031,68.489700000000028],[-81.816390999999896,68.469711000000132],[-81.830291999999986,68.459717000000126],[-81.842498999999918,68.455551000000014],[-81.958053999999947,68.423309000000017],[-81.970839999999953,68.421097000000145],[-81.997771999999941,68.423035000000084],[-82.011947999999961,68.427765000000136],[-82.024444999999957,68.436919999999986],[-82.027785999999992,68.441650000000038],[-82.028884999999946,68.446640000000059],[-82.033324999999991,68.456099999999992],[-82.038054999999929,68.465820000000065],[-82.041671999999949,68.470535000000098],[-82.062209999999936,68.494430999999963],[-82.068618999999899,68.499145999999996],[-82.077498999999932,68.503601000000003],[-82.091675000000009,68.507217000000082],[-82.229445999999996,68.531662000000097],[-82.256393000000003,68.533600000000035],[-82.269454999999937,68.532486000000063],[-82.271117999999944,68.527481000000023],[-82.267226999999991,68.52276599999999],[-82.254729999999995,68.513321000000133],[-82.243056999999965,68.508881000000088],[-82.229171999999892,68.505264000000125],[-82.1875,68.495819000000097],[-82.175826999999913,68.491364000000033],[-82.17332499999992,68.485808999999961],[-82.175002999999947,68.481093999999928],[-82.179169000000002,68.476089000000059],[-82.183608999999933,68.471100000000092],[-82.190552000000025,68.466095000000053],[-82.202498999999989,68.460815000000025],[-82.215011999999888,68.457489000000123],[-82.228057999999976,68.455261000000007],[-82.25418099999996,68.454437000000041],[-82.382767000000001,68.466934000000037],[-82.393889999999999,68.468322999999998],[-82.448882999999967,68.478592000000049],[-82.476943999999946,68.485535000000027],[-82.500290000000007,68.494430999999963],[-82.532501000000025,68.508041000000048],[-82.545273000000009,68.517487000000017],[-82.549163999999905,68.522217000000069],[-82.557770000000005,68.526932000000102],[-82.571395999999993,68.526382000000069],[-82.583892999999875,68.524155000000007],[-82.608886999999925,68.517487000000017],[-82.62110899999999,68.512206999999933],[-82.634734999999978,68.502213000000097],[-82.638901000000033,68.497208000000057],[-82.635284000000013,68.492203000000018],[-82.491103999999893,68.453873000000101],[-82.490554999999915,68.402205999999921],[-82.363051999999982,68.35054000000008],[-82.356658999999922,68.345825000000048],[-82.353057999999976,68.341094999999996],[-82.351105000000018,68.331375000000094],[-82.352492999999924,68.326660000000061],[-82.356658999999922,68.321655000000021],[-82.369445999999925,68.318329000000006],[-82.381942999999922,68.316939999999988],[-82.39527899999996,68.316666000000055],[-82.422225999999966,68.318603999999993],[-82.448607999999979,68.320831000000055],[-82.475006000000008,68.321106000000043],[-82.500838999999985,68.317490000000021],[-82.507781999999963,68.313309000000118],[-82.50140399999998,68.308594000000085],[-82.483611999999937,68.299422999999933],[-82.426101999999958,68.276657000000114],[-82.400557999999933,68.26887499999998],[-82.386947999999961,68.266388000000063],[-82.37388599999997,68.265548999999965],[-82.36082499999992,68.266937000000041],[-82.311661000000015,68.283051],[-82.286941999999897,68.289703000000031],[-82.273330999999928,68.288879000000065],[-82.264724999999999,68.284424000000058],[-82.260009999999966,68.274993999999992],[-82.259170999999981,68.269989000000123],[-82.258620999999948,68.255554000000018],[-82.264449999999897,68.24552900000009],[-82.270279000000016,68.235535000000084],[-82.278610000000015,68.225540000000024],[-82.289443999999946,68.215545999999961],[-82.300551999999868,68.205551000000071],[-82.321121000000005,68.190262000000018],[-82.330291999999872,68.185256999999922],[-82.337218999999948,68.180267000000072],[-82.345550999999944,68.170258000000047],[-82.34722899999997,68.165268000000026],[-82.345839999999953,68.160537999999974],[-82.337218999999948,68.155823000000112],[-82.314437999999939,68.146652000000017],[-82.272506999999962,68.133331000000055],[-82.230835000000013,68.121918000000051],[-82.206115999999952,68.115814],[-82.192489999999964,68.112487999999985],[-82.179169000000002,68.111649],[-82.166397000000018,68.114151000000106],[-82.145781999999997,68.125488000000018],[-82.099166999999966,68.154984000000013],[-82.080565999999919,68.179703000000131],[-82.06361400000003,68.199707000000046],[-82.056945999999982,68.204712000000086],[-82.047500999999897,68.209716999999955],[-82.037505999999894,68.213881999999955],[-82.025009000000011,68.216095000000109],[-82.01167299999986,68.214705999999921],[-81.997771999999941,68.211105000000089],[-81.988892000000021,68.206650000000025],[-81.985549999999989,68.201660000000004],[-81.984726000000023,68.196929999999952],[-81.993057000000022,68.172485000000108],[-82.008895999999936,68.14776599999999],[-82.019164999999987,68.132751000000042],[-82.027221999999938,68.122756999999979],[-82.034164000000033,68.117751999999939],[-82.043610000000001,68.112762000000089],[-82.056106999999997,68.109421000000054],[-82.114502000000016,68.082870000000014],[-82.173889000000031,68.002486999999974],[-82.175551999999982,67.997482000000105],[-82.102782999999988,67.907211000000075],[-82.096663999999976,67.90248100000008],[-82.079452999999944,67.893326000000002],[-82.070557000000008,67.888596000000007],[-81.837783999999999,67.783875000000023],[-81.727218999999934,67.740814],[-81.707503999999972,67.731658999999922],[-81.690552000000025,67.722487999999998],[-81.678328999999906,67.713042999999914],[-81.666397000000018,67.703598000000056],[-81.65972899999997,67.694138000000009],[-81.653884999999946,67.689423000000147],[-81.636672999999917,67.679977000000008],[-81.592498999999975,67.661652000000061],[-81.538329999999974,67.643599999999992],[-81.498046999999985,67.631927000000132],[-81.457779000000016,67.620529000000147],[-81.433059999999955,67.611374000000069],[-81.416396999999904,67.601929000000041],[-81.248885999999914,67.479706000000078],[-81.243056999999908,67.474991000000045],[-81.239715999999873,67.470260999999994],[-81.237212999999997,67.455551000000014],[-81.237503000000004,67.441086000000098],[-81.239166000000012,67.436096000000077],[-81.245269999999948,67.426376000000005],[-81.256392999999946,67.416381999999942],[-81.293610000000001,67.396103000000039],[-81.300551999999982,67.391098],[-81.30471799999998,67.386108000000092],[-81.347778000000005,67.292755],[-81.366394000000014,67.238875999999948],[-81.373610999999983,67.204711999999972],[-81.376099000000011,67.189972000000012],[-81.375274999999988,67.185256999999979],[-81.380279999999914,67.170532000000037],[-81.413895000000025,67.091370000000097],[-81.432220000000029,67.066666000000112],[-81.496657999999911,67.004715000000147],[-81.50306699999993,66.999710000000107],[-81.512512000000015,66.99470500000001],[-81.524170000000026,66.99054000000001],[-81.536117999999988,66.988312000000064],[-81.699722000000008,66.970261000000107],[-81.711944999999957,66.969986000000063],[-81.750838999999928,66.978591999999992],[-81.763901000000033,66.983046999999999],[-81.772232000000031,66.987762000000032],[-81.783066000000019,66.992477000000065],[-81.796111999999937,66.996933000000013],[-81.809157999999968,66.998321999999973],[-81.833618000000001,66.997756999999979],[-81.929717999999923,66.978591999999992],[-81.952498999999932,66.968048000000124],[-81.988892000000021,66.949706999999933],[-82.026947000000007,66.926086000000055],[-82.179992999999968,66.768875000000094],[-82.183884000000035,66.764160000000061],[-82.369720000000029,66.725815000000125],[-82.481109999999944,66.669707999999957],[-82.556380999999988,66.623871000000122],[-82.562774999999874,66.618866000000082],[-82.566665999999941,66.613876000000005],[-82.571670999999981,66.60386699999998],[-82.577498999999989,66.584427000000005],[-82.576675000000023,66.579436999999984],[-82.579452999999944,66.569717000000082],[-82.585555999999997,66.564697000000024],[-82.596953999999982,66.560256999999979],[-82.694442999999978,66.558029000000033],[-82.78195199999999,66.566666000000055],[-82.86999499999996,66.567490000000021],[-83.018065999999976,66.539978000000076],[-83.012787000000003,66.515823000000069],[-83.015288999999996,66.50610400000005],[-83.019164999999873,66.501099000000011],[-83.025283999999999,66.495819000000097],[-83.049987999999928,66.475539999999967],[-83.058608999999933,66.470260999999994],[-83.357497999999964,66.353043000000071],[-83.368332000000009,66.348877000000016],[-83.402221999999938,66.347487999999998],[-83.450561999999991,66.346649000000014],[-83.515288999999882,66.353867000000037],[-83.567504999999983,66.367477000000122],[-83.652785999999935,66.40776100000005],[-83.654175000000009,66.412491000000102],[-83.639449999999954,66.437195000000088],[-83.630828999999949,66.442200000000128],[-83.618331999999896,66.44081100000011],[-83.607773000000009,66.436371000000122],[-83.597778000000005,66.426926000000037],[-83.601669000000015,66.412201000000096],[-83.597778000000005,66.407486000000063],[-83.545273000000009,66.381363000000079],[-83.53472899999997,66.378035999999952],[-83.579726999999934,66.431656000000089],[-83.672501000000011,66.520538000000101],[-83.68110699999994,66.524993999999992],[-83.70695499999988,66.530822999999998],[-83.732497999999964,66.534714000000065],[-83.795273000000009,66.541930999999977],[-83.82028200000002,66.542754999999943],[-83.832229999999981,66.542206000000022],[-83.857497999999964,66.544144000000131],[-83.968886999999881,66.577484000000027],[-83.977492999999981,66.582214000000079],[-83.985001000000011,66.591660000000047],[-84.011397999999986,66.663605000000018],[-84.014174999999966,66.673309000000017],[-84.015563999999983,66.687759000000142],[-84.014450000000011,66.692748999999992],[-84.006119000000012,66.698029000000076],[-83.994719999999973,66.70138500000013],[-83.982772999999952,66.70277400000009],[-83.945540999999992,66.702484000000084],[-83.891113000000018,66.804153000000099],[-83.886123999999995,66.813873000000001],[-83.883895999999936,66.82388300000008],[-83.884170999999924,66.833602999999982],[-83.890288999999996,66.85775799999999],[-83.901671999999905,66.871918000000107],[-83.907776000000013,66.876647999999989],[-83.916397000000018,66.881087999999977],[-83.928878999999995,66.86303700000002],[-83.938323999999909,66.823608000000092],[-83.945540999999992,66.813599000000067],[-84.104996000000028,66.708328000000108],[-84.116394000000014,66.704987000000074],[-84.140288999999996,66.701934999999935],[-84.152785999999992,66.702484000000084],[-84.165558000000033,66.703873000000101],[-84.260284000000013,66.716385000000059],[-84.27305599999994,66.718596999999932],[-84.286666999999909,66.723038000000031],[-84.295273000000009,66.727478000000076],[-84.43638599999997,66.818329000000119],[-84.427779999999927,66.961104999999975],[-84.415008999999998,66.960815000000139],[-84.390288999999882,66.961929000000112],[-84.378600999999946,66.964157000000057],[-84.367492999999968,66.968597000000102],[-84.370834000000002,66.97137500000008],[-84.436110999999926,66.981369000000086],[-84.488051999999925,66.988876000000005],[-84.618057000000022,67.006378000000041],[-84.694153000000028,67.009720000000016],[-84.733063000000016,67.014708999999982],[-84.837783999999999,67.029434000000094],[-84.850829999999974,67.03166200000004],[-84.87332200000003,67.039428999999984],[-84.881942999999978,67.043869000000029],[-84.886123999999938,67.048599000000081],[-84.892501999999922,67.053314000000114],[-84.901397999999858,67.057754999999986],[-84.915008999999998,67.060806000000014],[-84.926940999999943,67.059418000000107],[-84.936110999999926,67.056090999999981],[-84.880279999999971,66.989426000000037],[-84.871658000000025,66.984984999999938],[-84.857772999999952,66.981659000000093],[-84.84584000000001,66.982208000000071],[-84.833892999999932,66.984711000000004],[-84.811110999999926,66.991653000000099],[-84.789444000000003,67.002486999999974],[-84.778335999999911,67.006653000000085],[-84.765563999999983,67.006378000000041],[-84.699996999999939,66.99581900000004],[-84.645844000000011,66.981659000000093],[-84.639724999999885,66.978043000000071],[-84.651397999999972,66.97554000000008],[-84.712783999999942,66.972762999999986],[-84.885833999999932,66.966660000000047],[-84.960007000000019,66.964157000000057],[-85.010009999999966,66.964706000000035],[-85.048339999999996,66.963318000000072],[-85.059722999999963,66.959717000000069],[-85.142775999999969,66.930267000000129],[-85.228333000000021,66.878311000000053],[-85.228881999999999,66.873306000000014],[-85.222777999999948,66.868866000000025],[-85.196105999999986,66.855255000000056],[-85.184433000000013,66.851089000000115],[-85.146118000000001,66.839431999999988],[-85.133057000000008,66.836929000000055],[-85.11999499999996,66.835541000000148],[-84.948607999999979,66.858597000000145],[-84.94027699999998,66.863876000000118],[-84.904556000000014,66.897202000000107],[-84.901053999999988,66.900375000000111],[-84.904892000000018,66.903037999999981],[-84.912888000000009,66.905044999999973],[-84.920546999999999,66.905373000000111],[-84.935225999999886,66.904540999999995],[-84.943061999999941,66.905373000000111],[-84.951050000000009,66.907378999999992],[-84.95788600000003,66.909874000000002],[-84.961730999999986,66.912704000000019],[-84.956389999999942,66.915367000000117],[-84.86233500000003,66.939835000000073],[-84.855164000000002,66.940666000000078],[-84.767775999999969,66.952209000000039],[-84.755279999999971,66.951660000000061],[-84.602218999999991,66.935806000000127],[-84.562209999999993,66.901382000000126],[-84.573897999999986,66.89888000000002],[-84.61082499999992,66.89387499999998],[-84.62332200000003,66.893326000000059],[-84.650283999999999,66.900817999999958],[-84.675827000000027,66.902771000000087],[-84.688323999999909,66.903046000000131],[-84.746384000000035,66.897491000000059],[-84.706389999999999,66.888596000000007],[-84.58555599999994,66.858871000000079],[-84.558334000000002,66.850540000000024],[-84.523330999999985,66.836929000000055],[-84.505843999999968,66.827773999999977],[-84.504729999999995,66.823043999999982],[-84.516113000000018,66.820540999999992],[-84.541381999999999,66.821381000000031],[-84.580565999999976,66.828323000000125],[-84.634170999999981,66.84165999999999],[-84.660278000000005,66.846375000000023],[-84.672501000000011,66.845824999999991],[-84.684432999999956,66.844147000000021],[-84.690551999999968,66.839980999999966],[-84.684432999999956,66.835266000000104],[-84.675551999999925,66.830826000000116],[-84.664444000000003,66.82748400000014],[-84.651107999999965,66.824158000000125],[-84.466949,66.787766000000147],[-84.434433000000013,66.725540000000137],[-84.445266999999888,66.720260999999937],[-84.448607999999922,66.715271000000087],[-84.442489999999964,66.710814999999968],[-84.429442999999935,66.708328000000108],[-84.404174999999952,66.705551000000014],[-84.343063000000029,66.699416999999983],[-84.203887999999949,66.691360000000032],[-84.153060999999923,66.685806000000014],[-84.144454999999994,66.681366000000025],[-84.136672999999973,66.662201000000039],[-84.138061999999877,66.657210999999961],[-84.142501999999979,66.647216999999955],[-84.146117999999944,66.642212000000086],[-84.180556999999965,66.606644000000074],[-84.186385999999914,66.601379000000009],[-84.128325999999959,66.554703000000018],[-83.967223999999931,66.473877000000073],[-83.916397000000018,66.446640000000116],[-83.89805599999994,66.432755000000043],[-83.888061999999991,66.423599000000081],[-83.871108999999933,66.394989000000066],[-83.867492999999968,66.380539000000113],[-83.804717999999923,66.307205000000124],[-83.773620999999991,66.289703000000088],[-83.774719000000005,66.275269000000037],[-83.772231999999974,66.265548999999965],[-83.768615999999952,66.260818000000029],[-83.762787000000003,66.256104000000107],[-83.728881999999999,66.23803700000002],[-83.71833799999996,66.233597000000032],[-83.684722999999906,66.215546000000018],[-83.68110699999994,66.210815000000082],[-83.67860399999995,66.201096000000121],[-83.684432999999956,66.196091000000024],[-83.693053999999961,66.190810999999997],[-83.767898999999943,66.168639999999982],[-83.789718999999934,66.163315000000125],[-83.835830999999928,66.154709000000025],[-83.847777999999948,66.153320000000008],[-83.855559999999912,66.155822999999998],[-83.977782999999988,66.199417000000096],[-84.118057000000022,66.25471500000009],[-84.135283999999956,66.26388500000013],[-84.141112999999962,66.268326000000059],[-84.148620999999991,66.277771000000143],[-84.149993999999992,66.282760999999994],[-84.150283999999942,66.292480000000012],[-84.148894999999925,66.297485000000052],[-84.152495999999985,66.302200000000084],[-84.158614999999998,66.306641000000013],[-84.167220999999927,66.31109600000002],[-84.178329000000019,66.315536000000009],[-84.190826000000015,66.318054000000018],[-84.216400000000021,66.321655000000078],[-84.228332999999964,66.3211060000001],[-84.317229999999995,66.299712999999997],[-84.426940999999886,66.363037000000077],[-84.441939999999931,66.372208000000057],[-84.506393000000003,66.402205999999978],[-84.516952999999944,66.404709000000139],[-84.528885000000002,66.40415999999999],[-84.550551999999868,66.394440000000088],[-84.558884000000035,66.389160000000061],[-84.619155999999919,66.349715999999944],[-84.626937999999882,66.343597000000102],[-84.635559000000001,66.334991000000002],[-84.636123999999995,66.328873000000044],[-84.625,66.319152999999972],[-84.527221999999995,66.278595000000109],[-84.424438000000009,66.224701000000096],[-84.407500999999968,66.215546000000018],[-84.401397999999972,66.211105000000089],[-84.389998999999932,66.196930000000009],[-84.386397999999986,66.192199999999957],[-84.37777699999998,66.178040000000067],[-84.372498000000007,66.168319999999994],[-84.374709999999993,66.158600000000092],[-84.448607999999922,66.158600000000092],[-84.46055599999994,66.159149000000014],[-84.473327999999981,66.161377000000016],[-84.483886999999925,66.164703000000031],[-84.509445000000028,66.178314],[-84.641112999999962,66.216094999999996],[-84.869155999999975,66.266662999999937],[-84.881942999999978,66.268051000000071],[-84.90583799999996,66.266937000000098],[-84.927489999999977,66.258881000000031],[-84.943877999999984,66.248322000000144],[-84.954726999999934,66.243866000000025],[-84.96665999999999,66.244431000000077],[-84.979720999999984,66.24664300000012],[-85.00167799999997,66.255264000000068],[-85.131942999999922,66.291931000000034],[-85.178329000000019,66.262207000000046],[-85.190276999999867,66.260544000000095],[-85.202498999999932,66.260818000000029],[-85.214721999999995,66.262207000000046],[-85.227782999999988,66.264434999999992],[-85.252227999999945,66.273041000000092],[-85.269729999999981,66.281937000000028],[-85.301392000000021,66.304703000000075],[-85.306655999999919,66.314148000000102],[-85.339721999999938,66.399154999999951],[-85.345550999999887,66.447754000000089],[-85.346114999999998,66.45748900000001],[-85.341675000000009,66.482208000000128],[-85.343338000000017,66.48692299999999],[-85.351394999999968,66.496093999999971],[-85.457503999999915,66.573883000000137],[-85.466400000000021,66.578323000000012],[-85.479720999999984,66.581375000000094],[-85.491942999999878,66.581940000000145],[-85.55221599999993,66.577774000000034],[-85.575561999999991,66.574707000000103],[-85.598617999999931,66.569442999999978],[-85.710555999999997,66.536101999999971],[-85.845276000000013,66.499419999999986],[-85.857773000000009,66.499709999999993],[-85.868880999999931,66.504166000000112],[-85.875548999999978,66.5086060000001],[-85.888901000000033,66.511932000000002],[-85.995543999999995,66.508041000000105],[-86.007507000000032,66.507216999999969],[-86.078888000000006,66.49693300000007],[-86.103333000000021,66.496643000000063],[-86.128326000000015,66.49803200000008],[-86.141113000000018,66.499419999999986],[-86.256667999999934,66.513321000000133],[-86.283324999999934,66.518599999999935],[-86.578888000000006,66.530272999999966],[-86.580001999999979,66.520538000000101],[-86.587783999999942,66.51527400000009],[-86.599730999999963,66.511108000000036],[-86.611389000000031,66.508331000000112],[-86.622771999999998,66.506652999999972],[-86.635009999999966,66.50610400000005],[-86.65972899999997,66.506377999999984],[-86.672500999999954,66.507767000000001],[-86.685546999999985,66.509720000000073],[-86.698883000000023,66.513046000000145],[-86.726944000000003,66.521103000000096],[-86.738051999999982,66.525269000000037],[-86.75167799999997,66.528320000000008],[-86.764174999999966,66.528595000000053],[-86.775283999999942,66.526093000000003],[-86.780838000000017,66.520828000000108],[-86.781386999999995,66.515823000000069],[-86.777221999999995,66.511108000000036],[-86.743880999999931,66.488586000000112],[-86.701110999999969,66.466659999999933],[-86.662780999999939,66.449417000000039],[-86.639998999999932,66.441085999999927],[-86.633621000000005,66.436371000000122],[-86.641677999999956,66.431931000000077],[-86.678604000000007,66.432755000000043],[-86.730559999999969,66.436920000000043],[-86.756957999999941,66.441360000000088],[-86.783614999999941,66.447479000000101],[-86.796386999999925,66.448593000000074],[-86.807495000000017,66.446091000000024],[-86.811110999999983,66.441925000000083],[-86.809158000000025,66.437195000000088],[-86.804992999999968,66.432480000000055],[-86.651671999999962,66.324158000000011],[-86.638335999999924,66.315262000000075],[-86.612777999999992,66.311646000000053],[-86.49722300000002,66.29942299999999],[-86.396117999999944,66.289703000000088],[-86.30610699999994,66.276382000000126],[-86.142226999999991,66.239699999999971],[-86.076110999999912,66.22387700000013],[-85.927489999999977,66.186370999999951],[-85.913895000000025,66.182205000000067],[-85.901108000000022,66.173035000000027],[-85.897232000000031,66.168319999999994],[-85.977492999999924,66.077773999999977],[-85.975829999999917,66.073044000000095],[-85.973891999999978,66.038879000000009],[-85.974716000000001,66.033875000000023],[-85.979995999999915,66.028594999999996],[-85.990554999999972,66.024155000000121],[-86.077224999999999,65.99581900000004],[-86.121384000000035,65.984421000000054],[-86.217498999999975,65.957489000000123],[-86.22084000000001,65.952209000000039],[-86.231383999999935,65.941925000000026],[-86.239166000000012,65.936646000000053],[-86.249435000000005,65.93193100000002],[-86.326400999999976,65.90498400000007],[-86.348617999999874,65.899719000000005],[-86.360275000000001,65.899155000000064],[-86.420272999999952,65.892487000000074],[-86.472228999999857,65.839980999999966],[-86.496947999999975,65.808029000000033],[-86.49499499999996,65.803314],[-86.486389000000031,65.799149],[-86.464171999999962,65.790543000000071],[-86.455276000000026,65.786102000000142],[-86.453888000000006,65.78137200000009],[-86.451110999999855,65.747208000000057],[-86.454177999999956,65.742203000000018],[-86.530288999999868,65.695525999999916],[-86.716109999999958,65.617477000000065],[-86.819457999999997,65.560532000000023],[-86.829726999999991,65.55581699999999],[-86.84056099999998,65.553314000000057],[-86.852782999999931,65.55442800000003],[-86.865828999999962,65.557480000000112],[-86.878052000000025,65.557754999999929],[-86.888610999999969,65.555251999999996],[-86.953888000000006,65.53915400000011],[-86.972777999999948,65.520263999999997],[-87.017226999999991,65.486923000000047],[-87.024445000000014,65.481659000000036],[-87.035278000000005,65.479156000000046],[-87.05471799999998,65.486649000000114],[-87.067504999999983,65.488875999999948],[-87.077788999999996,65.484985000000052],[-87.087783999999999,65.479431000000091],[-87.095001000000025,65.474152000000117],[-87.110275000000001,65.458602999999982],[-87.118606999999997,65.4433140000001],[-87.119155999999975,65.438309000000061],[-87.11500499999994,65.433594000000028],[-87.101944000000003,65.429703000000131],[-87.111664000000019,65.390274000000034],[-87.351105000000018,65.327209000000096],[-87.361938000000009,65.324432000000002],[-87.372771999999941,65.322769000000051],[-87.395843999999897,65.321380999999974],[-87.430831999999953,65.320831000000112],[-87.833327999999938,65.323883000000023],[-87.869155999999975,65.325272000000041],[-87.893065999999976,65.326660000000118],[-87.941939999999875,65.330826000000059],[-87.96665999999999,65.333054000000004],[-88.004456000000005,65.339157000000114],[-88.030288999999925,65.345260999999994],[-88.070281999999963,65.356093999999928],[-88.09445199999999,65.363312000000121],[-88.212783999999886,65.40277100000003],[-88.221389999999985,65.407211000000075],[-88.234726000000023,65.416091999999992],[-88.243331999999953,65.425262000000032],[-88.245270000000005,65.429977000000065],[-88.25389100000001,65.439148000000046],[-88.31361400000003,65.479156000000046],[-88.333617999999944,65.492477000000008],[-88.548614999999984,65.582764000000111],[-88.55972300000002,65.586929000000112],[-88.573058999999944,65.589706000000035],[-88.58555599999994,65.590820000000008],[-88.633330999999998,65.591094999999996],[-88.645554000000004,65.592208999999968],[-88.658889999999928,65.594986000000063],[-88.68582200000003,65.601929000000098],[-88.829726999999878,65.641372999999987],[-88.828888000000006,65.644150000000081],[-88.756667999999991,65.642761000000064],[-88.62249799999995,65.637207000000103],[-88.49888599999997,65.626923000000033],[-88.513335999999981,65.644440000000088],[-88.779723999999987,65.676085999999941],[-88.949721999999895,65.68664600000011],[-88.962783999999999,65.688583000000108],[-89.000838999999985,65.698593000000017],[-89.09944200000001,65.725266000000033],[-89.124435000000005,65.733322000000101],[-89.133895999999936,65.737487999999985],[-89.140563999999927,65.74192800000003],[-89.14527899999996,65.746368000000018],[-89.147507000000019,65.751388999999961],[-89.147231999999974,65.761107999999979],[-89.149444999999957,65.765823000000012],[-89.156386999999938,65.770264000000111],[-89.174438000000009,65.778594999999996],[-89.379990000000021,65.846375000000023],[-89.525283999999999,65.886932000000002],[-89.597228999999857,65.910812000000021],[-89.664718999999934,65.934982000000048],[-89.671660999999915,65.939423000000147],[-89.70944199999991,65.942200000000014],[-89.967223999999987,65.948593000000017],[-89.991104000000007,65.947478999999987],[-90,65.944359000000134],[-89.964171999999962,65.936919999999986],[-89.939163000000008,65.93609600000002],[-89.926391999999908,65.934143000000063],[-89.89916999999997,65.928589000000045],[-89.87110899999999,65.921097000000145],[-89.834166999999979,65.910263000000043],[-89.799438000000009,65.898331000000098],[-89.740829000000019,65.873306000000071],[-89.731673999999998,65.86914100000007],[-89.726943999999946,65.839980999999966],[-89.729172000000005,65.834717000000012],[-89.736389000000031,65.829162999999994],[-89.746947999999975,65.826385000000016],[-89.76916499999993,65.822495000000004],[-89.793334999999956,65.822495000000004],[-89.818892999999889,65.825546000000031],[-89.832229999999925,65.828323000000125],[-89.843886999999938,65.832214000000022],[-89.89056399999987,65.853043000000014],[-89.902221999999995,65.857208000000014],[-90.048614999999984,65.888321000000019],[-90.073623999999938,65.890273999999977],[-90.085555999999997,65.889159999999947],[-90.119995000000017,65.883880999999974],[-90.162780999999995,65.872207999999944],[-90.207229999999925,65.864426000000037],[-90.241942999999992,65.861374000000069],[-90.265838999999971,65.860535000000141],[-90.315001999999993,65.862198000000035],[-90.404448999999943,65.871093999999971],[-90.418335000000013,65.87414600000011],[-90.427489999999977,65.878036000000066],[-90.432495000000017,65.882751000000098],[-90.425551999999925,65.888321000000019],[-90.393065999999919,65.896102999999982],[-90.357773000000009,65.898041000000092],[-90.333327999999995,65.897217000000126],[-90.272781000000009,65.897491000000059],[-90.225554999999929,65.900542999999971],[-90.215560999999923,65.904434000000037],[-90.213333000000034,65.909424000000115],[-90.213333000000034,65.914428999999984],[-90.220551,65.918868999999972],[-90.234725999999966,65.922485000000052],[-90.258895999999993,65.922485000000052],[-90.293335000000013,65.918593999999985],[-90.360275000000001,65.907760999999994],[-90.418883999999878,65.901093000000003],[-90.574172999999973,65.896652000000074],[-90.596114999999941,65.896652000000074],[-90.708618000000001,65.902480999999909],[-90.733886999999925,65.904160000000104],[-90.850280999999995,65.915267999999912],[-91.068344000000025,65.940262000000075],[-91.316390999999953,65.969986000000119],[-91.328613000000018,65.969986000000119],[-91.340285999999935,65.96887200000009],[-91.429168999999945,65.95109599999995],[-91.444442999999865,65.930817000000047],[-91.362777999999935,65.893599999999992],[-91.353332999999964,65.889434999999992],[-91.341385000000002,65.885818000000029],[-91.328063999999983,65.883880999999974],[-91.189437999999939,65.853043000000014],[-91.06082200000003,65.813309000000061],[-91.046660999999915,65.809417999999994],[-91.020553999999947,65.806091000000094],[-91.008621000000005,65.806091000000094],[-91.004180999999903,65.811371000000122],[-91.013900999999976,65.820540999999992],[-91.05471799999998,65.846649000000127],[-91.108337000000006,65.891373000000101],[-91.123046999999929,65.904709000000082],[-91.125823999999852,65.909714000000122],[-91.121384000000035,65.914993000000095],[-91.099730999999963,65.919982999999945],[-91.088057999999933,65.921097000000145],[-91.063889000000017,65.921097000000145],[-90.990279999999984,65.919982999999945],[-90.976943999999946,65.918045000000006],[-90.948607999999979,65.910812000000021],[-90.921386999999925,65.905258000000003],[-90.90834000000001,65.903595000000109],[-90.741942999999992,65.887772000000041],[-90.692489999999964,65.886108000000036],[-90.531676999999945,65.880539000000056],[-90.078063999999983,65.812485000000095],[-90.013900999999919,65.800262000000032],[-90,65.797400999999923],[-89.986938000000009,65.794708000000071],[-89.960006999999962,65.788879000000065],[-89.932220000000029,65.78137200000009],[-89.744995000000017,65.724700999999982],[-89.720275999999956,65.713042999999971],[-89.660278000000005,65.683318999999983],[-89.653335999999911,65.678863999999976],[-89.428328999999962,65.529434000000037],[-89.308883999999978,65.469437000000084],[-89.146118000000001,65.400543000000084],[-89.065551999999911,65.333054000000004],[-89.054442999999992,65.328873000000101],[-89.044448999999986,65.32777400000009],[-88.771118000000001,65.307754999999986],[-88.733886999999982,65.306090999999981],[-88.710281000000009,65.306090999999981],[-88.698607999999979,65.30693100000002],[-88.676940999999999,65.31053200000008],[-88.606948999999929,65.30693100000002],[-88.490279999999984,65.293320000000051],[-88.389174999999909,65.277205999999921],[-88.364715999999873,65.274994000000049],[-88.215012000000002,65.277205999999921],[-88.133330999999941,65.278320000000122],[-88.109725999999966,65.278046000000018],[-88.096664000000033,65.274994000000049],[-88.061660999999958,65.258881000000031],[-88.021117999999888,65.274704000000042],[-88.011123999999938,65.278320000000122],[-87.978058000000033,65.283599999999979],[-87.943603999999993,65.286102000000085],[-87.731383999999991,65.290267999999969],[-87.673049999999989,65.291366999999923],[-87.602218999999934,65.290542999999957],[-87.357773000000009,65.270827999999995],[-87.21055599999994,65.254165999999998],[-87.075012000000015,65.236648999999943],[-86.957779000000016,65.165817000000004],[-86.944992000000013,65.156936999999971],[-86.936935000000005,65.147766000000047],[-86.933318999999983,65.138046000000145],[-86.967498999999975,65.059417999999994],[-86.970275999999899,65.054428000000087],[-86.977492999999981,65.048874000000126],[-86.997771999999941,65.040816999999947],[-87.040557999999976,65.031097000000045],[-87.110001000000011,64.999145999999996],[-87.430283000000031,64.711928999999998],[-87.521666999999923,64.621094000000085],[-87.571944999999971,64.573607999999979],[-87.579178000000013,64.568054000000018],[-87.586120999999991,64.562759000000142],[-87.595550999999944,64.557205000000124],[-87.698043999999925,64.527206000000092],[-87.764419999999973,64.520904999999914],[-87.786391999999921,64.51998900000001],[-87.797225999999966,64.518051000000071],[-87.807219999999973,64.514434999999992],[-87.855270000000019,64.43942300000009],[-87.855835000000013,64.429428000000144],[-87.863616999999977,64.379700000000014],[-87.8663939999999,64.369705000000124],[-87.983886999999925,64.191086000000041],[-87.990829000000019,64.185805999999957],[-88.113327000000027,64.136108000000036],[-88.12332200000003,64.133605999999986],[-88.285552999999936,64.106369000000029],[-88.551666000000012,64.025543000000084],[-88.553878999999995,64.020538000000045],[-88.674437999999952,63.980269999999962],[-88.684432999999956,63.977486000000056],[-88.736663999999962,63.968323000000055],[-88.759444999999971,63.969437000000028],[-88.993880999999931,63.998604000000114],[-89.077788999999882,64.026093000000117],[-89.110000999999954,64.03804000000008],[-89.127212999999983,64.04664600000001],[-89.150833000000034,64.059417999999994],[-89.182770000000005,64.081375000000037],[-89.198043999999982,64.094711000000018],[-89.202224999999999,64.099426000000051],[-89.208617999999944,64.108871000000079],[-89.210555999999997,64.118317000000047],[-89.210555999999997,64.123306000000014],[-89.212783999999942,64.128036000000066],[-89.22084000000001,64.137207000000046],[-89.244720000000029,64.15498400000007],[-89.251113999999973,64.159424000000115],[-89.260833999999875,64.160538000000088],[-89.284164000000033,64.141937000000041],[-89.286391999999978,64.136658000000068],[-89.182495000000017,64.036652000000004],[-89.096664000000033,63.973877000000016],[-89.061661000000015,63.960823000000119],[-89.051101999999958,63.961936999999921],[-89.040833000000021,63.958602999999925],[-89.023620999999991,63.950272000000041],[-89.028609999999958,63.946098000000006],[-89.039443999999946,63.944991999999957],[-89.050551999999925,63.944991999999957],[-89.246657999999968,63.959717000000126],[-89.254729999999938,63.963051000000121],[-89.321395999999936,63.996658000000025],[-89.396117999999944,64.038589000000002],[-89.507232999999928,64.070540999999992],[-89.551101999999958,64.07748399999997],[-89.55860899999999,64.073883000000137],[-89.56082200000003,64.068878000000041],[-89.56527699999998,64.019149999999968],[-89.563323999999852,64.009430000000066],[-89.554442999999992,64.000274999999988],[-89.548049999999932,63.996101000000124],[-89.530838000000017,63.987770000000069],[-89.517775999999913,63.978874000000133],[-89.489990000000034,63.956657000000064],[-89.485549999999989,63.951934999999992],[-89.483321999999873,63.947211999999979],[-89.485549999999989,63.94221500000009],[-89.49722300000002,63.943046999999979],[-89.521117999999944,63.955826000000059],[-89.527495999999985,63.960274000000027],[-89.577224999999999,63.995544000000052],[-89.585555999999997,64.004439999999988],[-89.589995999999928,64.014160000000061],[-89.594161999999926,64.018600000000106],[-89.637787000000003,64.049423000000104],[-89.644164999999987,64.053864000000033],[-89.699722000000008,64.076385000000016],[-89.712219000000005,64.079437000000098],[-89.719161999999983,64.074707000000103],[-89.726943999999946,64.047484999999938],[-89.785552999999993,64.076935000000049],[-89.818068999999923,64.098602000000085],[-89.822509999999909,64.103317000000118],[-89.822783999999956,64.10803199999998],[-89.820557000000008,64.113312000000008],[-89.80972300000002,64.128860000000032],[-89.802215999999987,64.132476999999994],[-89.780563000000029,64.134430000000123],[-89.757507000000032,64.133605999999986],[-89.746947999999975,64.135544000000095],[-89.738051999999925,64.14027399999992],[-89.735824999999977,64.145263999999997],[-89.75111400000003,64.218048000000124],[-89.75556899999998,64.227478000000019],[-89.760009999999966,64.232208000000071],[-89.773055999999997,64.240814],[-89.784163999999919,64.244705000000067],[-89.794158999999922,64.241928000000144],[-89.801102000000014,64.237487999999928],[-89.805557000000022,64.227203000000031],[-89.803328999999962,64.222487999999998],[-89.803054999999972,64.20277400000009],[-89.81639100000001,64.148041000000092],[-89.823623999999995,64.144440000000031],[-89.845550999999944,64.142761000000007],[-89.879439999999988,64.142487000000074],[-89.892226999999991,64.145538000000101],[-89.909728999999913,64.158599999999922],[-89.922501000000011,64.161377000000016],[-89.967498999999918,64.161377000000016],[-89.986938000000009,64.159714000000122],[-90.124161000000015,64.128586000000098],[-90.118057000000022,64.125259000000142],[-90.104995999999971,64.121368000000075],[-90.05860899999999,64.109710999999947],[-89.950561999999991,64.086929000000055],[-89.946105999999986,64.057480000000055],[-89.904175000000009,64.015823000000012],[-89.866942999999992,63.98971599999993],[-89.841674999999896,63.983879000000002],[-89.831116000000009,63.979988000000105],[-89.824447999999961,63.97554800000006],[-89.820281999999963,63.971099999999922],[-89.813613999999973,63.946938000000046],[-89.813613999999973,63.93721000000005],[-89.815552000000025,63.931938000000116],[-89.821944999999971,63.926384000000098],[-89.828612999999962,63.921104000000014],[-89.838057999999933,63.917212999999947],[-89.938888999999961,63.909713999999951],[-89.951400999999976,63.912491000000045],[-89.989440999999999,63.92193600000013],[-89.998336999999992,63.926102000000014],[-89.995270000000005,63.929161000000022],[-89.974715999999944,63.933052000000089],[-89.964721999999995,63.935822000000087],[-89.955276000000026,63.939712999999983],[-89.948607999999979,63.945267000000001],[-89.946655000000021,63.950546000000145],[-89.946655000000021,63.960274000000027],[-89.946655000000021,63.965271000000087],[-89.94888299999991,63.969986000000119],[-89.955565999999976,63.9741590000001],[-89.968613000000005,63.978043000000127],[-90,63.984043000000042],[-90.18249499999996,64.0086060000001],[-90.194153000000028,64.009430000000066],[-90.249435000000005,64.007492000000127],[-90.271392999999989,64.006377999999927],[-90.279175000000009,64.00360100000006],[-90.275009000000011,63.999161000000015],[-90.262786999999889,63.997214999999926],[-90.227492999999981,63.994438000000059],[-90.214721999999881,63.990829000000019],[-90.196944999999914,63.982491000000095],[-90.113892000000021,63.930824000000086],[-89.975005999999951,63.825829000000056],[-89.966400000000021,63.816939999999988],[-89.964171999999962,63.811935000000119],[-89.964171999999962,63.80221599999993],[-89.966110000000015,63.79222100000004],[-89.96833799999996,63.782211000000132],[-89.972503999999958,63.776657000000114],[-89.981673999999998,63.773048000000131],[-90.057770000000005,63.744438000000059],[-90.089995999999928,63.698874999999987],[-90.148894999999982,63.629158000000075],[-90.156386999999938,63.626656000000025],[-90.205275999999913,63.61221299999994],[-90.236388999999917,63.607216000000051],[-90.258620999999891,63.607216000000051],[-90.429442999999992,63.615829000000019],[-90.461394999999982,63.640549000000078],[-90.468613000000005,63.652309000000002],[-90.488051999999982,63.672493000000088],[-90.501113999999973,63.676383999999985],[-90.611937999999952,63.70249200000012],[-90.623885999999914,63.704162999999994],[-90.634445000000028,63.703049000000021],[-90.64416499999993,63.700272000000098],[-90.701400999999976,63.662209000000075],[-90.699157999999954,63.657494000000042],[-90.686660999999958,63.654709000000139],[-90.677779999999927,63.654433999999981],[-90.655563000000029,63.654709000000139],[-90.623610999999983,63.657767999999976],[-90.613891999999908,63.660545000000013],[-90.60972599999991,63.665825000000098],[-90.610001000000011,63.675827000000083],[-90.602782999999988,63.679436000000067],[-90.590285999999992,63.676658999999972],[-90.55972300000002,63.659714000000008],[-90.555556999999965,63.65526600000004],[-90.553329000000019,63.650543000000084],[-90.541381999999942,63.617210000000057],[-90.541381999999942,63.61221299999994],[-90.545273000000009,63.606941000000006],[-90.551391999999964,63.601387000000045],[-90.56082200000003,63.597487999999998],[-90.571120999999948,63.595543000000021],[-90.733886999999925,63.573883000000023],[-90.828063999999983,63.561661000000072],[-90.84944200000001,63.559714999999983],[-90.930556999999965,63.564156000000082],[-90.942763999999954,63.566666000000112],[-90.978881999999999,63.576103000000046],[-90.989440999999943,63.579994000000113],[-91.035003999999958,63.5991590000001],[-91.137786999999889,63.630821000000026],[-91.158051,63.635551000000078],[-91.188599000000011,63.62943300000012],[-91.198883000000023,63.628601000000003],[-91.210281000000009,63.628326000000015],[-91.233321999999987,63.629990000000021],[-91.375823999999966,63.659157000000107],[-91.399733999999967,63.666664000000083],[-91.406386999999938,63.671104000000071],[-91.406661999999983,63.676102000000071],[-91.402785999999992,63.681381000000044],[-91.393616000000009,63.685265000000072],[-91.371384000000035,63.685546999999985],[-91.34973100000002,63.677772999999945],[-91.336945000000014,63.675270000000012],[-91.329453000000001,63.677772999999945],[-91.333892999999989,63.682495000000017],[-91.34056099999998,63.686652999999978],[-91.34944200000001,63.690826000000129],[-91.362503000000004,63.694435000000112],[-91.411666999999909,63.707214000000022],[-91.529174999999952,63.729987999999992],[-91.540558000000033,63.730820000000051],[-91.551392000000021,63.729713000000118],[-91.560821999999916,63.726653999999996],[-91.569457999999997,63.721930999999984],[-91.575561999999934,63.716385000000116],[-91.584166999999979,63.711380000000077],[-91.595550999999887,63.711380000000077],[-91.910552999999936,63.740546999999992],[-92.06639100000001,63.74193600000001],[-92.136123999999938,63.745544000000109],[-92.148620999999991,63.748047000000099],[-92.175003000000004,63.755271999999991],[-92.186110999999983,63.758888000000013],[-92.434433000000013,63.804993000000024],[-92.482772999999952,63.811935000000119],[-92.471664000000033,63.80832700000002],[-92.437774999999931,63.79222100000004],[-92.428328999999962,63.783051],[-92.425551999999982,63.778603000000032],[-92.422500999999954,63.748878000000104],[-92.415832999999964,63.744713000000104],[-92.406661999999926,63.740546999999992],[-92.395553999999947,63.736938000000009],[-92.382766999999944,63.734161000000086],[-92.348891999999921,63.733879000000059],[-92.306380999999931,63.738602000000014],[-92.263061999999934,63.741379000000109],[-92.251113999999973,63.740546999999992],[-92.148055999999997,63.716934000000094],[-92.103881999999942,63.701660000000004],[-92.101669000000015,63.696938000000102],[-92.105559999999969,63.691658000000018],[-92.204177999999956,63.638046000000088],[-92.252501999999993,63.623878000000047],[-92.262512000000015,63.62193300000007],[-92.385009999999909,63.592491000000109],[-92.48971599999993,63.567215000000033],[-92.493056999999965,63.540832999999964],[-92.480835000000013,63.527214000000072],[-92.429168999999945,63.546944000000053],[-92.336394999999868,63.556938000000059],[-92.279998999999975,63.556099000000131],[-92.20666499999993,63.606102000000078],[-92.202788999999882,63.611381999999935],[-92.193877999999927,63.615273000000002],[-92.165282999999988,63.624435000000119],[-91.971114999999998,63.679993000000138],[-91.830291999999929,63.712212000000022],[-91.820006999999976,63.714157],[-91.809432999999956,63.715271000000143],[-91.776107999999965,63.715828000000045],[-91.763335999999981,63.713325999999995],[-91.695266999999944,63.690544000000045],[-91.670837000000006,63.678047000000049],[-91.617492999999911,63.648880000000133],[-91.613051999999925,63.644440000000145],[-91.611388999999974,63.639160000000061],[-91.61250299999989,63.629158000000075],[-91.618056999999965,63.613608999999997],[-91.617217999999923,63.603882000000056],[-91.607498000000021,63.584991000000002],[-91.600829999999974,63.580551000000014],[-91.39805599999994,63.524994000000049],[-91.274170000000026,63.502495000000124],[-91.133056999999951,63.478043000000014],[-90.945540999999935,63.440269000000114],[-90.854720999999984,63.408600000000092],[-90.915557999999919,63.41054500000007],[-90.932770000000005,63.418602000000078],[-90.945540999999935,63.422493000000145],[-90.956954999999937,63.423325000000034],[-90.96833799999996,63.423050000000046],[-90.975006000000008,63.419441000000006],[-90.972777999999948,63.414711000000011],[-90.957503999999972,63.401382000000069],[-90.942214999999976,63.393051000000014],[-90.931380999999931,63.389160000000118],[-90.918883999999935,63.386383000000023],[-90.816665999999998,63.369156000000032],[-90.741942999999992,63.360825000000091],[-90.690825999999959,63.228324999999984],[-90.627486999999974,63.059433000000013],[-90.649169999999913,63.036385000000109],[-90.739990000000034,62.962212000000136],[-90.775832999999977,62.941933000000006],[-90.785004000000015,62.938041999999939],[-90.794998000000021,62.936104],[-90.825835999999924,62.933052000000089],[-90.847778000000005,62.932770000000005],[-90.870270000000005,62.934433000000126],[-90.929442999999992,62.944435000000112],[-90.940551999999968,62.945267000000001],[-91.017226999999934,62.946380999999974],[-91.038329999999917,62.944153000000028],[-91.048049999999989,62.94221500000009],[-91.173049999999989,62.908600000000035],[-91.18249499999996,62.905823000000112],[-91.190825999999959,62.900825999999995],[-91.196654999999964,62.895271000000093],[-91.200561999999934,62.88999200000012],[-91.199721999999895,62.870270000000062],[-91.207229999999981,62.8597180000001],[-91.213333000000034,62.854164000000083],[-91.356383999999991,62.788605000000018],[-91.366652999999928,62.787498000000085],[-91.440276999999867,62.782768000000033],[-91.46166999999997,62.782494000000099],[-91.579178000000013,62.799995000000081],[-91.840285999999935,62.826385000000073],[-91.990279999999984,62.84693900000002],[-92.087508999999898,62.818886000000077],[-92.214721999999995,62.824715000000083],[-92.223052999999993,62.828880000000083],[-92.236114999999927,62.832214000000079],[-92.339995999999985,62.843605000000025],[-92.361937999999952,62.844154000000003],[-92.382766999999944,62.841660000000047],[-92.392501999999922,62.839713999999958],[-92.402221999999995,62.837493999999992],[-92.420836999999949,62.831383000000073],[-92.438323999999966,62.823607999999979],[-92.455275999999969,62.814712999999983],[-92.459441999999967,62.810272000000055],[-92.458618000000001,62.800270000000069],[-92.455841000000021,62.79583000000008],[-92.451400999999919,62.791107000000068],[-92.333617999999944,62.709991000000116],[-92.232773000000009,62.673049999999989],[-92.188598999999954,62.659156999999993],[-92.178329000000019,62.65638000000007],[-92.067779999999971,62.651657000000057],[-92.034728999999857,62.65026899999998],[-91.971389999999928,62.653320000000008],[-91.948883000000023,62.651932000000102],[-91.925827000000027,62.644440000000145],[-91.908614999999998,62.636383000000023],[-91.882766999999944,62.624161000000015],[-91.880554000000018,62.619438000000059],[-91.883330999999998,62.604438999999957],[-91.885009999999909,62.5991590000001],[-91.890288999999996,62.588600000000042],[-91.941375999999991,62.534996000000035],[-91.948043999999982,62.531380000000013],[-92.053328999999962,62.526657],[-92.153060999999923,62.598045000000127],[-92.163329999999974,62.600829999999974],[-92.186110999999983,62.603324999999984],[-92.196655000000021,62.603049999999996],[-92.266112999999962,62.595268000000033],[-92.275009000000011,62.591377000000136],[-92.271399999999971,62.578049000000135],[-92.275557999999933,62.560272000000111],[-92.325561999999991,62.540833000000021],[-92.365004999999996,62.533332999999914],[-92.384734999999978,62.529990999999995],[-92.396118000000001,62.530823000000112],[-92.430831999999953,62.535827999999981],[-92.468062999999972,62.54444100000012],[-92.539169000000015,62.532493999999986],[-92.606110000000001,62.464996000000042],[-92.617767000000015,62.466660000000047],[-92.710006999999962,62.465827999999931],[-92.726105000000018,62.444153000000142],[-92.729720999999984,62.438599000000124],[-92.731109999999944,62.433601000000124],[-92.730834999999956,62.428604000000064],[-92.724716000000001,62.358604000000014],[-92.714721999999995,62.343880000000013],[-92.665833000000021,62.332771000000093],[-92.628052000000025,62.322220000000016],[-92.606658999999922,62.31471300000004],[-92.598052999999936,62.310821999999973],[-92.585006999999905,62.302216000000044],[-92.584441999999967,62.297493000000088],[-92.585830999999871,62.292220999999984],[-92.601668999999958,62.265549000000078],[-92.610275000000001,62.261382999999967],[-92.603995999999938,62.236324000000138],[-92.573058999999944,62.196098000000006],[-92.568619000000012,62.191657999999961],[-92.561934999999949,62.187492000000077],[-92.536666999999966,62.175551999999982],[-92.486388999999974,62.161377000000073],[-92.478057999999919,62.157493999999986],[-92.47001599999993,62.146614],[-92.477782999999988,62.143883000000017],[-92.48721299999994,62.144157000000121],[-92.592223999999987,62.154990999999995],[-92.603881999999942,62.156379999999956],[-92.625823999999909,62.191657999999961],[-92.64044199999995,62.209098999999924],[-92.638435000000015,62.212273000000039],[-92.638275000000021,62.215103000000056],[-92.639938000000029,62.217770000000087],[-92.700561999999991,62.265549000000078],[-92.741103999999893,62.28694200000001],[-92.747498000000007,62.289993000000038],[-92.845551,62.309433000000013],[-93.075561999999991,62.332214000000022],[-93.12222300000002,62.334991000000116],[-92.904174999999952,62.262215000000083],[-92.892226999999991,62.259720000000073],[-92.866393999999957,62.263054000000068],[-92.839995999999985,62.260276999999974],[-92.828612999999905,62.257217000000082],[-92.780288999999868,62.236938000000123],[-92.765288999999996,62.224434000000088],[-92.764724999999942,62.219437000000028],[-92.790282999999988,62.177489999999921],[-92.795836999999949,62.172768000000019],[-92.800963999999965,62.172905000000014],[-92.840285999999992,62.174438000000009],[-92.851943999999946,62.175827000000027],[-92.862503000000004,62.17943600000001],[-92.954453000000001,62.192764000000011],[-93.06806899999998,62.174995000000081],[-93.076674999999909,62.17193600000013],[-93.110000999999954,62.156654000000117],[-93.114440999999999,62.15415999999999],[-93.119720000000029,62.148330999999985],[-93.126937999999882,62.132492000000013],[-93.124160999999958,62.128044000000045],[-93.119445999999925,62.123604000000057],[-93.081389999999942,62.10443900000007],[-93.069167999999877,62.103607000000011],[-93.059722999999906,62.105826999999977],[-93.037506000000008,62.121658000000139],[-93.028885000000002,62.12471000000005],[-93.019164999999987,62.126099000000067],[-93.008057000000008,62.125549000000035],[-92.940552000000025,62.115547000000049],[-92.933060000000012,62.11360900000011],[-92.930557000000022,62.109160999999972],[-92.931380999999988,62.104164000000083],[-92.936935000000005,62.099159000000043],[-92.968338000000017,62.077217000000132],[-92.991104000000007,62.067772000000105],[-93.140839000000028,62.009720000000129],[-93.237212999999997,62.02693899999997],[-93.246384000000035,62.033333000000027],[-93.277495999999871,62.042770000000132],[-93.302779999999927,62.049438000000123],[-93.325286999999946,62.051384000000041],[-93.411391999999978,62.03138000000007],[-93.413054999999986,62.025551000000064],[-93.39416499999993,62.013610999999969],[-93.385559000000001,62.009995000000117],[-93.373610999999983,62.007500000000107],[-93.361937999999952,62.00610400000005],[-93.342223999999931,62.004997000000117],[-93.318893000000003,61.998047000000099],[-93.244445999999982,61.969437000000028],[-93.235549999999989,61.965545999999961],[-93.222228999999913,61.957496999999989],[-93.218338000000017,61.95249200000012],[-93.217223999999987,61.947769000000108],[-93.281951999999876,61.891380000000083],[-93.299728000000016,61.885826000000066],[-93.309157999999911,61.883606000000043],[-93.330565999999919,61.886383000000137],[-93.442489999999964,61.915268000000026],[-93.461670000000026,61.922493000000088],[-93.616104000000007,61.939986999999974],[-93.600280999999939,61.879158000000075],[-93.61721799999998,61.861938000000123],[-93.556945999999982,61.847771000000137],[-93.435821999999973,61.808883999999978],[-93.282776000000013,61.788887000000102],[-93.248610999999983,61.78472099999999],[-93.237777999999935,61.777214000000072],[-93.242492999999968,61.767493999999999],[-93.25556899999998,61.742493000000138],[-93.356948999999986,61.707214000000022],[-93.449431999999945,61.682213000000047],[-93.542769999999962,61.663321999999994],[-93.594161999999926,61.648048000000074],[-93.654998999999862,61.629158000000132],[-93.856658999999979,61.549164000000133],[-93.984726000000023,61.456100000000106],[-93.985275000000001,61.454163000000051],[-93.968613000000005,61.396660000000054],[-93.932495000000017,61.387214999999969],[-93.921935999999903,61.385269000000108],[-93.911666999999966,61.385826000000009],[-93.906386999999995,61.387497000000053],[-93.895003999999972,61.389160000000004],[-93.884734999999864,61.389717000000076],[-93.868056999999965,61.389160000000004],[-93.857498000000021,61.385551000000135],[-93.820281999999963,61.355826999999977],[-93.817504999999983,61.351386999999932],[-93.819167999999991,61.347214000000008],[-93.839447000000007,61.319443000000092],[-93.84445199999999,61.316101000000003],[-93.858046999999942,61.312767000000008],[-93.932220000000029,61.296661000000029],[-93.940552000000025,61.294998000000078],[-94.057219999999973,61.178329000000076],[-94.14805599999994,61.043610000000058],[-94.226943999999946,60.942764000000068],[-94.349166999999909,60.858603999999957],[-94.353333000000021,60.853607000000068],[-94.391112999999905,60.798882000000049],[-94.415282999999988,60.762215000000026],[-94.415008999999998,60.756660000000124],[-94.451674999999966,60.671104000000128],[-94.505004999999983,60.549995000000138],[-94.509444999999971,60.544159000000093],[-94.563048999999978,60.522217000000012],[-94.575835999999981,60.52027099999998],[-94.611389000000031,60.52777100000003],[-94.67332499999992,60.522490999999945],[-94.671660999999915,60.466103000000032],[-94.629439999999988,60.41832700000009],[-94.626388999999961,60.413605000000018],[-94.614715999999873,60.38999200000012],[-94.613891999999908,60.380547000000035],[-94.615004999999996,60.375266999999951],[-94.620834000000002,60.363883999999985],[-94.681945999999925,60.224158999999929],[-94.673614999999927,60.191101000000117],[-94.704726999999934,60.091933999999981],[-94.707503999999972,60.083603000000096],[-94.711394999999925,60.078330999999991],[-94.714721999999938,60.075272000000041],[-94.728333000000021,60.071380999999974],[-94.746658000000025,60.069992000000127],[-94.752791999999943,60.06860400000005],[-94.766402999999912,60.061378000000104],[-94.771117999999944,60.055549999999982],[-94.803878999999995,60.008330999999998],[-94.803878999999995,60.003609000000097],[-94.800430000000006,59.999565000000132],[-94.819167999999991,59.964714000000129],[-94.821670999999924,59.959160000000111],[-94.822509999999909,59.954162999999994],[-94.820556999999951,59.944434999999999],[-94.803329000000019,59.877768999999944],[-94.803329000000019,59.711104999999975],[-94.819167999999991,59.63638300000008],[-94.788605000000018,59.51527400000009],[-94.735275000000001,59.426384000000098],[-94.680557000000022,59.357215999999994],[-94.715285999999992,59.323326000000066],[-94.770003999999972,59.29833200000013],[-94.775009000000011,59.29332700000009],[-94.781386999999995,59.263611000000026],[-94.782227000000034,59.258331000000112],[-94.789718999999991,59.092216000000064],[-94.681670999999994,58.975822000000107],[-94.679992999999968,58.97137500000008],[-94.676392000000021,58.93443300000007],[-94.597777999999948,58.878326000000072],[-94.586394999999868,58.874992000000077],[-94.486938000000009,58.815269000000058],[-94.482223999999974,58.811104000000057],[-94.477782999999931,58.806656000000089],[-94.474716000000001,58.802216000000044],[-94.457503999999915,58.774162000000047],[-94.453338999999914,58.765274000000034],[-94.452788999999882,58.759720000000016],[-94.453338999999914,58.750549000000092],[-94.448607999999979,58.736382000000106],[-94.446105999999986,58.731658999999979],[-94.43720999999988,58.72304500000007],[-94.421660999999972,58.716385000000059],[-94.410552999999993,58.714157000000114],[-94.361388999999974,58.712769000000037],[-94.343613000000005,58.715546000000074],[-94.326950000000011,58.721656999999993],[-94.291107000000011,58.743606999999997],[-94.279175000000009,58.771103000000039],[-94.228881999999999,58.784996000000092],[-94.234725999999966,58.714714000000015],[-94.252228000000002,58.649994000000049],[-94.285277999999892,58.512496999999996],[-94.287216000000001,58.438041999999996],[-94.289168999999958,58.427773000000116],[-94.291672000000005,58.422218000000044],[-94.296660999999972,58.415825000000098],[-94.326400999999976,58.349159000000043],[-94.348617999999988,58.2866590000001],[-94.351668999999902,58.276656999999943],[-94.363892000000021,58.22387700000013],[-94.363327000000027,58.218880000000013],[-94.360275000000001,58.220543000000134],[-94.3558349999999,58.226097000000095],[-94.259445000000028,58.351386999999988],[-94.231110000000001,58.390549000000021],[-94.228606999999954,58.396103000000039],[-94.226943999999946,58.406380000000013],[-94.231110000000001,58.430824000000143],[-94.238891999999964,58.494155999999975],[-94.24610899999999,58.576385000000016],[-94.24610899999999,58.586654999999951],[-94.245269999999948,58.59165999999999],[-94.242766999999958,58.597214000000008],[-94.143889999999942,58.763610999999912],[-94.113892000000021,58.762215000000083],[-93.995833999999945,58.760826000000066],[-93.949158000000011,58.76249700000011],[-93.843886999999938,58.767769000000044],[-93.798614999999927,58.773604999999918],[-93.728058000000033,58.783882000000119],[-93.709732000000031,58.785827999999981],[-93.673049999999932,58.780823000000112],[-93.575561999999991,58.763885000000016],[-93.475554999999986,58.732491000000039],[-93.350554999999929,58.74582700000002],[-93.343886999999881,58.750832000000059],[-93.327788999999996,58.757217000000082],[-93.319167999999991,58.758606000000043],[-93.236664000000019,58.766936999999984],[-93.216659999999933,58.764160000000061],[-93.196380999999974,58.758331000000055],[-93.155562999999972,58.740273000000002],[-93.152221999999938,58.737770000000012],[-93.141112999999962,58.691933000000006],[-93.139724999999885,58.653876999999966],[-93.126937999999882,58.532494000000042],[-93.126099000000011,58.527771000000087],[-93.118057000000022,58.508888000000013],[-93.095276000000013,58.467209000000082],[-93.035277999999948,58.37082700000002],[-92.964721999999938,58.261108000000036],[-92.93110699999994,58.21166199999999],[-92.868880999999931,58.143050999999957],[-92.811660999999901,58.071663000000058],[-92.803329000000019,58.057213000000104],[-92.799987999999985,58.042221000000097],[-92.805557000000022,58.011940000000038],[-92.805557000000022,58.00638600000002],[-92.80471799999998,57.997490000000084],[-92.795273000000009,57.96888000000007],[-92.753615999999965,57.85083000000003],[-92.724716000000001,57.801383999999985],[-92.672501000000011,57.733047000000056],[-92.621108999999876,57.670547000000113],[-92.450835999999981,57.442490000000134],[-92.446380999999974,57.433051999999918],[-92.418883999999991,57.337493999999992],[-92.418334999999956,57.332497000000103],[-92.418883999999991,57.323326000000122],[-92.427215999999987,57.263053999999954],[-92.430283000000031,57.252220000000079],[-92.441101000000003,57.23054500000012],[-92.549437999999896,57.08554799999996],[-92.563889000000017,57.068885999999964],[-92.576400999999976,57.056938000000116],[-92.695267000000001,56.961662000000047],[-92.708617999999888,56.951660000000118],[-92.715835999999967,56.947487000000137],[-92.723327999999924,56.944435000000055],[-92.73832699999997,56.94110100000006],[-92.771392999999932,56.93804200000011],[-92.837219000000005,56.924438000000009],[-92.868056999999965,56.91415399999994],[-92.877212999999927,56.90915700000005],[-92.876098999999954,56.907494000000099],[-92.868332000000009,56.90665400000006],[-92.850554999999929,56.907211000000132],[-92.831680000000006,56.908599999999979],[-92.790557999999976,56.913879000000122],[-92.756957999999997,56.918602000000135],[-92.731383999999991,56.922492999999974],[-92.691101000000003,56.93360100000001],[-92.660277999999948,56.945266999999944],[-92.652221999999881,56.949158000000011],[-92.61721799999998,56.96888000000007],[-92.610000999999954,56.974709000000075],[-92.589171999999905,56.986382000000106],[-92.552779999999984,57.004714999999976],[-92.514450000000011,57.023604999999918],[-92.492217999999923,57.032493999999986],[-92.475280999999995,57.037498000000141],[-92.443054000000018,57.044715999999994],[-92.40055799999999,57.052216000000044],[-92.376098999999954,57.056381000000044],[-92.253615999999965,57.065544000000045],[-92.235549999999989,57.066101000000117],[-92.226105000000018,57.065544000000045],[-92.217223999999987,57.063049000000035],[-92.212218999999948,57.058043999999995],[-92.218932999999993,57.052779999999984],[-92.337509000000011,56.981377000000066],[-92.344727000000034,56.977485999999999],[-92.352218999999991,56.974159000000043],[-92.368332000000009,56.969711000000075],[-92.385558999999944,56.967209000000025],[-92.394454999999994,56.966933999999981],[-92.418610000000001,56.961937000000091],[-92.432220000000029,56.955826000000002],[-92.46945199999999,56.934989999999971],[-92.466399999999965,56.932495000000131],[-92.375,56.949714999999912],[-92.303054999999972,56.967491000000109],[-92.287215999999944,56.974434000000088],[-92.281113000000005,56.978874000000076],[-92.268616000000009,56.990829000000019],[-92.261947999999961,56.99582700000002],[-92.235275000000001,57.012771999999984],[-92.220276000000013,57.018883000000017],[-92.204453000000001,57.02416199999999],[-92.180282999999974,57.030823000000112],[-92.155272999999909,57.036658999999986],[-92.146666999999979,57.037772999999959],[-92.129165999999941,57.03943600000008],[-92.093062999999972,57.040833000000021],[-92.057769999999891,57.043884000000048],[-92.031677000000002,57.046660999999972],[-91.987503000000004,57.052489999999977],[-91.952224999999999,57.05721299999999],[-91.828888000000006,57.087211999999965],[-91.779998999999975,57.100273000000129],[-91.241104000000007,57.222214000000008],[-91.15583799999996,57.239989999999977],[-91.08944699999995,57.251106000000107],[-91.05471799999998,57.256104000000107],[-91.036391999999978,57.258049000000085],[-91.001677999999913,57.26138300000008],[-90.992767000000015,57.26138300000008],[-90.834166999999923,57.257217000000026],[-90.81527699999998,57.255829000000119],[-90.795546999999999,57.24971800000003],[-90.779175000000009,57.243324000000143],[-90.758895999999993,57.237769999999955],[-90.738051999999925,57.232490999999982],[-90.71945199999999,57.228043000000014],[-90.709441999999967,57.226379000000009],[-90.563323999999909,57.212212000000079],[-90.451110999999969,57.193878000000097],[-90.408614999999998,57.181664000000069],[-90.391678000000013,57.176102000000128],[-90.387786999999946,57.171378999999945],[-90.310821999999973,57.134995000000117],[-90.225554999999929,57.104439000000013],[-90.025009000000011,57.031380000000013],[-90.005004999999983,57.01915699999995],[-90,57.016369000000054],[-89.990554999999972,57.011107999999922],[-89.970276000000013,57.004166000000055],[-89.833068999999966,56.978324999999984],[-89.715285999999992,56.957214000000079],[-89.521392999999932,56.92943600000001],[-89.439163000000008,56.923881999999992],[-89.132941999999957,56.864852999999982],[-89.06806899999998,56.852219000000048],[-89.015288999999939,56.84777100000008],[-88.950287000000003,56.843048000000124],[-88.94261199999994,56.844269000000054],[-88.815001999999993,56.824440000000038],[-88.742767000000015,56.764442000000145],[-88.67193599999996,56.709435000000042],[-88.654723999999931,56.696380999999974],[-88.639998999999989,56.688599000000067],[-88.631377999999984,56.68471500000004],[-88.584166999999923,56.670546999999999],[-88.440552000000025,56.603607000000011],[-88.415008999999998,56.58638000000002],[-88.365829000000019,56.561661000000015],[-88.324172999999973,56.542770000000019],[-88.218886999999995,56.504440000000045],[-88.149444999999957,56.486938000000009],[-88.103057999999976,56.476097000000095],[-88.069732999999928,56.468880000000013],[-88.048889000000031,56.465546000000018],[-88.028885000000002,56.459991000000116],[-88.018616000000009,56.456100000000049],[-87.982772999999952,56.441658000000075],[-87.975554999999929,56.437491999999963],[-87.841110000000015,56.315269000000001],[-87.723891999999978,56.203880000000083],[-87.719161999999926,56.198875000000044],[-87.715011999999945,56.189987000000031],[-87.71556099999998,56.169716000000051],[-87.713897999999972,56.164993000000095],[-87.708053999999947,56.156096999999988],[-87.702788999999996,56.151931999999988],[-87.548614999999927,56.049995000000138],[-87.478881999999999,56.029160000000047],[-87.368880999999988,56.000832000000059],[-87.351943999999889,55.992767000000129],[-87.345276000000013,55.988602000000128],[-87.343613000000005,55.983879000000002],[-87.348343,55.973320000000115],[-87.355270000000019,55.962769000000037],[-87.198333999999988,55.940269000000001],[-87.110001000000011,55.92943600000001],[-87.091675000000009,55.927489999999921],[-87.057220000000029,55.926940999999999],[-87.031676999999945,55.929718000000094],[-86.996947999999975,55.931663999999955],[-86.979445999999939,55.931663999999955],[-86.970000999999968,55.929718000000094],[-86.881942999999922,55.907211000000018],[-86.837783999999999,55.891380000000026],[-86.616942999999992,55.838882000000012],[-86.572783999999956,55.83027600000014],[-86.544448999999986,55.824440000000038],[-86.486663999999962,55.811378000000047],[-86.477782999999931,55.808884000000091],[-86.448607999999979,55.799995000000024],[-86.398620999999991,55.784164000000033],[-86.372771999999998,55.774993999999992],[-86.346114999999998,55.763054000000068],[-86.332779000000016,55.754715000000033],[-86.321944999999971,55.745544000000109],[-86.31527699999998,55.741104000000064],[-86.277221999999995,55.728873999999962],[-86.267776000000026,55.726936000000023],[-85.86721799999998,55.657493999999986],[-85.740829000000019,55.638046000000088],[-85.731673999999998,55.636940000000038],[-85.71444699999995,55.631660000000011],[-85.569457999999941,55.55860100000001],[-85.556655999999975,55.550270000000069],[-85.532227000000034,55.528045999999961],[-85.525833000000034,55.51888299999996],[-85.516662999999994,55.500000000000057],[-85.515015000000005,55.495270000000062],[-85.515288999999996,55.490273000000116],[-85.509170999999981,55.481102000000021],[-85.499435000000005,55.472214000000008],[-85.474166999999909,55.454711999999972],[-85.393340999999964,55.408881999999949],[-85.383620999999948,55.404991000000109],[-85.272232000000031,55.374709999999993],[-85.234726000000023,55.364715999999987],[-85.224716000000001,55.364159000000086],[-85.208617999999944,55.365273000000059],[-85.182219999999973,55.365273000000059],[-85.164444000000003,55.361664000000076],[-85.146118000000001,55.354996000000085],[-85.128875999999991,55.346382000000006],[-85.123885999999857,55.341934000000037],[-85.121933000000013,55.337769000000037],[-85.116652999999928,55.323050999999964],[-85.116394000000014,55.313606000000107],[-85.118331999999953,55.308601000000067],[-85.121933000000013,55.303322000000094],[-85.129165999999998,55.297775000000115],[-85.144164999999987,55.290276000000119],[-85.215285999999935,55.268600000000049],[-85.275283999999999,55.216660000000047],[-85.398055999999997,55.10083000000003],[-85.399993999999936,55.095824999999991],[-85.397506999999962,55.090546000000018],[-85.383620999999948,55.06749700000006],[-85.398055999999997,55.0472180000001],[-85.419448999999986,55.010826000000122],[-85.425003000000004,55.000274999999988],[-85.425003000000004,54.995544000000052],[-85.423889000000031,54.990546999999992],[-85.414443999999946,54.991104000000064],[-85.407500999999968,54.993324000000086],[-85.400283999999942,54.997772000000055],[-85.386123999999938,55.008049000000028],[-85.370543999999938,55.024437000000091],[-85.366942999999992,55.029716000000064],[-85.36250299999989,55.04055000000011],[-85.347778000000005,55.080826000000116],[-85.33555599999994,55.101661999999976],[-85.318344000000025,55.127486999999974],[-85.313048999999978,55.132767000000001],[-85.220275999999956,55.224434000000088],[-85.194153000000028,55.244155999999919],[-85.17971799999998,55.253608999999926],[-85.156113000000005,55.264160000000061],[-85.139998999999989,55.270270999999923],[-85.116652999999928,55.276657000000057],[-85.06806899999998,55.287498000000141],[-85.043883999999878,55.292770000000075],[-85.001952999999958,55.296660999999972],[-84.974715999999944,55.295830000000137],[-84.869445999999982,55.279716000000008],[-84.75140399999998,55.256103999999993],[-84.723617999999931,55.249718000000087],[-84.712783999999942,55.247771999999998],[-84.688048999999921,55.245270000000119],[-84.635559000000001,55.24221799999998],[-84.599166999999909,55.241661000000079],[-84.566390999999953,55.244155999999919],[-84.541381999999999,55.247490000000084],[-84.444716999999855,55.267769000000044],[-84.428878999999995,55.273048000000017],[-84.388610999999969,55.282493999999986],[-84.322783999999956,55.289992999999981],[-84.206954999999937,55.295546999999999],[-84.198607999999979,55.295273000000066],[-84.189437999999996,55.294159000000093],[-84.170837000000006,55.283051000000057],[-84.159438999999963,55.278328000000101],[-84.149170000000026,55.275551000000007],[-84.12222300000002,55.272217000000012],[-84.113892000000021,55.271934999999928],[-84.092223999999987,55.271660000000111],[-84.076110999999969,55.276099999999929],[-84.049987999999928,55.286110000000065],[-84.006393000000003,55.301383999999928],[-83.968886999999881,55.313881000000094],[-83.951675000000023,55.317497000000003],[-83.93249499999996,55.319443000000035],[-83.920273000000009,55.319160000000068],[-83.897506999999905,55.316940000000102],[-83.658386000000007,55.237324000000058],[-83.65439600000002,55.235493000000076],[-83.651732999999922,55.232985999999983],[-83.570281999999963,55.18804200000011],[-83.567229999999938,55.183052000000032],[-83.570007000000032,55.177773000000059],[-83.58555599999994,55.166100000000029],[-83.591674999999896,55.154434000000037],[-83.589721999999938,55.149719000000005],[-83.574447999999961,55.138045999999974],[-83.561935000000005,55.130820999999969],[-83.556655999999919,55.134163000000058],[-83.556655999999919,55.17943600000001],[-83.558608999999933,55.184989999999971],[-83.579505999999867,55.221157000000005],[-83.588057999999933,55.233330000000024],[-83.593886999999938,55.236938000000123],[-83.60082999999986,55.239990000000034],[-83.620833999999945,55.242767000000129],[-83.643889999999999,55.242767000000129],[-83.654448999999943,55.243881000000101],[-83.670837000000006,55.248604000000057],[-83.684432999999956,55.254439999999988],[-83.696105999999986,55.261664999999994],[-83.706116000000009,55.269714000000022],[-83.708892999999989,55.274437000000034],[-83.706116000000009,55.279990999999995],[-83.698607999999979,55.283051000000057],[-83.688888999999961,55.281937000000084],[-83.57417299999986,55.262215000000026],[-83.533324999999934,55.250549000000092],[-83.519454999999937,55.243881000000101],[-83.498885999999914,55.235549999999989],[-83.489440999999943,55.233879000000115],[-83.179717999999866,55.197211999999979],[-83.168609999999944,55.197487000000137],[-83.150283999999942,55.200271999999984],[-83.128051999999968,55.207497000000046],[-83.120270000000005,55.210823000000119],[-83.089721999999938,55.226654000000053],[-83.074447999999961,55.231658999999922],[-83.037505999999951,55.238327000000083],[-83.029174999999952,55.238883999999985],[-83.006392999999946,55.238602000000128],[-82.985001000000011,55.236382000000106],[-82.964721999999995,55.233604000000128],[-82.948607999999865,55.228874000000076],[-82.941665999999941,55.225821999999994],[-82.930556999999965,55.218322999999998],[-82.91332999999986,55.201385000000073],[-82.906113000000005,55.191932999999949],[-82.896956999999986,55.177215999999987],[-82.874435000000005,55.154434000000037],[-82.838333000000034,55.146660000000054],[-82.809998000000007,55.142220000000009],[-82.786117999999988,55.141106000000036],[-82.775283999999942,55.14137999999997],[-82.76556399999987,55.142493999999942],[-82.73971599999993,55.147491000000059],[-82.708618000000001,55.156380000000127],[-82.700835999999981,55.159714000000122],[-82.669723999999974,55.168052999999986],[-82.661117999999931,55.169716000000108],[-82.650283999999886,55.169716000000108],[-82.508346999999901,55.152771000000143],[-82.449432000000002,55.133049000000085],[-82.412506000000008,55.112770000000125],[-82.40972899999997,55.108046999999999],[-82.400833000000034,55.082771000000093],[-82.33555599999994,55.071014000000048],[-82.307495000000017,55.115829000000133],[-82.308043999999995,55.121933000000126],[-82.309432999999899,55.127486999999974],[-82.3125,55.132492000000013],[-82.323623999999995,55.139992000000063],[-82.337218999999948,55.146102999999982],[-82.345276000000013,55.148331000000098],[-82.355559999999969,55.162491000000045],[-82.349990999999875,55.166382000000112],[-82.34056099999998,55.164711000000011],[-82.333618000000001,55.1616590000001],[-82.307769999999948,55.148880000000077],[-82.25418099999996,55.111382000000049],[-82.245833999999945,55.102776000000119],[-82.244995000000017,55.09027100000003],[-82.246947999999861,55.084160000000111],[-82.253341999999975,55.073608000000092],[-82.25778200000002,55.06888600000002],[-82.273620999999935,55.05721299999999],[-82.282227000000034,55.048049999999989],[-82.285277999999948,55.042770000000132],[-82.287216000000001,55.036659000000043],[-82.287216000000001,55.030273000000136],[-82.270844000000011,54.931381000000044],[-82.267226999999991,54.920273000000009],[-82.255279999999914,54.894157000000121],[-82.246947999999861,54.879433000000063],[-82.241378999999938,54.874991999999963],[-82.231948999999986,54.873877999999991],[-82.221114999999998,54.787498000000085],[-82.320846999999958,54.571380999999974],[-82.403885000000002,54.410820000000115],[-82.419158999999979,54.384163000000058],[-82.431670999999938,54.370270000000005],[-82.436935000000005,54.366385999999977],[-82.441101000000003,54.361664000000076],[-82.441665999999941,54.330826000000116],[-82.434158000000025,54.209435000000042],[-82.421660999999972,54.197211999999979],[-82.389998999999989,54.16832700000009],[-82.362777999999878,54.143607999999972],[-82.301392000000021,54.103050000000053],[-82.283889999999985,54.092491000000052],[-82.253341999999975,54.076102999999989],[-82.248046999999929,54.072220000000016],[-82.243880999999931,54.068054000000132],[-82.238327000000027,54.057495000000074],[-82.160278000000005,53.898880000000133],[-82.131942999999978,53.817772000000105],[-82.130553999999961,53.793052999999986],[-82.129715000000033,53.774436999999978],[-82.130553999999961,53.767493999999999],[-82.136672999999917,53.749161000000129],[-82.148894999999982,53.727768000000026],[-82.189986999999917,53.674164000000019],[-82.194152999999915,53.669441000000006],[-82.203063999999927,53.653320000000008],[-82.208344000000011,53.641936999999984],[-82.212783999999999,53.622765000000015],[-82.21665999999999,53.603882000000112],[-82.211944999999957,53.536110000000065],[-82.208618000000001,53.524994000000106],[-82.198883000000023,53.504714999999976],[-82.190552000000025,53.489716000000101],[-82.172500999999954,53.460548000000074],[-82.165558000000033,53.451385000000073],[-82.158614999999998,53.442215000000033],[-82.147781000000009,53.421661000000086],[-82.138061999999991,53.38888500000013],[-82.125823999999966,53.344154000000117],[-82.119445999999982,53.315826000000129],[-82.115829000000019,53.298332000000073],[-82.113891999999908,53.286659000000043],[-82.113891999999908,53.280273000000136],[-82.114715999999873,53.273604999999975],[-82.117766999999958,53.268050999999957],[-82.121932999999956,53.263610999999969],[-82.141387999999949,53.254715000000033],[-82.21055599999994,53.220268000000033],[-82.248336999999935,53.193877999999984],[-82.269454999999937,53.163879000000009],[-82.27555799999999,53.153320000000122],[-82.279448999999943,53.141106000000093],[-82.300277999999935,53.060271999999998],[-82.301392000000021,53.05332199999998],[-82.301666000000012,53.041663999999969],[-82.296660999999972,53.018599999999992],[-82.273894999999982,52.956383000000017],[-82.261397999999986,52.937210000000107],[-82.257506999999976,52.932770000000062],[-82.235824999999977,52.924164000000133],[-82.196380999999974,52.913321999999937],[-82.136123999999995,52.894714000000079],[-82.120543999999995,52.889717000000132],[-82.101669000000015,52.879990000000021],[-82.050551999999982,52.84304800000001],[-82.025833000000034,52.823883000000023],[-82.001113999999973,52.804710000000114],[-81.977782999999931,52.784996000000035],[-81.973617999999931,52.780548000000067],[-81.951401000000033,52.736938000000066],[-81.733611999999994,52.549995000000138],[-81.719161999999983,52.538330000000087],[-81.714172000000019,52.534721000000047],[-81.697494999999947,52.524162000000047],[-81.639175000000023,52.490547000000106],[-81.621384000000035,52.480819999999994],[-81.607497999999964,52.475265999999976],[-81.577224999999999,52.465271000000087],[-81.569457999999941,52.462212000000136],[-81.558043999999938,52.456099999999935],[-81.554168999999888,52.451660000000118],[-81.551391999999964,52.446655000000078],[-81.549987999999985,52.44110100000006],[-81.542496000000028,52.338882000000012],[-81.56138599999997,52.316383000000087],[-81.663054999999986,52.292220999999984],[-81.822509999999909,52.254440000000045],[-81.850829999999917,52.244995000000131],[-81.863051999999982,52.238884000000041],[-81.865829000000019,52.23333000000008],[-81.883620999999948,52.187492000000134],[-81.874160999999901,52.188324000000023],[-81.841949,52.194992000000013],[-81.826950000000011,52.19887499999993],[-81.805557000000022,52.206099999999992],[-81.795546999999999,52.213882000000126],[-81.792495999999971,52.21915400000006],[-81.788605000000018,52.223877000000073],[-81.779448999999943,52.232208000000128],[-81.765015000000005,52.237770000000069],[-81.758346999999958,52.23943300000002],[-81.74888599999997,52.240273000000059],[-81.718886999999881,52.240829000000076],[-81.554992999999854,52.237495000000081],[-81.521392999999932,52.235825000000091],[-81.50167799999997,52.23333000000008],[-81.478881999999942,52.225822000000051],[-81.472778000000005,52.221930999999984],[-81.460006999999962,52.210274000000027],[-81.443603999999937,52.192764000000068],[-81.440552000000025,52.188599000000067],[-81.434432999999956,52.179161000000022],[-81.431670999999994,52.174164000000133],[-81.430557000000022,52.168053000000043],[-81.418335000000013,52.149437000000034],[-81.414443999999946,52.144996999999989],[-81.405838000000017,52.136940000000038],[-81.365279999999984,52.107216000000051],[-81.352782999999988,52.101105000000132],[-81.337783999999999,52.096100000000092],[-81.310546999999985,52.091102999999976],[-81.290832999999964,52.088599999999985],[-81.264724999999999,52.08277099999998],[-81.212509000000011,52.065543999999989],[-81.186110999999869,52.053604000000064],[-81.167496000000028,52.044158999999979],[-81.118057000000022,52.045547000000113],[-80.994445999999925,52.01138300000008],[-80.988327000000027,52.008049000000085],[-80.978333000000021,52.000832000000003],[-80.97444200000001,51.996384000000035],[-80.973052999999936,51.990829000000133],[-80.972778000000005,51.978325000000098],[-80.929992999999968,51.924163999999962],[-80.918609999999944,51.910271000000137],[-80.899993999999936,51.89527099999998],[-80.894729999999981,51.891663000000051],[-80.80972300000002,51.857498000000135],[-80.698607999999979,51.794715999999937],[-80.615279999999927,51.730270000000132],[-80.610275000000001,51.726379000000065],[-80.589171999999962,51.699715000000083],[-80.589171999999962,51.693321000000026],[-80.590285999999878,51.686653000000092],[-80.589995999999928,51.674164000000019],[-80.586120999999878,51.663605000000018],[-80.578887999999949,51.648605000000032],[-80.571395999999993,51.633605999999986],[-80.515015000000005,51.524437000000034],[-80.507506999999976,51.515830999999935],[-80.497771999999998,51.508331000000055],[-80.462218999999891,51.488601999999958],[-80.457229999999925,51.484993000000145],[-80.442489999999964,51.473602000000028],[-80.438889000000017,51.46915400000006],[-80.436385999999857,51.464157000000114],[-80.434998000000007,51.458602999999925],[-80.424438000000009,51.36360899999994],[-80.426392000000021,51.358887000000038],[-80.430557000000022,51.354164000000083],[-80.442489999999964,51.34804500000007],[-80.471664000000033,51.339714000000129],[-80.502791999999943,51.331940000000145],[-80.540558000000033,51.323326000000066],[-80.568619000000012,51.314156000000025],[-80.652495999999985,51.278327999999988],[-80.691939999999988,51.247490000000028],[-80.706954999999937,51.235550000000103],[-80.831680000000006,51.155822999999941],[-80.952498999999989,51.079720000000009],[-80.959441999999967,51.077492000000063],[-80.965285999999992,51.074440000000095],[-80.981110000000001,51.06360600000005],[-80.994994999999903,51.051384000000098],[-81.004181000000017,51.043052999999986],[-81.012222000000008,51.033882000000062],[-81.015015000000005,51.028328000000045],[-81.005279999999914,51.028603000000089],[-80.928054999999915,51.04583000000008],[-80.888335999999924,51.082771000000037],[-80.875274999999988,51.103324999999984],[-80.862212999999883,51.116104000000007],[-80.850280999999995,51.122489999999971],[-80.835280999999952,51.126938000000109],[-80.820557000000008,51.130272000000105],[-80.793610000000001,51.132767000000115],[-80.765014999999948,51.133606000000043],[-80.748046999999985,51.136658000000011],[-80.740829000000019,51.138885000000073],[-80.694442999999978,51.156097000000045],[-80.688599000000011,51.159157000000107],[-80.610000999999954,51.214157],[-80.567779999999971,51.258331000000112],[-80.562774999999988,51.262214999999969],[-80.541381999999999,51.276657000000114],[-80.530563000000029,51.283606999999961],[-80.512512000000015,51.292769999999962],[-80.480285999999865,51.307213000000047],[-80.414444000000003,51.332497000000046],[-80.400283999999886,51.337212000000079],[-80.392226999999991,51.338599999999985],[-80.371658000000025,51.336655000000007],[-80.330291999999986,51.326385000000073],[-80.219727000000034,51.301659000000029],[-80.190551999999968,51.297493000000145],[-80.129989999999907,51.297775000000001],[-80.120270000000005,51.296387000000095],[-80.016952999999944,51.263054000000125],[-79.996383999999921,51.25471500000009],[-79.800277999999992,51.156097000000045],[-79.788054999999929,51.149719000000118],[-79.741104000000007,51.123604000000114],[-79.736389000000031,51.119713000000047],[-79.729171999999949,51.110825000000034],[-79.716515000000015,51.081715000000031],[-79.685103999999967,51.045361000000014],[-79.612777999999992,51.008049000000085],[-79.537612999999908,50.958397000000048],[-79.519729999999981,50.929993000000024],[-79.516113000000018,50.926384000000041],[-79.466109999999958,50.889434999999935],[-79.450561999999877,50.87860100000006],[-79.438599000000011,50.872214999999983],[-79.415008999999941,50.846939000000134],[-79.411391999999978,50.842490999999995],[-79.352782999999931,50.748329000000069],[-79.350280999999939,50.736938000000123],[-79.348052999999993,50.731934000000138],[-79.343612999999891,50.728324999999984],[-79.337509000000011,50.724990999999989],[-79.332229999999981,50.723877000000016],[-79.330001999999922,50.758331000000055],[-79.330001999999922,50.764442000000088],[-79.332229999999981,50.775826000000052],[-79.420836999999949,50.879715000000033],[-79.439986999999917,50.894997000000103],[-79.464721999999995,50.913321999999994],[-79.515015000000005,50.95665699999995],[-79.537353999999993,50.983765000000062],[-79.571121000000005,51.00277699999998],[-79.660004000000015,51.045273000000009],[-79.673049999999876,51.050827000000027],[-79.678054999999915,51.054710000000114],[-79.698333999999932,51.075554000000068],[-79.705276000000026,51.084435000000042],[-79.749435000000005,51.168326999999977],[-79.751952999999958,51.178878999999995],[-79.752227999999889,51.184433000000013],[-79.751113999999973,51.197487000000081],[-79.745543999999995,51.208885000000066],[-79.742492999999968,51.214157],[-79.720551,51.243607000000054],[-79.703887999999949,51.261665000000107],[-79.699431999999945,51.266937000000041],[-79.688888999999961,51.281937000000028],[-79.682495000000017,51.292496000000028],[-79.680556999999908,51.298050000000046],[-79.679442999999992,51.304710000000057],[-79.668609999999944,51.398605000000089],[-79.593886999999938,51.449158000000068],[-79.581679999999949,51.455268999999987],[-79.574721999999895,51.457497000000103],[-79.547103999999877,51.460129000000109],[-79.533614999999941,51.50499700000006],[-79.474166999999966,51.579162999999994],[-79.376389000000017,51.642494000000113],[-79.353881999999999,51.656096999999988],[-79.331680000000006,51.661933999999917],[-79.322234999999978,51.662766000000033],[-79.239715999999987,51.634994999999947],[-79.236114999999927,51.630820999999912],[-79.235000999999954,51.624992000000077],[-79.23721299999994,51.619156000000032],[-79.251952999999958,51.60694100000012],[-79.275283999999999,51.577773999999977],[-79.285277999999948,51.562492000000134],[-79.285277999999948,51.556381000000101],[-79.274719000000005,51.530548000000124],[-79.271118000000001,51.525551000000064],[-79.267226999999934,51.521659999999997],[-79.202498999999989,51.518883000000073],[-79.183318999999983,51.519714000000079],[-79.175277999999935,51.521103000000096],[-79.161117999999931,51.525551000000064],[-79.154998999999975,51.528602999999976],[-79.144454999999937,51.536110000000065],[-79.137512000000015,51.538330000000087],[-79.12748699999986,51.538048000000003],[-79.120270000000005,51.535552999999993],[-79.024445000000014,51.476379000000122],[-79.020553999999947,51.473320000000115],[-79.012221999999952,51.464996000000099],[-79.005004999999926,51.449997000000053],[-78.963332999999977,51.353325000000098],[-78.950286999999946,51.29222100000004],[-78.955276000000026,51.256660000000068],[-78.95944199999991,51.252220000000023],[-78.962783999999942,51.246941000000049],[-78.962783999999942,51.240546999999992],[-78.958344000000011,51.230545000000063],[-78.951401000000033,51.215546000000018],[-78.937209999999936,51.197769000000108],[-78.928878999999938,51.18971300000004],[-78.924164000000019,51.185822000000144],[-78.912215999999944,51.179436000000067],[-78.906113000000005,51.176658999999972],[-78.853332999999964,51.165543000000014],[-78.914718999999934,51.22165700000005],[-78.918335000000013,51.226097000000095],[-78.920546999999942,51.231102000000135],[-78.921660999999915,51.237495000000081],[-78.920273000000009,51.249718000000144],[-78.890563999999927,51.390549000000021],[-78.888335999999981,51.396660000000111],[-78.883057000000008,51.401100000000099],[-78.832229999999981,51.438599000000011],[-78.779175000000009,51.474990999999989],[-78.82028200000002,51.513054000000068],[-78.823897999999986,51.517494000000056],[-78.826110999999969,51.522491000000002],[-78.824448000000018,51.541664000000083],[-78.820846999999958,51.554436000000067],[-78.80860899999999,51.576385000000016],[-78.791672000000005,51.603881999999942],[-78.796386999999925,51.608604000000014],[-78.859160999999972,51.634163000000058],[-78.944153000000028,51.670547000000056],[-79.03472899999997,51.764717000000132],[-79.035552999999993,51.770271000000093],[-79.033324999999877,51.776382000000012],[-79.029174999999952,51.781380000000013],[-79.008346999999958,51.795830000000137],[-78.995834000000002,51.801658999999972],[-78.985824999999977,51.801658999999972],[-78.976104999999905,51.799720999999977],[-78.961394999999868,51.794998000000021],[-78.944442999999865,51.790833000000021],[-78.918059999999969,51.79444100000012],[-78.910827999999981,51.796660999999972],[-78.903609999999958,51.799438000000009],[-78.879989999999964,51.811378000000104],[-78.851944000000003,51.828606000000036],[-78.846389999999985,51.832497000000103],[-78.836945000000014,51.841377000000136],[-78.833618000000001,51.845825000000104],[-78.832229999999981,51.852776000000063],[-78.834441999999967,51.857772999999952],[-78.841674999999952,51.866661000000136],[-78.846389999999985,51.870269999999948],[-78.858611999999937,51.876938000000109],[-78.86361699999992,51.880821000000083],[-78.89555399999989,51.926659000000029],[-78.896392999999932,51.932495000000074],[-78.894164999999987,51.93832400000008],[-78.881942999999922,51.944434999999999],[-78.860274999999888,51.951102999999932],[-78.851944000000003,51.95249200000012],[-78.810546999999929,51.958885000000066],[-78.769454999999994,51.966103000000089],[-78.747771999999998,51.973320000000001],[-78.736664000000019,51.979431000000091],[-78.695830999999998,52.008049000000085],[-78.579452999999944,52.111382000000106],[-78.537505999999951,52.180824000000143],[-78.501113999999973,52.255829000000006],[-78.524445000000014,52.311104000000114],[-78.516953000000001,52.367767000000072],[-78.507232999999985,52.454437000000041],[-78.506957999999997,52.460548000000074],[-78.545273000000009,52.514717000000132],[-78.564712999999983,52.530273000000079],[-78.577224999999999,52.536658999999986],[-78.585555999999997,52.538605000000075],[-78.59584000000001,52.538886999999988],[-78.654448999999943,52.54694400000011],[-78.684433000000013,52.551383999999985],[-78.763335999999981,52.564438000000052],[-78.761123999999938,52.570549000000085],[-78.755568999999923,52.574164999999994],[-78.721114999999998,52.586655000000121],[-78.691939999999931,52.596099999999979],[-78.713333000000034,52.628876000000105],[-78.753066999999874,52.683875999999941],[-78.790833000000021,52.737495000000138],[-78.796950999999979,52.773880000000077],[-78.765015000000005,52.777489000000116],[-78.731948999999986,52.783333000000084],[-78.724715999999944,52.785553000000107],[-78.722503999999901,52.791664000000026],[-78.725554999999986,52.819443000000035],[-78.738327000000027,52.872215000000097],[-78.794448999999986,52.861381999999935],[-78.856109999999887,52.877769000000114],[-78.880829000000006,52.896942000000024],[-78.881942999999922,52.90277100000003],[-78.87860099999989,52.908043000000134],[-78.864715999999987,52.963608000000079],[-78.915833000000021,53.000000000000057],[-78.923049999999932,53.068886000000077],[-78.888061999999934,53.224709000000132],[-78.894454999999994,53.259720000000073],[-78.895844000000011,53.26527400000009],[-78.942490000000021,53.384994999999947],[-78.949722000000008,53.399994000000049],[-78.991721999999925,53.434048000000018],[-78.994720000000029,53.436378000000047],[-79.004554999999925,53.439216999999928],[-79.009551999999928,53.438213000000019],[-79.044723999999974,53.439430000000016],[-79.053054999999972,53.438042000000053],[-79.063323999999966,53.439430000000016],[-79.068068999999923,53.443321000000083],[-79.090285999999992,53.470543000000021],[-79.093062999999972,53.474709000000075],[-79.107773000000009,53.497215000000097],[-79.110275000000001,53.502495000000124],[-79.103606999999954,53.513054000000011],[-79.084166999999979,53.522491000000116],[-79.054442999999935,53.531380000000013],[-79.035552999999993,53.53276800000009],[-79.012787000000003,53.531104999999968],[-79.031386999999995,53.529716000000008],[-79.038054999999986,53.526657],[-79.043334999999956,53.523048000000017],[-79.042495999999915,53.511108000000092],[-79.041381999999999,53.505554000000132],[-79.036391999999978,53.501663000000065],[-79.014838999999938,53.498940000000005],[-79.011002000000019,53.496937000000003],[-79.005675999999937,53.49577000000005],[-79.000678999999934,53.496609000000035],[-78.962783999999942,53.508888000000127],[-78.919158999999979,53.555267000000072],[-78.915833000000021,53.560547000000099],[-78.918335000000013,53.565544000000045],[-78.92193599999996,53.569992000000013],[-78.950561999999991,53.599716000000001],[-79.003341999999918,53.641663000000051],[-79.089721999999938,53.691658000000075],[-79.145003999999972,53.701660000000061],[-79.151397999999915,53.704994000000056],[-79.152221999999995,53.710548000000017],[-79.052490000000034,53.831939999999975],[-79.046951000000035,53.835548000000074],[-79.039444000000003,53.83776899999998],[-79.029723999999987,53.839157000000114],[-79.011123999999995,53.839989000000003],[-78.988891999999908,53.838882000000069],[-78.979995999999971,53.836104999999975],[-78.966109999999901,53.83027600000014],[-78.948333999999932,53.820831000000112],[-78.932770000000005,53.815543999999989],[-78.910827999999981,53.814437999999939],[-78.901397999999972,53.815268999999944],[-78.902221999999938,53.821380999999974],[-78.906386999999938,53.825272000000041],[-78.917769999999962,53.832214000000079],[-78.924164000000019,53.835548000000074],[-78.969727000000034,53.851387000000045],[-78.988891999999908,53.854713000000061],[-79.011948000000018,53.856658999999979],[-79.056655999999919,53.873046999999985],[-79.101104999999961,53.901657000000057],[-79.106110000000001,53.905548000000124],[-79.072509999999852,53.999161000000072],[-79.066956000000005,54.002777000000094],[-79.051102000000014,54.006660000000068],[-79.041381999999999,54.00777400000004],[-79.031676999999945,54.00777400000004],[-79.021392999999989,54.006386000000134],[-79.001098999999954,53.999992000000077],[-78.964950999999928,53.99716200000006],[-78.961623999999972,53.999992000000077],[-78.960280999999952,54.001389000000017],[-78.962783999999942,54.006386000000134],[-78.966659999999933,54.010826000000122],[-78.976669000000015,54.018326000000002],[-78.984160999999972,54.021659999999997],[-79.119445999999982,54.078605999999979],[-79.116393999999957,54.103050000000053],[-79.106383999999935,54.111382000000049],[-79.046386999999982,54.178329000000076],[-79.048889000000031,54.183327000000077],[-79.060546999999985,54.184158000000082],[-79.173324999999977,54.174995000000081],[-79.191665999999998,54.172768000000019],[-79.198043999999868,54.169716000000108],[-79.196944999999971,54.163605000000018],[-79.198333999999988,54.157210999999961],[-79.205840999999907,54.154990999999995],[-79.238051999999982,54.158882000000062],[-79.276397999999915,54.166939000000013],[-79.345276000000013,54.199432000000002],[-79.419998000000021,54.274437000000034],[-79.430557000000022,54.290275999999949],[-79.476669000000015,54.368599000000131],[-79.505004999999926,54.42582700000014],[-79.488051999999925,54.452217000000132],[-79.488051999999925,54.458603000000039],[-79.521392999999989,54.587212000000136],[-79.525283999999886,54.591377000000136],[-79.531677000000002,54.594711000000132],[-79.565552000000025,54.609993000000145],[-79.618880999999931,54.623878000000047],[-79.675551999999925,54.625824000000136],[-79.686110999999983,54.627212999999927],[-79.760833999999988,54.648048000000074],[-79.764449999999954,54.652214000000129],[-79.761123999999995,54.658325000000048],[-79.631667999999934,54.702773999999977],[-79.494155999999975,54.744713000000104],[-79.463622999999984,54.75360900000004],[-79.457229999999925,54.750275000000045],[-79.447494999999947,54.75110600000005],[-79.337783999999942,54.772491000000059],[-79.315826000000015,54.779991000000109],[-79.101104999999961,54.827216999999962],[-78.976669000000015,54.843048000000124],[-78.968886999999995,54.845267999999976],[-78.956664999999987,54.851936000000137],[-78.945540999999935,54.859436000000017],[-78.912505999999894,54.884163000000115],[-78.838608000000022,54.91443600000008],[-78.732773000000009,54.931107000000111],[-78.561110999999926,54.977767999999912],[-78.37388599999997,55.030273000000136],[-78.256118999999899,55.082214000000022],[-78.207672000000002,55.111655999999982],[-78.182220000000029,55.125267000000122],[-78.119445999999982,55.149994000000049],[-77.972778000000005,55.204994000000113],[-77.87249799999995,55.243606999999997],[-77.748610999999983,55.300827000000027],[-77.62222300000002,55.382766999999944],[-77.416655999999989,55.486107000000061],[-77.225829999999974,55.588326000000109],[-77.214721999999995,55.595267999999976],[-77.137221999999895,55.654160000000047],[-77.115279999999927,55.674164000000133],[-77.104720999999984,55.683876000000055],[-77.088332999999921,55.699432000000058],[-77.086120999999935,55.705551000000071],[-77.085555999999997,55.708046000000081],[-77.087783999999942,55.709716999999955],[-77.068343999999968,55.754715000000033],[-77.013061999999877,55.803046999999935],[-76.81138599999997,55.971100000000092],[-76.751953000000015,55.997771999999998],[-76.737503000000004,56.001663000000065],[-76.718886999999995,56.008048999999971],[-76.702498999999932,56.017494000000056],[-76.689162999999894,56.027489000000003],[-76.681945999999982,56.033882000000119],[-76.67721599999993,56.038605000000075],[-76.670836999999892,56.045830000000137],[-76.658050999999944,56.060821999999973],[-76.650833000000034,56.071938000000102],[-76.626662999999951,56.118049999999982],[-76.538329999999974,56.297775000000115],[-76.532227000000034,56.315269000000001],[-76.531112999999948,56.322220000000129],[-76.518889999999999,56.406097000000102],[-76.517501999999979,56.423325000000034],[-76.517501999999979,56.43582200000003],[-76.519164999999987,56.464714000000072],[-76.525832999999977,56.492767000000072],[-76.527221999999995,56.503052000000139],[-76.526397999999915,56.605827000000033],[-76.506957999999941,56.710823000000005],[-76.505004999999983,56.733879000000002],[-76.504455999999948,56.771934999999985],[-76.505568999999923,56.784995999999921],[-76.505279999999914,56.791382000000056],[-76.505568999999923,56.803047000000106],[-76.509445000000028,56.819717000000026],[-76.530838000000017,56.90665400000006],[-76.554442999999992,57.005828999999949],[-76.554717999999923,57.010826000000066],[-76.555832000000009,57.034996000000092],[-76.553329000000019,57.053322000000094],[-76.549164000000019,57.06221000000005],[-76.545272999999952,57.068885999999964],[-76.535552999999993,57.077773999999977],[-76.531112999999948,57.087211999999965],[-76.529175000000009,57.09665700000005],[-76.529723999999874,57.10582700000009],[-76.564437999999996,57.207214000000079],[-76.591384999999946,57.274436999999978],[-76.599990999999932,57.293610000000058],[-76.604445999999882,57.302773000000059],[-76.653060999999923,57.401382000000012],[-76.65834000000001,57.406653999999946],[-76.688048999999978,57.430550000000039],[-76.732223999999917,57.490273000000059],[-76.740829000000019,57.503326000000072],[-76.81138599999997,57.624710000000107],[-76.809433000000013,57.634720000000016],[-76.807770000000005,57.641662999999994],[-76.805557000000022,57.647774000000084],[-76.861937999999952,57.71915400000006],[-76.923049999999989,57.786110000000065],[-77.147231999999974,58.022765999999933],[-77.246658000000025,58.07388300000008],[-77.279723999999987,58.084435000000042],[-77.317504999999983,58.091934000000037],[-77.34944200000001,58.101936000000023],[-77.444442999999978,58.152489000000003],[-77.451110999999969,58.171379000000115],[-77.446655000000021,58.173882000000106],[-77.441100999999946,58.182770000000062],[-77.444152999999972,58.187767000000008],[-77.454453000000001,58.196381000000031],[-77.467223999999987,58.203323000000125],[-77.487777999999935,58.212769000000094],[-77.571670999999981,58.248047000000099],[-77.645843999999954,58.278603000000032],[-77.81527699999998,58.327217000000019],[-77.851944000000003,58.334991000000002],[-77.883895999999993,58.339989000000003],[-77.914443999999946,58.345543000000021],[-77.939163000000008,58.35305000000011],[-77.955276000000026,58.358604000000128],[-78.012512000000015,58.378601000000003],[-78.024445000000014,58.384163000000115],[-78.02806099999998,58.386940000000038],[-78.031386999999938,58.391380000000026],[-78.062682999999993,58.417309000000103],[-78.130553999999961,58.462769000000037],[-78.355559999999969,58.601661999999976],[-78.397231999999917,58.620827000000133],[-78.419998000000021,58.62721300000004],[-78.425277999999992,58.626099000000067],[-78.428329000000019,58.623604000000057],[-78.427779999999984,58.611107000000061],[-78.426101999999958,58.606102000000021],[-78.347778000000005,58.536659000000043],[-78.389724999999885,58.544716000000051],[-78.549163999999905,58.603881999999999],[-78.563889000000017,58.609993000000088],[-78.568618999999956,58.614441000000056],[-78.573897999999929,58.630547000000035],[-78.574722000000008,58.635269000000108],[-78.570006999999976,58.673050000000103],[-78.563889000000017,58.676940999999999],[-78.555831999999953,58.677773000000059],[-78.543883999999991,58.678046999999992],[-78.514724999999942,58.67943600000001],[-78.469727000000034,58.695541000000105],[-78.467223999999987,58.701660000000118],[-78.48832699999997,58.786385000000053],[-78.50556899999998,58.835266000000104],[-78.511672999999917,58.839157],[-78.516402999999968,58.843323000000055],[-78.538605000000018,58.886940000000095],[-78.571395999999879,58.957214000000079],[-78.570557000000008,58.961380000000133],[-78.561935000000005,58.965828000000101],[-78.552215999999987,58.968048000000124],[-78.396392999999932,58.964714000000129],[-78.361663999999962,58.958603000000039],[-78.352492999999924,58.956657000000007],[-78.346389999999985,58.953605999999979],[-78.344451999999876,58.949432000000115],[-78.344726999999978,58.946655000000021],[-78.345276000000013,58.944710000000043],[-78.348342999999943,58.942214999999976],[-78.366394000000014,58.920273000000122],[-78.363892000000021,58.912490999999989],[-78.357773000000009,58.910270999999966],[-78.345839999999953,58.909714000000065],[-78.338333000000034,58.912766000000033],[-78.310821999999973,58.927216000000101],[-78.304717999999923,58.931106999999997],[-78.205565999999976,59.050545000000113],[-78.127486999999974,59.108330000000024],[-78.08666999999997,59.156654000000003],[-78.093886999999995,59.193047000000035],[-78.098617999999988,59.196655000000135],[-78.101943999999946,59.200828999999999],[-78.103881999999999,59.205826000000116],[-78.092772999999909,59.214995999999985],[-77.961120999999935,59.258331000000112],[-77.949721999999952,59.261939999999925],[-77.930283000000031,59.26527399999992],[-77.884445000000028,59.271935000000042],[-77.860000999999954,59.272217000000126],[-77.843613000000005,59.275551000000121],[-77.828887999999949,59.281105000000082],[-77.824448000000018,59.283606999999961],[-77.68499799999995,59.393326000000116],[-77.677215999999987,59.399994000000106],[-77.678328999999962,59.401932000000045],[-77.779175000000009,59.426102000000014],[-77.787216000000001,59.426658999999916],[-77.798049999999989,59.426384000000098],[-77.831389999999942,59.414711000000068],[-77.880279999999914,59.39916199999999],[-77.887512000000015,59.397491000000116],[-77.896956999999986,59.397217000000012],[-77.902221999999995,59.398880000000077],[-77.905838000000017,59.401100000000099],[-77.910277999999948,59.405548000000067],[-77.912506000000008,59.415267999999969],[-77.910552999999879,59.425551999999982],[-77.872771999999998,59.491935999999953],[-77.867492999999911,59.5],[-77.86111499999987,59.503883000000087],[-77.84056099999998,59.513054000000068],[-77.798889000000031,59.524993999999992],[-77.779175000000009,59.52887700000008],[-77.769454999999937,59.529160000000047],[-77.749999999999886,59.532211000000075],[-77.721389999999928,59.539719000000105],[-77.724716000000001,59.593880000000013],[-77.755004999999926,59.628326000000072],[-77.762786999999889,59.631378000000041],[-77.767501999999922,59.634994999999947],[-77.797774999999945,59.670272999999952],[-77.801102000000014,59.675270000000069],[-77.798614999999927,59.679993000000081],[-77.773894999999982,59.709717000000069],[-77.761672999999973,59.709991000000002],[-77.731948999999986,59.70777099999998],[-77.710555999999883,59.704712000000029],[-77.585228000000029,59.66921200000013],[-77.53988599999991,59.653381000000138],[-77.535392999999942,59.651379000000077],[-77.524390999999923,59.644714000000135],[-77.518889999999885,59.639381000000128],[-77.513229000000024,59.630546999999979],[-77.513725000000022,59.620215999999971],[-77.514893000000029,59.614044000000035],[-77.464721999999995,59.587212000000022],[-77.460006999999962,59.582771000000093],[-77.454177999999956,59.579162999999994],[-77.444992000000013,59.576385000000016],[-77.426940999999943,59.571381000000031],[-77.353607000000011,59.563605999999936],[-77.322509999999909,59.562767000000008],[-77.313889000000017,59.564995000000124],[-77.311935000000005,59.566939999999931],[-77.316956000000005,59.56999200000007],[-77.344161999999983,59.576942000000088],[-77.427994000000012,59.619049000000075],[-77.433334000000002,59.620543999999938],[-77.441665999999998,59.624717999999973],[-77.502335000000016,59.678215000000023],[-77.542496000000028,59.747490000000084],[-77.541945999999996,59.750274999999931],[-77.533065999999963,59.754714999999976],[-77.432769999999948,59.784163999999976],[-77.412780999999939,59.787773000000129],[-77.389449999999954,59.788886999999932],[-77.333618000000001,59.78527100000008],[-77.311660999999958,59.785552999999936],[-77.30471799999998,59.787216000000058],[-77.298889000000031,59.789719000000048],[-77.293609999999887,59.793610000000115],[-77.296111999999937,59.801933000000076],[-77.301392000000021,59.811104],[-77.363616999999863,59.890830999999991],[-77.368056999999965,59.894714000000079],[-77.378051999999968,59.901382000000069],[-77.385559000000001,59.904433999999981],[-77.427489999999977,59.914710999999954],[-77.206954999999994,60.042770000000019],[-77.070006999999919,60.064156000000082],[-76.848052999999936,60.099159000000043],[-76.775833000000034,60.131659999999954],[-76.770843999999954,60.136383000000137],[-76.758895999999993,60.159157000000107],[-76.808608999999933,60.159714000000008],[-76.828339000000028,60.157493999999986],[-76.846114999999998,60.152214000000129],[-76.852492999999981,60.148330999999985],[-76.857772999999952,60.143883000000017],[-76.860549999999932,60.137771999999984],[-76.857498000000021,60.132767000000115],[-76.854172000000005,60.121658000000025],[-76.85943599999996,60.116936000000123],[-76.866942999999992,60.113883999999985],[-76.889724999999999,60.112495000000024],[-76.924437999999896,60.111664000000019],[-76.950561999999934,60.112213000000111],[-76.962783999999999,60.113608999999997],[-77.00389100000001,60.121933000000013],[-77.031386999999881,60.129714999999976],[-77.055556999999965,60.138602999999989],[-77.074172999999973,60.142769000000044],[-77.111938000000009,60.146942000000024],[-77.173888999999974,60.150268999999923],[-77.187499999999943,60.150826000000052],[-77.199996999999939,60.150826000000052],[-77.199722000000008,60.145270999999923],[-77.194716999999969,60.129158000000075],[-77.232498000000021,60.053879000000109],[-77.272781000000009,60.039993000000095],[-77.315825999999959,60.030548000000067],[-77.519164999999987,60.044159000000036],[-77.540282999999988,60.048050000000103],[-77.557219999999973,60.052773000000059],[-77.592223999999987,60.064156000000082],[-77.600280999999939,60.108604000000128],[-77.595275999999899,60.112495000000024],[-77.581680000000006,60.118881000000101],[-77.558043999999938,60.126656000000025],[-77.549164000000019,60.129158000000075],[-77.496947999999918,60.156097000000045],[-77.470276000000013,60.213325999999995],[-77.473617999999931,60.216934000000094],[-77.602782999999931,60.329994000000056],[-77.639724999999942,60.362213000000054],[-77.647506999999905,60.365273000000116],[-77.658339999999953,60.368050000000039],[-77.683060000000012,60.367767000000072],[-77.692489999999964,60.369438000000116],[-77.708344000000011,60.375824000000023],[-77.743606999999997,60.393326000000059],[-77.747222999999963,60.396942000000138],[-77.747756999999922,60.408134000000132],[-77.740829000000019,60.423607000000004],[-77.736937999999952,60.428879000000109],[-77.71945199999999,60.447211999999979],[-77.691939999999931,60.466660000000104],[-77.567504999999926,60.529716000000008],[-77.479995999999915,60.54055000000011],[-77.430832000000009,60.540275999999949],[-77.419723999999917,60.541107000000011],[-77.413329999999974,60.544159000000093],[-77.436385999999914,60.554436000000067],[-77.464447000000007,60.561935000000062],[-77.486114999999927,60.56638300000003],[-77.521666999999979,60.570274000000097],[-77.549438000000009,60.571381000000031],[-77.573623999999938,60.570549000000085],[-77.598617999999931,60.563606000000107],[-77.631942999999978,60.551933000000076],[-77.640563999999983,60.550270000000012],[-77.65055799999999,60.548882000000049],[-77.670273000000009,60.549721000000034],[-77.680831999999953,60.552216000000044],[-77.704453000000001,60.561661000000129],[-77.787216000000001,60.59665700000005],[-77.829453000000001,60.633605999999929],[-77.833892999999932,60.639434999999992],[-77.831679999999949,60.644714000000135],[-77.821670999999867,60.651931999999931],[-77.775832999999977,60.671104000000128],[-77.722504000000015,60.69193300000012],[-77.716399999999965,60.694434999999999],[-77.610001000000011,60.755554000000075],[-77.515839000000028,60.830551000000014],[-77.512512000000015,60.833602999999925],[-77.511672999999973,60.83638000000002],[-77.53195199999999,60.835266000000047],[-77.571670999999981,60.828330999999991],[-77.708054000000004,60.795547000000113],[-77.856383999999935,60.764442000000088],[-77.920546999999999,60.791382000000112],[-77.903885000000002,60.812492000000077],[-77.889998999999989,60.818886000000134],[-77.883330999999941,60.823325999999952],[-77.887222000000008,60.825829000000113],[-77.896392999999875,60.828049000000135],[-77.909163999999976,60.82888000000014],[-77.975280999999939,60.822769000000051],[-78.078612999999905,60.806099000000131],[-78.116942999999992,60.798050000000103],[-78.125823999999966,60.795547000000113],[-78.172500999999954,60.787216000000058],[-78.17971799999998,60.786942000000124],[-78.18638599999997,60.788047999999947],[-78.190552000000025,60.788887000000102],[-78.192764000000011,60.790833000000021],[-78.171660999999915,60.854713000000061],[-78.15943900000002,60.867210000000057],[-77.954726999999991,61.000831999999946],[-77.925551999999925,61.01888300000013],[-77.889175000000023,61.038048000000117],[-77.873610999999926,61.045547000000056],[-77.858046999999942,61.051101999999958],[-77.853881999999942,61.052215999999987],[-77.846664000000033,61.052490000000091],[-77.701675000000023,61.217491000000109],[-77.724441999999954,61.254439999999988],[-77.739990000000034,61.298607000000061],[-77.746658000000025,61.337494000000106],[-77.761123999999938,61.410271000000023],[-77.678878999999995,61.461104999999975],[-77.620834000000002,61.462493999999992],[-77.56361400000003,61.466660000000047],[-77.560546999999929,61.468047999999953],[-77.542496000000028,61.479430999999977],[-77.543335000000013,61.483047000000056],[-77.548339999999939,61.486107000000118],[-77.613892000000021,61.504166000000055],[-77.596114999999941,61.555824000000143],[-77.572784000000013,61.549995000000138],[-77.517226999999934,61.539719000000048],[-77.478607000000011,61.536385000000053],[-77.475005999999951,61.539161999999976],[-77.474715999999944,61.541664000000026],[-77.480285999999921,61.548882000000049],[-77.581389999999999,61.600548000000117],[-77.589171999999962,61.604439000000013],[-77.616500999999971,61.606327000000078],[-77.627997999999991,61.605995000000121],[-77.667496000000028,61.603049999999996],[-77.690825999999959,61.602218999999991],[-77.702498999999989,61.602776000000063],[-77.710555999999883,61.60582700000009],[-77.744155999999975,61.64027400000009],[-77.816665999999998,61.684989999999914],[-77.884445000000028,61.68582200000003],[-77.898894999999925,61.686378000000047],[-77.931380999999931,61.69193300000012],[-77.975829999999974,61.702774000000034],[-77.982223999999974,61.70665699999995],[-77.992492999999968,61.714714000000129],[-78.00306699999993,61.728325000000098],[-78.006119000000012,61.733046999999999],[-78.011947999999961,61.748604000000057],[-78.074447999999904,61.917213000000004],[-78.077498999999989,61.940544000000045],[-78.081389999999999,61.951103000000103],[-78.091675000000009,61.965271000000143],[-78.110001000000011,61.984161000000086],[-78.120269999999948,61.99193600000001],[-78.137787000000003,62.009163000000001],[-78.141387999999949,62.020546000000024],[-78.143616000000009,62.03138000000007],[-78.15943900000002,62.149994000000049],[-78.161666999999966,62.169159000000036],[-78.157776000000013,62.267494000000056],[-78.15583799999996,62.278328000000101],[-78.149733999999967,62.287216000000114],[-78.103058000000033,62.337494000000049],[-78.085007000000019,62.353325000000041],[-78.023894999999982,62.393326000000059],[-78.016402999999968,62.39388300000013],[-78.008056999999894,62.390549000000135],[-77.996657999999968,62.388046000000145],[-77.983063000000016,62.388329000000113],[-77.96305799999999,62.392768999999987],[-77.711394999999925,62.468048000000124],[-77.687209999999993,62.476654000000053],[-77.555556999999965,62.536110000000008],[-77.535278000000005,62.54694400000011],[-77.508347000000015,62.561661000000072],[-77.354996000000028,62.558044000000109],[-77.073623999999938,62.534163999999976],[-76.92582699999997,62.526382000000012],[-76.756957999999997,62.506943000000092],[-76.746947999999975,62.504997000000003],[-76.655562999999972,62.469986000000063],[-76.498610999999869,62.44110100000006],[-76.401947000000007,62.427490000000091],[-76.317779999999914,62.412209000000132],[-76.143065999999919,62.379158000000018],[-75.709732000000031,62.296387000000038],[-75.719214999999963,62.242493000000024],[-75.739562999999919,62.236160000000041],[-75.819884999999999,62.205657999999971],[-75.878875999999991,62.168602000000135],[-75.891113000000018,62.161933999999974],[-75.895003999999915,62.158599999999979],[-75.890839000000028,62.156937000000084],[-75.835830999999985,62.158043000000077],[-75.826949999999954,62.158882000000062],[-75.772399999999948,62.177215999999987],[-75.770720999999924,62.180049999999994],[-75.765052999999909,62.184718999999973],[-75.760887000000025,62.187050000000113],[-75.756057999999882,62.188713000000007],[-75.705062999999996,62.203216999999995],[-75.656882999999993,62.216544999999996],[-75.579177999999899,62.242218000000037],[-75.573897999999929,62.244155999999975],[-75.556945999999925,62.252777000000037],[-75.552779999999927,62.256660000000011],[-75.550277999999935,62.260826000000066],[-75.539443999999889,62.268326000000002],[-75.493606999999997,62.293326999999977],[-75.486937999999952,62.296387000000038],[-75.478881999999999,62.298607000000061],[-75.472777999999948,62.299438000000066],[-75.402221999999938,62.306381000000044],[-75.356383999999991,62.310546999999985],[-75.321945000000028,62.311104000000057],[-75.307495000000017,62.310271999999941],[-75.184432999999956,62.292220999999984],[-75.015563999999983,62.264999000000046],[-75,62.262245000000064],[-74.938323999999909,62.250274999999988],[-74.918610000000001,62.245544000000052],[-74.89805599999994,62.240273000000002],[-74.889998999999989,62.237495000000024],[-74.882216999999912,62.233604000000128],[-74.873885999999857,62.226097000000038],[-74.767226999999878,62.161102000000085],[-74.700835999999867,62.131104000000107],[-74.693054000000018,62.127769000000058],[-74.668883999999991,62.119156000000089],[-74.620833999999888,62.107215999999994],[-74.598052999999936,62.104164000000083],[-74.571670999999981,62.10305000000011],[-74.556380999999988,62.104713000000004],[-74.553054999999972,62.106102000000021],[-74.553878999999995,62.108046999999999],[-74.558608999999876,62.111938000000066],[-74.618880999999931,62.132492000000013],[-74.662216000000001,62.146660000000054],[-74.686110999999983,62.155823000000055],[-74.700287000000003,62.16276600000009],[-74.75111400000003,62.19110100000006],[-74.758895999999993,62.199158000000068],[-74.759734999999921,62.20138500000013],[-74.759734999999921,62.20638300000013],[-74.756393000000003,62.212212000000136],[-74.725829999999917,62.244995000000131],[-74.717498999999918,62.247771999999998],[-74.700287000000003,62.250832000000059],[-74.678328999999962,62.253608999999983],[-74.645844000000011,62.253608999999983],[-74.579453000000001,62.251938000000109],[-74.525833000000034,62.246940999999993],[-74.473617999999931,62.24332400000003],[-74.461394999999982,62.243880999999931],[-74.428878999999938,62.247771999999998],[-74.410004000000015,62.251389000000131],[-74.383895999999936,62.2586060000001],[-74.141677999999956,62.326660000000004],[-73.981383999999991,62.377769000000001],[-73.97444200000001,62.386108000000036],[-73.969727000000034,62.390830999999991],[-73.94027699999998,62.412209000000132],[-73.888901000000033,62.440543999999932],[-73.83805799999999,62.457497000000046],[-73.688048999999978,62.479988000000048],[-73.678878999999995,62.479988000000048],[-73.65972899999997,62.475265999999976],[-73.648345999999947,62.468322999999998],[-73.642501999999922,62.463608000000136],[-73.502791999999999,62.386658000000068],[-73.369995000000017,62.363609000000054],[-73.227218999999877,62.318054000000075],[-73.211394999999925,62.312767000000008],[-73.206664999999987,62.308884000000035],[-73.204178000000013,62.303878999999995],[-73.202788999999996,62.298882000000106],[-73.207229999999925,62.285828000000038],[-73.210280999999952,62.281936999999971],[-73.210830999999985,62.275826000000052],[-73.209732000000031,62.270828000000051],[-73.204178000000013,62.261382999999967],[-73.191939999999875,62.253608999999983],[-73.178054999999972,62.246101000000124],[-73.131942999999978,62.225266000000033],[-73.070006999999976,62.197487000000024],[-72.899445000000014,62.138328999999999],[-72.723891999999921,62.142220000000066],[-72.626663000000008,62.115547000000049],[-72.61721799999998,62.108604000000071],[-72.596114999999884,62.049164000000019],[-72.618713000000014,61.974212999999963],[-72.619888000000003,61.970878999999968],[-72.665717999999913,61.928382999999997],[-72.689986999999917,61.891936999999984],[-72.748610999999983,61.856384000000105],[-72.724716000000001,61.845267999999976],[-72.612503000000004,61.804993000000081],[-72.602782999999931,61.804160999999965],[-72.596114999999884,61.805549999999982],[-72.591674999999952,61.809989999999971],[-72.587783999999886,61.82027400000004],[-72.622771999999941,61.861382000000106],[-72.628875999999991,61.873047000000042],[-72.609557999999993,61.88771400000013],[-72.610893000000033,61.893714999999986],[-72.611397000000011,61.900047000000086],[-72.610222000000022,61.905380000000093],[-72.607551999999998,61.910049000000015],[-72.597548999999958,61.920211999999992],[-72.593886999999995,61.92321400000003],[-72.587226999999984,61.924376999999993],[-72.581222999999966,61.923378000000127],[-72.519729999999925,61.920546999999999],[-72.448607999999979,61.901382000000012],[-72.396666999999923,61.889435000000049],[-72.386948000000018,61.887771999999984],[-72.345551,61.884437999999989],[-72.321945000000028,61.883881000000088],[-72.256957999999997,61.876938000000109],[-72.235001000000011,61.872215000000097],[-72.205840999999964,61.86332700000014],[-72.200835999999924,61.860275000000001],[-72.041381999999999,61.722488000000112],[-72.01005600000002,61.675270000000012],[-72.038054999999986,61.624709999999993],[-72.080565999999976,61.601936000000023],[-72.087783999999999,61.598877000000073],[-72.095839999999953,61.596099999999979],[-72.113892000000021,61.595543000000077],[-72.12388599999997,61.596382000000006],[-72.160004000000015,61.605270000000019],[-72.194153000000028,61.615829000000076],[-72.227492999999981,61.619987000000037],[-72.236663999999962,61.619438000000059],[-72.254456000000005,61.615546999999992],[-72.271118000000001,61.609161000000086],[-72.303328999999906,61.570830999999998],[-72.303878999999938,61.568885999999964],[-72.303328999999906,61.56721500000009],[-72.083618000000001,61.582496999999933],[-72.057220000000029,61.586655000000064],[-71.980285999999978,61.599998000000085],[-71.978333000000021,61.601387000000102],[-71.967772999999966,61.609436000000073],[-71.940825999999959,61.648331000000042],[-71.936660999999958,61.65554800000001],[-71.933608999999933,61.663605000000132],[-71.933060000000012,61.668602000000078],[-71.933884000000035,61.674164000000019],[-71.936660999999958,61.677773000000002],[-71.941375999999991,61.681106999999997],[-71.946884000000011,61.688380999999993],[-71.950385999999867,61.688713000000121],[-71.953888000000006,61.690716000000123],[-71.956557999999916,61.693047000000092],[-71.956885999999884,61.694213999999988],[-71.956054999999935,61.698883000000137],[-71.950546000000031,61.701218000000097],[-71.948883000000023,61.701549999999997],[-71.945221000000004,61.701714000000095],[-71.928878999999995,61.705826000000116],[-71.819457999999941,61.688599000000124],[-71.795273000000009,61.682213000000047],[-71.644729999999925,61.639435000000105],[-71.575011999999901,61.608604000000014],[-71.571670999999867,61.605552999999986],[-71.545546999999999,61.571938000000102],[-71.546111999999937,61.566940000000102],[-71.549437999999896,61.558884000000035],[-71.560271999999941,61.557212999999933],[-71.629714999999976,61.548607000000061],[-71.635009999999966,61.545830000000137],[-71.652221999999995,61.543053000000043],[-71.663054999999929,61.54193900000007],[-71.751113999999973,61.538048000000003],[-71.789444000000003,61.521934999999928],[-71.746384000000035,61.47137500000008],[-71.746947999999975,61.465827999999988],[-71.802779999999984,61.446938000000046],[-71.817504999999983,61.442764000000011],[-71.875548999999921,61.436103999999943],[-71.885558999999944,61.432769999999948],[-71.887787000000003,61.430824000000086],[-71.887511999999958,61.428046999999992],[-71.879439999999988,61.422492999999974],[-71.873046999999929,61.419716000000108],[-71.853333000000021,61.414436000000023],[-71.700561999999991,61.405823000000055],[-71.684722999999963,61.404990999999939],[-71.676101999999958,61.37221500000004],[-71.67193599999996,61.330551000000128],[-71.598891999999978,61.254166000000055],[-71.53083799999996,61.213608000000022],[-71.389998999999989,61.137772000000098],[-71.295836999999892,61.148605000000089],[-71.286666999999909,61.149719000000061],[-71.279175000000009,61.151100000000099],[-71.174712999999997,61.13999200000012],[-71.011397999999986,61.121657999999968],[-70.966948999999943,61.113883999999985],[-70.945830999999941,61.108887000000095],[-70.928329000000019,61.102493000000038],[-70.921936000000017,61.09693900000002],[-70.921386999999982,61.09137700000008],[-70.773330999999985,61.08166499999993],[-70.656386999999995,61.050545000000056],[-70.553054999999972,61.024994000000049],[-70.539718999999991,61.055824000000086],[-70.535278000000005,61.05943300000007],[-70.419998000000021,61.08526599999999],[-70.41361999999998,61.086655000000007],[-70.315551999999911,61.094994000000042],[-70.165008999999998,61.088043000000084],[-70.146117999999888,61.084717000000069],[-70.141387999999949,61.08277099999998],[-70.107223999999917,61.064438000000109],[-70.085830999999985,60.954993999999999],[-70.088057999999876,60.89777400000014],[-69.927490000000034,60.807770000000005],[-69.914444000000003,60.80860100000001],[-69.901107999999965,60.81221000000005],[-69.888061999999934,60.819160000000068],[-69.856383999999991,60.838326000000109],[-69.850554999999986,60.841934000000037],[-69.84973100000002,60.846656999999993],[-69.851395000000025,60.849716000000001],[-69.858886999999982,60.851936000000023],[-69.869445999999925,60.850829999999974],[-69.883620999999948,60.845268000000033],[-69.894729999999925,60.855552999999929],[-69.833327999999995,60.889992000000007],[-69.826110999999969,60.893326000000002],[-69.778885000000002,60.91137700000013],[-69.756957999999941,60.918884000000105],[-69.750838999999928,60.919715999999994],[-69.741104000000007,60.9180530000001],[-69.738051999999925,60.915543000000071],[-69.743332000000009,60.906936999999971],[-69.75140399999998,60.898879999999963],[-69.750564999999995,60.894440000000145],[-69.74610899999999,60.884720000000073],[-69.740554999999972,60.881377999999927],[-69.71055599999994,60.873878000000047],[-69.688599000000011,60.871658000000025],[-69.677215999999987,60.871101000000124],[-69.658614999999998,60.876938000000109],[-69.649993999999879,60.8836060000001],[-69.645843999999954,60.893051000000128],[-69.643889999999942,60.903320000000008],[-69.649169999999913,60.913879000000065],[-69.655563000000029,60.9222180000001],[-69.671660999999915,60.934433000000013],[-69.680831999999953,60.943047000000035],[-69.688599000000011,60.951660000000004],[-69.689437999999882,60.956100000000049],[-69.689712999999983,60.96166199999999],[-69.680557000000022,61.014159999999947],[-69.679442999999935,61.019440000000031],[-69.676665999999955,61.025551000000121],[-69.656661999999926,61.053604000000064],[-69.653884999999946,61.056938000000059],[-69.613051999999925,61.079163000000051],[-69.599990999999989,61.081940000000145],[-69.554168999999945,61.080550999999957],[-69.528609999999958,61.076385000000073],[-69.519729999999925,61.073326000000122],[-69.514450000000011,61.069442999999978],[-69.511397999999929,61.06610100000006],[-69.508347000000015,61.060822000000087],[-69.492767000000015,61.031937000000028],[-69.468886999999995,60.994995000000017],[-69.465285999999935,60.990273000000116],[-69.453613000000018,60.974991000000045],[-69.368057000000022,60.903046000000074],[-69.368606999999997,60.811104],[-69.371933000000013,60.80443600000001],[-69.380554000000018,60.794716000000108],[-69.386672999999973,60.790550000000053],[-69.404448999999943,60.783332999999914],[-69.421386999999925,60.778046000000018],[-69.438598999999954,60.774994000000049],[-69.496657999999968,60.764442000000088],[-69.533065999999963,60.757217000000026],[-69.591675000000009,60.739158999999972],[-69.615829000000019,60.730270000000075],[-69.708618000000001,60.686935000000119],[-69.716109999999958,60.682770000000119],[-69.71055599999994,60.675270000000069],[-69.705001999999979,60.671936000000073],[-69.695830999999998,60.663879000000065],[-69.656386999999995,60.595543000000077],[-69.654174999999952,60.584991000000116],[-69.654174999999952,60.581383000000017],[-69.656951999999933,60.574715000000026],[-69.6875,60.551383999999985],[-69.693603999999937,60.54694400000011],[-69.702224999999885,60.544440999999949],[-69.748610999999983,60.539719000000048],[-69.797774999999945,60.53443900000002],[-69.813888999999904,60.530548000000124],[-69.822234999999978,60.52777100000003],[-69.826110999999969,60.525551000000007],[-69.824448000000018,60.522490999999945],[-69.787506000000008,60.480545000000006],[-69.78443900000002,60.478043000000071],[-69.778335999999967,60.475266000000033],[-69.762222000000008,60.470268000000033],[-69.74888599999997,60.461662000000103],[-69.721664000000033,60.368881000000044],[-69.722504000000015,60.364158999999972],[-69.727782999999988,60.35193600000008],[-69.744445999999982,60.340546000000018],[-69.751953000000015,60.336380000000133],[-69.756667999999934,60.331940000000145],[-69.764724999999999,60.323607999999979],[-69.766952999999944,60.318328999999949],[-69.768065999999862,60.312210000000107],[-69.764724999999999,60.307495000000074],[-69.758895999999993,60.304710000000057],[-69.696380999999974,60.278877000000136],[-69.606383999999991,60.232765000000029],[-69.605269999999905,60.2227630000001],[-69.605835000000013,60.218596999999988],[-69.610001000000011,60.208327999999995],[-69.614166000000012,60.202492000000063],[-69.636977999999999,60.179047000000025],[-69.601943999999946,60.183052000000089],[-69.594161999999983,60.180824000000143],[-69.593886999999995,60.175827000000027],[-69.603606999999954,60.10305000000011],[-69.624709999999993,60.067497000000117],[-69.636948000000018,60.065268999999944],[-69.706664999999987,60.057495000000131],[-69.837218999999948,60.019713999999965],[-69.892226999999934,59.99971800000003],[-70.217223999999931,60.007216999999969],[-70.296393999999907,60.011196000000041],[-70.336120999999935,60.004440000000102],[-70.488051999999868,59.993607000000111],[-70.505004999999926,59.992493000000138],[-70.53472899999997,59.991936000000067],[-70.556945999999925,59.992767000000072],[-70.579726999999934,59.994712999999933],[-70.593062999999972,59.996658000000139],[-70.770844000000011,60.028046000000131],[-70.945830999999941,60.063048999999978],[-70.900283999999999,60.040276000000063],[-70.631103999999993,59.985824999999977],[-70.610549999999932,59.980820000000108],[-70.585007000000019,59.971931000000041],[-70.566955999999948,59.968597000000045],[-70.507232999999985,59.96665999999999],[-70.475829999999974,59.968323000000112],[-70.33805799999999,59.976379000000009],[-70.236938000000009,59.986938000000066],[-70.227218999999934,59.986655999999982],[-70.218613000000005,59.984160999999972],[-70.197495000000004,59.974158999999986],[-70.164718999999991,59.962494000000106],[-70.112503000000004,59.949715000000026],[-70.086120999999991,59.946381000000088],[-70.06138599999997,59.94499200000007],[-70.049987999999871,59.945267000000058],[-70.030837999999903,59.948043999999982],[-69.947768999999994,59.958885000000123],[-69.758895999999993,59.96776600000004],[-69.726944000000003,59.963608000000079],[-69.718886999999938,59.959717000000012],[-69.600554999999872,59.833054000000004],[-69.605559999999912,59.777214000000129],[-69.610001000000011,59.728600000000142],[-69.540833000000021,59.671104000000014],[-69.604995999999971,59.588325999999995],[-69.61332699999997,59.588325999999995],[-69.62777699999998,59.583878000000027],[-69.658889999999985,59.572495000000004],[-69.679442999999935,59.563605999999936],[-69.698043999999982,59.553047000000106],[-69.718613000000005,59.537773000000016],[-69.729720999999927,59.52777100000003],[-69.748336999999935,59.50999500000006],[-69.759445000000028,59.493880999999988],[-69.761123999999938,59.484161000000086],[-69.759445000000028,59.481102000000078],[-69.756393000000003,59.478600000000029],[-69.728333000000021,59.479713000000118],[-69.703888000000006,59.481934000000024],[-69.698607999999922,59.481377000000123],[-69.697495000000004,59.480545000000006],[-69.669448999999929,59.455551000000014],[-69.665832999999964,59.451659999999947],[-69.649445000000014,59.428879000000109],[-69.645279000000016,59.419159000000036],[-69.631667999999877,59.377769000000058],[-69.631377999999927,59.374992000000134],[-69.639998999999875,59.361107000000061],[-69.646392999999989,59.358887000000038],[-69.677779999999927,59.356941000000006],[-69.736664000000019,59.345267999999976],[-69.744155999999975,59.343322999999998],[-69.75778200000002,59.330826000000002],[-69.758347000000015,59.320273999999984],[-69.75111400000003,59.311104000000114],[-69.746947999999861,59.307770000000119],[-69.738601999999958,59.305266999999958],[-69.645003999999915,59.29833200000013],[-69.631103999999993,59.298881999999992],[-69.626663000000008,59.29972100000009],[-69.616393999999957,59.304436000000123],[-69.550277999999992,59.329720000000123],[-69.445830999999998,59.35443900000007],[-69.43582200000003,59.3555530000001],[-69.412506000000008,59.354995999999971],[-69.259445000000028,59.326660000000061],[-69.249724999999955,59.323607999999979],[-69.238327000000027,59.259720000000129],[-69.235001000000011,59.23943300000002],[-69.234725999999966,59.233879000000059],[-69.238051999999925,59.229431000000091],[-69.244445999999982,59.224433999999974],[-69.285827999999924,59.208327999999995],[-69.366394000000014,59.190826000000129],[-69.37388599999997,59.189430000000073],[-69.404998999999975,59.190269000000058],[-69.419158999999979,59.192490000000134],[-69.420272999999952,59.196098000000063],[-69.417496000000028,59.202217000000076],[-69.414443999999946,59.212494000000049],[-69.416655999999989,59.219711000000018],[-69.420837000000006,59.223045000000013],[-69.429717999999923,59.224709000000018],[-69.439437999999996,59.224433999999974],[-69.448607999999979,59.2227630000001],[-69.470276000000013,59.213882000000012],[-69.512222000000008,59.192764000000068],[-69.530562999999972,59.18221299999999],[-69.537505999999894,59.172493000000088],[-69.540282999999988,59.166381999999999],[-69.541107000000011,59.161659000000043],[-69.537215999999944,59.123047000000042],[-69.533065999999963,59.110825000000034],[-69.527785999999992,59.106658999999979],[-69.52055399999989,59.104439000000127],[-69.511397999999929,59.103324999999984],[-69.505568999999923,59.104163999999969],[-69.49499499999996,59.109993000000145],[-69.484436000000017,59.121375999999998],[-69.474716000000001,59.128043999999932],[-69.46305799999999,59.12943300000012],[-69.453887999999949,59.128326000000015],[-69.384170999999981,59.118880999999931],[-69.367492999999911,59.116386000000091],[-69.359725999999966,59.112770000000069],[-69.349166999999909,59.104996000000028],[-69.345276000000013,59.095543000000021],[-69.344161999999983,59.091103000000032],[-69.352782999999988,59.080826000000059],[-69.431945999999982,59.025269000000094],[-69.466110000000015,59.044159000000036],[-69.493331999999953,59.037498000000085],[-69.475280999999939,58.971931000000041],[-69.457503999999915,58.915824999999984],[-69.454726999999991,58.90638000000007],[-69.453887999999949,58.895828000000108],[-69.454177999999956,58.892220000000009],[-69.456389999999999,58.884163000000001],[-69.460006999999962,58.878876000000105],[-69.547500999999897,58.808043999999995],[-69.557495000000017,58.80360399999995],[-69.587783999999942,58.796660999999972],[-69.611114999999984,58.792220999999984],[-69.656386999999995,58.787773000000016],[-69.670836999999949,58.792220999999984],[-69.680831999999953,58.800269999999955],[-69.711944999999957,58.848877000000073],[-69.714721999999938,58.85833000000008],[-69.716109999999958,58.864715999999987],[-69.702788999999996,58.876381000000094],[-69.672226000000023,58.89138000000014],[-69.668610000000001,58.899437000000091],[-69.668334999999956,58.902771000000087],[-69.668334999999956,58.92582700000014],[-69.671660999999915,58.930550000000096],[-69.709441999999967,58.972762999999986],[-69.848342999999943,59.047217999999987],[-69.865279999999927,59.052773000000059],[-69.869155999999919,59.053046999999992],[-69.872771999999998,59.050827000000027],[-69.87388599999997,59.041107000000125],[-69.874160999999958,59.034163999999919],[-69.87388599999997,59.02915999999999],[-69.865554999999972,58.977768000000026],[-69.832779000000016,58.951660000000061],[-69.815826000000015,58.82388300000008],[-69.972777999999892,58.808601000000067],[-70.153610000000015,58.777488999999946],[-70.158889999999985,58.761107999999979],[-70.049728000000016,58.743606999999997],[-69.974716000000001,58.755554000000132],[-69.931106999999997,58.733047000000056],[-69.910552999999936,58.68804200000011],[-69.864440999999999,58.617493000000138],[-69.861663999999962,58.614998000000128],[-69.818892999999946,58.588599999999985],[-69.813048999999921,58.589157000000057],[-69.799437999999952,58.59887700000013],[-69.793335000000013,58.603881999999999],[-69.724441999999954,58.668883999999991],[-69.625,58.743881000000101],[-69.608046999999999,58.754714999999976],[-69.581680000000006,58.765831000000105],[-69.570847000000015,58.769440000000145],[-69.544723999999974,58.773323000000062],[-69.507507000000032,58.774712000000079],[-69.498885999999857,58.778602999999919],[-69.445540999999878,58.808327000000133],[-69.418883999999878,58.825553999999954],[-69.411666999999966,58.830276000000026],[-69.410277999999948,58.83998900000006],[-69.405838000000017,58.850273000000129],[-69.394729999999925,58.856659000000036],[-69.381942999999922,58.861381999999992],[-69.348891999999978,58.871658000000082],[-69.279175000000009,58.888046000000145],[-69.153884999999946,58.899993999999992],[-69.129989999999964,58.901657000000114],[-69.098343,58.899162000000103],[-69.031676999999888,58.893326000000002],[-68.99221799999998,58.883880999999974],[-68.841675000000009,58.891106000000036],[-68.756957999999997,58.912490999999989],[-68.656386999999938,58.900269000000037],[-68.637512000000015,58.896659999999997],[-68.601668999999958,58.885826000000122],[-68.396392999999989,58.816101000000117],[-68.390686000000017,58.811707000000013],[-68.360549999999932,58.781936999999914],[-68.355835000000013,58.774437000000034],[-68.357772999999952,58.764717000000132],[-68.360275000000001,58.759437999999989],[-68.366393999999957,58.687492000000077],[-68.34584000000001,58.626937999999996],[-68.323059000000001,58.58526599999999],[-68.290832999999907,58.541107000000011],[-68.216659999999933,58.490829000000076],[-68.209732000000031,58.462494000000049],[-68.204726999999991,58.453323000000069],[-68.203063999999983,58.441658000000018],[-68.204178000000013,58.436935000000062],[-68.226943999999946,58.376380999999981],[-68.244720000000029,58.33776899999998],[-68.256667999999991,58.323607999999979],[-68.285827999999924,58.294998000000135],[-68.289992999999924,58.28916200000009],[-68.309157999999911,58.253326000000072],[-68.322509999999966,58.22693600000008],[-68.34584000000001,58.169991000000039],[-68.348052999999936,58.159714000000065],[-68.347777999999948,58.15387700000008],[-68.344161999999983,58.141663000000051],[-68.341385000000002,58.133331000000055],[-68.344161999999983,58.127487000000087],[-68.350554999999929,58.12193300000007],[-68.46665999999999,58.045546999999942],[-68.477218999999934,58.039992999999981],[-68.503615999999909,58.031380000000013],[-68.528609999999958,58.029434000000094],[-68.729889000000014,57.99971800000003],[-68.874161000000015,57.969154000000003],[-69.127212999999983,57.899436999999921],[-69.135009999999909,57.896942000000081],[-69.181380999999988,57.878044000000045],[-69.202498999999989,57.868599000000131],[-69.221389999999928,57.858886999999982],[-69.262511999999958,57.833603000000039],[-69.357773000000009,57.774162000000047],[-69.369048999999961,57.765251000000092],[-69.363892000000021,57.765830999999935],[-69.339721999999938,57.773323000000062],[-69.304992999999968,57.786659000000043],[-69.298339999999996,57.789436000000137],[-69.210280999999952,57.829437000000098],[-69.190825999999959,57.840546000000018],[-69.172775000000001,57.851661999999976],[-69.111937999999896,57.885825999999952],[-68.965285999999878,57.933875999999998],[-68.904175000000009,57.949715000000083],[-68.695723999999984,57.987713000000099],[-68.678894000000014,57.989716000000101],[-68.667388999999957,57.990383000000008],[-68.634720000000016,57.988879999999995],[-68.62239099999988,57.989379999999983],[-68.545272999999952,58.000549000000035],[-68.495833999999945,58.013328999999999],[-68.416945999999939,58.034439000000134],[-68.404175000000009,58.039719000000048],[-68.31361400000003,58.103049999999996],[-68.308883999999978,58.108047000000113],[-68.304992999999911,58.113884000000041],[-68.302490000000034,58.119155999999975],[-68.299987999999928,58.127487000000087],[-68.300277999999878,58.132492000000127],[-68.30471799999998,58.146384999999952],[-68.305557000000022,58.149993999999992],[-68.307220000000029,58.164436000000137],[-68.306106999999997,58.181106999999997],[-68.305267000000015,58.186104000000057],[-68.301102000000014,58.198043999999982],[-68.295273000000009,58.209991000000116],[-68.284164000000033,58.219986000000063],[-68.230835000000013,58.26888300000013],[-68.18582200000003,58.360549999999989],[-68.168335000000013,58.414711000000125],[-68.166655999999989,58.424438000000066],[-68.166945999999996,58.435822000000144],[-68.169998000000021,58.446655000000135],[-68.172775000000001,58.454993999999999],[-68.178054999999972,58.469711000000132],[-68.178329000000019,58.480270000000019],[-68.171386999999925,58.489990000000091],[-68.139175000000023,58.521103000000096],[-68.135009999999852,58.524162000000047],[-68.013061999999991,58.573607999999922],[-68.003341999999975,58.576385000000016],[-67.983321999999987,58.573051000000021],[-67.969161999999983,58.565826000000015],[-67.959166999999979,58.558044000000052],[-67.896118000000001,58.500548999999978],[-67.893889999999999,58.496658000000082],[-67.892226999999991,58.491379000000109],[-67.891953000000001,58.483604000000014],[-67.895003999999915,58.476936000000023],[-67.901108000000022,58.467209000000082],[-67.908051,58.458046000000081],[-67.914444000000003,58.453323000000069],[-67.919448999999929,58.445540999999935],[-67.920837000000006,58.439430000000073],[-67.924163999999962,58.41276600000009],[-67.92332499999992,58.403046000000018],[-67.908339999999953,58.360825000000034],[-67.906113000000005,58.356941000000006],[-67.903610000000015,58.353607000000011],[-67.893340999999964,58.346656999999993],[-67.868056999999965,58.332214000000079],[-67.864166000000012,58.328880000000083],[-67.857498000000021,58.320273999999984],[-67.894500999999934,58.287163000000078],[-67.896659999999883,58.281158000000062],[-67.90449499999994,58.26766200000003],[-67.913329999999917,58.25616100000002],[-67.919341999999972,58.250159999999994],[-67.926330999999948,58.245491000000015],[-67.934829999999977,58.241161000000034],[-67.946999000000005,58.235992000000124],[-67.974990999999989,58.220993000000021],[-68.047501000000011,58.170547000000056],[-68.065826000000015,58.159431000000097],[-68.095839999999953,58.138602999999989],[-68.101105000000018,58.133049000000028],[-68.127486999999917,58.084717000000126],[-68.129989999999964,58.07888000000014],[-68.128325999999959,58.073608000000036],[-68.125548999999978,58.071105999999986],[-68.115828999999962,58.071938000000046],[-68.101105000000018,58.077773999999977],[-68.006667999999934,58.131935000000055],[-67.991668999999945,58.146103000000096],[-67.978333000000021,58.163605000000132],[-67.876944999999978,58.243050000000039],[-67.801392000000021,58.296661000000086],[-67.815551999999968,58.308883999999978],[-67.823897999999872,58.317215000000033],[-67.829178000000013,58.326385000000073],[-67.830565999999919,58.331383000000073],[-67.828888000000006,58.349716000000114],[-67.819732999999871,58.393608000000029],[-67.817229999999995,58.40526600000004],[-67.813323999999909,58.416100000000085],[-67.787505999999951,58.464439000000027],[-67.783066000000019,58.468048000000067],[-67.775008999999898,58.471099999999979],[-67.764450000000011,58.470543000000077],[-67.723891999999978,58.458885000000066],[-67.669448999999986,58.431938000000116],[-67.667496000000028,58.427489999999977],[-67.669998000000021,58.42193599999996],[-67.679992999999968,58.41276600000009],[-67.691939999999988,58.404433999999924],[-67.696945000000028,58.399437000000034],[-67.704726999999991,58.389160000000061],[-67.737212999999997,58.326942000000145],[-67.738892000000021,58.320831000000112],[-67.737212999999997,58.315543999999989],[-67.732497999999964,58.311661000000015],[-67.698043999999925,58.284995999999978],[-67.660827999999981,58.264442000000031],[-67.646117999999944,58.253326000000072],[-67.642775999999913,58.248604],[-67.652495999999985,58.214714000000129],[-67.654175000000009,58.210548000000017],[-67.728607000000011,57.976654000000053],[-67.713897999999858,57.923050000000046],[-67.710281000000009,57.97554800000006],[-67.708343999999954,57.982491000000039],[-67.659438999999963,58.110275000000058],[-67.653609999999958,58.122765000000015],[-67.64527899999996,58.134437999999989],[-67.591949,58.200828999999999],[-67.578339000000028,58.21527100000003],[-67.566100999999946,58.223602000000085],[-67.481383999999935,58.273880000000077],[-67.46665999999999,58.279716000000121],[-67.332779000000016,58.31610100000006],[-67.17222599999991,58.376380999999981],[-67.168609999999944,58.378044000000102],[-67.15194699999995,58.376656000000025],[-67.137512000000015,58.373046999999985],[-67.116652999999985,58.363327000000083],[-67.106948999999986,58.3555530000001],[-67.095550999999944,58.348877000000016],[-67.09056099999998,58.35054800000006],[-66.995834000000002,58.439430000000073],[-66.991669000000002,58.445267000000001],[-66.989989999999977,58.45138500000013],[-66.986664000000019,58.458046000000081],[-66.978881999999999,58.468323000000055],[-66.951401000000033,58.498603999999943],[-66.944153000000028,58.501937999999939],[-66.928054999999972,58.501663000000121],[-66.887221999999952,58.485550000000103],[-66.876937999999939,58.479156000000046],[-66.875548999999864,58.473877000000073],[-66.878052000000025,58.468596999999988],[-66.801101999999958,58.473602000000028],[-66.629714999999976,58.50360900000004],[-66.651671999999962,58.542770000000132],[-66.551940999999999,58.71138000000002],[-66.469727000000034,58.81638300000003],[-66.465012000000002,58.819992000000013],[-66.388610999999969,58.850548000000117],[-66.366652999999928,58.848044999999956],[-66.357773000000009,58.846099999999979],[-66.349990999999932,58.843048000000067],[-66.350280999999939,58.837212000000022],[-66.348891999999978,58.831940000000088],[-66.344161999999926,58.827773999999977],[-66.11471599999993,58.699714999999969],[-66.106110000000001,58.684989999999971],[-66.077224999999999,58.654434000000094],[-66.072234999999921,58.650825999999995],[-66.067779999999914,58.648880000000077],[-66.054168999999945,58.646102999999982],[-65.945540999999935,58.616936000000067],[-65.938888999999961,58.613883999999928],[-65.93582200000003,58.609718000000044],[-65.93582200000003,58.604713000000004],[-65.938598999999954,58.594437000000084],[-65.941939999999988,58.582770999999923],[-66.021941999999967,58.486938000000009],[-66.08944699999995,58.365273000000002],[-66.091385000000002,58.358887000000095],[-66.091385000000002,58.354164000000083],[-66.073059000000001,58.327217000000019],[-66.065552000000025,58.320273999999984],[-66.058883999999978,58.320273999999984],[-66.052779999999927,58.34693900000002],[-66.051392000000021,58.352493000000038],[-66.045546999999942,58.363052000000096],[-66.041671999999949,58.368050000000096],[-66.030562999999972,58.376380999999981],[-66.02305599999994,58.379714999999976],[-66.015014999999948,58.381934999999999],[-65.988051999999982,58.384437999999989],[-65.979172000000005,58.386107999999922],[-65.972777999999948,58.388046000000088],[-65.965012000000002,58.391936999999928],[-65.960280999999895,58.396103000000039],[-65.920272999999952,58.44582400000013],[-65.920837000000006,58.449432000000002],[-65.926666000000012,58.456099999999992],[-65.932219999999973,58.458885000000066],[-65.94027699999998,58.461661999999933],[-65.96166999999997,58.464714000000072],[-65.980559999999912,58.470268000000033],[-65.982497999999964,58.4741590000001],[-65.981948999999929,58.480545000000006],[-65.980559999999912,58.483047000000113],[-65.887512000000015,58.577774000000034],[-65.884170999999981,58.580826000000116],[-65.876937999999882,58.581940000000088],[-65.879989999999964,58.62721300000004],[-65.945540999999935,58.665267999999969],[-66.032226999999978,58.710548000000074],[-66.101394999999968,58.771103000000039],[-66.103881999999999,58.773604999999918],[-66.081954999999994,58.80971500000004],[-66.037215999999944,58.85166200000009],[-65.990111999999954,58.852661000000012],[-65.984954999999957,58.851494000000059],[-65.952277999999865,58.836822999999981],[-65.845839999999953,58.826660000000004],[-65.839721999999995,58.827217000000076],[-65.797501000000011,58.847488000000055],[-65.792770000000019,58.853325000000041],[-65.790282999999988,58.857773000000009],[-65.789443999999946,58.861938000000009],[-65.791381999999999,58.865829000000076],[-65.794998000000021,58.86693600000001],[-65.80610699999994,58.866660999999965],[-65.833327999999995,58.864715999999987],[-65.861938000000009,58.863327000000027],[-65.880279999999914,58.864440999999999],[-65.940445000000011,58.879105000000038],[-65.952606000000003,58.88126799999992],[-65.958115000000021,58.882935000000032],[-65.964775000000031,58.887440000000083],[-65.968276999999887,58.893440000000055],[-65.988602000000014,58.903603000000032],[-65.885559000000001,59.001938000000052],[-65.777495999999985,59.029990999999995],[-65.695266999999888,59.043610000000058],[-65.673049999999989,59.046104000000014],[-65.660278000000005,59.044159000000036],[-65.654174999999952,59.042496000000085],[-65.634673999999904,59.033217999999977],[-65.632492000000013,59.031216000000086],[-65.614166000000012,59.019440000000088],[-65.565001999999936,58.993607000000111],[-65.514450000000011,58.984718000000044],[-65.5,58.983330000000137],[-65.49499499999996,58.984718000000044],[-65.493332000000009,58.987495000000138],[-65.49499499999996,58.991936000000067],[-65.509444999999971,59.008330999999998],[-65.516402999999968,59.010826000000009],[-65.533614999999998,59.014717000000076],[-65.543059999999969,59.015549000000021],[-65.553054999999972,59.017493999999999],[-65.56082200000003,59.020827999999995],[-65.571388000000013,59.039108000000112],[-65.572891000000027,59.044106000000113],[-65.570221000000004,59.045772999999997],[-65.568054000000018,59.046776000000023],[-65.532776000000013,59.063881000000094],[-65.518616000000009,59.066666000000112],[-65.510284000000013,59.066940000000045],[-65.506392999999946,59.066382999999973],[-65.492492999999968,59.061378000000104],[-65.454726999999991,59.042221000000097],[-65.340285999999992,59.03833000000003],[-65.330565999999976,59.038048000000117],[-65.324721999999952,59.038887000000102],[-65.317504999999983,59.041382000000112],[-65.319732999999985,59.047217999999987],[-65.333618000000001,59.059990000000028],[-65.344726999999978,59.064712999999983],[-65.354171999999949,59.067497000000117],[-65.533553999999924,59.077663000000143],[-65.53687999999994,59.074665000000095],[-65.546721999999988,59.071831000000088],[-65.564383999999961,59.070163999999977],[-65.577056999999968,59.069996000000117],[-65.58406100000002,59.070999000000143],[-65.586563000000012,59.072159000000056],[-65.651947000000007,59.079163000000108],[-65.715011999999945,59.148331000000042],[-65.718062999999972,59.153046000000074],[-65.740829000000019,59.214714000000072],[-65.742492999999911,59.219437000000084],[-65.743056999999965,59.228043000000014],[-65.744995000000017,59.259720000000129],[-65.744719999999973,59.263054000000125],[-65.743056999999965,59.265830999999991],[-65.731948999999986,59.269066000000009],[-65.706664999999987,59.268326000000059],[-65.685271999999884,59.264442000000031],[-65.676102000000014,59.261108000000036],[-65.646118000000001,59.244713000000104],[-65.587509000000011,59.20249200000012],[-65.612503000000004,59.237495000000081],[-65.614715999999873,59.243607000000054],[-65.614166000000012,59.246941000000049],[-65.581680000000006,59.37721300000004],[-65.572509999999966,59.378601000000003],[-65.570006999999976,59.378326000000129],[-65.551940999999999,59.372765000000072],[-65.499160999999958,59.352219000000105],[-65.48332199999993,59.345542999999964],[-65.476105000000018,59.338882000000069],[-65.471114999999941,59.327492000000007],[-65.453338999999971,59.316939999999988],[-65.383895999999993,59.281661999999983],[-65.372771999999998,59.276657000000114],[-65.366652999999872,59.274993999999992],[-65.36111499999987,59.274712000000136],[-65.357223999999974,59.277214000000015],[-65.356658999999922,59.282768000000033],[-65.437774999999988,59.393883000000017],[-65.495269999999891,59.433876000000055],[-65.559433000000013,59.481658999999979],[-65.56138599999997,59.486107000000118],[-65.557495000000017,59.487770000000069],[-65.549438000000009,59.48943300000002],[-65.542220999999984,59.489990000000091],[-65.360000999999954,59.481658999999979],[-65.347778000000005,59.480820000000051],[-65.260559000000001,59.466385000000116],[-65.19766199999998,59.450493000000051],[-65.195830999999998,59.447659000000044],[-65.176940999999999,59.440269000000001],[-65.170273000000009,59.434433000000126],[-65.141953000000001,59.415825000000041],[-65.126663000000008,59.40776800000009],[-65.119995000000017,59.40526600000004],[-65.060271999999998,59.384438000000102],[-65.041381999999942,59.378601000000003],[-65.017775999999969,59.373046999999985],[-65.005844000000025,59.371933000000013],[-64.995543999999995,59.372490000000084],[-64.98332199999993,59.376380999999981],[-65.031386999999938,59.392769000000044],[-65.075835999999981,59.408043000000077],[-65.111114999999984,59.420546999999942],[-65.118880999999988,59.423882000000049],[-65.141113000000018,59.434433000000126],[-65.147231999999974,59.43804200000011],[-65.151397999999972,59.443046999999979],[-65.156386999999938,59.451659999999947],[-65.158996999999886,59.460827000000108],[-65.16194200000001,59.466660000000104],[-65.168059999999969,59.470543000000021],[-65.22084000000001,59.48832700000014],[-65.290832999999964,59.506660000000011],[-65.308608999999933,59.50999500000006],[-65.330001999999865,59.509437999999989],[-65.388901000000033,59.50750000000005],[-65.411666999999966,59.509437999999989],[-65.419998000000021,59.516936999999984],[-65.462783999999886,59.578049000000021],[-65.494155999999975,59.626937999999996],[-65.501677999999913,59.63888500000013],[-65.527785999999992,59.716933999999981],[-65.501952999999958,59.747215000000097],[-65.433318999999983,59.798049999999932],[-65.374999999999943,59.828049000000135],[-65.33555599999994,59.84665700000005],[-65.333892999999932,59.847214000000122],[-65.323623999999995,59.845543000000077],[-65.236114999999984,59.819381999999962],[-65.21945199999999,59.814377000000093],[-65.205947999999978,59.808548000000087],[-65.203444999999931,59.806881000000033],[-65.198775999999953,59.802879000000019],[-65.195281999999963,59.797218000000044],[-65.158614999999998,59.782211000000018],[-65.152785999999992,59.779990999999995],[-65.136123999999995,59.776657],[-65.053054999999972,59.763611000000083],[-65.033065999999963,59.761383000000137],[-65.006667999999991,59.760277000000087],[-64.988602000000014,59.761940000000038],[-64.983886999999982,59.762771999999927],[-64.983063000000016,59.764160000000061],[-64.989165999999955,59.765831000000105],[-65.055556999999965,59.778328000000101],[-65.132766999999944,59.79694400000011],[-65.161391999999978,59.817490000000134],[-65.199393999999927,59.835659000000078],[-65.202713000000017,59.837326000000019],[-65.206054999999992,59.840492000000097],[-65.230835000000013,59.880546999999979],[-65.231948999999986,59.885826000000122],[-65.226104999999961,59.888603000000046],[-65.206389999999999,59.888603000000046],[-65.143340999999907,59.94999700000011],[-65.126098999999954,60.011108000000036],[-65.110001000000011,60.043052999999986],[-65.029723999999931,60.077217000000019],[-64.921111999999937,60.194992000000013],[-64.834166999999979,60.323051000000078],[-64.832229999999925,60.328605999999979],[-64.834441999999967,60.334434999999985],[-64.846389999999928,60.345543000000134],[-64.858336999999949,60.352492999999981],[-64.857223999999974,60.359436000000017],[-64.854445999999996,60.361107000000061],[-64.846114999999998,60.362769999999955],[-64.83555599999994,60.363327000000083],[-64.65306099999998,60.34693900000002],[-64.641677999999899,60.344711000000018],[-64.610274999999945,60.336380000000133],[-64.576674999999966,60.322768999999994],[-64.533249000000012,60.302498000000014],[-64.475600999999983,60.281609000000003],[-64.466919000000019,60.278602999999976],[-64.431090999999981,60.258105999999941],[-64.432593999999995,60.255608000000052],[-64.43460099999993,60.255108000000064],[-64.446091000000024,60.254771999999946],[-64.453093999999908,60.256271000000027],[-64.462424999999939,60.259273999999948],[-64.477591999999959,60.265609999999981],[-64.477218999999991,60.260551000000135],[-64.557495000000017,60.281105000000082],[-64.580291999999929,60.286110000000122],[-64.613051999999982,60.289436000000137],[-64.643065999999976,60.287498000000028],[-64.721114999999941,60.261108000000036],[-64.725829999999974,60.258331000000112],[-64.758056999999951,60.235825000000091],[-64.759445000000028,60.231102000000135],[-64.752501999999879,60.228600000000029],[-64.745269999999948,60.228325000000041],[-64.736937999999952,60.230545000000063],[-64.685546999999985,60.250832000000116],[-64.646118000000001,60.265830999999991],[-64.634170999999981,60.268883000000073],[-64.596389999999985,60.266937000000041],[-64.574448000000018,60.264999000000103],[-64.554169000000002,60.262772000000041],[-64.536391999999921,60.2586060000001],[-64.421676999999988,60.215656000000024],[-64.419501999999966,60.213661000000002],[-64.376937999999996,60.160545000000013],[-64.465011999999945,60.084991000000002],[-64.469161999999869,60.08277099999998],[-64.476944000000003,60.079720000000009],[-64.491378999999938,60.074714999999912],[-64.504455999999948,60.072495000000117],[-64.515015000000005,60.071938000000046],[-64.654998999999918,60.053604000000064],[-64.80471799999998,60.007216999999969],[-64.8125,60.004165999999998],[-64.823333999999988,59.997772000000111],[-64.826675000000023,59.994712999999933],[-64.827498999999989,59.986382000000049],[-64.820007000000032,59.979431000000091],[-64.811935000000005,59.978325000000098],[-64.796660999999972,59.980270000000075],[-64.735274999999945,60.001106000000107],[-64.490828999999906,60.05943300000007],[-64.410277999999948,60.111107000000118],[-64.396392999999989,60.121933000000013],[-64.392226999999991,60.124161000000015],[-64.385833999999932,60.125267000000008],[-64.379990000000021,60.125267000000008],[-64.37388599999997,60.123604000000114],[-64.367766999999958,60.119713000000047],[-64.366104000000007,60.117493000000024],[-64.36500499999994,60.109993000000145],[-64.374611000000016,60.033829000000082],[-64.375281999999856,60.028324000000055],[-64.394729999999981,59.941658000000075],[-64.396956999999929,59.937767000000008],[-64.408889999999985,59.932495000000074],[-64.450561999999934,59.925270000000012],[-64.462218999999948,59.922493000000088],[-64.491942999999992,59.913605000000132],[-64.506957999999997,59.907211000000075],[-64.514724999999999,59.901932000000102],[-64.513901000000033,59.896103000000096],[-64.506393000000003,59.891936999999984],[-64.499435000000005,59.891663000000051],[-64.481948999999872,59.894714000000079],[-64.376098999999954,59.9180530000001],[-64.367766999999958,59.920273000000122],[-64.363327000000027,59.922493000000088],[-64.360549999999932,59.924995000000024],[-64.320281999999963,60.004107999999974],[-64.322112999999945,60.006439000000114],[-64.324119999999994,60.011604000000091],[-64.32428699999997,60.014107000000024],[-64.322112999999945,60.024605000000008],[-64.320449999999937,60.027270999999985],[-64.317443999999909,60.028103000000044],[-64.265014999999948,60.048050000000103],[-64.216659999999933,60.039993000000095],[-64.173614999999984,60.028328000000045],[-64.166945999999996,60.024994000000049],[-64.160827999999981,60.01638800000012],[-64.150283999999999,59.985268000000076],[-64.150283999999999,59.982208000000014],[-64.165833000000021,59.850548000000117],[-64.17721599999993,59.785552999999936],[-64.180831999999896,59.781662000000097],[-64.193053999999961,59.775825999999995],[-64.202498999999932,59.77416199999999],[-64.220000999999968,59.77416199999999],[-64.236664000000019,59.779716000000008],[-64.244720000000029,59.784996000000035],[-64.25140399999998,59.787498000000141],[-64.257507000000032,59.78943600000008],[-64.261948000000018,59.789161999999976],[-64.264450000000011,59.787498000000141],[-64.266662999999994,59.77915999999999],[-64.261123999999995,59.764717000000132],[-64.255004999999926,59.756660000000124],[-64.21305799999999,59.717766000000097],[-64.197768999999994,59.705269000000101],[-64.173888999999974,59.688598999999954],[-64.163894999999968,59.684158000000082],[-64.151672000000019,59.680824000000086],[-64.129989999999964,59.676659000000086],[-64.057769999999948,59.625267000000122],[-64.116942999999935,59.517494000000056],[-64.047501000000011,59.549721000000034],[-64.040833000000021,59.553604000000007],[-64.033324999999991,59.563880999999981],[-64.034438999999907,59.573608000000092],[-64.034438999999907,59.582771000000093],[-64.029723999999874,59.599433999999974],[-64.024719000000005,59.609993000000031],[-64.019454999999937,59.618599000000131],[-64.011123999999938,59.624992000000077],[-64.004729999999995,59.626381000000094],[-63.99722300000002,59.626656000000139],[-63.90055099999995,59.619987000000037],[-63.885559000000001,59.618881000000044],[-63.876105999999993,59.615829000000076],[-63.865554999999915,59.609993000000031],[-63.731666999999959,59.526099999999985],[-63.724166999999966,59.517769000000101],[-63.722495999999978,59.513885000000073],[-63.723884999999996,59.506660000000011],[-63.785278000000005,59.426102000000014],[-63.807837999999947,59.420437000000106],[-63.810172999999963,59.41944100000012],[-63.814502999999945,59.418101999999976],[-63.866393999999957,59.421104000000014],[-63.90694400000001,59.421660999999915],[-63.947776999999974,59.419716000000108],[-64.000564999999995,59.41443600000008],[-64.018341000000021,59.410545000000013],[-64.033324999999991,59.406654000000117],[-64.050277999999992,59.399994000000106],[-64.061110999999983,59.393883000000017],[-64.065826000000015,59.388046000000031],[-64.062209999999993,59.38249200000007],[-64.052779999999984,59.379433000000063],[-63.805167999999924,59.368164000000093],[-63.790145999999993,59.370293000000004],[-63.786652000000004,59.371792000000084],[-63.78264999999999,59.374126000000103],[-63.751395999999943,59.37582400000008],[-63.748111999999935,59.333878000000084],[-63.75644699999998,59.30838],[-63.768280000000004,59.28788000000003],[-63.77044699999999,59.284381999999994],[-63.773444999999981,59.282215000000122],[-63.780944999999974,59.278213999999991],[-63.814162999999951,59.249435000000005],[-63.824722000000008,59.24610100000001],[-63.825499999999977,59.244377000000043],[-63.82527899999991,59.243324000000086],[-63.813889000000017,59.240829000000076],[-63.777942999999993,59.263938999999993],[-63.76677699999999,59.264275000000055],[-63.760940999999946,59.265434000000027],[-63.755942999999945,59.266773000000001],[-63.739112999999975,59.273605000000032],[-63.730441999999925,59.280769000000021],[-63.723777999999925,59.287436999999954],[-63.718776999999932,59.293941000000075],[-63.716113999999891,59.300934000000098],[-63.71527900000001,59.303768000000105],[-63.71527900000001,59.306438000000071],[-63.71594199999987,59.309437000000059],[-63.713775999999996,59.315605000000005],[-63.710608999999863,59.318107999999995],[-63.658332999999971,59.358046999999999],[-63.649993999999992,59.362494999999967],[-63.543059999999912,59.34804500000007],[-63.535277999999948,59.344436999999971],[-63.393332999999927,59.264999000000103],[-63.357506000000001,59.208046000000081],[-63.356392000000028,59.204993999999999],[-63.358054999999922,59.198043999999982],[-63.366661000000022,59.186377999999991],[-63.412773000000016,59.135826000000066],[-63.425560000000019,59.126381000000038],[-63.441108999999926,59.119438000000002],[-63.476944000000003,59.104439000000127],[-63.563613999999973,59.073326000000122],[-63.580001999999922,59.067497000000117],[-63.589721999999938,59.065543999999989],[-63.731392000000028,59.056270999999981],[-63.741055000000017,59.055770999999993],[-63.74872199999993,59.056934000000126],[-63.753890999999896,59.058266000000003],[-63.760222999999939,59.062767000000122],[-63.812217999999973,59.065826000000072],[-63.934440999999936,59.081108000000086],[-63.948333999999988,59.07888000000014],[-63.966110000000015,59.074714999999969],[-63.98833499999995,59.068329000000062],[-64.045546999999999,59.02416199999999],[-64.04722599999991,59.019440000000088],[-64.043883999999991,59.015273999999977],[-64.039443999999946,59.013885000000016],[-63.912216000000001,59.000549000000035],[-63.801719999999989,59.013992000000144],[-63.798388999999986,59.011329999999987],[-63.766395999999986,59.012772000000098],[-63.759444999999971,59.012497000000053],[-63.734443999999939,59.014998999999989],[-63.508057000000008,59.052773000000059],[-63.381667999999877,59.098045000000127],[-63.372771999999941,59.101104999999961],[-63.365554999999915,59.101104999999961],[-63.309440999999993,59.09415400000006],[-63.293335000000013,59.091377000000136],[-63.134170999999981,59.058327000000077],[-63.124999999999943,59.055267000000015],[-63.121940999999993,59.051384000000098],[-63.122771999999998,59.045547000000113],[-63.126944999999921,59.041382000000112],[-63.133330999999941,59.038048000000117],[-63.159438999999907,59.029990999999995],[-63.175277999999992,59.026939000000084],[-63.185271999999998,59.026381999999955],[-63.216942000000017,59.027489000000116],[-63.238892000000021,59.030548000000067],[-63.323333999999932,59.027771000000143],[-63.336112999999955,59.024994000000049],[-63.335555999999997,59.021935000000099],[-63.264450000000011,58.985549999999989],[-63.213889999999992,58.977211000000125],[-63.195273999999984,58.979713000000004],[-63.185271999999998,58.980270000000075],[-63.173057999999912,58.979713000000004],[-63.167503000000011,58.970825000000048],[-63.160552999999993,58.926384000000041],[-63.163054999999929,58.920273000000122],[-63.236389000000031,58.876937999999996],[-63.313331999999946,58.861107000000004],[-63.325004999999976,58.85582700000009],[-63.312774999999988,58.853049999999996],[-63.294723999999974,58.85083000000003],[-63.19027699999998,58.854996000000085],[-63.112777999999992,58.878043999999989],[-63.033332999999971,58.873878000000104],[-62.924170999999944,58.821381000000031],[-62.918334999999956,58.817497000000003],[-62.90694400000001,58.80471],[-62.904167000000029,58.799995000000138],[-62.847495999999978,58.690543999999989],[-62.845276000000013,58.684989999999971],[-62.842223999999987,58.669991000000095],[-62.843612999999948,58.659430999999984],[-62.847777999999948,58.653045999999961],[-62.915832999999907,58.600272999999959],[-62.974998000000028,58.576660000000061],[-63.169167000000016,58.503052000000139],[-63.334109999999896,58.455768999999975],[-63.334609999999941,58.45227100000011],[-63.337108999999941,58.448437000000126],[-63.373444000000006,58.417435000000069],[-63.38528100000002,58.41027100000008],[-63.39910900000001,58.405273000000079],[-63.486388999999974,58.37082700000002],[-63.522498999999982,58.361107000000118],[-63.537506000000008,58.354164000000083],[-63.583060999999987,58.311378000000047],[-63.587776000000019,58.305549999999982],[-63.58943899999997,58.30082700000014],[-63.584998999999925,58.298881999999992],[-63.579726999999991,58.298606999999947],[-63.571670999999924,58.299995000000081],[-63.555274999999938,58.305267000000015],[-63.533057999999983,58.314438000000109],[-63.428223000000003,58.369049000000132],[-63.392386999999928,58.388381999999979],[-63.378558999999939,58.399044000000004],[-63.364219999999932,58.410049000000015],[-63.351555000000019,58.418716000000018],[-63.286391999999978,58.456657000000064],[-63.28082999999998,58.459160000000054],[-63.264724999999942,58.463051000000121],[-63.241669000000002,58.466385000000116],[-63.213615000000004,58.469437000000028],[-63.148612999999955,58.476379000000122],[-63.13277399999987,58.477211000000068],[-63.124442999999872,58.475266000000033],[-63.096947,58.461936999999978],[-63.089721999999938,58.458327999999938],[-63.086113000000012,58.454993999999999],[-63.037506000000008,58.453048999999965],[-62.763335999999981,58.480820000000051],[-62.636664999999937,58.501389000000017],[-62.620551999999975,58.504997000000117],[-62.610001000000011,58.503882999999973],[-62.58943899999997,58.499718000000144],[-62.573615999999959,58.493880999999988],[-62.566108999999926,58.490546999999992],[-62.56138599999997,58.487495000000081],[-62.557502999999997,58.482491000000095],[-62.556389000000024,58.478043000000127],[-62.619719999999973,58.376938000000052],[-62.619445999999982,58.310272000000055],[-62.623054999999965,58.30443600000001],[-62.634170999999981,58.297775000000058],[-62.708611000000019,58.276100000000042],[-62.77666499999998,58.268599999999992],[-62.828056000000004,58.252220000000079],[-62.661666999999966,58.26998900000001],[-62.658607000000018,58.270271000000037],[-62.654442000000017,58.270271000000037],[-62.609725999999966,58.256660000000068],[-62.597778000000005,58.251663000000008],[-62.592772999999966,58.248604],[-62.582503999999858,58.23443600000013],[-62.581116000000009,58.221931000000041],[-62.58277899999996,58.216934000000094],[-62.584441999999967,58.214439000000084],[-62.631942999999865,58.185265000000129],[-62.638054000000011,58.181938000000002],[-62.653053,58.175270000000012],[-62.661384999999996,58.173049999999989],[-62.689163000000008,58.169991000000039],[-62.719718999999941,58.169715999999994],[-62.740279999999927,58.171936000000017],[-62.773887999999886,58.176941000000056],[-62.783889999999928,58.176659000000029],[-62.822226999999998,58.174713000000111],[-62.841666999999973,58.1722180000001],[-62.965004000000022,58.15387700000008],[-63.012221999999952,58.135551000000078],[-63.016662999999937,58.126098999999954],[-63.023887999999999,58.118880999999988],[-63.045279999999934,58.108886999999982],[-63.126944999999921,58.086936999999978],[-63.205558999999994,58.065826000000072],[-63.21166999999997,58.062492000000077],[-63.211387999999999,58.060272000000111],[-63.208892999999989,58.057770000000005],[-63.19027699999998,58.053047000000049],[-63.140838999999971,58.048882000000049],[-63.146998999999994,58.036831000000006],[-63.15582999999998,58.026939000000084],[-63.167777999999942,58.021103000000039],[-63.193329000000006,58.014717000000132],[-63.267220000000009,58.007217000000026],[-63.275275999999963,58.005554000000132],[-63.30471799999998,57.996940999999936],[-63.341666999999973,57.981102000000021],[-63.340835999999967,57.979988000000048],[-63.329726999999991,57.980270000000132],[-63.15166499999998,57.993606999999997],[-63.128882999999973,57.997771999999998],[-63.107779999999991,58.007774000000097],[-63.101944000000003,58.01249700000011],[-63.098884999999939,58.017769000000044],[-63.097778000000005,58.019714000000022],[-63.09833500000002,58.026939000000084],[-63.099998000000028,58.033051000000057],[-63.101944000000003,58.036942000000124],[-63.101668999999902,58.044159000000036],[-63.097778000000005,58.052216000000044],[-63.094718999999941,58.057495000000017],[-63.089164999999866,58.06221000000005],[-62.946662999999944,58.124161000000015],[-62.940276999999924,58.125824000000136],[-62.886390999999946,58.137496999999996],[-62.838051000000007,58.144997000000046],[-62.832222000000002,58.14527099999998],[-62.829445000000021,58.143326000000002],[-62.77277399999997,58.129158000000132],[-62.652221999999995,58.118599000000074],[-62.646111000000019,58.119155999999975],[-62.643058999999994,58.119986999999981],[-62.612502999999947,58.137771999999984],[-62.59944200000001,58.145546000000024],[-62.560828999999956,58.156654000000003],[-62.515838999999914,58.169158999999922],[-62.491942999999992,58.174163999999962],[-62.46665999999999,58.175552000000096],[-62.452781999999956,58.175270000000012],[-62.448051000000021,58.1722180000001],[-62.446388000000013,58.168327000000033],[-62.447776999999917,58.164154000000053],[-62.463000999999963,58.151047000000062],[-62.469666000000018,58.145718000000045],[-62.478333000000021,58.141212000000053],[-62.486168000000021,58.136547000000064],[-62.503890999999953,58.123604000000114],[-62.519447000000014,58.111937999999952],[-62.529166999999916,58.102776000000063],[-62.531386999999995,58.095268000000033],[-62.514450000000011,58.057495000000017],[-62.506392999999946,58.055267000000072],[-62.498054999999908,58.057213000000104],[-62.49138599999992,58.061378000000104],[-62.486664000000019,58.066940000000045],[-62.484443999999939,58.072220000000129],[-62.485557999999912,58.081107999999915],[-62.488051999999925,58.086105000000032],[-62.488891999999908,58.091103000000032],[-62.488051999999925,58.09665700000005],[-62.482772999999952,58.100273000000072],[-62.444827999999916,58.106720000000053],[-62.413054999999929,58.110825000000091],[-62.375,58.112770000000069],[-62.368889000000024,58.111664000000019],[-62.363892000000021,58.108604000000014],[-62.317779999999971,58.052489999999977],[-62.307502999999883,58.039161999999976],[-62.306945999999982,58.031104999999968],[-62.309722999999963,58.028603000000089],[-62.38144699999998,58.008327000000065],[-62.394112000000007,58.003658000000087],[-62.406280999999979,58.002827000000082],[-62.41311300000001,58.003658000000087],[-62.437613999999883,58.010159000000101],[-62.450443000000007,58.011993000000132],[-62.500838999999928,58.008049000000142],[-62.51916499999993,58.006943000000092],[-62.528335999999967,58.005554000000132],[-62.545279999999934,58.000549000000035],[-62.648055999999997,57.958328000000051],[-62.655273000000022,57.953605999999979],[-62.65972099999999,57.94860100000011],[-62.672774999999945,57.929993000000024],[-62.664443999999946,57.928604000000064],[-62.655273000000022,57.929993000000024],[-62.640838999999971,57.935264999999958],[-62.636116000000015,57.938598999999954],[-62.620833999999945,57.947487000000137],[-62.611670999999944,57.951660000000061],[-62.577498999999989,57.962212000000079],[-62.537780999999882,57.971100000000092],[-62.512504999999919,57.972487999999998],[-62.455165999999963,57.968212000000051],[-62.448001999999974,57.967708999999957],[-62.325004999999919,57.956100000000106],[-62.268332999999984,57.948875000000044],[-62.200278999999966,57.935822000000087],[-62.148887999999999,57.974990999999932],[-62.145279000000016,57.974159000000043],[-62.12749500000001,57.968048000000124],[-62.116111999999987,57.962493999999992],[-62.083610999999962,57.944992000000127],[-62.079726999999934,57.942763999999954],[-62.072226999999998,57.931107000000054],[-62.05972300000002,57.897774000000027],[-62.060828999999956,57.889992000000063],[-62.062774999999931,57.886658000000068],[-62.115279999999984,57.854164000000026],[-62.131942999999978,57.84276600000004],[-62.138053999999954,57.835823000000005],[-62.139167999999927,57.831940000000088],[-62.125274999999988,57.806938000000002],[-62.120833999999888,57.800827000000083],[-62.119995000000017,57.799994999999967],[-62.107779999999991,57.789719000000105],[-62.08916499999998,57.780548000000124],[-62.085830999999985,57.779433999999981],[-62.079169999999976,57.779433999999981],[-62.061110999999926,57.781936999999971],[-62.046394000000021,57.785828000000038],[-62.033332999999914,57.787216000000114],[-62.018058999999937,57.783607000000131],[-61.996666000000005,57.772217000000069],[-61.99138599999992,57.767769000000101],[-61.889998999999989,57.666382000000112],[-61.883330999999998,57.645546000000081],[-61.883057000000008,57.63749700000011],[-61.884444999999971,57.626938000000052],[-61.888610999999969,57.622490000000084],[-61.89805599999994,57.616386000000034],[-62.071670999999981,57.563605999999993],[-62.192222999999899,57.535828000000095],[-62.30860899999999,57.490546999999992],[-62.421386999999982,57.482207999999957],[-62.431945999999868,57.484717999999987],[-62.531113000000005,57.506943000000035],[-62.541388999999981,57.507500000000107],[-62.544723999999974,57.504440000000045],[-62.545279999999934,57.50110600000005],[-62.533332999999914,57.492218000000094],[-62.520553999999947,57.484993000000031],[-62.46444699999995,57.454437000000098],[-62.457222000000002,57.451103000000103],[-62.377220000000023,57.421936000000017],[-62.365279999999927,57.419715999999994],[-62.353888999999981,57.418326999999977],[-62.335830999999928,57.419440999999949],[-62.230552999999986,57.443604000000107],[-62.173331999999959,57.463608000000022],[-62.167220999999984,57.464439000000084],[-62.060828999999956,57.456383000000017],[-62.039725999999973,57.453323000000125],[-61.891388000000006,57.411934000000031],[-61.816948000000025,57.376938000000109],[-61.803054999999915,57.369155999999975],[-61.801391999999908,57.363052000000096],[-61.803054999999915,57.358887000000095],[-61.863892000000021,57.285553000000107],[-61.894164999999987,57.269440000000088],[-61.937499999999943,57.252220000000079],[-61.944999999999936,57.250832000000003],[-61.953888000000006,57.249435000000062],[-61.997779999999977,57.25638600000002],[-62.017219999999952,57.256943000000092],[-62.026389999999992,57.255829000000119],[-62.023613000000012,57.251663000000008],[-62.015839000000028,57.243050000000039],[-62.005004999999869,57.236655999999982],[-61.858894000000021,57.167770000000132],[-61.852500999999961,57.165268000000083],[-61.664444000000003,57.143883000000073],[-61.65555599999999,57.143051000000014],[-61.565551999999968,57.149719000000005],[-61.515555999999947,57.15638000000007],[-61.490836999999999,57.159431000000097],[-61.478881999999999,57.159431000000097],[-61.458892999999989,57.154709000000025],[-61.441665999999884,57.148604999999975],[-61.39305899999988,57.124709999999993],[-61.380279999999914,57.117210000000114],[-61.363892000000021,57.097214000000122],[-61.358336999999949,57.087494000000049],[-61.355559999999969,57.016388000000006],[-61.370833999999945,56.978600000000142],[-61.378052000000025,56.982208000000071],[-61.393332999999984,56.983047000000056],[-61.479720999999984,56.983604000000128],[-61.487777999999935,56.981658999999979],[-61.495551999999861,56.979430999999977],[-61.516395999999929,56.970267999999976],[-61.535560999999973,56.961104999999975],[-61.546668999999952,56.954437000000041],[-61.639998999999932,56.883881000000031],[-61.645003999999915,56.878326000000129],[-61.648337999999967,56.873046999999929],[-61.650832999999921,56.866936000000067],[-61.65277900000001,56.855826999999977],[-61.65277900000001,56.845543000000134],[-61.65055099999995,56.840828000000101],[-61.646111000000019,56.826942000000088],[-61.646111000000019,56.821106000000043],[-61.650276000000019,56.816666000000055],[-61.661384999999996,56.809433000000013],[-61.676392000000021,56.802773000000002],[-61.782391000000018,56.794441000000006],[-61.799224999999922,56.792937999999992],[-61.816886999999952,56.793610000000001],[-61.823558999999989,56.794441000000006],[-61.834556999999961,56.796108000000117],[-61.844559000000004,56.798943000000008],[-61.892226999999934,56.798607000000118],[-61.906386999999938,56.795273000000122],[-61.908606999999961,56.789162000000033],[-61.902221999999938,56.714156999999943],[-61.899993999999992,56.707214000000135],[-61.897223999999937,56.703049000000135],[-61.889998999999989,56.698044000000095],[-61.886115999999959,56.698044000000095],[-61.877776999999924,56.713051000000121],[-61.87027699999993,56.726936000000023],[-61.833667999999932,56.741993000000093],[-61.830832999999927,56.745327000000088],[-61.824996999999996,56.746826000000112],[-61.811504000000014,56.746826000000112],[-61.793335000000013,56.746826000000112],[-61.780498999999963,56.745658999999989],[-61.772834999999986,56.744160000000136],[-61.76266899999996,56.741325000000074],[-61.716392999999925,56.738045000000113],[-61.702498999999989,56.730820000000051],[-61.696944999999971,56.724709000000132],[-61.701667999999984,56.713325999999938],[-61.71055599999994,56.705551000000071],[-61.721106999999961,56.701103000000103],[-61.734443999999996,56.697212000000036],[-61.75417299999998,56.697487000000024],[-61.765006999999969,56.6988750000001],[-61.773055999999997,56.701103000000103],[-61.798339999999996,56.710823000000005],[-61.808334000000002,56.712212000000136],[-61.821670999999924,56.709717000000126],[-61.825004999999919,56.706657000000064],[-61.821670999999924,56.701660000000004],[-61.799171000000001,56.682770000000005],[-61.792503000000011,56.680824000000143],[-61.732215999999937,56.663322000000107],[-61.681670999999994,56.653603000000089],[-61.674445999999932,56.653046000000018],[-61.658889999999985,56.647774000000084],[-61.649726999999984,56.641662999999994],[-61.649993999999936,56.635268999999994],[-61.658607000000018,56.627487000000031],[-61.672500999999954,56.619986999999924],[-61.680557000000022,56.618050000000096],[-61.688889000000017,56.617210000000057],[-61.699164999999994,56.617767000000129],[-61.835555999999997,56.631660000000124],[-61.911667000000023,56.642769000000044],[-61.992774999999938,56.66027100000008],[-62.010001999999872,56.664153999999996],[-62.066947999999911,56.678604000000121],[-62.311110999999983,56.735550000000046],[-62.479995999999971,56.77388000000002],[-62.498885999999914,56.779716000000064],[-62.504448000000025,56.783607000000131],[-62.505004999999926,56.788886999999988],[-62.501944999999978,56.791939000000127],[-62.486114999999984,56.796104000000128],[-62.468886999999995,56.798607000000118],[-62.326392999999996,56.812767000000008],[-62.227492999999868,56.816666000000055],[-62.18999500000001,56.81332400000008],[-62.138335999999924,56.81082200000003],[-62.068335999999988,56.817214999999976],[-62.059440999999879,56.818603999999993],[-62.051665999999955,56.820549000000142],[-62.042502999999954,56.826942000000088],[-62.043334999999956,56.829994000000056],[-62.049445999999875,56.832496999999989],[-62.066947999999911,56.834434999999928],[-62.234726000000023,56.836937000000034],[-62.381667999999991,56.830276000000083],[-62.478606999999954,56.846657000000107],[-62.488891999999908,56.849434000000031],[-62.498885999999914,56.850548000000003],[-62.508338999999921,56.849998000000141],[-62.517219999999952,56.848045000000013],[-62.53194400000001,56.843605000000025],[-62.543892000000028,56.837212000000022],[-62.546950999999922,56.834717000000012],[-62.570281999999963,56.798607000000118],[-62.57389099999989,56.792770000000132],[-62.538337999999953,56.775551000000064],[-62.503058999999951,56.762214999999912],[-62.356109999999887,56.722214000000122],[-62.162773000000016,56.672768000000076],[-62.02277399999997,56.627487000000031],[-62.005279999999971,56.616936000000123],[-62.117500000000007,56.623046999999985],[-62.175003000000004,56.623877999999991],[-62.235557999999969,56.623604000000057],[-62.241111999999873,56.62332200000003],[-62.239722999999969,56.617210000000057],[-62.224715999999944,56.609161000000029],[-62.192222999999899,56.602493000000038],[-62.105003000000011,56.59693900000002],[-62.046394000000021,56.595825000000048],[-62.036117999999874,56.595267999999976],[-61.901389999999935,56.58776899999998],[-61.729439000000013,56.574440000000095],[-61.715004000000022,56.572220000000073],[-61.70805399999989,56.568886000000077],[-61.701110999999969,56.560822000000087],[-61.690833999999995,56.548050000000046],[-61.666663999999969,56.540549999999996],[-61.658332999999971,56.537498000000085],[-61.655273000000022,56.533882000000006],[-61.653327999999931,56.53054800000001],[-61.652221999999995,56.526100000000042],[-61.653327999999931,56.520546000000081],[-61.656661999999926,56.510826000000009],[-61.662216000000001,56.506104000000107],[-61.680282999999974,56.496658000000139],[-61.689163000000008,56.494713000000104],[-61.754723000000013,56.484993000000031],[-61.773055999999997,56.484718000000044],[-61.80388599999992,56.487770000000125],[-61.878052000000025,56.497772000000111],[-61.951942000000031,56.505554000000075],[-62.038612000000001,56.505271999999991],[-62.046950999999922,56.50471500000009],[-62.05471799999998,56.502495000000067],[-62.061667999999997,56.499435000000005],[-62.075561999999934,56.49193600000001],[-62.08306099999993,56.486938000000009],[-62.085273999999913,56.483046999999942],[-62.082222000000002,56.481659000000036],[-62.076667999999984,56.479987999999992],[-62.070838999999978,56.481102000000135],[-62.024170000000026,56.48443600000013],[-61.976386999999988,56.483330000000137],[-61.965278999999896,56.481934000000081],[-61.952224999999999,56.475822000000107],[-61.946945000000028,56.471100000000035],[-61.956164999999942,56.464050000000043],[-61.958831999999973,56.461048000000005],[-61.961333999999965,56.459717000000012],[-61.966003000000001,56.458549000000005],[-61.979835999999978,56.455551000000071],[-61.999724999999955,56.44999700000011],[-62.010284000000013,56.44999700000011],[-62.019996999999989,56.451102999999932],[-62.048888999999974,56.457214000000022],[-62.05972300000002,56.458603000000039],[-62.069999999999993,56.459160000000111],[-62.124999999999886,56.457214000000022],[-62.139998999999932,56.452217000000132],[-62.143058999999994,56.449158000000125],[-62.139167999999927,56.444709999999986],[-62.124999999999886,56.43832400000008],[-62.117500000000007,56.435546999999985],[-62.083327999999995,56.423325000000034],[-62.073059000000001,56.420546999999999],[-61.984726000000023,56.415268000000026],[-61.963717999999972,56.415657000000067],[-61.956889999999987,56.417823999999939],[-61.909720999999934,56.413879000000065],[-61.798057999999912,56.39527099999998],[-61.790840000000003,56.392494000000056],[-61.661384999999996,56.270271000000093],[-61.678332999999952,56.269161000000111],[-61.679169000000002,56.267993999999987],[-61.686835999999971,56.266994000000011],[-61.702834999999993,56.265327000000127],[-61.749999999999943,56.261329999999987],[-61.760665999999958,56.261662000000115],[-61.772166999999968,56.263493000000096],[-61.777167999999961,56.265327000000127],[-61.779671000000008,56.267493999999999],[-61.778335999999967,56.268661000000122],[-61.775001999999972,56.268826000000104],[-61.765166999999963,56.268162000000018],[-61.756667999999934,56.266994000000011],[-61.746001999999919,56.267493999999999],[-61.741000999999926,56.269161000000111],[-61.753616000000022,56.273048000000017],[-61.753059000000007,56.277770999999973],[-61.769996999999933,56.284163999999976],[-61.800835000000006,56.28943600000008],[-61.878608999999926,56.298607000000004],[-61.888610999999969,56.299164000000076],[-62.029723999999987,56.305267000000015],[-62.074447999999961,56.296386999999982],[-62.080001999999979,56.293610000000115],[-62.080832999999984,56.292496000000142],[-62.076110999999912,56.284996000000035],[-62.016395999999986,56.238883999999985],[-62.011672999999917,56.235825000000034],[-62.003890999999953,56.233604000000071],[-61.956947000000014,56.220825000000048],[-61.938331999999946,56.215827999999931],[-61.919448999999986,56.212212000000079],[-61.910278000000005,56.212493999999936],[-61.802054999999939,56.216381000000069],[-61.769889999999975,56.218048000000124],[-61.575004999999976,56.216933999999981],[-61.575561999999991,56.211937000000034],[-61.578612999999905,56.206940000000145],[-61.579726999999991,56.199158000000011],[-61.575279000000023,56.19609800000012],[-61.560279999999921,56.194434999999999],[-61.53583500000002,56.196381000000088],[-61.450553999999954,56.204994000000056],[-61.411941999999954,56.214714000000129],[-61.40444199999996,56.217491000000052],[-61.380279999999914,56.22304500000007],[-61.361670999999944,56.223602000000142],[-61.350837999999953,56.222214000000065],[-61.345550999999944,56.218322999999998],[-61.33083299999987,56.181938000000059],[-61.330284000000006,56.176659000000029],[-61.33555599999994,56.172767999999962],[-61.343329999999924,56.170547000000056],[-61.377220000000023,56.168602000000078],[-61.383613999999909,56.164711000000011],[-61.397223999999881,56.155823000000055],[-61.406104999999911,56.146102999999925],[-61.452498999999932,56.062767000000008],[-61.452224999999999,56.056937999999946],[-61.448607999999979,56.052772999999945],[-61.413886999999932,56.037773000000016],[-61.411384999999882,56.037497999999971],[-61.397498999999982,56.041107000000011],[-61.382773999999927,56.047493000000088],[-61.356391999999971,56.058327000000133],[-61.346663999999919,56.061377999999991],[-61.34027900000001,56.063049000000035],[-61.324721999999952,56.065269000000058],[-61.315552000000025,56.065544000000045],[-61.24361399999998,56.047493000000088],[-61.239722999999969,56.045273000000066],[-61.23750299999989,56.042770000000075],[-61.240554999999972,56.040276000000006],[-61.265838999999971,56.02276599999999],[-61.273613000000012,56.020828000000051],[-61.282500999999968,56.019714000000079],[-61.310279999999977,56.018600000000106],[-61.357223999999974,56.018600000000106],[-61.388610999999912,56.021934999999985],[-61.419167000000016,56.027214000000129],[-61.438605999999993,56.027489000000003],[-61.489997999999957,56.02027099999998],[-61.501395999999943,56.014442000000145],[-61.503890999999896,56.010551000000078],[-61.503615999999965,56.006942999999978],[-61.421943999999996,55.963882000000126],[-61.415001000000018,55.960274000000027],[-61.399170000000026,55.958602999999925],[-61.389998999999989,55.958885000000009],[-61.38138600000002,55.960274000000027],[-61.328055999999947,55.964157000000114],[-61.254722999999956,55.967491000000109],[-61.154442000000017,55.971375000000137],[-61.143616000000009,55.970543000000021],[-61.125556999999958,55.968596999999932],[-61.117774999999938,55.966103000000032],[-61.113616999999977,55.962493999999992],[-61.074448000000018,55.928329000000076],[-61.073891000000003,55.923050000000103],[-61.076667999999984,55.906937000000084],[-61.094111999999939,55.895606999999984],[-61.156386999999995,55.891937000000098],[-61.165276000000006,55.892220000000066],[-61.181670999999994,55.89916199999999],[-61.194999999999993,55.892220000000066],[-61.201667999999984,55.884163000000115],[-61.198607999999922,55.876380999999981],[-61.192771999999934,55.869437999999946],[-61.104445999999939,55.845543000000134],[-61.095275999999899,55.843880000000013],[-61.085274000000027,55.843322999999941],[-61.077224999999999,55.843880000000013],[-61.068061999999998,55.845543000000134],[-61.039665000000014,55.850937000000044],[-61.035999000000004,55.853271000000063],[-61.027168000000017,55.857273000000077],[-60.946105999999986,55.865829000000133],[-60.917220999999927,55.864441000000056],[-60.782500999999968,55.854164000000083],[-60.762221999999952,55.851386999999988],[-60.755561999999998,55.849434000000031],[-60.741669000000002,55.843048000000124],[-60.729720999999927,55.829436999999984],[-60.729163999999969,55.824440000000038],[-60.730826999999977,55.808044000000052],[-60.734443999999996,55.801212000000021],[-60.736941999999999,55.797382000000027],[-60.74222599999996,55.790549999999939],[-60.774719000000005,55.772491000000002],[-60.80777699999993,55.755271999999934],[-60.880554000000018,55.749161000000072],[-60.879439999999988,55.732765000000029],[-60.765006999999969,55.728042999999957],[-60.756393000000003,55.729431000000091],[-60.746947999999975,55.731659000000036],[-60.740279999999984,55.734161000000086],[-60.727218999999877,55.739990000000091],[-60.721663999999976,55.744713000000104],[-60.7016109999999,55.763443000000109],[-60.668891999999971,55.795830000000024],[-60.656386999999938,55.812767000000008],[-60.647223999999937,55.822768999999994],[-60.639998999999989,55.825554000000011],[-60.631667999999991,55.826660000000061],[-60.623885999999914,55.824996999999939],[-60.615279999999927,55.821937999999989],[-60.601943999999946,55.814713000000097],[-60.597777999999892,55.80943300000007],[-60.598052999999993,55.804436000000123],[-60.605835000000013,55.733879000000059],[-60.615836999999999,55.686935000000062],[-60.629722999999899,55.638329000000056],[-60.668059999999969,55.589432000000102],[-60.655555999999933,55.584435000000042],[-60.606109999999944,55.622489999999914],[-60.60222599999986,55.626656000000025],[-60.59027900000001,55.644714000000079],[-60.544167000000016,55.726936000000023],[-60.527221999999881,55.760551000000135],[-60.527495999999985,55.765830999999991],[-60.525557999999933,55.77693899999997],[-60.519446999999957,55.78804800000006],[-60.514449999999954,55.793610000000001],[-60.503059000000007,55.803046999999935],[-60.487777999999878,55.808601000000124],[-60.483611999999994,55.809158000000025],[-60.339995999999985,55.786384999999939],[-60.334998999999982,55.784439000000077],[-60.328888000000006,55.781661999999983],[-60.327224999999885,55.772766000000047],[-60.329444999999964,55.761383000000023],[-60.337775999999963,55.748604],[-60.380553999999961,55.691933000000063],[-60.406386999999995,55.674713000000054],[-60.463218999999924,55.666046000000108],[-60.472720999999979,55.663212000000101],[-60.493889000000024,55.658043000000134],[-60.499999999999943,55.654160000000047],[-60.50389100000001,55.648330999999985],[-60.525001999999972,55.610550000000046],[-60.531112999999948,55.597214000000065],[-60.532218999999884,55.591660000000104],[-60.531859999999938,55.588195999999982],[-60.515006999999969,55.599715999999944],[-60.506110999999919,55.611664000000019],[-60.495002999999997,55.621101000000124],[-60.481383999999991,55.627769000000114],[-60.440334000000007,55.620216000000084],[-60.426167000000021,55.618217000000072],[-60.420334000000025,55.616379000000052],[-60.415501000000006,55.61454800000007],[-60.322776999999917,55.578330999999991],[-60.31639100000001,55.573883000000023],[-60.31639100000001,55.57027400000004],[-60.319449999999961,55.530823000000055],[-60.321670999999981,55.509995000000004],[-60.426318999999978,55.448204000000089],[-60.442210999999986,55.427696000000026],[-60.437774999999988,55.399437000000091],[-60.478332999999907,55.347488000000055],[-60.472771000000023,55.347771000000023],[-60.451392999999939,55.357216000000108],[-60.42610899999994,55.376656000000082],[-60.420837000000006,55.382210000000043],[-60.418335000000013,55.386107999999979],[-60.415275999999949,55.394714000000079],[-60.417777999999942,55.402771000000087],[-60.422501000000011,55.407211000000075],[-60.425003000000004,55.411377000000016],[-60.423614999999984,55.421378999999945],[-60.418335000000013,55.427490000000034],[-60.413054999999986,55.431664000000069],[-60.349167000000023,55.475822000000107],[-60.331673000000023,55.486655999999982],[-60.319449999999961,55.491378999999995],[-60.268607999999972,55.502495000000124],[-60.253890999999953,55.503052000000025],[-60.213889999999992,55.489433000000076],[-60.203613000000018,55.483604000000071],[-60.201667999999984,55.478600000000085],[-60.195548999999971,55.431381000000101],[-60.265839000000028,55.409156999999993],[-60.274169999999913,55.408043000000021],[-60.284171999999955,55.408600000000092],[-60.295279999999934,55.411102000000142],[-60.305274999999881,55.411659000000043],[-60.313332000000003,55.411102000000142],[-60.354720999999927,55.394997000000046],[-60.468886999999938,55.285827999999981],[-60.49888599999997,55.253325999999959],[-60.538054999999929,55.200546000000145],[-60.499999999999943,55.218047999999953],[-60.488892000000021,55.227210999999954],[-60.482215999999994,55.231658999999922],[-60.476386999999988,55.2347180000001],[-60.468329999999924,55.237495000000024],[-60.37388599999997,55.260551000000021],[-60.365836999999942,55.260826000000066],[-60.355277999999998,55.259437999999989],[-60.348610000000008,55.255829000000119],[-60.348052999999936,55.250549000000092],[-60.353057999999976,55.244995000000074],[-60.512222000000008,55.120543999999938],[-60.587776000000019,55.088599999999929],[-60.616660999999965,55.077217000000132],[-60.636116000000015,55.066665999999998],[-60.670554999999979,55.044715999999994],[-60.681113999999923,55.004715000000033],[-60.683326999999906,54.994995000000131],[-60.592773000000022,55.058884000000091],[-60.475273000000016,55.124435000000005],[-60.266395999999986,55.240547000000106],[-60.259170999999924,55.244155999999919],[-60.252501999999993,55.246384000000091],[-60.176108999999997,55.270827999999995],[-60.079781000000025,55.249602999999979],[-60.073776000000009,55.247940000000028],[-60.072776999999974,55.245106000000021],[-60.110778999999923,55.199268000000075],[-60.123610999999926,55.156380000000127],[-60.146392999999932,55.137214999999969],[-60.157218999999941,55.128601000000117],[-60.187217999999973,55.108046999999999],[-60.204445000000021,55.107498000000021],[-60.212776000000019,55.108604000000071],[-60.220551,55.106384000000048],[-60.282776000000013,55.057770000000062],[-60.288337999999953,55.053321999999923],[-60.295006000000001,55.041382000000056],[-60.296950999999922,55.03443900000002],[-60.296668999999952,55.024993999999992],[-60.293892000000028,55.019440000000145],[-60.284171999999955,55.024437000000091],[-60.152495999999985,55.102776000000119],[-60.124442999999928,55.120270000000005],[-60.09944200000001,55.136658000000068],[-60.088332999999921,55.145827999999938],[-60.083884999999952,55.152214000000072],[-60.051223999999934,55.182381000000134],[-60.04571900000002,55.193046999999979],[-60.044723999999917,55.196711999999991],[-60.042721000000029,55.199883],[-60.039718999999877,55.203213000000005],[-60.036057000000028,55.206383000000073],[-60.021888999999987,55.218547999999942],[-60.015223999999989,55.221546000000046],[-60.009224000000017,55.221214000000089],[-59.964721999999938,55.235549999999989],[-59.939437999999939,55.233047000000056],[-59.922774999999945,55.233047000000056],[-59.916945999999939,55.233879000000115],[-59.912497999999971,55.238883999999985],[-59.890838999999971,55.265549000000021],[-59.868332000000009,55.291381999999999],[-59.863891999999964,55.296104000000071],[-59.851394999999968,55.303047000000049],[-59.80750299999994,55.324164999999937],[-59.795279999999991,55.327492000000063],[-59.779167000000029,55.329720000000066],[-59.776108000000022,55.329162999999937],[-59.715003999999965,55.276099999999929],[-59.711945000000014,55.269714000000022],[-59.713332999999977,55.256103999999993],[-59.729439000000013,55.205269000000101],[-59.732497999999964,55.197211999999979],[-59.735832000000016,55.194153000000142],[-59.742774999999938,55.191376000000048],[-59.831389999999999,55.162491000000045],[-59.847495999999978,55.158043000000077],[-59.863891999999964,55.154160000000104],[-59.897781000000009,55.151382000000126],[-59.918334999999956,55.155265999999983],[-59.94027699999998,55.162766000000033],[-59.950553999999897,55.164436000000023],[-59.962775999999963,55.161102000000028],[-59.967215999999951,55.158599999999979],[-59.970832999999914,55.15554800000001],[-59.973327999999867,55.147491000000059],[-59.968055999999933,55.119156000000032],[-59.963615000000004,55.110275000000115],[-59.80083499999995,55.108887000000038],[-59.795279999999991,55.109160999999972],[-59.615836999999999,55.13638300000008],[-59.57028200000002,55.159988000000055],[-59.531386999999995,55.181380999999988],[-59.487777999999992,55.181380999999988],[-59.430557000000022,55.151931999999988],[-59.428336999999999,55.149719000000005],[-59.427223000000026,55.139992000000063],[-59.427779999999927,55.135826000000009],[-59.431945999999925,55.129433000000006],[-59.438605999999936,55.123604],[-59.49610899999999,55.078331000000105],[-59.539169000000015,55.049163999999962],[-59.593886999999995,55.020828000000051],[-59.610831999999959,55.012771999999984],[-59.716659999999933,54.955826000000059],[-59.802165999999943,54.887268000000006],[-59.823996999999963,54.851105000000132],[-59.939163000000008,54.758888000000013],[-59.944160000000011,54.755554000000018],[-59.945549000000028,54.753052000000139],[-59.944160000000011,54.749718000000144],[-59.938605999999936,54.746383999999978],[-59.919166999999959,54.741379000000109],[-59.90943900000002,54.740829000000076],[-59.888610999999855,54.743324000000143],[-59.882499999999936,54.744995000000017],[-59.797500999999954,54.781661999999983],[-59.791114999999991,54.78555300000005],[-59.788612000000001,54.789436000000023],[-59.790282999999874,54.794158999999979],[-59.79099999999994,54.822658999999987],[-59.794166999999959,54.828159000000142],[-59.79466599999995,54.830994000000032],[-59.793830999999898,54.839992999999993],[-59.79099999999994,54.846825000000024],[-59.784339999999929,54.857658000000015],[-59.772002999999927,54.869492000000037],[-59.754722999999899,54.897491000000116],[-59.729995999999971,54.907493999999986],[-59.703888000000006,54.910545000000013],[-59.688888999999961,54.913605000000075],[-59.674445999999989,54.919990999999982],[-59.618331999999953,54.948600999999996],[-59.411110000000008,55.056381000000101],[-59.293891999999971,55.169716000000108],[-59.165275999999949,55.234993000000088],[-59.161384999999996,55.236938000000123],[-59.154716000000008,55.235549999999989],[-59.144164999999987,55.228043000000071],[-59.139442000000031,55.223877000000016],[-59.131110999999919,55.215546000000074],[-59.127494999999954,55.205826000000002],[-59.124999999999943,55.196380999999917],[-59.124442999999872,55.186103999999943],[-59.149440999999911,55.16182699999996],[-59.15060799999992,55.158992999999953],[-59.155276999999955,55.152156999999931],[-59.161277999999982,55.146823999999924],[-59.168609999999944,55.141827000000035],[-59.176608999999985,55.137989000000061],[-59.205276000000026,55.13116100000002],[-59.20911000000001,55.129822000000047],[-59.240279999999927,55.111382000000049],[-59.25278499999996,55.102492999999981],[-59.363335000000006,55.015830999999991],[-59.37471800000003,55.006386000000077],[-59.383056999999951,54.998047000000042],[-59.386390999999946,54.993049999999982],[-59.391113000000018,54.982208000000128],[-59.391387999999949,54.980270000000019],[-59.388610999999969,54.97665400000011],[-59.384170999999924,54.973319999999944],[-59.37471800000003,54.972763000000043],[-59.369164000000012,54.975266000000033],[-59.275001999999915,55.021659999999997],[-59.262504999999862,55.028327999999988],[-59.250838999999985,55.035828000000038],[-59.237220999999977,55.048332000000073],[-59.242500000000007,55.061104000000057],[-59.243057000000022,55.06638300000003],[-59.240836999999999,55.071106000000043],[-59.236663999999962,55.07749200000012],[-59.133330999999941,55.120491000000015],[-59.051666000000012,55.153320000000065],[-59.035277999999892,55.156937000000028],[-59.023613000000012,55.15665400000006],[-58.960555999999883,55.134995000000004],[-58.956107999999915,55.130271999999991],[-58.955832999999984,55.126381000000094],[-58.955832999999984,55.10083000000003],[-58.958336000000031,55.09165999999999],[-58.961670000000026,55.085265999999933],[-58.971106999999961,55.071106000000043],[-58.980277999999998,55.059990000000084],[-59.005561999999998,55.032767999999976],[-59.001944999999978,55.017769000000101],[-58.972495999999978,54.995544000000052],[-58.947220000000016,54.985550000000046],[-58.907218999999941,54.963882000000126],[-58.896950000000004,54.95638300000013],[-58.894164999999873,54.952773999999977],[-58.895279000000016,54.947769000000108],[-58.90055099999995,54.943878000000041],[-58.90694400000001,54.940269000000001],[-58.964721999999881,54.917496000000142],[-59.013061999999991,54.896103000000039],[-59.015556000000004,54.892220000000066],[-59.013618000000008,54.889717000000132],[-58.904167000000029,54.844711000000075],[-58.838332999999977,54.832497000000046],[-58.832503999999972,54.831940000000145],[-58.824172999999973,54.834434999999985],[-58.694442999999978,54.820549000000028],[-58.685271999999941,54.815543999999989],[-58.560828999999956,54.776100000000042],[-58.443610999999919,54.77388000000002],[-58.398887999999943,54.78472099999999],[-58.391944999999964,54.787498000000085],[-58.379997000000003,54.789993000000095],[-58.328056000000004,54.792496000000085],[-58.243331999999953,54.794716000000051],[-58.196663000000001,54.795272999999952],[-58.191108999999983,54.794158999999979],[-58.188332000000003,54.792496000000085],[-58.18721800000003,54.788605000000018],[-58.188605999999936,54.783051],[-58.19388600000002,54.777771000000087],[-58.196944999999971,54.773322999999948],[-58.198607999999979,54.767768999999987],[-58.184166000000005,54.751662999999951],[-58.173332000000016,54.745544000000109],[-58.145554000000004,54.739716000000044],[-58.110001000000011,54.737213000000054],[-58.001395999999943,54.73333000000008],[-57.945548999999971,54.739989999999977],[-57.935554999999965,54.741104000000121],[-57.910552999999936,54.74193600000001],[-57.855002999999954,54.737495000000081],[-57.847495999999921,54.735550000000103],[-57.842498999999918,54.731377000000009],[-57.831947000000014,54.71776600000004],[-57.789725999999916,54.68221299999999],[-57.78556100000003,54.679161000000079],[-57.713057999999933,54.643051000000128],[-57.700835999999981,54.637215000000083],[-57.693610999999976,54.634720000000073],[-57.676392000000021,54.630272000000105],[-57.660278000000005,54.628043999999932],[-57.642226999999991,54.628043999999932],[-57.626388999999961,54.629990000000021],[-57.577781999999956,54.638885000000073],[-57.574172999999973,54.640274000000034],[-57.569725000000005,54.644440000000145],[-57.567223000000013,54.648331000000042],[-57.559165999999948,54.655822999999998],[-57.545836999999949,54.661659000000043],[-57.539168999999902,54.662209000000075],[-57.456389999999999,54.650826000000052],[-57.450553999999954,54.649993999999936],[-57.444716999999969,54.647217000000069],[-57.355834999999956,54.590271000000087],[-57.352782999999874,54.587493999999992],[-57.347495999999921,54.579437000000041],[-57.346947,54.574714999999969],[-57.348610000000008,54.566940000000045],[-57.380828999999949,54.507499999999993],[-57.385276999999917,54.503326000000129],[-57.396949999999947,54.495827000000133],[-57.427222999999969,54.487770000000012],[-57.484726000000023,54.482491000000039],[-57.493057000000022,54.483330000000137],[-57.519447000000014,54.483879000000115],[-57.590836000000024,54.484160999999972],[-57.618056999999965,54.483604000000071],[-57.672774999999888,54.479988000000048],[-57.694999999999993,54.475548000000003],[-57.702224999999942,54.47304500000007],[-57.704169999999976,54.470543000000134],[-57.705275999999969,54.466933999999981],[-57.700554000000011,54.45915999999994],[-57.686942999999928,54.458885000000123],[-57.658332999999971,54.463051000000007],[-57.587775999999963,54.467208999999968],[-57.487777999999935,54.47304500000007],[-57.47222099999999,54.473602000000142],[-57.449996999999939,54.467491000000052],[-57.442497000000003,54.464996000000042],[-57.425277999999992,54.45915999999994],[-57.421111999999994,54.455826000000002],[-57.421669000000009,54.453605999999979],[-57.523330999999985,54.417213000000061],[-57.621666000000005,54.383605999999929],[-57.629439999999988,54.381660000000068],[-57.660827999999924,54.376937999999996],[-57.678336999999999,54.375267000000122],[-57.695273999999927,54.374992000000077],[-57.715552999999943,54.376937999999996],[-57.743056999999965,54.380821000000083],[-57.783332999999971,54.388329000000113],[-57.797226000000023,54.38888500000013],[-57.876105999999936,54.386658000000068],[-57.910278000000005,54.385269000000051],[-58.050277999999878,54.377487000000087],[-58.146392999999989,54.365273000000059],[-58.154166999999973,54.363327000000027],[-58.172501000000011,54.357498000000021],[-58.185271999999941,54.351661999999919],[-58.248055000000022,54.320274000000097],[-58.259726999999998,54.312766999999951],[-58.261947999999961,54.311104000000057],[-58.259170999999981,54.30971500000004],[-58.253333999999995,54.308884000000035],[-58.221107000000018,54.311661000000129],[-58.197495000000004,54.31638300000003],[-58.108337000000006,54.328049000000021],[-58.098609999999951,54.327217000000076],[-58.095832999999971,54.325828999999999],[-58.233886999999982,54.254166000000055],[-58.24722300000002,54.252777000000037],[-58.344161999999926,54.244438000000002],[-58.383056999999894,54.241104000000007],[-58.410278000000005,54.241661000000136],[-58.417220999999984,54.242493000000024],[-58.431388999999967,54.242218000000037],[-58.453888000000006,54.23721299999994],[-58.566108999999926,54.204163000000108],[-58.579169999999976,54.199996999999996],[-58.601394999999968,54.186104],[-58.611945999999989,54.178329000000076],[-58.628882999999973,54.169716000000108],[-58.6444469999999,54.165267999999969],[-58.692771999999991,54.151657],[-58.724715999999944,54.145271000000093],[-58.756949999999961,54.141106000000093],[-58.771110999999962,54.13999200000012],[-58.797782999999981,54.139717000000076],[-58.833611000000019,54.145827999999995],[-58.842773000000022,54.145827999999995],[-58.860001000000011,54.144714000000022],[-58.915276000000006,54.138603000000103],[-58.928336999999942,54.13638300000008],[-59.114165999999955,54.103881999999999],[-59.190551999999968,54.087212000000079],[-59.248336999999992,54.071937999999989],[-59.27944199999996,54.064438000000109],[-59.376105999999993,54.046943999999996],[-59.434440999999936,54.0472180000001],[-59.470275999999956,54.051659000000029],[-59.510001999999929,54.059433000000013],[-59.534446999999943,54.05832700000002],[-59.561385999999914,54.05332199999998],[-59.575561999999991,54.049438000000123],[-59.582221999999945,54.046387000000095],[-59.586945000000014,54.0430530000001],[-59.588608000000022,54.040549999999939],[-59.584723999999994,54.035271000000137],[-59.517220000000009,53.997214999999983],[-59.509726999999998,53.995544000000109],[-59.494445999999982,53.996383999999978],[-59.265839000000028,54.023048000000074],[-59.049445999999932,54.057495000000074],[-58.877220000000023,54.094993999999986],[-58.703055999999947,54.124161000000129],[-58.431113999999923,54.217209000000025],[-58.426392000000021,54.221931000000097],[-58.417502999999954,54.228043000000071],[-58.406386999999938,54.229713000000061],[-58.379439999999931,54.229988000000105],[-58.371940999999936,54.228043000000071],[-58.374442999999928,54.224434000000088],[-58.449722000000008,54.154434000000094],[-58.605003000000011,54.044158999999979],[-58.610282999999981,54.041663999999912],[-58.632499999999936,54.035271000000137],[-58.654998999999975,54.031661999999983],[-58.678054999999915,54.029160000000104],[-58.704445000000021,54.027214000000015],[-58.721663999999919,54.027489000000003],[-58.749167999999997,54.031105000000082],[-58.759170999999981,54.032767999999976],[-58.768058999999937,54.034995999999978],[-58.779723999999931,54.037773000000072],[-58.80750299999994,54.043327000000033],[-58.835830999999928,54.0472180000001],[-58.879997000000003,54.044998000000078],[-58.937499999999943,54.041663999999912],[-59.002501999999936,54.032494000000042],[-59.038611999999944,54.02693899999997],[-59.041388999999981,54.026100000000042],[-59.042777999999942,54.022766000000047],[-59.040557999999862,54.021751000000052],[-59.006950000000018,54.018051000000014],[-58.951942000000031,54.014717000000019],[-58.944159999999954,54.01527400000009],[-58.92583499999995,54.014717000000019],[-58.922500999999954,54.013885000000073],[-58.919448999999929,54.010826000000122],[-58.923057999999969,54.007216999999969],[-58.954169999999976,53.983879000000002],[-58.963057999999933,53.977767999999969],[-58.980826999999977,53.966385000000116],[-59.008338999999921,53.955268999999987],[-59.015838999999971,53.953323000000125],[-59.047782999999981,53.948326000000009],[-59.072226999999941,53.947487000000024],[-59.115279999999871,53.946381000000031],[-59.12222300000002,53.945267000000058],[-59.172774999999945,53.934990000000028],[-59.201392999999996,53.927489999999977],[-59.331946999999957,53.888329000000056],[-59.345551,53.883049000000142],[-59.363891999999908,53.872215000000097],[-59.369445999999982,53.867493000000024],[-59.393616000000009,53.8555530000001],[-59.43638599999997,53.837493999999992],[-59.463332999999977,53.830551000000014],[-59.480277999999998,53.82777400000009],[-59.527221999999995,53.822495000000117],[-59.543892000000028,53.8211060000001],[-59.596107000000018,53.819160000000011],[-59.62388599999997,53.82027400000004],[-59.635833999999988,53.820831000000112],[-59.698607999999979,53.829437000000041],[-59.716659999999933,53.831939999999975],[-59.728049999999996,53.835266000000047],[-59.755561999999941,53.838600000000042],[-59.798339999999939,53.843322999999998],[-59.807776999999874,53.84388000000007],[-59.825835999999981,53.842766000000097],[-59.852782999999988,53.839432000000102],[-59.872498000000007,53.833603000000096],[-59.877219999999966,53.83027600000014],[-59.880553999999961,53.825272000000041],[-59.989165999999955,53.779716000000121],[-60.082779000000016,53.762497000000053],[-60.121108999999933,53.625267000000065],[-60.11999499999996,53.611381999999992],[-60.11361699999992,53.602493000000095],[-60.110000999999954,53.598877000000073],[-60.105002999999954,53.594711000000132],[-60.087501999999915,53.583602999999982],[-60.068061999999998,53.573326000000009],[-60.064444999999978,53.569716999999969],[-60.063332000000003,53.565826000000072],[-60.064444999999978,53.560272000000111],[-60.069724999999949,53.555550000000039],[-60.075004999999919,53.553047000000049],[-60.133888000000013,53.528328000000101],[-60.138335999999981,53.528603000000089],[-60.347495999999978,53.626938000000109],[-60.358611999999994,53.634438000000046],[-60.361670999999944,53.639717000000019],[-60.364448999999979,53.648331000000042],[-60.368056999999965,53.652771000000087],[-60.382499999999936,53.662490999999989],[-60.390556000000004,53.665543000000071],[-60.503059000000007,53.705826000000116],[-60.511115999999959,53.708327999999995],[-60.560279999999977,53.718323000000112],[-60.648613000000012,53.737376999999981],[-60.670612000000006,53.740047000000061],[-60.705115999999975,53.744881000000021],[-60.75894900000003,53.761718999999971],[-60.769943000000012,53.765381000000104],[-60.856948999999986,53.792770000000019],[-60.887222000000008,53.751389000000074],[-60.880279999999914,53.713051000000007],[-60.834723999999937,53.721375000000023],[-60.757724999999994,53.713768000000016],[-60.747222999999963,53.71276499999999],[-60.654891999999961,53.698768999999913],[-60.644225999999946,53.696937999999989],[-60.537223999999924,53.678329000000019],[-60.511947999999961,53.669716000000051],[-60.446563999999967,53.644852000000128],[-60.431670999999994,53.639160000000118],[-60.360282999999981,53.606658999999979],[-60.354445999999996,53.603882000000112],[-60.342223999999931,53.596099999999979],[-60.334166999999979,53.589156999999943],[-60.323333999999988,53.581665000000044],[-60.298614999999927,53.568054000000075],[-60.278884999999946,53.558601000000067],[-60.253616000000022,53.549995000000138],[-60.103614999999934,53.500549000000092],[-60.106392000000028,53.457497000000046],[-60.123328999999956,53.456100000000106],[-60.138054000000011,53.453605999999979],[-60.202224999999999,53.433600999999953],[-60.40582999999998,53.364158999999972],[-60.413329999999974,53.357773000000009],[-60.412216000000001,53.349716000000058],[-60.404998999999975,53.334160000000111],[-60.395835999999974,53.331383000000017],[-60.391113000000018,53.331107999999972],[-60.301392000000021,53.336380000000133],[-60.230826999999977,53.343323000000112],[-60.216109999999901,53.345824999999991],[-60.203888000000006,53.349716000000058],[-60.198607999999865,53.350548000000003],[-60.188605999999993,53.350548000000003],[-60.18332700000002,53.349433999999974],[-60.176665999999898,53.346382000000062],[-60.175002999999947,53.343048000000067],[-60.174720999999977,53.338043000000027],[-60.180831999999896,53.329993999999999],[-60.190833999999938,53.321937999999932],[-60.202224999999999,53.313605999999936],[-60.208892999999989,53.310546999999985],[-60.283332999999914,53.289436000000137],[-60.295836999999949,53.286659000000043],[-60.333885000000009,53.280548000000124],[-60.367217999999923,53.27777100000003],[-60.389724999999999,53.27693899999997],[-60.418335000000013,53.269440000000145],[-60.416663999999969,53.268326000000002],[-60.398055999999997,53.265549000000078],[-60.316108999999926,53.264160000000061],[-60.289444000000003,53.263885000000073],[-60.133613999999966,53.283607000000131],[-60.024719000000005,53.354996000000142],[-59.953887999999949,53.406937000000028],[-59.931945999999925,53.42582700000014],[-59.84194199999996,53.476379000000065],[-59.821670999999981,53.471656999999993],[-59.806106999999997,53.471100000000092],[-59.798057999999969,53.472214000000065],[-59.789168999999958,53.474434000000088],[-59.785003999999958,53.477210999999954],[-59.783614999999998,53.481102000000021],[-59.78472899999997,53.485268000000133],[-59.799170999999944,53.491378999999995],[-59.823615999999959,53.49332400000003],[-59.858611999999994,53.496101000000124],[-59.89916999999997,53.516936999999928],[-59.901108000000022,53.519714000000022],[-59.898337999999967,53.52416199999999],[-59.893058999999994,53.528603000000089],[-59.875556999999958,53.534996000000035],[-59.855835000000013,53.536942000000124],[-59.847495999999978,53.536658999999986],[-59.80999799999995,53.529716000000008],[-59.773613000000012,53.517769000000044],[-59.763061999999934,53.515274000000034],[-59.755561999999941,53.514998999999989],[-59.740279999999984,53.515831000000105],[-59.621108999999933,53.527214000000129],[-59.605834999999956,53.529716000000008],[-59.560829000000012,53.540550000000053],[-59.53082999999998,53.548882000000049],[-59.517501999999979,53.553878999999938],[-59.478333000000021,53.572769000000108],[-59.329726999999991,53.65387700000008],[-59.162216000000001,53.671379000000115],[-59.079726999999934,53.680550000000096],[-59.074172999999917,53.683051999999975],[-59.023887999999999,53.713882000000012],[-59.01916499999993,53.719154000000117],[-59.010833999999932,53.744438000000116],[-59.010559000000001,53.746658000000139],[-59.018889999999999,53.749161000000129],[-59.035003999999958,53.74721500000004],[-59.041388999999981,53.748604],[-59.046111999999937,53.75277699999998],[-59.06527699999998,53.791107000000068],[-59.066390999999896,53.794998000000135],[-59.058334000000002,53.803322000000037],[-59.049445999999932,53.810822000000087],[-59.042777999999942,53.81499500000001],[-58.870276999999987,53.904709000000139],[-58.550277999999935,54.009163000000001],[-58.326110999999969,54.046271999999988],[-58.216942000000017,54.071770000000129],[-58.204612999999995,54.074604000000136],[-58.19377499999996,54.075939000000062],[-58.180446999999958,54.075436000000025],[-58.156780000000026,54.071434000000011],[-58.15060799999992,54.069438999999988],[-58.028610000000015,54.079720000000123],[-57.951942000000031,54.070831000000055],[-57.938605999999993,54.070273999999984],[-57.815552000000025,54.066101000000003],[-57.797501000000011,54.066101000000003],[-57.789443999999946,54.068603999999993],[-57.786391999999921,54.071662999999944],[-57.786117999999988,54.075271999999984],[-57.789443999999946,54.079720000000123],[-57.805556999999908,54.086654999999951],[-57.851668999999958,54.100273000000016],[-57.869720000000029,54.103050000000053],[-58.07650000000001,54.124489000000096],[-58.152495999999928,54.129158000000018],[-58.167163999999957,54.127827000000025],[-58.181503000000021,54.124660000000006],[-58.195830999999998,54.120159000000115],[-58.210834999999918,54.113995000000102],[-58.214668000000017,54.111828000000003],[-58.216994999999997,54.110493000000076],[-58.223000000000013,54.103992000000062],[-58.226832999999942,54.101826000000074],[-58.229831999999931,54.100822000000107],[-58.236834999999928,54.099327000000073],[-58.245166999999981,54.099158999999986],[-58.254332999999974,54.101322000000096],[-58.415276000000006,54.135269000000108],[-58.4183349999999,54.139717000000076],[-58.417220999999984,54.143051000000071],[-58.383613999999966,54.189712999999983],[-58.379439999999931,54.193877999999984],[-58.373885999999914,54.198326000000122],[-58.367500000000007,54.201934999999935],[-58.355559999999912,54.20638300000013],[-58.203613000000018,54.234161000000029],[-58.177779999999984,54.236938000000123],[-58.030829999999924,54.235550000000046],[-58.003058999999951,54.233879000000002],[-57.99361399999998,54.230819999999994],[-57.973609999999951,54.221656999999993],[-57.961112999999898,54.217766000000097],[-57.935271999999998,54.211662000000103],[-57.866660999999965,54.197769000000051],[-57.856392000000028,54.196098000000006],[-57.659163999999919,54.199432000000002],[-57.468329999999924,54.193877999999984],[-57.428336999999885,54.18249499999996],[-57.384170999999981,54.150543000000027],[-57.385559000000001,54.145827999999995],[-57.389998999999989,54.141106000000093],[-57.383613999999966,54.128875999999991],[-57.370833999999945,54.106384000000048],[-57.367774999999995,54.10193600000008],[-57.323333999999988,54.039719000000105],[-57.221106999999961,53.918326999999977],[-57.115279999999984,53.838600000000042],[-57.092773000000022,53.831664999999987],[-57.083611000000019,53.828605999999979],[-57.079726999999991,53.826660000000118],[-57.076392999999996,53.823051000000078],[-57.077498999999932,53.819442999999978],[-57.151389999999992,53.735824999999977],[-57.302498000000014,53.679161000000079],[-57.314720000000023,53.676383999999985],[-57.387504999999976,53.658325000000048],[-57.429169000000002,53.647491000000002],[-57.484169000000009,53.631660000000011],[-57.49111199999993,53.628876000000048],[-57.52305599999994,53.612495000000081],[-57.538894999999968,53.602218999999991],[-57.544448999999986,53.597771000000023],[-57.549995000000024,53.591934000000037],[-57.550551999999982,53.587494000000049],[-57.545279999999991,53.584717000000126],[-57.541114999999991,53.585266000000104],[-57.533332999999914,53.587494000000049],[-57.52777900000001,53.591377000000136],[-57.49361399999998,53.609436000000073],[-57.479720999999984,53.61332700000014],[-57.458054000000004,53.617493000000081],[-57.444716999999969,53.618599000000074],[-57.373610999999926,53.606658999999979],[-57.316665999999998,53.579720000000009],[-57.313613999999973,53.573608000000036],[-57.303054999999915,53.530823000000112],[-57.302498000000014,53.526382000000012],[-57.303329000000019,53.509437999999932],[-57.305557000000022,53.49971800000003],[-57.306664000000012,53.496384000000091],[-57.317779999999971,53.47554800000006],[-57.328887999999949,53.461937000000091],[-57.332503999999915,53.458328000000051],[-57.345832999999914,53.450546000000088],[-57.336945000000014,53.440269000000114],[-57.316390999999953,53.435822000000087],[-57.303329000000019,53.43332700000002],[-57.297501000000011,53.433052000000032],[-57.289169000000015,53.433875999999998],[-57.283332999999971,53.438598999999954],[-57.293616999999983,53.467766000000097],[-57.285277999999948,53.477485999999999],[-57.281386999999995,53.479430999999977],[-57.248610999999983,53.494156000000089],[-57.23750299999989,53.498604000000057],[-57.130279999999971,53.593880000000127],[-57.111389000000031,53.621658000000082],[-57.06138599999997,53.671379000000115],[-57.014724999999942,53.711380000000133],[-56.973610000000008,53.724434000000031],[-56.959442000000024,53.728325000000098],[-56.926391999999964,53.730270000000075],[-56.916663999999969,53.728600000000085],[-56.860832000000016,53.722488000000112],[-56.797226000000023,53.719986000000063],[-56.660827999999924,53.720543000000134],[-56.62222300000002,53.733604000000071],[-56.628608999999983,53.741936000000067],[-56.628333999999995,53.744156000000032],[-56.626105999999936,53.745827000000133],[-56.603332999999964,53.759163000000058],[-56.483611999999994,53.782494000000099],[-56.464691000000016,53.782272000000034],[-56.448333999999988,53.777771000000143],[-56.431670999999994,53.764442000000031],[-56.426948999999979,53.757216999999969],[-56.413886999999988,53.727768000000026],[-56.414443999999946,53.721931000000041],[-56.415275999999949,53.720543000000134],[-56.421669000000009,53.716933999999924],[-56.429169000000002,53.71527100000003],[-56.438048999999921,53.71527100000003],[-56.446944999999971,53.716933999999924],[-56.482773000000009,53.718048000000124],[-56.506393000000003,53.716933999999924],[-56.521666999999979,53.714714000000129],[-56.544448999999986,53.709717000000012],[-56.662215999999944,53.679993000000024],[-56.680283000000031,53.672768000000133],[-56.627220000000023,53.650826000000052],[-56.618057000000022,53.647491000000002],[-56.340552999999943,53.588325999999938],[-56.320281999999963,53.585266000000104],[-56.225554999999872,53.577217000000076],[-56.21665999999999,53.577217000000076],[-56.205832999999984,53.581665000000044],[-56.15582999999998,53.591660000000104],[-56.078613000000018,53.58387799999997],[-56.069167999999934,53.582771000000037],[-56.031386999999995,53.57638500000013],[-56.027221999999995,53.575272000000041],[-55.991385999999977,53.552216000000044],[-55.978881999999942,53.542221000000097],[-55.990836999999942,53.510277000000087],[-55.996947999999918,53.505272000000048],[-56.008780999999942,53.503666000000067],[-56.01294699999994,53.503993999999977],[-56.017444999999952,53.505996999999979],[-56.018611999999962,53.508495000000096],[-56.021110999999962,53.513054000000011],[-56.022498999999982,53.516388000000006],[-56.047501000000011,53.533607000000075],[-56.063332000000003,53.540833000000021],[-56.145836000000031,53.553047000000049],[-56.208892999999989,53.559433000000126],[-56.242500000000007,53.559990000000028],[-56.258338999999921,53.559158000000139],[-56.264724999999999,53.555550000000039],[-56.266113000000018,53.549995000000138],[-56.263335999999924,53.540276000000119],[-56.259170999999924,53.537773000000129],[-56.145553999999947,53.500000000000114],[-56.115279999999927,53.491936000000123],[-56.077498999999932,53.483330000000024],[-56.037780999999995,53.461655000000007],[-56.027442999999948,53.454326999999978],[-55.965552999999943,53.40915700000005],[-55.965836000000024,53.40554800000001],[-55.96944400000001,53.400542999999971],[-56.00417299999998,53.388045999999974],[-56.025275999999963,53.37971500000009],[-56.03167000000002,53.376099000000011],[-56.03833800000001,53.367493000000138],[-56.029998999999975,53.365273000000116],[-56.020835999999974,53.364158999999972],[-56.013061999999991,53.364440999999999],[-56.001396,53.366661000000022],[-55.988051999999982,53.369713000000104],[-55.981383999999935,53.373047000000099],[-55.969497999999874,53.380775000000028],[-55.959723999999937,53.390273999999977],[-55.953132999999923,53.392441000000019],[-55.938605999999936,53.395271000000037],[-55.925116999999943,53.396133000000134],[-55.912216000000001,53.394997000000103],[-55.893616000000009,53.389717000000076],[-55.881385999999964,53.382767000000001],[-55.808051999999975,53.340546000000018],[-55.807456999999943,53.284966000000111],[-55.745834000000002,53.249435000000119],[-55.747498000000007,53.143607999999972],[-55.749442999999985,53.139717000000076],[-55.754172999999923,53.134995000000004],[-55.833312999999919,53.097931000000017],[-55.879856000000018,53.073795000000018],[-55.91194200000001,53.028327999999988],[-55.926666000000012,53.023323000000119],[-55.934440999999936,53.021660000000054],[-55.943329000000006,53.021102999999925],[-55.964447000000007,53.021660000000054],[-55.990836999999942,53.024162000000103],[-56.008338999999978,53.02748900000006],[-56.025001999999972,53.033606999999961],[-56.034172000000012,53.036110000000122],[-56.056106999999997,53.038329999999974],[-56.160278000000005,53.033606999999961],[-56.165833000000021,53.032768000000033],[-56.166945999999996,53.029434000000037],[-56.165276000000006,53.024993999999992],[-56.040840000000003,53.005829000000062],[-55.958611000000019,52.99610100000001],[-55.949439999999981,52.994995000000017],[-55.889442000000031,52.969154000000117],[-55.885276999999974,52.966384999999946],[-55.834166999999979,52.921936000000017],[-55.80471799999998,52.877213000000097],[-55.803328999999962,52.839431999999931],[-55.803885999999977,52.831940000000031],[-55.808051999999975,52.82638500000013],[-55.841109999999958,52.827217000000019],[-55.879165999999941,52.824165000000107],[-55.973610000000008,52.810547000000099],[-55.987777999999992,52.806099000000131],[-56.060829000000012,52.766106000000093],[-55.964721999999938,52.681664000000069],[-55.96055599999994,52.679161000000136],[-55.950553999999897,52.677216000000101],[-55.933608999999933,52.675552000000096],[-55.918335000000013,52.677490000000034],[-55.874717999999973,52.68332700000002],[-55.786948999999993,52.683601000000124],[-55.779167000000029,52.682495000000074],[-55.77305599999994,52.679161000000136],[-55.768889999999942,52.674995000000024],[-55.740836999999999,52.646385000000009],[-55.73860899999994,52.64276899999993],[-55.739998000000014,52.639434999999935],[-55.757506999999919,52.614440999999999],[-55.769447000000014,52.608047000000113],[-55.792777999999998,52.60166200000009],[-55.888892999999996,52.608047000000113],[-55.898613000000012,52.609993000000031],[-55.939940999999976,52.628268999999989],[-55.958777999999995,52.635604999999941],[-56.032775999999956,52.654709000000025],[-56.048889000000031,52.656096999999932],[-56.075004999999919,52.655822999999998],[-56.108611999999937,52.655266000000097],[-56.122771999999941,52.651100000000042],[-56.123885999999857,52.647491000000002],[-56.119720000000029,52.643326000000002],[-56.112007000000006,52.641036999999983],[-56.099060000000009,52.641006000000118],[-56.071945000000028,52.644714000000135],[-56.06361400000003,52.644714000000135],[-56.054442999999992,52.643608000000086],[-55.982773000000009,52.622490000000028],[-55.974998000000028,52.619713000000104],[-55.970832999999914,52.615546999999992],[-55.972770999999966,52.610825000000091],[-55.985275000000001,52.602218999999991],[-56.039169000000015,52.584991000000059],[-56.155777,52.557438000000104],[-56.172611000000018,52.553608000000111],[-56.186110999999983,52.550938000000031],[-56.200779000000011,52.550938000000031],[-56.253058999999951,52.543884000000048],[-56.297500999999954,52.563606000000107],[-56.315552000000025,52.572219999999959],[-56.322501999999986,52.574715000000026],[-56.333327999999995,52.576942000000088],[-56.356391999999971,52.580276000000026],[-56.456389999999942,52.592765999999983],[-56.478607000000011,52.594437000000028],[-56.496871999999939,52.594147000000021],[-56.452782000000013,52.56888600000002],[-56.444160000000011,52.565826000000129],[-56.28055599999999,52.534996000000092],[-56.262221999999952,52.531662000000097],[-56.19755600000002,52.525105000000053],[-56.153556999999921,52.526103999999918],[-55.988892000000021,52.506386000000077],[-55.829726999999934,52.51249700000011],[-55.761390999999946,52.498878000000047],[-55.751395999999943,52.496101000000124],[-55.746947999999975,52.493881000000101],[-55.743057000000022,52.490829000000019],[-55.735001000000011,52.478599999999972],[-55.734169000000009,52.474709000000075],[-55.735832000000016,52.469154000000003],[-55.764450000000011,52.45388000000014],[-55.767501999999922,52.451103000000046],[-55.766395999999986,52.447769000000051],[-55.732772999999952,52.442215000000033],[-55.706107999999915,52.441658000000132],[-55.676666000000012,52.441658000000132],[-55.656661999999983,52.441933000000006],[-55.648612999999955,52.439712999999983],[-55.645554000000004,52.437492000000077],[-55.642775999999969,52.432770000000005],[-55.642775999999969,52.427773000000059],[-55.641669999999976,52.368881000000044],[-55.641944999999964,52.363883999999928],[-55.643332999999984,52.358330000000137],[-55.647780999999952,52.354164000000026],[-55.65444199999996,52.351661999999976],[-55.782501000000025,52.334160000000111],[-55.825004999999976,52.343048000000124],[-55.92861199999993,52.369438000000116],[-56.068335999999931,52.407210999999961],[-56.173614999999984,52.438881000000038],[-56.180556999999965,52.440826000000072],[-56.194442999999922,52.442215000000033],[-56.196945000000028,52.439987000000087],[-56.195273999999984,52.435822000000087],[-56.191382999999973,52.431107000000054],[-56.181388999999967,52.423050000000103],[-56.169448999999986,52.416100000000029],[-55.956664999999987,52.350272999999959],[-55.857779999999991,52.325271999999984],[-55.707222000000002,52.248329000000126],[-55.677222999999969,52.208327999999938],[-55.68638599999997,52.109436000000017],[-55.696945000000028,52.088326000000052],[-55.701667999999927,52.082214000000079],[-55.896666999999923,51.950828999999999],[-56.023330999999985,51.901932000000102],[-56.203330999999935,51.793326999999977],[-56.209723999999994,51.789719000000048],[-56.235832000000016,51.783607000000075],[-56.346663999999976,51.759720000000016],[-56.468886999999995,51.709434999999985],[-56.689720000000023,51.592216000000008],[-56.764450000000011,51.548607000000061],[-56.804169000000002,51.507773999999984],[-56.805832000000009,51.502219999999966],[-56.808891000000017,51.496384000000091],[-56.813613999999973,51.491661000000136],[-56.942771999999991,51.427489999999921],[-56.949721999999952,51.424713000000054],[-56.956947000000014,51.423050000000103],[-57.005561999999941,51.41944100000012],[-57.078056000000004,51.41443600000008],[-57.104239999999947,51.412674000000095],[-57.142226999999991,51.424164000000076],[-57.232215999999937,51.498604000000114],[-57.237777999999992,51.502219999999966],[-57.247222999999963,51.504166000000055],[-57.255561999999998,51.504439999999988],[-57.263617999999894,51.503608999999983],[-57.421386999999925,51.480545000000006],[-57.437774999999988,51.461105000000032],[-57.43638599999997,51.45638300000013],[-57.440833999999938,51.449997000000053],[-57.447495000000004,51.447487000000024],[-57.454720000000009,51.445541000000105],[-57.58666199999999,51.429718000000094],[-57.602225999999916,51.428047000000049],[-57.676665999999955,51.429993000000081],[-57.685828999999956,51.430824000000086],[-57.688605999999936,51.435547000000099],[-57.692497000000003,51.455268999999987],[-57.691939999999931,51.461105000000032],[-57.689437999999939,51.466385000000059],[-57.705275999999969,51.469437000000028],[-57.730826999999863,51.471099999999922],[-57.748054999999965,51.472214000000122],[-57.883888000000013,51.392493999999999],[-57.889998999999989,51.388885000000016],[-57.942771999999991,51.356102000000021],[-57.954720000000009,51.34804500000007],[-57.966110000000015,51.338599999999985],[-57.975554999999986,51.328330999999935],[-57.986664000000019,51.319442999999978],[-58.006950000000018,51.31249200000002],[-58.021384999999952,51.308884000000091],[-58.211387999999943,51.271659999999997],[-58.297225999999966,51.268599999999992],[-58.305556999999965,51.268599999999992],[-58.324448000000018,51.272217000000126],[-58.407776000000013,51.295547000000056],[-58.620551999999975,51.277214000000015],[-58.628051999999968,51.275551000000064],[-58.675003000000004,51.255271999999991],[-58.680000000000007,51.250000000000057],[-58.680556999999908,51.244156000000032],[-58.680000000000007,51.234161000000086],[-58.678336999999999,51.229431000000091],[-58.675559999999905,51.224991000000045],[-58.671111999999937,51.220824999999991],[-58.665549999999996,51.216934000000094],[-58.635833999999932,51.197769000000108],[-58.621383999999978,51.191100999999946],[-58.592223999999931,51.18471500000004],[-58.61333499999995,51.157494000000042],[-58.618606999999997,51.153046000000074],[-58.630554000000018,51.145828000000051],[-58.713615000000004,51.106102000000078],[-58.726944000000003,51.099998000000028],[-58.733329999999967,51.09804500000007],[-58.785278000000005,51.088042999999971],[-58.914718999999991,51.052490000000091],[-58.928054999999972,51.048607000000004],[-58.990836999999885,51.021935000000099],[-59.003333999999938,51.015549000000021],[-59.006110999999976,51.009719999999959],[-59.003616000000022,51.004440000000102],[-58.99888599999997,51.001106000000107],[-58.990279999999984,50.998046999999985],[-58.981383999999935,50.99721500000004],[-58.975272999999959,51.000832000000003],[-58.96832999999998,51.002495000000124],[-58.959441999999967,51.001663000000008],[-58.954720000000009,50.996658000000139],[-58.952498999999989,50.992493000000138],[-58.946662999999944,50.833878000000027],[-58.948051000000021,50.828331000000048],[-59.010559000000001,50.754166000000055],[-59.015282000000013,50.748604000000114],[-59.041672000000005,50.751389000000131],[-59.061385999999914,50.755554000000132],[-59.068335999999988,50.759163000000115],[-59.087218999999948,50.775268999999923],[-59.093055999999933,50.78943600000008],[-59.09444400000001,50.799438000000066],[-59.094718999999941,50.815269000000058],[-59.118889000000024,50.803604000000121],[-59.15582999999998,50.771103000000039],[-59.186385999999914,50.74221799999998],[-59.228881999999999,50.738327000000083],[-59.397223999999994,50.657211000000132],[-59.454444999999964,50.621933000000126],[-59.459723999999937,50.61721],[-59.51916499999993,50.552773000000002],[-59.570556999999951,50.493607000000054],[-59.580001999999922,50.482765000000029],[-59.585274000000027,50.478043000000127],[-59.591667000000029,50.475266000000033],[-59.598610000000008,50.473602000000028],[-59.733611999999937,50.444992000000013],[-59.778336000000024,50.438881000000094],[-59.803885999999977,50.438881000000094],[-59.810555000000022,50.437492000000134],[-59.816108999999926,50.433876000000055],[-59.821670999999981,50.429436000000067],[-59.872222999999963,50.381103999999993],[-59.881667999999934,50.371658000000025],[-59.881667999999934,50.366386000000091],[-59.858893999999964,50.329436999999984],[-59.853888999999924,50.326102999999989],[-59.844718999999998,50.324440000000095],[-59.837775999999963,50.326102999999989],[-59.834723999999881,50.338043000000084],[-59.834998999999982,50.343322999999998],[-59.830832999999984,50.349434000000088],[-59.824722000000008,50.351662000000033],[-59.815001999999993,50.349159000000043],[-59.813331999999946,50.344154000000003],[-59.817223000000013,50.33277099999998],[-59.827498999999989,50.323607999999979],[-59.833885000000009,50.319160000000011],[-59.860282999999981,50.310547000000042],[-59.905273000000022,50.291107000000068],[-60.005004999999983,50.248878000000104],[-60.114448999999922,50.233046999999942],[-60.147781000000009,50.274162000000103],[-60.184440999999993,50.279716000000121],[-60.236945999999989,50.268051000000014],[-60.291671999999949,50.245270000000005],[-60.298614999999927,50.243324000000143],[-60.324447999999961,50.244713000000104],[-60.360001000000011,50.250831999999946],[-60.404442000000017,50.251389000000074],[-60.458892999999989,50.251106000000107],[-60.48332999999991,50.250831999999946],[-60.491668999999945,50.250548999999978],[-60.498610999999926,50.248604],[-60.511672999999973,50.242493000000138],[-60.522223999999881,50.234718000000044],[-60.52694699999995,50.229156000000103],[-60.583611000000019,50.208327999999995],[-60.591666999999973,50.208046000000138],[-60.674445999999989,50.219986000000006],[-60.710555999999997,50.2227630000001],[-60.838607999999965,50.214995999999985],[-61.052222999999969,50.215546000000018],[-61.289443999999946,50.199158000000125],[-61.427779999999984,50.171379000000115],[-61.505561999999941,50.152489000000003],[-61.583610999999905,50.132492000000127],[-61.650832999999921,50.109993000000145],[-61.720832999999914,50.091934000000037],[-61.731612999999982,50.101936000000023],[-61.742106999999976,50.105270000000019],[-61.746277000000021,50.107269000000031],[-61.748280000000022,50.109940000000051],[-61.712104999999951,50.12226899999996],[-61.703780999999992,50.124771000000067],[-61.699443999999971,50.125435000000095],[-61.694442999999922,50.125435000000095],[-61.671386999999982,50.136940000000095],[-61.620551999999918,50.147491000000002],[-61.593055999999876,50.155266000000097],[-61.579726999999991,50.160820000000058],[-61.574447999999904,50.165543000000071],[-61.571945000000028,50.171661000000029],[-61.573891000000003,50.181664000000069],[-61.577224999999999,50.186104000000057],[-61.58916499999998,50.188880999999981],[-61.593612999999948,50.185546999999985],[-61.602225999999916,50.174438000000066],[-61.607779999999991,50.170829999999967],[-61.622222999999963,50.166100000000142],[-61.731833999999935,50.144268000000125],[-61.746997999999905,50.144431999999995],[-61.757503999999983,50.14527099999998],[-61.761832999999967,50.147269999999992],[-61.763663999999949,50.149768999999992],[-61.762999999999977,50.153271000000018],[-61.760665999999958,50.157097000000078],[-61.794448999999986,50.159431000000097],[-61.795279999999991,50.169991000000039],[-61.796950999999979,50.174713000000111],[-61.804442999999992,50.183326999999963],[-61.848884999999996,50.222488000000112],[-61.864723000000026,50.228600000000085],[-61.898338000000024,50.233604000000071],[-61.907218999999941,50.234160999999972],[-61.963332999999977,50.236107000000004],[-61.977218999999991,50.231934000000081],[-61.989723000000026,50.226379000000009],[-61.996666000000005,50.224158999999986],[-62.004172999999923,50.223045000000013],[-62.202498999999989,50.23443600000013],[-62.268889999999999,50.259720000000129],[-62.317779999999971,50.281380000000127],[-62.328056000000004,50.283882000000006],[-62.397498999999982,50.294441000000063],[-62.404167000000029,50.29222100000004],[-62.415549999999939,50.28472099999999],[-62.425560000000019,50.275269000000037],[-62.42999999999995,50.269714000000135],[-62.439994999999954,50.260551000000135],[-62.446105999999986,50.257500000000107],[-62.572226999999941,50.274712000000136],[-62.746947999999918,50.28472099999999],[-63.112502999999947,50.291382000000112],[-63.158332999999971,50.260277000000031],[-63.159163999999976,50.25471500000009],[-63.228607000000011,50.234718000000044],[-63.236663999999962,50.23443600000013],[-63.371940999999993,50.236655999999982],[-63.469443999999953,50.257216999999969],[-63.565552000000025,50.264159999999947],[-63.616660999999908,50.266663000000108],[-63.649726999999928,50.272766000000047],[-63.687499999999886,50.282494000000099],[-63.693885999999964,50.291939000000013],[-63.698607999999979,50.295272999999952],[-63.707503999999972,50.297775000000058],[-63.803328999999906,50.311661000000015],[-63.821388000000013,50.312209999999993],[-63.976104999999961,50.305549999999982],[-64.067229999999995,50.29222100000004],[-64.127776999999924,50.271935000000042],[-64.140563999999927,50.266937000000041],[-64.154175000000009,50.262497000000053],[-64.162215999999944,50.262214999999969],[-64.215285999999935,50.264999000000103],[-64.234726000000023,50.266937000000041],[-64.262787000000003,50.271660000000054],[-64.365279999999984,50.29222100000004],[-64.37388599999997,50.294998000000135],[-64.402221999999995,50.307495000000131],[-64.417770000000019,50.313048999999921],[-64.436661000000015,50.317772000000105],[-64.446105999999986,50.319160000000011],[-64.455001999999922,50.319442999999978],[-64.46305799999999,50.319160000000011],[-64.470839999999953,50.317772000000105],[-64.510009999999966,50.303046999999992],[-64.611938000000009,50.281380000000127],[-64.628052000000025,50.279160000000104],[-64.659438999999963,50.277214000000015],[-64.725006000000008,50.274436999999978],[-64.899993999999936,50.270828000000108],[-65.180557000000022,50.28555300000005],[-65.189986999999917,50.2866590000001],[-65.222777999999948,50.297775000000058],[-65.237503000000004,50.303879000000052],[-65.242492999999854,50.307769999999948],[-65.275009000000011,50.308044000000052],[-65.464447000000007,50.299437999999952],[-65.486663999999962,50.295272999999952],[-65.521666999999979,50.285828000000095],[-65.589995999999985,50.275269000000037],[-65.690552000000025,50.261108000000036],[-65.747771999999998,50.256943000000035],[-65.829453000000001,50.253326000000072],[-65.845839999999953,50.258888000000013],[-65.864440999999999,50.26888300000013],[-65.876389000000017,50.276382000000126],[-65.898055999999883,50.284995999999978],[-65.918059999999969,50.288329999999974],[-65.952498999999932,50.288887000000045],[-65.974166999999966,50.283882000000006],[-65.986937999999896,50.278328000000045],[-65.993057000000022,50.275269000000037],[-66.004180999999903,50.268326000000059],[-66.024718999999948,50.251389000000074],[-66.043334999999956,50.222214000000008],[-66.083327999999995,50.193603999999937],[-66.089721999999881,50.191375999999991],[-66.163329999999974,50.197212000000036],[-66.314163000000008,50.209717000000012],[-66.406386999999938,50.239989999999977],[-66.40695199999999,50.245270000000005],[-66.412215999999944,50.260551000000135],[-66.416945999999996,50.264442000000031],[-66.423049999999932,50.267768999999987],[-66.433318999999983,50.269714000000135],[-66.441665999999941,50.269157000000064],[-66.456389999999999,50.26638800000012],[-66.469727000000034,50.261939999999981],[-66.494720000000029,50.249435000000005],[-66.511948000000018,50.239158999999972],[-66.700835999999924,50.102493000000095],[-66.723327999999924,50.078331000000048],[-66.861937999999896,50.022491000000116],[-66.882492000000013,50.016662999999994],[-66.896118000000001,50.011940000000038],[-66.920273000000009,50.000275000000101],[-66.942489999999907,49.985825000000034],[-66.958617999999944,49.974709000000075],[-66.963622999999984,49.969154000000003],[-66.966399999999965,49.963326000000052],[-66.975280999999995,49.943603999999993],[-66.975829999999974,49.937767000000065],[-66.965560999999923,49.919441000000063],[-66.963332999999977,49.914711000000011],[-67.016402999999855,49.854712999999947],[-67.061385999999857,49.841377000000023],[-67.065276999999924,49.845543000000077],[-67.073897999999929,49.848045000000013],[-67.095839999999896,49.843605000000139],[-67.115829000000019,49.836655000000121],[-67.121658000000025,49.833327999999995],[-67.137222000000008,49.821381000000031],[-67.146666999999979,49.812492000000134],[-67.151397999999915,49.806937999999946],[-67.162216000000001,49.79055000000011],[-67.174164000000019,49.764717000000132],[-67.238892000000021,49.590546000000074],[-67.240828999999962,49.578880000000083],[-67.241378999999995,49.56749700000006],[-67.240828999999962,49.556655999999975],[-67.239990000000034,49.551659000000029],[-67.235000999999954,49.53555300000005],[-67.228881999999999,49.510277000000031],[-67.229171999999949,49.483047000000113],[-67.230834999999956,49.476936000000023],[-67.233886999999982,49.47026800000009],[-67.369155999999975,49.332771000000037],[-67.375,49.327217000000019],[-67.386123999999995,49.322220000000073],[-67.402785999999878,49.3211060000001],[-67.420273000000009,49.321663000000001],[-67.438599000000011,49.324440000000095],[-67.473617999999988,49.326660000000118],[-67.569732999999985,49.329994000000113],[-67.577498999999989,49.329163000000108],[-67.706389999999999,49.312767000000065],[-67.939163000000008,49.287773000000129],[-67.975280999999995,49.284996000000035],[-68.119720000000029,49.271660000000054],[-68.127212999999983,49.269440000000031],[-68.131942999999922,49.266106000000093],[-68.136397999999929,49.260550999999964],[-68.138900999999919,49.25471500000009],[-68.140563999999927,49.248604000000057],[-68.143889999999885,49.23054500000012],[-68.180832000000009,49.12193300000007],[-68.184997999999894,49.116104000000064],[-68.189712999999927,49.112212999999997],[-68.194992000000013,49.10833000000008],[-68.201110999999912,49.105552999999986],[-68.221663999999976,49.100273000000072],[-68.369445999999982,49.069443000000035],[-68.442489999999964,49.095543000000077],[-68.571395999999993,49.061104],[-68.59056099999998,49.054161000000022],[-68.606948999999929,49.042496000000142],[-68.626099000000011,49.023880000000133],[-68.696380999999974,48.939987000000087],[-68.876937999999996,48.85193600000008],[-69.047775000000001,48.773048000000074],[-69.06082200000003,48.767494000000056],[-69.064437999999996,48.762496999999996],[-69.084732000000031,48.72165700000005],[-69.089446999999893,48.709435000000042],[-69.093612999999948,48.691933000000006],[-69.096114999999941,48.674995000000138],[-69.099441999999897,48.663322000000107],[-69.106109999999944,48.644996999999989],[-69.111937999999896,48.63249200000007],[-69.123885999999914,48.614716000000101],[-69.142501999999922,48.594994000000042],[-69.14805599999994,48.591102999999976],[-69.15972899999997,48.58526599999999],[-69.166397000000018,48.583328000000051],[-69.184158000000025,48.584717000000069],[-69.201675000000023,48.588599999999985],[-69.218612999999948,48.589713999999958],[-69.226669000000015,48.588882000000069],[-69.231383999999935,48.585548000000074],[-69.236388999999917,48.581108000000029],[-69.265288999999939,48.541663999999969],[-69.279448999999943,48.515831000000048],[-69.282776000000013,48.504166000000112],[-69.283324999999934,48.493049999999982],[-69.282500999999968,48.482490999999982],[-69.292770000000019,48.457771000000093],[-69.301102000000014,48.446655000000135],[-69.432769999999948,48.307770000000005],[-69.437774999999988,48.303047000000049],[-69.454726999999991,48.291939000000013],[-69.597777999999948,48.207497000000046],[-69.672775000000001,48.14388300000013],[-69.683884000000035,48.137772000000041],[-69.691375999999991,48.137496999999996],[-69.80082699999997,48.153603000000032],[-69.810271999999941,48.155822999999998],[-69.734725999999966,48.113609000000054],[-69.730285999999978,48.10943600000013],[-69.732498000000021,48.103607000000125],[-69.786391999999864,47.994713000000047],[-69.839447000000007,47.907210999999961],[-69.925827000000027,47.773048000000074],[-69.93582200000003,47.764441999999974],[-70.002227999999945,47.711936999999978],[-70.015563999999983,47.702773999999977],[-70.071945000000028,47.674713000000054],[-70.077498999999989,47.672493000000088],[-70.091109999999958,47.669159000000093],[-70.132767000000001,47.644996999999989],[-70.179992999999968,47.608330000000024],[-70.190276999999924,47.599159000000043],[-70.202498999999989,47.583053999999947],[-70.206116000000009,47.576660000000118],[-70.208343999999897,47.570549000000028],[-70.209441999999967,47.553879000000109],[-70.207503999999915,47.533051],[-70.208618000000001,47.527214000000072],[-70.217223999999931,47.508330999999998],[-70.225554999999929,47.496384000000035],[-70.2308349999999,47.492493000000138],[-70.299727999999959,47.466933999999924],[-70.341674999999952,47.460548000000017],[-70.461944999999901,47.429993000000024],[-70.502501999999993,47.390830999999991],[-70.555831999999953,47.322769000000108],[-70.56639100000001,47.304161000000022],[-70.568618999999956,47.298049999999932],[-70.571120999999948,47.281104999999968],[-70.574172999999973,47.274437000000034],[-70.586120999999991,47.257773999999927],[-70.699431999999945,47.126099000000011],[-70.721664000000033,47.101387000000102],[-70.733063000000016,47.095543000000134],[-70.792496000000028,47.068329000000119],[-70.817504999999926,47.058884000000035],[-70.823623999999938,47.056938000000002],[-70.866942999999935,47.051383999999985],[-70.893341000000021,47.045273000000066],[-70.923049999999932,47.032211000000075],[-70.973617999999988,47.003326000000015],[-71.113616999999863,46.912491000000045],[-71.182495000000017,46.864158999999972],[-71.197495000000004,46.852493000000038],[-71.198607999999979,46.846382000000119],[-71.299164000000019,46.742218000000094],[-71.291945999999996,46.744156000000032],[-71.279723999999931,46.749161000000072],[-71.209441999999967,46.782494000000099],[-71.19888299999991,46.788887000000045],[-71.188888999999961,46.796661000000029],[-71.184432999999956,46.802773000000059],[-71.178329000000019,46.815269000000114],[-71.166396999999904,46.831108000000029],[-71.156112999999948,46.838882000000069],[-71.149993999999936,46.842491000000052],[-71.143615999999952,46.844711000000075],[-71.130554000000018,46.847487999999998],[-71.115279999999984,46.84887700000013],[-71.100280999999995,46.84887700000013],[-71.083327999999995,46.847487999999998],[-70.986937999999952,46.854164000000083],[-70.772232000000031,46.915825000000041],[-70.766402999999912,46.918884000000048],[-70.755004999999983,46.936652999999978],[-70.744445999999925,46.943320999999912],[-70.737502999999947,46.946098000000006],[-70.638061999999991,46.981658999999979],[-70.618880999999931,46.988045000000056],[-70.604996000000028,46.990273000000059],[-70.575012000000015,46.993324000000086],[-70.553328999999962,46.998047000000042],[-70.541381999999942,47.00249500000001],[-70.530288999999925,47.007773999999984],[-70.506957999999997,47.02027099999998],[-70.486389000000031,47.033607000000131],[-70.461120999999935,47.053604000000007],[-70.334166999999923,47.15554800000001],[-70.310271999999941,47.176659000000086],[-70.273055999999997,47.213608000000136],[-70.111114999999984,47.340546000000131],[-70.078888000000006,47.361106999999947],[-70.048888999999974,47.386107999999979],[-70.044158999999922,47.390830999999991],[-70.040833000000021,47.397217000000069],[-70.039992999999868,47.402771000000087],[-69.967498999999975,47.505829000000062],[-69.90194699999995,47.537216000000001],[-69.896392999999932,47.541107000000068],[-69.805832000000009,47.613052000000096],[-69.65943900000002,47.744713000000104],[-69.639998999999875,47.762772000000041],[-69.593063000000029,47.808884000000091],[-69.556655999999862,47.856384000000048],[-69.556380999999931,47.866661000000022],[-69.544158999999979,47.883605999999986],[-69.526672000000019,47.90415999999999],[-69.508057000000008,47.924438000000009],[-69.498885999999857,47.933875999999998],[-69.469727000000034,47.961937000000091],[-69.450561999999991,47.979155999999989],[-69.429169000000002,47.995270000000119],[-69.418335000000013,48.001389000000131],[-69.411666999999966,48.003326000000015],[-69.275283999999942,48.067772000000048],[-69.11610399999995,48.178604000000064],[-69.101943999999946,48.192764000000125],[-69.08666999999997,48.204994000000056],[-69.054168999999888,48.228600000000142],[-69.016402999999968,48.254165999999998],[-68.968613000000005,48.279990999999995],[-68.940552000000025,48.294998000000021],[-68.831679999999892,48.344711000000132],[-68.695267000000001,48.396385000000123],[-68.541381999999999,48.451385000000016],[-68.529448999999943,48.457214000000022],[-68.519164999999987,48.464157],[-68.513061999999877,48.469437000000084],[-68.496947999999918,48.490273000000116],[-68.473891999999978,48.515549000000135],[-68.469161999999869,48.520271000000037],[-68.453613000000018,48.532494000000099],[-68.434433000000013,48.541663999999969],[-68.422501000000011,48.545272999999952],[-68.407776000000013,48.548050000000046],[-68.375823999999852,48.546386999999925],[-68.368606999999997,48.547493000000145],[-68.354445999999996,48.551384000000041],[-68.348342999999886,48.554161000000136],[-68.336670000000026,48.561661000000015],[-68.283324999999991,48.600273000000016],[-68.236937999999952,48.625549000000035],[-68.211120999999935,48.636658000000125],[-68.193328999999892,48.643051000000071],[-68.179168999999945,48.646660000000111],[-68.15695199999999,48.64916199999999],[-68.125548999999978,48.648330999999985],[-68.111938000000009,48.651382000000012],[-67.973617999999988,48.695541000000105],[-67.709441999999854,48.793884000000105],[-67.531386999999995,48.859160999999972],[-67.209732000000031,48.935822000000087],[-67.087783999999999,48.960823000000119],[-67.067504999999983,48.966933999999981],[-67.015838999999971,48.986938000000123],[-66.991669000000002,48.999160999999958],[-66.960830999999985,49.011940000000038],[-66.922775000000001,49.026657000000057],[-66.916397000000018,49.028877000000023],[-66.722503999999958,49.08998900000006],[-66.421660999999915,49.162765999999976],[-66.306106999999997,49.186935000000119],[-66.225005999999951,49.200829000000056],[-66.089172000000019,49.218597000000045],[-66.074172999999973,49.219711000000018],[-65.832503999999915,49.231377000000009],[-65.678328999999962,49.245543999999995],[-65.496947999999975,49.261664999999994],[-65.447219999999959,49.262215000000026],[-65.394454999999994,49.259719999999959],[-65.359726000000023,49.256660000000124],[-64.996947999999918,49.220267999999919],[-64.916655999999989,49.20665699999995],[-64.825561999999934,49.187767000000008],[-64.805831999999953,49.18332700000002],[-64.795273000000009,49.176102000000128],[-64.791945999999939,49.171661000000029],[-64.774718999999948,49.159987999999998],[-64.763335999999924,49.154160000000047],[-64.748885999999914,49.148048000000074],[-64.731948999999986,49.142220000000009],[-64.660827999999867,49.123047000000042],[-64.641112999999962,49.118880999999988],[-64.606658999999922,49.117210000000114],[-64.58805799999999,49.112212999999997],[-64.376388999999961,48.997771999999998],[-64.235549999999989,48.910271000000023],[-64.221663999999976,48.898331000000098],[-64.21444699999995,48.889434999999992],[-64.208892999999989,48.880547000000035],[-64.152221999999938,48.764999000000046],[-64.152495999999985,48.759995000000117],[-64.158050999999944,48.75610400000005],[-64.167769999999962,48.758331000000055],[-64.208892999999989,48.782767999999976],[-64.213332999999977,48.786659000000043],[-64.229995999999971,48.797493000000088],[-64.244155999999975,48.803604000000007],[-64.290282999999931,48.821106000000043],[-64.298889000000031,48.823883000000137],[-64.315552000000025,48.828880000000026],[-64.377212999999927,48.846382000000062],[-64.395844000000011,48.851105000000075],[-64.512222000000008,48.87471000000005],[-64.530562999999916,48.87721300000004],[-64.548888999999917,48.878326000000072],[-64.543335000000013,48.873604],[-64.532775999999956,48.866936000000067],[-64.464447000000007,48.824440000000038],[-64.374161000000015,48.787773000000016],[-64.266662999999994,48.713326000000109],[-64.256957999999997,48.706099999999992],[-64.173049999999932,48.639435000000049],[-64.16194200000001,48.627487000000031],[-64.160004000000015,48.622765000000129],[-64.166945999999996,48.621376000000112],[-64.193053999999961,48.623604000000057],[-64.24110399999995,48.622215000000097],[-64.255004999999926,48.618599000000017],[-64.260833999999875,48.615828999999962],[-64.265288999999996,48.610825000000034],[-64.269729999999981,48.604713000000061],[-64.274718999999948,48.592766000000097],[-64.280563000000029,48.575271999999984],[-64.282500999999911,48.569160000000011],[-64.283324999999877,48.563605999999993],[-64.279174999999952,48.554161000000136],[-64.273330999999928,48.550545000000056],[-64.264174999999909,48.549164000000019],[-64.245834000000002,48.546661000000086],[-64.219161999999983,48.528327999999988],[-64.246384000000035,48.488044999999943],[-64.322509999999852,48.437210000000107],[-64.426392000000021,48.404160000000047],[-64.493057000000022,48.394440000000145],[-64.506667999999991,48.391663000000051],[-64.586945000000014,48.36832400000003],[-64.68638599999997,48.338326000000109],[-64.731383999999878,48.274712000000022],[-64.750290000000007,48.245827000000133],[-64.753890999999953,48.239989999999977],[-64.760559000000001,48.227211000000125],[-64.768065999999976,48.202774000000034],[-64.771392999999989,48.196381000000088],[-64.778610000000015,48.19499200000007],[-64.87332200000003,48.180550000000096],[-64.931670999999994,48.171661000000029],[-64.972503999999958,48.135269000000051],[-65.15306099999998,48.052216000000044],[-65.196654999999964,48.033607000000075],[-65.202788999999996,48.031380000000013],[-65.270003999999972,48.012771999999984],[-65.305832000000009,48.005554000000132],[-65.326950000000011,48.002220000000136],[-65.455565999999976,48.000274999999988],[-65.463897999999972,48.002777000000037],[-65.472778000000005,48.011383000000137],[-65.478607000000011,48.019714000000079],[-65.484726000000023,48.033882000000119],[-65.491104000000007,48.042496000000142],[-65.504181000000017,48.048882000000049],[-65.689162999999951,48.093879999999956],[-65.764449999999897,48.109993000000031],[-65.888900999999919,48.199158000000011],[-65.904175000000009,48.205826000000002],[-65.949996999999939,48.191101000000003],[-65.956389999999999,48.188881000000038],[-66.006957999999997,48.159156999999993],[-66.024718999999948,48.139160000000118],[-66.129714999999919,48.107216000000108],[-66.242767000000015,48.109161000000086],[-66.396392999999932,48.114998000000071],[-66.406386999999938,48.116385999999977],[-66.432495000000017,48.118599000000131],[-66.47084000000001,48.119438000000059],[-66.477782999999988,48.118049999999982],[-66.484160999999972,48.115546999999992],[-66.495543999999995,48.10943600000013],[-66.506392999999946,48.102218999999991],[-66.52555799999999,48.085548000000017],[-66.529998999999918,48.080551000000071],[-66.667220999999984,48.028328000000101],[-66.673614999999984,48.026099999999985],[-66.763717999999983,48.00622599999997],[-66.843703999999946,47.996650999999986],[-66.842498999999975,47.992218000000037],[-66.83666999999997,47.988884000000041],[-66.828888000000006,47.98721299999994],[-66.749999999999943,47.979988000000105],[-66.728881999999942,47.984436000000073],[-66.610824999999977,48.011107999999979],[-66.584731999999974,48.019440000000145],[-66.573333999999988,48.025826000000052],[-66.540558000000033,48.036385000000109],[-66.434433000000013,48.067497000000003],[-66.420273000000009,48.070549000000085],[-66.364165999999955,48.073326000000009],[-66.356658999999922,48.073326000000009],[-66.350829999999917,48.069717000000026],[-66.349990999999932,48.06471300000004],[-66.259170999999981,47.999435000000119],[-66.042220999999984,47.935822000000087],[-65.988892000000021,47.923881999999992],[-65.970276000000013,47.92083000000008],[-65.936935000000005,47.92083000000008],[-65.922225999999966,47.922768000000019],[-65.90695199999999,47.923325000000091],[-65.880279999999914,47.920547000000113],[-65.843886999999995,47.911377000000073],[-65.818619000000012,47.903877000000023],[-65.811385999999914,47.900825999999995],[-65.793609999999944,47.890831000000048],[-65.772780999999952,47.876380999999924],[-65.757506999999976,47.865273000000116],[-65.746383999999978,47.852775999999949],[-65.725005999999894,47.82749199999995],[-65.718613000000005,47.818886000000077],[-65.714447000000007,47.809433000000013],[-65.713622999999984,47.804161000000079],[-65.696944999999971,47.733047000000113],[-65.671936000000017,47.645828000000051],[-65.667770000000019,47.641380000000083],[-65.634734999999978,47.62082700000002],[-65.628326000000015,47.623046999999985],[-65.389998999999989,47.736107000000004],[-65.332779000000016,47.766937000000041],[-65.253890999999953,47.801659000000029],[-65.240829000000019,47.806655999999975],[-65.202788999999996,47.818603999999993],[-65.167496000000028,47.825271999999984],[-65.044723999999974,47.844436999999914],[-65.020844000000011,47.844993999999986],[-64.985000999999954,47.84137700000008],[-64.815552000000025,47.811104000000114],[-64.805557000000022,47.808884000000091],[-64.797226000000023,47.806381000000101],[-64.719161999999983,47.764441999999974],[-64.713332999999977,47.761108000000036],[-64.676665999999955,47.735550000000103],[-64.670273000000009,47.726936000000023],[-64.67332499999992,47.720268000000033],[-64.679442999999992,47.716659999999933],[-64.703612999999905,47.706940000000031],[-64.803328999999962,47.630547000000092],[-64.859725999999966,47.576660000000118],[-64.870093999999995,47.536293000000057],[-64.87110899999999,47.515831000000048],[-64.870270000000005,47.510826000000009],[-64.875548999999978,47.460823000000062],[-64.880828999999949,47.432495000000074],[-64.886397999999986,47.414154000000053],[-64.910004000000015,47.353049999999996],[-65.138061999999991,47.192215000000033],[-65.226944000000003,47.140831000000048],[-65.238327000000027,47.134720000000129],[-65.263335999999924,47.124435000000005],[-65.339721999999938,47.099433999999974],[-65.364165999999955,47.089714000000072],[-65.369994999999903,47.086655000000121],[-65.365279999999871,47.082771000000093],[-65.218886999999881,47.053604000000007],[-65.101105000000018,47.076942000000088],[-65.017226999999934,47.091377000000023],[-64.805557000000022,47.083054000000061],[-64.798614999999927,47.079993999999999],[-64.802779999999927,46.993049999999926],[-64.803328999999962,46.987495000000024],[-64.807220000000029,46.981658999999979],[-64.812209999999993,46.977768000000083],[-64.818068999999923,46.9741590000001],[-64.835830999999985,46.965827999999988],[-64.857223999999974,46.95277399999992],[-64.871933000000013,46.939430000000016],[-64.880279999999914,46.930549999999982],[-64.892226999999991,46.91443600000008],[-64.896117999999944,46.908882000000062],[-64.89916999999997,46.902489000000116],[-64.904998999999975,46.883606000000043],[-64.906386999999995,46.872490000000084],[-64.904998999999975,46.851105000000132],[-64.903609999999901,46.840827999999931],[-64.877212999999983,46.791107000000068],[-64.863891999999964,46.774436999999921],[-64.818068999999923,46.72165700000005],[-64.748610999999983,46.702773999999977],[-64.740279999999984,46.70249200000012],[-64.726394999999911,46.696381000000031],[-64.72084000000001,46.693047000000035],[-64.713332999999977,46.684158000000139],[-64.711120999999991,46.679993000000138],[-64.708617999999944,46.669991000000039],[-64.705001999999979,46.638329000000056],[-64.67332499999992,46.500832000000003],[-64.66194200000001,46.468048000000124],[-64.650833000000034,46.460548000000074],[-64.621933000000013,46.427216000000101],[-64.613616999999977,46.414435999999966],[-64.611938000000009,46.409714000000065],[-64.615004999999996,46.392494000000113],[-64.613051999999982,46.366104000000064],[-64.504181000000017,46.240273000000002],[-64.402221999999995,46.233047000000056],[-64.237503000000004,46.229155999999989],[-64.116942999999935,46.181938000000059],[-64.035552999999993,46.182213000000104],[-63.970832999999914,46.180549999999982],[-63.954444999999964,46.178046999999992],[-63.830283999999949,46.146385000000066],[-63.822226999999998,46.14388299999996],[-63.776389999999935,46.121101000000067],[-63.77305599999994,46.117493000000138],[-63.771111000000019,46.112769999999955],[-63.772498999999868,46.108046999999999],[-63.776947000000007,46.103325000000098],[-63.783057999999983,46.099716000000058],[-63.799445999999989,46.091377000000023],[-63.805557000000022,46.089157000000057],[-63.886391000000003,46.06082200000003],[-63.892501999999922,46.058884000000091],[-63.919448999999929,46.053047000000106],[-63.926948999999922,46.052490000000034],[-63.988608999999997,46.051933000000133],[-64.023330999999985,46.057495000000074],[-64.06806899999998,46.059433000000013],[-64.072509999999966,46.054710000000057],[-64.093886999999995,46.021659999999997],[-64.065001999999879,46.004715000000033],[-64.042785999999978,45.991898000000049],[-64.012512000000015,46.005829000000006],[-64.005279999999914,46.005554000000018],[-63.913054999999986,45.979987999999935],[-63.864166000000012,45.961105000000032],[-63.859443999999996,45.951934999999992],[-63.861389000000031,45.94582400000013],[-63.846106999999961,45.930824000000143],[-63.714721999999995,45.840546000000074],[-63.669998000000021,45.818054000000018],[-63.664161999999976,45.815268999999944],[-63.645836000000031,45.833328000000051],[-63.631667999999991,45.859436000000017],[-63.600280999999995,45.869986999999924],[-63.580558999999937,45.874435000000119],[-63.482498000000021,45.877213000000097],[-63.474441999999954,45.876938000000052],[-63.457221999999888,45.874160999999958],[-63.420279999999934,45.864997999999957],[-63.406661999999926,45.858887000000095],[-63.403884999999946,45.854439000000127],[-63.42861199999993,45.823607999999979],[-63.434440999999936,45.820831000000112],[-63.441108999999926,45.819442999999978],[-63.456107999999972,45.818886000000077],[-63.488051999999925,45.820831000000112],[-63.513335999999981,45.82416500000005],[-63.520835999999974,45.823883000000023],[-63.525832999999977,45.819992000000127],[-63.52666499999998,45.814438000000109],[-63.523612999999898,45.809989999999971],[-63.515556000000004,45.807213000000047],[-63.506950000000018,45.805824000000086],[-63.433608999999933,45.799438000000009],[-63.425560000000019,45.799164000000076],[-63.34332999999998,45.797492999999974],[-63.328338999999971,45.79833200000013],[-63.287223999999981,45.805549999999982],[-63.281113000000005,45.807769999999948],[-63.274170000000026,45.808883999999978],[-63.251113999999973,45.809714999999983],[-63.235000999999954,45.80860100000001],[-63.229439000000013,45.804993000000081],[-63.233329999999967,45.799438000000009],[-63.238892000000021,45.796386999999982],[-63.313889000000017,45.769440000000031],[-63.319725000000005,45.768051000000071],[-63.355835000000013,45.764442000000031],[-63.372222999999906,45.76638800000012],[-63.379997000000003,45.766106000000036],[-63.381942999999978,45.759995000000004],[-63.376663000000008,45.755829000000062],[-63.361114999999984,45.745543999999938],[-63.354445999999939,45.742493000000138],[-63.31361400000003,45.736938000000066],[-63.282501000000025,45.733330000000137],[-63.189719999999966,45.73443600000013],[-63.120833999999945,45.759438000000102],[-63.090552999999943,45.790276000000063],[-63.082779000000016,45.80332199999998],[-62.993888999999967,45.796386999999982],[-62.985275000000001,45.794998000000135],[-62.958336000000031,45.788887000000045],[-62.723610000000008,45.764160000000004],[-62.677779999999984,45.764160000000004],[-62.557220000000029,45.674713000000111],[-62.503890999999953,45.627487000000087],[-62.461944999999957,45.612495000000081],[-62.250281999999913,45.708327999999995],[-62.092772999999966,45.781105000000139],[-62.035003999999958,45.820831000000112],[-62.015006999999912,45.836655000000007],[-61.973327999999981,45.867210000000057],[-61.931388999999967,45.884720000000016],[-61.925559999999962,45.886107999999922],[-61.917503000000011,45.885551000000021],[-61.903052999999886,45.87943300000012],[-61.89805599999994,45.875267000000008],[-61.896110999999962,45.871101000000124],[-61.89805599999994,45.865273000000002],[-61.903327999999988,45.861382000000106],[-61.914718999999934,45.8555530000001],[-61.919448999999986,45.851105000000132],[-61.923332000000016,45.845543000000021],[-61.925559999999962,45.839432000000102],[-61.925277999999992,45.834434999999985],[-61.889998999999989,45.701385000000016],[-61.885558999999887,45.690544000000102],[-61.88138600000002,45.686653000000035],[-61.792228999999907,45.639160000000118],[-61.783332999999971,45.636658000000011],[-61.735000999999897,45.623322000000087],[-61.724998000000028,45.62082700000002],[-61.618056999999965,45.610550000000046],[-61.603888999999924,45.635269000000051],[-61.569999999999936,45.669991000000039],[-61.565001999999936,45.673882000000106],[-61.559165999999948,45.676659000000029],[-61.546111999999994,45.681106999999997],[-61.526107999999965,45.685265000000129],[-61.504447999999968,45.686935000000062],[-61.488892000000021,45.686935000000062],[-61.471382000000006,45.682495000000074],[-61.466110000000015,45.678878999999995],[-61.396392999999932,45.626656000000082],[-61.386947999999961,45.618880999999988],[-61.353427999999951,45.56971400000009],[-61.316146999999944,45.533173000000033],[-61.260001999999929,45.510277000000087],[-61.232356999999979,45.46119299999998],[-61.294167000000016,45.434714999999926],[-61.36500499999994,45.404160000000104],[-61.368057000000022,45.413879000000122],[-61.374717999999973,45.416938999999957],[-61.388610999999912,45.41415400000011],[-61.400832999999977,45.410820000000115],[-61.413329999999974,45.406937000000028],[-61.462219000000005,45.384438000000046],[-61.477492999999924,45.373047000000099],[-61.481666999999959,45.367767000000015],[-61.478881999999999,45.363327000000027],[-61.463889999999992,45.346939000000134],[-61.457222000000002,45.343605000000139],[-61.226386999999932,45.344154000000117],[-61.153327999999874,45.348327999999981],[-61.139441999999974,45.348877000000073],[-61.131667999999991,45.348327999999981],[-61.047225999999966,45.335548000000017],[-60.996391000000017,45.32749200000012],[-60.980552999999986,45.324440000000038],[-60.970551,45.321663000000115],[-60.966110000000015,45.318329000000119],[-60.964721999999995,45.313049000000035],[-60.96527900000001,45.295546999999999],[-60.970276000000013,45.269714000000079],[-61.050834999999893,45.231102000000078],[-61.0777819999999,45.219437000000028],[-61.090278999999953,45.215546000000131],[-61.109726000000023,45.210823000000119],[-61.123329000000012,45.208602999999925],[-61.139724999999942,45.210823000000119],[-61.142226999999991,45.215271000000087],[-61.222220999999934,45.23832700000014],[-61.267501999999979,45.246384000000091],[-61.313056999999901,45.242766999999958],[-61.323890999999946,45.236107000000118],[-61.360000999999954,45.209991000000059],[-61.373610999999926,45.196380999999974],[-61.373328999999956,45.191101000000117],[-61.365554999999972,45.188324000000023],[-61.349723999999981,45.186935000000005],[-61.340836000000024,45.184433000000126],[-61.344161999999869,45.178047000000049],[-61.34944200000001,45.174438000000009],[-61.355002999999954,45.171660999999915],[-61.384445000000028,45.15915700000005],[-61.397498999999982,45.156097000000045],[-61.450835999999924,45.145546000000081],[-61.458611000000019,45.144714000000022],[-61.543891999999971,45.141662999999994],[-61.638053999999954,45.120270000000062],[-61.724715999999944,45.091660000000047],[-61.898338000000024,45.024993999999992],[-62.026664999999923,44.984717999999987],[-62.087775999999963,44.97026800000009],[-62.286391999999921,44.928047000000049],[-62.391944999999964,44.908325000000048],[-62.476386999999875,44.895546000000138],[-62.521942000000024,44.850829999999974],[-62.546111999999937,44.821663000000001],[-62.641388000000006,44.809158000000082],[-62.795005999999887,44.780548000000067],[-62.801108999999997,44.778603000000089],[-62.813888999999961,44.750832000000003],[-62.809998000000007,44.734718000000044],[-62.851111999999944,44.718323000000112],[-62.928611999999873,44.733879000000115],[-63.012779000000023,44.773323000000005],[-63.020554000000004,44.773880000000077],[-63.055557000000022,44.772766000000104],[-63.0625,44.771378000000027],[-63.061942999999928,44.76638800000012],[-63.060279999999977,44.761664999999994],[-63.057502999999997,44.757217000000026],[-63.043616999999927,44.739989999999977],[-63.017776000000026,44.722488000000112],[-63.012504999999919,44.713326000000052],[-63.011948000000018,44.708046000000138],[-63.013618000000008,44.702774000000034],[-63.018332999999927,44.697487000000081],[-63.048339999999996,44.676102000000128],[-63.05471799999998,44.673325000000034],[-63.104445999999996,44.746658000000139],[-63.115279999999871,44.731377000000009],[-63.118331999999953,44.724991000000102],[-63.138335999999981,44.693047000000092],[-63.142776000000026,44.688599000000124],[-63.283057999999926,44.627212999999983],[-63.439994999999954,44.590828000000045],[-63.448883000000023,44.593048000000067],[-63.49500299999994,44.614715999999987],[-63.526336999999955,44.63610099999994],[-63.535167999999999,44.642769000000101],[-63.545334000000025,44.652107000000058],[-63.556999000000019,44.66160600000012],[-63.615836999999942,44.70249199999995],[-63.635001999999986,44.711380000000133],[-63.642775999999913,44.714157000000057],[-63.651107999999965,44.715546000000018],[-63.658332999999971,44.714995999999985],[-63.660552999999936,44.708328000000051],[-63.649444999999957,44.686104000000114],[-63.640556000000004,44.673050000000046],[-63.635559000000001,44.668884000000105],[-63.627776999999924,44.666382000000056],[-63.606110000000001,44.668884000000105],[-63.598610000000008,44.667770000000132],[-63.591942000000017,44.664711000000011],[-63.583611000000019,44.656936999999971],[-63.564223999999911,44.620769999999993],[-63.558220000000006,44.613266000000124],[-63.555388999999934,44.607769000000019],[-63.546059000000014,44.588604000000032],[-63.520835999999974,44.512771999999984],[-63.520279000000016,44.507773999999984],[-63.525276000000019,44.495270000000119],[-63.533332999999971,44.484993000000145],[-63.542777999999942,44.476379000000065],[-63.553054999999915,44.469711000000075],[-63.570838999999921,44.461937000000091],[-63.631110999999919,44.435822000000087],[-63.638610999999912,44.436935000000005],[-63.90694400000001,44.495270000000119],[-63.913611999999887,44.498604000000114],[-63.924171000000001,44.506103999999993],[-63.932502999999997,44.513329000000056],[-63.935555000000022,44.517494000000056],[-63.94388600000002,44.536110000000065],[-63.938605999999936,44.616104000000064],[-63.937774999999931,44.621658000000082],[-63.928054999999858,44.642220000000009],[-63.919166999999959,44.651657000000114],[-63.914443999999889,44.65554800000001],[-63.908607000000018,44.678047000000106],[-64.008347000000015,44.647491000000002],[-64.045272999999952,44.635826000000122],[-64.055266999999958,44.619438000000059],[-64.065551999999911,44.595268000000033],[-64.063888999999961,44.590545999999961],[-64.059158000000025,44.581665000000044],[-64.054992999999968,44.577773999999977],[-64.039443999999946,44.572495000000004],[-64.033614999999941,44.563049000000035],[-64.009170999999981,44.513329000000056],[-64.010009999999966,44.507773999999984],[-64.083069000000023,44.466660000000047],[-64.091949,44.46888000000007],[-64.110549999999989,44.478324999999984],[-64.121657999999968,44.485268000000133],[-64.125548999999978,44.510551000000021],[-64.123610999999926,44.527489000000116],[-64.119720000000029,44.53943600000008],[-64.121657999999968,44.544159000000093],[-64.127486999999917,44.552773000000116],[-64.135833999999988,44.560546999999929],[-64.146118000000001,44.568329000000062],[-64.170273000000009,44.586105000000032],[-64.200835999999981,44.576384999999959],[-64.305267000000015,44.533332999999971],[-64.337509000000011,44.411933999999974],[-64.346664000000033,44.362495000000138],[-64.346114999999998,44.357215999999994],[-64.329726999999934,44.328880000000026],[-64.311110999999926,44.319159999999954],[-64.303328999999962,44.316666000000055],[-64.295273000000009,44.316101000000003],[-64.290557999999976,44.31999200000007],[-64.292220999999984,44.324715000000026],[-64.299987999999928,44.32749200000012],[-64.305557000000022,44.330826000000116],[-64.309433000000013,44.335548000000017],[-64.307770000000005,44.340828000000101],[-64.301102000000014,44.341933999999924],[-64.273620999999878,44.330276000000083],[-64.260558999999944,44.324164999999994],[-64.239440999999943,44.294158999999922],[-64.253341999999918,44.27526899999998],[-64.258056999999951,44.269989000000123],[-64.283324999999877,44.253052000000082],[-64.319457999999997,44.264717000000019],[-64.355835000000013,44.273323000000119],[-64.391113000000018,44.253326000000015],[-64.428054999999915,44.228325000000041],[-64.432220000000029,44.223602000000028],[-64.444716999999912,44.190269000000001],[-64.616394000000014,44.133049000000142],[-64.61860699999994,44.071937999999989],[-64.666397000000018,43.990273000000116],[-64.671386999999982,43.986382000000049],[-64.732223999999917,43.951660000000004],[-64.738051999999925,43.949432000000058],[-64.745269999999948,43.948874999999987],[-64.776397999999972,43.950828999999999],[-64.80610699999994,43.950546000000031],[-64.812774999999931,43.949432000000058],[-64.818068999999923,43.946381000000031],[-64.832229999999925,43.926102000000128],[-64.881103999999993,43.838882000000126],[-64.906386999999995,43.800544999999943],[-65.030562999999972,43.704163000000051],[-65.066665999999941,43.696381000000088],[-65.242217999999923,43.679161000000136],[-65.325835999999867,43.674995000000024],[-65.375274999999874,43.575272000000098],[-65.449158000000011,43.55971500000004],[-65.453338999999971,43.554993000000138],[-65.475829999999974,43.505829000000006],[-65.481383999999991,43.464439000000027],[-65.496947999999975,43.490829000000019],[-65.548049999999932,43.556099000000017],[-65.559433000000013,43.568054000000075],[-65.568618999999956,43.570274000000097],[-65.575561999999991,43.569717000000026],[-65.584732000000031,43.560271999999941],[-65.591385000000002,43.549721000000034],[-65.603881999999999,43.534721000000104],[-65.612212999999997,43.526099999999985],[-65.617492999999968,43.523604999999975],[-65.646118000000001,43.511940000000038],[-65.67332499999992,43.506103999999993],[-65.712783999999999,43.498604000000114],[-65.720550999999944,43.499161000000015],[-65.72582999999986,43.50249500000001],[-65.777221999999995,43.562492000000134],[-65.783324999999934,43.571106000000043],[-65.783889999999985,43.576385000000016],[-65.781951999999933,43.587769000000094],[-65.778885000000002,43.599998000000085],[-65.773055999999997,43.612770000000125],[-65.771117999999944,43.624435000000005],[-65.769454999999937,43.64138000000014],[-65.768065999999919,43.658043000000021],[-65.768340999999964,43.668883999999991],[-65.769729999999868,43.679161000000136],[-65.77555799999999,43.688324000000136],[-65.868880999999988,43.786385000000053],[-65.907775999999956,43.821663000000058],[-65.912215999999887,43.825272000000041],[-65.918610000000001,43.828331000000048],[-65.932770000000005,43.827217000000019],[-65.938888999999961,43.824997000000053],[-65.942490000000021,43.819443000000035],[-65.956115999999895,43.776100000000099],[-65.968886999999995,43.719436999999971],[-65.971663999999976,43.71276899999998],[-65.975006000000008,43.707214000000079],[-65.983063000000016,43.697768999999994],[-66.013335999999867,43.691658000000132],[-66.020553999999947,43.69110100000006],[-66.029449,43.731659000000093],[-66.030562999999972,43.736107000000061],[-66.033614999999998,43.740273000000002],[-66.042220999999984,43.748046999999985],[-66.080841000000021,43.768051000000071],[-66.088607999999965,43.768326000000116],[-66.09445199999999,43.766106000000093],[-66.107772999999952,43.753326000000129],[-66.121658000000025,43.762215000000026],[-66.135559000000001,43.78943600000008],[-66.166945999999939,43.858603999999957],[-66.168059999999912,43.863051999999925],[-66.168059999999912,43.895546000000024],[-66.167495999999971,43.901382000000069],[-66.165832999999964,43.907211000000075],[-66.151947000000007,43.919159000000093],[-66.150283999999942,43.925270000000012],[-66.149993999999936,43.93082400000003],[-66.14916999999997,44.001106000000107],[-66.14973399999991,44.011108000000036],[-66.181945999999925,44.067497000000117],[-66.204453000000001,44.086655000000007],[-66.190552000000025,44.150543000000027],[-66.187774999999931,44.161934000000031],[-66.118606999999997,44.338043000000027],[-66.093886999999881,44.367493000000138],[-66.089995999999985,44.371658000000139],[-66.037505999999951,44.423325000000091],[-65.976943999999946,44.477485999999999],[-65.967223999999987,44.486107000000118],[-65.95666499999993,44.491661000000079],[-65.950286999999946,44.493050000000096],[-65.944442999999978,44.489716000000101],[-65.938048999999921,44.491104000000007],[-65.865828999999962,44.538886999999988],[-65.841674999999952,44.568604000000107],[-65.841384999999946,44.574164999999994],[-65.844451999999876,44.578331000000048],[-65.848891999999978,44.582213999999965],[-65.855270000000019,44.585823000000005],[-65.862777999999878,44.586936999999978],[-65.931106999999997,44.582213999999965],[-65.943053999999961,44.577773999999977],[-65.958617999999944,44.567497000000003],[-66.004456000000005,44.535827999999981],[-66.03472899999997,44.514717000000132],[-66.12332200000003,44.448875000000044],[-66.177779999999927,44.396660000000054],[-66.185821999999973,44.387214999999969],[-66.190552000000025,44.383330999999998],[-66.197220000000016,44.386108000000036],[-66.198607999999979,44.412766000000033],[-66.191100999999946,44.423325000000091],[-66.103058000000033,44.500000000000114],[-66.068068999999923,44.524994000000106],[-65.971663999999976,44.591934000000094],[-65.820220999999947,44.654434000000037],[-65.816726999999958,44.655768999999964],[-65.808722999999929,44.651936000000092],[-65.802895000000035,44.644604000000072],[-65.796394000000021,44.624268000000029],[-65.796897999999942,44.617603000000145],[-65.797897000000034,44.613937000000021],[-65.756957999999941,44.615273000000059],[-65.756393000000003,44.609993000000031],[-65.753066999999987,44.60582700000009],[-65.745270000000005,44.605552999999986],[-65.697220000000016,44.612495000000081],[-65.690276999999924,44.614440999999999],[-65.68499799999995,44.61693600000001],[-65.625274999999988,44.658882000000006],[-65.522507000000019,44.737769999999955],[-65.548614999999984,44.733879000000115],[-65.682616999999937,44.693156999999928],[-65.686278999999956,44.691825999999935],[-65.690276999999924,44.691162000000077],[-65.695441999999957,44.691825999999935],[-65.704116999999997,44.69499200000007],[-65.706116000000009,44.697654999999997],[-65.707114999999988,44.700489000000005],[-65.707450999999992,44.703487000000052],[-65.705947999999978,44.707489000000066],[-65.700942999999938,44.713157999999964],[-65.697937000000024,44.71549200000004],[-65.717772999999966,44.721931000000041],[-65.658339999999953,44.758605999999986],[-65.646956999999929,44.765273999999977],[-65.299987999999928,44.928329000000133],[-65.202498999999989,44.973877000000073],[-65.114166000000012,45.011665000000107],[-64.934158000000025,45.100273000000016],[-64.918059999999912,45.111107000000061],[-64.879439999999988,45.130820999999969],[-64.861938000000009,45.139717000000076],[-64.814712999999983,45.158043000000077],[-64.808608999999933,45.16027100000008],[-64.777221999999995,45.169990999999982],[-64.744995000000017,45.178329000000076],[-64.710830999999985,45.183876000000055],[-64.590285999999935,45.208046000000024],[-64.550551999999925,45.216660000000104],[-64.468886999999938,45.242766999999958],[-64.451400999999976,45.249435000000119],[-64.434432999999899,45.25750000000005],[-64.417770000000019,45.266663000000051],[-64.397506999999962,45.281105000000025],[-64.393889999999999,45.28694200000001],[-64.391952999999944,45.292770000000132],[-64.391113000000018,45.298332000000073],[-64.393065999999862,45.303322000000094],[-64.401671999999962,45.311104000000057],[-64.406951999999933,45.314438000000052],[-64.413895000000025,45.317497000000003],[-64.430832000000009,45.322220000000016],[-64.454726999999934,45.323608000000092],[-64.462218999999948,45.323051000000021],[-64.470839999999953,45.324440000000038],[-64.488051999999982,45.329162999999994],[-64.494719999999973,45.332214000000022],[-64.489165999999955,45.335266000000104],[-64.465835999999911,45.334717000000012],[-64.440552000000025,45.331665000000044],[-64.353057999999919,45.316101000000003],[-64.338333000000034,45.310271999999941],[-64.327498999999989,45.303322000000094],[-64.321395999999936,45.294715999999994],[-64.317779999999914,45.285271000000137],[-64.317229999999881,45.280273000000136],[-64.317779999999914,45.274437000000034],[-64.321944999999914,45.269714000000079],[-64.327498999999989,45.266936999999984],[-64.343062999999972,45.256103999999993],[-64.353333000000021,45.239159000000029],[-64.385833999999932,45.145546000000081],[-64.380279999999857,45.131104000000107],[-64.363891999999964,45.101386999999988],[-64.359725999999966,45.097487999999942],[-64.352218999999934,45.09804500000007],[-64.346953999999982,45.101105000000075],[-64.337219000000005,45.108604000000071],[-64.333892999999932,45.115272999999945],[-64.334441999999967,45.120270000000062],[-64.333327999999995,45.131660000000124],[-64.329178000000013,45.13638300000008],[-64.324387000000002,45.139343000000054],[-64.31138599999997,45.141380000000026],[-64.295836999999949,45.141380000000026],[-64.244155999999975,45.123877999999991],[-64.221114999999941,45.110549999999989],[-64.210280999999952,45.103607000000011],[-64.157226999999978,45.056938000000002],[-64.146956999999986,45.044441000000063],[-64.14555399999989,45.034720999999934],[-64.154449,44.98443600000013],[-64.156386999999938,44.978325000000041],[-64.116942999999935,45.009163000000058],[-64.114165999999955,45.046661000000029],[-64.121933000000013,45.058044000000052],[-64.136397999999929,45.074440000000038],[-64.141678000000013,45.078605999999979],[-64.162505999999894,45.092216000000008],[-64.188323999999909,45.104713000000004],[-64.192490000000021,45.108604000000071],[-64.198607999999865,45.11721],[-64.198882999999967,45.122490000000084],[-64.195830999999941,45.150543000000027],[-64.16361999999998,45.185265000000015],[-64.152785999999992,45.192764000000011],[-64.118331999999953,45.208885000000009],[-64.106110000000001,45.213326000000109],[-64.099990999999932,45.215271000000087],[-64.065826000000015,45.222214000000122],[-64.008057000000008,45.236381999999992],[-63.982215999999937,45.243049999999926],[-63.956664999999987,45.251388999999961],[-63.805831999999953,45.301933000000133],[-63.596107000000018,45.315544000000102],[-63.470832999999857,45.321663000000115],[-63.384170999999924,45.35083000000003],[-63.371940999999993,45.354996000000142],[-63.365554999999915,45.357773000000009],[-63.360832000000016,45.360824999999977],[-63.36860699999994,45.36360900000011],[-63.738892000000021,45.396660000000054],[-63.755561999999941,45.398048000000131],[-63.797226000000023,45.392768999999987],[-63.837775999999963,45.385551000000135],[-63.988051999999982,45.384438000000046],[-64.040558000000033,45.401100000000042],[-64.044998000000021,45.404434000000037],[-64.061110999999983,45.409714000000122],[-64.069732999999985,45.410271000000023],[-64.083618000000001,45.409430999999984],[-64.16332999999986,45.403877000000136],[-64.214721999999995,45.399719000000005],[-64.312774999999931,45.39138000000014],[-64.357772999999952,45.38110400000005],[-64.529998999999975,45.408043000000021],[-64.674164000000019,45.383049000000085],[-64.815825999999959,45.348602000000085],[-64.929442999999992,45.324440000000038],[-64.937209999999993,45.326942000000088],[-64.938048999999921,45.332214000000022],[-64.936661000000015,45.343323000000112],[-64.933318999999983,45.355553000000043],[-64.917769999999905,45.408599999999922],[-64.909163999999976,45.418052999999986],[-64.831389999999942,45.479155999999932],[-64.765563999999983,45.505554000000132],[-64.699157999999954,45.531104999999968],[-64.568893000000003,45.604163999999969],[-64.470550999999944,45.670273000000122],[-64.430282999999974,45.715546000000018],[-64.332229999999925,45.76888300000013],[-64.331680000000006,45.763611000000026],[-64.326110999999969,45.749435000000005],[-64.296660999999915,45.763328999999942],[-64.283066000000019,45.776656999999943],[-64.27555799999999,45.799995000000081],[-64.27305599999994,45.811661000000015],[-64.270003999999915,45.828880000000083],[-64.272933999999964,45.835754000000065],[-64.273620999999878,45.838599999999985],[-64.276671999999962,45.842766000000097],[-64.324722000000008,45.879990000000021],[-64.33277899999996,45.882767000000058],[-64.347778000000005,45.881934999999999],[-64.361388999999974,45.879158000000075],[-64.366942999999992,45.876380999999981],[-64.367766999999958,45.870544000000052],[-64.363327000000027,45.866661000000079],[-64.354720999999927,45.865547000000106],[-64.357498000000021,45.851105000000132],[-64.418059999999912,45.796104000000014],[-64.478332999999907,45.750549000000035],[-64.49722300000002,45.783882000000006],[-64.489990000000034,45.794998000000135],[-64.488051999999982,45.801102000000014],[-64.489165999999955,45.811378000000047],[-64.49221799999998,45.815543999999989],[-64.597335999999984,45.922104000000047],[-64.681945999999868,46.021659999999997],[-64.686935000000005,46.041382000000056],[-64.690551999999968,46.050827000000083],[-64.694991999999957,46.054710000000057],[-64.736937999999952,46.083878000000084],[-64.747498000000007,46.090546000000018],[-64.754456000000005,46.089157000000057],[-64.764450000000011,46.083054000000118],[-64.706389999999999,45.994713000000104],[-64.701949999999954,45.990829000000076],[-64.648009999999942,45.933047999999928],[-64.631171999999992,45.922718000000032],[-64.628998000000024,45.920383000000072],[-64.601180999999997,45.881550000000118],[-64.601180999999997,45.877384000000006],[-64.601340999999991,45.873881999999981],[-64.602844000000005,45.86721399999999],[-64.604507000000012,45.863552000000084],[-64.583069000000023,45.826942000000145],[-64.756392999999946,45.622489999999971],[-64.772506999999962,45.609993000000145],[-64.778335999999967,45.607216000000051],[-64.785827999999924,45.610275000000058],[-64.791381999999999,45.613609000000054],[-64.796660999999972,45.622489999999971],[-64.801665999999955,45.626381000000038],[-64.808334000000002,45.629715000000033],[-64.817229999999938,45.632492000000127],[-64.825287000000003,45.633331000000055],[-64.847504000000015,45.633331000000055],[-64.884445000000028,45.631660000000011],[-64.904175000000009,45.627769000000114],[-64.941375999999991,45.602218999999991],[-64.947219999999959,45.598045000000127],[-64.961945000000014,45.586105000000032],[-64.976395000000025,45.572494999999947],[-64.986663999999962,45.564437999999996],[-64.99722300000002,45.557213000000104],[-65.015015000000005,45.548882000000049],[-65.047501000000011,45.539161999999976],[-65.104445999999939,45.524994000000106],[-65.138335999999924,45.517769000000044],[-65.152221999999938,45.516106000000093],[-65.164444000000003,45.513054000000011],[-65.220551,45.493881000000101],[-65.326675000000023,45.457497000000046],[-65.339447000000007,45.452216999999962],[-65.368057000000022,45.437767000000065],[-65.394454999999994,45.419441000000063],[-65.421386999999925,45.402771000000087],[-65.53195199999999,45.342490999999995],[-65.883620999999948,45.209160000000054],[-65.889998999999989,45.207497000000103],[-65.903609999999958,45.205551000000014],[-65.910827999999981,45.205268999999987],[-65.918883999999935,45.206099999999992],[-65.98332199999993,45.219711000000132],[-65.989989999999977,45.223045000000127],[-66.09060699999992,45.295657999999946],[-66.092940999999939,45.297989000000086],[-66.094611999999984,45.300659000000053],[-66.091605999999956,45.303824999999961],[-66.083892999999932,45.34276600000004],[-66.078063999999927,45.345543000000077],[-66.05749499999996,45.348602000000085],[-66.045273000000009,45.353325000000041],[-66.029449,45.364158999999916],[-66.015288999999996,45.377769000000001],[-66.003066999999987,45.394997000000103],[-66.000838999999985,45.401100000000042],[-65.99722300000002,45.417770000000019],[-65.994445999999982,45.455550999999957],[-65.994445999999982,45.460823000000062],[-66.002501999999993,45.461662000000047],[-66.008346999999901,45.458885000000123],[-66.19027699999998,45.339432000000045],[-66.193329000000006,45.333603000000039],[-66.193329000000006,45.328331000000105],[-66.190552000000025,45.323883000000137],[-66.179169000000002,45.305823999999973],[-66.176102000000014,45.301933000000133],[-66.145279000000016,45.279160000000047],[-66.14166999999992,45.259769000000006],[-66.137000999999941,45.259270000000129],[-66.113997999999981,45.25877400000013],[-66.113509999999906,45.237770000000069],[-66.147232000000031,45.19221500000009],[-66.205565999999976,45.163878999999952],[-66.21665999999999,45.15915700000005],[-66.427779999999984,45.084991000000002],[-66.459732000000031,45.106102000000021],[-66.459732000000031,45.111382000000106],[-66.461120999999935,45.116104000000007],[-66.468063000000029,45.129714999999976],[-66.488891999999908,45.149994000000049],[-66.496384000000035,45.149719000000061],[-66.531386999999995,45.147217000000012],[-66.537505999999951,45.145271000000093],[-66.55999799999995,45.133330999999998],[-66.571395999999936,45.126656000000139],[-66.586120999999991,45.116936000000067],[-66.608046999999942,45.104164000000083],[-66.642226999999991,45.086380000000133],[-66.648055999999997,45.083603000000039],[-66.754729999999881,45.055550000000096],[-66.792496000000028,45.055267000000129],[-66.77694699999995,45.086380000000133],[-66.776107999999965,45.09137700000008],[-66.777785999999992,45.096100000000035],[-66.783065999999963,45.099716000000114],[-66.965560999999923,45.17943600000001],[-67.021941999999854,45.170273000000009],[-67.027221999999995,45.168052999999986],[-67.046386999999982,45.126938000000052],[-67.129439999999988,45.172217999999987],[-67.186934999999949,45.19221500000009],[-67.206542999999897,45.18303700000007],[-67.236114999999927,45.193877999999984],[-67.25306699999993,45.199432000000002],[-67.261123999999995,45.201103000000046],[-67.267775999999969,45.200546000000145],[-67.275009000000011,45.1988750000001],[-67.287215999999944,45.194153000000028],[-67.290557999999976,45.182770000000005],[-67.290282999999988,45.177489999999921],[-67.292220999999927,45.166100000000085],[-67.296386999999925,45.160820000000001],[-67.301391999999964,45.156937000000084],[-67.306655999999862,45.153320000000122],[-67.318893000000003,45.148605000000089],[-67.325561999999991,45.147491000000116],[-67.333069000000023,45.147491000000116],[-67.341948999999943,45.149994000000049],[-67.354172000000005,45.156097000000045],[-67.403884999999946,45.194435000000055],[-67.408050999999944,45.198325999999952],[-67.422500999999954,45.214996000000099],[-67.455275999999969,45.263054000000068],[-67.462783999999999,45.276099999999985],[-67.465011999999888,45.281105000000025],[-67.465285999999992,45.286385000000109],[-67.464172000000019,45.29193900000007],[-67.450561999999934,45.333054000000061],[-67.485001000000011,45.489159000000029],[-67.485275000000001,45.494438000000002],[-67.482772999999952,45.500274999999931],[-67.478881999999885,45.504439999999931],[-67.467772999999966,45.510826000000066],[-67.43638599999997,45.521378000000027],[-67.421936000000017,45.523323000000005],[-67.415832999999964,45.525269000000094],[-67.410827999999924,45.529990999999995],[-67.406951999999876,45.578049000000135],[-67.408889999999985,45.582214000000135],[-67.412505999999951,45.586936999999978],[-67.424163999999962,45.594711000000132],[-67.453888000000006,45.612495000000081],[-67.462219000000005,45.614715999999987],[-67.46945199999999,45.613051999999982],[-67.486114999999984,45.603607000000068],[-67.499999999999943,45.60166200000009],[-67.515015000000005,45.601105000000018],[-67.573897999999986,45.611664000000019],[-67.656661999999983,45.630546999999922],[-67.664443999999946,45.6336060000001],[-67.791107000000011,45.693047000000092],[-67.796660999999915,45.696098000000063],[-67.799164000000019,45.701102999999932],[-67.804442999999992,45.731377000000009],[-67.806380999999988,45.78472099999999],[-67.786666999999909,45.888329000000056],[-67.772507000000019,45.957496999999933],[-67.779174999999952,46.283332999999971],[-67.788894999999968,46.787773000000072],[-67.791671999999949,46.921379000000059],[-67.794998000000021,47.06999200000007],[-67.85972599999991,47.097488000000112],[-67.874161000000015,47.103607000000125],[-67.892226999999991,47.114440999999999],[-67.948607999999922,47.166382000000112],[-67.951400999999976,47.17083000000008],[-67.955841000000021,47.179993000000081],[-67.957229999999925,47.184989999999971],[-67.961944999999957,47.194153000000142],[-67.968886999999938,47.20277400000009],[-68.18582200000003,47.332771000000037],[-68.208617999999944,47.341660000000104],[-68.244995000000017,47.351936000000023],[-68.306655999999919,47.364440999999943],[-68.323059000000001,47.365829000000076],[-68.337219000000005,47.363609000000054],[-68.348891999999921,47.359992999999974],[-68.367766999999958,47.351105000000018],[-68.373046999999929,47.347214000000122],[-68.564712999999927,47.289719000000048],[-68.761948000000018,47.232764999999972],[-68.787505999999951,47.224709000000075],[-68.831679999999892,47.208884999999952],[-68.887786999999946,47.188042000000053],[-68.895279000000016,47.189987000000087],[-68.958618000000001,47.217209000000025],[-68.965285999999878,47.220543000000021],[-69.023894999999925,47.250274999999931],[-69.036117999999988,47.257217000000026],[-69.044998000000021,47.264442000000088],[-69.049164000000019,47.274437000000034],[-69.053054999999972,47.28943600000008],[-69.053588999999931,47.293777000000091],[-69.054992999999854,47.299438000000066],[-69.055266999999958,47.30471],[-69.056106999999997,47.336655000000064],[-69.055556999999965,47.347488000000055],[-69.052490000000034,47.380546999999979],[-69.049437999999952,47.392219999999952],[-69.045837000000006,47.398604999999975],[-69.043610000000001,47.404709000000025],[-69.039444000000003,47.416939000000127],[-69.038329999999974,47.422493000000088],[-69.039992999999981,47.427490000000034],[-69.048614999999984,47.435546999999985],[-69.055556999999965,47.438599000000124],[-69.123885999999914,47.458327999999995],[-69.132766999999944,47.459991000000116],[-69.232498000000021,47.471375000000023],[-69.239623999999992,47.464413000000093],[-69.305267000000015,47.40026899999998],[-69.423614999999984,47.283332999999971],[-69.653884999999946,47.055267000000129],[-69.712509000000011,46.996940999999993],[-69.84722899999997,46.862213000000111],[-69.992767000000015,46.715828000000045],[-70.009170999999867,46.698043999999982],[-70.026947000000007,46.587493999999992],[-70.038605000000018,46.509995000000004],[-70.044158999999922,46.474991000000102],[-70.047775000000001,46.453880000000083],[-70.050551999999982,46.438599000000124],[-70.06361400000003,46.424164000000019],[-70.068893000000003,46.419716000000051],[-70.075286999999946,46.417770000000132],[-70.081389999999999,46.417770000000132],[-70.088057999999876,46.414993000000038],[-70.119155999999975,46.393608000000086],[-70.200287000000003,46.336380000000077],[-70.242492999999911,46.279160000000047],[-70.287780999999939,46.203049000000135],[-70.305556999999908,46.078880000000083],[-70.3125,45.985825000000091],[-70.309722999999963,45.980820000000051],[-70.303329000000019,45.977767999999969],[-70.293883999999991,45.975548000000117],[-70.278335999999967,45.975266000000033],[-70.260559000000001,45.971374999999966],[-70.253615999999909,45.968323000000055],[-70.248336999999935,45.964714000000072],[-70.23971599999993,45.956657000000064],[-70.238051999999982,45.951934999999992],[-70.255004999999983,45.913048000000003],[-70.258895999999993,45.907493999999986],[-70.263335999999981,45.90277100000003],[-70.393889999999942,45.778046000000131],[-70.466659999999933,45.711937000000034],[-70.555267000000015,45.672768000000133],[-70.576949999999954,45.660820000000058],[-70.631942999999978,45.627769000000114],[-70.693054000000018,45.571938000000046],[-70.720276000000013,45.528328000000101],[-70.725280999999995,45.49971800000003],[-70.724715999999944,45.49471299999999],[-70.712783999999999,45.477768000000026],[-70.704726999999934,45.469154000000003],[-70.689437999999939,45.458046000000024],[-70.86860699999994,45.246101000000124],[-70.873046999999985,45.241379000000052],[-70.878600999999946,45.238601999999958],[-70.886123999999995,45.238045000000056],[-71.021118000000001,45.326660000000004],[-71.085128999999995,45.307708999999988],[-71.139998999999932,45.253052000000082],[-71.146392999999989,45.25249500000001],[-71.170272999999952,45.253883000000087],[-71.189163000000008,45.257773999999984],[-71.211669999999913,45.266105999999979],[-71.233063000000016,45.274993999999936],[-71.239715999999987,45.278046000000074],[-71.264449999999954,45.290833000000077],[-71.280562999999972,45.301933000000133],[-71.288604999999961,45.304436000000067],[-71.302779999999984,45.303047000000106],[-71.314712999999927,45.299438000000066],[-71.327498999999932,45.294441000000006],[-71.424438000000009,45.25],[-71.408614999999998,45.223045000000127],[-71.402221999999938,45.21915400000006],[-71.398894999999982,45.215546000000131],[-71.396118000000001,45.210548000000131],[-71.395843999999954,45.205268999999987],[-71.398620999999991,45.199432000000002],[-71.43249499999996,45.130272000000048],[-71.436110999999926,45.125267000000008],[-71.459166999999979,45.102776000000006],[-71.482772999999952,45.083878000000084],[-71.493056999999965,45.075271999999984],[-71.496383999999921,45.068886000000077],[-71.49888599999997,45.057213000000047],[-71.497222999999963,45.041663999999969],[-71.494155999999975,45.020546000000024],[-71.55471799999998,45.019989000000123],[-71.892776000000026,45.019157000000064],[-72.049987999999985,45.019440000000031],[-72.271652000000017,45.018775999999946],[-72.459166999999866,45.017494000000113],[-72.510283999999956,45.017212000000029],[-72.778884999999946,45.020828000000108],[-72.956389999999942,45.018326000000059],[-73.337173000000007,45.01186400000006],[-73.346114999999998,45.011383000000023],[-73.352997000000016,45.009421999999972],[-73.359267999999986,45.010063000000059],[-73.376662999999951,45.011108000000036],[-73.622771999999941,45.006660000000068],[-73.91164399999991,45.000000000000057],[-74.249161000000015,44.992218000000094],[-74.682021999999904,45.006714000000102],[-74.75111400000003,45.002220000000023],[-74.769729999999925,45.006386000000134],[-74.785827999999981,45.011383000000023],[-74.81220999999988,45.01776899999993],[-74.828887999999949,45.019157000000064],[-74.850280999999939,45.016663000000108],[-74.990829000000019,44.986655999999925],[-75.00140399999998,44.980545000000063],[-75.170546999999999,44.898604999999975],[-75.278060999999923,44.857216000000051],[-75.301666000000012,44.846656999999993],[-75.317779999999857,44.837212000000136],[-75.395843999999954,44.785827999999924],[-75.537216000000001,44.691376000000048],[-75.5625,44.673882000000106],[-75.618057000000022,44.634995000000117],[-75.628051999999968,44.627769000000001],[-75.682495000000017,44.588043000000027],[-75.736114999999927,44.546387000000038],[-75.801940999999999,44.491104000000007],[-75.81138599999997,44.483047000000056],[-75.820557000000008,44.474990999999989],[-75.824722000000008,44.469986000000119],[-75.828338999999971,44.446655000000078],[-75.834166999999979,44.43443300000007],[-75.841109999999901,44.423050000000103],[-75.849441999999954,44.414711000000068],[-75.864166000000012,44.402771000000143],[-75.879990000000021,44.393326000000059],[-75.904449,44.384995000000004],[-75.966109999999958,44.364158999999972],[-75.982177999999919,44.358864000000096],[-75.997771999999998,44.355270000000075],[-76.019454999999937,44.353325000000098],[-76.034728999999913,44.353050000000053],[-76.046950999999979,44.349716000000058],[-76.057769999999948,44.344993999999986],[-76.064437999999939,44.341377000000023],[-76.363373000000024,44.150992999999971],[-76.410278000000005,44.121101000000124],[-76.43472300000002,44.104713000000061],[-76.439986999999974,44.099434000000088],[-76.531386999999995,43.983046999999942],[-76.569457999999997,43.934157999999968],[-76.583618000000001,43.915824999999927],[-76.697494999999947,43.768600000000049],[-76.801940999999999,43.633605999999986],[-76.816955999999948,43.633049000000085],[-76.974166999999909,43.634438000000046],[-77.288329999999917,43.636658000000068],[-77.582779000000016,43.638603000000046],[-77.729996000000028,43.639160000000118],[-77.857773000000009,43.639434999999992],[-77.887222000000008,43.639434999999992],[-78.388061999999934,43.638329000000113],[-78.663054999999986,43.637497000000053],[-78.724715999999944,43.629433000000006],[-78.938323999999909,43.553878999999995],[-79.02806099999998,43.521934999999985],[-79.095275999999956,43.497771999999998],[-79.18472300000002,43.465546000000131],[-79.132216999999969,43.382492000000013],[-79.066787999999974,43.279400000000066],[-79.054169000000002,43.262496999999996],[-79.053328999999962,43.256660000000068],[-79.044997999999964,43.165543000000014],[-79.044723999999974,43.160545000000013],[-79.045836999999949,43.148880000000133],[-79.049438000000009,43.143883000000017],[-79.05972300000002,43.137215000000083],[-79.063613999999916,43.132210000000043],[-79.081115999999952,43.085548000000074],[-79.043334999999956,43.011664999999994],[-79.040832999999964,43.007774000000097],[-79.021666999999923,42.987213000000054],[-79.005843999999911,42.977211000000125],[-78.978606999999954,42.961380000000133],[-78.97193900000002,42.958046000000138],[-78.962783999999942,42.956383000000017],[-78.946655000000021,42.955551000000128],[-78.938599000000011,42.953322999999955],[-78.932770000000005,42.950829000000056],[-78.927490000000034,42.946937999999989],[-78.920273000000009,42.939156000000025],[-78.918335000000013,42.934715000000097],[-78.915282999999988,42.924164000000019],[-78.917220999999927,42.904991000000109],[-78.918335000000013,42.89888000000002],[-78.926665999999898,42.880546999999979],[-78.932219999999973,42.868324000000086],[-78.935271999999998,42.862495000000081],[-78.942490000000021,42.852493000000095],[-78.965835999999967,42.833602999999982],[-78.986937999999952,42.819992000000013],[-79.12110899999999,42.769157000000121],[-79.154448999999943,42.757217000000026],[-79.299437999999952,42.702492000000007],[-79.56645199999997,42.600708000000054],[-79.763427999999919,42.524703999999986],[-79.776672000000019,42.52027099999998],[-80.086120999999991,42.399994000000106],[-80.096953999999926,42.396385000000066],[-80.510283999999899,42.329163000000051],[-80.528548999999998,42.326617999999996],[-80.869155999999975,42.279160000000104],[-81.249161000000015,42.224991000000045],[-81.424437999999952,42.144997000000046],[-81.623610999999983,42.052773000000116],[-81.822234999999978,41.96027400000014],[-82.218062999999972,41.774437000000034],[-82.238891999999964,41.763885000000073],[-82.425277999999992,41.675551999999982],[-82.462783999999942,41.676102000000014],[-82.649993999999936,41.681938000000059],[-82.696654999999964,41.683875999999998],[-83.071944999999914,41.859717999999987],[-83.080841000000021,41.874992000000077],[-83.117415999999878,41.946194000000048],[-83.130828999999892,41.970543000000134],[-83.150283999999942,42.008330999999998],[-83.168609999999944,42.046104000000014],[-83.168335000000013,42.048050000000103],[-83.137222000000008,42.201385000000016],[-83.132492000000013,42.220824999999991],[-83.12332200000003,42.245827000000077],[-83.118056999999965,42.25777400000004],[-83.107772999999952,42.272766000000047],[-83.086959999999976,42.300545000000056],[-83.062209999999993,42.318603999999993],[-83.051940999999999,42.324715000000083],[-83.027221999999995,42.331940000000145],[-83.002227999999945,42.339157000000057],[-82.975829999999974,42.344711000000075],[-82.940551999999968,42.357498000000078],[-82.841384999999946,42.396941999999967],[-82.808884000000035,42.413322000000107],[-82.793609999999944,42.422768000000076],[-82.775283999999942,42.43721000000005],[-82.763061999999991,42.448600999999996],[-82.729996000000028,42.48333000000008],[-82.704453000000001,42.508331000000055],[-82.670273000000009,42.539993000000038],[-82.665282999999931,42.544158999999922],[-82.659103000000016,42.548195000000078],[-82.650756999999942,42.553642000000139],[-82.644973999999991,42.556411999999966],[-82.630553999999961,42.557495000000074],[-82.622222999999963,42.556656000000089],[-82.614166000000012,42.554710000000057],[-82.605835000000013,42.554161000000079],[-82.586394999999925,42.558601000000124],[-82.571670999999981,42.56888600000002],[-82.535827999999867,42.599434000000031],[-82.521392999999932,42.618881000000044],[-82.513335999999867,42.63638300000008],[-82.484726000000023,42.719154000000003],[-82.474716000000001,42.751663000000065],[-82.471114999999941,42.769989000000066],[-82.470551,42.782493999999986],[-82.47193900000002,42.793053000000043],[-82.473327999999924,42.797493000000031],[-82.480559999999912,42.812492000000134],[-82.481948999999929,42.823326000000009],[-82.481109999999944,42.829437000000098],[-82.464446999999893,42.898048000000074],[-82.462509000000011,42.904709000000025],[-82.418776999999977,43.018639000000064],[-82.404175000000009,43.049164000000076],[-82.322234999999978,43.21054799999996],[-82.252791999999943,43.346382000000119],[-82.228881999999942,43.391380000000026],[-82.146118000000001,43.553047000000106],[-82.130279999999971,43.585266000000104],[-82.214447000000007,43.952217000000132],[-82.331679999999949,44.460823000000119],[-82.430556999999965,44.882767000000115],[-82.543059999999969,45.355826999999977],[-82.629990000000021,45.396102999999982],[-82.665008999999998,45.411933999999917],[-82.954178000000013,45.54193900000007],[-83.050826999999913,45.585266000000047],[-83.11221299999994,45.612770000000069],[-83.270844000000011,45.683326999999963],[-83.500290000000007,45.784995999999978],[-83.597778000000005,45.827217000000019],[-83.523894999999982,45.918053000000043],[-83.487777999999992,45.961661999999933],[-83.447768999999994,46.011940000000095],[-83.474716000000001,46.036385000000109],[-83.483321999999987,46.043884000000105],[-83.566665999999998,46.098602000000085],[-83.577498999999989,46.105270000000075],[-83.596114999999998,46.114158999999972],[-83.610549999999932,46.119156000000089],[-83.627776999999867,46.123046999999929],[-83.663054999999872,46.126099000000067],[-83.830565999999862,46.126099000000067],[-83.846114999999941,46.124992000000134],[-83.883895999999936,46.102776000000119],[-83.888031000000012,46.096161000000109],[-83.892257999999913,46.092346000000134],[-83.898009999999942,46.08718900000008],[-83.917998999999952,46.073303000000124],[-83.923003999999935,46.070250999999985],[-83.936004999999966,46.065383999999995],[-83.942840999999987,46.066101000000003],[-83.952788999999996,46.068603999999993],[-83.958892999999932,46.071663000000115],[-83.962783999999999,46.075554000000011],[-84.076675000000023,46.203049000000135],[-84.089721999999938,46.220267999999976],[-84.099166999999909,46.232764999999972],[-84.105834999999956,46.247771999999998],[-84.15695199999999,46.391663000000108],[-84.15834000000001,46.396659999999997],[-84.160277999999948,46.424995000000024],[-84.154448999999943,46.445267000000115],[-84.149170000000026,46.457214000000079],[-84.139998999999989,46.474159000000043],[-84.121933000000013,46.498877999999991],[-84.118057000000022,46.512497000000053],[-84.118331999999953,46.518051000000071],[-84.119994999999903,46.523323000000005],[-84.12249799999995,46.527771000000143],[-84.126389000000017,46.531937000000084],[-84.132491999999957,46.53472099999999],[-84.192763999999954,46.546661000000086],[-84.408614999999884,46.508605999999986],[-84.428328999999962,46.503052000000025],[-84.434433000000013,46.500275000000101],[-84.454453000000001,46.486938000000066],[-84.459441999999967,46.482764999999915],[-84.463897999999972,46.478325000000098],[-84.474715999999944,46.463608000000079],[-84.479996000000028,46.46027400000014],[-84.486388999999974,46.458885000000123],[-84.494719999999973,46.458046000000138],[-84.512512000000015,46.45915999999994],[-84.529998999999975,46.461380000000133],[-84.565001999999993,46.466385000000002],[-84.775008999999955,46.653046000000074],[-84.787780999999995,46.68971300000004],[-84.806945999999925,46.748328999999956],[-84.825561999999877,46.806938000000059],[-84.83277899999996,46.829163000000051],[-84.856948999999986,46.902214000000072],[-84.872222999999963,46.909431000000041],[-84.917495999999971,46.928604000000121],[-85.354445999999996,47.111664000000076],[-85.464171999999905,47.157211000000132],[-85.738891999999964,47.270827999999995],[-85.839721999999938,47.31221000000005],[-86.014724999999942,47.383880999999917],[-86.051391999999964,47.39888000000002],[-86.466659999999933,47.567215000000033],[-86.568893000000003,47.608330000000024],[-86.884444999999971,47.734717999999987],[-87.201400999999976,47.860275000000115],[-87.341674999999952,47.915542999999957],[-87.444716999999969,47.955826000000002],[-88.188323999999966,48.244156000000089],[-88.368056999999908,48.31221000000005],[-88.645554000000004,48.264160000000004],[-88.691665999999941,48.255554000000075],[-88.974166999999909,48.139160000000118],[-89.323333999999988,47.993050000000096],[-89.356658999999979,47.979713000000061],[-89.447768999999937,48.003326000000015],[-89.493125999999961,48.003166000000078],[-89.556655999999975,48.001389000000131],[-89.573059000000001,48.001663000000065],[-89.57887299999993,48.00262500000008],[-89.583069000000023,48.003326000000015],[-89.598617999999931,48.006660000000011],[-89.603881999999999,48.00999500000006],[-89.608337000000006,48.014160000000061],[-89.614715999999987,48.016663000000051],[-89.750564999999995,48.029160000000047],[-89.760559000000001,48.029991000000052],[-89.838897999999972,48.01166500000005],[-89.862502999999947,48.000832000000059],[-89.888061999999991,47.991936000000123],[-89.895554000000004,47.989990000000034],[-89.903885000000002,47.989159000000029],[-89.911666999999966,47.991379000000052],[-89.982223999999974,48.016105999999979],[-89.993057000000022,48.02276599999999],[-90,48.030204999999967],[-90.000838999999985,48.031105000000025],[-90.032775999999956,48.069717000000026],[-90.056106999999997,48.100548000000117],[-90.059432999999956,48.104996000000085],[-90.065001999999936,48.10833000000008],[-90.081680000000006,48.111938000000009],[-90.12721299999987,48.119156000000032],[-90.146118000000001,48.121658000000082],[-90.156386999999938,48.122490000000028],[-90.279998999999975,48.113051999999982],[-90.740829000000019,48.090828000000045],[-90.758895999999993,48.094711000000018],[-90.769454999999937,48.099998000000085],[-90.778335999999967,48.107498000000021],[-90.838608000000022,48.184158000000025],[-90.841674999999952,48.191658000000132],[-90.843063000000029,48.205826000000002],[-90.83805799999999,48.208603000000039],[-90.833625999999924,48.209099000000094],[-90.829726999999991,48.212493999999936],[-90.829192999999975,48.214638000000093],[-90.828887999999949,48.221656999999936],[-90.830291999999929,48.225548000000003],[-90.832503999999915,48.227211000000125],[-90.849166999999909,48.233879000000115],[-90.868606999999997,48.237495000000138],[-90.898055999999883,48.236656000000039],[-90.928329000000019,48.228600000000142],[-90.969161999999926,48.214714000000129],[-91.126098999999954,48.154991000000109],[-91.14916999999997,48.144157000000064],[-91.192489999999964,48.114998000000071],[-91.232223999999974,48.087769000000094],[-91.24888599999997,48.079437000000098],[-91.269454999999994,48.07388300000008],[-91.283324999999991,48.071381000000031],[-91.311661000000015,48.069160000000124],[-91.325561999999991,48.069717000000026],[-91.34722899999997,48.068054000000075],[-91.381377999999984,48.061661000000129],[-91.392226999999934,48.056099000000017],[-91.418335000000013,48.041107000000011],[-91.462783999999942,48.057770000000062],[-91.573623999999995,48.093048000000067],[-91.645142000000021,48.098343000000114],[-91.6875,48.144714000000135],[-91.729720999999984,48.187209999999936],[-91.734160999999915,48.190543999999932],[-91.739715999999987,48.193321000000026],[-91.756957999999997,48.194434999999999],[-91.776107999999965,48.194153000000142],[-91.791672000000005,48.195267000000115],[-91.850554999999986,48.203880000000083],[-91.940276999999924,48.23054500000012],[-91.956589000000008,48.23663300000004],[-91.97084000000001,48.244437999999946],[-91.985824999999977,48.255829000000119],[-91.997771999999998,48.266662999999994],[-92.007232999999985,48.27915999999999],[-92.008895999999993,48.28276800000009],[-92.011123999999938,48.292496000000085],[-92.011672999999917,48.297493000000031],[-92.013335999999924,48.304993000000081],[-92.020554000000004,48.322769000000051],[-92.02806099999998,48.336105000000032],[-92.035552999999993,48.343605000000082],[-92.041945999999939,48.347771000000023],[-92.051940999999943,48.353882000000056],[-92.141678000000013,48.357216000000051],[-92.162216000000001,48.356658999999979],[-92.257232999999928,48.346939000000077],[-92.265014999999892,48.343605000000082],[-92.276107999999965,48.337493999999992],[-92.280288999999982,48.332771000000037],[-92.285827999999981,48.326103000000046],[-92.300551999999925,48.304993000000081],[-92.300827000000027,48.298050000000103],[-92.297225999999966,48.28943600000008],[-92.288604999999961,48.276100000000099],[-92.283614999999998,48.263885000000016],[-92.283065999999963,48.256660000000124],[-92.285552999999936,48.250549000000035],[-92.290282999999988,48.246658000000139],[-92.306716999999935,48.241592000000026],[-92.331680000000006,48.234160999999972],[-92.351943999999946,48.228325000000098],[-92.356658999999979,48.228600000000142],[-92.361664000000019,48.231102000000021],[-92.369155999999975,48.238883999999985],[-92.426392000000021,48.311661000000072],[-92.455275999999969,48.394157000000007],[-92.582229999999981,48.441375999999991],[-92.697768999999994,48.485268000000076],[-92.715285999999935,48.541382000000056],[-92.943054000000018,48.621101000000067],[-92.953063999999927,48.62332200000003],[-92.966109999999958,48.624991999999963],[-93.244995000000017,48.640549000000021],[-93.308883999999978,48.630272000000048],[-93.322509999999966,48.628044000000102],[-93.40834000000001,48.608604000000128],[-93.449996999999996,48.597214000000065],[-93.456664999999987,48.594994000000042],[-93.458618000000001,48.592491000000052],[-93.458618000000001,48.589432000000102],[-93.456116000000009,48.583054000000118],[-93.452788999999996,48.579436999999984],[-93.449721999999952,48.570549000000028],[-93.449996999999996,48.56749700000006],[-93.454177999999899,48.559714999999926],[-93.46055599999994,48.55332199999998],[-93.465835999999911,48.54972099999992],[-93.476394999999968,48.544158999999979],[-93.489440999999999,48.539718999999991],[-93.503066999999874,48.537498000000085],[-93.65695199999999,48.51527399999992],[-93.664444000000003,48.514999000000103],[-93.724166999999966,48.51388500000013],[-93.778610000000015,48.51638800000012],[-93.793059999999969,48.517768999999987],[-93.800277999999935,48.520271000000037],[-93.803604000000007,48.524712000000136],[-93.805557000000022,48.532211000000132],[-93.80972300000002,48.550270000000069],[-93.817779999999971,48.581940000000145],[-93.820007000000032,48.590546000000074],[-93.830001999999979,48.612770000000012],[-93.833327999999995,48.616386000000034],[-93.842498999999975,48.623604000000057],[-93.851944000000003,48.626938000000052],[-93.865554999999972,48.630272000000048],[-93.880553999999961,48.630272000000048],[-93.885283999999899,48.630272000000048],[-94.063888999999961,48.638046000000031],[-94.111937999999896,48.641106000000093],[-94.134170999999867,48.642769000000044],[-94.235275000000001,48.653046000000018],[-94.250564999999995,48.656097000000045],[-94.252791999999886,48.65776800000009],[-94.25418099999996,48.660545000000013],[-94.252228000000002,48.671379000000059],[-94.252228000000002,48.679993000000138],[-94.256667999999934,48.687767000000122],[-94.263061999999991,48.694153000000028],[-94.271117999999888,48.699158000000068],[-94.278610000000015,48.702492000000063],[-94.291107000000011,48.706099999999992],[-94.305832000000009,48.708328000000108],[-94.390563999999927,48.711105000000032],[-94.406112999999948,48.711105000000032],[-94.414169000000015,48.709991000000059],[-94.433318999999983,48.701934999999992],[-94.453613000000018,48.695824000000073],[-94.460555999999997,48.694435000000112],[-94.476395000000025,48.693878000000041],[-94.500838999999985,48.696938000000046],[-94.523894999999925,48.701934999999992],[-94.605835000000013,48.724433999999917],[-94.637221999999952,48.739159000000086],[-94.643616000000009,48.743049999999982],[-94.689986999999917,48.774712000000079],[-94.699996999999996,48.782767999999976],[-94.706664999999987,48.79055000000011],[-94.709441999999967,48.803047000000106],[-94.711120999999991,48.846382000000062],[-94.710007000000019,48.855270000000075],[-94.709075999999982,48.857948000000135],[-94.705001999999979,48.862770000000125],[-94.700287000000003,48.868881000000044],[-94.699722000000008,48.871101000000067],[-94.700287000000003,48.895271000000037],[-94.701675000000023,48.909714000000122],[-94.704178000000013,48.924438000000009],[-94.707503999999972,48.941932999999949],[-94.71665999999999,48.970543000000021],[-94.720550999999887,48.978874000000076],[-94.727218999999934,48.99221799999998],[-94.732773000000009,49.001663000000065],[-94.745270000000005,49.028603000000089],[-94.766952999999944,49.075554000000125],[-94.797774999999945,49.155822999999998],[-94.798889000000031,49.159156999999993],[-94.804717999999866,49.17971799999998],[-94.806655999999975,49.193603999999993],[-94.81527699999998,49.29332700000009],[-94.815552000000025,49.306099000000131],[-94.818344000000025,49.309989999999971],[-94.821944999999971,49.312767000000065],[-94.922775000000001,49.355827000000033],[-94.935927999999933,49.360297999999943],[-94.946380999999974,49.36221299999994],[-94.958617999999944,49.361664000000019],[-94.96556099999998,49.360275000000001],[-94.998610999999983,49.357498000000078],[-95.025833000000034,49.357498000000078],[-95.078063999999927,49.359161000000029],[-95.085662999999954,49.360023000000126],[-95.120834000000002,49.364998000000014],[-95.142501999999922,49.371658000000025],[-95.152785999999935,49.376656000000025],[-95.154174999999952,49.366386000000091],[-95.154448999999886,49.333328000000108],[-95.153960999999981,49.173332000000073],[-95.154174999999952,48.999435000000119],[-95.26655599999998,48.999977000000001],[-97.219940000000008,48.999718000000087],[-97.502791999999943,48.999435000000119],[-97.635833999999988,48.999435000000119],[-97.801940999999999,49.000000000000114],[-97.969161999999926,49.000274999999988],[-98.26916499999993,49.000274999999988],[-98.502227999999889,48.999435000000119],[-98.868606999999997,49.000000000000114],[-99.335555999999997,48.999435000000119],[-99.835555999999997,49.000000000000114],[-100.00222799999995,49.000000000000114],[-100.50195300000001,48.999718000000087],[-101.06916799999999,49.000000000000114],[-101.30222299999997,49.000274999999988],[-101.367233,48.998787000000107],[-101.46888699999994,48.999435000000119],[-102.16887699999995,49.000000000000114],[-102.33556399999998,48.999435000000119],[-102.53555299999994,49.000274999999988],[-102.76834099999996,48.999435000000119],[-103.03527800000001,48.999435000000119],[-103.16832699999992,48.999435000000119],[-103.26889,49.000000000000114],[-103.43554699999993,49.000274999999988],[-103.53527800000001,48.999435000000119],[-103.73528299999987,48.999435000000119],[-104.033096,49.000251999999989],[-104.13527699999986,48.999718000000087],[-104.33500699999996,48.999435000000119],[-104.83500700000002,48.999435000000119],[-105.00140399999998,48.999435000000119],[-105.26834100000002,49.000000000000114],[-105.70221699999996,48.999435000000119],[-105.93554699999999,48.999435000000119],[-106.03472899999991,48.999435000000119],[-106.13527699999997,48.999435000000119],[-106.26862299999993,48.999435000000119],[-106.46806300000003,48.999435000000119],[-106.73554999999993,48.999435000000119],[-107.33528100000001,49.000000000000114],[-107.43499800000001,49.000000000000114],[-107.63474300000001,48.999435000000119],[-107.73554999999993,48.999435000000119],[-107.80110199999996,48.999435000000119],[-108.16887700000001,48.999435000000119],[-108.33500699999996,48.999435000000119],[-108.53472899999997,48.999435000000119],[-108.6677699999999,48.999435000000119],[-108.83473200000003,48.999435000000119],[-109.33473200000003,48.999435000000119],[-109.63474299999996,48.999435000000119],[-109.801941,48.999435000000119],[-109.96777299999997,48.999718000000087],[-109.99965700000001,49.000603000000126],[-110.10138699999999,48.999435000000119],[-110.20111099999991,48.999435000000119],[-110.30166599999995,49.000000000000114],[-110.36776699999996,49.000000000000114],[-110.50110599999988,49.000000000000114],[-110.66777000000002,49.000000000000114],[-110.76862299999993,48.999435000000119],[-111.36833199999995,48.999435000000119],[-111.80110199999996,48.999435000000119],[-112.03472899999997,48.999435000000119],[-112.16832699999998,48.999435000000119],[-112.234734,49.000000000000114],[-112.33500699999996,49.000000000000114],[-112.43499799999995,49.000000000000114],[-112.53500399999996,49.000000000000114],[-112.60166900000002,49.000000000000114],[-112.93472300000002,49.000000000000114],[-113.03443900000002,49.000000000000114],[-113.23416099999997,48.999435000000119],[-113.36833200000001,48.999435000000119],[-113.567497,48.999435000000119],[-114.03443899999991,48.999435000000119],[-114.05985999999996,49.000603000000126],[-114.33500700000002,48.999435000000119],[-114.46749899999992,48.999435000000119],[-114.53472899999991,49.000000000000114],[-114.63390399999997,49.000000000000114],[-114.90110800000002,48.999435000000119],[-115.03415699999999,48.999435000000119],[-115.16750299999995,48.999435000000119],[-115.36805700000002,49.000000000000114],[-115.46806300000003,49.000000000000114],[-115.56723,49.000000000000114],[-115.60138699999987,48.999435000000119],[-115.734444,48.999435000000119],[-116.04833999999994,48.999718000000087],[-117.00140399999998,48.999718000000087],[-117.03662099999997,49.003128000000117],[-117.06722999999994,48.999718000000087],[-117.20084399999996,48.999435000000119],[-117.234734,49.000000000000114],[-117.30055199999993,49.000000000000114],[-117.567497,49.000000000000114],[-117.83444199999991,49.000000000000114],[-117.86749299999997,48.999435000000119],[-118.00083899999998,48.999435000000119],[-118.13417099999998,48.999435000000119],[-118.36805699999996,48.999435000000119],[-118.76777600000003,48.999435000000119],[-118.96749899999992,48.999435000000119],[-119.13417099999987,48.999435000000119],[-119.26722699999999,48.999435000000119],[-119.46777299999985,48.999435000000119],[-119.86749299999991,48.999435000000119],[-119.93415800000002,48.999435000000119],[-120.03415699999999,48.999435000000119],[-120.53472899999997,48.999435000000119],[-121.08497599999993,48.999718000000087],[-122.10056299999997,49.000000000000114],[-122.33389299999993,49.000000000000114],[-122.43360899999993,49.000000000000114],[-122.56667299999992,49.000000000000114],[-122.69999699999994,49.000000000000114],[-122.76030000000003,48.999435000000119],[-122.81360599999994,49.005272000000048],[-122.83112299999999,49.008606000000043],[-122.86250299999989,49.022217000000012],[-122.87777699999998,49.032211000000018],[-122.87970699999994,49.034438999999963],[-122.88110399999999,49.038605000000075],[-122.87748699999986,49.049438000000066],[-122.87609900000001,49.051383999999928],[-122.87249799999989,49.054436000000067],[-122.86416600000001,49.061661000000129],[-122.85888699999992,49.067497000000003],[-122.85804699999994,49.072769000000108],[-122.859444,49.077217000000076],[-122.86638599999998,49.081107999999972],[-122.87444299999999,49.083602999999982],[-122.89998600000001,49.087211999999965],[-122.91887700000001,49.087211999999965],[-122.94167299999992,49.082496999999933],[-123.02194199999997,49.051658999999972],[-123.03916900000002,49.042496000000142],[-123.04666099999997,49.033332999999971],[-123.048607,49.027214000000129],[-123.04833999999994,49.022491000000116],[-123.04778299999998,49.018326000000116],[-123.03916900000002,49.005272000000048],[-123.03431699999999,48.999435000000119],[-123.09374999999994,48.999435000000119],[-123.11332699999997,49.036658999999986],[-123.13890099999998,49.107216000000108],[-123.14835399999998,49.10833000000008],[-123.20500199999998,49.123603999999943],[-123.20973200000003,49.127212999999983],[-123.247772,49.265273999999977],[-123.24889399999995,49.273605000000032],[-123.24749800000001,49.275551000000121],[-123.09449799999993,49.283938999999975],[-123.00933800000001,49.281944000000067],[-122.94332900000001,49.284164000000089],[-122.92360699999995,49.28833000000003],[-122.91251399999999,49.29332700000009],[-122.87917299999998,49.339157000000114],[-122.87499999999994,49.351387000000045],[-122.85388199999994,49.429993000000138],[-122.85278299999999,49.436104000000057],[-122.85333300000002,49.438880999999924],[-122.86054999999993,49.447487000000024],[-122.87082700000002,49.457214000000022],[-122.87638899999996,49.455551000000071],[-122.87832600000002,49.449432000000058],[-122.876938,49.429993000000138],[-122.87721299999993,49.414992999999981],[-122.88110399999999,49.40277100000003],[-122.88583399999993,49.391936999999984],[-122.90139799999992,49.360550000000046],[-122.91555800000003,49.342216000000064],[-122.93138099999999,49.328049000000135],[-123.00538599999999,49.319549999999992],[-123.03671999999989,49.313217000000009],[-123.04521899999992,49.312550000000044],[-123.06339299999996,49.313217000000009],[-123.08023100000003,49.315547999999978],[-123.23638900000003,49.338882000000069],[-123.25418099999996,49.384720000000016],[-123.25666799999993,49.512772000000041],[-123.25334199999992,49.523048000000131],[-123.24722299999996,49.534995999999978],[-123.20162199999999,49.615715000000137],[-123.1558379999999,49.676102000000014],[-123.15416700000003,49.67943600000001],[-123.15222199999994,49.685547000000099],[-123.15361000000001,49.690269000000001],[-123.15972899999997,49.699158000000068],[-123.16471899999993,49.702217000000019],[-123.16777000000002,49.702217000000019],[-123.17027300000001,49.701103000000046],[-123.24194299999999,49.660544999999956],[-123.24804699999993,49.648605000000089],[-123.24804699999993,49.639717000000076],[-123.26677699999999,49.617378000000031],[-123.26594499999999,49.610382000000129],[-123.265106,49.607880000000023],[-123.26494600000001,49.603713999999968],[-123.26576999999997,49.598381000000131],[-123.26812000000001,49.595551000000114],[-123.27095799999995,49.593215999999984],[-123.27977799999991,49.590050000000019],[-123.34333800000002,49.561378000000047],[-123.38110399999999,49.556655999999975],[-123.39444699999996,49.551933000000133],[-123.43028299999997,49.538329999999974],[-123.48306300000002,49.516663000000108],[-123.49249299999997,49.509720000000129],[-123.495003,49.506943000000035],[-123.49610899999993,49.500275000000045],[-123.49416399999996,49.468596999999988],[-123.491669,49.463608000000022],[-123.48777799999993,49.46054799999996],[-123.47778299999993,49.455268999999987],[-123.47416699999997,49.450828999999999],[-123.47332799999992,49.441101000000117],[-123.47609699999998,49.421936000000017],[-123.47666899999996,49.419159000000093],[-123.48194899999993,49.409988000000112],[-123.48665599999993,49.406097000000045],[-123.506958,49.389435000000049],[-123.512787,49.386383000000137],[-123.51944699999996,49.383881000000088],[-123.52694700000001,49.382210000000043],[-123.53555299999994,49.381378000000097],[-123.54499800000002,49.383331000000055],[-123.60109699999987,49.397490999999945],[-123.60610999999994,49.399994000000106],[-123.67555199999998,49.425269999999955],[-123.77500900000001,49.458327999999995],[-123.85500299999995,49.468879999999956],[-123.86165599999993,49.46665999999999],[-123.88082899999995,49.466385000000116],[-123.88890100000003,49.468048000000067],[-123.89611799999994,49.470543000000077],[-123.95973200000003,49.510551000000135],[-123.96362299999993,49.513329000000113],[-123.98860200000001,49.541663999999969],[-124.06806899999992,49.633881000000031],[-124.07055700000001,49.638046000000031],[-124.07112099999995,49.644440000000088],[-124.07028199999991,49.649719000000061],[-124.05915800000002,49.671104000000014],[-124.03250100000002,49.713882000000126],[-124.02861000000001,49.71915400000006],[-124.021118,49.726379000000065],[-124.00527999999997,49.735825000000034],[-123.99833699999999,49.738884000000041],[-123.987213,49.743050000000096],[-123.97528099999994,49.745270000000119],[-123.95694700000001,49.746101000000124],[-123.94748700000002,49.744995000000131],[-123.94055199999997,49.742493000000024],[-123.93443299999996,49.739432999999963],[-123.92971799999992,49.735825000000034],[-123.876938,49.683327000000077],[-123.83306900000002,49.627486999999974],[-123.82917799999996,49.616936000000067],[-123.82444800000002,49.595825000000048],[-123.82277699999997,49.585548000000074],[-123.82333399999999,49.581383000000073],[-123.82224300000001,49.573051000000078],[-123.79972800000002,49.519440000000031],[-123.79444899999993,49.510277000000031],[-123.78971899999999,49.506660000000068],[-123.78250099999997,49.504166000000112],[-123.77639799999992,49.503882999999973],[-123.76972999999998,49.504715000000033],[-123.76640299999991,49.506660000000068],[-123.76390100000003,49.509438000000046],[-123.76139799999999,49.513329000000113],[-123.75389100000001,49.537773000000072],[-123.76862299999993,49.561935000000119],[-123.77139299999999,49.572220000000073],[-123.77223200000003,49.581940000000145],[-123.77027900000002,49.588043000000084],[-123.74017300000003,49.602599999999995],[-123.73733500000003,49.605270000000075],[-123.73517599999991,49.606937000000016],[-123.69599899999997,49.623604000000057],[-123.68683599999997,49.625603000000069],[-123.67283599999996,49.625271000000112],[-123.63890099999998,49.634995000000004],[-123.61501299999992,49.639160000000004],[-123.56331599999999,49.667213000000118],[-123.54695100000004,49.677215999999987],[-123.53751399999993,49.684990000000028],[-123.53362300000003,49.689712999999983],[-123.53167699999995,49.695541000000105],[-123.53222699999998,49.700546000000145],[-123.53388999999993,49.701934999999992],[-123.54167199999989,49.701103000000046],[-123.54998799999998,49.693877999999984],[-123.56054699999993,49.686935000000005],[-123.57195299999995,49.680824000000086],[-123.58556399999992,49.676102000000014],[-123.67578100000003,49.653046000000018],[-123.69061299999993,49.651051000000109],[-123.73978399999999,49.645882000000029],[-123.75010700000001,49.64521400000001],[-123.79666099999997,49.638328999999999],[-123.80387899999999,49.640831000000048],[-123.8125,49.647491000000116],[-123.93499800000001,49.768326000000002],[-123.93749999999989,49.77276599999999],[-123.93582200000003,49.778046000000074],[-123.93055699999996,49.785271000000137],[-123.91999800000002,49.792495999999971],[-123.88890100000003,49.819717000000026],[-123.88500999999997,49.823608000000092],[-123.88249199999996,49.82749200000012],[-123.87970699999994,49.832771000000093],[-123.87638900000002,49.842215999999951],[-123.87332200000003,49.864158999999916],[-123.87249799999995,49.87110100000001],[-123.872772,49.877212999999983],[-123.88500999999997,49.914993000000095],[-123.889183,49.922767999999962],[-123.89417300000002,49.92721599999993],[-123.90139799999992,49.928879000000052],[-123.91082799999998,49.930275000000108],[-123.920547,49.928604000000064],[-123.92999299999997,49.929718000000037],[-123.93720999999994,49.932213000000047],[-123.94193999999999,49.936104000000114],[-123.94860799999998,49.943877999999927],[-123.95472699999999,49.953049000000078],[-123.95889299999999,49.962212000000079],[-123.929779,49.985321000000056],[-123.929283,49.989493999999979],[-123.92544599999997,49.994156000000089],[-123.92044099999998,49.997325999999987],[-123.88160700000003,50.01499600000011],[-123.87343599999986,50.018326000000116],[-123.860771,50.021660000000111],[-123.85294299999998,50.022995000000037],[-123.84310199999999,50.023659000000123],[-123.80832699999996,50.040276000000119],[-123.79611199999994,50.04444100000012],[-123.75334199999998,50.07638500000013],[-123.74861099999998,50.080276000000026],[-123.74445300000002,50.086936999999921],[-123.74944299999999,50.09665700000005],[-123.82140399999997,50.152213999999958],[-123.83056599999998,50.156936999999971],[-123.846947,50.163321999999994],[-123.97778299999993,50.213882000000012],[-123.98500100000001,50.216103000000089],[-123.99054699999999,50.215828000000101],[-123.99109599999986,50.21166199999999],[-123.98832699999997,50.207496999999989],[-123.96056399999998,50.180550000000096],[-123.94695300000001,50.169441000000006],[-123.93720999999994,50.163321999999994],[-123.92388899999992,50.158600000000092],[-123.90583800000002,50.15638000000007],[-123.88806199999988,50.152489000000003],[-123.882767,50.150826000000052],[-123.87165800000002,50.145546000000024],[-123.80915799999997,50.099998000000085],[-123.8125,50.090546000000131],[-123.81639099999995,50.086105000000032],[-123.85716200000002,50.066883000000132],[-123.86933099999993,50.058048000000099],[-123.87499999999994,50.054214000000115],[-123.87899799999997,50.052380000000085],[-123.916,50.039883000000088],[-123.95465899999988,50.029217000000074],[-123.99526999999989,50.011664999999994],[-123.99916099999996,50.00638600000002],[-124,50.000275000000101],[-123.99916099999996,49.990547000000106],[-123.99526999999989,49.961662000000047],[-123.99249299999997,49.942764000000125],[-123.99109599999986,49.937209999999993],[-123.98860200000001,49.931664000000126],[-123.97972099999998,49.916663999999969],[-123.96721600000001,49.906380000000127],[-123.95140100000003,49.895828000000108],[-123.91972399999992,49.877769000000001],[-123.91471899999993,49.873878000000104],[-123.91111799999999,49.869713000000104],[-123.922234,49.834435000000099],[-123.92639199999996,49.825828999999999],[-123.97277799999989,49.80471],[-123.97833299999996,49.803047000000106],[-123.98581699999994,49.802772999999945],[-123.99194299999994,49.804436000000067],[-124.00418100000002,49.810546999999985],[-124.01012400000002,49.834602000000075],[-124.00862100000001,49.841938000000084],[-124.00728600000002,49.856769999999983],[-124.01806599999998,49.909156999999993],[-124.02166699999987,49.91415400000011],[-124.029449,49.920547000000056],[-124.037781,49.922493000000145],[-124.04222099999998,49.921379000000002],[-124.04472399999997,49.917496000000028],[-124.068893,49.878876000000105],[-124.07195299999995,49.873322000000087],[-124.07028199999991,49.869156000000032],[-124.06261399999988,49.846328999999912],[-124.05877700000002,49.841991000000007],[-124.05860899999999,49.838325999999995],[-124.06028000000003,49.835158999999976],[-124.08444199999991,49.799164000000133],[-124.09028599999999,49.795830000000137],[-124.14555399999995,49.779716000000008],[-124.17694099999989,49.773604999999975],[-124.18582199999997,49.77276599999999],[-124.2702789999999,49.768051000000128],[-124.40416700000003,49.763329000000056],[-124.41361999999998,49.763610999999969],[-124.42916899999994,49.766388000000006],[-124.43639400000001,49.768883000000073],[-124.51194800000002,49.796104000000071],[-124.52166699999992,49.804161000000079],[-124.52443699999998,49.808327000000133],[-124.52583300000003,49.813880999999981],[-124.52583300000003,49.831665000000044],[-124.52749599999987,49.837212000000022],[-124.53278399999999,49.844437000000084],[-124.57195299999995,49.874435000000005],[-124.59137699999997,49.883049000000085],[-124.63221699999997,49.899436999999921],[-124.702789,49.934989999999971],[-124.74194299999999,49.958328000000051],[-124.77306399999992,49.985825000000034],[-124.80332900000002,50.020271000000093],[-124.82556199999999,50.051384000000098],[-124.82972699999999,50.061935000000005],[-124.828056,50.066666000000112],[-124.82140400000003,50.069160000000068],[-124.81304899999992,50.067496999999946],[-124.80695300000002,50.06360600000005],[-124.76722699999988,50.036385000000053],[-124.70333900000003,49.995543999999995],[-124.66805999999991,50.07027400000004],[-124.61694299999999,50.179161000000079],[-124.60193599999997,50.234993000000031],[-124.60138699999993,50.238884000000098],[-124.60417200000001,50.243881000000044],[-124.63110399999999,50.279716000000121],[-124.63890100000003,50.286942000000067],[-124.665009,50.303879000000052],[-124.708618,50.318329000000006],[-124.71362299999987,50.321937999999989],[-124.71501199999994,50.327492000000007],[-124.65778399999994,50.386108000000092],[-124.65194699999989,50.389160000000061],[-124.62609899999995,50.398330999999985],[-124.60193599999997,50.40277100000003],[-124.58055100000001,50.399990000000116],[-124.57555400000001,50.39899400000013],[-124.57122800000002,50.397495000000106],[-124.54998799999993,50.393883000000017],[-124.53362300000003,50.395827999999995],[-124.51999699999999,50.399994000000106],[-124.43415800000002,50.431664000000012],[-124.42054699999994,50.43721000000005],[-124.39862099999999,50.450545999999974],[-124.38305700000001,50.462212000000136],[-124.36138900000003,50.479713000000118],[-124.35193600000002,50.487495000000081],[-124.34805299999999,50.492218000000037],[-124.34528399999988,50.497489999999971],[-124.34777800000001,50.50249500000001],[-124.35527000000002,50.504997000000117],[-124.36389200000002,50.503882999999917],[-124.378601,50.499161000000015],[-124.38445299999995,50.49610100000001],[-124.39388999999989,50.488884000000041],[-124.39778099999995,50.484161000000086],[-124.40055799999993,50.478874000000133],[-124.404449,50.4741590000001],[-124.40915699999999,50.470268000000033],[-124.42749000000003,50.462212000000136],[-124.51834099999991,50.432212999999933],[-124.58383199999997,50.414051000000029],[-124.58833300000003,50.41338300000001],[-124.59999800000003,50.413048000000003],[-124.71167000000003,50.375549000000092],[-124.73916599999995,50.351936000000137],[-124.80332900000002,50.317772000000105],[-124.81582600000002,50.312209999999993],[-124.83000199999992,50.30943300000007],[-124.85056299999991,50.309714999999983],[-124.93916299999995,50.325271999999984],[-125.06388900000002,50.317772000000105],[-125.07224299999996,50.319442999999978],[-125.07833900000003,50.322495000000117],[-125.08416699999998,50.329719999999952],[-125.08889799999997,50.346382000000119],[-125.08750900000001,50.357215999999994],[-125.05666399999996,50.476936000000023],[-125.05194099999989,50.480820000000051],[-125.04499799999996,50.48333000000008],[-125.02667199999996,50.483047000000113],[-125.01806599999998,50.484161000000086],[-124.97112299999998,50.498047000000042],[-124.96528599999999,50.50110600000005],[-124.88082900000001,50.560546999999985],[-124.85973399999989,50.585823000000062],[-124.858047,50.590546000000018],[-124.85444599999994,50.691376000000105],[-124.86888099999999,50.764998999999989],[-124.87805200000003,50.811377999999991],[-124.86749299999997,50.817771999999991],[-124.78943599999991,50.88110400000005],[-124.78694199999995,50.884438000000046],[-124.78751399999993,50.889160000000118],[-124.79998799999998,50.91304800000006],[-124.80277999999998,50.9180530000001],[-124.80583200000001,50.920830000000024],[-124.81916799999993,50.926384000000041],[-124.84999099999993,50.935265000000129],[-124.85417200000001,50.935547000000042],[-124.86138900000003,50.928879000000052],[-124.92443800000001,50.834717000000126],[-124.9449919999999,50.775268999999923],[-124.91221599999994,50.699431999999945],[-124.90139799999997,50.630271999999991],[-124.90194700000001,50.62471000000005],[-124.90361000000001,50.619987000000094],[-124.91111799999999,50.611382000000049],[-124.92887899999994,50.596382000000062],[-125.02694700000001,50.540833000000077],[-125.09944200000001,50.5],[-125.10417199999989,50.496941000000049],[-125.11277799999999,50.487495000000081],[-125.11694299999999,50.478043000000127],[-125.118607,50.471930999999984],[-125.11193800000001,50.452492000000063],[-125.11138899999997,50.447769000000108],[-125.11221299999994,50.44221500000009],[-125.11472299999997,50.436935000000005],[-125.11945300000002,50.432770000000005],[-125.12526700000001,50.429718000000094],[-125.17027299999995,50.412491000000102],[-125.17777999999998,50.41137700000013],[-125.1875,50.412491000000102],[-125.195831,50.414711000000068],[-125.20221699999991,50.417213000000004],[-125.20722999999998,50.420830000000137],[-125.24610899999993,50.462212000000136],[-125.33612099999993,50.479713000000118],[-125.40361000000001,50.473602000000028],[-125.42166099999992,50.465271000000143],[-125.44275699999997,50.459435000000042],[-125.46028099999995,50.457214000000135],[-125.48832700000003,50.45638300000013],[-125.54444899999993,50.490379000000132],[-125.54811099999995,50.492050000000006],[-125.54928599999994,50.494549000000006],[-125.54961399999996,50.497547000000054],[-125.54911799999996,50.501545000000135],[-125.53222700000003,50.62721300000004],[-125.51944700000001,50.647217000000126],[-125.51194800000002,50.657211000000132],[-125.50723299999999,50.661102000000028],[-125.50055699999996,50.663048000000117],[-125.48194899999999,50.664993000000095],[-125.46749899999998,50.668602000000135],[-125.45612299999999,50.674995000000081],[-125.45140100000003,50.678879000000109],[-125.42804699999999,50.705551000000014],[-125.42555199999998,50.710823000000119],[-125.43277,50.713882000000069],[-125.44360399999999,50.714157000000114],[-125.45889299999993,50.713608000000136],[-125.46639999999996,50.713051000000064],[-125.47332799999998,50.709159999999997],[-125.53778099999994,50.669991000000095],[-125.54723399999995,50.661933999999974],[-125.55832699999996,50.648048000000131],[-125.56388900000002,50.637214999999969],[-125.56806899999998,50.62721300000004],[-125.57167099999998,50.611382000000049],[-125.57224300000001,50.605270000000075],[-125.5849,50.571323000000064],[-125.58206899999999,50.56582300000008],[-125.58039099999996,50.563656000000037],[-125.5800549999999,50.559994000000074],[-125.58623499999999,50.536659000000043],[-125.610229,50.489326000000062],[-125.61238900000001,50.486492000000055],[-125.63722200000001,50.445540999999935],[-125.65167200000002,50.441375999999934],[-125.69249000000002,50.429993000000138],[-125.700287,50.428047000000049],[-125.70584099999996,50.427773000000116],[-125.71611000000001,50.432212999999933],[-125.84665699999994,50.502777000000094],[-125.86472300000003,50.495269999999948],[-125.93028299999992,50.473602000000028],[-125.95221700000002,50.468880000000127],[-125.968613,50.468880000000127],[-126.06331599999999,50.470825000000104],[-126.15915699999999,50.484992999999974],[-126.19332900000001,50.490273000000059],[-126.26777599999997,50.504997000000117],[-126.27500899999995,50.50750000000005],[-126.27916700000003,50.51166500000005],[-126.2808379999999,50.515830999999991],[-126.279449,50.520546000000024],[-126.27694700000001,50.524712000000079],[-126.22670699999998,50.536285000000021],[-126.18665299999998,50.548405000000059],[-126.18559999999997,50.566322000000014],[-126.23805199999998,50.591377000000023],[-126.25167799999991,50.609718000000044],[-126.26418299999995,50.615547000000049],[-126.27500899999995,50.627486999999974],[-126.27471899999995,50.631660000000068],[-126.266953,50.634720000000129],[-126.02006499999999,50.66188000000011],[-126.014725,50.662048000000141],[-125.90856200000002,50.664046999999982],[-125.73832699999997,50.682213000000104],[-125.69387799999993,50.704712000000029],[-125.62249799999995,50.750000000000114],[-125.61776700000001,50.754166000000055],[-125.54305999999991,50.863884000000098],[-125.53778099999994,50.87193300000007],[-125.51000999999997,50.921661000000029],[-125.50723299999999,50.926941000000113],[-125.50556899999998,50.93332700000002],[-125.50666799999993,50.945541000000048],[-125.50834699999996,50.951102999999989],[-125.55166600000001,51.042221000000097],[-125.56555200000003,51.056380999999988],[-125.58167999999995,51.072220000000129],[-125.59306299999997,51.07888000000014],[-125.610817,51.087769000000037],[-125.63390400000003,51.096939000000077],[-125.63722200000001,51.096382000000006],[-125.63890100000003,51.090271000000087],[-125.639183,51.077217000000019],[-125.63806199999999,51.06610100000006],[-125.58332799999999,50.974709000000018],[-125.61028299999987,50.89888000000002],[-125.69110099999995,50.771378000000084],[-125.73110999999989,50.735550000000046],[-125.81527699999987,50.707214000000079],[-125.96383700000001,50.688660000000084],[-126.12516799999997,50.678989000000115],[-126.13100400000002,50.678658000000098],[-126.133667,50.678825000000074],[-126.13799999999998,50.681827999999996],[-126.13917500000002,50.683495000000107],[-126.22222899999991,50.69110100000006],[-126.21362299999993,50.70388000000014],[-126.20889299999999,50.70777099999998],[-126.20333899999997,50.711104999999975],[-126.11165599999993,50.753883000000087],[-126.19888299999997,50.85582700000009],[-126.26944700000001,50.858047000000113],[-126.37609899999995,50.855270000000019],[-126.39750699999996,50.848602000000028],[-126.40306099999998,50.845268000000033],[-126.42166099999997,50.829437000000098],[-126.42748999999992,50.826103000000103],[-126.43415799999997,50.823608000000092],[-126.44304699999998,50.821663000000058],[-126.49333199999995,50.81638300000003],[-126.55277999999998,50.834717000000126],[-126.55695300000002,50.838882000000126],[-126.55972299999996,50.843880000000127],[-126.557503,50.876656000000082],[-126.55359599999991,50.881377999999984],[-126.53611799999999,50.898048000000074],[-126.531387,50.901932000000102],[-126.50110599999999,50.916099999999972],[-126.49445300000002,50.9180530000001],[-126.48332199999999,50.919158999999979],[-126.47471599999994,50.917496000000028],[-126.468613,50.914436000000137],[-126.46444700000001,50.910271000000137],[-126.45805399999995,50.907211000000075],[-126.36833200000001,50.901932000000102],[-126.35833700000001,50.901382000000069],[-126.24638400000003,50.898604999999975],[-126.22582999999997,50.898604999999975],[-126.21028100000001,50.902771000000087],[-126.20445299999994,50.90554800000001],[-126.18388399999992,50.918602000000078],[-126.17555199999993,50.92582700000014],[-126.17027299999995,50.936653000000035],[-126.17166099999997,50.946381000000088],[-126.17471299999988,50.950546000000088],[-126.17777999999998,50.951385000000016],[-126.181107,50.950829000000056],[-126.18888899999996,50.948875000000044],[-126.20028699999989,50.942490000000021],[-126.20500199999992,50.93832400000008],[-126.21556099999998,50.931106999999997],[-126.228882,50.926102000000128],[-126.24553700000001,50.923325000000034],[-126.30860899999999,50.925270000000012],[-126.412216,50.936104000000114],[-126.42639200000002,50.938599000000124],[-126.5625,50.907767999999976],[-126.56833599999993,50.903877000000136],[-126.58084099999996,50.898604999999975],[-126.66139199999998,50.868049999999982],[-126.67777999999998,50.866385999999977],[-126.72165699999994,50.876099000000011],[-126.80638099999999,50.909156999999993],[-126.81916799999999,50.915824999999984],[-126.90261799999996,50.905098000000066],[-126.90595199999996,50.90410200000008],[-126.91711399999997,50.903439000000105],[-127.01471700000002,50.903877000000136],[-127.04804999999993,50.910271000000137],[-127.08556399999998,50.921378999999945],[-127.112213,50.931106999999997],[-127.1641689999999,50.932495000000074],[-127.17639200000002,50.929161000000079],[-127.17999299999991,50.92582700000014],[-127.17804699999994,50.920273000000122],[-127.17166099999992,50.917496000000028],[-127.06276699999995,50.885269000000051],[-127.01883700000002,50.868267000000003],[-127.00765999999993,50.867939000000035],[-126.976158,50.870438000000036],[-126.97166400000003,50.869938000000047],[-126.96916999999991,50.869105999999931],[-126.96599600000002,50.86693600000001],[-126.96681999999998,50.864101000000062],[-127.01471700000002,50.819443000000092],[-127.02250700000002,50.817497000000003],[-127.03333299999997,50.817771999999991],[-127.047234,50.821663000000058],[-127.05776999999995,50.828048999999965],[-127.06166100000002,50.832213999999965],[-127.06696299999993,50.835823000000005],[-127.07333399999993,50.838882000000126],[-127.13276699999994,50.862212999999997],[-127.243607,50.896659999999997],[-127.33444199999997,50.906936999999971],[-127.39862099999993,50.926384000000041],[-127.43055699999991,50.940544000000102],[-127.53527800000001,51.000549000000035],[-127.53832999999997,51.005554000000075],[-127.53806299999997,51.008330999999998],[-127.502792,51.097487999999998],[-127.495003,51.0991590000001],[-127.47749299999992,51.097487999999998],[-127.43582199999997,51.082771000000037],[-127.40888999999987,51.071938000000046],[-127.39306599999992,51.064712999999983],[-127.38137799999998,51.059714999999983],[-127.3683319999999,51.055267000000015],[-127.354446,51.051659000000086],[-127.33056599999998,51.048331999999959],[-127.24249299999997,51.041382000000112],[-127.23610699999995,51.041107000000125],[-127.21861299999995,51.040832999999964],[-127.09612299999998,51.043883999999991],[-126.99873400000001,51.058883999999978],[-126.97956099999999,51.062881000000118],[-126.94840199999999,51.067050999999992],[-126.87339800000001,51.072883999999988],[-126.86672999999996,51.072716000000128],[-126.82656899999995,51.067050999999992],[-126.81689499999987,51.064716000000033],[-126.69167299999998,51.110550000000046],[-126.68694299999999,51.114716000000101],[-126.65278599999999,51.149994000000106],[-126.65139799999997,51.153320000000008],[-126.65110799999997,51.157494000000042],[-126.654449,51.185822000000144],[-126.65527299999997,51.187766999999951],[-126.65834000000001,51.192764000000068],[-126.66251399999993,51.194992000000013],[-126.67582700000003,51.193878000000041],[-126.67916899999994,51.192764000000068],[-126.68167099999994,51.188599000000067],[-126.68250299999994,51.176383999999985],[-126.68167099999994,51.172768000000076],[-126.68331899999998,51.165268000000026],[-126.68831599999999,51.157211000000075],[-126.69666299999994,51.14777400000014],[-126.71749899999998,51.132767000000115],[-126.84055299999989,51.094936000000075],[-126.84654999999992,51.093105000000094],[-126.85589599999997,51.092102000000068],[-126.927887,51.084938000000079],[-127.14111299999996,51.060272000000055],[-127.19249000000002,51.057213000000104],[-127.20667300000002,51.056380999999988],[-127.23832700000003,51.056938000000059],[-127.32668299999995,51.059714999999983],[-127.34084299999989,51.060822000000087],[-127.35916099999992,51.063323999999966],[-127.38861099999991,51.068054000000018],[-127.49273700000003,51.114883000000077],[-127.50985000000003,51.117359000000135],[-127.53376000000003,51.108082000000138],[-127.556107,51.099998000000028],[-127.63194299999998,51.091934000000037],[-127.64943699999998,51.092216000000064],[-127.66665599999988,51.095268000000033],[-127.67944299999988,51.101105000000132],[-127.78999299999992,51.165543000000014],[-127.79611199999994,51.197212000000036],[-127.79583700000001,51.202217000000076],[-127.787216,51.226097000000095],[-127.78472899999991,51.231376999999952],[-127.76194800000002,51.249435000000005],[-127.59973100000002,51.289435999999966],[-127.59306300000003,51.290833000000134],[-127.56555199999997,51.293052999999929],[-127.53999299999998,51.294441000000063],[-127.45140099999998,51.291939000000127],[-127.4036099999999,51.282494000000099],[-127.37554899999998,51.274437000000091],[-127.36472299999997,51.274162000000103],[-127.23110999999994,51.286110000000122],[-127.22222899999991,51.287216000000001],[-127.21444699999995,51.290549999999996],[-127.20388800000001,51.298607000000118],[-127.14334100000002,51.318329000000006],[-127.13305699999989,51.325554000000068],[-127.12693799999994,51.334991000000002],[-127.11776700000001,51.357498000000078],[-127.11110699999989,51.37721300000004],[-127.10973399999995,51.383330999999998],[-127.11028299999992,51.389717000000076],[-127.11582899999996,51.391662999999994],[-127.12249800000001,51.389160000000004],[-127.13054699999998,51.381934999999942],[-127.13417099999998,51.37721300000004],[-127.14417300000002,51.358046999999999],[-127.18250299999994,51.326942000000145],[-127.18804899999998,51.323607999999979],[-127.20834400000001,51.315826000000015],[-127.24749800000001,51.306380999999931],[-127.28056300000003,51.301102000000128],[-127.29055800000003,51.300545000000056],[-127.36749299999991,51.298881999999935],[-127.39584400000001,51.30221599999993],[-127.45221699999996,51.315826000000015],[-127.462784,51.341660000000047],[-127.55444299999999,51.332497000000046],[-127.57000699999998,51.328605999999979],[-127.75499699999989,51.319442999999978],[-127.76390100000003,51.319442999999978],[-127.77250699999996,51.3211060000001],[-127.77887699999997,51.324715000000083],[-127.78415699999994,51.333054000000118],[-127.78778099999994,51.34887700000013],[-127.78307299999994,51.356941000000006],[-127.77834300000001,51.361107000000061],[-127.74109599999997,51.380272000000048],[-127.72749299999998,51.385551000000021],[-127.69332899999995,51.390831000000048],[-127.68443300000001,51.390831000000048],[-127.65055799999999,51.408043000000077],[-127.55166600000001,51.468323000000055],[-127.51583900000003,51.519157000000007],[-127.51306199999993,51.529991000000052],[-127.512787,51.535552999999993],[-127.515289,51.5472180000001],[-127.521118,51.563880999999981],[-127.51640299999997,51.587769000000094],[-127.51500699999985,51.593880000000013],[-127.50890399999997,51.604712999999947],[-127.50055700000001,51.61360900000011],[-127.48805199999998,51.619438000000116],[-127.44444299999998,51.629990000000078],[-127.37609900000001,51.644997000000103],[-127.32584400000002,51.651382000000126],[-127.23332199999999,51.662490999999989],[-127.09584000000001,51.668052999999986],[-126.95344499999999,51.658325000000104],[-126.94693799999993,51.657657999999969],[-126.93778199999997,51.655327000000057],[-126.88377400000002,51.649494000000061],[-126.708054,51.641937000000041],[-126.66332999999986,51.64888000000002],[-126.65527299999997,51.651382000000126],[-126.620003,51.679993000000024],[-126.60694899999993,51.706940000000145],[-126.60527000000002,51.713051000000064],[-126.60582699999992,51.719436999999971],[-126.60777300000001,51.724990999999932],[-126.63555899999989,51.769714000000022],[-126.63944999999995,51.773880000000133],[-126.66027800000001,51.792221000000097],[-126.66528299999999,51.772491000000116],[-126.66665599999999,51.766388000000006],[-126.66251399999993,51.747215000000097],[-126.65387699999991,51.732491000000039],[-126.64362299999999,51.719154000000003],[-126.63999899999999,51.709991000000002],[-126.64138800000001,51.705269000000101],[-126.64388999999994,51.701102999999989],[-126.64750700000002,51.697768999999994],[-126.69304699999998,51.664711000000011],[-126.703056,51.664436000000023],[-126.91521499999999,51.682438000000047],[-126.96421799999996,51.686604000000102],[-126.97788199999997,51.690605000000062],[-127.05387899999988,51.697768999999994],[-127.07501199999996,51.697768999999994],[-127.14055599999995,51.694435000000055],[-127.27416999999997,51.68332700000002],[-127.3999859999999,51.669716000000051],[-127.41583300000002,51.665824999999984],[-127.42582699999997,51.666663999999969],[-127.43222000000003,51.66832700000009],[-127.43554699999987,51.671103999999957],[-127.43971299999993,51.674712999999997],[-127.44167299999992,51.680275000000108],[-127.42748999999998,51.731934000000138],[-127.364441,51.768326000000116],[-127.36193800000001,51.771660000000111],[-127.359444,51.777214000000072],[-127.33917200000002,51.839156999999943],[-127.33721899999989,51.851387000000045],[-127.33999599999999,51.861106999999947],[-127.34555099999994,51.864159000000086],[-127.35109699999992,51.863609000000054],[-127.35694899999999,51.860275000000058],[-127.44833399999987,51.777214000000072],[-127.57195299999989,51.706940000000145],[-127.58556399999986,51.677773000000059],[-127.54638699999992,51.627486999999917],[-127.55860899999999,51.543884000000105],[-127.56111099999998,51.538605000000132],[-127.57417299999997,51.518883000000073],[-127.58139,51.509437999999989],[-127.63583399999999,51.460548000000131],[-127.640289,51.458602999999925],[-127.65915699999999,51.457497000000103],[-127.70639,51.45638300000013],[-127.71639999999996,51.457214000000135],[-127.72389199999992,51.459435000000042],[-127.73029300000002,51.463051000000121],[-127.75473,51.479988000000105],[-127.75917099999992,51.484161000000029],[-127.76083399999993,51.48971599999993],[-127.75974300000001,51.494438000000059],[-127.74416400000001,51.498329000000126],[-127.712784,51.504439999999988],[-127.787216,51.560271999999941],[-127.87416099999996,51.663322000000051],[-127.87805200000003,51.673881999999992],[-127.88999899999999,51.798332000000016],[-127.88944999999995,51.807770000000005],[-127.886124,51.852218999999991],[-127.88474299999996,51.858604000000014],[-127.86971999999997,51.89527099999998],[-127.86609599999997,51.899993999999992],[-127.86165599999987,51.904160000000047],[-127.83306899999997,51.919991000000039],[-127.82055699999995,51.926659000000029],[-127.79638699999998,51.938599000000124],[-127.78971899999999,51.941101000000003],[-127.76611300000002,51.946937999999932],[-127.73805199999993,51.949715000000026],[-127.66443600000002,51.953880000000026],[-127.65527299999997,52.040276000000063],[-127.65387699999991,52.046386999999982],[-127.65139799999997,52.051659000000086],[-127.64527900000002,52.061934999999949],[-127.62943999999999,52.088326000000052],[-127.62581599999999,52.093047999999953],[-127.61749299999997,52.101936000000137],[-127.58029199999993,52.129158000000075],[-127.52555799999993,52.147217000000012],[-127.49944299999993,52.151657000000057],[-127.48055999999997,52.151099999999929],[-127.47721899999999,52.150543000000027],[-127.46528599999988,52.143883000000017],[-127.46140300000002,52.133049000000142],[-127.46250899999995,52.112495000000024],[-127.46611000000001,52.107773000000122],[-127.47556299999997,52.099716000000114],[-127.48249799999996,52.09693900000002],[-127.49833699999999,52.093322999999998],[-127.50834700000001,52.093322999999998],[-127.51834100000002,52.094436999999971],[-127.52722199999994,52.095825000000048],[-127.53500400000001,52.098877000000016],[-127.55277999999998,52.101105000000132],[-127.56276700000001,52.100829999999917],[-127.57167099999998,52.098877000000016],[-127.58444199999991,52.093605000000082],[-127.58889799999992,52.089714000000015],[-127.61416600000001,52.035828000000095],[-127.61332699999997,52.032494000000099],[-127.59416199999998,52.035553000000107],[-127.58612099999993,52.038048000000117],[-127.42083700000001,52.120270000000119],[-127.43360899999999,52.131659999999954],[-127.45056199999999,52.169159000000093],[-127.45249899999988,52.173882000000049],[-127.45305599999995,52.179993000000138],[-127.44972199999995,52.182770000000062],[-127.37609900000001,52.216934000000037],[-127.35417199999995,52.224709000000132],[-127.33138999999994,52.230270000000019],[-127.30027799999993,52.228325000000041],[-127.29110700000001,52.229431000000034],[-127.28443900000002,52.231934000000024],[-127.24526999999995,52.248878000000104],[-127.23944099999994,52.252220000000023],[-127.19304699999998,52.290833000000077],[-127.18582200000003,52.300270000000012],[-127.17749000000003,52.309715000000097],[-127.17166099999992,52.31249200000002],[-127.16361999999987,52.314156000000025],[-127.04276999999996,52.309158000000025],[-127.01251200000002,52.306381000000101],[-127.00499699999995,52.303604000000007],[-126.99861099999993,52.298607000000118],[-126.96444700000001,52.271659999999997],[-126.94526699999994,52.25610400000005],[-126.93804899999986,52.246941000000049],[-126.93611099999998,52.241379000000109],[-126.93554699999999,52.235268000000019],[-126.82749899999999,52.128044000000102],[-126.75195300000001,52.078605999999979],[-126.71193700000003,52.044441000000063],[-126.69415300000003,52.028877000000136],[-126.691101,52.023880000000077],[-126.68388399999998,51.999717999999973],[-126.67804699999994,51.990547000000049],[-126.67388899999997,51.986382000000049],[-126.66944899999999,51.983604000000071],[-126.66832699999998,51.985549999999932],[-126.66776999999996,51.991104000000121],[-126.66583300000002,52.031380000000127],[-126.66665599999999,52.036384999999996],[-126.66972399999997,52.041939000000013],[-126.73805199999987,52.113052000000096],[-126.76363399999991,52.13249200000007],[-126.81722999999988,52.166100000000085],[-126.83112299999999,52.17193599999996],[-126.85555999999997,52.178047000000049],[-126.86305199999993,52.181107000000111],[-126.88027999999986,52.190544000000045],[-126.90055799999999,52.205268999999987],[-126.90666199999993,52.215271000000143],[-126.94082600000002,52.303879000000052],[-126.94027699999998,52.31082200000003],[-126.93611099999998,52.32249500000006],[-126.932503,52.327217000000132],[-126.92083700000001,52.333603000000039],[-126.87361099999998,52.350830000000087],[-126.82084700000001,52.363883999999928],[-126.81416299999995,52.365273000000116],[-126.78888699999999,52.369987000000094],[-126.77667199999996,52.370270000000062],[-126.76194800000002,52.370543999999995],[-126.73638900000003,52.366386000000034],[-126.73166700000002,52.367767000000072],[-126.73249800000002,52.373877999999991],[-126.73665599999998,52.378044000000045],[-126.75167799999991,52.388328999999999],[-126.76363399999991,52.393326000000059],[-126.79277000000002,52.395546000000081],[-126.91027799999995,52.373877999999991],[-126.92610200000001,52.370827000000133],[-126.94110099999995,52.366386000000034],[-126.948036,52.363883999999928],[-126.95973199999997,52.357215999999994],[-126.96972699999998,52.34165999999999],[-126.97444200000001,52.337768999999923],[-126.98137699999995,52.33526599999999],[-127.00279199999994,52.334991000000116],[-127.08249699999993,52.334991000000116],[-127.14111299999996,52.348045000000013],[-127.15778399999999,52.352492999999981],[-127.18639400000001,52.380820999999969],[-127.22805800000003,52.453049000000135],[-127.23610699999995,52.505554000000132],[-127.23665599999998,52.51166500000005],[-127.23416099999997,52.517211999999972],[-127.19695299999995,52.549995000000138],[-127.18639400000001,52.557770000000062],[-127.08112299999993,52.613051999999982],[-127.07417299999997,52.616385999999977],[-127.05915800000002,52.620827000000077],[-127.00446299999999,52.626937999999996],[-126.99638399999998,52.62860100000006],[-126.989441,52.631935000000055],[-126.97972099999998,52.639434999999935],[-126.97609699999998,52.64388300000013],[-126.924713,52.714714000000129],[-126.92223399999995,52.718880000000013],[-126.92166099999997,52.725822000000107],[-126.92250100000001,52.731102000000021],[-126.966949,52.828606000000036],[-126.97112300000003,52.832771000000037],[-126.975281,52.835548000000131],[-126.98332199999987,52.837769000000037],[-127.01777599999991,52.845543000000021],[-127.02139299999993,52.82777400000009],[-127.01834100000002,52.823608000000036],[-127.00778199999996,52.808883999999978],[-126.98082699999992,52.724434000000031],[-126.98111,52.717491000000052],[-126.98528299999992,52.707497000000046],[-127.04250300000001,52.64777399999997],[-127.04737899999992,52.643462999999997],[-127.05561799999998,52.641815000000065],[-127.13445300000001,52.60943600000013],[-127.24054699999988,52.557770000000062],[-127.25723299999999,52.545830000000137],[-127.28083799999996,52.509162999999944],[-127.28222700000003,52.503052000000082],[-127.28028899999993,52.497489999999914],[-127.27610800000002,52.49332400000003],[-127.26528899999988,52.485550000000046],[-127.25805699999995,52.477211000000011],[-127.25834699999996,52.47304500000007],[-127.26194800000002,52.467491000000109],[-127.26666299999988,52.464157000000114],[-127.33345800000001,52.433895000000007],[-127.40082599999994,52.424431000000141],[-127.46541599999995,52.395477000000085],[-127.48935699999987,52.362072000000126],[-127.61165599999998,52.294716000000051],[-127.61833200000001,52.291939000000127],[-127.72138999999993,52.274712000000079],[-127.73055999999997,52.273604999999975],[-127.739441,52.27388000000002],[-127.74610899999999,52.276657000000114],[-127.75029000000001,52.281661999999983],[-127.80471799999998,52.248878000000104],[-127.84277299999997,52.2241590000001],[-127.84528399999999,52.219437000000028],[-127.85249299999987,52.209991000000059],[-127.85833699999995,52.206657000000064],[-127.86389200000002,52.207496999999933],[-127.86916399999996,52.211105000000032],[-127.87110899999999,52.216385000000116],[-127.87304699999999,52.223320000000001],[-127.90527299999991,52.27887700000008],[-127.86776700000001,52.494995000000074],[-127.86776700000001,52.500549000000092],[-127.86971999999997,52.506103999999993],[-127.87499999999994,52.510276999999917],[-127.88166799999999,52.51249700000011],[-127.89195299999994,52.513329000000056],[-127.89998599999996,52.50999500000006],[-127.92488899999995,52.443886000000134],[-127.92971799999992,52.427547000000004],[-127.92854299999999,52.424213000000009],[-127.92588000000001,52.421215000000132],[-127.916718,52.414879000000099],[-127.90905800000002,52.407382999999982],[-127.90589099999988,52.401549999999986],[-127.90538800000002,52.39788400000009],[-127.95694700000001,52.324440000000038],[-127.96389799999997,52.321663000000115],[-127.97277800000001,52.323326000000066],[-127.995003,52.330551000000128],[-128.00805699999989,52.336937000000034],[-128.01251200000002,52.341102999999919],[-128.05721999999997,52.394713999999965],[-128.05917399999998,52.400269000000094],[-128.06832899999995,52.447769000000051],[-128.06695599999995,52.45388000000014],[-128.05944799999992,52.470267999999976],[-128.05111699999992,52.478874000000076],[-128.0419619999999,52.487770000000012],[-128.03250100000002,52.495270000000119],[-128.00945999999999,52.508606000000043],[-127.97721899999999,52.519714000000079],[-127.96916199999993,52.521660000000111],[-127.96140300000002,52.519440000000145],[-127.95612299999993,52.515831000000105],[-127.89611799999994,52.542220999999984],[-127.89138800000001,52.546387000000038],[-127.88778699999995,52.551102000000071],[-127.87998999999991,52.574164999999994],[-127.87970699999994,52.579720000000066],[-127.88751200000002,52.577773999999977],[-128.0291749999999,52.541664000000083],[-128.04083300000002,52.535827999999981],[-128.09973099999991,52.503052000000082],[-128.1049349999999,52.492382000000077],[-128.11831699999999,52.465546000000074],[-128.14834599999995,52.422217999999987],[-128.22500599999989,52.330826000000116],[-128.23330699999997,52.321937999999989],[-128.27862499999998,52.280822999999998],[-128.28332499999993,52.276657000000114],[-128.28890999999999,52.273323000000119],[-128.29583700000001,52.270828000000108],[-128.30499299999997,52.269439999999975],[-128.39388999999989,52.291382000000056],[-128.32971199999992,52.380271999999991],[-128.29751599999992,52.400543000000027],[-128.29083300000002,52.401657],[-128.28085299999992,52.400825999999995],[-128.27416999999997,52.39804799999996],[-128.267517,52.396660000000054],[-128.260559,52.399161999999933],[-128.25585899999999,52.403320000000065],[-128.22442599999994,52.459717000000069],[-128.22192399999989,52.465271000000087],[-128.22055099999994,52.471375000000137],[-128.22109999999992,52.484436000000073],[-128.22860700000001,52.523048000000017],[-128.23055999999997,52.528328000000101],[-128.23831200000001,52.536658999999986],[-128.24221799999998,52.547775000000115],[-128.24194299999999,52.55471],[-128.23916600000001,52.566940000000102],[-128.18527199999988,52.671104000000128],[-128.14584399999995,52.719986000000063],[-128.120544,52.757217000000026],[-128.13165300000003,52.876381000000038],[-128.17001299999998,52.856658999999979],[-128.17501800000002,52.851935999999966],[-128.22305299999994,52.812492000000077],[-128.22888199999994,52.80860100000001],[-128.23525999999993,52.805824000000086],[-128.24972500000001,52.801384000000098],[-128.2744449999999,52.799438000000009],[-128.30029300000001,52.800270000000125],[-128.33999600000004,52.805549999999982],[-128.42611699999998,52.817497000000117],[-128.43612699999994,52.818886000000134],[-128.441101,52.822769000000051],[-128.48776199999986,52.873604000000114],[-128.49359100000004,52.882767000000115],[-128.495544,52.887496999999939],[-128.49887100000001,52.903602999999976],[-128.50640899999996,52.96305099999995],[-128.51556399999998,53.019988999999953],[-128.53973400000001,53.131934999999942],[-128.62554899999992,53.202217000000019],[-128.66140699999994,53.202217000000019],[-128.66082799999992,53.196938000000046],[-128.66305499999999,53.190826000000072],[-128.66723599999995,53.187492000000077],[-128.67666600000001,53.187767000000122],[-128.68527199999994,53.189430000000016],[-128.70111099999997,53.195541000000105],[-128.78832999999997,53.239715999999987],[-128.79473899999999,53.243324000000086],[-128.84887699999996,53.275826000000052],[-128.85888699999998,53.283607000000131],[-128.86639400000001,53.292220999999984],[-128.86944600000004,53.2972180000001],[-128.87832599999996,53.31638300000003],[-128.88558999999998,53.374378000000092],[-128.88798499999996,53.424965000000043],[-128.92186000000004,53.453601999999989],[-128.95916699999998,53.502777000000037],[-128.97332799999998,53.547493000000031],[-128.97277799999995,53.553047000000049],[-128.966095,53.556099000000131],[-128.80499299999997,53.569992000000013],[-128.79501300000004,53.568604000000107],[-128.78832999999997,53.564995000000067],[-128.78332499999999,53.561104],[-128.77972399999987,53.556938000000116],[-128.69250499999998,53.485268000000133],[-128.55862399999995,53.413879000000122],[-128.52362099999999,53.396660000000054],[-128.44601399999999,53.413158000000124],[-128.44517499999995,53.415993000000071],[-128.42950399999989,53.429824999999994],[-128.18972799999989,53.459991000000002],[-128.15945399999993,53.455826000000002],[-128.14862099999993,53.453605999999979],[-128.13192699999996,53.448875000000044],[-128.105255,53.440543999999989],[-128.09387199999998,53.433052000000032],[-128.07081600000004,53.394114999999942],[-128.03488200000004,53.369289000000038],[-128.00598099999996,53.34705699999995],[-127.95195000000001,53.326102999999932],[-127.94999699999988,53.321381000000031],[-127.951683,53.309990000000084],[-127.95388799999995,53.304161000000079],[-127.95694700000001,53.28138000000007],[-127.95527600000003,53.265830999999991],[-127.95111099999997,53.256386000000077],[-127.94611399999985,53.252220000000023],[-127.87526700000001,53.224433999999917],[-127.87027,53.222763000000043],[-127.868607,53.233879000000002],[-127.86776700000001,53.239715999999987],[-127.87138399999998,53.244155999999975],[-127.92259999999993,53.273685],[-127.93297599999994,53.293323999999927],[-127.92408,53.318153000000109],[-127.92593399999993,53.330750000000023],[-127.98805199999998,53.353881999999942],[-128.07165499999991,53.431380999999988],[-128.09387199999998,53.451935000000105],[-128.12692300000003,53.481102000000021],[-128.16528299999993,53.483879000000115],[-128.18331899999993,53.484161000000029],[-128.30139199999991,53.478324999999927],[-128.45187399999992,53.50332300000008],[-128.45339999999999,53.499656999999956],[-128.45640600000002,53.496822000000066],[-128.48156700000004,53.487987999999916],[-128.49021900000002,53.485325000000046],[-128.53340100000003,53.478324999999927],[-128.54457100000002,53.478992000000062],[-128.54937699999994,53.480823999999927],[-128.81304899999992,53.619155999999975],[-128.81664999999998,53.623322000000087],[-128.81805399999996,53.644714000000079],[-128.81750499999993,53.65026899999998],[-128.81390399999998,53.656936999999971],[-128.808899,53.661659000000043],[-128.78417999999988,53.675552000000096],[-128.77279699999997,53.733330000000137],[-128.79388399999988,53.764998999999932],[-128.79333500000001,53.770546000000081],[-128.79110699999995,53.776657],[-128.77056899999991,53.79583000000008],[-128.67767300000003,53.839775000000088],[-128.67384300000003,53.84160600000007],[-128.66551200000004,53.844608000000107],[-128.66067499999997,53.845439999999996],[-128.65583799999996,53.843605000000082],[-128.64482099999987,53.837105000000122],[-128.64166299999994,53.834770000000049],[-128.60360699999995,53.842216000000064],[-128.59387199999998,53.839714000000015],[-128.47720299999997,53.828605999999979],[-128.47137499999997,53.832497000000046],[-128.47555499999999,53.842216000000064],[-128.48275799999999,53.850829999999917],[-128.48944099999994,53.854163999999912],[-128.49887100000001,53.856941000000006],[-128.51000999999991,53.859161000000029],[-128.53030399999994,53.861664000000019],[-128.53832999999992,53.860275000000001],[-128.54501299999998,53.857216000000051],[-128.55306999999988,53.856102000000078],[-128.61726399999992,53.868546000000094],[-128.65962199999996,53.882885000000101],[-128.662598,53.885216000000014],[-128.66461200000003,53.888218000000109],[-128.67903099999995,53.907524000000024],[-128.67869599999995,53.910857999999962],[-128.66686999999996,53.92285900000013],[-128.66072099999997,53.928524000000095],[-128.6480709999999,53.949432000000058],[-128.63946499999997,53.96054799999996],[-128.59832799999998,54.02693899999997],[-128.60055499999993,54.031661999999983],[-128.60916099999997,54.03138000000007],[-128.61663799999997,54.029160000000104],[-128.67861899999997,54.00360900000004],[-128.68527199999994,54.000832000000116],[-128.68890399999998,53.994156000000032],[-128.69555699999989,53.976097000000095],[-128.72283899999991,53.944046000000071],[-128.72499099999999,53.940216000000078],[-128.72766100000001,53.936710000000062],[-128.73100299999993,53.933547999999917],[-128.79943799999995,53.87499200000002],[-128.91528299999999,53.787216000000001],[-128.93194600000004,53.774711999999965],[-128.98361199999994,53.762214999999969],[-129.10497999999995,53.72026800000009],[-129.11804199999989,53.714157000000057],[-129.12359599999996,53.710274000000084],[-129.21749899999992,53.64027400000009],[-129.232483,53.625824000000136],[-129.23803699999991,53.61332700000014],[-129.239441,53.601936000000023],[-129.23693800000001,53.537216000000058],[-129.23138399999999,53.500832000000059],[-129.23443599999996,53.461937000000091],[-129.23498499999999,53.456100000000106],[-129.23748799999993,53.433600999999953],[-129.27279699999997,53.379158000000018],[-129.30334499999992,53.384994999999947],[-129.33389299999999,53.397491000000059],[-129.35360700000001,53.407768000000033],[-129.51861600000001,53.514998999999989],[-129.62914999999987,53.587769000000037],[-129.686127,53.630272000000105],[-129.83084099999996,53.74721500000004],[-129.86111499999998,53.765273999999977],[-129.912781,53.79833200000013],[-130.04501300000004,53.883049000000142],[-130.05029300000001,53.886940000000038],[-130.099152,53.941933000000063],[-130.10137899999995,53.946655000000135],[-130.09136999999987,54.066101000000003],[-130.09082000000001,54.071662999999944],[-130.07693499999993,54.114441000000056],[-130.07333399999999,54.120827000000133],[-130.06500199999999,54.132209999999986],[-130.05166600000001,54.148605000000089],[-130.04666099999997,54.153320000000122],[-129.86361699999998,54.213051000000064],[-129.84887700000002,54.217491000000109],[-129.83194000000003,54.219436999999971],[-129.78205899999995,54.210601999999938],[-129.72637899999995,54.200771000000088],[-129.69738799999993,54.194435000000055],[-129.68756099999996,54.19093300000003],[-129.64416499999999,54.181938000000059],[-129.63333099999994,54.179993000000081],[-129.6141659999999,54.178917000000069],[-129.591949,54.185822000000087],[-129.47082499999999,54.235825000000034],[-129.47000100000002,54.23721299999994],[-129.47442599999999,54.239990000000034],[-129.48275799999988,54.243050000000096],[-129.51141399999989,54.244155999999975],[-129.51889,54.241936000000123],[-129.56140099999993,54.226935999999966],[-129.56777999999997,54.223877000000016],[-129.68238799999995,54.221602999999959],[-129.68823199999997,54.223099000000104],[-129.77654999999993,54.234767999999974],[-129.83666999999997,54.23832700000014],[-129.8549799999999,54.238045000000056],[-129.87136799999996,54.235268000000133],[-129.966949,54.206940000000031],[-129.97997999999995,54.200829000000113],[-129.99166899999989,54.192764000000011],[-130.03750600000001,54.173050000000103],[-130.10443099999998,54.154434000000094],[-130.11331200000001,54.153877000000023],[-130.122772,54.154434000000094],[-130.13110399999999,54.157210999999961],[-130.19168099999996,54.193321000000083],[-130.22805800000003,54.258606000000043],[-130.238586,54.294998000000078],[-130.2611389999999,54.342765999999983],[-130.27584799999994,54.349716000000058],[-130.28250100000002,54.346382000000062],[-130.332764,54.329720000000066],[-130.34887700000002,54.326942000000088],[-130.39138799999995,54.330276000000083],[-130.45166,54.336655000000121],[-130.45916699999998,54.338600000000099],[-130.48111,54.364715999999987],[-130.48388699999998,54.401657000000114],[-130.47637899999989,54.430550000000096],[-130.47360199999997,54.43582200000003],[-130.43362400000001,54.496658000000139],[-130.42999299999997,54.562492000000077],[-130.43972799999989,54.612212999999997],[-130.44055200000003,54.617493000000024],[-130.43859900000001,54.623604000000114],[-130.43277,54.627487000000031],[-130.42556799999994,54.629715000000033],[-130.41665599999993,54.630272000000105],[-130.40750099999997,54.62860100000006],[-130.39779699999997,54.626381000000038],[-130.38946499999992,54.62332200000003],[-130.37554899999992,54.616661000000136],[-130.33215299999995,54.578552000000002],[-130.28167699999995,54.528381000000024],[-130.22277799999989,54.471931000000041],[-130.06304899999986,54.339989000000116],[-130.05776999999995,54.336105000000089],[-130.03723100000002,54.326103000000103],[-130.02084400000001,54.319992000000013],[-129.99304199999989,54.31221000000005],[-129.98275799999993,54.311104000000057],[-129.96581999999995,54.313049000000035],[-129.95916699999998,54.316100999999946],[-129.95584099999985,54.322495000000004],[-129.95971700000001,54.326942000000088],[-129.96722399999993,54.328880000000026],[-129.98165900000004,54.324439999999981],[-129.99054000000001,54.32388300000008],[-130.02362099999993,54.335548000000017],[-130.0386049999999,54.341934000000094],[-130.04388399999999,54.345824999999991],[-130.14779699999997,54.44193300000012],[-130.31382799999994,54.586269000000073],[-130.36721799999992,54.635268999999994],[-130.37222299999996,54.644714000000079],[-130.374146,54.654991000000052],[-130.36859100000004,54.667770000000132],[-130.35861199999999,54.677490000000034],[-130.35278299999999,54.681381000000101],[-130.33972199999999,54.687492000000134],[-130.32501200000002,54.692214999999976],[-130.24386599999997,54.707771000000093],[-130.23553499999997,54.709160000000111],[-130.22582999999997,54.708885000000066],[-130.17193599999996,54.703606000000093],[-130.16195700000003,54.701103000000103],[-130.15362500000003,54.698326000000009],[-130.10110499999996,54.671660999999972],[-130.075287,54.657767999999976],[-130.06887800000004,54.648604999999975],[-130.06500199999999,54.644440000000145],[-130.054169,54.636658000000011],[-130.02694699999989,54.623047000000042],[-130.00058000000001,54.61471599999993],[-129.98083500000001,54.609993000000145],[-129.959991,54.607498000000135],[-129.91027800000001,54.605552999999929],[-129.968323,54.62193300000007],[-130.00445599999989,54.632767000000115],[-130.02807599999994,54.641936999999984],[-130.19473299999999,54.723320000000001],[-130.20166,54.72693600000008],[-130.20111099999986,54.732490999999982],[-130.17388899999992,54.846656999999993],[-130.17111199999999,54.851662000000033],[-130.16583300000002,54.856659000000093],[-130.16082799999998,54.861382000000106],[-130.05835000000002,54.952773999999977],[-130.04583700000001,54.959991000000059],[-130.03195199999993,54.965271000000143],[-129.94694499999991,54.970490000000098],[-129.9362789999999,54.971153000000072],[-129.92394999999993,54.970322000000067],[-129.91810599999985,54.968826000000092],[-129.90977499999997,54.964661000000092],[-129.90745500000003,54.962158000000102],[-129.65444899999994,54.980545000000006],[-129.646973,54.982765000000029],[-129.64028899999994,54.985825000000091],[-129.62249799999995,54.997772000000055],[-129.62499999999994,55.00249500000001],[-129.79998799999998,55.006942999999978],[-129.86608899999999,55.006660000000011],[-129.87527499999999,55.00610400000005],[-129.883331,55.004715000000033],[-129.90585299999998,54.997772000000055],[-129.91390999999993,54.996383999999921],[-129.96487400000001,55.003436999999963],[-129.97171000000003,55.004608000000076],[-129.97905000000003,55.008938000000057],[-129.98138399999993,55.011608000000138],[-129.98104899999993,55.014938000000143],[-129.9963679999999,55.024162000000047],[-129.97555499999993,55.066939999999931],[-129.96139500000004,55.093323000000112],[-129.95638999999989,55.098045000000013],[-129.84750399999996,55.210548000000074],[-129.72665399999988,55.338600000000099],[-129.66300999999999,55.412212000000011],[-129.64334099999996,55.434158000000025],[-129.63723800000002,55.438042000000053],[-129.62222299999996,55.442490000000021],[-129.60525499999994,55.445267000000115],[-129.58471700000001,55.443878000000097],[-129.54110700000001,55.438042000000053],[-129.52389500000004,55.439987000000031],[-129.50863599999997,55.444434999999999],[-129.48831199999995,55.453605999999922],[-129.47610499999996,55.461380000000133],[-129.47164899999996,55.467209000000139],[-129.47109999999992,55.472762999999986],[-129.47500600000001,55.47693600000008],[-129.48416099999997,55.478600000000085],[-129.62027,55.459434999999985],[-129.63696299999998,55.45665699999995],[-129.679123,55.473156000000131],[-129.68611099999998,55.467491000000052],[-129.69662500000004,55.45399100000003],[-129.69979899999993,55.450993000000096],[-129.70428500000003,55.449661000000049],[-129.70979299999993,55.450657000000035],[-129.71211199999999,55.453327000000115],[-129.71362299999993,55.456161000000122],[-129.78695700000003,55.566666000000112],[-129.78582800000004,55.50277699999998],[-129.779449,55.493607000000111],[-129.77224699999999,55.47943099999992],[-129.78030399999994,55.359717999999987],[-129.78250100000002,55.353607000000068],[-129.81390399999987,55.289719000000048],[-129.81750499999998,55.283332999999971],[-129.90695199999988,55.168052999999986],[-129.911407,55.162491000000045],[-129.92083699999995,55.151931999999988],[-130.02835099999999,55.036385000000109],[-130.06832900000001,54.996941000000049],[-130.07443199999994,54.992767000000015],[-130.08166499999999,54.990546999999992],[-130.09082000000001,54.989990000000091],[-130.10055499999999,54.990546999999992],[-130.10833699999995,54.992493000000081],[-130.11361699999992,54.996383999999921],[-130.12777700000004,55.013885000000073],[-130.16027799999995,55.069717000000026],[-130.16223099999996,55.079993999999999],[-130.1600039999999,55.086105000000089],[-130.11859099999998,55.142493999999942],[-130.11416599999995,55.148331000000098],[-130.08084099999991,55.184714999999983],[-130.06390399999998,55.195266999999944],[-130.04528799999997,55.204163000000051],[-130.03918499999992,55.208046000000024],[-129.948059,55.276382000000012],[-129.94387799999998,55.282211000000018],[-129.94473300000004,55.287216000000058],[-129.94888300000002,55.295830000000137],[-129.96054100000003,55.308884000000035],[-130.00863599999997,55.370827000000077],[-130.101654,55.556380999999988],[-130.10360700000001,55.566666000000112],[-130.12887599999999,55.722214000000122],[-130.12942499999997,55.732765000000029],[-130.12887599999999,55.738602000000014],[-130.12609900000001,55.750275000000045],[-130.12191799999994,55.762496999999996],[-130.11639400000001,55.774993999999992],[-130.11276199999998,55.781661999999983],[-130.10833699999995,55.787216000000001],[-130.09109499999994,55.799995000000024],[-130.07916299999999,55.808044000000052],[-130.06722999999994,55.815826000000015],[-130.0552669999999,55.823883000000137],[-130.03945899999997,55.838326000000052],[-129.96664399999992,55.912209000000018],[-129.962219,55.917770000000019],[-129.96417199999991,55.928329000000076],[-129.97137499999985,55.931663999999955],[-129.97970599999985,55.932213000000104],[-129.99499500000002,55.927773000000059],[-130.0019529999999,55.924713000000054],[-130.00500499999993,55.921661000000086],[-130.01507600000002,55.909179999999992],[-130.01419099999998,56.023880000000133],[-130.0147399999999,56.025826000000052],[-130.0538939999999,56.075554000000011],[-130.08859299999995,56.118049999999982],[-130.22915599999993,56.090271000000143],[-130.36526499999991,56.123878000000104],[-130.44750999999991,56.206383000000073],[-130.46194499999996,56.235268000000133],[-130.48471099999995,56.239433000000133],[-130.53277599999996,56.246384000000035],[-130.5607149999999,56.250000000000114],[-130.62719699999997,56.258606000000043],[-130.720551,56.325554000000125],[-130.75585899999999,56.353049999999996],[-130.77444500000001,56.366104000000064],[-130.84722899999997,56.374435000000119],[-130.92001300000004,56.382492000000127],[-131.05499299999997,56.398048000000074],[-131.07055699999995,56.403602999999976],[-131.12582399999997,56.424163999999962],[-131.1444699999999,56.434715000000097],[-131.16473400000001,56.445267000000058],[-131.20526100000001,56.465828000000101],[-131.22137499999997,56.472488000000112],[-131.290009,56.500548999999978],[-131.31445299999996,56.509994999999947],[-131.53945899999991,56.596656999999993],[-131.55777,56.602219000000105],[-131.57888800000001,56.603324999999927],[-131.61111499999998,56.602219000000105],[-131.81610099999995,56.594994000000042],[-131.82415800000001,56.59693900000002],[-131.82861299999996,56.600830000000087],[-131.85803199999987,56.718880000000127],[-131.86361699999992,56.786110000000122],[-131.86053500000003,56.797775000000001],[-131.86138899999997,56.79972100000009],[-132.10305800000003,56.866661000000022],[-132.09194899999994,56.893607999999972],[-132.06195100000002,56.959717000000069],[-132.03668199999993,57.013054000000011],[-132.02749600000004,57.036385000000053],[-132.22109999999992,57.068054000000075],[-132.316956,57.083878000000027],[-132.33694500000001,57.088325999999995],[-132.32611099999997,57.100548000000117],[-132.26806599999986,57.16304800000006],[-132.25473,57.17471299999994],[-132.226654,57.204711999999972],[-132.35415599999988,57.354439000000127],[-132.36972000000003,57.37082700000002],[-132.37914999999992,57.37943300000012],[-132.45111099999986,57.435265000000072],[-132.471924,57.451103000000103],[-132.4927669999999,57.46665999999999],[-132.50363200000004,57.474158999999986],[-132.61944599999998,57.583328000000051],[-132.75250199999994,57.709435000000042],[-132.76113899999996,57.717765999999926],[-132.76889,57.72665400000011],[-132.78222700000003,57.745270000000119],[-132.79110699999995,57.7586060000001],[-132.79583700000001,57.768883000000073],[-132.79611199999999,57.773879999999963],[-132.80722000000003,57.787773000000016],[-132.81362899999988,57.795546999999999],[-132.82138099999992,57.804436000000067],[-132.87304699999999,57.855270000000075],[-132.88165299999997,57.86360900000011],[-132.92861900000003,57.90554800000001],[-132.93777499999999,57.913322000000051],[-132.96472199999999,57.93332700000002],[-132.99499500000002,57.951660000000061],[-133.03332499999988,57.978874000000076],[-133.04388399999999,57.986938000000066],[-133.05306999999993,57.99471299999999],[-133.058044,57.999435000000062],[-133.070831,58.012215000000026],[-133.08749399999999,58.033332999999971],[-133.09500100000002,58.047775000000115],[-133.10415599999999,58.073051000000135],[-133.10720800000001,58.083328000000108],[-133.11111500000004,58.093323000000055],[-133.13696299999998,58.135826000000122],[-133.18472299999991,58.176102000000128],[-133.19500700000003,58.184158000000025],[-133.21139499999998,58.196381000000031],[-133.23361199999999,58.211380000000133],[-133.3061219999999,58.257216999999969],[-133.36111499999993,58.28054800000001],[-133.43029799999994,58.359993000000088],[-133.408905,58.400268999999923],[-133.38790899999998,58.4120640000001],[-133.42999299999991,58.459160000000054],[-133.55889899999994,58.528046000000074],[-133.73580900000002,58.644713999999965],[-133.80834999999996,58.709991000000002],[-133.82693499999999,58.726097000000038],[-134.08749399999999,58.808327000000133],[-134.23110999999989,58.851936000000023],[-134.245544,58.856941000000063],[-134.32000699999998,58.916099999999972],[-134.32556199999999,58.920830000000024],[-134.33221400000002,58.929718000000037],[-134.33221400000002,58.935265000000129],[-134.32556199999999,58.971100000000035],[-134.37942499999991,59.049164000000076],[-134.38613899999996,59.058044000000109],[-134.45556599999998,59.122489999999971],[-134.46139499999992,59.126656000000025],[-134.47500599999989,59.1336060000001],[-134.53222700000003,59.132210000000043],[-134.56640599999997,59.130547000000092],[-134.65084799999994,59.185546999999985],[-134.67166099999997,59.200272000000098],[-134.67529300000001,59.214714000000072],[-134.68804899999992,59.243324000000086],[-134.73889199999991,59.250275000000045],[-134.95193499999993,59.279991000000109],[-135.09167499999995,59.426940999999999],[-135.07971199999992,59.4447100000001],[-135.06332399999997,59.458046000000081],[-135.03973399999995,59.466934000000037],[-135.03057899999999,59.46804800000001],[-135.02111799999994,59.471099999999922],[-135.01779199999999,59.498878000000047],[-135.01501500000001,59.54055000000011],[-135.01446499999997,59.567497000000003],[-135.09722899999997,59.621376000000055],[-135.12027,59.621658000000139],[-135.13275099999998,59.622765000000072],[-135.1541749999999,59.62721300000004],[-135.17749000000003,59.636939999999981],[-135.33612099999999,59.726654000000053],[-135.47360199999997,59.801933000000076],[-135.50613399999997,59.793884000000048],[-135.82333399999999,59.705550999999957],[-135.94915800000001,59.669158999999979],[-136.07138099999997,59.657494000000099],[-136.12081899999998,59.651656999999943],[-136.16000399999996,59.646660000000054],[-136.20776399999988,59.639434999999992],[-136.31054700000004,59.612495000000138],[-136.34387200000003,59.602776000000119],[-136.34637499999991,59.600548000000003],[-136.29834,59.583603000000039],[-136.23916600000001,59.561377999999991],[-136.23388699999992,59.525826000000052],[-136.29305999999991,59.476097000000038],[-136.29998799999993,59.471099999999922],[-136.37164300000001,59.452492000000063],[-136.46362299999993,59.469711000000132],[-136.46417199999996,59.414153999999996],[-136.46249399999994,59.37221500000004],[-136.46249399999994,59.302490000000091],[-136.46276899999998,59.289436000000023],[-136.48083499999996,59.261939999999925],[-136.49221799999998,59.249718000000144],[-136.55835000000002,59.186377999999991],[-136.58389299999988,59.163321999999937],[-136.61138900000003,59.164711000000125],[-136.71972699999998,59.165268000000026],[-136.80889899999994,59.165268000000026],[-136.88833599999998,59.131934999999999],[-136.94195599999995,59.109436000000073],[-136.96972700000003,59.098328000000095],[-137.03308100000004,59.077492000000063],[-137.25167799999997,59.006104000000107],[-137.29611199999999,58.989989999999977],[-137.31417799999997,58.981102000000021],[-137.33889799999997,58.965546000000074],[-137.39279199999999,58.928329000000019],[-137.42028800000003,58.91415400000011],[-137.42749000000003,58.911377000000016],[-137.44500699999998,58.907494000000099],[-137.46554600000002,58.906096999999932],[-137.47805800000003,58.907211000000132],[-137.48803699999996,58.909156999999993],[-137.49581899999998,58.911934000000088],[-137.50167799999991,58.916382000000056],[-137.50500499999993,58.920273000000122],[-137.50750700000003,58.925552000000096],[-137.50723299999999,58.937767000000008],[-137.50527999999997,58.944153000000142],[-137.49722299999996,58.964157000000057],[-137.48776199999992,58.982490999999982],[-137.47970599999996,58.998046999999985],[-137.49914599999994,59.041382000000112],[-137.54528799999997,59.143051000000128],[-137.566101,59.186935000000062],[-137.59082000000001,59.238602000000014],[-137.91027800000001,59.408043000000077],[-138.11776699999996,59.516663000000051],[-138.30361900000003,59.613052000000039],[-138.49108899999993,59.708328000000051],[-138.5386049999999,59.732208000000071],[-138.615814,59.77416199999999],[-138.64724699999999,59.805550000000039],[-138.65472399999993,59.81471300000004],[-138.66363499999989,59.829162999999937],[-138.66610699999995,59.834435000000042],[-138.66915900000004,59.844994000000099],[-138.67501799999997,59.86693600000001],[-138.69027700000004,59.906936999999971],[-138.97192399999994,59.978600000000085],[-139.04779099999996,59.997490000000028],[-139.11639400000001,60.041382000000112],[-139.161407,60.07027400000004],[-139.18890399999987,60.088882000000069],[-139.183899,60.102219000000105],[-139.15527299999997,60.154991000000052],[-139.13363600000002,60.194435000000112],[-139.12527499999993,60.207771000000093],[-139.08221399999996,60.287498000000028],[-139.06500199999988,60.330276000000083],[-139.06640600000003,60.344153999999946],[-139.06805399999996,60.352219000000048],[-139.51947000000001,60.344711000000018],[-139.67666599999995,60.340546000000018],[-139.77166699999992,60.292496000000028],[-139.86639400000001,60.244438000000059],[-139.91305499999987,60.220824999999934],[-139.97943099999998,60.187767000000122],[-140.005585,60.193878000000041],[-140.45083599999992,60.309715000000097],[-140.471924,60.283882000000006],[-140.493042,60.25777400000004],[-140.50195299999996,60.244713000000104],[-140.52139299999993,60.222214000000122],[-140.94638099999997,60.297775000000001],[-140.995544,60.307213000000047],[-141.00058000000001,60.366661000000022],[-141.00112899999999,60.399436999999978],[-141.00030500000003,60.933051999999975],[-141.00167799999991,60.966384999999946],[-141.00030500000003,62.733046999999942],[-141.00140399999998,63.099998000000141],[-141.00195299999996,63.83277099999998],[-141.00030500000003,63.966385000000059],[-141.00030500000003,64.199706999999989],[-141.00195299999996,65.132751000000098],[-141.00030500000003,65.166092000000049],[-141.00030500000003,65.232758000000047],[-141.00195299999996,65.699416999999983],[-141.00195299999996,66.099425999999994],[-141.00167799999991,66.499419999999986],[-141.00085399999995,66.666382000000112],[-141.00058000000001,66.866089000000102],[-141.00167799999991,67.066376000000105],[-141.00222799999995,67.299149000000057],[-141.00058000000001,67.532486000000119],[-141,67.732758000000103],[-141.00195299999996,67.865814000000057],[-141.00195299999996,68.065811000000053],[-141.00195299999996,68.23275799999999],[-141.00167799999991,68.532761000000107],[-141.00085399999995,68.965546000000018],[-141.00058000000001,69.432479999999941],[-141.00085399999995,69.532211000000018],[-141.00299100000001,69.642365000000098],[-140.98220800000001,69.642761000000007],[-140.90945399999998,69.639160000000118],[-140.83306900000002,69.635269000000051],[-140.81610099999995,69.6336060000001],[-140.79528799999997,69.627197000000081],[-140.77001999999999,69.621643000000063],[-140.73831200000001,69.617751999999996],[-140.61554000000001,69.60832199999993],[-140.48831200000001,69.599425999999994],[-140.39611799999994,69.596099999999979],[-140.26141399999995,69.596649000000127],[-140.21887200000003,69.600815000000011],[-140.17944299999988,69.606369000000029],[-140.12914999999998,69.614990000000091],[-140.10055499999999,69.617477000000008],[-140.08471700000001,69.618042000000003],[-139.94387800000004,69.618865999999969],[-139.92639199999991,69.618590999999981],[-139.88833599999998,69.616653000000042],[-139.81054699999999,69.606644000000017],[-139.78112799999997,69.602203000000088],[-139.605255,69.575546000000031],[-139.57611099999986,69.570830999999998],[-139.67001299999998,69.579162999999994],[-139.68472299999996,69.581375000000037],[-139.77639799999997,69.599716000000001],[-139.7647399999999,69.590820000000065],[-139.75668299999995,69.586655000000064],[-139.73165899999998,69.581099999999992],[-139.60665899999992,69.559417999999994],[-139.573059,69.556091000000038],[-139.5350039999999,69.553863999999976],[-139.351654,69.53637700000013],[-139.14306599999998,69.510817999999915],[-139.11639400000001,69.505554000000132],[-139.10833699999995,69.501663000000065],[-139.10137899999995,69.491364000000033],[-139.09222399999999,69.481658999999979],[-139.069458,69.463318000000129],[-139.05584699999991,69.454987000000074],[-139.04806499999995,69.450821000000133],[-138.975281,69.414993000000095],[-138.95748900000001,69.407486000000006],[-138.93945299999996,69.399994000000049],[-138.88275099999993,69.384720000000129],[-138.83361799999994,69.373306000000071],[-138.79916399999991,69.364150999999993],[-138.76916499999999,69.35386699999998],[-138.75140399999998,69.346375000000023],[-138.64389,69.291367000000037],[-138.62164300000001,69.273041000000035],[-138.61639400000001,69.268326000000002],[-138.60720799999996,69.2586060000001],[-138.60498000000001,69.247482000000048],[-138.44998199999992,69.229156000000046],[-138.26916499999999,69.196365000000071],[-138.25390599999997,69.188309000000004],[-138.21887200000003,69.173309000000074],[-138.17721599999993,69.159988000000112],[-138.14334099999996,69.150818000000072],[-138.06332399999997,69.129424999999969],[-138.03945899999997,69.123596000000134],[-138.00112899999993,69.115265000000022],[-137.69638099999992,69.049712999999997],[-137.59445199999999,69.027771000000143],[-137.41915900000004,68.988876000000005],[-137.25500499999998,68.948318000000086],[-137.22610499999996,68.944977000000051],[-137.19222999999994,68.943863000000079],[-137.13027999999986,68.944977000000051],[-136.9786069999999,68.931931000000134],[-136.97332799999998,68.927200000000028],[-136.966095,68.923309000000131],[-136.95416299999994,68.920258000000103],[-136.78973399999995,68.881927000000076],[-136.74554399999994,68.875259000000085],[-136.68249499999996,68.871918000000051],[-136.65972899999997,68.874984999999981],[-136.64279199999993,68.878036000000009],[-136.63751199999996,68.884155000000021],[-136.63082900000001,68.889160000000061],[-136.61999500000002,68.891936999999984],[-136.52224699999999,68.909149000000014],[-136.50836199999998,68.910262999999986],[-136.47747800000002,68.910812000000135],[-136.42059299999994,68.9015500000001],[-136.39306599999992,68.897217000000069],[-136.35861199999999,68.893874999999923],[-136.25585899999999,68.889435000000105],[-136.14501999999999,68.885817999999972],[-136.09722899999991,68.88220200000012],[-136.02780199999989,68.873032000000023],[-135.98666399999996,68.864990000000091],[-135.85879499999993,68.838974000000064],[-135.83166499999999,68.831940000000031],[-135.54055799999992,68.752486999999974],[-135.519745,68.74581900000004],[-135.49194299999988,68.735259999999982],[-135.48498499999999,68.731094000000098],[-135.45388799999995,68.709427000000062],[-135.40695199999993,68.679977000000122],[-135.36554000000001,68.675812000000121],[-135.21054099999998,68.661377000000016],[-135.1600039999999,68.657211000000132],[-135.14752199999998,68.658874999999966],[-135.14639299999993,68.663879000000122],[-135.21444699999995,68.693038999999999],[-135.25363200000004,68.706940000000145],[-135.34359699999993,68.737762000000032],[-135.48193400000002,68.809418000000107],[-135.50613399999997,68.832488999999953],[-135.500854,68.838593000000003],[-135.48666399999996,68.839431999999988],[-135.45306399999998,68.838042999999971],[-135.43917799999991,68.835541000000092],[-135.40499899999998,68.831940000000031],[-135.341949,68.831664999999987],[-135.33804299999997,68.834991000000059],[-135.34973099999996,68.838042999999971],[-135.42166099999997,68.848877000000016],[-135.49472000000003,68.854979999999955],[-135.52835099999993,68.856368999999972],[-135.56054700000004,68.860260000000039],[-135.59527600000001,68.86943100000002],[-135.60443099999998,68.873032000000023],[-135.61886599999997,68.881362999999965],[-135.62359600000002,68.886107999999979],[-135.61389199999991,68.889435000000105],[-135.33581499999997,68.917755000000113],[-135.241669,68.926926000000094],[-135.22720299999997,68.925537000000077],[-135.21554600000002,68.922484999999995],[-135.20861799999994,68.918319999999994],[-135.19665499999991,68.909714000000065],[-135.19168100000002,68.904984000000013],[-135.18695100000002,68.90026899999998],[-135.12191799999999,68.893326000000002],[-134.97747799999996,68.878311000000053],[-134.95111099999997,68.88108799999992],[-134.91723599999995,68.898041000000035],[-134.89474499999994,68.912490999999932],[-134.87777700000004,68.920822000000044],[-134.85803199999998,68.927765000000022],[-134.845551,68.929428000000144],[-134.81723,68.925812000000064],[-134.80334499999998,68.923035000000027],[-134.74581899999998,68.907486000000063],[-134.70889299999999,68.892761000000121],[-134.66946399999989,68.873305999999957],[-134.64169299999992,68.856644000000017],[-134.49554399999994,68.75221300000004]],[[-93.519729999999925,63.839432000000102],[-93.339995999999985,63.80832700000002],[-93.329726999999934,63.809715000000097],[-93.217498999999975,63.838599999999985],[-93.216110000000015,63.843605000000025],[-93.225006000000008,63.847771000000137],[-93.236389000000031,63.847487999999942],[-93.267501999999922,63.84276600000004],[-93.278884999999946,63.842491000000052],[-93.291671999999949,63.844994000000042],[-93.333892999999932,63.859160999999972],[-93.343338000000017,63.863052000000039],[-93.357498000000021,63.871376000000112],[-93.441939999999931,63.921660999999915],[-93.448883000000023,63.925827000000027],[-93.449721999999952,63.930824000000086],[-93.452498999999989,63.954437000000041],[-93.451110999999969,63.959717000000126],[-93.443329000000006,63.965546000000131],[-93.433884000000035,63.968596999999988],[-93.423614999999927,63.970825000000104],[-93.413054999999986,63.971930999999927],[-93.389998999999932,63.971656999999993],[-93.36471599999993,63.967491000000109],[-93.27305599999994,63.928047000000049],[-93.12222300000002,63.892493999999999],[-92.960281000000009,63.855826999999977],[-92.841675000000009,63.83526599999999],[-92.65194699999995,63.787498000000028],[-92.549728000000016,63.81082200000003],[-92.540558000000033,63.814713000000097],[-92.530563000000029,63.816939999999988],[-92.507506999999976,63.816383000000087],[-92.583892999999989,63.829436999999984],[-92.606948999999872,63.829720000000123],[-92.619155999999919,63.831383000000073],[-92.669158999999979,63.839989000000003],[-92.706954999999937,63.846656999999936],[-92.935546999999985,63.904990999999995],[-92.942489999999964,63.90915700000005],[-92.956116000000009,63.932770000000005],[-92.965285999999992,63.936652999999922],[-93.218886999999995,63.979431000000034],[-93.266113000000018,63.981934000000024],[-93.276397999999972,63.979713000000061],[-93.288054999999986,63.980545000000006],[-93.301102000000014,63.983047000000056],[-93.436661000000015,64.015274000000034],[-93.612212999999997,64.093048000000067],[-93.627212999999983,64.106369000000029],[-93.635009999999909,64.115265000000136],[-93.635833999999988,64.120255000000043],[-93.689986999999917,64.156096999999988],[-93.751677999999913,64.188873000000058],[-93.761123999999882,64.192748999999992],[-93.773055999999997,64.19358799999992],[-93.779723999999987,64.189697000000024],[-93.776947000000007,64.184981999999991],[-93.665008999999941,64.087204000000042],[-93.660004000000015,64.083054000000061],[-93.604172000000005,64.044434000000138],[-93.654723999999931,63.992493000000024],[-93.731673999999998,63.987212999999997],[-93.759170999999924,63.984161000000029],[-93.770553999999947,63.957771000000037],[-93.654449,63.896660000000111],[-93.59973100000002,63.870270000000062],[-93.55360399999995,63.850548000000003],[-93.533324999999991,63.84276600000004],[-93.519729999999925,63.839432000000102]],[[-70.783065999999963,48.380547000000092],[-70.782501000000025,48.348045000000127],[-70.768065999999919,48.35054800000006],[-70.548049999999989,48.356383999999991],[-70.498885999999914,48.353324999999984],[-70.464172000000019,48.3491590000001],[-70.383057000000008,48.331108000000086],[-70.332229999999981,48.316666000000112],[-70.272780999999952,48.298332000000016],[-70.237777999999992,48.282493999999986],[-70.210007000000019,48.269714000000022],[-70.198607999999979,48.26249700000011],[-70.06138599999997,48.239989999999977],[-70.040833000000021,48.244437999999946],[-70.025833000000034,48.246101000000067],[-70.017501999999865,48.245270000000062],[-69.995543999999995,48.239989999999977],[-69.936935000000005,48.221931000000041],[-69.920546999999885,48.216385000000002],[-69.828339000000028,48.166382000000056],[-69.838333000000034,48.173881999999935],[-69.84722899999997,48.181938000000002],[-69.861938000000009,48.198875000000044],[-69.871933000000013,48.212493999999936],[-69.879439999999931,48.220825000000048],[-69.884170999999981,48.224159000000043],[-69.95944199999991,48.269440000000088],[-69.977218999999991,48.274436999999978],[-69.985549999999989,48.274994000000049],[-69.993332000000009,48.274712000000022],[-70.043610000000001,48.267211999999915],[-70.099990999999989,48.267211999999915],[-70.131942999999978,48.269714000000022],[-70.151108000000022,48.274436999999978],[-70.167770000000019,48.279990999999995],[-70.272507000000019,48.325554000000125],[-70.420273000000009,48.361381999999992],[-70.427779999999984,48.361107000000118],[-70.635009999999966,48.390549000000078],[-70.727782999999874,48.415825000000098],[-70.739165999999955,48.423049999999989],[-70.751952999999958,48.42849300000006],[-70.761397999999929,48.431938000000002],[-70.779998999999975,48.435546999999985],[-70.954726999999991,48.459717000000012],[-70.980559999999912,48.462212000000022],[-71.012221999999952,48.46166199999999],[-71.025283999999886,48.457496999999989],[-71.048614999999927,48.445267000000058],[-71.047774999999888,48.444434999999942],[-71.031386999999995,48.443320999999969],[-70.906386999999938,48.423325000000034],[-70.799987999999985,48.401657000000057],[-70.785552999999879,48.395828000000051],[-70.781386999999881,48.391936999999984],[-70.779449,48.386940000000095],[-70.783065999999963,48.380547000000092]],[[-108.13890100000003,71.981658999999979],[-108.15583799999996,71.980820000000051],[-108.17415599999998,71.983322000000101],[-108.18720999999999,71.986649000000057],[-108.18916300000001,71.99192800000003],[-108.19972199999995,72.050537000000077],[-108.19027699999998,72.055542000000116],[-108.1702729999999,72.064423000000033],[-108.16027799999995,72.062759000000028],[-108.13417099999992,72.056091000000094],[-108.07444799999996,72.034149000000014],[-108.06416299999995,72.030272999999966],[-108.06220999999999,72.02526899999998],[-108.06304899999998,72.019440000000145],[-108.069458,72.013046000000088],[-108.07721700000002,72.007217000000082],[-108.10526999999996,71.992751999999996],[-108.12526700000001,71.983871000000022],[-108.13890100000003,71.981658999999979]],[[-85.84722899999997,72.294144000000074],[-85.837218999999948,72.288879000000009],[-85.837218999999948,72.262771999999927],[-85.851669000000015,72.241364000000033],[-85.877486999999917,72.221649000000014],[-85.889175000000023,72.218047999999953],[-85.90834000000001,72.217758000000117],[-85.981110000000001,72.236373999999955],[-86.005844000000025,72.243591000000094],[-86.061110999999983,72.261658000000125],[-86.096389999999985,72.276382000000012],[-86.107223999999917,72.283875000000023],[-86.110001000000011,72.289703000000145],[-86.101395000000025,72.293594000000041],[-86.093338000000017,72.294708000000014],[-86.067229999999995,72.293869000000029],[-86.005004999999983,72.296646000000123],[-85.863891999999964,72.297211000000004],[-85.84722899999997,72.294144000000074]],[[-78.735000999999954,72.365540000000124],[-78.75389100000001,72.363312000000008],[-78.81220999999988,72.365265000000079],[-78.830840999999964,72.364990000000091],[-78.854172000000005,72.362197999999978],[-78.874435000000005,72.358871000000079],[-78.889450000000011,72.354706000000078],[-78.91332999999986,72.345535000000098],[-78.920836999999949,72.341370000000097],[-78.93499799999995,72.336380000000077],[-78.950286999999946,72.334991000000059],[-79.053054999999972,72.360809000000017],[-79.075561999999934,72.403046000000074],[-79.075012000000015,72.409714000000065],[-79.070847000000015,72.414993000000038],[-79.066665999999998,72.420258000000103],[-79.044448999999929,72.426651000000049],[-79.00140399999998,72.438309000000118],[-78.97084000000001,72.445250999999985],[-78.955565999999919,72.444427000000019],[-78.950561999999991,72.442199999999957],[-78.946655000000021,72.440262000000018],[-78.939986999999917,72.435806000000127],[-78.846953999999926,72.415543000000071],[-78.833892999999989,72.411926000000108],[-78.740829000000019,72.374419999999986],[-78.731673999999941,72.36943100000002],[-78.735000999999954,72.365540000000124]],[[-79.508056999999951,72.348602000000028],[-79.533889999999985,72.346099999999979],[-79.555832000000009,72.346939000000077],[-79.572234999999978,72.349152000000061],[-79.581954999999994,72.35165399999994],[-79.59445199999999,72.356934000000024],[-79.609436000000017,72.36692800000003],[-79.624160999999901,72.379425000000026],[-79.683318999999983,72.430542000000116],[-79.586120999999991,72.453872999999987],[-79.576675000000023,72.456100000000049],[-79.552489999999921,72.451096000000121],[-79.541381999999999,72.444977000000051],[-79.529174999999952,72.439697000000024],[-79.502791999999886,72.429977000000122],[-79.46945199999999,72.423035000000027],[-79.43638599999997,72.418319999999994],[-79.42971799999998,72.411652000000004],[-79.440552000000025,72.37052900000009],[-79.446654999999907,72.364990000000091],[-79.455565999999919,72.359985000000052],[-79.470275999999956,72.355545000000006],[-79.508056999999951,72.348602000000028]],[[-79.993606999999997,72.413315000000125],[-80.009445000000028,72.410538000000031],[-80.022232000000031,72.413605000000132],[-80.124435000000005,72.506653000000028],[-80.130554000000018,72.512497000000053],[-80.133330999999941,72.519440000000031],[-80.129989999999907,72.523041000000092],[-80.11999499999996,72.526931999999988],[-80.112502999999947,72.526931999999988],[-80.063613999999973,72.523880000000077],[-80.036941999999897,72.51638800000012],[-79.921936000000017,72.463318000000072],[-79.916397000000018,72.458037999999988],[-79.926940999999999,72.447754000000145],[-79.939162999999951,72.436645999999996],[-79.956954999999994,72.426086000000055],[-79.978881999999885,72.417755000000113],[-79.993606999999997,72.413315000000125]],[[-110.46916199999993,72.569152999999972],[-110.48137699999995,72.565811000000053],[-110.54415899999998,72.569152999999972],[-110.57195300000001,72.575546000000145],[-110.58833299999998,72.583878000000141],[-110.593887,72.588592999999946],[-110.593887,72.594147000000135],[-110.576683,72.594986000000119],[-110.53888699999993,72.594986000000119],[-110.51666299999999,72.593322999999998],[-110.50446299999999,72.590820000000008],[-110.48249799999991,72.583603000000096],[-110.47444200000001,72.579437000000041],[-110.46888699999994,72.574706999999989],[-110.46916199999993,72.569152999999972]],[[-110.35582699999998,72.601929000000098],[-110.37304699999993,72.601379000000065],[-110.39499699999993,72.603043000000071],[-110.46417199999991,72.613312000000121],[-110.49472000000003,72.619141000000127],[-110.46916199999993,72.621368000000018],[-110.450287,72.621368000000018],[-110.39862099999993,72.618041999999946],[-110.35888699999992,72.614990000000034],[-110.34500100000002,72.611923000000104],[-110.34500100000002,72.606094000000098],[-110.35582699999998,72.601929000000098]],[[-108.510559,72.602768000000083],[-108.51999699999993,72.598038000000031],[-108.53778099999994,72.599426000000108],[-108.593613,72.61775200000011],[-108.604446,72.621643000000006],[-108.61221299999994,72.625809000000118],[-108.6141659999999,72.631088000000091],[-108.61361699999986,72.636657999999954],[-108.60388199999994,72.639435000000049],[-108.51722699999999,72.642487000000017],[-108.49665800000002,72.641372999999987],[-108.49194299999999,72.636657999999954],[-108.49416400000001,72.631927000000019],[-108.510559,72.602768000000083]],[[-110.30722000000003,72.630813999999987],[-110.36389199999996,72.630813999999987],[-110.39695699999993,72.636383000000137],[-110.41082799999998,72.639435000000049],[-110.40028399999994,72.643600000000049],[-110.36000100000001,72.648880000000133],[-110.31500199999999,72.651932000000045],[-110.28083799999996,72.642211999999972],[-110.281113,72.636383000000137],[-110.28999299999992,72.631653000000085],[-110.30722000000003,72.630813999999987]],[[-109.215012,72.790268000000083],[-109.22749299999992,72.787200999999982],[-109.24833699999999,72.788040000000137],[-109.37277199999994,72.806091000000094],[-109.41694599999988,72.815262000000075],[-109.41944899999993,72.820541000000048],[-109.37832600000002,72.828598],[-109.33389299999999,72.834990999999945],[-109.32028200000002,72.8316650000001],[-109.31220999999994,72.827484000000027],[-109.22444200000001,72.811096000000134],[-109.21056399999998,72.8077550000001],[-109.21166999999997,72.796371000000022],[-109.215012,72.790268000000083]],[[-95.735000999999954,72.798874000000012],[-95.753615999999909,72.796097000000088],[-95.771392999999932,72.799149],[-95.835555999999997,72.831100000000049],[-95.854172000000005,72.853591999999992],[-95.850829999999974,72.858321999999987],[-95.810546999999929,72.876647999999989],[-95.791106999999954,72.880264000000068],[-95.774170000000026,72.880264000000068],[-95.769164999999987,72.878036000000122],[-95.763061999999877,72.872482000000105],[-95.735275000000001,72.859985000000108],[-95.720550999999944,72.848037999999974],[-95.716949,72.84387200000009],[-95.714171999999905,72.838593000000117],[-95.71362299999987,72.832214000000079],[-95.718886999999938,72.809418000000051],[-95.725005999999951,72.803314],[-95.735000999999954,72.798874000000012]],[[-96.754181000000017,72.721374999999966],[-96.77027899999996,72.719710999999961],[-96.955275999999969,72.734146000000067],[-96.96945199999999,72.737761999999975],[-96.977782999999988,72.745254999999986],[-97.011123999999938,72.775818000000129],[-97.010283999999899,72.776657000000114],[-96.921386999999982,72.835815000000082],[-96.911117999999931,72.841094999999996],[-96.798614999999984,72.881363000000022],[-96.757232999999928,72.892761000000064],[-96.737212999999997,72.895264000000054],[-96.725554999999986,72.89498900000001],[-96.713332999999921,72.893326000000059],[-96.688323999999966,72.883330999999998],[-96.692215000000033,72.862762000000032],[-96.666945999999996,72.811096000000134],[-96.651672000000019,72.804152999999985],[-96.642501999999979,72.797760000000039],[-96.639998999999989,72.791655999999989],[-96.639998999999989,72.786652000000004],[-96.641388000000006,72.782211000000075],[-96.728058000000033,72.730545000000063],[-96.741378999999995,72.725539999999967],[-96.754181000000017,72.721374999999966]],[[-95.756957999999997,72.892487000000131],[-95.777495999999985,72.891937000000098],[-95.795272999999952,72.89498900000001],[-95.808334000000002,72.907210999999961],[-95.824721999999952,72.965271000000087],[-95.786666999999966,73.012496999999939],[-95.761672999999973,73.004714999999976],[-95.757232999999928,73.001663000000065],[-95.756118999999956,72.998596000000134],[-95.743606999999997,72.987762000000089],[-95.702498999999989,72.933593999999971],[-95.708343999999954,72.917206000000078],[-95.735549999999989,72.900543000000027],[-95.744445999999925,72.895827999999995],[-95.756957999999997,72.892487000000131]],[[-95.733886999999982,73.128860000000032],[-95.718062999999972,73.118042000000059],[-95.715835999999911,73.11192299999999],[-95.71556099999998,73.105545000000063],[-95.717772999999966,73.10026600000009],[-95.726395000000025,73.088881999999955],[-95.729171999999949,73.071105999999986],[-95.724715999999944,73.059142999999949],[-95.728332999999907,73.054428000000144],[-95.745543999999938,73.049423000000047],[-95.775283999999999,73.05525200000011],[-95.787216000000001,73.061920000000043],[-95.799437999999952,73.072769000000108],[-95.822509999999966,73.083054000000061],[-95.859726000000023,73.090820000000122],[-95.893341000000021,73.095824999999991],[-95.893065999999976,73.100815000000011],[-95.891112999999962,73.101089000000115],[-95.885009999999909,73.104706000000078],[-95.881942999999978,73.108597000000145],[-95.874709999999993,73.114150999999993],[-95.865279999999927,73.119979999999998],[-95.863051999999982,73.125259000000142],[-95.865279999999927,73.131363000000022],[-95.868332000000009,73.136383000000023],[-95.868880999999988,73.140548999999965],[-95.854995999999971,73.140548999999965],[-95.840835999999967,73.136658000000068],[-95.828888000000006,73.129974000000004],[-95.822509999999966,73.124695000000031],[-95.818343999999968,73.125533999999959],[-95.814163000000008,73.131087999999977],[-95.807495000000017,73.135544000000095],[-95.790833000000021,73.139434999999992],[-95.776397999999915,73.140548999999965],[-95.763335999999981,73.139709000000096],[-95.74499499999996,73.136658000000068],[-95.738892000000021,73.133880999999974],[-95.733886999999982,73.128860000000032]],[[-96.808333999999945,72.926376000000118],[-96.915282999999931,72.917755000000056],[-96.955275999999969,72.920531999999923],[-96.968338000000017,72.923874000000069],[-96.990554999999972,72.931090999999981],[-97.017776000000026,72.940536000000066],[-97.032227000000034,72.946640000000059],[-97.061385999999914,72.963318000000129],[-97.089721999999995,72.981658999999979],[-97.105834999999956,72.99832200000003],[-97.111938000000009,73.004714999999976],[-97.136947999999961,73.045822000000044],[-97.139724999999885,73.051926000000037],[-97.141953000000001,73.064148000000046],[-97.142775999999969,73.075272000000098],[-97.141112999999962,73.085541000000148],[-97.127776999999924,73.095824999999991],[-97.069732999999985,73.136932000000002],[-97.059432999999956,73.142212000000029],[-97.045546999999999,73.147491000000059],[-97.003341999999975,73.159714000000065],[-96.946944999999971,73.172484999999995],[-96.904449,73.179977000000122],[-96.848052999999993,73.187484999999981],[-96.809433000000013,73.189148000000102],[-96.786391999999978,73.18803400000013],[-96.771941999999967,73.181655999999975],[-96.755279999999971,73.175812000000121],[-96.653060999999923,73.136383000000023],[-96.602218999999934,73.099152000000117],[-96.580841000000021,73.081100000000049],[-96.575011999999901,73.074997000000053],[-96.568619000000012,73.062195000000088],[-96.565826000000015,73.056091000000038],[-96.564712999999983,73.050537000000077],[-96.565552000000025,73.044708000000014],[-96.573623999999995,73.033325000000048],[-96.636672999999973,72.965820000000065],[-96.643341000000021,72.96138000000002],[-96.65834000000001,72.954163000000108],[-96.697219999999959,72.941650000000038],[-96.743057000000022,72.933593999999971],[-96.765014999999948,72.930817000000047],[-96.808333999999945,72.926376000000118]],[[-96.90583799999996,73.220825000000048],[-96.924712999999997,73.218048000000124],[-96.944991999999957,73.218322999999941],[-96.984725999999966,73.220535000000041],[-97.040833000000021,73.228591999999992],[-97.079177999999956,73.235259999999982],[-97.106948999999929,73.242203000000131],[-97.117767000000015,73.249145999999939],[-97.115279999999927,73.253052000000025],[-97.090285999999878,73.261932000000058],[-97.058043999999995,73.269150000000081],[-97.035004000000015,73.272766000000104],[-96.977492999999981,73.273880000000077],[-96.967772999999966,73.273315000000082],[-96.968338000000017,73.267487000000131],[-96.951400999999976,73.239426000000037],[-96.909164000000033,73.238312000000064],[-96.896118000000001,73.237762000000032],[-96.886672999999917,73.231094000000041],[-96.889174999999966,73.224991000000102],[-96.90583799999996,73.220825000000048]],[[-113.99749799999995,72.799423000000104],[-114.01112399999994,72.79664600000001],[-114.06806899999998,72.795822000000044],[-114.15167200000002,72.798035000000027],[-114.20861799999994,72.796936000000073],[-114.22416699999997,72.794983000000116],[-114.23581699999994,72.791655999999989],[-114.35138699999993,72.747482000000048],[-114.35749800000002,72.74136400000009],[-114.35637700000001,72.735809000000017],[-114.33444199999997,72.693588000000034],[-114.327789,72.688873000000001],[-114.36582900000002,72.66276600000009],[-114.45168299999995,72.623032000000023],[-114.46501199999994,72.6202550000001],[-114.49553699999996,72.616379000000052],[-114.53138699999988,72.614990000000034],[-114.576683,72.60914600000001],[-114.58999599999993,72.606368999999916],[-114.60472099999998,72.60165400000011],[-114.55832700000002,72.560806000000014],[-114.42666600000001,72.556090999999981],[-114.38527699999986,72.555251999999996],[-114.35138699999993,72.557479999999941],[-114.33999599999999,72.560806000000014],[-114.33029199999999,72.565262000000075],[-114.32584400000002,72.571930000000066],[-114.12805200000003,72.626083000000051],[-114.10305800000003,72.632202000000063],[-114.06276699999995,72.640274000000034],[-113.99027999999998,72.651382000000012],[-113.91027800000001,72.659148999999957],[-113.89306599999998,72.660262999999986],[-113.88333099999988,72.657486000000063],[-113.89046499999995,72.648048000000017],[-113.89222699999999,72.640822999999955],[-113.88054699999992,72.637207000000103],[-113.858047,72.635817999999915],[-113.80666399999996,72.639160000000061],[-113.76222199999995,72.646103000000039],[-113.70834400000001,72.656937000000084],[-113.67138699999992,72.666656000000103],[-113.61277799999988,72.683868000000132],[-113.58750899999995,72.689971999999955],[-113.54666099999997,72.698029000000133],[-113.51611300000002,72.701934999999992],[-113.50611900000001,72.699141999999995],[-113.52084400000001,72.688034000000016],[-113.55055199999987,72.675262000000032],[-113.57250999999991,72.667480000000069],[-113.61945299999996,72.653594999999996],[-113.64277599999991,72.646652000000017],[-113.68776699999995,72.631927000000019],[-113.70944199999991,72.624145999999996],[-113.72917200000001,72.615540000000067],[-113.73082699999998,72.609421000000054],[-113.72193900000002,72.60554499999995],[-113.69972200000001,72.604155999999989],[-113.68443299999996,72.606094000000098],[-113.65750100000002,72.611374000000012],[-113.46639999999996,72.665268000000026],[-113.44275700000003,72.672211000000004],[-113.43639400000001,72.67804000000001],[-113.43167099999999,72.684708000000001],[-113.41000399999996,72.729431000000034],[-113.41332999999992,72.734711000000118],[-113.41972399999997,72.739150999999936],[-113.43138099999999,72.742751999999996],[-113.44860799999992,72.744979999999998],[-113.53527799999995,72.748871000000065],[-113.58029199999987,72.751663000000121],[-113.59750399999996,72.754166000000112],[-113.60637699999995,72.758331000000112],[-113.60804699999994,72.769439999999975],[-113.59889199999998,72.782760999999937],[-113.58249699999999,72.793045000000006],[-113.38694800000002,72.907486000000006],[-113.33139,72.935257000000092],[-113.30277999999998,72.948868000000061],[-113.26862299999999,72.960266000000047],[-113.14862099999999,72.994705000000067],[-113.06276699999989,73.00749200000007],[-113.02806099999998,73.009430000000009],[-113.00695799999994,73.008881000000088],[-112.823059,72.998871000000008],[-112.81139400000001,72.9952550000001],[-112.79472399999997,72.982208000000071],[-112.78582799999998,72.978317000000004],[-112.77139299999993,72.975266000000033],[-112.75418100000002,72.972763000000043],[-112.708618,72.969711000000132],[-112.64362299999993,72.966934000000037],[-112.60082999999986,72.963607999999965],[-112.56360599999994,72.959152000000074],[-112.51500699999991,72.951096000000007],[-112.5,72.947922000000119],[-112.47165699999994,72.941925000000026],[-112.44583099999994,72.935257000000092],[-112.41388699999993,72.924149000000057],[-112.387787,72.911102000000028],[-112.37638900000002,72.907760999999994],[-112.36193800000001,72.904709000000082],[-112.34472700000003,72.902205999999921],[-112.27944899999994,72.896941999999967],[-112.23777799999999,72.895537999999988],[-112.14195299999994,72.896378000000027],[-112.09834299999989,72.894150000000025],[-112.06166099999996,72.889434999999992],[-111.94776899999999,72.870529000000147],[-111.78333299999997,72.834717000000012],[-111.67582699999997,72.814697000000024],[-111.65888999999999,72.8119200000001],[-111.59416199999998,72.806641000000127],[-111.54055799999998,72.799423000000104],[-111.52639799999997,72.796371000000022],[-111.23693799999995,72.726379000000122],[-111.22582999999997,72.7227630000001],[-111.22000100000002,72.718323000000055],[-111.20249899999999,72.67053199999998],[-111.20527599999997,72.664429000000041],[-111.26278699999995,72.579163000000108],[-111.27694699999989,72.567490000000078],[-111.45221699999996,72.477768000000026],[-111.52778599999999,72.44999700000011],[-111.65110800000002,72.40887500000008],[-111.675003,72.402206000000035],[-111.736107,72.395264000000111],[-111.76999699999993,72.393600000000106],[-111.78527799999995,72.391936999999984],[-111.81220999999999,72.386658000000011],[-111.859734,72.373306000000014],[-111.890289,72.360535000000084],[-111.89890299999996,72.355545000000006],[-111.90556299999997,72.349716000000001],[-111.90167200000002,72.346099999999979],[-111.86250299999995,72.330551000000071],[-111.85138699999999,72.326934999999992],[-111.66388699999999,72.276382000000012],[-111.50446299999999,72.311920000000043],[-111.44499200000001,72.328873000000101],[-111.42443799999995,72.337204000000042],[-111.41915899999998,72.343871999999976],[-111.43305999999995,72.346939000000077],[-111.45140100000003,72.346939000000077],[-111.487213,72.336655000000064],[-111.51944700000001,72.334152000000074],[-111.5616609999999,72.336655000000064],[-111.578056,72.339156999999943],[-111.58917200000002,72.342758000000003],[-111.60582699999998,72.350815000000011],[-111.61165599999998,72.361099000000024],[-111.609444,72.367203000000075],[-111.58833299999998,72.376373000000115],[-111.37444299999993,72.446640000000002],[-111.350281,72.453322999999955],[-111.3094329999999,72.460815000000082],[-111.29387700000001,72.462768999999923],[-111.26583899999997,72.465546000000018],[-111.24889400000001,72.466385000000002],[-111.22860699999995,72.465546000000018],[-111.20249899999999,72.46026599999999],[-111.21333300000003,72.446930000000009],[-111.23277299999995,72.4369200000001],[-111.24500299999994,72.433594000000085],[-111.27223200000003,72.428588999999988],[-111.30139200000002,72.404160000000047],[-111.27749599999993,72.369979999999941],[-111.11277799999993,72.335266000000104],[-111.09528399999994,72.379700000000014],[-111.09137699999997,72.401932000000102],[-111.00446299999999,72.46527100000003],[-110.8691639999999,72.473312000000078],[-110.82444799999996,72.479156000000103],[-110.80304699999999,72.485259999999926],[-110.82501200000002,72.503875999999934],[-110.83332799999999,72.519150000000025],[-110.827789,72.525818000000015],[-110.73805199999993,72.565536000000009],[-110.72749299999998,72.569716999999912],[-110.71528599999999,72.573044000000039],[-110.70140100000003,72.575546000000145],[-110.68083199999995,72.574706999999989],[-110.66610700000001,72.573044000000039],[-110.53527799999995,72.546646000000067],[-110.52639799999992,72.526931999999988],[-110.57501199999996,72.51388500000013],[-110.59445199999993,72.50471500000009],[-110.60166899999996,72.498871000000065],[-110.60193600000002,72.493317000000104],[-110.59361299999989,72.489150999999993],[-110.55249000000003,72.47387700000013],[-110.53083800000002,72.46665999999999],[-110.35056299999997,72.428040000000067],[-110.32861299999996,72.426086000000055],[-110.30999799999995,72.426086000000055],[-110.30387899999999,72.430542000000116],[-110.31194299999993,72.434708000000057],[-110.41027799999995,72.462204000000099],[-110.50334199999998,72.484985000000108],[-110.514183,72.488585999999998],[-110.52250700000002,72.492752000000053],[-110.52778599999999,72.497482000000105],[-110.53056299999992,72.502486999999974],[-110.52333099999998,72.508330999999998],[-110.39639299999999,72.552200000000084],[-110.38417099999998,72.555542000000003],[-110.36527999999998,72.555542000000003],[-110.34333800000002,72.55386400000009],[-110.32389799999993,72.551650999999936],[-110.31304899999998,72.547760000000039],[-110.22028399999994,72.51388500000013],[-110.20140100000003,72.505829000000062],[-110.15527299999997,72.480270000000075],[-110.06139399999995,72.437484999999924],[-110.05055199999993,72.433868000000018],[-110.03999299999998,72.438034000000073],[-110.02194199999991,72.447754000000145],[-109.99889400000001,72.455261000000121],[-109.97112300000003,72.46026599999999],[-109.95249899999999,72.459991000000116],[-109.91972399999986,72.454711999999972],[-109.81388900000002,72.428314],[-109.79666099999992,72.426926000000094],[-109.78278399999999,72.429428000000144],[-109.77806099999998,72.434708000000057],[-109.78582799999992,72.438873000000058],[-109.80583199999995,72.445526000000029],[-109.83029199999999,72.452208999999982],[-110.04250300000001,72.50471500000009],[-110.22305299999999,72.545822000000101],[-110.23665599999998,72.548874000000069],[-110.24777199999994,72.552765000000136],[-110.25583599999987,72.55693100000002],[-110.252792,72.56303400000013],[-110.24221799999992,72.566940000000045],[-110.22165699999994,72.566086000000041],[-110.12082699999996,72.560257000000036],[-110.10417200000001,72.557754999999986],[-110.09056099999998,72.55442800000003],[-110.06889299999995,72.546936000000073],[-110.03888699999987,72.535538000000088],[-110.02278099999995,72.527206000000092],[-110.00361599999991,72.519440000000031],[-109.97112300000003,72.508330999999998],[-109.90499899999998,72.487198000000092],[-109.88861099999986,72.484711000000004],[-109.80943300000001,72.491653000000099],[-109.79527300000001,72.49414100000007],[-109.78472899999997,72.498322000000144],[-109.78278399999999,72.503051999999968],[-109.94275700000003,72.604155999999989],[-109.95889299999993,72.612762000000089],[-110.09306300000003,72.65637200000009],[-110.11332699999997,72.657211000000018],[-110.17111199999999,72.648330999999985],[-110.18666100000002,72.646652000000017],[-110.22112299999998,72.645264000000054],[-110.241669,72.646103000000039],[-110.25556899999998,72.649429000000055],[-110.26666299999999,72.653046000000018],[-110.283073,72.66137700000013],[-110.28832999999992,72.666091999999992],[-110.29110700000001,72.671097000000032],[-110.20973200000003,72.71775800000006],[-110.20056199999999,72.7227630000001],[-110.18831599999999,72.726089000000115],[-110.17083699999995,72.726928999999984],[-110.078079,72.727065999999979],[-110.04167200000001,72.722488000000055],[-110.03056300000003,72.718596999999988],[-109.99804699999999,72.701934999999992],[-109.98693800000001,72.698318000000029],[-109.85221899999993,72.665817000000118],[-109.83277899999996,72.663315000000068],[-109.81723,72.664992999999981],[-109.77084399999995,72.716385000000116],[-109.77027900000002,72.722214000000122],[-109.78138699999994,72.725815000000011],[-109.80082700000003,72.728043000000127],[-109.81973299999993,72.728043000000127],[-110.03111299999995,72.747757000000036],[-110.17887899999994,72.769149999999968],[-110.17138699999998,72.774993999999992],[-110.16832699999986,72.781097000000102],[-110.17083699999995,72.786101999999971],[-110.17639199999996,72.790817000000004],[-110.21166999999997,72.818328999999949],[-110.24526999999995,72.823607999999979],[-110.32640099999992,72.826385000000016],[-110.36638599999998,72.827208999999982],[-110.47666899999996,72.834990999999945],[-110.493607,72.83776899999998],[-110.53555299999994,72.847214000000008],[-110.54666099999997,72.850815000000068],[-110.56331599999999,72.859145999999953],[-110.74276699999996,72.957214000000135],[-110.75389099999995,72.966385000000059],[-110.75666799999993,72.971374999999966],[-110.75389099999995,72.977768000000083],[-110.74804699999993,72.984421000000054],[-110.74082900000002,72.989975000000072],[-110.73166700000002,72.994980000000112],[-110.70834400000001,73.002487000000031],[-110.69415300000003,73.004990000000021],[-110.67832899999991,73.006653000000142],[-110.61860699999994,73.011383000000137],[-110.51139799999993,73.015274000000034],[-110.432503,73.014435000000105],[-110.39083899999997,73.012496999999939],[-110.16610700000001,72.996094000000085],[-110.05110199999996,72.984711000000061],[-109.91887700000001,72.96804800000001],[-109.65943899999996,72.924988000000042],[-109.63445299999995,72.918045000000063],[-109.61805700000002,72.909424000000115],[-109.618607,72.903869999999927],[-109.62943999999993,72.899719000000061],[-109.66111799999999,72.896652000000131],[-109.69471699999997,72.894440000000088],[-109.724716,72.890549000000021],[-109.73889200000002,72.888046000000031],[-109.75,72.883881000000031],[-109.75472999999994,72.878585999999984],[-109.74665799999997,72.874420000000043],[-109.65862300000003,72.844711000000018],[-109.379707,72.770538000000101],[-109.22778299999993,72.761658000000068],[-109.05110200000001,72.680267000000072],[-109.02999899999998,72.647217000000012],[-109.04915599999993,72.604155999999989],[-109.045547,72.572495000000117],[-109.04332699999998,72.567490000000078],[-109.02861000000001,72.565536000000009],[-108.88249200000001,72.564423000000147],[-108.86527999999998,72.564987000000087],[-108.85109699999998,72.567490000000078],[-108.84194899999994,72.572495000000117],[-108.81916799999993,72.591095000000053],[-108.72277800000001,72.582763999999941],[-108.70361300000002,72.58027600000014],[-108.67666600000001,72.573883000000023],[-108.64472999999987,72.562485000000038],[-108.62138399999998,72.549988000000042],[-108.61638599999998,72.54525799999999],[-108.58805799999993,72.505554000000075],[-108.58944700000001,72.494431000000077],[-108.59638999999993,72.482208000000014],[-108.60278299999999,72.475540000000024],[-108.61054999999993,72.469986000000063],[-108.62470999999994,72.457489000000066],[-108.63722200000001,72.444427000000019],[-108.64499699999993,72.426651000000049],[-108.65055799999999,72.403595000000053],[-108.66361999999998,72.362761999999975],[-108.66278099999994,72.346374999999966],[-108.65834000000001,72.336105000000032],[-108.52416999999997,72.199706999999989],[-108.45500199999998,72.157211000000132],[-108.44415300000003,72.161102000000028],[-108.42832900000002,72.158325000000104],[-108.41805999999997,72.154434000000037],[-108.404449,72.14694199999991],[-108.40222199999994,72.141663000000108],[-108.39890300000002,72.113602000000071],[-108.39472999999998,72.042755000000113],[-108.39527900000002,72.036926000000108],[-108.396118,72.03137200000009],[-108.31639099999995,71.984146000000067],[-108.20417799999996,71.963882000000126],[-108.19138299999992,71.960541000000092],[-108.18666100000002,71.955826000000059],[-108.18276999999995,71.945525999999916],[-108.18971299999998,71.933318999999983],[-108.19611399999997,71.92692599999998],[-108.23361199999999,71.899719000000061],[-108.28639199999992,71.860809000000131],[-108.28278399999999,71.792206000000022],[-108.28083800000002,71.786925999999994],[-108.24276700000001,71.718597000000045],[-108.23805199999998,71.713882000000012],[-108.23082699999992,71.709426999999948],[-108.22055099999994,71.705826000000116],[-108.20777900000002,71.70248400000014],[-108.19248999999996,71.699707000000046],[-108.17748999999998,71.701096000000064],[-108.14111300000002,71.710541000000148],[-108.13054699999992,71.714432000000045],[-108.10333300000002,71.719147000000078],[-108.08693700000003,71.719711000000018],[-108.066101,71.71775800000006],[-108.03639199999998,71.705826000000116],[-108.02194199999997,71.697204999999997],[-107.98805199999987,71.675537000000077],[-107.97609699999987,71.666381999999999],[-107.96694899999994,71.656936999999971],[-107.96777299999991,71.651382000000069],[-107.91583300000002,71.624984999999981],[-107.84528399999994,71.603867000000093],[-107.82888799999995,71.604431000000034],[-107.75334199999998,71.610260000000039],[-107.74109599999997,71.613312000000121],[-107.73194899999999,71.618042000000003],[-107.72416699999991,71.623871000000008],[-107.72609699999998,71.629149999999981],[-107.74054699999994,71.637496999999939],[-107.75028999999995,71.641373000000044],[-107.77583299999998,71.648041000000035],[-107.82472199999995,71.672759999999982],[-107.83194700000001,71.676926000000037],[-107.83640300000002,71.681656000000089],[-107.83833300000003,71.686920000000043],[-107.83750899999995,71.692474000000061],[-107.82305899999994,71.716934000000094],[-107.81527699999998,71.7227630000001],[-107.80444299999999,71.726653999999996],[-107.78943600000002,71.728043000000014],[-107.7519529999999,71.726653999999996],[-107.73665599999998,71.723602000000085],[-107.63027999999997,71.732208000000014],[-107.49472000000003,71.786377000000016],[-107.451683,71.857483000000059],[-107.36361699999992,71.871917999999994],[-107.34555099999994,71.871643000000006],[-107.29695099999998,71.874145999999939],[-107.28333299999997,71.876373000000001],[-107.27084400000001,71.879424999999969],[-107.26139799999999,71.884155000000135],[-107.25334199999998,71.889708999999982],[-107.25250199999994,71.895537999999988],[-107.25695799999994,71.900269000000094],[-107.264183,71.904434000000094],[-107.41805999999997,71.953873000000101],[-107.59638999999993,72.004439999999988],[-107.61389199999996,72.012496999999996],[-107.62581599999999,72.021652000000017],[-107.63027999999997,72.026382000000069],[-107.65139799999997,72.061096000000134],[-107.65334300000001,72.066375999999991],[-107.64943700000003,72.072495000000004],[-107.63999899999993,72.077208999999982],[-107.62609899999995,72.079437000000098],[-107.61389199999996,72.082764000000054],[-107.61000100000001,72.08859300000006],[-107.61193799999995,72.093872000000033],[-107.63527699999997,72.121917999999937],[-107.68138099999999,72.136108000000036],[-107.699997,72.138596000000007],[-107.729446,72.137207000000046],[-107.74333199999995,72.134994999999947],[-107.76027699999992,72.134430000000123],[-107.77887699999997,72.136658000000068],[-107.78083800000002,72.141937000000041],[-107.787216,72.184708000000114],[-107.77806099999992,72.208038000000045],[-107.843887,72.354156000000046],[-107.87748699999992,72.424423000000104],[-107.88639799999993,72.519713999999965],[-107.87693799999994,72.524428999999998],[-107.87165799999997,72.529709000000082],[-107.87666299999995,72.567215000000033],[-107.88054699999998,72.577484000000084],[-107.88555899999989,72.586655000000007],[-107.91555799999998,72.597214000000065],[-107.92887899999994,72.60054000000008],[-107.99082900000002,72.612487999999985],[-108.00418099999996,72.615814],[-108.01194800000002,72.619980000000112],[-108.025284,72.666091999999992],[-108.02639799999997,72.676926000000037],[-108.02667199999996,72.719986000000006],[-108.05110200000001,72.781372000000147],[-108.05803699999996,72.791092000000049],[-108.11193799999995,72.890823000000125],[-108.15194699999989,72.971100000000092],[-108.16528299999993,73.010817999999972],[-108.26363400000002,73.091934000000094],[-108.29361,73.120254999999986],[-108.29998799999998,73.135544000000095],[-108.295547,73.147491000000059],[-108.291946,73.153595000000053],[-108.28527799999995,73.159987999999998],[-108.26862299999999,73.171371000000022],[-108.23029299999996,73.187484999999981],[-108.18110699999994,73.201660000000061],[-108.16639700000002,73.203873000000044],[-108.13390400000003,73.206940000000145],[-108.11582900000002,73.207489000000066],[-108.07389799999993,73.205261000000121],[-108.02390300000002,73.201096000000121],[-107.93443300000001,73.187484999999981],[-107.91471899999993,73.184981999999991],[-107.89388999999994,73.183868000000018],[-107.87416099999996,73.183594000000085],[-107.86416599999995,73.188583000000051],[-107.87222300000002,73.192748999999935],[-107.90471600000001,73.204163000000051],[-107.94611399999991,73.214157000000057],[-108.01027699999997,73.226089000000002],[-108.05166599999995,73.236098999999911],[-108.08444199999997,73.247482000000105],[-108.11638599999992,73.264435000000049],[-108.15361000000001,73.302475000000129],[-108.08444199999997,73.349990999999989],[-108.07140399999992,73.353317000000061],[-108.05332899999996,73.353867000000093],[-107.99109599999991,73.351379000000122],[-107.94722000000002,73.348328000000095],[-107.77139299999999,73.323883000000023],[-107.675003,73.323318000000029],[-107.63110399999999,73.319991999999957],[-107.614441,73.31721500000009],[-107.40334300000001,73.270537999999988],[-107.33583099999987,73.248031999999967],[-107.24999999999994,73.217484000000013],[-107.21028099999995,73.201660000000061],[-107.18888900000002,73.194138000000123],[-107.172234,73.191086000000041],[-107.10582699999998,73.17942800000003],[-107.06973299999999,73.173874000000012],[-107.05027799999999,73.173598999999967],[-107.03694200000001,73.176651000000106],[-107.025284,73.180542000000003],[-107.01666299999999,73.186095999999964],[-107.01083399999999,73.191360000000145],[-107.02027899999996,73.200821000000133],[-107.05249000000003,73.212493999999936],[-107.09028599999994,73.223037999999974],[-107.11081699999994,73.231369000000086],[-107.11860699999994,73.23553499999997],[-107.12361099999998,73.240265000000022],[-107.11945300000002,73.246368000000132],[-107.03028899999998,73.29553199999998],[-107.01862299999999,73.299423000000047],[-106.88249199999996,73.312195000000031],[-106.86138899999997,73.310806000000014],[-106.76139799999999,73.293045000000063],[-106.75083899999993,73.289153999999996],[-106.74610899999999,73.284423999999944],[-106.74109599999991,73.268875000000037],[-106.72721899999993,73.254715000000147],[-106.69666299999994,73.237488000000099],[-106.66471899999999,73.226089000000002],[-106.65110800000002,73.222487999999942],[-106.63474300000001,73.219711000000075],[-106.60305800000003,73.216660000000047],[-106.58222999999998,73.21527100000003],[-106.39862099999993,73.149155000000064],[-106.24027999999998,73.085815000000082],[-106.06388899999996,73.047759999999982],[-106.04750100000001,73.044708000000014],[-106.02834300000001,73.044434000000081],[-105.94888300000002,73.053313999999943],[-105.91027799999989,73.058868000000132],[-105.87638899999996,73.058318999999983],[-105.85555999999997,73.056931000000077],[-105.84221600000001,73.053588999999988],[-105.83194699999996,73.049713000000111],[-105.82472200000001,73.045258000000047],[-105.82195299999995,73.034987999999942],[-105.82333399999999,73.029433999999981],[-105.83249699999999,73.017211999999972],[-105.82972699999993,73.006942999999978],[-105.82224299999996,73.002487000000031],[-105.80471799999998,72.994431000000134],[-105.79444899999993,72.990265000000079],[-105.76083399999999,72.976929000000098],[-105.737503,72.969436999999971],[-105.69776899999999,72.959152000000074],[-105.67859599999997,72.95637499999998],[-105.62917299999998,72.939972000000125],[-105.56220999999999,72.913040000000024],[-105.445831,72.838318000000072],[-105.32611099999991,72.746368000000075],[-105.32195299999995,72.741653000000042],[-105.32055700000001,72.736649000000057],[-105.32528699999995,72.730545000000063],[-105.33693700000003,72.726653999999996],[-105.35610999999994,72.727203000000088],[-105.37777699999998,72.729431000000034],[-105.39778100000001,72.737198000000035],[-105.41194200000001,72.745819000000097],[-105.41915899999992,72.750275000000045],[-105.42748999999992,72.759720000000073],[-105.43472300000002,72.764160000000118],[-105.46472199999994,72.775818000000129],[-105.47778299999999,72.779434000000037],[-105.49833699999994,72.780822999999998],[-105.51000999999997,72.776932000000102],[-105.45722999999992,72.702773999999977],[-105.44722000000002,72.698868000000061],[-105.38249200000001,72.681366000000025],[-105.35665899999998,72.674423000000047],[-105.29472399999997,72.631927000000019],[-105.23110999999994,72.543320000000051],[-105.19583099999988,72.482483000000059],[-105.19972199999995,72.460541000000148],[-105.20140100000003,72.454711999999972],[-105.20612299999993,72.448868000000118],[-105.21777299999991,72.444977000000051],[-105.23194899999993,72.447205000000054],[-105.26167299999992,72.458878000000027],[-105.27722199999994,72.462204000000099],[-105.29305999999997,72.460815000000082],[-105.301941,72.455261000000121],[-105.29778299999987,72.450546000000088],[-105.24137899999999,72.399718999999948],[-105.23029299999996,72.390549000000078],[-105.21665999999993,72.381927000000076],[-105.18998699999997,72.369705000000124],[-105.16055299999988,72.35775799999999],[-105.13999899999999,72.344711000000132],[-105.04415899999998,72.248032000000023],[-105.03639199999986,72.238586000000055],[-105.03362299999998,72.234711000000061],[-105.02443700000003,72.219986000000119],[-104.99166899999989,72.203323000000012],[-104.95749699999999,72.181366000000139],[-104.95527599999997,72.171097000000145],[-104.95722999999992,72.165543000000127],[-104.96167000000003,72.159424000000115],[-104.96916199999998,72.153046000000131],[-104.97805799999992,72.147491000000059],[-104.98805199999993,72.142761000000007],[-104.99973299999999,72.13888500000013],[-105.02999899999998,72.124695000000031],[-105.03751399999999,72.118317000000104],[-105.03639199999986,72.11303700000002],[-105.01862299999993,72.066939999999931],[-104.92944299999988,72.034149000000014],[-104.87193299999996,71.989975000000072],[-104.82917800000001,71.937195000000031],[-104.82444800000002,71.927475000000129],[-104.82028200000002,71.906647000000078],[-104.82556199999999,71.889708999999982],[-104.82250999999997,71.874145999999939],[-104.8186189999999,71.86914100000007],[-104.78999299999998,71.84137000000004],[-104.78333299999986,71.836929000000112],[-104.771118,71.833603000000096],[-104.70056199999999,71.829987000000017],[-104.68554699999993,71.826935000000105],[-104.67331699999994,71.823317999999972],[-104.66000400000001,71.81442300000009],[-104.53472899999986,71.719711000000018],[-104.37638900000002,71.598038000000031],[-104.36638600000003,71.588882000000126],[-104.35527000000002,71.574432000000002],[-104.35916099999997,71.563309000000004],[-104.36361699999998,71.557204999999954],[-104.37581599999993,71.544707999999957],[-104.383331,71.538315000000011],[-104.40167200000002,71.514435000000049],[-104.40361000000001,71.508605999999986],[-104.40194700000001,71.498322000000144],[-104.34416199999993,71.410811999999964],[-104.33332799999994,71.396378000000141],[-104.35722399999986,71.357483000000002],[-104.37165799999997,71.360809000000017],[-104.38918299999995,71.363602000000014],[-104.40805099999994,71.364990000000091],[-104.43804899999998,71.362761999999975],[-104.45056199999988,71.359711000000118],[-104.46167000000003,71.355820000000051],[-104.47138999999993,71.351089000000115],[-104.48860199999996,71.339980999999966],[-104.49333200000001,71.334152000000131],[-104.49694799999997,71.322769000000108],[-104.49500299999988,71.312485000000095],[-104.49137899999988,71.307480000000055],[-104.46250900000001,71.281097000000045],[-104.44972200000001,71.272217000000012],[-104.43888900000002,71.257767000000115],[-104.43971299999998,71.246933000000013],[-104.44055200000003,71.236098999999967],[-104.44444299999992,71.224990999999989],[-104.44888300000002,71.218872000000147],[-104.470551,71.199706999999989],[-104.49610899999999,71.183044000000109],[-104.52555799999999,71.168869000000029],[-104.55610699999994,71.155548000000067],[-104.57805599999995,71.148041000000092],[-104.59056099999998,71.145263999999997],[-104.62361099999987,71.133605999999986],[-104.64862099999999,71.11914100000007],[-104.60472099999998,71.079711999999972],[-104.58583099999998,71.066666000000055],[-104.57028199999996,71.05831900000004],[-104.53666699999997,71.044144000000131],[-104.48916600000001,71.024703999999986],[-104.45667300000002,71.013610999999969],[-104.33778399999994,70.979706000000078],[-104.23805199999998,70.964996000000099],[-104.22389199999998,70.961928999999998],[-104.122772,70.914703000000145],[-104.11665299999999,70.910262999999929],[-104.09999099999999,70.891372999999987],[-104.07640099999992,70.863037000000077],[-104.05277999999993,70.834427000000062],[-104.04583699999995,70.824996999999996],[-104.04277000000002,70.804153000000042],[-104.02887699999991,70.784988000000055],[-104.01583900000003,70.770827999999938],[-104.00029000000001,70.757216999999969],[-103.99416400000001,70.75277699999998],[-103.98528299999998,70.748871000000065],[-103.97138999999987,70.745529000000147],[-103.95472699999999,70.742752000000053],[-103.94027699999987,70.741653000000099],[-103.92443800000001,70.741928000000087],[-103.806107,70.723037999999974],[-103.73111,70.691649999999925],[-103.64083899999997,70.646652000000017],[-103.63417099999992,70.637206999999989],[-103.62470999999994,70.628036000000009],[-103.59889199999992,70.615814000000057],[-103.55638099999999,70.600815000000011],[-103.52333099999987,70.59304800000001],[-103.506958,70.590271000000143],[-103.49027999999998,70.587494000000049],[-103.47305299999999,70.586928999999998],[-103.44193999999999,70.587204000000042],[-103.39835399999993,70.590546000000131],[-103.34277299999997,70.59664900000007],[-103.32721699999991,70.59664900000007],[-103.30915799999997,70.595260999999994],[-103.26500699999997,70.581665000000044],[-103.239441,70.569443000000035],[-103.20472699999993,70.548035000000141],[-103.14972699999998,70.513885000000016],[-103.13276699999994,70.505829000000119],[-103.12165800000002,70.501938000000052],[-103.095551,70.498031999999967],[-103.01194799999996,70.492202999999961],[-102.97693600000002,70.489975000000015],[-102.96056399999998,70.489151000000049],[-102.93055699999996,70.490540000000067],[-102.92027299999995,70.494980000000055],[-102.91443599999991,70.500000000000114],[-102.915009,70.505264000000068],[-102.91832699999998,70.510268999999937],[-102.92388900000003,70.514435000000049],[-102.93250299999988,70.518600000000049],[-102.95722999999998,70.525543000000027],[-102.97528099999994,70.527205999999978],[-103.03028899999998,70.534988000000112],[-103.05526700000001,70.541931000000091],[-103.09973099999991,70.55664100000007],[-103.10833700000001,70.56053199999991],[-103.12609899999995,70.57388300000008],[-103.13999899999993,70.609421000000111],[-103.15556300000003,70.654984000000013],[-103.156113,70.659987999999998],[-103.15387699999997,70.665817000000004],[-103.14916999999991,70.67164600000001],[-103.13667299999992,70.674423000000104],[-103.12110899999999,70.674698000000092],[-103.10417200000001,70.673873999999955],[-103.08583099999998,70.672484999999995],[-103.06667299999998,70.669983000000059],[-103.0250089999999,70.660262999999986],[-103.00250199999999,70.652771000000087],[-102.85665899999992,70.597763000000043],[-102.84834299999994,70.593871999999976],[-102.84528399999999,70.588882000000126],[-102.83833300000003,70.574158000000068],[-102.83583099999998,70.548035000000141],[-102.74445300000002,70.494705000000067],[-102.61501299999992,70.460541000000035],[-102.60138699999999,70.457214000000079],[-102.52027899999996,70.438309000000118],[-102.45749699999988,70.426376000000118],[-102.40862299999998,70.417479999999955],[-102.33332799999999,70.397766000000047],[-102.281387,70.384155000000078],[-102.11749299999997,70.339432000000045],[-101.99610899999988,70.287201000000096],[-101.97972099999998,70.279160000000047],[-101.92555199999998,70.260544000000039],[-101.89334099999996,70.254439999999988],[-101.87666300000001,70.25360100000006],[-101.86138899999997,70.253876000000048],[-101.84916699999985,70.256653000000142],[-101.83805799999993,70.260268999999994],[-101.828056,70.264709000000039],[-101.82195299999995,70.269714000000079],[-101.81722999999988,70.281097000000102],[-101.81749699999995,70.286102000000142],[-101.80972300000002,70.297759999999982],[-101.79972800000002,70.302199999999971],[-101.71472199999999,70.308868000000132],[-101.69803599999995,70.308029000000033],[-101.68195300000002,70.304977000000065],[-101.59944200000001,70.275818000000129],[-101.58860800000002,70.271927000000062],[-101.58029199999993,70.267761000000121],[-101.58029199999993,70.262771999999984],[-101.58556399999998,70.256653000000142],[-101.60555999999997,70.247757000000036],[-101.63417099999998,70.233047000000056],[-101.64306599999998,70.227768000000083],[-101.65083300000003,70.221374999999966],[-101.65055799999993,70.210815000000025],[-101.64222699999993,70.196365000000071],[-101.62249799999995,70.162491000000045],[-101.61416599999995,70.153046000000018],[-101.55999800000001,70.113602000000071],[-101.55194099999994,70.109420999999998],[-101.53971899999999,70.106934000000138],[-101.52667200000002,70.108597000000032],[-101.39723200000003,70.139435000000049],[-101.39222699999999,70.150543000000027],[-101.37581599999999,70.177765000000136],[-101.358047,70.176086000000112],[-101.28666699999991,70.152480999999966],[-101.265289,70.14498900000001],[-101.25723299999999,70.140823000000125],[-101.25195300000001,70.13638300000008],[-101.23889200000002,70.133040999999992],[-101.22222899999991,70.131927000000019],[-101.14499699999999,70.15525800000006],[-101.13500999999997,70.159713999999951],[-101.12721299999998,70.166092000000106],[-101.12193300000001,70.171921000000111],[-101.11665299999993,70.183044000000109],[-101.12193300000001,70.192749000000049],[-101.11193800000001,70.19720500000011],[-101.09555099999994,70.196365000000071],[-101.03971899999999,70.183044000000109],[-100.99973299999999,70.172760000000096],[-100.98388699999992,70.164703000000145],[-100.97332799999998,70.155548000000067],[-100.97332799999998,70.145264000000054],[-100.97609699999992,70.134430000000009],[-100.96028099999995,70.053040000000067],[-100.92194399999988,69.965271000000143],[-100.88694800000002,69.884155000000021],[-100.870003,69.814423000000147],[-100.870003,69.788315000000011],[-100.87805200000003,69.771652000000131],[-100.89998600000001,69.753875999999991],[-100.92555199999998,69.721100000000035],[-100.92027300000001,69.711380000000133],[-100.92027300000001,69.701096000000121],[-100.92832899999996,69.684143000000006],[-100.93859900000001,69.672484999999995],[-100.94748699999997,69.666930999999977],[-100.95722999999992,69.662490999999989],[-100.96916199999998,69.659714000000065],[-101.06443799999994,69.648604999999975],[-101.28362300000003,69.663879000000065],[-101.31777999999991,69.667480000000126],[-101.32972699999988,69.669983000000116],[-101.34028599999999,69.678864000000033],[-101.43831599999993,69.769714000000022],[-101.45472699999993,69.798874000000069],[-101.46806299999997,69.823044000000095],[-101.47332799999998,69.832763999999997],[-101.468613,69.838882000000069],[-101.458618,69.843322999999998],[-101.43998699999997,69.853317000000004],[-101.43472300000002,69.859146000000067],[-101.41610700000001,69.886932000000115],[-101.41860999999989,69.891936999999984],[-101.42944299999994,69.906097000000045],[-101.44526699999994,69.909149000000014],[-101.45638999999994,69.905548000000124],[-101.46888699999994,69.893051000000128],[-101.47917199999995,69.881362999999908],[-101.51972999999992,69.828323000000069],[-101.53999299999998,69.79942299999999],[-101.54750100000001,69.78776600000009],[-101.55972299999996,69.764998999999989],[-101.56220999999999,69.754165999999998],[-101.56194299999999,69.74914600000011],[-101.564438,69.743317000000104],[-101.569458,69.737488000000099],[-101.60777300000001,69.705825999999945],[-101.65249599999999,69.6827550000001],[-101.69193999999999,69.680267000000129],[-101.69722000000002,69.684708000000057],[-101.75805699999995,69.717758000000117],[-101.76611300000002,69.721924000000001],[-101.77916700000003,69.725266000000147],[-101.85637700000001,69.743042000000116],[-101.87000299999994,69.74414100000007],[-101.88722200000001,69.733321999999987],[-101.89916999999997,69.73054500000012],[-101.91416900000002,69.73054500000012],[-101.92999299999997,69.733597000000032],[-101.94055200000003,69.737198000000092],[-101.94860799999998,69.741363999999976],[-101.962784,69.753052000000025],[-102.02306399999992,69.817764000000011],[-102.06555199999997,69.850540000000137],[-102.20667300000002,69.91304000000008],[-102.21749899999998,69.916930999999977],[-102.23029300000002,69.917205999999965],[-102.24082900000002,69.913315000000068],[-102.37581599999999,69.809418000000107],[-102.51027699999992,69.758040999999992],[-102.57640100000003,69.737488000000099],[-102.59249899999998,69.738312000000064],[-102.60582699999998,69.741653000000099],[-102.61638600000003,69.745255000000043],[-102.64890300000002,69.761658000000125],[-102.65972899999997,69.765273999999977],[-102.673317,69.76638800000012],[-102.68055700000002,69.759995000000004],[-102.67443800000001,69.750275000000101],[-102.65805099999994,69.736923000000047],[-102.60028099999994,69.69802900000002],[-102.59221600000001,69.693862999999908],[-102.57640100000003,69.691086000000041],[-102.55943299999996,69.68942300000009],[-102.53138699999994,69.691360000000145],[-102.52084400000001,69.695251000000042],[-102.50917099999998,69.69802900000002],[-102.49194299999994,69.696365000000014],[-102.48361199999988,69.692200000000014],[-102.47805800000003,69.682480000000112],[-102.49777199999988,69.595260999999994],[-102.50778199999996,69.564147999999989],[-102.51500699999985,69.559982000000105],[-102.525284,69.556366000000025],[-102.60305800000003,69.538315000000068],[-102.81304899999986,69.529709000000139],[-102.82861300000002,69.53276100000005],[-102.94387799999993,69.559417999999994],[-103.08528099999995,69.597214000000122],[-103.18666099999996,69.629425000000026],[-103.20556599999998,69.636932000000002],[-103.22471599999994,69.644714000000135],[-103.23277300000001,69.648604999999975],[-103.260559,69.665543000000071],[-103.27166699999998,69.674423000000104],[-103.32195300000001,69.692200000000014],[-103.41639699999996,69.706375000000094],[-103.43055699999996,69.705261000000121],[-103.47693600000002,69.693588000000091],[-103.48665599999998,69.684708000000057],[-103.50723299999999,69.617751999999996],[-103.5041809999999,69.613036999999963],[-103.33528100000001,69.574997000000053],[-103.08917200000002,69.521927000000005],[-103.07528699999995,69.523041000000148],[-103.05695300000002,69.520537999999988],[-103.04638699999998,69.516936999999984],[-103.03806299999997,69.512771999999984],[-103.03278399999999,69.508331000000055],[-103.02333099999998,69.493866000000082],[-103.01390099999998,69.474152000000004],[-102.99137899999999,69.424698000000035],[-102.99082899999996,69.419434000000024],[-103.00778199999996,69.326935000000049],[-103.01917300000002,69.282761000000107],[-103.02306399999998,69.271652000000017],[-103.04444899999999,69.252487000000087],[-103.07195299999995,69.238586000000112],[-103.11332700000003,69.223602000000028],[-103.12444299999999,69.220825000000104],[-103.16000399999996,69.213042999999971],[-103.17250099999995,69.211380000000077],[-103.19415299999997,69.204712000000086],[-103.204453,69.200821000000019],[-103.21140299999996,69.194427000000132],[-103.21444700000001,69.189697000000137],[-103.21777299999997,69.137207000000103],[-103.208618,69.122756999999979],[-103.20305599999989,69.11831699999999],[-103.19499199999996,69.114426000000094],[-103.18222000000003,69.111098999999967],[-103.141953,69.15776100000005],[-103.13390400000003,69.163315000000068],[-103.12444299999999,69.167755000000056],[-103.10500300000001,69.176085999999998],[-103.07417299999997,69.187485000000038],[-103.03721599999994,69.205826000000059],[-103.021118,69.216934000000037],[-103.00611900000001,69.228592000000106],[-102.99889399999989,69.234985000000052],[-102.98082699999992,69.259155000000078],[-102.96916199999993,69.271378000000084],[-102.95056199999999,69.290268000000083],[-102.94360399999999,69.29664600000001],[-102.87249799999995,69.360535000000141],[-102.84084299999995,69.383330999999998],[-102.829453,69.386108000000036],[-102.817497,69.383881000000031],[-102.80666400000001,69.379974000000061],[-102.79360999999994,69.376923000000033],[-102.76083399999993,69.374420000000043],[-102.74694799999997,69.375534000000016],[-102.72277799999995,69.380264000000068],[-102.51083399999999,69.439697000000081],[-102.50862100000001,69.445526000000086],[-102.48972300000003,69.469436999999971],[-102.47193900000002,69.479430999999977],[-102.46028100000001,69.482208000000071],[-102.31304899999998,69.49832200000003],[-102.29804999999999,69.498596000000134],[-102.09306300000003,69.487762000000089],[-102.05750299999988,69.483597000000088],[-102.04750100000001,69.479980000000126],[-101.95527599999997,69.43553200000008],[-101.94748699999997,69.431365999999969],[-101.93694299999999,69.422485000000052],[-101.93138099999999,69.412766000000033],[-101.93110699999994,69.407486000000006],[-101.93611099999998,69.401657],[-102.03527799999995,69.287200999999982],[-102.14890300000002,69.270264000000111],[-102.15943899999996,69.27388000000002],[-102.18776700000001,69.280272999999966],[-102.20140100000003,69.279160000000047],[-102.21278399999994,69.276382000000069],[-102.22972099999993,69.265549000000078],[-102.23194899999999,69.259720000000073],[-102.21721600000001,69.225266000000033],[-102.11972000000003,69.183043999999938],[-102.10665899999992,69.179703000000131],[-102.09361299999989,69.178588999999931],[-102.08112299999993,69.180267000000072],[-102.07167099999992,69.184982000000105],[-102.06416300000001,69.191360000000032],[-102.05943299999996,69.19720499999994],[-102.05721999999992,69.202773999999977],[-102.05750299999988,69.208038000000101],[-102.05444299999999,69.214431999999988],[-102.04499800000002,69.226089000000115],[-102.03666699999997,69.231658999999979],[-102.01666299999999,69.239975000000072],[-102.00611899999996,69.243590999999981],[-101.96305799999999,69.257216999999912],[-101.95140099999998,69.259995000000117],[-101.9385989999999,69.261931999999945],[-101.92194399999994,69.260269000000051],[-101.78500399999996,69.196365000000071],[-101.77055399999995,69.189147999999989],[-101.75472999999994,69.175812000000064],[-101.75195300000001,69.165543000000014],[-101.75167799999991,69.160537999999974],[-101.75389099999995,69.149719000000061],[-101.80638099999999,69.003876000000105],[-101.80860899999993,68.99803199999991],[-101.81806899999992,68.993591000000038],[-101.85138699999993,68.984420999999941],[-101.89916999999997,68.97526600000009],[-101.94888300000002,68.96775800000006],[-101.962784,68.96665999999999],[-101.97693600000002,68.96665999999999],[-101.993607,68.968323000000112],[-102.00140399999992,68.972488000000112],[-102.02223200000003,68.990265000000136],[-102.03250100000002,68.99414100000007],[-102.04778299999998,68.996933000000126],[-102.06220999999994,68.996933000000126],[-102.09665699999994,68.988585999999941],[-102.11305199999998,68.977767999999969],[-102.12609900000001,68.966385000000002],[-102.13082900000001,68.960265999999933],[-102.14502699999997,68.94766199999998],[-102.15638699999994,68.944702000000063],[-102.16972399999997,68.946091000000024],[-102.323624,68.937195000000088],[-102.38612399999994,68.925537000000077],[-102.38583399999993,68.920258000000103],[-102.39028899999994,68.914429000000098],[-102.39835399999987,68.90887500000008],[-102.48554999999999,68.871368000000018],[-102.53582799999998,68.864425999999924],[-102.58972199999999,68.860535000000084],[-102.60417200000001,68.860260000000039],[-102.61972000000003,68.861099000000024],[-102.63500999999991,68.863876000000118],[-102.64527900000002,68.867751999999996],[-102.76306199999999,68.877762000000075],[-102.81889299999995,68.834152000000074],[-102.89472999999992,68.799988000000042],[-102.99054699999999,68.794434000000081],[-103.00583599999999,68.795258000000047],[-103.047234,68.809707999999944],[-103.146118,68.840546000000131],[-103.16416899999996,68.84304800000001],[-103.19499199999996,68.844437000000028],[-103.208618,68.843596999999988],[-103.32084699999996,68.829712000000086],[-103.34111000000001,68.822220000000129],[-103.36000099999995,68.813872999999944],[-103.36805700000002,68.808318999999983],[-103.40306099999992,68.777205999999978],[-103.50917099999987,68.801375999999948],[-103.83583099999993,68.83638000000002],[-104.09472699999992,68.856644000000017],[-104.11028299999998,68.859421000000054],[-104.13834399999996,68.865540000000124],[-104.287781,68.901932000000102],[-104.40249599999999,68.931091000000094],[-104.43083199999995,68.9369200000001],[-104.445267,68.938873000000001],[-104.45749699999999,68.936645999999996],[-104.46167000000003,68.930542000000116],[-104.46305799999988,68.924987999999928],[-104.46250900000001,68.919708000000071],[-104.47444199999995,68.901657000000057],[-104.487503,68.888885000000073],[-104.50279199999989,68.877762000000075],[-104.51167299999992,68.873032000000023],[-104.52139299999999,68.869140999999956],[-104.54360999999989,68.863311999999951],[-104.583618,68.859711000000118],[-104.84999099999993,68.870254999999986],[-105.12917299999998,68.896378000000084],[-105.14472999999992,68.899155000000007],[-105.16610699999995,68.906097000000102],[-105.19332900000001,68.917480000000126],[-105.24889399999989,68.945526000000029],[-105.18305999999995,68.988312000000008],[-105.173317,68.991928000000087],[-105.14666699999998,68.992477000000008],[-105.128601,68.989975000000129],[-105.06471299999998,68.986923000000047],[-105.03916900000002,68.990265000000136],[-104.93639400000001,69.03054800000001],[-104.92887899999999,69.036102000000028],[-104.91610700000001,69.048874000000012],[-104.91166699999991,69.065811000000053],[-104.915009,69.070541000000048],[-104.92304999999999,69.074706999999989],[-104.93388399999998,69.078323000000012],[-105.06500199999999,69.104155999999989],[-105.08332799999999,69.106369000000086],[-105.09665699999999,69.105255000000113],[-105.122772,69.091095000000053],[-105.16027799999995,69.071930000000066],[-105.47361799999999,69.106934000000138],[-105.48055999999997,69.116652999999928],[-105.49249299999991,69.125259000000028],[-105.50695799999994,69.133606000000043],[-105.51528899999994,69.13749700000011],[-105.55387899999999,69.152480999999966],[-105.58056599999998,69.156372000000033],[-105.61694299999994,69.160812000000078],[-105.76806599999998,69.171371000000136],[-105.83029199999999,69.172211000000004],[-105.87416100000002,69.171097000000032],[-105.90222199999999,69.169144000000074],[-105.91443600000002,69.167205999999965],[-105.92555199999998,69.164153999999996],[-106.03888699999993,69.153869999999984],[-106.17777999999998,69.144150000000081],[-106.19360399999999,69.144714000000022],[-106.256958,69.154984000000127],[-106.28888699999999,69.160262999999929],[-106.39611799999994,69.17804000000001],[-106.40611299999995,69.180542000000059],[-106.41471899999999,69.184417999999937],[-106.41471899999999,69.195251000000098],[-106.41027799999995,69.217758000000003],[-106.40666199999998,69.223877000000073],[-106.3944469999999,69.23692299999999],[-106.38612399999994,69.241653000000042],[-106.37638899999996,69.24552900000009],[-106.30777,69.262206999999989],[-106.28832999999992,69.269989000000123],[-106.27362099999993,69.281372000000147],[-106.26777600000003,69.292206000000022],[-106.26889,69.297211000000061],[-106.31639100000001,69.386658000000068],[-106.49527,69.474426000000108],[-106.52139299999993,69.486098999999967],[-106.54138199999989,69.49331699999999],[-106.55499299999985,69.496368000000018],[-106.57112099999989,69.498870999999951],[-106.60221899999999,69.498870999999951],[-106.61444099999994,69.496643000000006],[-106.62554899999986,69.493591000000094],[-106.73306299999996,69.441650000000038],[-106.74027999999998,69.435806000000014],[-106.74388099999993,69.429703000000075],[-106.74553700000001,69.407760999999994],[-106.86277799999999,69.36914100000007],[-106.93083200000001,69.361649000000114],[-106.95500199999992,69.357208000000014],[-106.96611000000001,69.354156000000103],[-106.98554999999999,69.346100000000035],[-106.99249299999997,69.340546000000018],[-106.99722300000002,69.33526599999999],[-106.99833699999999,69.329711999999972],[-106.99694799999997,69.324432000000058],[-106.96528599999994,69.303040000000067],[-106.95749699999993,69.293319999999994],[-106.925003,69.23942599999998],[-106.92223399999995,69.228867000000093],[-106.929169,69.216660000000104],[-106.93611099999998,69.211105000000032],[-106.94444299999998,69.206375000000037],[-106.96362299999993,69.198318000000029],[-107.03999299999998,69.181091000000038],[-107.12832600000002,69.154434000000094],[-107.13806199999999,69.150543000000027],[-107.16221599999994,69.134430000000009],[-107.19167299999998,69.112487999999928],[-107.22666900000002,69.084152000000017],[-107.24889400000001,69.068054000000018],[-107.264183,69.057480000000112],[-107.27944899999994,69.046936000000073],[-107.304169,69.032485999999949],[-107.31360599999994,69.028595000000109],[-107.34221599999995,69.01887499999998],[-107.37444299999993,69.009430000000123],[-107.43167099999994,68.996368000000075],[-107.50334199999992,68.982758000000047],[-107.55387899999994,68.975540000000024],[-107.64611799999989,68.965546000000018],[-107.67388900000003,68.963608000000079],[-107.74610899999999,68.960815000000082],[-107.93749999999994,68.934981999999934],[-107.95584099999996,68.931046000000094],[-107.97693600000002,68.930542000000116],[-108.17555199999998,68.931091000000094],[-108.20944199999997,68.93331900000004],[-108.26444999999995,68.939148000000046],[-108.29833999999988,68.941360000000088],[-108.42804699999994,68.945816000000036],[-108.49221799999992,68.94747899999993],[-108.521118,68.946365000000128],[-108.53443900000002,68.944702000000063],[-108.54611199999994,68.942474000000061],[-108.56331599999993,68.933594000000028],[-108.56388900000002,68.927765000000022],[-108.55082699999997,68.919434000000138],[-108.54194599999994,68.915543000000071],[-108.53555299999999,68.911376999999959],[-108.531387,68.906647000000135],[-108.52971599999995,68.901382000000069],[-108.53028899999993,68.895828000000051],[-108.53555299999999,68.889160000000061],[-108.55139200000002,68.879425000000026],[-108.59722899999997,68.859146000000067],[-108.67443799999995,68.829437000000041],[-108.926941,68.744431000000134],[-108.93749999999994,68.741088999999988],[-108.97250400000001,68.733870999999965],[-109.10472099999998,68.710541000000035],[-109.19138299999992,68.697205000000054],[-109.23416099999997,68.694977000000108],[-109.26390099999998,68.694427000000076],[-109.31194299999999,68.695816000000093],[-109.345551,68.697754000000032],[-109.37416100000002,68.696365000000014],[-109.39998600000001,68.693313999999987],[-109.43472300000002,68.686095999999964],[-109.49137899999994,68.673308999999961],[-109.52306399999992,68.664993000000095],[-109.55359599999991,68.655258000000003],[-109.59722899999997,68.64387499999998],[-109.64362299999999,68.634430000000123],[-109.65638699999994,68.632751000000098],[-109.68331899999998,68.630539000000056],[-109.756958,68.628586000000098],[-109.97028399999999,68.627197000000081],[-110.12416099999996,68.627197000000081],[-110.16055299999994,68.630539000000056],[-110.19167299999998,68.630814000000044],[-110.22000099999997,68.629150000000038],[-110.24416400000001,68.625259000000142],[-110.26306199999999,68.617752000000053],[-110.27194199999997,68.613602000000014],[-110.27916700000003,68.608597000000145],[-110.295547,68.599426000000051],[-110.32917800000001,68.582214000000022],[-110.33917200000002,68.578872999999987],[-110.35082999999997,68.576385000000016],[-110.36361699999998,68.574707000000046],[-110.37777699999998,68.574158000000125],[-110.39138800000001,68.576660000000004],[-110.39806399999986,68.580826000000116],[-110.42027299999995,68.604156000000046],[-110.42722300000003,68.608321999999987],[-110.44082600000002,68.611099000000081],[-110.45889299999999,68.612761999999975],[-110.56111099999998,68.616653000000042],[-110.576683,68.616653000000042],[-110.58944699999989,68.614990000000148],[-110.60944399999994,68.608321999999987],[-110.61694299999994,68.603592000000106],[-110.63417099999987,68.59526100000005],[-110.65695199999999,68.590271000000143],[-110.68138099999999,68.586105000000089],[-110.89666699999998,68.55720500000001],[-110.92223399999995,68.553863999999976],[-110.950287,68.551926000000037],[-111.01363400000002,68.552765000000022],[-111.03195199999999,68.554428000000144],[-111.03859699999992,68.558594000000028],[-111.03500400000001,68.563873000000001],[-110.98332199999993,68.577773999999977],[-110.97193900000002,68.580276000000083],[-110.95777900000002,68.581100000000049],[-110.92555199999993,68.580276000000083],[-110.89723200000003,68.581940000000088],[-110.87165800000002,68.585266000000104],[-110.86028299999987,68.587769000000094],[-110.850281,68.591095000000109],[-110.84306299999997,68.596099999999979],[-110.84306299999997,68.601653999999996],[-110.84973099999996,68.605820000000051],[-110.86361699999992,68.608597000000145],[-111.01750199999998,68.598327999999981],[-111.03028899999998,68.596649000000127],[-111.05888399999998,68.585815000000082],[-111.068893,68.58248900000001],[-111.08029199999999,68.579987000000131],[-111.09306300000003,68.578323000000125],[-111.13527699999997,68.575821000000076],[-111.16639700000002,68.575821000000076],[-111.23249800000002,68.578049000000021],[-111.26750199999998,68.580551000000071],[-111.28362299999998,68.582764000000054],[-111.32000700000003,68.585815000000082],[-111.33693699999998,68.586655000000121],[-111.37917299999998,68.584152000000131],[-111.39195299999994,68.58248900000001],[-111.41166699999997,68.575546000000031],[-111.41665599999999,68.571106000000043],[-111.40527299999997,68.568054000000075],[-111.389183,68.56581099999994],[-111.29804999999999,68.557755000000043],[-111.25028999999989,68.55720500000001],[-111.23194899999999,68.555542000000116],[-111.21833800000002,68.552765000000022],[-111.20916699999998,68.549148999999943],[-111.204453,68.544708000000071],[-111.204453,68.538879000000009],[-111.21112099999999,68.526093000000117],[-111.21556099999992,68.519440000000145],[-111.22556299999997,68.516098],[-111.23805199999993,68.514435000000105],[-111.25361599999991,68.514435000000105],[-111.35861199999999,68.521652000000017],[-111.37470999999999,68.523604999999975],[-111.38834400000002,68.526382000000069],[-111.46806300000003,68.536926000000108],[-111.52278100000001,68.541656000000103],[-111.60056299999991,68.543594000000041],[-111.85109699999998,68.534149000000014],[-112.060272,68.523041000000035],[-112.21000700000002,68.513610999999969],[-112.23665599999987,68.510817999999972],[-112.35916099999997,68.501938000000109],[-112.40110799999997,68.499145999999996],[-112.50917099999992,68.498032000000023],[-112.63527699999992,68.483047000000056],[-112.63694800000002,68.476928999999927],[-112.64527900000002,68.472763000000043],[-112.67027299999995,68.469146999999964],[-112.72749299999992,68.465820000000065],[-112.77390299999996,68.465546000000131],[-112.80750299999994,68.466660000000104],[-113.05166600000001,68.464157000000114],[-113.091949,68.460266000000047],[-113.220551,68.45277400000009],[-113.25140399999992,68.452209000000096],[-113.26944699999996,68.453873000000101],[-113.297234,68.458602999999925],[-113.30444299999999,68.462769000000037],[-113.30943300000001,68.467209000000025],[-113.310272,68.473038000000031],[-113.30638099999993,68.479706000000022],[-113.29972800000002,68.484711000000061],[-113.29138199999994,68.489151000000106],[-113.26944699999996,68.494430999999963],[-113.256958,68.496094000000085],[-113.19360399999999,68.496368000000018],[-113.05166600000001,68.487487999999985],[-113.03778099999994,68.488312000000121],[-113.03388999999999,68.494980000000112],[-113.04360999999994,68.504166000000055],[-113.07250999999991,68.520538000000045],[-113.11805700000002,68.544434000000138],[-113.14138800000001,68.550537000000077],[-113.19721999999996,68.560256999999979],[-113.21333300000003,68.562195000000088],[-113.26888999999994,68.572220000000016],[-113.33416699999998,68.585541000000148],[-113.35777299999995,68.591369999999984],[-113.36721799999992,68.594986000000006],[-113.38166799999988,68.603043000000014],[-113.44304699999998,68.640548999999965],[-113.44833399999999,68.645263999999997],[-113.45111099999997,68.650269000000037],[-113.45249899999999,68.661652000000061],[-113.45084400000002,68.667755],[-113.52443700000003,68.724990999999932],[-113.66665599999999,68.802199999999914],[-113.676941,68.811096000000077],[-113.67887899999994,68.894714000000079],[-113.67722299999997,68.900818000000129],[-113.671944,68.906647000000135],[-113.62389400000001,68.93331900000004],[-113.60694899999993,68.942474000000061],[-113.58444199999997,68.948028999999963],[-113.57472199999995,68.951385000000016],[-113.569458,68.957214000000022],[-113.54583700000001,69.043045000000006],[-113.54499799999996,69.048035000000084],[-113.55471799999987,69.051376000000118],[-113.61501299999998,69.066376000000048],[-113.63221699999997,69.073883000000023],[-113.64723199999992,69.081940000000145],[-113.65778399999999,69.091095000000053],[-113.69611399999991,69.154709000000139],[-113.69220699999994,69.189423000000033],[-113.68083200000001,69.191925000000083],[-113.66583300000002,69.191086000000098],[-113.65583800000002,69.187485000000038],[-113.62193300000001,69.17804000000001],[-113.53888699999999,69.168594000000041],[-113.51972999999998,69.167205999999965],[-113.50862099999995,69.169708000000014],[-113.51363399999997,69.174423000000047],[-113.52111799999994,69.178588999999931],[-113.55359599999991,69.187195000000031],[-113.58000199999992,69.192474000000004],[-113.62332200000003,69.199707000000046],[-113.90888999999999,69.24192800000003],[-114.27555799999999,69.281936999999971],[-114.31139400000001,69.284987999999998],[-114.32888800000001,69.285538000000031],[-114.39277600000003,69.284149000000014],[-114.42138699999998,69.281936999999971],[-114.4472199999999,69.278046000000074],[-114.49249299999991,69.267212000000029],[-114.51834100000002,69.263321000000133],[-114.66972399999997,69.255829000000006],[-114.764183,69.252212999999983],[-115.08889799999992,69.244705000000124],[-115.25361599999991,69.245254999999986],[-115.40083299999998,69.256942999999978],[-115.64472999999998,69.273315000000139],[-115.79527299999995,69.282761000000107],[-115.92138699999992,69.290268000000083],[-115.95584099999996,69.292206000000022],[-115.96833799999996,69.294983000000116],[-115.9786069999999,69.298598999999967],[-115.98665599999998,69.302475000000015],[-116.00029000000001,69.310806000000127],[-116.00611900000001,69.315262000000018],[-116.016953,69.322220000000016],[-116.02694700000001,69.325546000000088],[-116.05638099999999,69.32998699999996],[-116.17527799999993,69.34165999999999],[-116.21945199999999,69.348327999999981],[-116.52583300000003,69.407486000000006],[-116.53859699999998,69.4102630000001],[-116.54888900000003,69.413605000000018],[-116.56527699999992,69.421371000000079],[-116.62970699999994,69.458878000000141],[-116.63137799999993,69.464706000000035],[-116.62666299999989,69.470535000000041],[-116.61888099999993,69.474990999999989],[-116.60777300000001,69.478043000000071],[-116.569458,69.48414600000001],[-116.56139400000001,69.488586000000055],[-116.55860899999993,69.4952550000001],[-116.57556199999993,69.555817000000104],[-116.58138999999989,69.560531999999967],[-116.591949,69.563873000000001],[-116.60472099999993,69.566665999999998],[-116.63667299999997,69.570267000000058],[-116.73388699999998,69.575546000000031],[-116.74999999999994,69.574997000000053],[-116.75945299999995,69.571381000000031],[-116.76611299999996,69.565177999999946],[-116.78138699999988,69.55720500000001],[-116.89750700000002,69.587494000000049],[-116.88054699999986,69.608871000000079],[-116.85193600000002,69.619705000000124],[-116.84612299999998,69.643051000000014],[-116.84750399999996,69.648604999999975],[-116.858047,69.651932000000102],[-116.96193700000003,69.679427999999973],[-116.987503,69.684981999999991],[-117.01777600000003,69.68942300000009],[-117.03500399999996,69.690810999999997],[-117.05027799999993,69.693038999999942],[-117.07584400000002,69.69859300000013],[-117.11805699999996,69.711654999999951],[-117.23889200000002,69.753052000000025],[-117.24749799999995,69.756943000000092],[-117.26917300000002,69.78166200000004],[-117.27278100000001,69.792755000000056],[-117.30777,69.844436999999971],[-117.36721799999992,69.919983000000059],[-117.42250099999995,69.972488000000055],[-117.43499799999995,69.981369000000029],[-117.43666099999996,69.98692299999999],[-117.43611099999993,69.993042000000059],[-117.41528299999993,70.009995000000117],[-117.38527699999997,70.028595000000053],[-117.35637700000001,70.039703000000031],[-117.32584400000002,70.049987999999985],[-117.28362300000003,70.063309000000118],[-117.25140399999992,70.072768999999994],[-117.23999000000003,70.075821000000133],[-117.19444299999998,70.087493999999936],[-117.16999800000002,70.092484000000013],[-117.12082700000002,70.102478000000019],[-117.08167999999995,70.108871000000136],[-117.01083399999993,70.116928000000144],[-116.87721299999998,70.129150000000095],[-116.58306899999997,70.156937000000084],[-116.236107,70.191360000000032],[-116.16639700000002,70.199997000000053],[-116.09999099999999,70.210266000000047],[-116.07167099999998,70.213608000000022],[-115.90834000000001,70.228867000000093],[-115.80194099999994,70.236649000000057],[-115.69360399999994,70.243866000000139],[-115.64695699999993,70.246643000000063],[-115.49665799999997,70.250549000000092],[-115.44833399999993,70.252487000000031],[-115.31471299999998,70.264160000000061],[-115.30139200000002,70.266388000000063],[-115.229446,70.273879999999963],[-115.16750299999995,70.27777100000003],[-115.08389299999999,70.279708999999968],[-115.03028899999998,70.279984000000013],[-114.86721799999998,70.28387500000008],[-114.80194099999989,70.286102000000142],[-114.74137899999999,70.290817000000004],[-114.71305799999988,70.293869000000086],[-114.65888999999999,70.301651000000049],[-114.61694299999994,70.30664100000007],[-114.58833299999992,70.309708000000001],[-114.54305999999997,70.313309000000061],[-114.511124,70.314696999999967],[-114.323624,70.316665999999998],[-114.254997,70.317215000000147],[-114.21833800000002,70.316085999999984],[-114.17832900000002,70.313599000000067],[-114.16082799999998,70.311645999999939],[-114.13527699999997,70.305816999999934],[-114.111107,70.293869000000086],[-114.09028599999994,70.286926000000108],[-114.057503,70.282486000000063],[-113.84166700000003,70.269440000000145],[-113.68388399999992,70.263046000000088],[-113.65055799999993,70.263610999999969],[-113.59166700000003,70.268600000000106],[-113.54943799999995,70.273315000000139],[-113.50556899999998,70.277481000000023],[-113.46000700000002,70.280548000000124],[-113.42804699999999,70.281662000000097],[-113.39138799999995,70.280548000000124],[-113.33332799999994,70.277206000000035],[-113.29611199999999,70.273879999999963],[-113.16832699999998,70.259155000000021],[-113.09084299999995,70.247481999999991],[-112.66665599999993,70.203873000000101],[-112.56471299999998,70.198318000000029],[-112.54804999999999,70.198593000000017],[-112.53278399999994,70.199416999999983],[-112.52084399999995,70.202209000000096],[-112.51722699999999,70.207488999999953],[-112.52749599999993,70.211105000000032],[-112.56304899999998,70.213608000000022],[-112.577789,70.216095000000053],[-112.58084100000002,70.221374999999966],[-112.57501200000002,70.227203000000088],[-112.56582599999996,70.231368999999972],[-112.55526700000001,70.234984999999995],[-112.54332699999992,70.237487999999985],[-112.295547,70.266663000000051],[-112.212784,70.265823000000012],[-112.195831,70.265823000000012],[-112.16388699999999,70.266936999999984],[-112.13834399999996,70.271378000000084],[-112.14584400000001,70.275543000000084],[-112.16306299999991,70.277481000000023],[-112.24249299999991,70.283600000000035],[-112.29695099999998,70.289154000000053],[-112.30471799999992,70.293319999999937],[-112.29723399999995,70.298325000000034],[-112.28333299999997,70.299988000000099],[-112.26666299999999,70.300262000000032],[-112.24833699999999,70.299423000000104],[-112.23111,70.297484999999938],[-112.10888699999992,70.277481000000023],[-111.92639199999996,70.252212999999927],[-111.91583300000002,70.255553999999961],[-111.90805099999989,70.260544000000039],[-111.89917000000003,70.264709000000039],[-111.88054699999998,70.270264000000111],[-111.86527999999993,70.271378000000084],[-111.84861799999993,70.271378000000084],[-111.743607,70.269440000000145],[-111.55555700000002,70.269714000000079],[-111.53888699999993,70.269989000000066],[-111.46806300000003,70.278320000000008],[-111.45445299999989,70.279984000000013],[-111.445267,70.284149000000014],[-111.44275699999992,70.290268000000026],[-111.487213,70.336929000000055],[-111.49472000000003,70.341094999999939],[-111.50723299999993,70.344147000000078],[-111.53694200000001,70.349426000000051],[-111.63110399999999,70.358321999999987],[-111.66471899999999,70.35803199999998],[-111.69387799999998,70.355545000000063],[-111.73528299999998,70.35026600000009],[-111.75055700000001,70.349426000000051],[-111.80387899999999,70.350815000000011],[-111.98055999999991,70.370818999999983],[-112.00083899999987,70.378036000000066],[-112.05387899999999,70.401093000000003],[-112.06166099999996,70.405258000000003],[-112.06973299999993,70.414993000000095],[-112.07250999999997,70.42025799999999],[-112.073059,70.431655999999975],[-112.07584400000002,70.436646000000053],[-112.08917200000002,70.451096000000121],[-112.11527999999998,70.474152000000004],[-112.14611799999994,70.490540000000067],[-112.156387,70.494141000000127],[-112.16915899999998,70.497208000000001],[-112.19915800000001,70.502213000000097],[-112.42722299999997,70.526382000000012],[-112.49553700000001,70.515274000000034],[-112.5,70.514740000000074],[-112.50945300000001,70.513611000000083],[-112.52806099999998,70.514160000000004],[-112.58612099999999,70.524994000000106],[-112.62193300000001,70.534424000000001],[-112.65278599999994,70.545258000000047],[-112.67083700000001,70.552765000000136],[-112.67859599999991,70.556931000000077],[-112.70973199999997,70.567490000000078],[-112.72805799999998,70.568329000000062],[-112.81471299999993,70.568054000000075],[-112.84861799999993,70.567764000000011],[-112.85610999999994,70.562758999999971],[-112.93749999999994,70.56721500000009],[-113.00083899999993,70.576659999999947],[-113.01611300000002,70.579163000000108],[-113.14222699999999,70.606093999999985],[-113.30304699999994,70.641936999999984],[-113.49221799999992,70.677200000000028],[-113.51112399999994,70.677765000000022],[-113.51999699999993,70.673598999999967],[-113.51917299999997,70.667755000000113],[-113.5227809999999,70.655547999999953],[-113.52834300000001,70.649719000000118],[-113.54055800000003,70.646942000000024],[-113.55444299999994,70.644989000000123],[-113.57140399999997,70.644714000000079],[-113.59166700000003,70.646103000000096],[-113.60722399999997,70.648604999999975],[-113.63054699999998,70.654984000000013],[-113.64917000000003,70.662766000000147],[-113.66528299999999,70.670822000000044],[-113.68388399999992,70.678314],[-113.72860700000001,70.691649999999925],[-113.76194800000002,70.696091000000024],[-113.88221699999997,70.710265999999933],[-113.93831599999993,70.71527100000003],[-113.97416699999991,70.715546000000018],[-113.98972299999997,70.714432000000045],[-114.015556,70.709991000000116],[-114.06833599999993,70.692474000000061],[-114.08944700000001,70.685256999999979],[-114.12082699999996,70.674698000000092],[-114.14362299999999,70.668594000000098],[-114.17111199999999,70.664703000000031],[-114.20834400000001,70.665817000000004],[-114.26194800000002,70.671371000000022],[-114.323059,70.675262000000089],[-114.37748699999997,70.675812000000121],[-114.40834000000001,70.673598999999967],[-114.4202729999999,70.670822000000044],[-114.43083200000001,70.667206000000022],[-114.44833399999999,70.658600000000092],[-114.45889299999999,70.655258000000117],[-114.49500299999994,70.646942000000024],[-114.54527299999995,70.636107999999979],[-114.57112100000001,70.631362999999965],[-114.64111299999996,70.622482000000048],[-114.98916599999995,70.603867000000093],[-115.13694800000002,70.598038000000088],[-115.25250199999994,70.601379000000122],[-115.38054699999998,70.604706000000078],[-115.39943700000003,70.604980000000012],[-115.88971700000002,70.595260999999994],[-115.921944,70.593596999999988],[-115.97609699999998,70.585266000000047],[-116.05555700000002,70.572220000000129],[-116.08556399999992,70.587769000000037],[-116.16251399999999,70.62303200000008],[-116.17111199999994,70.626923000000147],[-116.26363400000002,70.634720000000073],[-116.36389200000002,70.639160000000118],[-116.38082900000001,70.638885000000073],[-116.52999899999992,70.632477000000108],[-116.63221699999997,70.614990000000091],[-116.65583800000002,70.609146000000067],[-116.66915899999998,70.607208000000128],[-116.71501199999994,70.603043000000127],[-116.90110799999997,70.597214000000122],[-116.91972399999997,70.597488000000055],[-117.05972300000002,70.601379000000122],[-117.10056299999997,70.603317000000061],[-117.34584000000001,70.614990000000091],[-117.34973100000002,70.619980000000112],[-117.35861199999994,70.623871000000008],[-117.37666300000001,70.62553400000013],[-117.50556899999998,70.61692800000003],[-117.51528899999994,70.613311999999951],[-117.51806599999986,70.606368999999972],[-117.51862299999993,70.600266000000033],[-117.52500900000001,70.594985999999949],[-117.54360999999994,70.595260999999994],[-117.5594329999999,70.597214000000122],[-117.61305199999998,70.608597000000145],[-117.67111199999999,70.624419999999986],[-117.70472699999999,70.634155000000021],[-117.724716,70.641373000000044],[-117.73777799999993,70.65026899999998],[-117.74194299999994,70.655258000000117],[-117.741669,70.661376999999959],[-117.73944099999994,70.666930999999977],[-117.73473399999995,70.673035000000027],[-117.72222899999986,70.68331900000004],[-117.71417199999996,70.688034000000073],[-117.70944199999985,70.693863000000079],[-117.71140300000002,70.699707000000103],[-117.71806300000003,70.703872999999987],[-117.73581699999994,70.711655000000121],[-117.74694799999997,70.714995999999985],[-117.89806399999998,70.756104000000107],[-117.94554099999999,70.768599999999992],[-118.00890400000003,70.783051],[-118.04750100000001,70.791656000000046],[-118.09277299999997,70.804703000000075],[-118.13583399999999,70.818054000000018],[-118.16750300000001,70.828598000000056],[-118.18776700000001,70.836104999999975],[-118.20584099999996,70.843872000000147],[-118.26445000000001,70.871918000000051],[-118.28028899999993,70.879974000000118],[-118.30972300000002,70.897217000000012],[-118.31639100000001,70.901657000000057],[-118.32972699999993,70.910537999999974],[-118.40862299999998,70.970260999999994],[-118.41750300000001,70.980270000000019],[-118.41972399999986,70.985809000000017],[-118.41944899999993,70.99192800000003],[-118.415009,70.99803200000008],[-118.40862299999998,71.003326000000072],[-118.40055799999999,71.007766999999944],[-118.37082700000002,71.019149999999968],[-118.33944699999995,71.029433999999981],[-118.27250699999991,71.048874000000012],[-117.98055999999997,71.124420000000043],[-117.84973099999996,71.156937000000028],[-117.79666099999992,71.166382000000112],[-117.728882,71.169708000000128],[-117.69055199999997,71.169434000000024],[-117.640289,71.171921000000111],[-117.54305999999991,71.178589000000102],[-117.49445300000002,71.18193100000002],[-117.41665599999988,71.188873000000115],[-117.38722199999995,71.192474000000004],[-117.28859699999992,71.206649999999968],[-116.98528299999998,71.236098999999967],[-116.83666999999997,71.269149999999911],[-116.83332799999994,71.276093000000117],[-116.82472200000001,71.280548000000124],[-116.80055199999993,71.286102000000085],[-116.71333300000003,71.297211000000004],[-116.66972399999992,71.302765000000022],[-116.60166900000002,71.313873000000001],[-116.51777600000003,71.326384999999959],[-116.40583800000002,71.343048000000067],[-116.20889299999993,71.364150999999993],[-116.17722300000003,71.366653000000042],[-116.14195299999989,71.367751999999996],[-116.08556399999992,71.367477000000008],[-116.077789,71.365814000000057],[-116.05249000000003,71.356093999999985],[-115.81027199999994,71.362761999999975],[-115.77667200000002,71.36442599999998],[-115.76083399999993,71.365814000000057],[-115.74638399999998,71.368317000000047],[-115.73416099999986,71.371368000000075],[-115.72693599999997,71.376373000000115],[-115.72666900000002,71.381362999999965],[-115.73306299999996,71.385818000000029],[-115.74416400000001,71.389160000000118],[-115.75805700000001,71.391937000000041],[-115.79055800000003,71.396378000000141],[-115.84166700000003,71.394440000000031],[-115.85582699999992,71.392212000000029],[-115.885559,71.389160000000118],[-115.91915899999998,71.387206999999989],[-115.93360899999999,71.38888500000013],[-116.01777599999997,71.411101999999971],[-116.06471299999998,71.438583000000051],[-115.82805599999995,71.483046999999999],[-115.76306199999999,71.490265000000022],[-115.62082700000002,71.498596000000077],[-115.60472099999993,71.496094000000028],[-115.58444199999991,71.488876000000005],[-115.58416699999998,71.485259999999982],[-115.53555299999994,71.470261000000107],[-115.41555800000003,71.449707000000103],[-115.37832599999996,71.449707000000103],[-115.20028699999995,71.479430999999977],[-115.17527799999988,71.484985000000108],[-115.06667299999998,71.518600000000049],[-115.05750299999994,71.523041000000148],[-115.06194299999999,71.526657],[-115.08168000000001,71.527205999999921],[-115.11361699999998,71.524704000000042],[-115.15638699999994,71.518875000000037],[-115.17054699999994,71.516662999999994],[-115.24553700000001,71.500000000000114],[-115.26000999999997,71.498031999999967],[-115.32224300000001,71.492477000000065],[-115.44275699999992,71.488037000000077],[-115.45973200000003,71.489151000000049],[-115.53859699999998,71.50082400000008],[-115.54998799999998,71.504440000000102],[-115.55860899999999,71.508330999999998],[-115.55583199999995,71.513611000000083],[-115.54332699999986,71.516662999999994],[-115.53083800000002,71.519440000000088],[-115.51666299999999,71.521378000000027],[-115.51222199999989,71.53776600000009],[-115.61888099999987,71.555252000000053],[-115.65499899999992,71.55802900000009],[-115.70638999999994,71.555817000000047],[-115.79194599999994,71.543593999999985],[-115.87638900000002,71.53276100000005],[-115.965012,71.522216999999955],[-116.16027799999989,71.49971000000005],[-116.20805399999995,71.495818999999983],[-116.28250100000002,71.495528999999976],[-116.33389299999999,71.493317000000104],[-116.41361999999998,71.486648999999943],[-116.44360399999999,71.483322000000044],[-116.806107,71.436096000000134],[-116.98610699999995,71.427200000000028],[-117.17666600000001,71.404709000000025],[-117.20111099999997,71.398331000000098],[-117.21528599999994,71.396378000000141],[-117.328056,71.386108000000036],[-117.35944399999994,71.383331000000112],[-117.37721299999987,71.382751000000098],[-117.39835399999998,71.383880999999974],[-117.41221599999994,71.386383000000023],[-117.41665599999988,71.391373000000101],[-117.41610700000001,71.397766000000047],[-117.41306299999997,71.404434000000037],[-117.39083900000003,71.435257000000036],[-117.38110399999994,71.447205000000054],[-117.37832600000002,71.454163000000051],[-117.44776899999988,71.47387700000013],[-117.49445300000002,71.486923000000047],[-117.51750199999998,71.493317000000104],[-117.54583700000001,71.498871000000122],[-117.56276699999995,71.49971000000005],[-117.628601,71.467758000000117],[-117.63333099999994,71.461929000000112],[-117.63166799999999,71.456375000000094],[-117.62470999999999,71.451935000000105],[-117.61305199999998,71.44859300000013],[-117.59665699999999,71.446365000000014],[-117.55583200000001,71.445251000000042],[-117.5369419999999,71.443862999999908],[-117.506393,71.439148000000102],[-117.48332199999999,71.432480000000112],[-117.47888199999989,71.427475000000072],[-117.48194899999999,71.420532000000037],[-117.51722699999999,71.379425000000026],[-117.52749599999993,71.375809000000004],[-117.53943600000002,71.372757000000092],[-117.59416199999987,71.371643000000063],[-117.68138099999993,71.379700000000071],[-117.75666799999999,71.376083000000108],[-117.79444899999999,71.368042000000059],[-117.82749899999999,71.372208000000114],[-117.94833399999999,71.377762000000132],[-118.01500699999997,71.37303200000008],[-118.03278399999994,71.372482000000048],[-118.09084299999995,71.372757000000092],[-118.112213,71.37359600000002],[-118.18536399999999,71.379791000000125],[-118.24388099999999,71.389984000000084],[-118.25556899999998,71.393326000000002],[-118.28362300000003,71.404709000000025],[-118.29750099999995,71.413605000000132],[-118.31111099999993,71.428589000000045],[-118.31527699999992,71.439697000000024],[-118.31471299999998,71.452209000000039],[-118.30943300000001,71.465820000000008],[-118.28999299999992,71.481659000000093],[-118.28195199999988,71.486098999999911],[-118.2633439999999,71.49414100000007],[-118.21250900000001,71.513046000000031],[-118.20221699999996,71.516662999999994],[-118.19027699999998,71.519714000000022],[-118.17804699999994,71.522766000000104],[-118.12609900000001,71.533051000000057],[-118.08612099999988,71.540267999999969],[-118.05444299999999,71.543045000000063],[-117.83583099999998,71.554703000000075],[-117.70722999999998,71.54942299999999],[-117.68720999999994,71.549988000000042],[-117.675003,71.552765000000136],[-117.658051,71.561646000000053],[-117.65139799999992,71.566940000000045],[-117.65583800000002,71.571930000000123],[-117.66999800000002,71.574706999999989],[-117.87304699999993,71.611649],[-117.88722199999995,71.614151000000106],[-117.90888999999999,71.614990000000034],[-117.86361699999998,71.639435000000105],[-117.718887,71.659714000000008],[-117.70694700000001,71.662491000000102],[-117.69638099999992,71.666091999999992],[-117.70084399999996,71.671371000000136],[-117.715012,71.673874000000126],[-117.73665599999993,71.674988000000099],[-118.01000999999997,71.672484999999938],[-118.02778599999994,71.67164600000001],[-118.11665299999993,71.65277100000003],[-118.12693799999988,71.648880000000133],[-118.17278299999998,71.628036000000009],[-118.17749000000003,71.621918000000051],[-118.16388699999993,71.606933999999967],[-118.16639699999996,71.599990999999989],[-118.17666600000001,71.596374999999966],[-118.19082600000002,71.594146999999964],[-118.29998799999993,71.583328000000108],[-118.31777999999991,71.582763999999997],[-118.33444199999997,71.584717000000126],[-118.36527999999998,71.589431999999931],[-118.38639799999999,71.613602000000128],[-118.38612399999994,71.619705000000067],[-118.45500199999987,71.650818000000072],[-118.485817,71.655548000000124],[-118.56639099999995,71.662766000000147],[-118.60527000000002,71.664154000000053],[-118.84166700000003,71.664702999999975],[-118.85555999999997,71.662491000000102],[-118.86389199999996,71.658035000000041],[-118.90387699999997,71.614700000000028],[-118.90387699999997,71.608322000000101],[-118.88971699999996,71.599716000000001],[-118.88027999999991,71.595825000000104],[-118.86609599999997,71.586928999999998],[-118.8683319999999,71.580276000000026],[-118.88054699999998,71.577209000000096],[-118.89778099999995,71.57777400000009],[-118.90972899999991,71.581099999999992],[-119.05027799999999,71.626648000000102],[-119.07472200000001,71.644149999999968],[-119.08416699999998,71.654160000000047],[-119.10582699999998,71.685806000000071],[-119.12470999999999,71.730545000000063],[-119.13445300000001,71.76527399999992],[-119.13445300000001,71.783874999999966],[-119.10555999999991,71.876648000000046],[-119.10305800000003,71.883330999999998],[-119.09194899999994,71.902205999999978],[-119.08750900000001,71.908324999999991],[-118.945831,71.99136400000009],[-118.929169,72.000548999999921],[-118.86694299999999,72.023879999999963],[-118.84249899999998,72.029709000000025],[-118.80166599999995,72.037200999999925],[-118.76471699999996,72.046370999999965],[-118.73361199999999,72.057480000000055],[-118.72501399999987,72.0619200000001],[-118.71665999999999,72.066665999999998],[-118.71028099999995,72.071930000000009],[-118.70556599999992,72.077774000000034],[-118.703056,72.084717000000012],[-118.70749699999999,72.095824999999991],[-118.715012,72.10026600000009],[-118.71972700000003,72.105255000000056],[-118.71945199999999,72.111374000000069],[-118.71749899999998,72.116928000000087],[-118.69193999999999,72.130539000000056],[-118.58860800000002,72.176086000000112],[-118.57640100000003,72.179152999999985],[-118.56194299999999,72.181366000000139],[-118.545547,72.182754999999986],[-118.44248999999996,72.181655999999975],[-118.40583799999996,72.183044000000052],[-118.38945000000001,72.184708000000114],[-118.15722699999992,72.217758000000117],[-118.12832599999996,72.222214000000065],[-118.11945299999996,72.226654000000053],[-118.11277799999993,72.231934000000138],[-118.108047,72.237762000000089],[-118.10527000000002,72.244705000000067],[-118.10417199999995,72.263321000000076],[-118.12138400000003,72.308029000000147],[-118.13082899999995,72.318054000000075],[-118.14527899999996,72.326934999999992],[-118.16471899999993,72.334427000000119],[-118.176941,72.337769000000037],[-118.19193999999999,72.340546000000131],[-118.20916699999998,72.34248400000007],[-118.25140399999998,72.344711000000132],[-118.27166699999992,72.344711000000132],[-118.28832999999992,72.343323000000055],[-118.32528699999995,72.341934000000037],[-118.36416600000001,72.341370000000097],[-118.40695199999993,72.34248400000007],[-118.446663,72.345260999999994],[-118.49109599999997,72.353043000000127],[-118.52306399999992,72.363876000000118],[-118.55499299999997,72.380814000000044],[-118.56973299999999,72.389709000000039],[-118.58194700000001,72.399155000000007],[-118.58860800000002,72.416655999999989],[-118.58805799999999,72.435256999999979],[-118.58528100000001,72.441924999999969],[-118.573059,72.460815000000082],[-118.56833599999993,72.46665999999999],[-118.55027799999999,72.483321999999987],[-118.53694199999995,72.493866000000025],[-118.51972999999992,72.50277699999998],[-118.20722999999998,72.618591000000094],[-118.12554899999998,72.642487000000017],[-118.08306900000002,72.649719000000118],[-117.90361000000001,72.689697000000137],[-117.89083899999991,72.692749000000049],[-117.86888099999993,72.699997000000053],[-117.63305700000001,72.784987999999998],[-117.60193600000002,72.796936000000073],[-117.51944700000001,72.828873000000044],[-117.48999000000003,72.841369999999984],[-117.48111,72.845825000000048],[-117.46472199999994,72.85554500000012],[-117.43611099999993,72.876373000000001],[-117.42054699999994,72.894440000000088],[-117.40222199999999,72.903320000000122],[-117.37999000000002,72.910538000000088],[-117.35360699999995,72.916382000000112],[-117.32333399999993,72.92082199999993],[-117.30638099999993,72.921921000000111],[-117.24916099999996,72.923874000000069],[-117.12721299999998,72.932479999999998],[-116.95639,72.954163000000108],[-116.94138299999997,72.95637499999998],[-116.89972699999998,72.964157000000114],[-116.862503,72.972214000000065],[-116.83805799999999,72.978592000000049],[-116.775284,72.9952550000001],[-116.70722999999998,73.017211999999972],[-116.65972899999991,73.031097000000045],[-116.58750900000001,73.051376000000005],[-116.57417299999997,73.054153000000099],[-116.54167199999995,73.057480000000055],[-116.52416999999991,73.058868000000132],[-116.31916799999993,73.09165999999999],[-116.24221799999998,73.110260000000096],[-116.20195000000001,73.118590999999981],[-116.15556300000003,73.124695000000031],[-115.90055799999993,73.154160000000104],[-115.60973399999995,73.194138000000123],[-115.44082600000002,73.22387700000013],[-115.34638999999999,73.253326000000129],[-115.32305899999994,73.260269000000108],[-115.30915799999997,73.263046000000031],[-115.14917000000003,73.288315000000011],[-115.10221899999999,73.294144000000017],[-115.01418299999989,73.299988000000042],[-114.95111099999997,73.307754999999986],[-114.89417299999997,73.318054000000018],[-114.86638599999998,73.323608000000036],[-114.83056599999998,73.334152000000074],[-114.81054699999999,73.342758000000003],[-114.70722999999992,73.368042000000003],[-114.67555199999998,73.371918000000051],[-114.65778399999999,73.373032000000023],[-114.56166100000002,73.37553400000013],[-114.54083300000002,73.373595999999964],[-114.50527999999991,73.368866000000139],[-114.337784,73.343323000000055],[-114.30499299999991,73.338042999999971],[-114.27500899999995,73.332214000000135],[-114.22609699999987,73.318329000000062],[-114.19776899999999,73.306366000000025],[-114.16306299999997,73.289703000000145],[-114.11054999999999,73.263885000000016],[-114.05610699999994,73.233597000000032],[-114.01666299999994,73.206375000000094],[-113.96167000000003,73.153046000000131],[-113.95694700000001,73.142487000000074],[-113.95388799999989,73.125533999999959],[-113.95749699999999,73.113312000000008],[-113.99582700000002,73.077773999999977],[-114.00499699999995,73.064423000000033],[-114.03555299999999,73.004990000000021],[-114.04750100000001,72.954987000000074],[-114.05499299999997,72.883605999999986],[-114.05277999999998,72.872208000000001],[-114.04915599999998,72.867203000000131],[-114.0427699999999,72.862762000000032],[-114.02722199999999,72.854156000000103],[-113.98166700000002,72.834152000000017],[-113.96888699999994,72.82499700000011],[-113.96777299999997,72.819442999999978],[-113.96945199999999,72.813034000000073],[-113.97582999999992,72.807205000000067],[-113.985817,72.803040000000067],[-113.99749799999995,72.799423000000104]],[[-95.669723999999917,73.604980000000126],[-95.688598999999897,73.603317000000004],[-95.702498999999989,73.60554500000012],[-95.711670000000026,73.612198000000092],[-95.703887999999949,73.617477000000065],[-95.684157999999968,73.6202550000001],[-95.669997999999964,73.620529000000033],[-95.655563000000029,73.616652999999928],[-95.654998999999975,73.609984999999995],[-95.669723999999917,73.604980000000126]],[[-107.89555399999989,73.541367000000093],[-107.93055699999996,73.539428999999984],[-107.9519499999999,73.540268000000083],[-107.97193900000002,73.542755],[-108.00917099999992,73.548035000000084],[-108.02306399999998,73.551376000000118],[-108.07472200000001,73.576385000000073],[-108.08277899999996,73.580826000000002],[-108.08500700000002,73.585815000000139],[-108.08332799999999,73.597214000000065],[-108.07640099999992,73.603591999999992],[-108.066101,73.608597000000032],[-108.05444299999988,73.612487999999928],[-108.04083299999996,73.615540000000067],[-108.00750700000003,73.618591000000094],[-107.89943699999992,73.622756999999979],[-107.86277799999993,73.624145999999996],[-107.82444800000002,73.6244200000001],[-107.80444299999999,73.624145999999996],[-107.68110699999994,73.621367999999961],[-107.61472299999991,73.614700000000028],[-107.60056299999997,73.611374000000126],[-107.58944699999995,73.607758000000103],[-107.58473200000003,73.603043000000071],[-107.58249699999999,73.597762999999986],[-107.58473200000003,73.586655000000007],[-107.59194899999994,73.579987000000017],[-107.60221899999988,73.575271999999984],[-107.64527900000002,73.570267000000115],[-107.65722700000003,73.568603999999993],[-107.7491609999999,73.55581699999999],[-107.89555399999989,73.541367000000093]],[[-124.307503,73.556366000000139],[-124.33167999999995,73.556366000000139],[-124.343613,73.559981999999991],[-124.35193600000002,73.5711060000001],[-124.35861199999988,73.630264000000068],[-124.34612300000003,73.633606000000043],[-124.33138999999994,73.636383000000137],[-124.307503,73.632202000000063],[-124.30332900000002,73.626648000000046],[-124.29387700000001,73.622481999999934],[-124.28222700000003,73.618866000000082],[-124.26806599999992,73.616088999999988],[-124.21028100000001,73.611374000000126],[-124.19360399999994,73.60914600000001],[-124.17944299999994,73.606369000000086],[-124.16777000000002,73.603043000000071],[-124.14916999999997,73.594711000000075],[-124.12666300000001,73.580826000000002],[-124.11972000000003,73.575821000000133],[-124.11554699999988,73.570541000000048],[-124.11389199999996,73.564148000000102],[-124.12638899999996,73.560805999999957],[-124.307503,73.556366000000139]],[[-124.58473199999992,73.679153000000042],[-124.59944199999995,73.676376000000005],[-124.62361099999998,73.676650999999993],[-124.640556,73.678863999999976],[-124.70056199999993,73.689422999999977],[-124.72917199999995,73.694976999999994],[-124.73361199999999,73.700545999999974],[-124.72582999999992,73.705261000000007],[-124.71584299999995,73.709152000000074],[-124.70111099999997,73.711928999999998],[-124.68167099999999,73.713042999999971],[-124.66471899999999,73.710815000000025],[-124.66278099999994,73.706099999999992],[-124.64835399999998,73.704712000000086],[-124.61694299999999,73.699707000000046],[-124.57140399999992,73.691925000000083],[-124.564438,73.687195000000031],[-124.57224299999996,73.682479999999998],[-124.58473199999992,73.679153000000042]],[[-105.08944700000001,73.735260000000039],[-104.96028099999995,73.688582999999937],[-104.84306300000003,73.650818000000072],[-104.71140300000002,73.63081399999993],[-104.69167299999992,73.628310999999997],[-104.675003,73.624985000000095],[-104.58084100000002,73.600266000000147],[-104.53056300000003,73.581374999999923],[-104.51306199999999,73.573044000000039],[-104.49445300000002,73.559418000000051],[-104.49027999999998,73.554703000000018],[-104.48528299999998,73.544708000000128],[-104.48306299999996,73.534424000000115],[-104.512787,73.493042000000059],[-104.55583200000001,73.403320000000008],[-104.56639100000001,73.334717000000126],[-104.56833599999999,73.329163000000108],[-104.57333399999999,73.323044000000095],[-104.58138999999994,73.316666000000112],[-104.60193599999997,73.306366000000025],[-104.64916999999997,73.280823000000112],[-104.69499200000001,73.25221300000004],[-104.76000999999991,73.203873000000044],[-104.76500699999985,73.197754000000032],[-104.76390099999998,73.192474000000118],[-104.79415899999998,73.168045000000006],[-104.86805700000002,73.136658000000068],[-104.97556299999997,73.085266000000104],[-104.98332199999999,73.078872999999987],[-104.98805199999993,73.073043999999982],[-104.98388699999992,73.068054000000075],[-104.97749299999998,73.05304000000001],[-104.97361799999999,73.031662000000097],[-104.97860699999995,73.025543000000084],[-104.984734,73.020538000000045],[-104.99527,73.015823000000012],[-105.031677,73.004166000000055],[-105.0750119999999,72.997208000000057],[-105.08833300000003,72.994141000000127],[-105.13639799999993,72.978867000000037],[-105.14695699999999,72.974152000000004],[-105.22582999999997,72.933044000000109],[-105.30304699999994,72.951096000000007],[-105.31916799999999,72.954163000000108],[-105.33972199999999,72.955551000000014],[-105.354446,72.953323000000069],[-105.35610999999994,72.947754000000032],[-105.33139,72.910538000000088],[-105.32417299999997,72.906096999999988],[-105.279449,72.885543999999925],[-105.25361599999997,72.878585999999984],[-105.237503,72.875534000000016],[-105.21140300000002,72.868591000000038],[-105.20417799999996,72.864151000000049],[-105.26222199999989,72.848602000000085],[-105.27555799999993,72.845534999999984],[-105.28999299999987,72.847762999999986],[-105.38305699999995,72.866653000000099],[-105.43611099999993,72.896652000000131],[-105.44332900000001,72.90109300000006],[-105.45612299999999,72.915267999999969],[-105.458618,72.925536999999963],[-105.45694699999996,72.931366000000025],[-105.45834400000001,72.936371000000065],[-105.46250900000001,72.941360000000032],[-105.57472199999995,72.984421000000054],[-105.73277299999995,73.047759999999982],[-105.91388699999999,73.145538000000101],[-105.94638099999992,73.160263000000043],[-106.09249899999992,73.199706999999933],[-106.08194700000001,73.241088999999988],[-106.32195300000001,73.338882000000126],[-106.44776899999994,73.393051000000128],[-106.45556599999998,73.397491000000002],[-106.46611000000001,73.401382000000069],[-106.72028399999999,73.44999700000011],[-106.88137799999998,73.463318000000072],[-106.89806399999992,73.461929000000055],[-106.91610699999995,73.461380000000077],[-106.9375,73.462494000000106],[-107,73.469711000000018],[-107.016953,73.4727630000001],[-107.02749599999999,73.476379000000009],[-107.03555299999994,73.480820000000108],[-107.03415699999999,73.486374000000069],[-107.02583300000003,73.498596000000077],[-107.01834100000002,73.504990000000078],[-107.00974299999996,73.510544000000095],[-106.97112299999992,73.531661999999983],[-106.92944299999999,73.550537000000134],[-106.89334100000002,73.562484999999981],[-106.74526999999995,73.648041000000148],[-106.70028699999995,73.676085999999941],[-106.65805099999994,73.695251000000098],[-106.64584399999995,73.699141999999995],[-106.61833200000001,73.705261000000007],[-106.57224300000001,73.711928999999998],[-106.32721700000002,73.72665400000011],[-106.18554699999999,73.733597000000145],[-106.03916900000002,73.731368999999972],[-105.80055199999998,73.726928999999984],[-105.72666900000002,73.728592000000049],[-105.68028300000003,73.734985000000052],[-105.66639699999996,73.737761999999918],[-105.637787,73.74443100000002],[-105.61277799999993,73.752212999999983],[-105.58473200000003,73.758041000000048],[-105.569458,73.760269000000051],[-105.53527799999995,73.762771999999984],[-105.51666299999994,73.763321000000133],[-105.30387899999994,73.762206999999989],[-105.28388999999999,73.761658000000011],[-105.16999800000002,73.755554000000018],[-105.14862099999999,73.754166000000055],[-105.10749799999991,73.743590999999981],[-105.08944700000001,73.735260000000039]],[[-80.142226999999878,73.696640000000116],[-80.108611999999994,73.693863000000022],[-80.074448000000018,73.697479000000044],[-79.901397999999972,73.698318000000029],[-79.625548999999978,73.670821999999987],[-79.586120999999991,73.66276600000009],[-79.523055999999997,73.646652000000131],[-79.493056999999965,73.637772000000098],[-79.476394999999911,73.634154999999964],[-79.451949999999954,73.630539000000113],[-79.373610999999983,73.63081399999993],[-78.96166999999997,73.632750999999985],[-78.946105999999986,73.634720000000016],[-78.934433000000013,73.638596000000064],[-78.931106999999997,73.642487000000131],[-78.928878999999938,73.647491000000116],[-78.924164000000019,73.650269000000094],[-78.912505999999894,73.653869999999984],[-78.887787000000003,73.656647000000078],[-78.861389000000031,73.658324999999991],[-78.64416499999993,73.656647000000078],[-78.40834000000001,73.661652000000117],[-78.206664999999987,73.667755000000056],[-78.166397000000018,73.668045000000063],[-78.12777699999998,73.664703000000145],[-78.113327000000027,73.663040000000024],[-78.064437999999996,73.651932000000045],[-78.009734999999978,73.63749700000011],[-77.965285999999935,73.628310999999997],[-77.823058999999944,73.603867000000037],[-77.738601999999958,73.591933999999981],[-77.608046999999999,73.574158000000011],[-77.535004000000015,73.565536000000009],[-77.453887999999949,73.559708000000057],[-77.424437999999952,73.554703000000018],[-77.395554000000004,73.545822000000101],[-77.373046999999929,73.529709000000082],[-77.363327000000027,73.524703999999986],[-77.351394999999968,73.519988999999953],[-77.338333000000034,73.516663000000108],[-77.294723999999974,73.512772000000041],[-77.237212999999997,73.509994999999947],[-77.203063999999927,73.505554000000018],[-77.191939999999988,73.501389000000017],[-77.148620999999991,73.476379000000009],[-77.153610000000015,73.468048000000067],[-77.157226999999978,73.458603000000039],[-77.055266999999958,73.366379000000052],[-77.048888999999917,73.36192299999999],[-76.999435000000005,73.345825000000104],[-76.969726999999978,73.337203999999986],[-76.91361999999998,73.324432000000002],[-76.893340999999964,73.321105999999986],[-76.884170999999924,73.321655000000078],[-76.878875999999934,73.324158000000068],[-76.858611999999994,73.32638500000013],[-76.837219000000005,73.327209000000096],[-76.736389000000031,73.324706999999989],[-76.72193900000002,73.322495000000117],[-76.708054000000004,73.317764000000011],[-76.579726999999991,73.219711000000075],[-76.577498999999932,73.205551000000128],[-76.585006999999962,73.194427000000076],[-76.601944000000003,73.183319000000097],[-76.619720000000029,73.175812000000121],[-76.605270000000019,73.15914900000007],[-76.586945000000014,73.146378000000141],[-76.582229999999981,73.14387499999998],[-76.510559000000001,73.120254999999986],[-76.495543999999938,73.116928000000087],[-76.487502999999947,73.116089000000102],[-76.381942999999978,73.106093999999985],[-76.31361400000003,73.100540000000024],[-76.312499999999943,73.067490000000134],[-76.318068999999923,73.062759000000028],[-76.319457999999941,73.058318999999983],[-76.333068999999909,72.963607999999965],[-76.323059000000001,72.957214000000135],[-76.309433000000013,72.952484000000084],[-76.291671999999949,72.948868000000061],[-76.275283999999999,72.946640000000059],[-76.211945000000014,72.945526000000086],[-76.162216000000001,72.946365000000071],[-76.118606999999997,72.940262000000132],[-76.103607000000011,72.936371000000065],[-76.077224999999942,72.924988000000042],[-76.071670999999924,72.921097000000145],[-76.062209999999993,72.906937000000028],[-76.059432999999899,72.900818000000015],[-76.086394999999982,72.863602000000071],[-76.093886999999938,72.85803199999998],[-76.103881999999942,72.853043000000014],[-76.115279999999927,72.849426000000051],[-76.13110399999988,72.845534999999984],[-76.149993999999992,72.842209000000139],[-76.25140399999998,72.826385000000016],[-76.315552000000025,72.817214999999976],[-76.339721999999995,72.814987000000031],[-76.5625,72.812484999999981],[-76.581679999999949,72.812484999999981],[-76.601944000000003,72.813873000000058],[-76.618606999999884,72.816939999999988],[-76.634170999999981,72.820541000000048],[-76.662780999999995,72.829163000000051],[-76.681380999999931,72.831375000000094],[-76.72193900000002,72.833878000000084],[-76.740829000000019,72.833878000000084],[-76.767501999999922,72.833878000000084],[-76.891952999999944,72.830825999999945],[-76.937209999999993,72.830825999999945],[-77.084754999999973,72.839684000000148],[-77.101668999999958,72.84027100000003],[-77.143889999999942,72.841933999999981],[-77.226943999999946,72.846100000000035],[-77.265838999999914,72.849426000000051],[-77.314437999999939,72.85554500000012],[-77.365829000000019,72.864426000000037],[-77.40055799999999,72.870818999999983],[-77.416106999999954,72.874695000000088],[-77.447219999999959,72.879974000000061],[-77.522780999999952,72.886108000000092],[-77.704178000000013,72.897216999999955],[-77.723327999999981,72.896941999999967],[-77.860000999999954,72.893051000000071],[-77.904175000000009,72.891662999999994],[-77.997771999999941,72.888321000000019],[-78.107223999999917,72.88638300000008],[-78.236358999999993,72.893005000000016],[-78.273055999999997,72.890549000000021],[-78.297226000000023,72.887772000000098],[-78.486114999999984,72.86554000000001],[-78.62388599999997,72.848037999999974],[-78.865828999999962,72.804427999999973],[-79.047775000000001,72.771378000000141],[-79.161941999999897,72.750548999999978],[-79.209166999999923,72.744979999999998],[-79.296111999999994,72.737761999999975],[-79.359160999999972,72.733597000000145],[-79.382492000000013,72.733047000000113],[-79.400283999999999,72.733597000000145],[-79.429168999999945,72.735809000000017],[-79.543334999999956,72.74859600000002],[-79.62388599999997,72.763321000000133],[-79.927779999999927,72.842484000000013],[-79.972778000000005,72.854705999999965],[-79.998610999999983,72.86303700000002],[-80.009170999999924,72.872756999999922],[-80.120833999999945,72.978867000000037],[-80.151672000000019,73.011932000000115],[-80.181380999999931,73.043869000000086],[-80.181106999999997,73.050262000000032],[-80.164169000000015,73.061920000000043],[-80.147232000000031,73.071381000000031],[-80.134734999999921,73.084716999999955],[-80.131667999999991,73.08859300000006],[-80.128875999999991,73.09526100000005],[-80.122771999999998,73.11442599999998],[-80.110000999999954,73.179703000000018],[-80.114440999999999,73.186371000000008],[-80.134445000000028,73.209152000000017],[-80.143065999999919,73.216933999999981],[-80.15194699999995,73.222487999999942],[-80.216948999999943,73.243317000000104],[-80.238051999999982,73.24414100000007],[-80.415282999999931,73.24414100000007],[-80.61999499999996,73.264160000000004],[-80.760009999999909,73.274704000000042],[-80.797500999999954,73.276932000000045],[-80.876098999999954,73.32777399999992],[-80.876098999999954,73.338593000000003],[-80.872498000000007,73.424988000000099],[-80.820281999999963,73.489150999999993],[-80.80999799999995,73.644440000000088],[-80.857772999999952,73.74192800000003],[-80.771666999999923,73.749709999999993],[-80.683318999999983,73.755829000000006],[-80.560546999999872,73.76776099999995],[-80.434998000000007,73.766098000000056],[-80.37332200000003,73.761658000000011],[-80.353058000000033,73.759720000000073],[-80.320847000000015,73.753876000000048],[-80.30860899999999,73.75],[-80.29861499999987,73.745819000000097],[-80.265288999999996,73.730270000000019],[-80.223327999999924,73.715820000000065],[-80.192763999999954,73.707214000000135],[-80.15834000000001,73.699417000000039],[-80.142226999999878,73.696640000000116]],[[-73.354674999999929,68.329215999999974],[-73.328170999999998,68.328208999999958],[-73.31617,68.328712000000053],[-73.306830999999988,68.330544000000089],[-73.211670000000026,68.376923000000033],[-73.230559999999912,68.384155000000135],[-73.253066999999987,68.390823000000125],[-73.279448999999886,68.39498900000001],[-73.302779999999927,68.396102999999982],[-73.31806899999998,68.393051000000071],[-73.357498000000021,68.371368000000132],[-73.359725999999966,68.364989999999977],[-73.357773000000009,68.357483000000059],[-73.353057999999976,68.352478000000019],[-73.349166999999909,68.344986000000063],[-73.34722899999997,68.337494000000106],[-73.34944200000001,68.331100000000106],[-73.354674999999929,68.329215999999974],[-73.506667999999991,68.291367000000037],[-73.589721999999995,68.254715000000033],[-73.597777999999948,68.251937999999996],[-73.620834000000002,68.246093999999971],[-73.632216999999912,68.246643000000063],[-73.639724999999942,68.249709999999993],[-73.851668999999958,68.342209000000139],[-73.855834999999956,68.346649000000014],[-73.896117999999944,68.392211999999915],[-73.889449999999954,68.44470200000012],[-73.877486999999917,68.481093999999928],[-73.873610999999926,68.487762000000089],[-73.86721799999998,68.493042000000003],[-73.856110000000001,68.497481999999991],[-73.823623999999995,68.503326000000015],[-73.806655999999975,68.503876000000048],[-73.749999999999943,68.510817999999972],[-73.738891999999964,68.514999000000046],[-73.730285999999978,68.519989000000066],[-73.725829999999974,68.525818000000072],[-73.704726999999934,68.656647000000021],[-73.75389100000001,68.683594000000085],[-73.761397999999986,68.686371000000008],[-73.774719000000005,68.689697000000024],[-73.865828999999906,68.705826000000002],[-73.893889999999999,68.707764000000111],[-74.094161999999983,68.719986000000063],[-74.106109999999944,68.690536000000009],[-73.99221799999998,68.624695000000031],[-73.888061999999877,68.561645999999939],[-73.881667999999991,68.55664100000007],[-73.881667999999991,68.549713000000111],[-73.903609999999958,68.52777100000003],[-73.921386999999925,68.511932000000115],[-73.941939999999988,68.504715000000033],[-73.990279999999927,68.492751999999996],[-74.028335999999911,68.513610999999969],[-74.171660999999972,68.521652000000017],[-74.221114999999998,68.52526899999998],[-74.351395000000025,68.536926000000108],[-74.366104000000007,68.539154000000053],[-74.379439999999931,68.542205999999965],[-74.391112999999962,68.546371000000136],[-74.514175000000023,68.599991000000045],[-74.526397999999972,68.610809000000017],[-74.532776000000013,68.62164300000012],[-74.531676999999945,68.626373000000115],[-74.598891999999921,68.681930999999963],[-74.701950000000011,68.71887200000009],[-74.712218999999948,68.723038000000031],[-74.726105000000018,68.730270000000132],[-74.728333000000021,68.737198000000092],[-74.724715999999944,68.766097999999943],[-74.71945199999999,68.770537999999988],[-74.664168999999958,68.774155000000121],[-74.620833999999888,68.782486000000006],[-74.591949,68.788879000000009],[-74.576949999999954,68.793045000000063],[-74.565276999999924,68.802199999999914],[-74.546386999999982,68.822494999999947],[-74.548049999999989,68.828598000000113],[-74.551392000000021,68.830551000000014],[-74.604172000000005,68.841660000000104],[-74.634170999999924,68.846374999999966],[-74.648055999999997,68.847214000000122],[-74.666655999999932,68.845825000000104],[-74.678328999999962,68.842758000000003],[-74.687377999999967,68.835991000000035],[-74.718718999999965,68.824821000000043],[-74.723052999999936,68.822318999999993],[-74.721221999999955,68.821152000000041],[-74.71421799999996,68.82098400000001],[-74.705222999999933,68.821655000000078],[-74.689437999999939,68.819716999999969],[-74.671660999999972,68.818877999999984],[-74.660277999999892,68.81581100000011],[-74.639724999999999,68.807479999999998],[-74.633330999999941,68.79693600000013],[-74.635009999999966,68.793320000000108],[-74.648055999999997,68.789429000000041],[-74.665832999999964,68.786652000000117],[-74.771666999999979,68.774155000000121],[-74.917769999999962,68.801375999999948],[-74.913894999999968,68.81721500000009],[-74.837508999999955,68.840820000000065],[-74.787780999999995,68.854431000000034],[-74.764167999999984,68.872040000000027],[-74.74017299999997,68.872710999999981],[-74.72222899999997,68.934143000000006],[-74.862945999999909,68.954178000000013],[-74.872779999999977,68.955001999999979],[-74.887610999999993,68.954178000000013],[-74.898108999999977,68.952515000000062],[-74.920113000000015,68.946671000000038],[-74.935944000000006,68.942001000000005],[-75,68.937607000000071],[-75.005004999999926,68.929977000000065],[-75.033614999999884,68.926085999999998],[-75.042770000000019,68.928314],[-75.041945999999882,68.930267000000129],[-75.021118000000001,68.953049000000021],[-74.962340999999981,68.972824000000003],[-74.953002999999967,68.978484999999978],[-74.915337000000022,68.992821000000049],[-74.907668999999885,68.993988000000002],[-74.764724999999999,69.019440000000031],[-74.748336999999992,69.021378000000141],[-74.735000999999954,69.021927000000119],[-74.729445999999996,69.019440000000031],[-74.758057000000008,69.008880999999974],[-74.752228000000002,69.002486999999974],[-74.675003000000004,69.006943000000035],[-74.65834000000001,69.008330999999941],[-74.642776000000026,69.011658000000068],[-74.638061999999991,69.016098000000113],[-74.641113000000018,69.021378000000141],[-74.652495999999928,69.040267999999912],[-74.785827999999981,69.076385000000073],[-74.820846999999958,69.082214000000079],[-74.834166999999923,69.081664999999987],[-74.845839999999953,69.078598000000056],[-74.948607999999922,69.048874000000012],[-75.043334999999956,69.013321000000019],[-75.051940999999886,69.008605999999986],[-75.036117999999931,68.992203000000075],[-75.037780999999882,68.985809000000074],[-75.071395999999936,68.921097000000032],[-75.075561999999934,68.915817000000004],[-75.109160999999858,68.894989000000123],[-75.116394000000014,68.890823000000012],[-75.124161000000015,68.888046000000088],[-75.139724999999999,68.884720000000073],[-75.169998000000021,68.886383000000023],[-75.192490000000021,68.891663000000051],[-75.201950000000011,68.894440000000145],[-75.315826000000015,68.942200000000128],[-75.373885999999914,68.968872000000033],[-75.383330999999998,68.974426000000051],[-75.400283999999999,68.985535000000141],[-75.422500999999954,69.001937999999996],[-75.445830999999941,69.016937000000041],[-75.454452999999944,69.021102999999982],[-75.466399999999965,69.021378000000141],[-75.478881999999999,69.019714000000135],[-75.494155999999975,69.01638800000012],[-75.528335999999967,69.005829000000062],[-75.565552000000025,68.993591000000038],[-75.573623999999995,68.988585999999941],[-75.578612999999962,68.984146000000123],[-75.580841000000021,68.975540000000024],[-75.574172999999917,68.968323000000112],[-75.537780999999939,68.951096000000064],[-75.506957999999941,68.939696999999967],[-75.499724999999955,68.934708000000001],[-75.494995000000017,68.930267000000129],[-75.534163999999976,68.90387000000004],[-75.542770000000019,68.898879999999963],[-75.56527699999998,68.891373000000044],[-75.603881999999942,68.879700000000014],[-75.647780999999952,68.869140999999956],[-75.809158000000025,68.836928999999998],[-75.976104999999961,68.791092000000106],[-75.979445999999996,68.787201000000039],[-75.985001000000011,68.783875000000023],[-75.995543999999938,68.779434000000094],[-76.008620999999948,68.775543000000027],[-76.049437999999952,68.764435000000049],[-76.227218999999991,68.721100000000035],[-76.327224999999999,68.697478999999987],[-76.376098999999954,68.687484999999981],[-76.420546999999999,68.679152999999985],[-76.436385999999857,68.677200000000028],[-76.456664999999987,68.675262000000089],[-76.540282999999988,68.673308999999961],[-76.559432999999956,68.673035000000027],[-76.575561999999991,68.674149000000057],[-76.59056099999998,68.676376000000062],[-76.628875999999991,68.68691999999993],[-76.660827999999981,68.699416999999926],[-76.674164000000019,68.71026599999999],[-76.680283000000031,68.716094999999996],[-76.688599000000011,68.733597000000032],[-76.689437999999996,68.740540000000067],[-76.688048999999978,68.746933000000013],[-76.678604000000007,68.758330999999998],[-76.666945999999996,68.769150000000081],[-76.636947999999961,68.78166200000004],[-76.608611999999937,68.794144000000074],[-76.577498999999932,68.808318999999983],[-76.561385999999914,68.818054000000018],[-76.546111999999994,68.833054000000004],[-76.537216000000001,68.842209000000082],[-76.523055999999997,68.863876000000118],[-76.521666999999979,68.870254999999986],[-76.523894999999925,68.876373000000058],[-76.532775999999956,68.880538999999999],[-76.544158999999979,68.883041000000048],[-76.559432999999956,68.88499500000006],[-76.576674999999966,68.88499500000006],[-76.59333799999996,68.883331000000055],[-76.606658999999922,68.883041000000048],[-76.610000999999954,68.884720000000073],[-76.644164999999987,68.911102000000142],[-76.655562999999972,68.924698000000092],[-76.655562999999972,68.930542000000116],[-76.642775999999969,69.003876000000105],[-76.640563999999927,69.009155000000078],[-76.625548999999978,69.018326000000059],[-76.603607000000011,69.025818000000015],[-76.578338999999914,69.032211000000132],[-76.543335000000013,69.038315000000011],[-76.501403999999923,69.042755],[-76.422500999999954,69.050537000000134],[-76.368606999999997,69.055251999999996],[-76.348891999999921,69.054976999999951],[-76.33277899999996,69.05442800000003],[-76.240279999999927,69.048325000000091],[-76.208054000000004,69.044144000000017],[-76.140563999999927,69.034714000000122],[-76.124435000000005,69.031096999999988],[-76.114165999999955,69.027771000000143],[-76.091674999999952,69.011658000000068],[-76.080001999999922,69.006378000000041],[-76.068619000000012,69.003876000000105],[-75.996932999999956,69.003036000000066],[-75.969161999999983,69.010269000000108],[-75.904998999999918,69.036925999999994],[-75.813889000000017,69.067763999999954],[-75.655838000000017,69.080550999999957],[-75.637786999999946,69.079987000000017],[-75.619155999999919,69.081374999999923],[-75.6058349999999,69.08526599999999],[-75.598891999999978,69.089432000000102],[-75.593886999999938,69.099716000000114],[-75.569732999999928,69.15277100000003],[-75.569457999999997,69.158324999999991],[-75.571121000000005,69.163879000000009],[-75.591674999999952,69.22164900000007],[-75.603057999999976,69.238876000000118],[-75.619719999999973,69.249419999999986],[-75.669723999999917,69.271103000000096],[-75.759734999999978,69.304977000000122],[-75.783324999999991,69.313599000000124],[-75.956389999999885,69.366088999999931],[-75.970275999999956,69.36914100000007],[-76.168610000000001,69.411377000000073],[-76.202498999999932,69.413879000000122],[-76.241942999999935,69.413315000000011],[-76.298049999999989,69.407760999999994],[-76.417770000000019,69.44720500000011],[-76.607497999999964,69.529709000000139],[-76.637787000000003,69.546645999999953],[-76.641112999999962,69.554153000000099],[-76.641678000000013,69.557480000000055],[-76.626662999999951,69.581375000000037],[-76.61999499999996,69.586380000000077],[-76.611663999999962,69.591095000000109],[-76.489165999999898,69.648331000000042],[-76.477782999999988,69.652206000000035],[-76.459166999999979,69.654434000000037],[-76.442215000000033,69.653046000000074],[-76.347777999999948,69.64027400000009],[-76.261397999999986,69.626647999999932],[-76.226943999999946,69.637206999999989],[-76.186110999999983,69.659714000000065],[-76.182495000000017,69.663605000000132],[-76.187774999999988,69.665268000000083],[-76.226105000000018,69.664703000000031],[-76.295546999999942,69.660263000000043],[-76.376388999999961,69.671371000000022],[-76.388335999999924,69.673874000000012],[-76.397506999999962,69.678040000000067],[-76.399733999999853,69.684143000000006],[-76.450561999999934,69.690262000000075],[-76.537780999999939,69.696091000000081],[-76.551666000000012,69.695526000000029],[-76.634170999999981,69.683594000000085],[-76.641953000000001,69.679977000000122],[-76.638900999999976,69.673309000000131],[-76.631942999999922,69.669708000000071],[-76.616394000000014,69.667480000000126],[-76.581679999999949,69.666930999999977],[-76.557769999999948,69.673309000000131],[-76.542769999999905,69.674698000000149],[-76.530838000000017,69.672211000000061],[-76.517776000000026,69.662765999999976],[-76.522780999999952,69.65248100000008],[-76.535004000000015,69.638596000000007],[-76.553329000000019,69.625259000000142],[-76.561661000000015,69.620254999999986],[-76.683883999999978,69.56581100000011],[-76.691939999999988,69.563034000000016],[-76.707503999999972,69.559417999999994],[-76.730285999999978,69.560256999999922],[-76.844726999999921,69.576096000000064],[-77.136947999999961,69.626373000000115],[-77.18582200000003,69.637496999999996],[-77.191665999999941,69.639709000000039],[-77.200561999999991,69.646103000000096],[-77.200561999999991,69.64888000000002],[-77.194442999999922,69.657211000000075],[-77.164444000000003,69.676086000000055],[-77.155562999999972,69.680541999999946],[-77.144454999999994,69.682205000000067],[-76.949431999999945,69.695526000000029],[-76.939437999999939,69.679703000000018],[-76.929992999999968,69.677765000000079],[-76.896666999999979,69.679152999999985],[-76.868056999999965,69.684708000000057],[-76.829726999999934,69.695816000000036],[-76.820281999999963,69.699417000000096],[-76.80471799999998,69.708603000000039],[-76.793883999999991,69.718597000000045],[-76.791945999999996,69.721649000000014],[-76.781386999999995,69.743042000000116],[-76.781386999999995,69.748596000000077],[-76.835280999999952,69.815811000000053],[-76.851944000000003,69.813599000000011],[-76.933059999999898,69.809708000000114],[-77.026672000000019,69.811919999999986],[-77.150283999999999,69.816086000000098],[-77.293059999999855,69.828873000000101],[-77.308884000000035,69.830826000000002],[-77.310546999999985,69.835814999999968],[-77.307770000000005,69.840271000000087],[-77.297774999999888,69.851089000000059],[-77.28472899999997,69.860535000000027],[-77.25418099999996,69.87692300000009],[-77.243056999999965,69.881362999999908],[-77.208344000000011,69.886658000000011],[-77.116652999999928,69.901382000000012],[-76.992767000000015,69.927199999999971],[-76.981673999999941,69.931656000000089],[-76.974715999999944,69.935806000000071],[-76.980559999999969,69.938034000000016],[-76.992767000000015,69.940536000000122],[-77.002791999999943,69.940536000000122],[-77.125274999999931,69.925812000000064],[-77.141112999999962,69.922485000000108],[-77.164444000000003,69.915268000000026],[-77.188323999999909,69.906097000000045],[-77.226943999999946,69.894989000000066],[-77.260284000000013,69.887496999999939],[-77.438048999999921,69.857208000000071],[-77.508347000000015,69.826660000000118],[-77.455565999999976,69.798325000000091],[-77.444442999999978,69.789428999999984],[-77.449158000000011,69.784714000000122],[-77.551391999999964,69.747756999999922],[-77.559158000000025,69.744980000000055],[-77.574722000000008,69.741363999999976],[-77.597777999999948,69.739151000000049],[-77.608611999999937,69.740265000000022],[-77.615829000000019,69.741653000000099],[-77.626388999999904,69.744980000000055],[-77.637787000000003,69.753875999999991],[-77.645279000000016,69.760818000000086],[-77.649993999999992,69.769714000000022],[-77.668059999999969,69.836655000000064],[-77.691939999999931,69.963043000000027],[-77.695267000000001,69.98803700000002],[-77.694442999999922,70.000275000000045],[-77.693054000000018,70.00610400000005],[-77.68582200000003,70.023041000000092],[-77.678604000000007,70.034987999999998],[-77.672500999999954,70.045532000000094],[-77.669723999999974,70.052200000000028],[-77.667220999999984,70.062194999999974],[-77.665008999999941,70.088043000000084],[-77.665557999999976,70.106934000000138],[-77.668334999999956,70.113037000000077],[-77.673888999999974,70.11970500000001],[-77.671936000000017,70.177199999999914],[-77.672500999999954,70.180542000000059],[-77.678328999999962,70.187759000000142],[-77.685271999999998,70.191360000000032],[-77.810821999999973,70.24552900000009],[-77.884170999999981,70.2586060000001],[-77.892226999999878,70.258041000000048],[-78.133621000000005,70.215271000000087],[-78.239166000000012,70.203873000000101],[-78.345000999999911,70.19720500000011],[-78.351395000000025,70.197479000000044],[-78.364715999999987,70.201096000000007],[-78.401672000000019,70.212493999999992],[-78.405272999999966,70.214157000000114],[-78.480835000000013,70.288589000000002],[-78.406113000000005,70.326935000000049],[-78.396118000000001,70.328049000000021],[-78.389175000000023,70.332214000000022],[-78.398894999999925,70.336380000000077],[-78.425827000000027,70.3477630000001],[-78.436661000000015,70.351088999999945],[-78.486389000000031,70.356934000000081],[-78.504180999999903,70.35803199999998],[-78.521118000000001,70.357758000000047],[-78.536391999999978,70.356369000000029],[-78.55749499999996,70.351379000000009],[-78.573623999999995,70.345534999999984],[-78.579726999999878,70.343048000000067],[-78.583327999999995,70.336929000000055],[-78.581115999999952,70.334152000000131],[-78.569167999999991,70.325546000000031],[-78.564712999999983,70.320267000000058],[-78.56138599999997,70.314148000000046],[-78.564712999999983,70.310256999999979],[-78.578888000000006,70.309708000000001],[-78.655272999999909,70.346939000000134],[-78.662506000000008,70.350540000000024],[-78.704726999999934,70.374695000000031],[-78.74749799999995,70.438873000000058],[-78.858337000000006,70.453873000000044],[-78.903335999999911,70.449416999999926],[-78.944442999999865,70.450271999999984],[-79.031951999999933,70.454987000000017],[-79.070557000000008,70.469711000000075],[-79.095550999999887,70.493042000000116],[-79.100280999999995,70.49832200000003],[-79.081680000000006,70.529984000000127],[-79.068068999999923,70.536377000000073],[-78.893616000000009,70.590546000000131],[-78.879989999999964,70.594711000000132],[-78.860274999999888,70.59664900000007],[-78.832779000000016,70.594437000000028],[-78.821945000000028,70.589706000000092],[-78.815551999999911,70.57748400000014],[-78.816100999999946,70.573318000000029],[-78.815001999999879,70.571930000000123],[-78.806655999999975,70.564986999999974],[-78.788054999999929,70.556091000000038],[-78.766112999999905,70.550261999999975],[-78.733321999999987,70.547211000000004],[-78.718886999999938,70.547760000000096],[-78.720276000000013,70.549149000000114],[-78.84056099999998,70.634995000000117],[-78.851944000000003,70.638046000000088],[-78.861938000000009,70.637206999999989],[-78.868331999999953,70.63220200000012],[-78.867492999999968,70.628586000000041],[-78.868057000000022,70.624419999999986],[-78.871933000000013,70.621918000000051],[-78.879989999999964,70.621093999999914],[-78.912215999999944,70.621368000000018],[-78.965285999999935,70.632751000000042],[-78.976943999999946,70.635817999999972],[-78.994155999999975,70.643326000000002],[-78.999161000000015,70.651382000000069],[-79.000838999999928,70.662766000000147],[-78.994720000000029,70.672484999999995],[-79.000564999999995,70.676926000000094],[-79.009445000000028,70.679702999999961],[-79.025283999999999,70.680267000000129],[-79.041107000000011,70.678588999999988],[-79.057220000000029,70.672759999999982],[-79.152221999999995,70.627762000000075],[-79.158051,70.622208000000114],[-79.155838000000017,70.617476999999951],[-79.14973399999991,70.613037000000134],[-79.136948000000018,70.610809000000017],[-79.097778000000005,70.610260000000039],[-79.068068999999923,70.615540000000124],[-79.143889999999999,70.453873000000044],[-79.159728999999913,70.43803400000013],[-79.174164000000019,70.428040000000124],[-79.18472300000002,70.423599000000024],[-79.209731999999974,70.418045000000006],[-79.223891999999978,70.419434000000024],[-79.23582499999992,70.423309000000017],[-79.268889999999999,70.436371000000008],[-79.291106999999954,70.446930000000066],[-79.290557999999919,70.453598000000056],[-79.291945999999996,70.459717000000069],[-79.30221599999993,70.473602000000142],[-79.308333999999888,70.480270000000132],[-79.388061999999934,70.49275200000011],[-79.403610000000015,70.493316999999934],[-79.412780999999995,70.491652999999928],[-79.420546999999942,70.488876000000062],[-79.575561999999934,70.42942800000003],[-79.58555599999994,70.421371000000022],[-79.591110000000015,70.413605000000018],[-79.591384999999946,70.40914900000007],[-79.588897999999972,70.399428999999998],[-79.575835999999981,70.389984000000084],[-79.563613999999973,70.385544000000095],[-79.42361499999987,70.355820000000108],[-79.420546999999942,70.359710999999947],[-79.416107000000011,70.363602000000014],[-79.406661999999869,70.367477000000008],[-79.386948000000018,70.37164300000012],[-79.371657999999968,70.371093999999971],[-79.357772999999895,70.36970500000001],[-79.317229999999995,70.360260000000096],[-79.295837000000006,70.353043000000014],[-79.286666999999852,70.349716000000058],[-79.266112999999962,70.341094999999939],[-79.252791999999999,70.333327999999995],[-79.243057000000022,70.324707000000103],[-79.233321999999873,70.318603999999937],[-79.224715999999944,70.316085999999984],[-79.209441999999967,70.313309000000061],[-79.125823999999909,70.304703000000131],[-79.108886999999925,70.304977000000065],[-79.099730999999963,70.308594000000028],[-79.086670000000026,70.317764000000068],[-79.088333000000034,70.324707000000103],[-79.090560999999923,70.329437000000098],[-79.085830999999985,70.33859300000006],[-79.070847000000015,70.340820000000122],[-79.056655999999919,70.341369999999984],[-79.038895000000025,70.340546000000018],[-79.027221999999995,70.339432000000045],[-78.98832699999997,70.331375000000037],[-78.966659999999933,70.323318000000086],[-78.939162999999951,70.311096000000134],[-78.921660999999915,70.300812000000064],[-78.790558000000033,70.205551000000014],[-78.777221999999995,70.194976999999994],[-78.763061999999991,70.183593999999971],[-78.753066999999874,70.169434000000081],[-78.74888599999997,70.162201000000039],[-78.737502999999947,70.114989999999977],[-78.688599000000011,70.054977000000122],[-78.683060000000012,70.046371000000022],[-78.680282999999974,70.040268000000083],[-78.664168999999958,70.004166000000112],[-78.662506000000008,69.983047000000113],[-78.662506000000008,69.973037999999917],[-78.665008999999998,69.961380000000077],[-78.676392000000021,69.945250999999985],[-78.687774999999931,69.934417999999994],[-78.704177999999899,69.924148999999943],[-78.791945999999996,69.891098],[-78.84973100000002,69.886107999999979],[-79.06639100000001,69.878310999999997],[-79.17860399999995,69.883881000000088],[-79.200287000000003,69.884430000000009],[-79.37777699999998,69.886107999999979],[-79.408050999999944,69.88499500000006],[-79.474716000000001,69.878586000000041],[-79.526947000000007,69.871918000000051],[-79.540832999999964,69.868866000000139],[-79.553604000000007,69.864700000000028],[-79.563889000000017,69.859984999999995],[-79.576950000000011,69.855819999999994],[-79.604996000000028,69.849990999999989],[-79.636123999999938,69.848038000000031],[-79.682495000000017,69.848877000000016],[-79.694992000000013,69.851089000000059],[-79.707229999999981,69.855545000000006],[-79.773620999999991,69.885544000000039],[-79.780288999999982,69.890549000000078],[-79.786391999999978,69.897217000000012],[-79.796386999999925,69.908325000000048],[-79.801101999999958,69.915543000000014],[-79.800277999999992,69.917205999999965],[-79.803329000000019,69.927475000000015],[-79.833617999999944,69.949417000000039],[-79.891387999999949,69.973877000000073],[-80.053054999999915,69.997208000000114],[-80.168059999999969,70.006377999999984],[-80.196945000000028,70.008041000000105],[-80.232497999999964,70.007767000000001],[-80.263061999999934,70.002487000000087],[-80.27305599999994,69.999709999999993],[-80.292496000000028,69.98692299999999],[-80.307770000000005,69.981093999999985],[-80.31361400000003,69.980270000000019],[-80.326110999999912,69.980270000000019],[-80.336120999999991,69.982207999999957],[-80.434998000000007,70.004990000000078],[-80.45777899999996,70.013320999999962],[-80.466399999999965,70.018051000000014],[-80.47444200000001,70.024428999999998],[-80.485549999999932,70.029434000000037],[-80.547774999999945,70.04414399999996],[-80.561110999999983,70.046936000000073],[-80.577498999999875,70.048874000000012],[-80.597778000000005,70.048035000000027],[-80.652221999999938,70.038879000000065],[-80.669998000000021,70.039978000000076],[-80.787505999999951,70.050537000000134],[-80.906386999999995,70.070831000000055],[-81.06220999999988,70.085541000000035],[-81.225829999999974,70.09693900000002],[-81.285552999999993,70.095261000000107],[-81.378051999999968,70.092484000000013],[-81.429992999999968,70.093597000000102],[-81.462508999999955,70.09637500000008],[-81.603058000000033,70.113876000000005],[-81.698607999999922,70.128585999999984],[-81.711670000000026,70.130539000000113],[-81.728333000000021,70.132202000000007],[-81.745834000000002,70.1308140000001],[-81.756119000000012,70.12831099999994],[-81.763335999999924,70.123031999999967],[-81.761948000000018,70.117477000000065],[-81.737503000000004,70.093597000000102],[-81.718886999999881,70.079163000000051],[-81.709732000000031,70.074432000000115],[-81.687774999999874,70.067764000000125],[-81.670546999999942,70.065262000000075],[-81.625823999999966,70.062759000000085],[-81.558333999999888,70.056930999999963],[-81.539718999999934,70.053314],[-81.531113000000005,70.050812000000121],[-81.464721999999995,70.024703999999986],[-81.313613999999973,70.032211000000132],[-81.262221999999952,70.016388000000063],[-81.188599000000011,69.991089000000102],[-81.169723999999974,69.982483000000002],[-81.153335999999911,69.969986000000006],[-81.15306099999998,69.963608000000022],[-81.154174999999896,69.958327999999995],[-81.150283999999999,69.945815999999979],[-81.142775999999969,69.938034000000016],[-81.136123999999995,69.933043999999995],[-81.126389000000017,69.927765000000022],[-81.089721999999995,69.913879000000009],[-81.028335999999967,69.893600000000106],[-80.999999999999943,69.886107999999979],[-80.939986999999974,69.862762000000089],[-80.791381999999942,69.790542999999957],[-80.769164999999873,69.778045999999961],[-80.764175000000023,69.770537999999988],[-80.763061999999991,69.767212000000086],[-80.763061999999991,69.760818000000086],[-80.77555799999999,69.75221300000004],[-80.826110999999912,69.733597000000032],[-80.835555999999883,69.730270000000075],[-80.849441999999954,69.727203000000145],[-80.938889000000017,69.714705999999978],[-80.952498999999989,69.713882000000012],[-80.952224999999942,69.732758000000047],[-80.955841000000021,69.734420999999998],[-81.014449999999954,69.745529000000147],[-81.023055999999997,69.746094000000028],[-81.038054999999929,69.748596000000077],[-81.074172999999917,69.758040999999992],[-81.093063000000029,69.764434999999992],[-81.103058000000033,69.768326000000059],[-81.115554999999858,69.776931999999988],[-81.129439999999931,69.797760000000096],[-81.145843999999897,69.812485000000038],[-81.166945999999996,69.821380999999974],[-81.178878999999938,69.824996999999996],[-81.21665999999999,69.833603000000096],[-81.354445999999996,69.880264000000125],[-81.433059999999955,69.91304000000008],[-81.480559999999969,69.926926000000037],[-81.491942999999878,69.929703000000131],[-81.598891999999864,69.95248400000014],[-81.68249499999996,69.964431999999988],[-81.795273000000009,69.988586000000112],[-81.945540999999878,70.039978000000076],[-81.953887999999949,70.043868999999972],[-81.957229999999981,70.047211000000061],[-81.958618000000001,70.052765000000079],[-81.966659999999933,70.060532000000023],[-82.065001999999936,70.095825000000048],[-82.101104999999905,70.108032000000037],[-82.214447000000007,70.134995000000004],[-82.361663999999962,70.161377000000073],[-82.446655000000021,70.174988000000042],[-82.475006000000008,70.179428000000087],[-82.610001000000011,70.207214000000135],[-82.739165999999898,70.237762000000089],[-82.913894999999968,70.282761000000107],[-82.938888999999961,70.292205999999965],[-82.952224999999999,70.296370999999965],[-82.977782999999988,70.301926000000037],[-82.992766999999901,70.303588999999988],[-83.006957999999997,70.304703000000131],[-83.048049999999989,70.306931000000134],[-82.897781000000009,70.248595999999964],[-82.822234999999978,70.220825000000104],[-82.683608999999933,70.189972000000125],[-82.573623999999995,70.171646000000123],[-82.493880999999988,70.158875000000023],[-82.415282999999988,70.143051000000071],[-82.299727999999902,70.118866000000082],[-82.103058000000033,70.065262000000075],[-81.976395000000025,70.012206999999989],[-81.841674999999952,69.963318000000015],[-81.773330999999928,69.954162999999994],[-81.758056999999951,69.951660000000004],[-81.725006000000008,69.944138000000066],[-81.720001000000025,69.941085999999984],[-81.710830999999985,69.934142999999949],[-81.738327000000027,69.876083000000051],[-81.741378999999881,69.872757000000036],[-81.854171999999949,69.855545000000006],[-81.880279999999914,69.852478000000076],[-81.960281000000009,69.844146999999964],[-81.962783999999886,69.844711000000132],[-81.963333000000034,69.847487999999998],[-81.962508999999955,69.852768000000083],[-81.963333000000034,69.857757999999933],[-81.972503999999958,69.862487999999985],[-81.995270000000005,69.872481999999991],[-82.001677999999856,69.874694999999974],[-82.011123999999995,69.875809000000118],[-82.020003999999858,69.873871000000008],[-82.061661000000015,69.859421000000054],[-82.118880999999874,69.814697000000081],[-82.11860699999994,69.81053200000008],[-82.126098999999954,69.784988000000055],[-82.129715000000033,69.782486000000006],[-82.143340999999964,69.781372000000033],[-82.189986999999917,69.790267999999969],[-82.243606999999997,69.801650999999993],[-82.271392999999989,69.82638500000013],[-82.241668999999945,69.828048999999965],[-82.224441999999954,69.823608000000036],[-82.210280999999952,69.826096000000007],[-82.206664999999987,69.828598000000056],[-82.215011999999888,69.832763999999997],[-82.303054999999915,69.856644000000131],[-82.314163000000008,69.857483000000116],[-82.403609999999958,69.860260000000039],[-82.417769999999962,69.857757999999933],[-82.526397999999972,69.860809000000131],[-82.575012000000015,69.87081900000004],[-82.64416499999993,69.892487000000017],[-82.741378999999938,69.910248000000138],[-83.035278000000005,69.98803700000002],[-83.040832999999964,69.993042000000059],[-83.044448999999929,70.004166000000112],[-83.051392000000021,70.008605999999929],[-83.066665999999998,70.010818000000029],[-83.150283999999942,70.009720000000129],[-83.238892000000021,69.998871000000065],[-83.339171999999962,69.979431000000091],[-83.345276000000013,69.977203000000088],[-83.613891999999964,69.948868000000118],[-83.654175000000009,69.946365000000128],[-83.715285999999878,69.947754000000145],[-83.898620999999991,69.960815000000082],[-83.944716999999969,69.965820000000122],[-84.00167799999997,69.974152000000117],[-84.010833999999932,69.976653999999996],[-84.041672000000005,69.981369000000029],[-84.082779000000016,69.985260000000096],[-84.161666999999966,69.984985000000052],[-84.314162999999951,69.979706000000078],[-84.560546999999872,69.993866000000025],[-84.65695199999999,70.002487000000087],[-84.728606999999897,70.010269000000051],[-84.783889999999985,70.01887499999998],[-85.163054999999929,70.09137000000004],[-85.176102000000014,70.093048000000124],[-85.335280999999952,70.102478000000019],[-85.353881999999942,70.103317000000004],[-85.369155999999975,70.103591999999992],[-85.666397000000018,70.104705999999965],[-85.719727000000034,70.103591999999992],[-85.752501999999936,70.101929000000041],[-85.84722899999997,70.088882000000069],[-85.869445999999868,70.085541000000035],[-85.874999999999943,70.083328000000051],[-85.878051999999968,70.076935000000105],[-85.876099000000011,70.071930000000066],[-85.854720999999984,70.040817000000061],[-85.851669000000015,70.038315000000125],[-85.838333000000034,70.041931000000034],[-85.826950000000011,70.046371000000022],[-85.801940999999943,70.05442800000003],[-85.785278000000005,70.058319000000097],[-85.732772999999952,70.066939999999988],[-85.691665999999941,70.070541000000048],[-85.636397999999986,70.071930000000066],[-85.618057000000022,70.070831000000055],[-85.585555999999997,70.067490000000021],[-85.468833999999902,70.049263000000053],[-85.376937999999996,70.032211000000132],[-85.350280999999995,70.026382000000126],[-85.25140399999998,69.998322000000087],[-85.243056999999908,69.994979999999998],[-85.236114999999984,69.989150999999993],[-85.239440999999943,69.986649000000057],[-85.244995000000017,69.984421000000111],[-85.25778200000002,69.983871000000079],[-85.41339099999999,69.997429000000125],[-85.441230999999959,70.00093099999998],[-85.451224999999965,70.001769999999908],[-85.577498999999932,70.009995000000117],[-85.613892000000021,70.009995000000117],[-85.635009999999909,70.007491999999957],[-85.651947000000007,70.00360100000006],[-85.678328999999906,69.995254999999986],[-85.695267000000001,69.991363999999919],[-85.726943999999946,69.990539999999953],[-85.808334000000002,69.99859600000002],[-85.823333999999988,70.000275000000045],[-85.851944000000003,70.005554000000018],[-86.093063000000029,70.062484999999981],[-86.230835000000013,70.098602000000142],[-86.255004999999926,70.10554500000012],[-86.301940999999943,70.121643000000006],[-86.326400999999976,70.132202000000007],[-86.551940999999999,70.234984999999995],[-86.556106999999997,70.244705000000124],[-86.581115999999952,70.356934000000081],[-86.577224999999999,70.36554000000001],[-86.55860899999999,70.386932000000002],[-86.541945999999996,70.401382000000126],[-86.524170000000026,70.411652000000061],[-86.512787000000003,70.416382000000056],[-86.481109999999944,70.424698000000149],[-86.448333999999932,70.431655999999975],[-86.373046999999985,70.445816000000093],[-86.313048999999864,70.46276899999998],[-86.294997999999964,70.472762999999986],[-86.287506000000008,70.484420999999998],[-86.297774999999945,70.494141000000127],[-86.313889000000017,70.502777000000037],[-86.334441999999967,70.511658000000125],[-86.353607000000011,70.519440000000088],[-86.36221299999994,70.522765999999933],[-86.374709999999993,70.525269000000094],[-86.390839000000028,70.522217000000012],[-86.389998999999989,70.519989000000066],[-86.383895999999879,70.513611000000083],[-86.375548999999978,70.508881000000031],[-86.367767000000015,70.504715000000147],[-86.350280999999995,70.49832200000003],[-86.339721999999938,70.491652999999928],[-86.339447000000007,70.486374000000126],[-86.34056099999998,70.483870999999965],[-86.363327000000027,70.474152000000004],[-86.37388599999997,70.470261000000107],[-86.407501000000025,70.459991000000002],[-86.51568599999996,70.433640000000025],[-86.565001999999936,70.425537000000134],[-86.578338999999971,70.422211000000118],[-86.589721999999995,70.417479999999955],[-86.62777699999998,70.395538000000101],[-86.651397999999972,70.374695000000031],[-86.662216000000001,70.361099000000081],[-86.65943900000002,70.357208000000014],[-86.638335999999924,70.324432000000058],[-86.647232000000031,70.319443000000092],[-86.655563000000029,70.318878000000041],[-86.839721999999995,70.320267000000058],[-86.861938000000009,70.322220000000016],[-86.876099000000011,70.326096000000064],[-86.881103999999937,70.329711999999972],[-86.990554999999915,70.431655999999975],[-86.988892000000021,70.435532000000023],[-86.982497999999964,70.438873000000058],[-86.953613000000018,70.442474000000118],[-86.936935000000005,70.443313999999987],[-86.92471299999994,70.446091000000081],[-86.922775000000001,70.447754000000032],[-86.921386999999925,70.451660000000061],[-86.92193599999996,70.455550999999957],[-86.928329000000019,70.460541000000035],[-86.937209999999936,70.463608000000136],[-86.953338999999971,70.467209000000025],[-86.967772999999909,70.468048000000124],[-86.996384000000035,70.467484000000013],[-87.034164000000033,70.464157000000057],[-87.072509999999966,70.457489000000123],[-87.08944699999995,70.453323000000012],[-87.132767000000001,70.439148000000102],[-87.140563999999983,70.434981999999991],[-87.182220000000029,70.399428999999998],[-87.184998000000007,70.388596000000007],[-87.05749499999996,70.381653000000028],[-87.043883999999991,70.379974000000004],[-87.031676999999945,70.377472000000125],[-87.010558999999944,70.37164300000012],[-86.991378999999995,70.364150999999993],[-86.981109999999944,70.35803199999998],[-86.972777999999948,70.351929000000041],[-86.976395000000025,70.284714000000065],[-86.985824999999977,70.281662000000097],[-86.999434999999949,70.280548000000124],[-87.009170999999924,70.281097000000102],[-87.107498000000021,70.28804000000008],[-87.184433000000013,70.295532000000037],[-87.255004999999983,70.30664100000007],[-87.5625,70.322768999999937],[-87.673614999999984,70.319153000000085],[-87.669998000000021,70.298598999999967],[-87.643889999999999,70.295822000000044],[-87.628601000000003,70.29304500000012],[-87.61721799999998,70.289429000000098],[-87.610275000000001,70.284714000000065],[-87.613327000000027,70.281936999999971],[-87.62388599999997,70.278046000000074],[-87.704177999999956,70.257217000000082],[-87.77694699999995,70.24331699999999],[-87.796951000000035,70.240265000000079],[-87.833892999999989,70.238037000000134],[-87.8663939999999,70.238876000000062],[-87.914444000000003,70.24136400000009],[-87.923049999999989,70.242751999999996],[-87.935546999999985,70.24693300000007],[-88.012825000000021,70.277267000000109],[-88.088165000000004,70.285095000000126],[-88.138610999999912,70.296097000000032],[-88.250564999999938,70.321381000000031],[-88.263061999999934,70.325272000000098],[-88.264724999999942,70.328049000000021],[-88.256957999999997,70.333878000000027],[-88.214171999999962,70.351379000000009],[-88.20666499999993,70.352478000000133],[-88.061774999999955,70.329544000000055],[-88.05494699999997,70.327369999999974],[-88.050109999999904,70.325042999999994],[-88.038283999999919,70.315536000000122],[-88.030784999999923,70.314033999999992],[-88.02427699999987,70.313202000000103],[-87.994445999999982,70.31203499999998],[-87.916397000000018,70.301926000000037],[-87.901671999999905,70.304428000000144],[-87.888610999999969,70.308029000000033],[-87.879989999999964,70.311371000000122],[-87.882492000000013,70.316375999999991],[-87.889998999999989,70.321930000000009],[-87.914718999999991,70.331665000000044],[-88.083618000000001,70.378036000000066],[-88.111938000000009,70.384155000000078],[-88.166945999999996,70.394440000000031],[-88.374434999999949,70.432205000000124],[-88.439986999999917,70.438583000000051],[-88.579177999999956,70.450271999999984],[-88.670272999999952,70.453598000000056],[-88.679442999999992,70.453598000000056],[-88.693053999999961,70.455261000000121],[-88.797775000000001,70.489700000000028],[-88.897506999999962,70.53276100000005],[-88.914443999999889,70.546096999999975],[-88.985824999999863,70.608322000000101],[-89.00389100000001,70.624984999999981],[-89.009170999999981,70.636383000000023],[-88.999999999999943,70.645538000000045],[-88.999725000000012,70.651657000000057],[-89.005279999999914,70.656936999999971],[-89.076674999999966,70.696930000000009],[-89.105834999999956,70.707489000000066],[-89.118880999999988,70.711380000000133],[-89.143889999999942,70.717209000000139],[-89.203888000000006,70.737198000000035],[-89.261123999999995,70.759720000000129],[-89.285278000000005,70.769714000000135],[-89.330565999999919,70.791931000000034],[-89.369719999999973,70.814697000000081],[-89.374161000000015,70.819153000000142],[-89.448333999999988,70.902481000000023],[-89.447219999999902,70.906647000000078],[-89.443603999999937,70.910262999999929],[-89.432495000000017,70.915268000000026],[-89.416397000000018,70.918594000000041],[-89.371658000000025,70.925812000000064],[-89.298614999999927,70.933043999999995],[-89.222777999999948,70.935531999999967],[-89.20944199999991,70.939147999999989],[-89.205840999999964,70.942749000000049],[-89.188599000000011,70.960815000000025],[-89.195267000000001,70.968323000000055],[-89.205565999999919,70.973602000000028],[-89.270279000000016,70.983597000000145],[-89.315276999999924,70.991653000000042],[-89.340560999999923,70.997482000000048],[-89.354720999999927,71.001937999999939],[-89.49499499999996,71.0577550000001],[-89.549727999999959,71.088593000000117],[-89.491378999999938,71.092209000000139],[-89.469726999999978,71.091933999999924],[-89.228333000000021,71.072768999999994],[-89.216948999999943,71.06999200000007],[-89.208617999999944,71.063034000000073],[-89.215285999999935,71.056641000000127],[-89.218063000000029,71.050812000000121],[-89.212509000000011,71.045532000000037],[-89.203063999999983,71.03804000000008],[-89.196655000000021,71.035263000000043],[-89.178604000000007,71.031372000000147],[-89.134444999999971,71.026932000000102],[-89.117767000000015,71.026657000000114],[-89.100829999999917,71.027771000000087],[-89.076110999999969,71.030272999999966],[-89.039443999999946,71.035263000000043],[-88.979996000000028,71.041092000000049],[-88.904723999999987,71.045258000000103],[-88.689163000000008,71.046936000000017],[-88.617767000000015,71.044434000000138],[-88.490279999999984,71.031097000000102],[-88.478881999999942,71.029709000000025],[-88.43249499999996,71.021927000000062],[-88.380279999999971,71.011931999999945],[-88.369155999999975,71.007492000000127],[-88.365829000000019,71.001937999999939],[-88.36332699999997,70.99552900000009],[-88.362503000000004,70.990265000000136],[-88.362777999999992,70.984146000000067],[-88.360274999999945,70.977767999999969],[-88.356948999999986,70.972214000000122],[-88.343612999999948,70.961380000000077],[-88.332503999999972,70.957213999999965],[-88.318618999999899,70.95387299999993],[-88.289718999999934,70.950272000000098],[-88.260833999999988,70.947754000000089],[-88.025283999999942,70.930542000000059],[-87.999999999999886,70.929153000000099],[-87.968886999999881,70.928588999999931],[-87.930557000000022,70.929428000000087],[-87.912780999999995,70.931366000000025],[-87.857772999999895,70.941360000000032],[-87.798049999999932,70.949707000000046],[-87.752791999999999,70.953598000000113],[-87.699996999999996,70.955551000000071],[-87.664443999999946,70.954712000000086],[-87.62748699999986,70.95138500000013],[-87.610549999999932,70.949417000000039],[-87.559433000000013,70.947479000000101],[-87.43582200000003,70.944976999999994],[-87.371216000000004,70.944725000000119],[-87.353607000000011,70.945250999999928],[-87.345551,70.949417000000039],[-87.343063000000029,70.954162999999937],[-87.343613000000005,70.959427000000119],[-87.337783999999886,70.969986000000006],[-87.329177999999956,70.980545000000006],[-87.30860899999999,70.99552900000009],[-87.298889000000031,71],[-87.286117999999988,71.004166000000112],[-87.267226999999878,71.006942999999978],[-87.246947999999918,71.009155000000078],[-87.212508999999955,71.007492000000127],[-87.151397999999858,71],[-87.141388000000006,70.997757000000036],[-87.11610399999995,70.994705000000124],[-87.051392000000021,70.987761999999975],[-87.033614999999998,70.986649000000057],[-87.017501999999922,70.986649000000057],[-87.004180999999903,70.990265000000136],[-87.003066999999987,70.991089000000102],[-87.002791999999999,70.994141000000013],[-87.009734999999978,70.996093999999971],[-87.039444000000003,71.000823999999966],[-87.135009999999966,71.011383000000023],[-87.166397000000018,71.014435000000105],[-87.184433000000013,71.01527400000009],[-87.279175000000009,71.026932000000102],[-87.385833999999988,71.041930999999977],[-87.394729999999981,71.043594000000098],[-87.404723999999931,71.047211000000061],[-87.410827999999981,71.053314],[-87.472777999999948,71.074157999999954],[-87.572783999999956,71.09526100000005],[-87.701400999999976,71.123306000000071],[-87.712783999999999,71.126082999999994],[-87.760283999999956,71.143051000000071],[-87.848891999999864,71.184982000000048],[-87.851943999999946,71.191925000000026],[-87.852492999999981,71.19720500000011],[-87.848343,71.202209000000039],[-87.825286999999946,71.217209000000025],[-87.823059000000001,71.223601999999971],[-87.816665999999941,71.254714999999976],[-87.821945000000028,71.258331000000055],[-87.829452999999944,71.261932000000115],[-87.844161999999926,71.264160000000061],[-87.900283999999999,71.268600000000049],[-87.911666999999909,71.266936999999984],[-87.971938999999963,71.250274999999988],[-88.019729999999981,71.236098999999967],[-88.034163999999976,71.231658999999979],[-88.041945999999939,71.228867000000037],[-88.131103999999993,71.219147000000135],[-88.321670999999981,71.228592000000049],[-88.583618000000001,71.234984999999995],[-88.70666499999993,71.247756999999979],[-88.849990999999989,71.259720000000016],[-89.058043999999995,71.276382000000012],[-89.20666499999993,71.283325000000048],[-89.299163999999962,71.287491000000102],[-89.42860399999995,71.294434000000081],[-89.703888000000006,71.31581100000011],[-89.816665999999998,71.324997000000053],[-89.830001999999979,71.328872999999987],[-89.89973399999991,71.351379000000122],[-89.907227000000034,71.354706000000078],[-89.964721999999995,71.411377000000016],[-89.968613000000005,71.416931000000034],[-89.983063000000016,71.446930000000009],[-90.010558999999887,71.57777400000009],[-90.013061999999934,71.600266000000033],[-90.004729999999938,71.630813999999987],[-90.00306699999993,71.635817999999972],[-89.99722300000002,71.641373000000044],[-89.964721999999995,71.655822999999941],[-89.932769999999948,71.667755000000113],[-89.896117999999944,71.679977000000065],[-89.884734999999921,71.684708000000001],[-89.817504999999983,71.724701000000039],[-89.808334000000002,71.747757000000092],[-89.821395999999936,71.760269000000051],[-89.831389999999942,71.760269000000051],[-89.836120999999991,71.761658000000068],[-89.843062999999972,71.764434999999992],[-89.893615999999952,71.789428999999927],[-89.954453000000001,71.820541000000048],[-89.960281000000009,71.824158000000011],[-90.026672000000019,71.892761000000064],[-90.048614999999984,71.953873000000101],[-90.001113999999916,72.063034000000073],[-89.993057000000022,72.070540999999992],[-89.962783999999999,72.07748399999997],[-89.812209999999993,72.111923000000047],[-89.750838999999928,72.12303199999991],[-89.738891999999964,72.124985000000038],[-89.725829999999974,72.124695000000031],[-89.718886999999995,72.121917999999937],[-89.715835999999967,72.118591000000038],[-89.704726999999991,72.113312000000008],[-89.691665999999941,72.109985000000108],[-89.682494999999903,72.110535000000141],[-89.664718999999934,72.113312000000008],[-89.597503999999958,72.148331000000098],[-89.579726999999991,72.158874999999966],[-89.574721999999952,72.163605000000018],[-89.576674999999966,72.169144000000017],[-89.584732000000031,72.175811999999951],[-89.598891999999978,72.178040000000124],[-89.618057000000022,72.17886400000009],[-89.676665999999955,72.17692599999998],[-89.705841000000021,72.174697999999978],[-89.724716000000001,72.172485000000052],[-89.738891999999964,72.168593999999985],[-89.759445000000028,72.159988000000055],[-89.770553999999947,72.157485999999949],[-89.780563000000029,72.157485999999949],[-89.802489999999921,72.161925999999994],[-89.892226999999991,72.186919999999986],[-89.897232000000031,72.188583000000051],[-89.901397999999915,72.194137999999953],[-89.939437999999939,72.261932000000058],[-89.954177999999956,72.304977000000065],[-89.957503999999915,72.316086000000098],[-89.95666499999993,72.321655000000135],[-89.913329999999974,72.422211000000061],[-89.907500999999968,72.432205000000067],[-89.89056399999987,72.444977000000051],[-89.87249799999995,72.449142000000052],[-89.860275000000001,72.451096000000121],[-89.813613999999973,72.456650000000081],[-89.799438000000009,72.46026599999999],[-89.793609999999887,72.462768999999923],[-89.777221999999995,72.493866000000025],[-89.775283999999886,72.498596000000077],[-89.772506999999962,72.51998900000001],[-89.772781000000009,72.526093000000003],[-89.786666999999966,72.559982000000048],[-89.753890999999953,72.60554499999995],[-89.736937999999952,72.616652999999985],[-89.699996999999939,72.625259000000085],[-89.678329000000019,72.629424999999969],[-89.65695199999999,72.630264000000125],[-89.643616000000009,72.62692300000009],[-89.614715999999987,72.616089000000045],[-89.597503999999958,72.614700000000028],[-89.572784000000013,72.616928000000144],[-89.560546999999929,72.621918000000051],[-89.470550999999944,72.666091999999992],[-89.473617999999874,72.672485000000108],[-89.511947999999961,72.688873000000001],[-89.525283999999999,72.693863000000022],[-89.549164000000019,72.691085999999927],[-89.567504999999926,72.693039000000056],[-89.574721999999952,72.698868000000061],[-89.580001999999922,72.711105000000032],[-89.581389999999999,72.71775800000006],[-89.574721999999952,72.785263000000043],[-89.569457999999941,72.786925999999937],[-89.479445999999996,72.779709000000025],[-89.446380999999917,72.775542999999971],[-89.36471599999993,72.762206999999989],[-89.330565999999919,72.755829000000006],[-89.294158999999922,72.797211000000061],[-89.333327999999995,72.950546000000145],[-89.358337000000006,72.965271000000087],[-89.361388999999974,72.991652999999985],[-89.308883999999978,73.048324999999977],[-89.228333000000021,73.125809000000004],[-89.043335000000013,73.252486999999974],[-89.035827999999981,73.257492000000013],[-89.00028999999995,73.278320000000122],[-88.990554999999972,73.283599999999979],[-88.856948999999986,73.336105000000032],[-88.695830999999941,73.411926000000108],[-88.68360899999999,73.417480000000069],[-88.468062999999972,73.491928000000087],[-88.433318999999926,73.514159999999947],[-88.409164000000033,73.523605000000032],[-88.286391999999978,73.566939999999988],[-88.263061999999934,73.573883000000023],[-88.074721999999895,73.627762000000018],[-87.974441999999954,73.654709000000139],[-87.92332499999992,73.667755000000056],[-87.817229999999995,73.694427000000132],[-87.780288999999982,73.703048999999965],[-87.739990000000034,73.711380000000077],[-87.539444000000003,73.746643000000063],[-87.456664999999987,73.760269000000051],[-87.183608999999933,73.792755000000113],[-87.049438000000009,73.80831900000004],[-86.71665999999999,73.840820000000122],[-86.596663999999976,73.84526100000005],[-86.493057000000022,73.844437000000084],[-86.401397999999915,73.845824999999991],[-86.239440999999999,73.849152000000117],[-86.208618000000001,73.849991000000102],[-86.109160999999972,73.849991000000102],[-85.747771999999998,73.836380000000133],[-85.706664999999987,73.832214000000022],[-85.553054999999972,73.820830999999998],[-85.520003999999972,73.81999200000007],[-85.462508999999955,73.820830999999998],[-85.421936000000017,73.824158000000125],[-85.307770000000005,73.821106000000043],[-85.16332999999986,73.813309000000061],[-85.121108999999933,73.809981999999991],[-85.104995999999971,73.808029000000033],[-85.069457999999884,73.801926000000094],[-85.034728999999913,73.794708000000071],[-84.970001000000025,73.777771000000087],[-84.837783999999999,73.741652999999985],[-84.842772999999966,73.735809000000017],[-84.865554999999915,73.713318000000015],[-84.922501000000011,73.680267000000072],[-84.931380999999988,73.67553700000002],[-84.956116000000009,73.665267999999969],[-84.985000999999954,73.655823000000112],[-85.340835999999854,73.556366000000139],[-85.596389999999985,73.486649000000114],[-85.766402999999855,73.425262000000032],[-85.851104999999961,73.391098],[-85.930282999999974,73.355255],[-86.046660999999858,73.287201000000039],[-86.137787000000003,73.228867000000037],[-86.292220999999984,73.103317000000118],[-86.296386999999982,73.097488000000055],[-86.294448999999929,73.091095000000109],[-86.288895000000025,73.087204000000042],[-86.28443900000002,73.08248900000001],[-86.284163999999976,73.077208999999982],[-86.287216000000001,73.072495000000004],[-86.328339000000028,73.036651999999947],[-86.454452999999887,72.963607999999965],[-86.474716000000001,72.953323000000069],[-86.495269999999891,72.943314000000044],[-86.50556899999998,72.938309000000004],[-86.571120999999948,72.908875000000023],[-86.627212999999927,72.883605999999986],[-86.647506999999962,72.873306000000071],[-86.653610000000015,72.868866000000082],[-86.658339999999953,72.863602000000071],[-86.695540999999992,72.819153000000142],[-86.696654999999964,72.816666000000055],[-86.732773000000009,72.716095000000109],[-86.703339000000028,72.659148999999957],[-86.698333999999988,72.652205999999978],[-86.686935000000005,72.644714000000022],[-86.662216000000001,72.631653000000085],[-86.638335999999924,72.620529000000033],[-86.611389000000031,72.60914600000001],[-86.504181000000017,72.56860400000005],[-86.479720999999984,72.56053200000008],[-86.466110000000015,72.556365999999969],[-86.451401000000033,72.553040000000124],[-86.414443999999946,72.541656000000046],[-86.397232000000031,72.534988000000055],[-86.353057999999976,72.511658000000068],[-86.33805799999999,72.503051999999968],[-86.283066000000019,72.468323000000112],[-86.275832999999977,72.463318000000072],[-86.267776000000026,72.456375000000094],[-86.255004999999926,72.443588000000091],[-86.240829000000019,72.420258000000103],[-86.240829000000019,72.406647000000135],[-86.24610899999999,72.394989000000123],[-86.258057000000008,72.384430000000066],[-86.275283999999942,72.373871000000008],[-86.308043999999995,72.359146000000067],[-86.350829999999917,72.339156999999943],[-86.377776999999924,72.323608000000036],[-86.396117999999944,72.30914300000012],[-86.428054999999915,72.281937000000084],[-86.43582200000003,72.270264000000054],[-86.455276000000026,72.207214000000079],[-86.434432999999956,72.049987999999928],[-86.432495000000017,72.043319999999994],[-86.425827000000027,72.024993999999992],[-86.420546999999999,72.012771999999984],[-86.336670000000026,71.951934999999992],[-86.166107000000011,71.824996999999996],[-86.132766999999944,71.795822000000101],[-86.110549999999989,71.783051],[-86.078613000000018,71.775542999999971],[-86.051666000000012,71.771652000000074],[-86.024444999999957,71.765823000000069],[-85.947219999999959,71.726928999999984],[-85.905563000000029,71.699707000000046],[-85.871933000000013,71.676926000000037],[-85.500838999999985,71.511108000000092],[-85.391952999999944,71.481659000000093],[-85.374161000000015,71.47886699999998],[-85.228606999999954,71.465546000000074],[-84.948607999999979,71.421646000000067],[-84.93472300000002,71.418319999999994],[-84.929992999999968,71.414429000000098],[-84.859160999999972,71.321105999999986],[-84.838057999999933,71.29193099999992],[-84.834166999999979,71.285262999999986],[-84.83277899999996,71.278869999999984],[-84.833892999999932,71.274154999999951],[-84.835555999999997,71.271652000000017],[-84.848343,71.269440000000145],[-84.868606999999997,71.268875000000094],[-84.921660999999972,71.270828000000051],[-85.041945999999996,71.278594999999996],[-85.172500999999897,71.272490999999945],[-85.173888999999974,71.269989000000066],[-85.178329000000019,71.266388000000006],[-85.389998999999932,71.196640000000059],[-85.399993999999936,71.193862999999965],[-85.50028999999995,71.177200000000084],[-85.514724999999999,71.176086000000112],[-85.532501000000025,71.177200000000084],[-85.663054999999986,71.194427000000132],[-85.761397999999986,71.192200000000071],[-85.838333000000034,71.187485000000038],[-85.932769999999948,71.17886400000009],[-85.966659999999933,71.171097000000145],[-86.170836999999949,71.106934000000081],[-86.210830999999985,71.09387200000009],[-86.21444699999995,71.089705999999978],[-86.206954999999994,71.083878000000084],[-86.206115999999952,71.078049000000021],[-86.212783999999999,71.072768999999994],[-86.24888599999997,71.058594000000085],[-86.288605000000018,71.052200000000028],[-86.408051,71.035263000000043],[-86.450835999999924,71.031372000000147],[-86.517775999999969,71.031661999999983],[-86.643889999999999,71.019439999999975],[-86.749999999999943,71.007766999999944],[-86.770278999999903,71.004166000000112],[-86.785552999999993,71.000275000000045],[-86.798614999999984,70.996368000000075],[-86.819167999999877,70.98942599999998],[-86.820007000000032,70.988586000000112],[-86.806655999999975,70.983871000000079],[-86.75778200000002,70.97665399999994],[-86.713057999999933,70.974152000000061],[-86.601943999999946,70.97164900000007],[-86.547500999999954,70.978867000000093],[-86.430283000000031,70.988876000000118],[-86.292220999999984,71.000275000000045],[-86.270279000000016,71.002777000000094],[-86.224166999999852,71.014435000000105],[-86.026947000000007,71.071381000000088],[-85.832503999999915,71.127197000000137],[-85.802215999999987,71.135818000000029],[-85.779174999999952,71.139160000000004],[-85.670273000000009,71.148880000000077],[-85.650283999999999,71.149428999999998],[-85.505004999999983,71.158034999999927],[-85.411666999999966,71.17442299999999],[-85.391678000000013,71.174988000000042],[-85.288605000000018,71.159149000000127],[-85.274169999999913,71.15525800000006],[-85.110549999999989,71.161652000000061],[-85.042220999999927,71.181656000000032],[-85.037216000000001,71.183044000000109],[-84.99888599999997,71.187485000000038],[-84.961670000000026,71.188583000000108],[-84.944152999999972,71.187195000000031],[-84.875274999999988,71.172760000000096],[-84.849990999999989,71.154709000000082],[-84.84584000000001,71.147766000000104],[-84.87110899999999,71.073607999999922],[-84.875823999999852,71.06999200000007],[-84.879714999999919,71.069442999999922],[-84.904175000000009,71.078049000000021],[-84.935821999999973,71.092483999999956],[-84.950561999999934,71.09693900000002],[-84.966110000000015,71.10026600000009],[-84.9808349999999,71.101089000000002],[-85.00111400000003,71.100815000000068],[-85.142226999999934,71.086380000000133],[-85.146956999999986,71.082764000000054],[-85.112777999999935,71.079163000000051],[-85.061385999999914,71.076385000000016],[-84.99221799999998,71.077484000000027],[-84.976668999999902,71.075821000000076],[-84.960281000000009,71.072220000000016],[-84.92971799999998,71.004440000000045],[-84.926940999999943,70.988037000000134],[-84.930282999999974,70.981659000000036],[-84.941375999999991,70.970535000000098],[-84.950835999999981,70.965546000000131],[-84.963333000000034,70.955826000000059],[-84.975280999999995,70.945250999999928],[-84.976105000000018,70.933318999999983],[-84.970839999999953,70.927474999999959],[-84.964721999999938,70.922485000000108],[-84.958618000000001,70.919434000000081],[-84.941100999999946,70.918045000000063],[-84.814162999999951,70.919434000000081],[-84.798888999999974,70.921646000000123],[-84.793610000000001,70.926650999999993],[-84.748336999999992,70.975539999999967],[-84.748046999999985,70.988037000000134],[-84.771118000000001,71.037490999999989],[-84.803604000000007,71.047211000000061],[-84.819167999999991,71.057480000000112],[-84.827788999999996,71.068328999999949],[-84.829726999999878,71.073317999999915],[-84.828888000000006,71.079987000000017],[-84.826675000000023,71.085541000000148],[-84.801392000000021,71.148605000000032],[-84.766662999999994,71.197479000000044],[-84.770843999999954,71.254990000000021],[-84.781386999999938,71.261932000000115],[-84.786666999999909,71.267761000000121],[-84.793059999999969,71.278046000000018],[-84.796660999999915,71.297485000000108],[-84.797226000000023,71.303314000000114],[-84.762511999999901,71.406646999999964],[-84.749434999999949,71.416655999999989],[-84.731948999999929,71.424698000000149],[-84.720551,71.428314],[-84.693053999999961,71.434143000000006],[-84.678329000000019,71.435257000000036],[-84.660004000000015,71.431655999999975],[-84.653060999999923,71.431931000000134],[-84.571670999999924,71.440810999999997],[-84.557495000000017,71.444138000000123],[-84.547774999999945,71.447478999999987],[-84.539169000000015,71.451660000000061],[-84.531951999999933,71.456940000000145],[-84.526108000000022,71.46887200000009],[-84.526397999999915,71.478316999999947],[-84.530563000000029,71.492477000000065],[-84.533614999999941,71.502486999999974],[-84.546660999999972,71.527480999999966],[-84.554717999999923,71.541092000000106],[-84.561385999999914,71.549988000000042],[-84.564437999999939,71.552475000000129],[-84.610275000000001,71.562759000000142],[-84.636397999999929,71.570541000000105],[-84.648620999999991,71.57638500000013],[-84.65834000000001,71.583878000000141],[-84.654998999999975,71.608871000000022],[-84.653060999999923,71.612762000000089],[-84.642501999999979,71.622757000000036],[-84.625548999999978,71.633041000000048],[-84.610549999999989,71.641663000000051],[-84.604445999999996,71.646103000000039],[-84.606658999999922,71.649429000000112],[-84.625,71.665817000000004],[-84.628052000000025,71.668319999999937],[-84.635559000000001,71.670258000000103],[-84.649733999999967,71.672211000000004],[-84.710830999999928,71.676085999999998],[-84.77305599999994,71.678588999999988],[-84.782776000000013,71.678863999999976],[-84.827498999999989,71.675262000000032],[-84.867217999999923,71.66804500000012],[-84.886200000000031,71.654251000000102],[-84.926666000000012,71.636107999999979],[-84.975280999999995,71.644440000000145],[-85.097503999999958,71.655258000000117],[-85.176940999999999,71.656647000000135],[-85.196655000000021,71.655822999999941],[-85.230835000000013,71.659987999999942],[-85.263900999999976,71.665543000000071],[-85.279723999999987,71.668594000000041],[-85.291381999999999,71.672211000000004],[-85.570846999999958,71.77998400000007],[-85.579726999999991,71.784988000000055],[-85.573623999999938,71.790817000000061],[-85.557770000000005,71.79525799999999],[-85.543883999999935,71.795532000000094],[-85.458892999999989,71.79414399999996],[-85.449721999999952,71.796097000000088],[-85.436934999999949,71.800812000000121],[-85.432769999999948,71.806366000000139],[-85.431945999999982,71.814697000000024],[-85.434432999999899,71.818053999999961],[-85.551666000000012,71.896378000000027],[-85.559722999999963,71.900543000000027],[-85.744995000000017,71.941360000000032],[-85.845839999999896,71.962494000000049],[-85.900832999999977,71.969147000000021],[-85.939986999999974,71.973038000000088],[-85.963333000000034,71.974425999999994],[-86.002501999999993,71.978043000000127],[-86.022781000000009,71.980545000000006],[-86.026672000000019,71.981658999999979],[-86.039169000000015,71.988876000000118],[-86.043610000000001,71.99552900000009],[-86.050827000000027,72.011107999999979],[-86.047501000000011,72.013885000000073],[-85.981110000000001,72.028594999999996],[-85.778885000000002,72.026932000000102],[-85.538329999999974,72.059143000000006],[-85.509444999999914,72.068054000000132],[-85.495270000000005,72.078872999999987],[-85.440552000000025,72.132751000000098],[-85.449158000000011,72.158325000000104],[-85.481948999999929,72.173309000000017],[-85.50167799999997,72.184143000000063],[-85.502501999999993,72.251663000000065],[-85.49749799999995,72.255264000000125],[-85.48721299999994,72.260268999999994],[-85.291945999999882,72.25999500000006],[-85.271941999999967,72.259720000000016],[-85.029175000000009,72.25082400000008],[-85.013335999999981,72.250000000000114],[-84.936385999999914,72.235809000000131],[-84.919997999999964,72.232758000000103],[-84.867766999999958,72.220825000000048],[-84.861388999999917,72.217758000000117],[-84.847504000000015,72.205550999999957],[-84.839172000000019,72.194137999999953],[-84.815276999999924,72.181366000000139],[-84.803328999999906,72.177765000000079],[-84.710555999999997,72.151656999999943],[-84.612212999999997,72.141098000000113],[-84.595839999999953,72.137772000000041],[-84.512222000000008,72.114150999999993],[-84.286391999999978,72.028594999999996],[-84.275557999999933,72.023879999999963],[-84.269454999999994,72.020828000000051],[-84.261123999999995,72.016098000000056],[-84.258056999999894,72.011932000000115],[-84.25,71.998322000000087],[-84.239989999999921,71.973877000000016],[-84.236389000000031,71.961655000000064],[-84.230559999999855,71.95138500000013],[-84.225006000000008,71.945525999999916],[-84.218886999999995,71.940262000000132],[-84.208617999999888,71.93414300000012],[-84.194442999999978,71.930817000000047],[-84.184722999999963,71.930542000000059],[-84.178329000000019,71.932755000000043],[-84.172774999999945,71.937759000000142],[-84.168883999999878,71.944138000000009],[-84.158614999999998,71.977203000000088],[-84.164718999999877,72.021103000000096],[-84.171111999999994,72.024155000000007],[-84.218063000000029,72.044144000000131],[-84.270003999999915,72.051085999999998],[-84.285827999999981,72.054152999999928],[-84.319732999999871,72.0619200000001],[-84.346663999999976,72.069717000000026],[-84.357772999999952,72.076385000000016],[-84.379990000000021,72.108321999999987],[-84.380553999999961,72.123596000000077],[-84.456116000000009,72.133605999999986],[-84.473327999999981,72.135818000000029],[-84.613326999999913,72.163605000000018],[-84.652221999999938,72.17886400000009],[-84.72193900000002,72.213043000000084],[-84.933318999999926,72.284424000000001],[-84.935271999999941,72.289429000000041],[-84.917495999999971,72.299713000000054],[-84.829452999999944,72.348328000000095],[-84.816101000000003,72.352767999999912],[-84.801392000000021,72.354706000000078],[-84.769729999999981,72.356368999999972],[-84.715012000000002,72.355820000000051],[-84.661941999999954,72.354156000000046],[-84.565001999999993,72.348877000000073],[-84.521117999999944,72.350540000000137],[-84.500838999999928,72.353867000000093],[-84.48443599999996,72.358032000000094],[-84.436110999999926,72.374984999999981],[-84.433060000000012,72.378311000000053],[-84.442215000000033,72.383041000000048],[-84.453339000000028,72.382477000000108],[-84.471389999999928,72.379425000000026],[-84.571670999999924,72.361374000000012],[-84.864166000000012,72.36692800000003],[-84.872771999999998,72.36943100000002],[-84.876098999999954,72.372208000000114],[-84.875548999999921,72.394989000000123],[-84.870834000000002,72.400818000000129],[-84.857772999999952,72.405547999999953],[-84.836670000000026,72.408035000000041],[-84.817504999999983,72.406647000000135],[-84.800277999999992,72.406647000000135],[-84.786666999999909,72.40887500000008],[-84.768341000000021,72.444427000000019],[-84.767226999999934,72.447478999999987],[-84.768341000000021,72.451935000000049],[-84.771118000000001,72.457489000000066],[-84.776947000000007,72.458327999999995],[-84.791945999999996,72.45498699999996],[-84.918609999999944,72.425262000000089],[-85.008347000000015,72.399429000000112],[-85.021666999999979,72.394714000000079],[-85.144729999999925,72.359421000000111],[-85.339019999999948,72.406418000000031],[-85.370270000000005,72.414703000000031],[-85.515288999999996,72.458878000000027],[-85.535277999999948,72.469711000000018],[-85.610001000000011,72.53166200000004],[-85.618057000000022,72.540817000000061],[-85.61721799999998,72.545532000000094],[-85.613892000000021,72.550261999999975],[-85.598617999999931,72.555251999999996],[-85.508347000000015,72.561371000000008],[-85.486114999999927,72.564987000000087],[-85.478057999999976,72.568329000000006],[-85.473052999999993,72.571930000000066],[-85.475554999999986,72.575272000000041],[-85.481110000000001,72.577484000000084],[-85.499999999999943,72.58027600000014],[-85.559998000000007,72.582489000000123],[-85.623885999999914,72.586928999999941],[-85.641953000000001,72.592757999999947],[-85.654174999999952,72.598038000000031],[-85.664718999999934,72.60554499999995],[-85.703063999999927,72.634155000000021],[-85.705276000000026,72.637771999999984],[-85.70777899999996,72.646378000000084],[-85.70944199999991,72.73692299999999],[-85.688048999999978,72.893599999999992],[-85.68472300000002,72.898330999999928],[-85.679442999999992,72.903595000000109],[-85.592223999999987,72.959152000000074],[-85.581680000000006,72.964157000000114],[-85.570557000000008,72.966934000000037],[-85.549164000000019,72.969711000000132],[-85.499725000000012,72.974152000000004],[-85.481948999999929,72.974152000000004],[-85.378875999999934,72.971100000000092],[-85.283066000000019,72.964431999999931],[-85.257507000000032,72.960814999999968],[-85.127486999999974,72.940262000000132],[-85.077498999999932,72.929977000000008],[-85.015015000000005,72.916092000000106],[-84.96665999999999,72.904984000000127],[-84.93249499999996,72.896378000000027],[-84.874434999999949,72.885543999999925],[-84.819457999999997,72.880264000000068],[-84.707503999999972,72.869980000000055],[-84.668610000000001,72.867477000000065],[-84.61082499999992,72.861649000000114],[-84.504455999999948,72.846100000000035],[-84.437209999999993,72.833603000000039],[-84.404998999999918,72.826096000000121],[-84.389450000000011,72.822220000000016],[-84.320847000000015,72.800812000000121],[-84.291107000000011,72.791655999999989],[-84.257507000000032,72.785263000000043],[-84.188323999999966,72.774428999999941],[-83.991378999999938,72.745819000000097],[-83.97222899999997,72.744141000000013],[-83.958054000000004,72.746643000000063],[-83.955275999999913,72.748322000000087],[-83.953063999999927,72.752487000000087],[-83.956389999999999,72.754990000000078],[-83.989440999999999,72.76887499999998],[-84.040832999999964,72.77748100000008],[-84.073623999999995,72.781661999999983],[-84.108046999999942,72.785263000000043],[-84.218613000000005,72.794983000000116],[-84.246947999999975,72.79971299999994],[-84.291381999999942,72.812484999999981],[-84.311935000000005,72.820267000000115],[-84.335280999999952,72.829987000000017],[-84.419158999999922,72.853316999999947],[-84.528885000000002,72.882477000000051],[-84.577224999999942,72.892212000000086],[-84.652495999999985,72.899429000000055],[-84.706389999999999,72.905823000000055],[-84.74360699999994,72.910812000000021],[-84.760558999999944,72.914153999999996],[-84.791107000000011,72.921371000000079],[-84.855835000000013,72.937485000000038],[-84.870269999999948,72.942200000000071],[-85.059998000000007,72.996643000000006],[-85.223609999999951,73.014984000000027],[-85.513901000000033,73.019149999999911],[-85.535277999999948,73.021927000000005],[-85.537216000000001,73.028320000000008],[-85.47193900000002,73.098037999999917],[-85.447768999999937,73.120254999999986],[-85.44027699999998,73.125533999999959],[-85.429442999999935,73.130539000000056],[-85.415832999999964,73.135269000000051],[-85.406951999999933,73.136383000000023],[-85.395554000000004,73.135544000000095],[-85.379990000000021,73.133605999999929],[-85.37332200000003,73.130814000000044],[-85.369995000000017,73.128311000000053],[-85.363891999999964,73.120818999999926],[-85.35943599999996,73.113876000000118],[-85.358046999999942,73.109711000000118],[-85.333618000000001,73.092484000000127],[-85.300277999999935,73.078049000000021],[-85.256888999999944,73.071487000000104],[-85.248061999999948,73.068649000000107],[-85.240891000000033,73.066818000000126],[-85.188057000000015,73.059814000000074],[-85.175887999999986,73.058655000000101],[-85.166388999999981,73.060654000000113],[-85.171393999999964,73.066315000000088],[-85.152495999999985,73.072769000000108],[-85.186935000000005,73.096939000000134],[-85.226943999999946,73.115814000000057],[-85.229172000000005,73.12303200000008],[-85.227782999999988,73.129150000000038],[-85.223052999999993,73.134720000000129],[-85.213622999999984,73.13888500000013],[-85.191939999999988,73.141663000000108],[-85.148345999999947,73.141663000000108],[-85.089171999999962,73.137496999999996],[-85.053329000000019,73.13220200000012],[-85.003066999999874,73.121918000000107],[-84.988602000000014,73.116928000000087],[-84.921386999999982,73.098327999999924],[-84.904175000000009,73.09526100000005],[-84.829726999999878,73.085541000000148],[-84.772781000000009,73.081100000000049],[-84.556655999999975,73.064423000000033],[-84.212508999999955,73.040268000000026],[-84.077224999999942,73.03387500000008],[-83.92332499999992,73.033600000000035],[-83.867766999999901,73.029709000000139],[-83.84973100000002,73.027481000000023],[-83.832503999999972,73.024155000000007],[-83.761397999999929,73.006378000000097],[-83.718886999999995,72.989151000000106],[-83.634445000000028,72.982483000000116],[-83.633330999999941,72.983322000000101],[-83.634445000000028,72.986374000000012],[-83.648346000000004,72.991364000000033],[-83.692490000000021,73.005554000000132],[-83.776672000000019,73.031097000000045],[-83.879715000000033,73.051926000000037],[-83.913619999999923,73.058318999999983],[-83.93472300000002,73.061096000000077],[-83.955841000000021,73.06164600000011],[-83.974716000000001,73.060806000000071],[-84.039718999999991,73.056366000000082],[-84.05972300000002,73.056366000000082],[-84.095001000000025,73.058318999999983],[-84.197495000000004,73.068604000000107],[-84.236938000000009,73.081100000000049],[-84.248046999999985,73.083327999999995],[-84.275283999999999,73.086929000000055],[-84.433884000000035,73.106093999999985],[-84.531112999999948,73.110260000000096],[-84.547501000000011,73.111374000000069],[-84.584441999999967,73.115814000000057],[-84.736389000000031,73.137206999999989],[-84.789444000000003,73.145828000000108],[-84.865004999999883,73.163604999999961],[-84.912780999999939,73.175537000000134],[-84.942215000000033,73.181655999999975],[-84.985275000000001,73.190536000000009],[-85.020003999999972,73.196930000000066],[-85.058334000000002,73.200546000000088],[-85.100554999999986,73.201385000000073],[-85.138061999999934,73.204436999999984],[-85.170546999999942,73.210815000000139],[-85.17721599999993,73.213882000000069],[-85.184433000000013,73.21887200000009],[-85.188599000000011,73.223602000000142],[-85.188599000000011,73.228867000000037],[-85.138900999999976,73.299988000000042],[-85.134170999999981,73.305542000000059],[-85.115828999999962,73.314423000000147],[-85.077788999999882,73.329437000000041],[-85.017226999999991,73.348328000000095],[-84.979996000000028,73.35664399999996],[-84.808043999999938,73.388321000000133],[-84.78694200000001,73.388046000000088],[-84.756392999999946,73.381088000000091],[-84.741669000000002,73.376083000000051],[-84.72193900000002,73.362198000000149],[-84.712783999999942,73.348602000000028],[-84.694992000000013,73.326934999999992],[-84.685271999999998,73.319991999999957],[-84.654998999999975,73.305542000000059],[-84.424712999999997,73.232483000000059],[-84.408889999999985,73.228591999999992],[-84.392501999999922,73.226089000000002],[-84.377212999999927,73.224152000000004],[-84.355269999999905,73.223037999999974],[-84.33944699999995,73.226089000000002],[-84.347777999999948,73.232483000000059],[-84.413054999999986,73.272217000000012],[-84.451110999999969,73.288588999999945],[-84.460830999999985,73.291931000000091],[-84.48971599999993,73.299713000000054],[-84.563613999999973,73.313873000000115],[-84.576674999999909,73.317764000000011],[-84.586945000000014,73.323044000000095],[-84.597778000000005,73.330826000000059],[-84.653609999999958,73.387206999999933],[-84.656113000000005,73.390549000000078],[-84.652221999999938,73.393326000000002],[-84.642226999999934,73.397217000000069],[-84.625,73.401382000000069],[-84.583892999999989,73.409149000000014],[-84.434157999999968,73.435256999999979],[-84.284438999999963,73.461105000000089],[-84.229172000000005,73.47026100000005],[-84.194442999999978,73.474701000000039],[-84.171386999999925,73.47526600000009],[-84.113892000000021,73.469147000000078],[-83.751923000000033,73.427490000000034],[-83.724715999999944,73.41304000000008],[-83.717772999999966,73.405822999999998],[-83.719726999999978,73.399719000000118],[-83.724715999999944,73.393875000000094],[-83.728058000000033,73.381088000000091],[-83.720550999999944,73.365814000000057],[-83.712218999999948,73.351928999999927],[-83.702498999999875,73.339157000000114],[-83.689437999999939,73.323608000000036],[-83.665833000000021,73.307754999999986],[-83.657500999999968,73.303589000000102],[-83.648055999999997,73.300261999999975],[-83.630828999999949,73.297210999999947],[-83.613891999999964,73.296097000000145],[-83.600554999999929,73.297485000000052],[-83.593062999999972,73.301375999999948],[-83.590835999999911,73.307204999999954],[-83.591109999999958,73.313309000000004],[-83.594161999999983,73.325272000000041],[-83.624999999999943,73.415268000000026],[-83.633330999999941,73.428864000000033],[-83.642501999999979,73.439696999999967],[-83.652495999999985,73.445250999999985],[-83.663895000000025,73.449707000000103],[-83.679717999999923,73.453872999999987],[-83.696945000000028,73.457214000000022],[-83.754456000000005,73.463318000000072],[-83.810546999999929,73.470534999999984],[-83.954726999999934,73.492752000000053],[-83.978606999999954,73.49664300000012],[-83.993606999999997,73.500275000000045],[-84.00418099999996,73.504166000000112],[-84.006957999999941,73.509720000000129],[-83.996947999999975,73.51388500000013],[-83.979172000000005,73.518051000000014],[-83.740828999999962,73.567763999999954],[-83.577498999999989,73.59637500000008],[-83.445267000000001,73.615814],[-83.219161999999869,73.656647000000078],[-83.085280999999952,73.65776100000005],[-83.018340999999907,73.666091999999935],[-82.931106999999997,73.690536000000066],[-82.902221999999938,73.700272000000041],[-82.889998999999989,73.705261000000007],[-82.872771999999884,73.715546000000131],[-82.869720000000029,73.721099999999979],[-82.86332699999997,73.726089000000115],[-82.852782999999931,73.730270000000019],[-82.840835999999967,73.73275799999999],[-82.820846999999958,73.733597000000145],[-82.636123999999938,73.727767999999912],[-82.529998999999918,73.722214000000122],[-82.475006000000008,73.719985999999949],[-82.413894999999968,73.718871999999976],[-82.367492999999911,73.719147000000021],[-82.21945199999999,73.725266000000033],[-81.990828999999962,73.731368999999972],[-81.618057000000022,73.721099999999979],[-81.572509999999966,73.719711000000132],[-81.553878999999938,73.717209000000082],[-81.536666999999852,73.713882000000126],[-81.476105000000018,73.698029000000076],[-81.457229999999981,73.691086000000098],[-81.282500999999968,73.58027600000014],[-81.239715999999873,73.546936000000073],[-81.228881999999999,73.535538000000088],[-81.21945199999999,73.521378000000141],[-81.197494999999947,73.477203000000145],[-81.188323999999909,73.389709000000039],[-81.21166999999997,73.326096000000007],[-81.216109999999958,73.314697000000081],[-81.215835999999967,73.303863999999919],[-81.214172000000019,73.291931000000091],[-81.20944199999991,73.272766000000104],[-81.204726999999991,73.266662999999994],[-81.192490000000021,73.260543999999982],[-81.177490000000034,73.256378000000041],[-81.101668999999958,73.238312000000064],[-81.074448000000018,73.232208000000071],[-80.900283999999942,73.209427000000005],[-80.712783999999942,73.180267000000129],[-80.664718999999934,73.171097000000088],[-80.640839000000028,73.165543000000127],[-80.61721799999998,73.157760999999994],[-80.596389999999985,73.148041000000092],[-80.557769999999948,73.111374000000069],[-80.547501000000011,73.098037999999917],[-80.547774999999945,73.091369999999984],[-80.549437999999952,73.081940000000088],[-80.59333799999996,73.025818000000072],[-80.617492999999968,73.005554000000132],[-80.641388000000006,72.996094000000085],[-80.647507000000019,72.990540000000067],[-80.652221999999938,72.974700999999982],[-80.650833000000034,72.969146999999964],[-80.633895999999936,72.940536000000066],[-80.642501999999979,72.93553200000008],[-80.642775999999969,72.92886400000009],[-80.638335999999981,72.922760000000096],[-80.537216000000001,72.851089000000002],[-80.513901000000033,72.838882000000012],[-80.487777999999992,72.828598],[-80.440552000000025,72.818603999999993],[-80.405563000000029,72.813309000000118],[-80.349166999999966,72.806366000000139],[-80.333327999999938,72.803040000000067],[-80.319457999999941,72.799149],[-80.299987999999985,72.788040000000137],[-80.283614999999998,72.77748100000008],[-80.247498000000007,72.730545000000063],[-80.258056999999894,72.724425999999994],[-80.332229999999925,72.712494000000049],[-80.361664000000019,72.706099999999992],[-80.444991999999957,72.673599000000081],[-80.464721999999938,72.665268000000026],[-80.541381999999999,72.628860000000145],[-80.55610699999994,72.6202550000001],[-80.556380999999874,72.607208000000071],[-80.648620999999991,72.554977000000008],[-80.676391999999964,72.547211000000118],[-80.765288999999996,72.516937000000098],[-80.942489999999964,72.455261000000121],[-80.953887999999949,72.450546000000088],[-80.988327000000027,72.429703000000018],[-81.186935000000005,72.299149000000114],[-81.192490000000021,72.293594000000041],[-81.199722000000008,72.289153999999996],[-81.222504000000015,72.281662000000097],[-81.239166000000012,72.27777100000003],[-81.30471799999998,72.268326000000116],[-81.379439999999988,72.241652999999928],[-81.365279999999984,72.241652999999928],[-81.301392000000021,72.246094000000028],[-81.285827999999924,72.247208000000057],[-81.253066999999987,72.251938000000052],[-81.241942999999992,72.254439999999931],[-81.229720999999927,72.258606000000043],[-81.164169000000015,72.287201000000096],[-81.037506000000008,72.351089000000115],[-80.929442999999935,72.40026899999998],[-80.821670999999981,72.439148000000046],[-80.715012000000002,72.473037999999974],[-80.600554999999986,72.506653000000028],[-80.580291999999929,72.509995000000004],[-80.554442999999992,72.512497000000053],[-80.539443999999946,72.511658000000068],[-80.52555799999999,72.508040999999935],[-80.516402999999912,72.503875999999934],[-80.508895999999993,72.49664300000012],[-80.503066999999987,72.484985000000108],[-80.495270000000005,72.464157000000057],[-80.492767000000015,72.453049000000021],[-80.493606999999997,72.447205000000054],[-80.514174999999966,72.379700000000014],[-80.525009000000011,72.374146000000053],[-80.54222099999987,72.37052900000009],[-80.564437999999939,72.366653000000042],[-80.603058000000033,72.363037000000134],[-80.655562999999972,72.351928999999984],[-80.669158999999979,72.347214000000122],[-80.680556999999965,72.342209000000082],[-80.783324999999991,72.290267999999969],[-80.794158999999922,72.284714000000008],[-80.808333999999945,72.274155000000121],[-80.854172000000005,72.235535000000027],[-80.896956999999929,72.194427000000076],[-80.905563000000029,72.180542000000003],[-80.816665999999998,72.150542999999971],[-80.769454999999994,72.141663000000108],[-80.753890999999953,72.140548999999965],[-80.709732000000031,72.131927000000132],[-80.580840999999964,72.094437000000084],[-80.569457999999997,72.088318000000072],[-80.567229999999995,72.077208999999982],[-80.567229999999995,72.072768999999937],[-80.574172999999917,72.068329000000119],[-80.588333000000034,72.064148000000046],[-80.630554000000018,72.062195000000088],[-80.646118000000001,72.063309000000061],[-80.686661000000015,72.073043999999982],[-80.741942999999935,72.094147000000078],[-80.941100999999946,72.087494000000106],[-81.080291999999929,72.051651000000049],[-81.08666999999997,72.04664600000001],[-81.083327999999938,72.045532000000037],[-81.065001999999936,72.041655999999932],[-81.046660999999972,72.039978000000019],[-80.990554999999972,72.037766000000147],[-80.927215999999987,72.037766000000147],[-80.906386999999995,72.039978000000019],[-80.892226999999991,72.044144000000131],[-80.886397999999986,72.049713000000111],[-80.879439999999988,72.054152999999928],[-80.866652999999985,72.0577550000001],[-80.84722899999997,72.056641000000127],[-80.792770000000019,72.02777100000003],[-80.794158999999922,72.022491000000002],[-80.821395999999879,71.95637499999998],[-80.833327999999995,71.945815999999979],[-80.849441999999954,71.934707999999944],[-80.886123999999938,71.920821999999987],[-80.933318999999926,71.908875000000023],[-80.975005999999951,71.895827999999995],[-80.980834999999956,71.890273999999977],[-80.983611999999994,71.886383000000137],[-80.971664000000033,71.881653000000085],[-80.950287000000003,71.881088000000034],[-80.926392000000021,71.882750999999985],[-80.903610000000015,71.885268999999937],[-80.868056999999965,71.893051000000071],[-80.767226999999991,71.929428000000087],[-80.756119000000012,71.93414300000012],[-80.750290000000007,71.939697000000081],[-80.746947999999975,71.945251000000098],[-80.744720000000029,71.951934999999992],[-80.745834000000002,71.957488999999953],[-80.75556899999998,71.971099999999922],[-80.758346999999958,71.977768000000083],[-80.746947999999975,71.982483000000116],[-80.659164000000033,72.003052000000082],[-80.639449999999954,72.006377999999927],[-80.620543999999995,72.006103999999993],[-80.535277999999948,72.016098000000056],[-80.448883000000023,72.029160000000047],[-80.410552999999993,72.039429000000098],[-80.385009999999966,72.048325000000034],[-80.350554999999929,72.069153000000085],[-80.347777999999948,72.075272000000098],[-80.346663999999976,72.081100000000049],[-80.347228999999913,72.088318000000072],[-80.352492999999981,72.095534999999984],[-80.358611999999994,72.101379000000009],[-80.370269999999948,72.10803199999998],[-80.383056999999951,72.113312000000008],[-80.410278000000005,72.121368000000075],[-80.433884000000035,72.132751000000098],[-80.445540999999992,72.139709000000096],[-80.455275999999969,72.146652000000074],[-80.478607000000011,72.168593999999985],[-80.483321999999987,72.175261999999918],[-80.486938000000009,72.183044000000052],[-80.486664000000019,72.189423000000147],[-80.468062999999972,72.191925000000026],[-80.426940999999886,72.191086000000041],[-80.408614999999884,72.189148000000102],[-80.393616000000009,72.177200000000084],[-80.376663000000008,72.17442299999999],[-80.355559999999912,72.17442299999999],[-80.331389999999999,72.176086000000112],[-80.241103999999893,72.197754000000032],[-80.235274999999945,72.203323000000012],[-80.244445999999925,72.209717000000069],[-80.27305599999994,72.219147000000135],[-80.279723999999931,72.22554000000008],[-80.301665999999955,72.248596000000134],[-80.306380999999988,72.255264000000125],[-80.295546999999942,72.274429000000055],[-80.289718999999934,72.279984000000127],[-80.272231999999974,72.290267999999969],[-80.260833999999988,72.294983000000002],[-80.24221799999998,72.297485000000108],[-80.22444200000001,72.296371000000136],[-80.194153000000028,72.28776600000009],[-80.155838000000017,72.273605000000089],[-80.134734999999921,72.262771999999927],[-80.113051999999982,72.244141000000127],[-80.08555599999994,72.226654000000053],[-80.021392999999989,72.189697000000081],[-79.991668999999888,72.176651000000106],[-79.962783999999999,72.168868999999972],[-79.947220000000016,72.165267999999912],[-79.899733999999967,72.15554800000001],[-79.840285999999935,72.145263999999997],[-79.790557999999976,72.137772000000041],[-79.761123999999995,72.134155000000078],[-79.685546999999929,72.126372999999944],[-79.674437999999952,72.126647999999989],[-79.672501000000011,72.129700000000071],[-79.691665999999998,72.141663000000108],[-79.719161999999926,72.148331000000098],[-79.789992999999981,72.155823000000055],[-79.811110999999983,72.160263000000043],[-79.854995999999971,72.171097000000145],[-79.923889000000031,72.190536000000009],[-79.941101000000003,72.195816000000093],[-80.045546999999999,72.242477000000122],[-80.15194699999995,72.310531999999967],[-80.166396999999961,72.322220000000129],[-80.164443999999946,72.32748400000014],[-80.155562999999916,72.336928999999998],[-80.133620999999948,72.349716000000001],[-80.115279999999927,72.359421000000111],[-80.076400999999976,72.378859999999975],[-80.064712999999983,72.3836060000001],[-80.052215999999987,72.387771999999984],[-79.991942999999992,72.402771000000087],[-79.957229999999925,72.408325000000048],[-79.874434999999949,72.470534999999984],[-79.870834000000002,72.483046999999999],[-79.86332699999997,72.489699999999971],[-79.836944999999901,72.498596000000077],[-79.820847000000015,72.501389000000074],[-79.799164000000019,72.501389000000074],[-79.780562999999972,72.499420000000043],[-79.770844000000011,72.49664300000012],[-79.734160999999915,72.484420999999998],[-79.700561999999991,72.472488000000112],[-79.692215000000033,72.466933999999924],[-79.768638999999894,72.411766],[-79.687865999999985,72.384392000000105],[-79.595550999999944,72.334717000000126],[-79.638901000000033,72.289153999999996],[-79.668059999999912,72.280823000000112],[-79.705565999999976,72.273605000000089],[-79.720000999999968,72.269440000000088],[-79.731673999999998,72.264708999999982],[-79.759734999999921,72.250549000000092],[-79.768616000000009,72.2452550000001],[-79.774718999999891,72.239700000000028],[-79.775283999999999,72.233322000000044],[-79.769729999999925,72.225815000000125],[-79.75,72.215546000000074],[-79.732773000000009,72.212203999999986],[-79.712783999999999,72.211104999999975],[-79.701110999999969,72.215820000000008],[-79.565825999999959,72.275269000000094],[-79.485001000000011,72.325545999999974],[-79.355559999999912,72.399155000000007],[-79.342498999999975,72.40026899999998],[-79.329726999999991,72.397217000000069],[-79.243331999999953,72.374419999999986],[-79.182495000000017,72.358322000000101],[-79.146666999999979,72.345825000000104],[-79.113327000000027,72.331099999999992],[-79.082229999999925,72.313873000000001],[-79.012787000000003,72.273880000000133],[-78.945540999999935,72.199996999999996],[-78.943603999999993,72.193038999999999],[-78.946945000000028,72.186919999999986],[-79.036391999999978,72.069443000000092],[-79.136123999999938,72.007492000000127],[-79.145003999999972,72.002487000000087],[-79.156661999999983,71.997757000000036],[-79.206389999999942,71.986649000000057],[-79.229996000000028,71.980270000000019],[-79.233063000000016,71.976379000000122],[-79.203063999999983,71.961928999999998],[-79.19027699999998,71.958328000000108],[-79.176392000000021,71.955826000000059],[-79.161117999999931,71.954437000000041],[-79.138610999999912,71.955261000000007],[-79.123046999999929,71.958038000000101],[-79.099730999999963,71.967209000000082],[-79.090835999999854,71.972488000000055],[-79.072234999999921,71.974990999999989],[-79.061110999999926,71.975266000000033],[-79.026671999999962,71.970535000000098],[-78.81806899999998,71.935257000000092],[-78.768889999999999,71.92692599999998],[-78.722503999999901,71.918869000000029],[-78.683884000000035,71.909714000000008],[-78.65306099999998,71.893875000000037],[-78.639724999999999,71.884430000000009],[-78.625823999999852,71.879150000000095],[-78.585555999999997,71.865814],[-78.571395999999879,71.862762000000032],[-78.551392000000021,71.861098999999967],[-78.529174999999952,71.861649],[-78.511123999999995,71.864699999999971],[-78.503615999999965,71.868866000000082],[-78.508346999999901,71.876373000000001],[-78.595551,71.933318999999983],[-78.607498000000021,71.938583000000108],[-78.622222999999963,71.942200000000071],[-78.691375999999991,71.949707000000046],[-78.740554999999972,71.958038000000101],[-78.855559999999855,71.979706000000022],[-78.914444000000003,72.007767000000115],[-78.923614999999984,72.014999000000046],[-78.924438000000009,72.020538000000045],[-78.877486999999974,72.153320000000065],[-78.869445999999925,72.166656000000046],[-78.866104000000007,72.170532000000094],[-78.854445999999939,72.173035000000084],[-78.843613000000005,72.171097000000145],[-78.554442999999992,72.111374000000069],[-78.512221999999952,72.101089000000002],[-78.487777999999935,72.092484000000127],[-78.476105000000018,72.087204000000099],[-78.460830999999928,72.073318000000086],[-78.432770000000005,72.03804000000008],[-78.39527899999996,71.982483000000116],[-78.389998999999989,71.969437000000028],[-78.392775999999969,71.949997000000053],[-78.391678000000013,71.943587999999977],[-78.386672999999973,71.933318999999983],[-78.381942999999922,71.92804000000001],[-78.365279999999927,71.917480000000012],[-78.317779999999971,71.888321000000076],[-78.226669000000015,71.833054000000118],[-78.210830999999985,71.825821000000133],[-78.18499799999995,71.817490000000021],[-78.157607999999982,71.810577000000023],[-78.123046999999929,71.806366000000139],[-78.090560999999923,71.800812000000121],[-78.05972300000002,71.79414399999996],[-77.924437999999952,71.764709000000096],[-77.907775999999956,71.76638800000012],[-77.904448999999943,71.768051000000014],[-77.90695199999999,71.770538000000101],[-77.914169000000015,71.773605000000032],[-77.966659999999933,71.786652000000061],[-77.997498000000007,71.793319999999994],[-78.029723999999931,71.798874000000012],[-78.085830999999985,71.813309000000118],[-78.107223999999917,71.819153000000142],[-78.139998999999932,71.830551000000128],[-78.178878999999995,71.848602000000142],[-78.308884000000035,71.921096999999975],[-78.316665999999998,71.929428000000087],[-78.321395999999993,71.936920000000043],[-78.315001999999993,71.942474000000004],[-78.305266999999901,71.946930000000123],[-78.279175000000009,71.953598000000113],[-78.258895999999993,71.956650000000025],[-78.178878999999995,71.967209000000082],[-78.156951999999933,71.968323000000055],[-78.141677999999956,71.964157000000114],[-78.018616000000009,71.890823000000125],[-77.974716000000001,71.859984999999938],[-77.785552999999993,71.787490999999989],[-77.807769999999948,71.823044000000039],[-77.960006999999962,71.881653000000085],[-78.096953999999982,71.96804800000001],[-78.107223999999917,71.974152000000061],[-78.116393999999957,71.976928999999984],[-78.149733999999967,71.980545000000006],[-78.156386999999995,71.980545000000006],[-78.196105999999929,71.978592000000049],[-78.262222000000008,71.972763000000043],[-78.281386999999995,71.973877000000016],[-78.298614999999984,71.977478000000076],[-78.322509999999909,71.985809000000017],[-78.334166999999923,71.99136400000009],[-78.341110000000015,71.99859600000002],[-78.342498999999918,72.012771999999984],[-78.341674999999952,72.019149999999968],[-78.341674999999952,72.031936999999971],[-78.356948999999929,72.05831900000004],[-78.375548999999978,72.085815000000082],[-78.386672999999973,72.095534999999984],[-78.402221999999938,72.104980000000069],[-78.424437999999952,72.113602000000071],[-78.436935000000005,72.117477000000008],[-78.468886999999995,72.12414600000011],[-78.515014999999948,72.131363000000022],[-78.599990999999989,72.145263999999997],[-78.696654999999964,72.163605000000018],[-78.809998000000007,72.197205000000054],[-78.842498999999918,72.209152000000017],[-78.854720999999984,72.214432000000102],[-78.870834000000002,72.226654000000053],[-78.869155999999919,72.229706000000022],[-78.734725999999966,72.328598000000113],[-78.615829000000019,72.359146000000067],[-78.604172000000005,72.359421000000111],[-78.580565999999919,72.354156000000046],[-78.515839000000028,72.330551000000071],[-78.512511999999901,72.324432000000002],[-78.519164999999987,72.319153000000028],[-78.528335999999911,72.313873000000001],[-78.533324999999991,72.30914300000012],[-78.53694200000001,72.303314000000114],[-78.537780999999995,72.254715000000147],[-78.531386999999938,72.240265000000022],[-78.529174999999952,72.235535000000027],[-78.520843999999954,72.229155999999989],[-78.42193599999996,72.170822000000101],[-78.40834000000001,72.166382000000112],[-78.399733999999967,72.167206000000078],[-78.390839000000028,72.169982999999945],[-78.386123999999995,72.172485000000052],[-78.384170999999981,72.175537000000134],[-78.411117999999988,72.216660000000047],[-78.414718999999934,72.220535000000041],[-78.422775000000001,72.224152000000004],[-78.459732000000031,72.233871000000022],[-78.472777999999948,72.242477000000122],[-78.46833799999996,72.314986999999974],[-78.462783999999942,72.318878000000041],[-78.451110999999912,72.324158000000068],[-78.439437999999996,72.326660000000004],[-78.40834000000001,72.325821000000019],[-78.305266999999901,72.313309000000004],[-78.012512000000015,72.274994000000106],[-77.893615999999952,72.259430000000009],[-77.827498999999989,72.248596000000134],[-77.793883999999991,72.242202999999961],[-77.665282999999874,72.204712000000029],[-77.655272999999966,72.201385000000073],[-77.648620999999991,72.194137999999953],[-77.644454999999994,72.186646000000053],[-77.540833000000021,72.17692599999998],[-77.381103999999993,72.184982000000048],[-77.32417299999986,72.18609600000002],[-77.289444000000003,72.183319000000097],[-77.239989999999977,72.17442299999999],[-77.115828999999962,72.148331000000098],[-77.039443999999946,72.131653000000028],[-77.023330999999985,72.128860000000032],[-77.006118999999956,72.127472000000125],[-76.99722300000002,72.128036000000066],[-76.995833999999945,72.128860000000032],[-76.994719999999973,72.130539000000056],[-77.005004999999983,72.134430000000123],[-77.068619000000012,72.152206000000092],[-77.251677999999913,72.193313999999987],[-77.27806099999998,72.196930000000066],[-77.306945999999925,72.19802900000002],[-77.397232000000031,72.192748999999992],[-77.455840999999964,72.190811000000053],[-77.476944000000003,72.191360000000145],[-77.514175000000023,72.193862999999965],[-77.549987999999985,72.19802900000002],[-77.578888000000006,72.204163000000051],[-77.604172000000005,72.211929000000112],[-77.623885999999914,72.221100000000092],[-77.658614999999998,72.231658999999922],[-77.760833999999932,72.257217000000026],[-77.823058999999944,72.271927000000005],[-77.866104000000007,72.281097000000045],[-77.949996999999883,72.296097000000032],[-78.072509999999966,72.312485000000038],[-78.121384000000035,72.319716999999969],[-78.154723999999987,72.325545999999974],[-78.220001000000025,72.337769000000037],[-78.326950000000011,72.359146000000067],[-78.37388599999997,72.36943100000002],[-78.389175000000023,72.37303200000008],[-78.473327999999981,72.394989000000123],[-78.499161000000015,72.404709000000025],[-78.520843999999954,72.414993000000038],[-78.559158000000025,72.438034000000073],[-78.561110999999926,72.444977000000051],[-78.556655999999919,72.504440000000102],[-78.443053999999961,72.581939999999975],[-78.430556999999965,72.586655000000007],[-78.170273000000009,72.653594999999996],[-78.156386999999995,72.656937000000084],[-78.001677999999913,72.682480000000055],[-77.869994999999903,72.697479000000101],[-77.845001000000025,72.698868000000061],[-77.78083799999996,72.706940000000031],[-77.768616000000009,72.709427000000119],[-77.701401000000033,72.724701000000039],[-77.670273000000009,72.732208000000128],[-77.656951999999876,72.736099000000024],[-77.639998999999989,72.743865999999969],[-77.627486999999974,72.74859600000002],[-77.613892000000021,72.751663000000121],[-77.576401000000033,72.755554000000018],[-77.532226999999921,72.756943000000035],[-77.513625999999988,72.754715000000033],[-77.413054999999872,72.752212999999983],[-77.259734999999978,72.751663000000121],[-77.05581699999999,72.752861000000109],[-77.002501999999993,72.749419999999986],[-76.947219999999902,72.743865999999969],[-76.799728000000016,72.727478000000133],[-76.753066999999987,72.720534999999927],[-76.693053999999961,72.694702000000007],[-76.684997999999894,72.691085999999927],[-76.662505999999894,72.678588999999988],[-76.653609999999958,72.670821999999987],[-76.655272999999966,72.664429000000041],[-76.65972899999997,72.658324999999991],[-76.646118000000001,72.639708999999982],[-76.584732000000031,72.628585999999984],[-76.428328999999962,72.614151000000049],[-76.328339000000028,72.607483000000116],[-76.288329999999917,72.604980000000126],[-76.215285999999935,72.596100000000092],[-76.182219999999973,72.58998100000008],[-76.166945999999996,72.58638000000002],[-76.155562999999916,72.580826000000002],[-76.150283999999999,72.574158000000011],[-76.154723999999931,72.562485000000038],[-76.160552999999936,72.54942299999999],[-76.165833000000021,72.538315000000011],[-76.162506000000008,72.526093000000003],[-76.156112999999948,72.518051000000071],[-76.121657999999911,72.478317000000118],[-76.107773000000009,72.473037999999974],[-76.087783999999999,72.471648999999957],[-76.069457999999997,72.474991000000102],[-76.046386999999868,72.483597000000032],[-76.036941999999897,72.489426000000037],[-76.037780999999939,72.496368000000132],[-76.052215999999987,72.51138300000008],[-76.068619000000012,72.525818000000015],[-76.077224999999942,72.536377000000073],[-76.074172999999917,72.541656000000046],[-76.06471299999987,72.549988000000042],[-76.018889999999999,72.574431999999945],[-76.005843999999968,72.579163000000108],[-75.988601999999958,72.580826000000002],[-75.931945999999925,72.583603000000096],[-75.885284000000013,72.584152000000074],[-75.841948999999943,72.583053999999947],[-75.798888999999974,72.581939999999975],[-75.759170999999981,72.579163000000108],[-75.56806899999998,72.557479999999941],[-75.553328999999962,72.553589000000102],[-75.547226000000023,72.545532000000094],[-75.537780999999939,72.539703000000088],[-75.521117999999888,72.536102000000028],[-75.472228999999913,72.527480999999966],[-75.435271999999998,72.522491000000059],[-75.379439999999931,72.51638800000012],[-75.360001000000011,72.515548999999965],[-75.301666000000012,72.509720000000129],[-75.231673999999998,72.500549000000035],[-75.215285999999878,72.497482000000105],[-75.192490000000021,72.491928000000087],[-75.186661000000015,72.487488000000099],[-75.189163000000008,72.478317000000118],[-75.199158000000011,72.466933999999924],[-75.200287000000003,72.461929000000055],[-75.160277999999948,72.421097000000088],[-75.132492000000013,72.393600000000106],[-75.054169000000002,72.328873000000101],[-75.034164000000033,72.317490000000134],[-75,72.298369999999977],[-74.980559999999912,72.288315000000068],[-74.950835999999981,72.269989000000066],[-74.943603999999993,72.263321000000076],[-74.942490000000021,72.255829000000119],[-74.947494999999947,72.249710000000107],[-75.044997999999964,72.188308999999947],[-75.068068999999923,72.179152999999985],[-75.225280999999995,72.122482000000105],[-75.238326999999913,72.118317000000104],[-75.25306699999993,72.116378999999938],[-75.271666999999979,72.117203000000075],[-75.291381999999885,72.119431000000077],[-75.323623999999938,72.125534000000016],[-75.387511999999901,72.134430000000123],[-75.440552000000025,72.141098000000113],[-75.477782999999988,72.144714000000135],[-75.520003999999972,72.146102999999982],[-75.607498000000021,72.143326000000059],[-75.710006999999962,72.136658000000068],[-75.73332199999993,72.134155000000078],[-75.813889000000017,72.122482000000105],[-75.866652999999985,72.113876000000005],[-76.015015000000005,72.086655000000121],[-76.033324999999934,72.081100000000049],[-76.054717999999866,72.073043999999982],[-76.078063999999983,72.059417999999994],[-76.084166999999923,72.049713000000111],[-76.09973100000002,72.02887000000004],[-76.111938000000009,72.018050999999957],[-76.128052000000025,72.004166000000055],[-76.142226999999934,71.99331699999999],[-76.156386999999881,71.985260000000039],[-76.173614999999984,71.975540000000137],[-76.192490000000021,71.967758000000003],[-76.234726000000023,71.957488999999953],[-76.262511999999901,71.949707000000046],[-76.274445000000014,71.944427000000132],[-76.301665999999955,71.930542000000059],[-76.318344000000025,71.919983000000002],[-76.348052999999879,71.891662999999994],[-76.31082200000003,71.884720000000016],[-76.089721999999938,71.978867000000093],[-76.073058999999944,71.989425999999924],[-76.063323999999966,72],[-76.049727999999902,72.017761000000121],[-76.047501000000011,72.023604999999975],[-76.043609999999944,72.030272999999966],[-76.029448999999943,72.041091999999992],[-76.019729999999981,72.046097000000032],[-75.998610999999983,72.054152999999928],[-75.956115999999952,72.067215000000147],[-75.89445499999988,72.082214000000022],[-75.828338999999971,72.096939000000134],[-75.796660999999915,72.103591999999935],[-75.710555999999997,72.113312000000008],[-75.630554000000018,72.11970500000001],[-75.586120999999991,72.12164300000012],[-75.528335999999967,72.120818999999983],[-75.488051999999925,72.118866000000025],[-75.433060000000012,72.112761999999975],[-75.23332199999993,72.084152000000131],[-75.226105000000018,72.080276000000083],[-75.219451999999876,72.074432000000058],[-75.218886999999995,72.070267000000058],[-75.221114999999998,72.064696999999967],[-75.228881999999942,72.059143000000006],[-75.255279999999914,72.046097000000032],[-75.281676999999888,72.038589000000059],[-75.317504999999926,72.031661999999926],[-75.338332999999977,72.02887000000004],[-75.404174999999952,72.025543000000084],[-75.449432000000002,72.02526899999998],[-75.494155999999975,72.021378000000084],[-75.515015000000005,72.018326000000002],[-75.548049999999989,72.011107999999979],[-75.574172999999917,72.00360100000006],[-75.586670000000026,71.999146000000053],[-75.606383999999935,71.989425999999924],[-75.613892000000021,71.983871000000022],[-75.618880999999988,71.978592000000049],[-75.686661000000015,71.883040999999992],[-75.697495000000004,71.858322000000044],[-75.691375999999877,71.850266000000147],[-75.688048999999921,71.842758000000117],[-75.6875,71.839157000000057],[-75.692215000000033,71.833328000000051],[-75.802490000000034,71.750548999999978],[-75.830001999999979,71.736649000000114],[-75.872222999999906,71.721375000000023],[-75.898345999999947,71.714432000000045],[-75.934157999999968,71.711105000000089],[-75.953612999999962,71.710266000000104],[-75.997497999999894,71.709152000000131],[-76.040282999999931,71.709426999999948],[-76.067504999999869,71.706650000000081],[-76.079177999999956,71.704437000000098],[-76.090835999999911,71.702208999999982],[-76.096114999999998,71.697479000000101],[-76.095839999999953,71.693863000000079],[-76.085281000000009,71.691924999999912],[-75.901671999999962,71.701096000000064],[-75.880279999999971,71.70248400000014],[-75.846953999999982,71.708602999999982],[-75.819457999999941,71.716934000000094],[-75.794998000000021,71.725815000000011],[-75.787215999999944,71.730545000000063],[-75.675003000000004,71.810532000000023],[-75.654998999999975,71.826096000000121],[-75.580001999999865,71.906097000000045],[-75.570281999999963,71.917480000000012],[-75.565825999999959,71.929703000000075],[-75.567229999999938,71.937485000000038],[-75.570281999999963,71.941360000000032],[-75.574447999999961,71.953048999999965],[-75.571944999999971,71.958878000000141],[-75.569167999999991,71.963882000000126],[-75.558334000000002,71.97665400000011],[-75.538605000000018,71.986374000000012],[-75.513335999999924,71.995254999999986],[-75.498046999999929,71.999146000000053],[-75.476669000000015,72.000823999999966],[-75.414444000000003,71.999709999999993],[-75.371932999999899,71.997757000000036],[-75.349441999999897,71.998032000000023],[-75.327788999999939,71.999419999999986],[-75.24888599999997,72.012771999999984],[-75.197768999999937,72.023315000000139],[-75.174437999999952,72.031936999999971],[-75.158614999999941,72.041655999999932],[-75.150283999999942,72.0577550000001],[-75.135009999999966,72.080551000000071],[-75.129990000000021,72.086380000000133],[-75.119155999999862,72.096375000000023],[-75.109160999999858,72.101089000000002],[-75.093613000000005,72.10803199999998],[-75.081389999999942,72.11303700000002],[-75.051392000000021,72.121917999999937],[-75.035827999999924,72.125809000000004],[-75.012511999999958,72.12831100000011],[-75,72.128525000000025],[-74.98443599999996,72.127472000000125],[-74.951675000000023,72.123306000000071],[-74.835006999999962,72.10386699999998],[-74.801391999999964,72.098327999999981],[-74.764449999999954,72.094711000000018],[-74.65943900000002,72.091094999999939],[-74.625548999999921,72.091369999999984],[-74.535278000000005,72.089705999999978],[-74.316390999999953,72.082214000000022],[-74.297226000000023,72.080826000000116],[-74.260009999999966,72.076096000000064],[-74.244155999999862,72.073043999999982],[-74.233321999999987,72.067489999999964],[-74.218062999999972,72.058029000000033],[-74.177489999999921,72.031936999999971],[-74.122222999999963,71.983597000000088],[-74.117766999999958,71.969985999999949],[-74.119445999999982,71.955826000000059],[-74.166107000000011,71.874695000000088],[-74.171111999999937,71.868591000000038],[-74.184998000000007,71.855819999999937],[-74.229996000000028,71.822768999999994],[-74.243056999999965,71.818603999999993],[-74.263335999999981,71.815810999999997],[-74.403060999999923,71.80386400000009],[-74.43998699999986,71.801925999999924],[-74.460555999999997,71.802765000000079],[-74.477782999999931,71.804977000000122],[-74.50140399999998,71.809708000000057],[-74.513625999999874,71.818053999999961],[-74.570557000000008,71.809418000000051],[-74.604996000000028,71.784714000000122],[-74.678328999999962,71.745254999999986],[-74.696105999999929,71.738586000000112],[-74.71362299999987,71.735260000000096],[-74.885009999999909,71.708602999999982],[-75,71.711914000000036],[-75.046660999999915,71.716095000000109],[-75.090560999999923,71.718048000000067],[-75.136672999999973,71.716934000000094],[-75.158051,71.715271000000143],[-75.342772999999909,71.695815999999979],[-75.363892000000021,71.691360000000088],[-75.378600999999946,71.686920000000043],[-75.389998999999989,71.681091000000038],[-75.393889999999942,71.677475000000015],[-75.391953000000001,71.674698000000092],[-75.385009999999909,71.674423000000104],[-75.241942999999878,71.686096000000077],[-75.178329000000019,71.694138000000066],[-75.085007000000019,71.700821000000076],[-75.043610000000001,71.699707000000046],[-75.025008999999955,71.698029000000133],[-75.009170999999924,71.694977000000051],[-74.941101000000003,71.674698000000092],[-74.934158000000025,71.670822000000044],[-74.93360899999999,71.663879000000009],[-74.93638599999997,71.658035000000041],[-74.945540999999935,71.652481000000023],[-74.956115999999952,71.648331000000042],[-75.008895999999993,71.631927000000076],[-75.055557000000022,71.622481999999991],[-75.114166000000012,71.611098999999967],[-75.194152999999972,71.595535000000098],[-75.206954999999994,71.591934000000037],[-75.398345999999947,71.525269000000094],[-75.40972899999997,71.519714000000022],[-75.408339999999953,71.514708999999982],[-75.406386999999938,71.512207000000046],[-75.402221999999938,71.512497000000053],[-75.205276000000026,71.546371000000079],[-75,71.607238999999993],[-74.861114999999927,71.649429000000112],[-74.851668999999958,71.654984000000013],[-74.799437999999952,71.678863999999976],[-74.784163999999976,71.682755000000043],[-74.718337999999903,71.693588000000034],[-74.697768999999937,71.696365000000128],[-74.686661000000015,71.696365000000128],[-74.672774999999945,71.692474000000061],[-74.631942999999978,71.662491000000102],[-74.629714999999919,71.65277100000003],[-74.631942999999978,71.646378000000084],[-74.646392999999989,71.631927000000076],[-74.674437999999896,71.608322000000101],[-74.689712999999983,71.598038000000031],[-74.704726999999934,71.588042999999971],[-74.713057999999933,71.583878000000141],[-74.733886999999982,71.575546000000145],[-74.811934999999949,71.547760000000096],[-74.869720000000029,71.541656000000046],[-74.922500999999897,71.53776600000009],[-74.940276999999867,71.538040000000024],[-74.97084000000001,71.537201000000039],[-74.990279999999984,71.536652000000117],[-75,71.535583000000088],[-75.027221999999995,71.532486000000006],[-75.036666999999966,71.530548000000067],[-75.081389999999942,71.515273999999977],[-75.107773000000009,71.503052000000025],[-75.124709999999936,71.492477000000065],[-75.15194699999995,71.471649000000014],[-75.152221999999995,71.466094999999996],[-75.146117999999944,71.463608000000079],[-75.12777699999998,71.465820000000008],[-75.115554999999972,71.469986000000063],[-75.106110000000001,71.481934000000081],[-75.093886999999938,71.49275200000011],[-75.084731999999974,71.498322000000144],[-75.06138599999997,71.506378000000041],[-75.05082699999997,71.509720000000016],[-75.033324999999934,71.513046000000031],[-75,71.517899000000114],[-74.993056999999908,71.518875000000037],[-74.944153000000028,71.521652000000131],[-74.877486999999974,71.524155000000121],[-74.857223999999974,71.523605000000089],[-74.838332999999921,71.521926999999948],[-74.828338999999971,71.517211999999915],[-74.71665999999999,71.419144000000131],[-74.699431999999945,71.390823000000069],[-74.700561999999934,71.386658000000068],[-74.705565999999976,71.380814000000044],[-74.715285999999992,71.375809000000004],[-74.888335999999981,71.287201000000096],[-75.075012000000015,71.204437000000041],[-75.081389999999942,71.17942800000003],[-75.065001999999993,71.180817000000047],[-75,71.199341000000061],[-74.987503000000004,71.203873000000101],[-74.874160999999958,71.247756999999979],[-74.864440999999943,71.252487000000031],[-74.671660999999972,71.359985000000052],[-74.654448999999943,71.370254999999986],[-74.637511999999958,71.380538999999999],[-74.632216999999969,71.385818000000029],[-74.628051999999968,71.392487000000074],[-74.625823999999852,71.39888000000002],[-74.626098999999954,71.405822999999998],[-74.631103999999993,71.419433999999967],[-74.638061999999991,71.426651000000106],[-74.646956999999929,71.433044000000052],[-74.657227000000034,71.438583000000051],[-74.719726999999978,71.462494000000106],[-74.726944000000003,71.466094999999996],[-74.735549999999989,71.472487999999942],[-74.736388999999974,71.476654000000053],[-74.743057000000022,71.511932000000058],[-74.73611499999987,71.530548000000067],[-74.723891999999978,71.541931000000091],[-74.714172000000019,71.546646000000123],[-74.701675000000023,71.551086000000112],[-74.686385999999914,71.554977000000008],[-74.663895000000025,71.557204999999954],[-74.628875999999934,71.554703000000075],[-74.619995000000017,71.55802900000009],[-74.583618000000001,71.585815000000025],[-74.576401000000033,71.591370000000097],[-74.543883999999991,71.631362999999965],[-74.381942999999922,71.677199999999971],[-74.345550999999944,71.689423000000033],[-74.335555999999997,71.694138000000066],[-74.317779999999971,71.704437000000098],[-74.309432999999956,71.712204000000042],[-74.306945999999982,71.71775800000006],[-74.299437999999952,71.723877000000073],[-74.288604999999905,71.727478000000133],[-74.268341000000021,71.730270000000019],[-74.146956999999929,71.738875999999948],[-74.12470999999988,71.738875999999948],[-74.109160999999972,71.735809000000017],[-74.103058000000033,71.733321999999987],[-74.097777999999948,71.72886699999998],[-74.123885999999914,71.680817000000104],[-74.128875999999877,71.67164600000001],[-74.142226999999991,71.661652000000004],[-74.15055799999999,71.657486000000063],[-74.173049999999989,71.651093000000117],[-74.202788999999996,71.645828000000051],[-74.220276000000013,71.641663000000051],[-74.232773000000009,71.637496999999939],[-74.239440999999999,71.634155000000021],[-74.24888599999997,71.621643000000063],[-74.253066999999987,71.611649],[-74.254455999999948,71.60664399999996],[-74.254729999999995,71.603867000000093],[-74.252228000000002,71.58998100000008],[-74.249161000000015,71.582489000000123],[-74.243056999999965,71.569716999999969],[-74.218886999999938,71.556641000000013],[-74.180282999999974,71.538315000000011],[-74.168334999999956,71.533324999999991],[-74.156386999999995,71.532211000000018],[-74.150283999999886,71.533324999999991],[-74.148620999999935,71.537491000000045],[-74.151671999999962,71.544983000000002],[-74.165008999999998,71.555252000000053],[-74.146118000000001,71.637496999999939],[-74.039718999999934,71.722213999999951],[-74.019164999999987,71.73803700000002],[-74.014724999999942,71.741089000000102],[-73.996947999999975,71.751389000000017],[-73.977782999999931,71.759720000000129],[-73.964447000000007,71.763321000000019],[-73.928329000000019,71.769150000000025],[-73.748046999999929,71.776931999999988],[-73.718886999999938,71.776931999999988],[-73.61610399999995,71.773315000000025],[-73.604172000000005,71.772217000000126],[-73.593886999999995,71.769988999999953],[-73.589721999999995,71.763321000000019],[-73.589995999999985,71.756943000000035],[-73.591675000000009,71.751937999999996],[-73.598343,71.738312000000008],[-73.612503000000004,71.722213999999951],[-73.619995000000017,71.716095000000109],[-73.638061999999991,71.706375000000037],[-73.663329999999917,71.697204999999997],[-73.694442999999922,71.690262000000018],[-73.732772999999952,71.683868000000132],[-73.771117999999944,71.670822000000044],[-73.791381999999999,71.661102000000142],[-73.890839000000028,71.609421000000054],[-73.985549999999989,71.534149000000127],[-73.990279999999927,71.527480999999966],[-74.010833999999988,71.491363999999976],[-74.095275999999956,71.46276899999998],[-74.169997999999964,71.445816000000036],[-74.303878999999995,71.419433999999967],[-74.315826000000015,71.414429000000098],[-74.319167999999877,71.409424000000058],[-74.312209999999993,71.40554800000001],[-74.297226000000023,71.405822999999998],[-74.191665999999998,71.425537000000134],[-74.159163999999919,71.4327550000001],[-74.121384000000035,71.438583000000051],[-74.083617999999944,71.441086000000041],[-74.045836999999949,71.440810999999997],[-74.028610000000015,71.437759000000085],[-74.063889000000017,71.336929000000055],[-74.091675000000009,71.285537999999974],[-74.106383999999878,71.274704000000099],[-74.137787000000003,71.255828999999949],[-74.152221999999995,71.248032000000023],[-74.187774999999931,71.229430999999977],[-74.207503999999858,71.219711000000075],[-74.217223999999931,71.214996000000042],[-74.226669000000015,71.212203999999986],[-74.238327000000027,71.203873000000101],[-74.240829000000019,71.200821000000133],[-74.235000999999897,71.198317999999972],[-74.228881999999942,71.199416999999983],[-74.217772999999966,71.202209000000039],[-74.190825999999959,71.211104999999975],[-74.158339999999953,71.223877000000016],[-74.148055999999997,71.228592000000049],[-74.118332000000009,71.24331699999999],[-74.039444000000003,71.302199999999971],[-74.009444999999971,71.360809000000017],[-74.006957999999997,71.367203000000075],[-73.973327999999924,71.413605000000132],[-73.968612999999891,71.419433999999967],[-73.867767000000015,71.525818000000015],[-73.86221299999994,71.531096999999988],[-73.761672999999973,71.580826000000059],[-73.746947999999975,71.585266000000047],[-73.732772999999952,71.586928999999998],[-73.689162999999951,71.588042999999971],[-73.653610000000015,71.587493999999992],[-73.639724999999942,71.58638000000002],[-73.621932999999956,71.583328000000108],[-73.595000999999968,71.575272000000041],[-73.588608000000022,71.572220000000129],[-73.565001999999936,71.55192599999998],[-73.566665999999941,71.544144000000017],[-73.598343,71.528320000000122],[-73.615554999999915,71.520264000000054],[-73.619445999999982,71.515823000000125],[-73.630279999999971,71.456649999999911],[-73.635009999999909,71.359421000000111],[-73.622498000000007,71.356644000000017],[-73.61332699999997,71.355820000000051],[-73.594727000000034,71.35775799999999],[-73.540389999999945,71.37286400000005],[-73.518889999999942,71.379150000000038],[-73.517226999999934,71.379974000000004],[-73.516112999999962,71.385818000000029],[-73.515563999999927,71.39888000000002],[-73.513335999999981,71.413040000000137],[-73.50306699999993,71.424698000000149],[-73.496947999999918,71.428589000000045],[-73.477492999999924,71.436371000000008],[-73.446945000000028,71.440262000000075],[-73.428878999999995,71.435806000000127],[-73.384445000000028,71.391937000000041],[-73.380279999999914,71.385269000000051],[-73.385009999999966,71.381927000000132],[-73.500899999999945,71.337212000000022],[-73.590285999999935,71.304977000000065],[-73.615554999999915,71.296371000000136],[-73.623046999999872,71.291091999999992],[-73.635558999999944,71.279709000000139],[-73.663054999999986,71.254166000000055],[-73.678878999999995,71.238037000000077],[-73.712783999999999,71.177765000000136],[-73.717772999999966,71.164993000000095],[-73.718886999999938,71.159424000000115],[-73.716399999999965,71.14498900000001],[-73.713622999999984,71.137497000000053],[-73.713622999999984,71.130539000000056],[-73.71665999999999,71.118317000000104],[-73.728606999999954,71.098602000000085],[-73.735824999999977,71.093323000000112],[-73.745833999999888,71.088593000000117],[-73.760833999999932,71.084717000000012],[-73.77806099999998,71.0816650000001],[-73.797774999999945,71.078872999999987],[-73.842498999999918,71.074432000000115],[-73.87388599999997,71.069717000000082],[-73.890288999999996,71.064987000000031],[-73.898346000000004,71.057480000000112],[-73.895003999999972,71.052200000000028],[-73.886672999999973,71.049149],[-73.879439999999875,71.047759999999982],[-73.872771999999998,71.047484999999995],[-73.850554999999986,71.059981999999991],[-73.842223999999987,71.064148000000046],[-73.753066999999987,71.065810999999997],[-73.732772999999952,71.067764000000125],[-73.715835999999854,71.071655000000021],[-73.692764000000011,71.079436999999984],[-73.674438000000009,71.088318000000072],[-73.667220999999984,71.093597000000045],[-73.660552999999993,71.10386699999998],[-73.658339999999953,71.124985000000095],[-73.662505999999951,71.134995000000004],[-73.666655999999875,71.141662999999994],[-73.673614999999927,71.163039999999967],[-73.668883999999991,71.173035000000084],[-73.623610999999983,71.225540000000137],[-73.615829000000019,71.230270000000132],[-73.549164000000019,71.269989000000066],[-73.454726999999991,71.300262000000032],[-73.433884000000035,71.308594000000028],[-73.42860399999995,71.314423000000033],[-73.427779999999984,71.327208999999925],[-73.435271999999941,71.332214000000022],[-73.437774999999988,71.336380000000077],[-73.436110999999983,71.340545999999961],[-73.430282999999974,71.34165999999999],[-73.382216999999969,71.345260999999994],[-73.363051999999982,71.345824999999991],[-73.349730999999963,71.345260999999994],[-73.320847000000015,71.340820000000122],[-73.083617999999944,71.285812000000078],[-73.061110999999983,71.277481000000023],[-73.049437999999952,71.268325999999945],[-73.053878999999938,71.261658000000011],[-73.065001999999936,71.258331000000055],[-73.155562999999972,71.246643000000006],[-73.214721999999995,71.240814],[-73.230835000000013,71.238312000000121],[-73.249434999999949,71.233871000000022],[-73.266113000000018,71.224990999999989],[-73.271941999999854,71.220535000000041],[-73.263061999999991,71.205826000000002],[-73.252501999999936,71.195251000000098],[-73.244445999999982,71.188873000000115],[-73.235001000000011,71.173309000000017],[-73.235001000000011,71.162201000000039],[-73.238327000000027,71.157210999999961],[-73.247771999999998,71.144150000000025],[-73.256957999999884,71.133881000000031],[-73.294448999999929,71.092483999999956],[-73.311110999999926,71.080826000000116],[-73.327788999999996,71.072768999999994],[-73.379439999999988,71.05831900000004],[-73.426391999999908,71.047759999999982],[-73.446105999999986,71.041092000000049],[-73.450835999999924,71.035263000000043],[-73.451950000000011,71.029433999999981],[-73.446945000000028,71.024993999999992],[-73.377486999999917,70.980545000000006],[-73.369995000000017,70.985809000000017],[-73.17361499999987,71.156937000000028],[-73.168610000000001,71.170532000000094],[-73.177490000000034,71.185257000000036],[-73.183060000000012,71.191360000000032],[-73.188048999999978,71.199141999999938],[-73.185271999999998,71.205826000000002],[-73.180283000000031,71.211655000000007],[-73.172226000000023,71.216385000000059],[-73.142226999999934,71.224425999999937],[-73.115554999999915,71.230270000000132],[-73.101395000000025,71.231658999999979],[-73.079726999999991,71.231658999999979],[-73.067779999999857,71.230270000000132],[-73.045546999999885,71.225540000000137],[-73.027221999999881,71.227203000000031],[-73.011947999999961,71.234421000000054],[-73.004455999999948,71.239700000000028],[-72.99499499999996,71.249999999999943],[-72.981673999999941,71.267487000000017],[-72.952788999999996,71.311096000000077],[-72.951400999999976,71.316085999999984],[-72.959731999999974,71.355820000000051],[-72.963622999999927,71.362488000000042],[-72.970001000000025,71.369979999999998],[-72.978332999999907,71.376373000000115],[-72.989440999999999,71.391663000000108],[-72.993057000000022,71.397766000000047],[-72.993331999999953,71.401931999999931],[-72.988892000000021,71.40554800000001],[-72.975829999999917,71.40914900000007],[-72.897232000000031,71.416655999999989],[-72.858046999999942,71.413315000000125],[-72.836394999999925,71.413315000000125],[-72.765839000000028,71.423874000000012],[-72.759170999999924,71.426926000000094],[-72.757507000000032,71.431931000000134],[-72.758621000000005,71.437484999999981],[-72.764724999999942,71.451660000000061],[-72.76916499999993,71.459152000000017],[-72.679992999999911,71.524704000000042],[-72.649733999999967,71.536926000000051],[-72.61860699999994,71.559418000000107],[-72.61332699999997,71.565536000000066],[-72.610274999999888,71.571930000000123],[-72.608337000000006,71.583878000000141],[-72.61082499999992,71.595535000000098],[-72.608337000000006,71.60664399999996],[-72.593886999999995,71.642487000000017],[-72.583327999999881,71.651382000000069],[-72.580291999999929,71.653594999999996],[-72.573333999999932,71.656647000000135],[-72.557495000000017,71.660262999999986],[-72.538054999999929,71.660812000000135],[-72.523620999999991,71.65887500000008],[-72.503066999999874,71.65026899999998],[-72.474715999999944,71.642761000000121],[-72.444442999999978,71.636107999999979],[-72.301102000000014,71.612198000000149],[-72.152221999999938,71.58998100000008],[-71.847777999999948,71.546646000000123],[-71.689437999999996,71.524429000000055],[-71.670546999999999,71.522216999999955],[-71.635559000000001,71.517761000000064],[-71.58555599999994,71.509995000000004],[-71.554169000000002,71.503875999999991],[-71.455275999999913,71.473037999999974],[-71.444442999999922,71.468597000000045],[-71.435271999999998,71.463608000000079],[-71.295546999999942,71.384720000000129],[-71.241378999999995,71.349425999999994],[-71.12332200000003,71.271652000000017],[-71.119719999999973,71.264160000000061],[-71.122771999999998,71.257217000000082],[-71.128601000000003,71.251389000000131],[-71.147780999999952,71.241927999999973],[-71.169448999999986,71.233322000000044],[-71.206116000000009,71.220535000000041],[-71.221389999999985,71.216934000000037],[-71.234726000000023,71.212769000000037],[-71.324722000000008,71.177765000000136],[-71.340560999999866,71.170532000000094],[-71.342772999999909,71.166382000000112],[-71.346114999999941,71.155823000000055],[-71.349441999999897,71.149428999999998],[-71.415832999999907,71.093323000000112],[-71.452224999999999,71.068054000000132],[-71.46444699999995,71.062484999999981],[-71.470275999999956,71.061370999999951],[-71.48971599999993,71.0619200000001],[-71.551102000000014,71.064697000000024],[-71.608336999999949,71.068603999999993],[-71.640839000000028,71.073883000000137],[-71.714447000000007,71.088043000000084],[-71.812499999999943,71.104156000000103],[-71.848891999999921,71.108321999999987],[-71.868880999999874,71.109420999999998],[-71.890288999999882,71.109420999999998],[-71.910827999999924,71.107758000000047],[-72.069457999999997,71.075271999999984],[-72.08555599999994,71.070267000000115],[-72.09973100000002,71.063873000000058],[-72.110275000000001,71.052200000000028],[-72.113892000000021,71.047211000000061],[-72.114440999999999,71.043594000000098],[-72.113326999999913,71.037490999999989],[-72.107223999999974,71.030272999999966],[-72.09973100000002,71.020263999999941],[-72.101944000000003,71.016098000000056],[-72.165557999999919,70.968048000000067],[-72.179717999999923,70.962204000000042],[-72.200286999999946,70.961105000000032],[-72.235001000000011,70.961928999999998],[-72.261123999999995,70.959152000000131],[-72.27806099999998,70.955261000000064],[-72.290557999999976,70.951096000000064],[-72.297226000000023,70.947204999999997],[-72.317504999999983,70.930267000000072],[-72.319457999999997,70.925812000000064],[-72.317504999999983,70.918320000000108],[-72.31138599999997,70.911102000000085],[-72.313889000000017,70.899719000000061],[-72.320557000000008,70.888321000000076],[-72.325561999999877,70.882477000000051],[-72.334166999999979,70.878585999999984],[-72.514724999999999,70.844436999999971],[-72.534438999999907,70.841933999999981],[-72.653609999999958,70.82777400000009],[-72.654174999999896,70.820831000000112],[-72.511397999999872,70.827209000000039],[-72.476944000000003,70.833328000000051],[-72.401108000000022,70.849716000000114],[-72.356110000000001,70.860535000000027],[-72.302779999999927,70.867203000000018],[-72.264175000000023,70.866652999999985],[-72.25,70.863876000000062],[-72.184722999999963,70.844711000000075],[-72.172225999999966,70.840546000000074],[-72.16361999999998,70.83638000000002],[-72.162215999999887,70.829987000000017],[-72.363327000000027,70.686096000000134],[-72.381942999999978,70.677200000000028],[-72.459441999999967,70.65387000000004],[-72.475829999999917,70.649429000000112],[-72.499435000000005,70.646652000000017],[-72.542496000000028,70.644714000000079],[-72.578063999999983,70.641373000000044],[-72.597778000000005,70.63859599999995],[-72.609160999999972,70.636658000000011],[-72.615828999999962,70.633331000000055],[-72.623321999999973,70.628036000000009],[-72.569457999999884,70.609985000000052],[-72.551666000000012,70.608032000000094],[-72.503066999999874,70.629973999999947],[-72.490554999999972,70.634155000000021],[-72.371932999999956,70.654984000000013],[-72.342223999999931,70.662200999999925],[-72.326110999999912,70.667206000000022],[-72.306380999999988,70.677475000000015],[-72.277495999999871,70.698028999999963],[-72.264724999999942,70.70915199999996],[-72.248610999999983,70.726653999999996],[-72.245834000000002,70.733046999999999],[-72.236937999999896,70.743866000000025],[-72.229172000000005,70.749420000000043],[-72.210555999999997,70.758040999999935],[-72.185546999999929,70.76638800000012],[-72.155838000000017,70.773605000000032],[-72.136123999999995,70.776093000000003],[-72.004729999999995,70.786925999999994],[-71.896956999999929,70.80693100000002],[-71.818893000000003,70.823044000000039],[-71.689163000000008,70.850266000000147],[-71.543883999999991,70.872481999999991],[-71.354445999999939,70.882750999999985],[-71.287506000000008,70.906097000000045],[-71.289169000000015,70.908875000000023],[-71.289444000000003,70.913605000000075],[-71.208343999999954,71.004990000000078],[-71.185546999999872,71.019439999999975],[-71.162216000000001,71.028320000000008],[-70.895553999999947,71.099716000000058],[-70.836120999999935,71.114426000000037],[-70.799727999999959,71.118866000000025],[-70.771666999999979,71.118042000000059],[-70.755568999999923,71.11554000000001],[-70.724715999999944,71.10443099999992],[-70.635559000000001,71.072220000000016],[-70.613891999999964,71.062194999999917],[-70.604720999999927,71.056366000000082],[-70.601669000000015,71.053864000000033],[-70.591949,71.042480000000126],[-70.514724999999942,70.940536000000066],[-70.512511999999958,70.926085999999998],[-70.514450000000011,70.921097000000032],[-70.519729999999981,70.913879000000009],[-70.553604000000007,70.894989000000066],[-70.58944699999995,70.876083000000051],[-70.678878999999995,70.840546000000074],[-70.740828999999906,70.75471500000009],[-70.746947999999918,70.745529000000147],[-70.773330999999985,70.734420999999998],[-70.798888999999917,70.725540000000024],[-70.872498000000007,70.703872999999987],[-70.891112999999962,70.698868000000118],[-70.965835999999967,70.684143000000006],[-71.024445000000014,70.674987999999928],[-71.055267000000015,70.669144000000131],[-71.08277899999996,70.661652000000004],[-71.100554999999929,70.654984000000013],[-71.108611999999994,70.649993999999992],[-71.118056999999965,70.638885000000073],[-71.128051999999968,70.62052900000009],[-71.129439999999988,70.614151000000106],[-71.134445000000028,70.602767999999912],[-71.139998999999932,70.596374999999966],[-71.147780999999952,70.591095000000109],[-71.160277999999948,70.586928999999998],[-71.175277999999992,70.583602999999982],[-71.191665999999998,70.58248900000001],[-71.224715999999944,70.582214000000135],[-71.281676999999888,70.584152000000074],[-71.312499999999943,70.587204000000042],[-71.34584000000001,70.591660000000104],[-71.389724999999942,70.600540000000137],[-71.407501000000025,70.603043000000127],[-71.422775000000001,70.604980000000012],[-71.461944999999957,70.60775799999999],[-71.558608999999933,70.609421000000111],[-71.592772999999966,70.606934000000024],[-71.595550999999944,70.603867000000093],[-71.595839999999953,70.600540000000137],[-71.592498999999918,70.589706000000092],[-71.586670000000026,70.581665000000044],[-71.583892999999932,70.576096000000007],[-71.580291999999986,70.564697000000137],[-71.581954999999994,70.551376000000005],[-71.583618000000001,70.546371000000136],[-71.588057999999933,70.542755000000056],[-71.74360699999994,70.466933999999981],[-71.803054999999972,70.428314000000057],[-71.763061999999934,70.427200000000084],[-71.748046999999985,70.425811999999951],[-71.736389000000031,70.423035000000084],[-71.727218999999991,70.417479999999955],[-71.728058000000033,70.410538000000088],[-71.731673999999998,70.397217000000126],[-71.746384000000035,70.3477630000001],[-71.75556899999998,70.329162999999994],[-71.763061999999934,70.323318000000086],[-71.783065999999963,70.313873000000001],[-71.816665999999941,70.303040000000067],[-71.844161999999983,70.29664600000001],[-71.849730999999906,70.290817000000004],[-71.836944999999957,70.289978000000019],[-71.806945999999868,70.295822000000044],[-71.748046999999985,70.309708000000001],[-71.733611999999937,70.313873000000001],[-71.686385999999914,70.355820000000108],[-71.674712999999997,70.36970500000001],[-71.641678000000013,70.444977000000108],[-71.640288999999996,70.450546000000088],[-71.543335000000013,70.514708999999982],[-71.525283999999942,70.524704000000099],[-71.510009999999966,70.535812000000078],[-71.502501999999936,70.546096999999975],[-71.50167799999997,70.55304000000001],[-71.503341999999975,70.56053199999991],[-71.507506999999976,70.569153000000028],[-71.511672999999973,70.573318000000029],[-71.506957999999941,70.57638500000013],[-71.495543999999938,70.578873000000101],[-71.435271999999998,70.578598000000113],[-71.420273000000009,70.57748400000014],[-71.397781000000009,70.574432000000002],[-71.25306699999993,70.549713000000054],[-71.184998000000007,70.538040000000024],[-71.17582699999997,70.535812000000078],[-71.170272999999952,70.533324999999991],[-71.167769999999905,70.531937000000084],[-71.162506000000008,70.525269000000094],[-71.162216000000001,70.520537999999988],[-71.260558999999887,70.377762000000132],[-71.322509999999966,70.312759000000028],[-71.321670999999981,70.30664100000007],[-71.318343999999968,70.299988000000099],[-71.301101999999958,70.284987999999998],[-71.288894999999968,70.280822999999998],[-71.279998999999975,70.274993999999936],[-71.276947000000007,70.268326000000002],[-71.278335999999854,70.262771999999984],[-71.285278000000005,70.251388999999961],[-71.289169000000015,70.246094000000085],[-71.316955999999948,70.218596999999988],[-71.363051999999868,70.182204999999954],[-71.43472300000002,70.126923000000033],[-71.485275000000001,70.088318000000072],[-71.498046999999929,70.080551000000128],[-71.523055999999997,70.052200000000028],[-71.532776000000013,70.038589000000059],[-71.539168999999958,70.026382000000126],[-71.541107000000011,70.022217000000126],[-71.535827999999924,70.019714000000135],[-71.52806099999998,70.020263999999997],[-71.518065999999976,70.024993999999992],[-71.500290000000007,70.038315000000125],[-71.493606999999997,70.050537000000134],[-71.475829999999974,70.068054000000132],[-71.438048999999978,70.086655000000007],[-71.393616000000009,70.104430999999977],[-71.366652999999985,70.111923000000104],[-71.331680000000006,70.128585999999984],[-71.210555999999997,70.262206999999933],[-71.208892999999989,70.267761000000121],[-71.21305799999999,70.272491000000002],[-71.218886999999995,70.276382000000069],[-71.229720999999984,70.281097000000102],[-71.231948999999929,70.294983000000059],[-71.171660999999972,70.368042000000059],[-71.135833999999932,70.410538000000088],[-71.093062999999972,70.460541000000035],[-71.030563000000029,70.540543000000014],[-71.049987999999928,70.546371000000136],[-71.053054999999972,70.55304000000001],[-71.049438000000009,70.558868000000075],[-71.005843999999968,70.61692800000003],[-70.997222999999963,70.625808999999947],[-70.968886999999995,70.63220200000012],[-70.913054999999986,70.637771999999984],[-70.771117999999944,70.668869000000086],[-70.611937999999952,70.723602000000085],[-70.421660999999858,70.772217000000126],[-70.396956999999986,70.778320000000065],[-70.365279999999927,70.782486000000006],[-70.324721999999952,70.785812000000021],[-70.255004999999983,70.793868999999972],[-70.228881999999942,70.797211000000118],[-70.075012000000015,70.83027600000014],[-69.988051999999982,70.853592000000049],[-69.915833000000021,70.877472000000012],[-69.904723999999931,70.881363000000079],[-69.892775999999913,70.883331000000055],[-69.87388599999997,70.883331000000055],[-69.865279999999927,70.882477000000051],[-69.833618000000001,70.87692300000009],[-69.78443900000002,70.864700000000028],[-69.771117999999944,70.857483000000116],[-69.770554000000004,70.856094000000098],[-69.772506999999962,70.85054000000008],[-69.795837000000006,70.820541000000048],[-69.808884000000035,70.81109600000002],[-69.879439999999931,70.768051000000071],[-69.915557999999919,70.74914600000011],[-69.965285999999935,70.727767999999969],[-70.073897999999929,70.687484999999924],[-70.084732000000031,70.683594000000028],[-70.121658000000025,70.67164600000001],[-70.21055599999994,70.646103000000096],[-70.225554999999929,70.641936999999984],[-70.244995000000017,70.638321000000133],[-70.277221999999995,70.636107999999979],[-70.33805799999999,70.637496999999996],[-70.353332999999964,70.638885000000073],[-70.407775999999956,70.638885000000073],[-70.423324999999977,70.636932000000115],[-70.454726999999991,70.627762000000075],[-70.473052999999993,70.617203000000018],[-70.476943999999946,70.612197999999978],[-70.478881999999999,70.606644000000017],[-70.460555999999997,70.574158000000068],[-70.442764000000011,70.561920000000043],[-70.424164000000019,70.551926000000037],[-70.411391999999978,70.542205999999908],[-70.404723999999931,70.536377000000073],[-70.400283999999999,70.530273000000079],[-70.397507000000019,70.524155000000121],[-70.401672000000019,70.519150000000081],[-70.407775999999956,70.514160000000004],[-70.423324999999977,70.506943000000092],[-70.467223999999987,70.493866000000082],[-70.482223999999917,70.490540000000067],[-70.490829000000019,70.486649],[-70.494445999999982,70.484984999999995],[-70.49610899999999,70.479430999999977],[-70.488892000000021,70.476929000000098],[-70.477782999999988,70.47554000000008],[-70.459166999999979,70.47554000000008],[-70.441375999999934,70.477203000000031],[-70.309722999999963,70.498031999999967],[-70.316665999999998,70.528594999999939],[-70.320007000000032,70.536926000000051],[-70.331679999999949,70.548599000000081],[-70.348617999999931,70.559707999999944],[-70.371108999999933,70.573608000000036],[-70.344451999999933,70.613037000000134],[-70.158339999999953,70.615540000000124],[-70.092498999999975,70.612197999999978],[-70.023330999999985,70.610535000000084],[-69.99221799999998,70.645828000000051],[-69.987777999999935,70.649993999999992],[-69.978607000000011,70.653320000000008],[-69.875823999999909,70.677200000000028],[-69.775832999999977,70.682205000000067],[-69.651397999999972,70.725540000000024],[-69.649169999999913,70.731094000000041],[-69.644729999999981,70.741088999999931],[-69.638610999999969,70.746933000000126],[-69.619995000000017,70.758040999999935],[-69.569167999999934,70.771927000000119],[-69.53832999999986,70.778595000000109],[-69.469727000000034,70.790543000000127],[-69.451401000000033,70.791931000000034],[-69.242766999999958,70.782486000000006],[-69.226943999999946,70.77998400000007],[-69.215012000000002,70.776093000000003],[-69.190552000000025,70.766937000000041],[-69.131942999999978,70.737488000000099],[-68.958053999999947,70.688582999999994],[-68.928329000000019,70.681656000000089],[-68.664444000000003,70.626923000000147],[-68.61860699999994,70.62052900000009],[-68.582503999999972,70.617751999999996],[-68.549727999999959,70.613602000000014],[-68.515288999999996,70.609146000000067],[-68.484726000000023,70.604156000000046],[-68.390563999999983,70.582214000000135],[-68.325561999999934,70.566665999999941],[-68.313889000000017,70.563034000000016],[-68.293610000000001,70.551376000000005],[-68.284164000000033,70.540543000000014],[-68.279174999999952,70.531097000000045],[-68.279449,70.519440000000088],[-68.281386999999938,70.51249700000011],[-68.289718999999991,70.500000000000114],[-68.296111999999994,70.494141000000127],[-68.31361400000003,70.484711000000061],[-68.331680000000006,70.476379000000065],[-68.371932999999956,70.455826000000002],[-68.446654999999964,70.413040000000137],[-68.451400999999976,70.409424000000115],[-68.453613000000018,70.403870000000097],[-68.451950000000011,70.392212000000086],[-68.449158000000011,70.384155000000078],[-68.448607999999979,70.375259000000142],[-68.451675000000023,70.372482000000048],[-68.458618000000001,70.369431000000077],[-68.485000999999954,70.367752000000053],[-68.495270000000005,70.368590999999981],[-68.506393000000003,70.371093999999971],[-68.519454999999994,70.37414600000011],[-68.561385999999914,70.389709000000096],[-68.571121000000005,70.393326000000059],[-68.575835999999924,70.396102999999982],[-68.580840999999964,70.404160000000104],[-68.580565999999976,70.415817000000061],[-68.569732999999985,70.426376000000118],[-68.556106999999997,70.435257000000036],[-68.549987999999985,70.440811000000053],[-68.548049999999932,70.447754000000032],[-68.556945999999982,70.461929000000112],[-68.564712999999927,70.466385000000059],[-68.582503999999972,70.464432000000102],[-68.621657999999968,70.45277400000009],[-68.650833000000034,70.441925000000026],[-68.654174999999896,70.439148000000102],[-68.661666999999909,70.431090999999924],[-68.666655999999989,70.422211000000118],[-68.670273000000009,70.408874999999966],[-68.670836999999949,70.404160000000104],[-68.664444000000003,70.384994999999947],[-68.657226999999978,70.375809000000004],[-68.651947000000007,70.359420999999941],[-68.650557999999933,70.349991000000045],[-68.651107999999965,70.345824999999991],[-68.653884999999946,70.341369999999984],[-68.65695199999999,70.33859300000006],[-68.664169000000015,70.335541000000148],[-68.682495000000017,70.329437000000098],[-68.735549999999876,70.317764000000068],[-68.784164000000033,70.310256999999979],[-68.906951999999933,70.293869000000086],[-68.941375999999991,70.29304500000012],[-69.071945000000028,70.28804000000008],[-69.235001000000011,70.270264000000111],[-69.283889999999985,70.264709000000039],[-69.473891999999978,70.238876000000062],[-69.639998999999875,70.204712000000086],[-69.668059999999969,70.198593000000017],[-69.823897999999986,70.155823000000112],[-69.829453000000001,70.15415999999999],[-69.836120999999991,70.150543000000027],[-69.839721999999938,70.144150000000081],[-69.840835999999911,70.141937000000098],[-69.839721999999938,70.134430000000009],[-69.843062999999972,70.121917999999994],[-69.848891999999978,70.116088999999988],[-69.856948999999929,70.110809000000074],[-69.875823999999909,70.101929000000041],[-69.917769999999962,70.085541000000035],[-69.946655000000021,70.076385000000073],[-69.96833799999996,70.074706999999933],[-69.990279999999927,70.074432000000115],[-70.037780999999995,70.072220000000073],[-70.073059000000001,70.069153000000142],[-70.086120999999991,70.066666000000055],[-70.096953999999982,70.063309000000118],[-70.141387999999949,70.043319999999994],[-70.174438000000009,70.034987999999998],[-70.182769999999891,70.031096999999932],[-70.185546999999985,70.028046000000131],[-70.182769999999891,70.021378000000141],[-70.169997999999964,70.014434999999992],[-70.15449499999994,70.015160000000094],[-70.147506999999962,70.015488000000062],[-70.139502999999934,70.017159000000106],[-70.113327000000027,70.02388000000002],[-70.103058000000033,70.028595000000053],[-70.089995999999985,70.036102000000028],[-70.088897999999915,70.038315000000125],[-70.077498999999989,70.049712999999997],[-70.066955999999948,70.053589000000045],[-70.049987999999871,70.057205000000067],[-70.028610000000015,70.058868000000018],[-70.020279000000016,70.058594000000085],[-69.901107999999965,70.048325000000034],[-69.892226999999934,70.045822000000101],[-69.884734999999921,70.042755],[-69.853607000000011,70.029709000000025],[-69.83555599999994,70.020263999999997],[-69.827498999999989,70.014434999999992],[-69.820846999999958,70.008041000000105],[-69.813048999999921,69.99859600000002],[-69.812209999999993,69.991089000000102],[-69.815552000000025,69.984711000000118],[-69.822509999999909,69.981659000000036],[-69.837508999999955,69.978317000000118],[-69.851395000000025,69.978317000000118],[-69.897507000000019,69.983047000000113],[-69.93638599999997,69.98942599999998],[-69.963332999999977,69.991653000000042],[-69.981383999999991,69.991653000000042],[-70.00306699999993,69.989700000000084],[-70.057494999999903,69.981093999999985],[-70.098891999999921,69.973602000000085],[-70.164443999999889,69.961655000000121],[-70.218886999999938,69.941650000000095],[-70.223327999999981,69.938034000000016],[-70.223891999999978,69.929703000000131],[-70.218062999999972,69.925262000000032],[-70.216110000000015,69.92053199999998],[-70.220276000000013,69.915543000000014],[-70.228607000000011,69.911651999999947],[-70.291381999999999,69.889435000000105],[-70.384170999999981,69.860535000000027],[-70.401397999999972,69.859146000000067],[-70.422225999999966,69.860809000000131],[-70.432495000000017,69.862487999999985],[-70.443877999999927,69.860535000000027],[-70.450561999999991,69.857208000000071],[-70.467223999999987,69.844711000000132],[-70.468612999999948,69.842758000000003],[-70.460280999999952,69.841660000000104],[-70.436935000000005,69.839431999999931],[-70.412215999999944,69.837769000000037],[-70.396118000000001,69.837203999999986],[-70.384170999999981,69.837203999999986],[-70.372771999999884,69.838318000000129],[-70.355834999999956,69.841370000000097],[-70.343613000000005,69.845260999999937],[-70.255279999999914,69.879149999999981],[-70.192764000000011,69.907761000000107],[-70.136948000000018,69.933318999999983],[-70.126098999999954,69.940536000000122],[-70.098617999999988,69.953049000000021],[-70.076675000000023,69.958037999999988],[-70.059433000000013,69.959716999999955],[-69.978607000000011,69.964157],[-69.941939999999988,69.963043000000027],[-69.925003000000004,69.961105000000089],[-69.896956999999986,69.956100000000049],[-69.868057000000022,69.953323000000125],[-69.837508999999955,69.952773999999977],[-69.813109999999995,69.955429000000095],[-69.777221999999995,69.963608000000022],[-69.750838999999928,69.972488000000055],[-69.745543999999938,69.974701000000039],[-69.738051999999925,69.981369000000029],[-69.735549999999932,69.985535000000084],[-69.735275000000001,69.990539999999953],[-69.739440999999999,70.001389000000017],[-69.744155999999975,70.008041000000105],[-69.760009999999966,70.017487000000074],[-69.769454999999937,70.021378000000141],[-69.781112999999948,70.024993999999992],[-69.795546999999999,70.031661999999983],[-69.804717999999866,70.038879000000065],[-69.808884000000035,70.049712999999997],[-69.806945999999982,70.055251999999996],[-69.792770000000019,70.080826000000002],[-69.790282999999931,70.084991000000002],[-69.783889999999985,70.089432000000102],[-69.740829000000019,70.114151000000049],[-69.675826999999913,70.139708999999982],[-69.653335999999911,70.14498900000001],[-69.426101999999958,70.176086000000112],[-69.404175000000009,70.177765000000136],[-69.21945199999999,70.188309000000004],[-69.18249499999996,70.187195000000031],[-69.169997999999907,70.18609600000002],[-69.154723999999987,70.183318999999983],[-69.011123999999995,70.178314000000114],[-68.936934999999949,70.193039000000056],[-68.859160999999858,70.203048999999965],[-68.839172000000019,70.203598000000056],[-68.697220000000016,70.203873000000101],[-68.682770000000005,70.203598000000056],[-68.678329000000019,70.202484000000084],[-68.676391999999964,70.201660000000118],[-68.647507000000019,70.158324999999991],[-68.642501999999979,70.149429000000055],[-68.645003999999915,70.145264000000054],[-68.741378999999995,70.065262000000075],[-68.746658000000025,70.062484999999981],[-68.783066000000019,70.044433999999967],[-68.800551999999982,70.037490999999989],[-68.813323999999966,70.032760999999994],[-68.868056999999965,70.016937000000041],[-68.900283999999942,70.011658000000068],[-68.954453000000001,70.00471500000009],[-69.088608000000022,69.974991000000045],[-69.15306099999998,69.953049000000021],[-69.313109999999938,69.882294000000059],[-69.346114999999998,69.855545000000006],[-69.370543999999938,69.83998100000008],[-69.398055999999997,69.828598000000056],[-69.426940999999943,69.819716999999969],[-69.439712999999927,69.816376000000105],[-69.460555999999997,69.813309000000004],[-69.474716000000001,69.813599000000011],[-69.516953000000001,69.819992000000127],[-69.543335000000013,69.826934999999935],[-69.565826000000015,69.834152000000074],[-69.580841000000021,69.836928999999998],[-69.683884000000035,69.83998100000008],[-69.713897999999972,69.83998100000008],[-69.744995000000017,69.837769000000037],[-69.760009999999966,69.834991000000002],[-69.770844000000011,69.831940000000031],[-69.805832000000009,69.819992000000127],[-69.827788999999996,69.809418000000107],[-69.844161999999926,69.800261999999975],[-69.855834999999956,69.793593999999985],[-69.87249799999995,69.781096999999988],[-69.998046999999985,69.669983000000116],[-70,69.66415400000011],[-70.000838999999985,69.656097000000102],[-70.00140399999998,69.622757000000036],[-69.998885999999914,69.616089000000102],[-69.990554999999915,69.614990000000091],[-69.944442999999978,69.649719000000005],[-69.816956000000005,69.724426000000051],[-69.810821999999973,69.72886699999998],[-69.808334000000002,69.733046999999999],[-69.808334000000002,69.73803700000002],[-69.81471299999987,69.75471500000009],[-69.815001999999993,69.760269000000108],[-69.814163000000008,69.763884999999959],[-69.805557000000022,69.772491000000059],[-69.783066000000019,69.785812000000021],[-69.764724999999999,69.795531999999923],[-69.754455999999948,69.799712999999997],[-69.741942999999992,69.803589000000102],[-69.730835000000013,69.806090999999981],[-69.713333000000034,69.807479999999998],[-69.643065999999976,69.810806000000014],[-69.602782999999988,69.809708000000114],[-69.572783999999899,69.80442800000003],[-69.561110999999983,69.799988000000042],[-69.545273000000009,69.794434000000024],[-69.489989999999921,69.779709000000082],[-69.45666499999993,69.775818000000015],[-69.446655000000021,69.775543000000027],[-69.409163999999976,69.776381999999955],[-69.395844000000011,69.777771000000143],[-69.384734999999921,69.780823000000055],[-69.378051999999968,69.783875000000023],[-69.313889000000017,69.816376000000105],[-69.291381999999999,69.831099999999935],[-69.279448999999943,69.84248400000007],[-69.26916499999993,69.852768000000083],[-69.253066999999987,69.862198000000149],[-69.200561999999877,69.883606000000043],[-69.188048999999978,69.887771999999984],[-69.101943999999946,69.916091999999992],[-69.076674999999966,69.923874000000126],[-68.945540999999992,69.949997000000053],[-68.933884000000035,69.951096000000064],[-68.870270000000005,69.953049000000021],[-68.801940999999886,69.952208999999982],[-68.76666299999988,69.948868000000118],[-68.751953000000015,69.946639999999945],[-68.622817999999938,69.98240699999991],[-68.471664000000033,70.046646000000067],[-68.338333000000034,70.064148000000102],[-68.241378999999995,70.095825000000048],[-68.221389999999985,70.102768000000026],[-68.207229999999981,70.109420999999998],[-68.196380999999974,70.119431000000077],[-68.193603999999993,70.123596000000077],[-68.203338999999971,70.128860000000088],[-68.229445999999939,70.135269000000108],[-68.268616000000009,70.13749700000011],[-68.290832999999907,70.137207000000046],[-68.308333999999945,70.135269000000108],[-68.320557000000008,70.135543999999982],[-68.333618000000001,70.139160000000004],[-68.349166999999852,70.168045000000063],[-68.348617999999988,70.172760000000096],[-68.345275999999956,70.188034000000016],[-68.318618999999956,70.218596999999988],[-68.31361400000003,70.222214000000122],[-68.160004000000015,70.282761000000107],[-68.039443999999946,70.301376000000005],[-67.808043999999938,70.262496999999996],[-67.794723999999974,70.258881000000088],[-67.774170000000026,70.250549000000092],[-67.768065999999976,70.243866000000139],[-67.760009999999909,70.229706000000022],[-67.740554999999858,70.218872000000147],[-67.697219999999959,70.202209000000096],[-67.674437999999952,70.193587999999977],[-67.648055999999997,70.18609600000002],[-67.591674999999952,70.165267999999969],[-67.575561999999934,70.158324999999991],[-67.556945999999982,70.149155000000121],[-67.528335999999967,70.133881000000031],[-67.412215999999944,70.068878000000097],[-67.404723999999987,70.06442300000009],[-67.378052000000025,70.048035000000027],[-67.242492999999968,69.958327999999995],[-67.222778000000005,69.943863000000079],[-67.216949,69.937759000000028],[-67.152495999999985,69.817764000000011],[-67.148620999999991,69.810257000000092],[-67.127776999999867,69.726929000000041],[-67.193603999999993,69.721924000000001],[-67.371384000000035,69.714432000000045],[-67.391113000000018,69.713882000000012],[-67.406951999999876,69.714705999999978],[-67.436110999999926,69.719147000000078],[-67.499999999999943,69.731833999999992],[-67.602492999999924,69.750275000000101],[-67.761123999999995,69.778595000000109],[-67.77305599999994,69.779434000000094],[-67.81082200000003,69.778869999999927],[-67.99610899999999,69.774429000000055],[-68.013061999999991,69.771927000000119],[-68.087783999999999,69.756104000000107],[-68.208054000000004,69.715546000000018],[-68.216659999999933,69.71026599999999],[-68.222777999999948,69.704711999999972],[-68.228606999999897,69.691360000000145],[-68.230285999999978,69.684418000000051],[-68.24110399999995,69.674987999999985],[-68.31138599999997,69.633331000000112],[-68.323623999999995,69.628860000000032],[-68.329453000000001,69.627762000000132],[-68.352782999999988,69.626923000000147],[-68.496383999999978,69.625809000000004],[-68.518065999999919,69.626083000000108],[-68.620269999999891,69.637206999999989],[-68.64527899999996,69.641098000000056],[-68.839995999999985,69.616089000000102],[-68.980834999999956,69.589157],[-69.188599000000011,69.54193099999992],[-69.201110999999912,69.538040000000024],[-69.220001000000025,69.535812000000078],[-69.325012000000015,69.532486000000063],[-69.342772999999966,69.532486000000063],[-69.364165999999955,69.53776600000009],[-69.410277999999948,69.546097000000032],[-69.426940999999943,69.548035000000141],[-69.549438000000009,69.560531999999967],[-69.630829000000006,69.56721500000009],[-69.688889000000017,69.569443000000092],[-69.737777999999992,69.568329000000062],[-69.75111400000003,69.56721500000009],[-69.838608000000022,69.558868000000132],[-70.030837999999903,69.536102000000085],[-70.028610000000015,69.530823000000112],[-70.025283999999999,69.527481000000023],[-70.011123999999995,69.521103000000039],[-69.995543999999995,69.517211999999972],[-69.964721999999995,69.513885000000016],[-69.899444999999957,69.507217000000082],[-69.885833999999988,69.507217000000082],[-69.866942999999878,69.509430000000009],[-69.844161999999926,69.517487000000017],[-69.824448000000018,69.527205999999978],[-69.815826000000015,69.530548000000124],[-69.803878999999995,69.534988000000112],[-69.789443999999946,69.538589000000002],[-69.732773000000009,69.545258000000047],[-69.698607999999922,69.548324999999977],[-69.68499799999995,69.548874000000126],[-69.663329999999917,69.548324999999977],[-69.613891999999908,69.54304500000012],[-69.506957999999997,69.529433999999924],[-69.449996999999883,69.518875000000094],[-69.375823999999909,69.509720000000016],[-69.343062999999972,69.505828999999949],[-69.323333999999988,69.505264000000125],[-69.299987999999928,69.506103999999993],[-69.206664999999987,69.514998999999989],[-69.151671999999905,69.520264000000054],[-69.005844000000025,69.535812000000078],[-68.995270000000005,69.539703000000145],[-68.982223999999974,69.547211000000004],[-68.971389999999985,69.555817000000104],[-68.957229999999981,69.560531999999967],[-68.926101999999901,69.566665999999998],[-68.76945499999988,69.587494000000049],[-68.752501999999879,69.589431999999988],[-68.6683349999999,69.590820000000065],[-68.611938000000009,69.587494000000049],[-68.544723999999917,69.579987000000131],[-68.528060999999923,69.577208999999925],[-68.317229999999881,69.530273000000079],[-68.293334999999956,69.523604999999918],[-68.181945999999982,69.49832200000003],[-68.02555799999999,69.466095000000053],[-67.982223999999974,69.457489000000123],[-67.946105999999929,69.454712000000029],[-67.926392000000021,69.454163000000108],[-67.893340999999964,69.454437000000041],[-67.874161000000015,69.456649999999968],[-67.861937999999952,69.460266000000047],[-67.840835999999967,69.469436999999971],[-67.819457999999941,69.476929000000098],[-67.806945999999868,69.480819999999994],[-67.792220999999984,69.48414600000001],[-67.604996000000028,69.478043000000071],[-67.562209999999993,69.471924000000058],[-67.511672999999973,69.466095000000053],[-67.475829999999974,69.463042999999914],[-67.432770000000005,69.463318000000129],[-67.305266999999958,69.467209000000025],[-67.258347000000015,69.467484000000013],[-67.210006999999962,69.46138000000002],[-67.180832000000009,69.454712000000029],[-66.921111999999994,69.379150000000095],[-66.795546999999885,69.341094999999996],[-66.785277999999948,69.337204000000099],[-66.774444999999957,69.331940000000088],[-66.767226999999934,69.327484000000027],[-66.694992000000013,69.281661999999983],[-66.682769999999948,69.270264000000111],[-66.650283999999942,69.236374000000012],[-66.645844000000011,69.224991000000045],[-66.646666999999979,69.203598000000113],[-66.658614999999941,69.188309000000004],[-66.668335000000013,69.178314000000114],[-66.689437999999939,69.161926000000051],[-66.720001000000025,69.144150000000081],[-66.730559999999969,69.138885000000016],[-66.75306699999993,69.129424999999969],[-66.758620999999948,69.128036000000122],[-66.776107999999965,69.128860000000088],[-66.837219000000005,69.135818000000086],[-66.84944200000001,69.138321000000076],[-66.912780999999995,69.154984000000127],[-66.928328999999906,69.164153999999996],[-66.953339000000028,69.172211000000004],[-66.965285999999992,69.174423000000047],[-66.996947999999975,69.177764999999965],[-67.132767000000001,69.182479999999998],[-67.371932999999956,69.184417999999937],[-67.385558999999944,69.183868000000132],[-67.414718999999991,69.178314000000114],[-67.427215999999987,69.174423000000047],[-67.458892999999932,69.162491000000102],[-67.466109999999958,69.160812000000078],[-67.50556899999998,69.157486000000063],[-67.521117999999944,69.15776100000005],[-67.648620999999991,69.166931000000091],[-67.676391999999964,69.169434000000081],[-67.864166000000012,69.221924000000115],[-68.18447900000001,69.308014000000014],[-68.209732000000031,69.311370999999951],[-68.221663999999976,69.312194999999917],[-68.232772999999952,69.311370999999951],[-68.251953000000015,69.309708000000057],[-68.285278000000005,69.304428000000144],[-68.31082200000003,69.298598999999967],[-68.327498999999989,69.296097000000088],[-68.344161999999983,69.294708000000071],[-68.355835000000013,69.294144000000131],[-68.375548999999921,69.294708000000071],[-68.464721999999938,69.301651000000049],[-68.675277999999992,69.322220000000016],[-68.740279999999984,69.330551000000128],[-68.811935000000005,69.341933999999924],[-68.84445199999999,69.346100000000035],[-68.944716999999912,69.354980000000069],[-68.962783999999999,69.356369000000029],[-68.984436000000017,69.356934000000081],[-69.015015000000005,69.354980000000069],[-69.040282999999988,69.349716000000058],[-69.176665999999955,69.310806000000127],[-69.203063999999927,69.303040000000067],[-69.241378999999881,69.284149000000014],[-69.253890999999953,69.27526899999998],[-69.25778200000002,69.270264000000111],[-69.25167799999997,69.263610999999969],[-69.246947999999975,69.261107999999979],[-69.235001000000011,69.259720000000073],[-69.221938999999963,69.261658000000011],[-69.213057999999933,69.264709000000039],[-69.203339000000028,69.269989000000123],[-69.197768999999994,69.275542999999914],[-69.176392000000021,69.287490999999989],[-69.156386999999938,69.297484999999995],[-69.146118000000001,69.300537000000077],[-69.133330999999998,69.303314],[-69.013335999999981,69.327484000000027],[-68.956664999999873,69.331940000000088],[-68.941100999999946,69.332489000000066],[-68.921386999999868,69.331940000000088],[-68.658339999999896,69.300262000000089],[-68.537216000000001,69.285262999999986],[-68.504729999999995,69.280272999999966],[-68.330565999999919,69.27526899999998],[-68.251953000000015,69.27748100000008],[-68.230835000000013,69.277771000000087],[-68.198607999999979,69.274703999999986],[-68.172225999999966,69.269714000000079],[-68.159438999999963,69.266098000000056],[-68.14834599999989,69.261658000000011],[-68.139724999999885,69.257766999999944],[-68.088608000000022,69.228867000000093],[-68.083618000000001,69.225540000000137],[-68.077498999999875,69.21748400000007],[-68.081679999999949,69.211928999999998],[-68.091384999999946,69.205551000000071],[-68.103881999999999,69.202209000000096],[-68.129715000000033,69.197754000000089],[-68.163054999999929,69.199997000000053],[-68.263061999999991,69.211380000000077],[-68.410827999999924,69.221374999999966],[-68.549987999999985,69.226928999999984],[-68.643616000000009,69.229431000000034],[-68.664444000000003,69.228043000000127],[-68.689986999999917,69.223602000000028],[-68.839721999999938,69.214706000000092],[-68.923049999999989,69.220825000000104],[-68.967772999999966,69.221099999999979],[-68.948333999999875,69.214156999999943],[-68.93971299999987,69.211928999999998],[-68.913054999999986,69.20748900000001],[-68.862777999999992,69.201934999999992],[-68.80749499999996,69.198868000000061],[-68.788054999999986,69.198318000000029],[-68.767226999999991,69.199707000000046],[-68.737777999999992,69.203598000000113],[-68.704726999999991,69.209152000000074],[-68.65695199999999,69.210541000000092],[-68.618057000000022,69.209152000000074],[-68.515015000000005,69.20248400000014],[-68.502501999999993,69.198593000000074],[-68.505279999999914,69.195815999999979],[-68.513901000000033,69.191925000000083],[-68.690551999999968,69.141098],[-68.707229999999925,69.138321000000076],[-68.872771999999998,69.120529000000033],[-68.998046999999985,69.103591999999992],[-68.961670000000026,69.103867000000037],[-68.929717999999923,69.100266000000147],[-68.926940999999943,69.098328000000038],[-68.926666000000012,69.079987000000017],[-68.957779000000016,69.005264000000011],[-68.958892999999989,69.003052000000139],[-68.969161999999926,68.993591000000038],[-68.994155999999919,68.982483000000002],[-69.006118999999956,68.978317000000118],[-69.018889999999885,68.975815000000068],[-69.028885000000002,68.971375000000023],[-69.025833000000034,68.968597000000045],[-69.017501999999979,68.966385000000002],[-69.005568999999923,68.964705999999978],[-68.998046999999985,68.964995999999985],[-68.973052999999993,68.970824999999991],[-68.962783999999999,68.974701000000039],[-68.946380999999917,68.982483000000002],[-68.930557000000022,68.992752000000053],[-68.920272999999952,69.00277699999998],[-68.89416499999993,69.044982999999945],[-68.89416499999993,69.050537000000134],[-68.892226999999991,69.062194999999974],[-68.889724999999999,69.066376000000048],[-68.881942999999865,69.07777400000009],[-68.879165999999941,69.081374999999923],[-68.872497999999894,69.084991000000002],[-68.858336999999892,69.088318000000129],[-68.753615999999965,69.109711000000061],[-68.471114999999998,69.166381999999999],[-68.412780999999939,69.176926000000037],[-68.381377999999927,69.175262000000032],[-68.351394999999968,69.171646000000123],[-68.178329000000019,69.14665199999996],[-68.089447000000007,69.126082999999994],[-67.725280999999939,69.032211000000132],[-67.715012000000002,69.029160000000104],[-67.708054000000004,69.024704000000042],[-67.705840999999964,69.01638800000012],[-67.721114999999941,69.009720000000129],[-67.974715999999944,68.9727630000001],[-68.029448999999943,68.971375000000023],[-68.058884000000035,68.973602000000085],[-68.211120999999935,68.991928000000087],[-68.241378999999995,68.996933000000126],[-68.268065999999976,69.00277699999998],[-68.314162999999951,69.010544000000095],[-68.335007000000019,69.009155000000078],[-68.535552999999879,68.984146000000123],[-68.548614999999984,68.982208000000014],[-68.552779999999984,68.977203000000145],[-68.554717999999923,68.971100000000035],[-68.556106999999997,68.964157],[-68.545272999999952,68.959717000000012],[-68.440552000000025,68.9727630000001],[-68.337509000000011,68.985809000000074],[-68.320281999999963,68.986374000000069],[-68.303054999999972,68.985809000000074],[-68.290557999999976,68.982208000000014],[-68.285278000000005,68.977478000000133],[-68.28443900000002,68.974701000000039],[-68.264175000000023,68.964705999999978],[-68.196945000000028,68.94999700000011],[-68.186661000000015,68.947754000000145],[-68.169448999999986,68.946930000000009],[-68.152221999999938,68.946930000000009],[-68.116104000000007,68.94747899999993],[-68.081679999999949,68.94747899999993],[-68.064163000000008,68.946091000000024],[-68.048339999999996,68.943863000000079],[-68.039992999999981,68.941360000000088],[-67.974715999999944,68.865265000000079],[-67.972778000000005,68.859146000000067],[-67.977492999999981,68.855545000000006],[-67.986938000000009,68.854431000000034],[-68.006118999999899,68.854979999999955],[-68.082229999999981,68.862487999999985],[-68.129165999999998,68.867751999999996],[-68.18360899999999,68.878586000000041],[-68.242217999999866,68.889984000000027],[-68.256119000000012,68.892212000000029],[-68.289444000000003,68.894989000000123],[-68.37388599999997,68.897217000000069],[-68.475280999999995,68.899429000000112],[-68.489990000000034,68.897491000000002],[-68.491668999999945,68.896652000000017],[-68.488892000000021,68.893326000000002],[-68.48582499999992,68.89027400000009],[-68.477218999999934,68.886932000000115],[-68.463333000000034,68.885544000000039],[-68.43249499999996,68.883331000000055],[-68.373046999999929,68.88220200000012],[-68.353606999999954,68.88108799999992],[-68.293059999999969,68.874984999999981],[-68.266662999999994,68.869980000000112],[-68.179717999999923,68.851928999999984],[-68.133895999999936,68.837203999999986],[-68.008347000000015,68.816666000000112],[-67.972778000000005,68.811920000000043],[-67.955565999999976,68.810257000000092],[-67.916945999999939,68.808318999999983],[-67.886672999999917,68.808868000000075],[-67.861389000000031,68.805542000000059],[-67.778335999999911,68.786102000000085],[-67.771941999999967,68.78276100000005],[-67.771392999999932,68.781372000000033],[-67.774718999999948,68.77915999999999],[-67.803329000000019,68.774155000000121],[-67.820006999999976,68.772766000000104],[-67.857772999999952,68.771378000000027],[-67.872771999999998,68.771652000000131],[-67.915008999999998,68.774155000000121],[-67.944442999999922,68.778046000000018],[-68.076110999999969,68.80192599999998],[-68.170836999999892,68.814697000000081],[-68.352218999999934,68.832488999999953],[-68.426392000000021,68.839157000000114],[-68.546660999999972,68.84664900000007],[-68.565551999999968,68.847214000000122],[-68.58805799999999,68.846374999999966],[-68.606109999999887,68.842758000000003],[-68.610549999999989,68.839157000000114],[-68.611663999999962,68.835815000000025],[-68.604445999999939,68.83137499999998],[-68.593886999999995,68.827484000000084],[-68.557769999999948,68.821380999999974],[-68.52694699999995,68.795258000000047],[-68.602492999999924,68.794983000000002],[-68.678878999999938,68.796646000000123],[-68.795273000000009,68.799423000000047],[-68.807220000000029,68.800261999999975],[-68.900283999999942,68.80720500000001],[-68.967498999999918,68.814697000000081],[-68.995270000000005,68.819153000000028],[-69.00389100000001,68.822220000000129],[-69.015015000000005,68.827209000000096],[-69.105835000000013,68.848602000000028],[-69.25111400000003,68.872481999999991],[-69.28083799999996,68.875809000000118],[-69.323058999999944,68.876648000000102],[-69.361938000000009,68.874146000000053],[-69.378051999999968,68.871368000000018],[-69.389998999999989,68.867476999999951],[-69.398055999999997,68.862198000000149],[-69.394454999999994,68.85775799999999],[-69.379990000000021,68.854979999999955],[-69.36082499999992,68.854431000000034],[-69.331679999999949,68.856934000000024],[-69.279448999999943,68.855255],[-69.245543999999882,68.851379000000122],[-69.185546999999985,68.842209000000082],[-69.171111999999994,68.838882000000126],[-69.162215999999944,68.835815000000025],[-69.152221999999938,68.828048999999965],[-69.153884999999946,68.827209000000096],[-69.163054999999986,68.826096000000007],[-69.229996000000028,68.827209000000096],[-69.294158999999922,68.831940000000031],[-69.315001999999993,68.831664999999987],[-69.357773000000009,68.829163000000108],[-69.368606999999997,68.827209000000096],[-69.375548999999978,68.824997000000053],[-69.382767000000001,68.819153000000028],[-69.383895999999993,68.816376000000105],[-69.381377999999984,68.814986999999917],[-69.37110899999999,68.812759000000142],[-69.193603999999993,68.804153000000042],[-68.971114999999998,68.791931000000091],[-68.959166999999923,68.789703000000145],[-68.944992000000013,68.786926000000051],[-68.942490000000021,68.784988000000112],[-68.196380999999974,68.706940000000145],[-68.049437999999952,68.681655999999975],[-68.044998000000021,68.678314000000057],[-68.046111999999937,68.676376000000062],[-68.087508999999955,68.629425000000083],[-68.094451999999933,68.627762000000132],[-68.34445199999999,68.628586000000098],[-68.56220999999988,68.651931999999988],[-68.621933000000013,68.655823000000055],[-68.657776000000013,68.656372000000147],[-68.680283000000031,68.65554800000001],[-68.747771999999941,68.649155000000064],[-68.777785999999935,68.643051000000014],[-68.89416499999993,68.607208000000014],[-68.902495999999985,68.603592000000106],[-68.900283999999942,68.603043000000014],[-68.835830999999985,68.589157],[-68.804169000000002,68.589980999999966],[-68.757674999999949,68.600646999999981],[-68.749343999999951,68.602654000000143],[-68.735001000000011,68.607314999999971],[-68.711165999999992,68.621147000000121],[-68.679992999999911,68.630814000000044],[-68.647507000000019,68.635544000000095],[-68.62860099999989,68.635544000000095],[-68.594161999999926,68.633605999999986],[-68.563048999999921,68.629425000000083],[-68.533324999999991,68.624985000000038],[-68.481383999999935,68.614990000000148],[-68.475280999999995,68.61303700000002],[-68.470276000000013,68.609146000000123],[-68.46945199999999,68.606369000000029],[-68.483321999999987,68.596939000000134],[-68.50389100000001,68.589980999999966],[-68.519454999999994,68.585815000000082],[-68.533889999999928,68.583878000000027],[-68.605834999999956,68.578872999999987],[-68.648345999999947,68.577773999999977],[-68.660004000000015,68.578872999999987],[-68.682883999999945,68.575211000000024],[-68.69506100000001,68.574379000000135],[-68.707053999999971,68.57337200000012],[-68.712387000000035,68.572044000000005],[-68.716064000000017,68.569382000000019],[-68.716727999999932,68.568047000000035],[-68.707053999999971,68.5660400000001],[-68.696724000000017,68.565207999999984],[-68.656113000000005,68.559708000000001],[-68.460007000000019,68.562195000000088],[-68.447220000000016,68.563599000000067],[-68.435271999999941,68.567490000000134],[-68.427215999999987,68.571930000000009],[-68.422774999999945,68.576096000000064],[-68.420272999999895,68.579711999999915],[-68.419997999999964,68.585266000000104],[-68.416397000000018,68.591369999999984],[-68.396117999999944,68.593048000000067],[-68.337783999999999,68.593323000000112],[-68.244445999999982,68.588043000000027],[-68.215560999999866,68.585541000000148],[-68.136672999999973,68.572220000000016],[-68.06534599999992,68.545822000000044],[-67.920273000000009,68.534424000000001],[-67.866942999999992,68.509720000000073],[-67.809158000000025,68.531097000000102],[-67.673049999999932,68.561096000000077],[-67.664169000000015,68.562759000000028],[-67.643615999999952,68.562759000000028],[-67.539443999999946,68.550812000000064],[-67.52555799999999,68.548598999999911],[-67.500838999999928,68.538315000000068],[-67.492217999999923,68.527206000000035],[-67.493056999999965,68.523604999999975],[-67.502228000000002,68.514999000000046],[-67.510559000000001,68.511382999999967],[-67.51916499999993,68.509155000000021],[-67.543059999999912,68.506103999999993],[-67.607773000000009,68.503876000000048],[-67.621658000000025,68.5],[-67.628052000000025,68.496368000000018],[-67.634734999999921,68.486649],[-67.621383999999978,68.384429999999952],[-67.618606999999997,68.381088000000034],[-67.612502999999947,68.379424999999912],[-67.603332999999907,68.378860000000088],[-67.59445199999999,68.381363000000079],[-67.551102000000014,68.414428999999984],[-67.548339999999996,68.440262000000132],[-67.549437999999896,68.443863000000022],[-67.555832000000009,68.455261000000007],[-67.511123999999938,68.483322000000101],[-67.426102000000014,68.494430999999963],[-67.335555999999997,68.49693300000007],[-67.31639100000001,68.496094000000085],[-67.232497999999964,68.480545000000006],[-67.224166999999966,68.47665400000011],[-67.217498999999918,68.471924000000058],[-67.213622999999927,68.440811000000053],[-67.223052999999993,68.426086000000112],[-67.307770000000005,68.423309000000017],[-67.325835999999981,68.421371000000079],[-67.332779000000016,68.418869000000029],[-67.335830999999985,68.416092000000106],[-67.338608000000022,68.411926000000051],[-67.33805799999999,68.409988000000055],[-67.324448000000018,68.40776100000005],[-67.15695199999999,68.406372000000033],[-67.111938000000009,68.411926000000051],[-67.104996000000028,68.414153999999996],[-67.100554999999929,68.418320000000051],[-67.09722899999997,68.45138500000013],[-67.100280999999995,68.457214000000135],[-67.106658999999866,68.460541000000092],[-67.116652999999985,68.463607999999965],[-67.127212999999983,68.46804800000001],[-67.129990000000021,68.472763000000043],[-67.126937999999996,68.475540000000137],[-67.112777999999992,68.478867000000093],[-66.908050999999944,68.453873000000101],[-66.821395999999993,68.465271000000087],[-66.803054999999972,68.467209000000025],[-66.787506000000008,68.464996000000099],[-66.706954999999994,68.44470200000012],[-66.697768999999937,68.428039999999953],[-66.724166999999909,68.429153000000042],[-66.782775999999956,68.426086000000112],[-66.904998999999918,68.416382000000112],[-66.920546999999942,68.411102000000085],[-66.921660999999915,68.408324999999991],[-66.914168999999902,68.398880000000077],[-66.913054999999986,68.39498900000001],[-66.914444000000003,68.391937000000098],[-66.93638599999997,68.374420000000043],[-66.946654999999907,68.369980000000055],[-66.955001999999979,68.367477000000065],[-67.005843999999968,68.354430999999977],[-67.011123999999938,68.353591999999992],[-67.02416999999997,68.35386699999998],[-67.048889000000031,68.355820000000108],[-67.075561999999934,68.360535000000141],[-67.111388999999974,68.370255000000043],[-67.130279999999914,68.379700000000128],[-67.142226999999991,68.382750999999985],[-67.230559999999969,68.39498900000001],[-67.245543999999995,68.395827999999995],[-67.286391999999978,68.395827999999995],[-67.379715000000033,68.390823000000125],[-67.411117999999931,68.382750999999985],[-67.415557999999976,68.378036000000122],[-67.418883999999991,68.376373000000001],[-67.455565999999919,68.36775200000011],[-67.494719999999973,68.360809000000074],[-67.595276000000013,68.347762999999986],[-67.631667999999991,68.345261000000107],[-67.646117999999944,68.344711000000075],[-67.743880999999988,68.343322999999941],[-67.781386999999938,68.337204000000099],[-67.810546999999985,68.328598],[-67.832229999999925,68.320267000000115],[-67.849730999999963,68.309981999999991],[-67.865829000000019,68.29971299999994],[-67.87110899999999,68.292755],[-67.878326000000015,68.26527400000009],[-67.869720000000029,68.259995000000117],[-67.860001000000011,68.258331000000112],[-67.845551,68.258880999999974],[-67.833327999999938,68.261383000000023],[-67.826675000000023,68.264434999999935],[-67.820281999999906,68.268599999999935],[-67.818068999999923,68.274155000000064],[-67.821120999999948,68.284987999999998],[-67.820557000000008,68.289703000000031],[-67.815551999999968,68.292206000000022],[-67.752501999999993,68.318878000000097],[-67.745269999999891,68.320541000000048],[-67.597778000000005,68.323044000000039],[-67.583069000000023,68.308029000000033],[-67.572234999999978,68.273314999999968],[-67.576675000000023,68.268599999999935],[-67.583327999999995,68.265548999999965],[-67.591674999999952,68.263046000000145],[-67.616394000000014,68.258331000000112],[-67.646666999999979,68.25360100000006],[-67.662780999999995,68.252487000000087],[-67.689437999999996,68.24803200000008],[-67.695267000000001,68.242477000000008],[-67.694992000000013,68.241089000000102],[-67.690826000000015,68.239700000000084],[-67.679717999999923,68.238876000000118],[-67.666945999999996,68.239975000000129],[-67.579726999999934,68.251389000000017],[-67.570846999999901,68.253052000000139],[-67.551666000000012,68.258331000000112],[-67.546950999999979,68.260544000000095],[-67.539169000000015,68.265823000000069],[-67.533066000000019,68.271378000000141],[-67.531112999999948,68.278320000000065],[-67.535004000000015,68.285538000000031],[-67.541381999999999,68.288879000000065],[-67.546111999999937,68.294144000000131],[-67.544997999999964,68.296371000000022],[-67.540282999999931,68.29971299999994],[-67.523894999999982,68.308594000000085],[-67.494155999999975,68.321930000000009],[-67.401947000000007,68.352478000000019],[-67.394729999999981,68.354156000000103],[-67.385558999999944,68.354430999999977],[-67.243880999999988,68.358322000000044],[-67.232497999999964,68.357483000000059],[-67.182495000000017,68.349426000000108],[-67.130279999999914,68.340820000000008],[-67.078063999999927,68.331100000000106],[-67.016113000000018,68.318603999999993],[-67.011672999999917,68.316086000000041],[-67.018340999999964,68.311645999999996],[-67.032500999999968,68.309143000000006],[-67.152221999999995,68.299987999999985],[-67.235000999999954,68.291655999999989],[-67.303878999999938,68.258880999999974],[-67.319732999999985,68.249709999999993],[-67.327788999999939,68.243590999999981],[-67.333617999999944,68.237761999999975],[-67.337509000000011,68.232483000000002],[-67.338897999999915,68.227767999999969],[-67.33944699999995,68.221649000000127],[-67.33944699999995,68.205551000000071],[-67.335007000000019,68.200821000000019],[-67.327498999999932,68.18664600000011],[-67.327788999999939,68.181091000000038],[-67.338608000000022,68.171097000000032],[-67.34584000000001,68.166091999999992],[-67.37110899999999,68.153869999999984],[-67.387787000000003,68.146378000000084],[-67.398620999999878,68.143875000000094],[-67.412505999999951,68.143051000000128],[-67.430283000000031,68.144714000000079],[-67.456954999999994,68.149429000000112],[-67.477782999999988,68.154984000000013],[-67.513901000000033,68.162491000000102],[-67.528885000000002,68.165268000000026],[-67.567779999999971,68.169144000000074],[-67.581116000000009,68.168869000000086],[-67.598891999999978,68.164992999999981],[-67.598342999999943,68.162766000000147],[-67.575561999999934,68.154984000000013],[-67.544723999999917,68.14776599999999],[-67.480285999999978,68.134720000000016],[-67.466949,68.132202000000063],[-67.438048999999978,68.128036000000009],[-67.408050999999944,68.124984999999981],[-67.396956999999929,68.124694999999974],[-67.374161000000015,68.127472000000012],[-67.353881999999999,68.135268999999994],[-67.307770000000005,68.155548000000124],[-67.304168999999945,68.158600000000035],[-67.273894999999925,68.19081100000011],[-67.272781000000009,68.195525999999973],[-67.274718999999891,68.200546000000031],[-67.279175000000009,68.205261000000064],[-67.283614999999998,68.211929000000055],[-67.288894999999968,68.226379000000122],[-67.289444000000003,68.230820000000051],[-67.289444000000003,68.236374000000069],[-67.274718999999891,68.244141000000013],[-67.178878999999995,68.269989000000123],[-67.139724999999999,68.27998400000007],[-67.057769999999891,68.291092000000049],[-67.011397999999986,68.294983000000116],[-66.998336999999935,68.292480000000126],[-66.99110399999995,68.288879000000065],[-66.986114999999984,68.285538000000031],[-66.984160999999972,68.28054800000001],[-66.973617999999988,68.27388000000002],[-66.964721999999995,68.270263999999997],[-66.930572999999924,68.262482000000034],[-66.865828999999962,68.25],[-66.835830999999928,68.246368000000075],[-66.791672000000005,68.244705000000124],[-66.777495999999985,68.243317000000047],[-66.769729999999925,68.241089000000102],[-66.765839000000028,68.238586000000112],[-66.780288999999982,68.207764000000054],[-66.852218999999991,68.115265000000079],[-66.888900999999976,68.092758000000003],[-66.896666999999866,68.089432000000102],[-66.913894999999968,68.084152000000074],[-66.945830999999941,68.076096000000007],[-66.954452999999944,68.071930000000066],[-66.965560999999923,68.063873000000115],[-66.971114999999998,68.053314000000057],[-66.972777999999948,68.048599000000024],[-66.973327999999981,68.039428999999984],[-66.969727000000034,68.034149000000127],[-66.961120999999991,68.024994000000049],[-66.953612999999962,68.017212000000086],[-66.946654999999907,68.013611000000026],[-66.928054999999972,68.042755],[-66.921660999999915,68.049149000000057],[-66.836120999999935,68.095535000000041],[-66.748046999999985,68.131653000000142],[-66.709166999999923,68.141098],[-66.694442999999978,68.143051000000128],[-66.682769999999948,68.141373000000044],[-66.678878999999995,68.138885000000016],[-66.670837000000006,68.128860000000145],[-66.670272999999952,68.114151000000106],[-66.678054999999915,68.043320000000051],[-66.680557000000022,68.036925999999994],[-66.693053999999904,68.022217000000126],[-66.706389999999942,68.011658000000125],[-66.720839999999953,68.001663000000008],[-66.735000999999954,67.982208000000014],[-66.732773000000009,67.981934000000081],[-66.714721999999938,67.983597000000032],[-66.697219999999902,67.987488000000099],[-66.647232000000031,68.015548999999965],[-66.634734999999864,68.064147999999932],[-66.631942999999978,68.075821000000133],[-66.625548999999978,68.103317000000004],[-66.620270000000005,68.125809000000118],[-66.615554999999972,68.132477000000108],[-66.610549999999932,68.136932000000115],[-66.594726999999921,68.143051000000128],[-66.56138599999997,68.147490999999945],[-66.541945999999882,68.148330999999985],[-66.513625999999931,68.148330999999985],[-66.328887999999949,68.132202000000063],[-66.31527699999998,68.130264000000125],[-66.309432999999956,68.127472000000012],[-66.310546999999929,68.118591000000094],[-66.315001999999879,68.112487999999985],[-66.321121000000005,68.106934000000138],[-66.350280999999939,68.090271000000087],[-66.366394000000014,68.083328000000108],[-66.371657999999968,68.081664999999987],[-66.388610999999969,68.08137499999998],[-66.41361999999998,68.086104999999975],[-66.427779999999984,68.087493999999992],[-66.450561999999991,68.086928999999941],[-66.468612999999948,68.083054000000004],[-66.476104999999905,68.080551000000014],[-66.478606999999954,68.077209000000039],[-66.472228999999913,68.073044000000039],[-66.460555999999997,68.070541000000105],[-66.438048999999978,68.068054000000018],[-66.389998999999989,68.069443000000035],[-66.369445999999925,68.071655000000078],[-66.326110999999969,68.079163000000108],[-66.303878999999995,68.083878000000141],[-66.296660999999972,68.086104999999975],[-66.272780999999952,68.087769000000037],[-66.259170999999981,68.085814999999968],[-66.250838999999985,68.082214000000135],[-66.240279999999871,68.073317999999972],[-66.184157999999968,68.018875000000037],[-66.184433000000013,68.013321000000019],[-66.186385999999914,68.010818000000029],[-66.192764000000011,68.007217000000026],[-66.204177999999899,68.00471500000009],[-66.253066999999874,68.00221300000004],[-66.264175000000023,67.99971000000005],[-66.294448999999986,67.991653000000099],[-66.309722999999963,67.986099000000081],[-66.320846999999958,67.97886699999998],[-66.344451999999933,67.956650000000081],[-66.405838000000017,67.898041000000035],[-66.401397999999972,67.888596000000007],[-66.522232000000031,67.860809000000017],[-66.535278000000005,67.863602000000014],[-66.594161999999983,67.872482000000048],[-66.628601000000003,67.876648000000102],[-66.672501000000011,67.880264000000011],[-66.729445999999996,67.878859999999975],[-66.739715999999987,67.877762000000075],[-66.746947999999918,67.875259000000142],[-66.74499499999996,67.872757000000036],[-66.732223999999974,67.867203000000075],[-66.703063999999983,67.863602000000014],[-66.686934999999949,67.862761999999975],[-66.653885000000002,67.859421000000111],[-66.56138599999997,67.843048000000067],[-66.401397999999972,67.811096000000077],[-66.356658999999922,67.821381000000031],[-66.346389999999985,67.861099000000024],[-66.332779000000016,67.887772000000041],[-66.319457999999884,67.911102000000142],[-66.295837000000006,67.938309000000118],[-66.276672000000019,67.954436999999984],[-66.268615999999952,67.958037999999988],[-66.251952999999958,67.962494000000106],[-66.240554999999972,67.962768999999923],[-66.227492999999868,67.959991000000116],[-66.213897999999972,67.960815000000082],[-66.136948000000018,67.976089000000002],[-66.119995000000017,67.981369000000086],[-66.003219999999885,68.020492999999988],[-65.988723999999877,68.026145999999983],[-65.981383999999991,68.029984000000127],[-65.943603999999993,68.046097000000145],[-65.948607999999979,68.09248400000007],[-65.958617999999944,68.129424999999969],[-65.961945000000014,68.13749700000011],[-65.960555999999997,68.144440000000145],[-65.94749499999989,68.154160000000047],[-65.941665999999941,68.157211000000018],[-65.928329000000019,68.162201000000096],[-65.920837000000006,68.161926000000051],[-65.911941999999954,68.15887500000008],[-65.867492999999911,68.124694999999974],[-65.863892000000021,68.119431000000134],[-65.857773000000009,68.110260000000039],[-65.853607000000011,68.078048999999908],[-65.853607000000011,68.073317999999972],[-65.857773000000009,68.067215000000033],[-65.933837999999923,68.01226800000012],[-65.96032699999995,67.996429000000035],[-65.980835000000013,67.987267000000088],[-65.994330999999988,67.979767000000038],[-66.032226999999978,67.952484000000027],[-65.985824999999977,67.916655999999989],[-65.967223999999987,67.853317000000061],[-65.980835000000013,67.842758000000003],[-66.005004999999869,67.814986999999974],[-66.009734999999978,67.803314000000114],[-66.028884999999946,67.724426000000108],[-66.028884999999946,67.719436999999971],[-66.021941999999967,67.650269000000037],[-66.020003999999915,67.635269000000108],[-66.013061999999934,67.626923000000033],[-66.008621000000005,67.625534000000016],[-65.999724999999899,67.627472000000125],[-65.986663999999962,67.635269000000108],[-65.961394999999982,67.689697000000081],[-65.950286999999946,67.722487999999998],[-65.936935000000005,67.765549000000021],[-65.938598999999954,67.77609300000006],[-65.942490000000021,67.780823000000112],[-65.953888000000006,67.798324999999977],[-65.95666499999993,67.811920000000043],[-65.955840999999964,67.818329000000062],[-65.953338999999971,67.821381000000031],[-65.946105999999986,67.82638500000013],[-65.926391999999964,67.832763999999997],[-65.869155999999919,67.844147000000021],[-65.831679999999949,67.854431000000034],[-65.804169000000002,67.863602000000014],[-65.795272999999952,67.868042000000003],[-65.763625999999931,67.909987999999998],[-65.762222000000008,67.914703000000031],[-65.763901000000033,67.919708000000071],[-65.767226999999991,67.923035000000027],[-65.798889000000031,67.938309000000118],[-65.819732999999985,67.955551000000128],[-65.823623999999995,67.962768999999923],[-65.817779999999971,67.968048000000124],[-65.807769999999948,67.971100000000035],[-65.684433000000013,67.992477000000065],[-65.46305799999999,67.996368000000132],[-65.448607999999979,67.995529000000147],[-65.443603999999993,67.992203000000131],[-65.441939999999988,67.986923000000047],[-65.442490000000021,67.981369000000086],[-65.457503999999972,67.937194999999917],[-65.464447000000007,67.920822000000044],[-65.52027899999996,67.843048000000067],[-65.525833000000034,67.837769000000037],[-65.545273000000009,67.822220000000129],[-65.55860899999999,67.814423000000033],[-65.573623999999938,67.806931000000077],[-65.603881999999999,67.79693599999996],[-65.610549999999876,67.792755000000056],[-65.615829000000019,67.786102000000085],[-65.613891999999908,67.780823000000112],[-65.610001000000011,67.776382000000012],[-65.591948999999943,67.763046000000088],[-65.572509999999966,67.751663000000065],[-65.556945999999868,67.7452550000001],[-65.517501999999979,67.733047000000056],[-65.473617999999931,67.719711000000075],[-65.454726999999991,67.71276899999998],[-65.439712999999927,67.705551000000014],[-65.426391999999964,67.696365000000014],[-65.41361999999998,67.683593999999914],[-65.40695199999999,67.674988000000042],[-65.403609999999958,67.664703000000088],[-65.400283999999942,67.654434000000037],[-65.396392999999875,67.64498900000001],[-65.384734999999921,67.625809000000004],[-65.363892000000021,67.597488000000112],[-65.356658999999922,67.594711000000018],[-65.346389999999985,67.593323000000112],[-65.335281000000009,67.593597000000045],[-65.322784000000013,67.594986000000063],[-65.318344000000025,67.601089000000002],[-65.369155999999919,67.70277400000009],[-65.379165999999941,67.711655000000007],[-65.40264899999994,67.72322100000008],[-65.462508999999955,67.741928000000144],[-65.492492999999968,67.751663000000065],[-65.510833999999988,67.759155000000021],[-65.544448999999986,67.774155000000121],[-65.550551999999982,67.778320000000122],[-65.554442999999992,67.783051000000057],[-65.554442999999992,67.788040000000024],[-65.423614999999984,67.898041000000035],[-65.292495999999971,67.934143000000006],[-65.235275000000001,67.944702000000063],[-65.201401000000033,67.954436999999984],[-65.171660999999915,67.966094999999996],[-65.156386999999938,67.973602000000085],[-65.144164999999873,67.984145999999953],[-65.141387999999949,67.990265000000022],[-65.145553999999947,67.997208000000001],[-65.175827000000027,68.008881000000031],[-65.180831999999953,68.012207000000046],[-65.181106999999997,68.016662999999994],[-65.176665999999955,68.022491000000059],[-65.169158999999922,68.027206000000092],[-65.047775000000001,68.04942299999999],[-65.001113999999916,68.055542000000003],[-64.973052999999993,68.050261999999975],[-64.734160999999972,67.993866000000025],[-64.723617999999988,67.99054000000001],[-64.717498999999975,67.986374000000126],[-64.713622999999984,67.981659000000093],[-64.718063000000029,67.976654000000053],[-64.725554999999929,67.971648999999957],[-64.743332000000009,67.965819999999951],[-64.84722899999997,67.934981999999991],[-64.942490000000021,67.912490999999989],[-65.015288999999996,67.862488000000042],[-65.017775999999969,67.820830999999998],[-65.008347000000015,67.785262999999929],[-65.014175000000023,67.780273000000079],[-65.051101999999958,67.754439999999988],[-65.060546999999929,67.752213000000097],[-65.085280999999895,67.749145999999996],[-65.112212999999997,67.748032000000023],[-65.124434999999949,67.746368000000018],[-65.136123999999995,67.743591000000094],[-65.145553999999947,67.738876000000062],[-65.158339999999953,67.729706000000022],[-65.179992999999911,67.713608000000136],[-65.192489999999964,67.702209000000039],[-65.196380999999974,67.69720500000011],[-65.198607999999922,67.691649999999981],[-65.205001999999979,67.65914900000007],[-65.205565999999919,67.653595000000109],[-65.204178000000013,67.648331000000098],[-65.200286999999946,67.643875000000037],[-65.178328999999962,67.633605999999986],[-65.172500999999954,67.633605999999986],[-65.167220999999984,67.635818000000029],[-65.162780999999995,67.63888500000013],[-65.150283999999999,67.672211000000118],[-65.149733999999967,67.677765000000079],[-65.150283999999999,67.68193100000002],[-65.154174999999952,67.686646000000053],[-65.153335999999911,67.692200000000014],[-65.148894999999982,67.698317999999972],[-65.129715000000033,67.715820000000008],[-65.124161000000015,67.718047999999953],[-64.929717999999923,67.78776600000009],[-64.919723999999917,67.790817000000118],[-64.907227000000034,67.792205999999965],[-64.827224999999942,67.784714000000008],[-64.81639100000001,67.78137200000009],[-64.810546999999985,67.777205999999978],[-64.808884000000035,67.771927000000005],[-64.80749499999996,67.74275200000011],[-64.81610099999989,67.710541000000035],[-64.825835999999981,67.703049000000078],[-64.837509000000011,67.700271999999984],[-64.862777999999992,67.691649999999981],[-64.862502999999947,67.687484999999981],[-64.84944200000001,67.687194999999974],[-64.820557000000008,67.688308999999947],[-64.799728000000016,67.690811000000053],[-64.779448999999886,67.697754000000032],[-64.773055999999997,67.703598000000056],[-64.768616000000009,67.709427000000062],[-64.762221999999952,67.76249700000011],[-64.755843999999968,67.817764000000068],[-64.75,67.822769000000108],[-64.740829000000019,67.824707000000046],[-64.65306099999998,67.82887299999993],[-64.611938000000009,67.82638500000013],[-64.56806899999998,67.819992000000013],[-64.506957999999997,67.80720500000001],[-64.368880999999931,67.764160000000061],[-64.363327000000027,67.759430000000009],[-64.363891999999964,67.754439999999988],[-64.396117999999944,67.711929000000112],[-64.401397999999915,67.707764000000111],[-64.414718999999991,67.707214000000079],[-64.431380999999988,67.709717000000069],[-64.445266999999944,67.71138000000002],[-64.460006999999905,67.711655000000007],[-64.472503999999958,67.710266000000047],[-64.578338999999971,67.696930000000066],[-64.597228999999857,67.689697000000081],[-64.61721799999998,67.678589000000045],[-64.637221999999895,67.665267999999912],[-64.639175000000023,67.660538000000088],[-64.626389000000017,67.659714000000122],[-64.618332000000009,67.663040000000137],[-64.581389999999999,67.67442299999999],[-64.515839000000028,67.68609600000002],[-64.454177999999956,67.693314000000044],[-64.380828999999892,67.698029000000076],[-64.36250299999989,67.702484000000084],[-64.34722899999997,67.709991000000002],[-64.331389999999885,67.727203000000031],[-64.326400999999919,67.731094000000098],[-64.318068999999923,67.73414600000001],[-64.305557000000022,67.733597000000088],[-64.295273000000009,67.730270000000132],[-64.072784000000013,67.610260000000096],[-64.067779999999971,67.602477999999962],[-64.039718999999991,67.533600000000092],[-64.038604999999905,67.528595000000053],[-64.038895000000025,67.525818000000129],[-64.044998000000021,67.520828000000051],[-64.053054999999915,67.517487000000017],[-64.134734999999921,67.490265000000079],[-64.144729999999925,67.487197999999978],[-64.165282999999988,67.482482999999945],[-64.238601999999901,67.46748400000007],[-64.250838999999871,67.466095000000109],[-64.271941999999967,67.464996000000099],[-64.281113000000005,67.465546000000131],[-64.343886999999938,67.469985999999949],[-64.386948000000018,67.474425999999994],[-64.412216000000001,67.477478000000076],[-64.423049999999989,67.478043000000127],[-64.435546999999985,67.478592000000049],[-64.440552000000025,67.474991000000045],[-64.432220000000029,67.471099999999979],[-64.410004000000015,67.464156999999943],[-64.384734999999978,67.458328000000108],[-64.356948999999986,67.453873000000101],[-64.296660999999915,67.448029000000076],[-64.283614999999998,67.448029000000076],[-64.204452999999944,67.452209000000096],[-64.190551999999968,67.453323000000069],[-64.166945999999996,67.456940000000031],[-64.145003999999858,67.461655000000064],[-64.123321999999916,67.465271000000143],[-64.111114999999927,67.466660000000104],[-64.086394999999982,67.46748400000007],[-64.048049999999876,67.464156999999943],[-64.010833999999988,67.459717000000126],[-64.00111400000003,67.455826000000059],[-63.992653000000018,67.448624000000109],[-63.951110999999969,67.409988000000112],[-63.904166999999973,67.30581699999999],[-63.904166999999973,67.301651000000106],[-63.905829999999924,67.299712999999997],[-63.912773000000016,67.295532000000094],[-63.923889000000031,67.293320000000051],[-63.93721800000003,67.292755],[-64.022780999999952,67.30802900000009],[-64.055266999999958,67.311371000000008],[-64.084732000000031,67.313309000000118],[-64.181670999999938,67.312194999999974],[-64.217498999999975,67.313598999999954],[-64.339995999999985,67.319442999999978],[-64.530562999999916,67.33776899999998],[-64.740279999999984,67.356934000000138],[-64.757507000000032,67.358322000000044],[-64.788329999999917,67.35914600000001],[-64.797500999999954,67.356644000000131],[-64.80082699999997,67.352768000000026],[-64.798889000000031,67.350266000000147],[-64.788605000000018,67.34693900000002],[-64.73443599999996,67.333603000000096],[-64.721389999999928,67.331374999999923],[-64.687774999999988,67.327484000000027],[-64.441665999999998,67.303040000000124],[-64.402221999999995,67.299149000000057],[-64.372498000000007,67.297211000000118],[-64.344726999999921,67.297485000000052],[-64.283614999999998,67.299987999999985],[-64.258621000000005,67.299149000000057],[-64.24610899999999,67.298599000000024],[-64.23832699999997,67.296936000000073],[-64.231948999999986,67.293320000000051],[-64.233886999999868,67.288589000000115],[-64.248336999999992,67.279434000000037],[-64.306380999999988,67.262207000000046],[-64.325012000000015,67.257216999999969],[-64.356110000000001,67.250275000000045],[-64.392226999999991,67.24664300000012],[-64.419448999999929,67.247207999999944],[-64.509170999999981,67.254990000000078],[-64.536941999999954,67.256653000000028],[-64.550277999999992,67.25610400000005],[-64.668610000000001,67.238585999999941],[-64.724166999999966,67.22886699999998],[-64.779174999999952,67.218872000000033],[-64.790282999999931,67.21665999999999],[-64.799987999999928,67.213608000000079],[-64.80972300000002,67.210266000000104],[-64.81610099999989,67.206940000000088],[-64.813048999999978,67.201385000000016],[-64.808043999999995,67.198029000000133],[-64.801392000000021,67.195250999999985],[-64.783324999999934,67.190262000000018],[-64.772781000000009,67.189696999999967],[-64.758895999999993,67.19081099999994],[-64.71665999999999,67.200272000000098],[-64.655838000000017,67.217209000000139],[-64.46665999999999,67.229156000000046],[-64.425277999999935,67.228043000000014],[-64.350783999999976,67.234764000000098],[-64.287444999999991,67.238257999999973],[-64.267112999999995,67.241425000000049],[-64.232772999999952,67.251434000000017],[-64.169448999999986,67.260818000000029],[-64.158889999999928,67.262497000000053],[-64.114715999999987,67.267212000000086],[-64.010559000000001,67.275269000000037],[-63.976944000000003,67.277771000000087],[-63.969993999999986,67.27748100000008],[-63.965836000000024,67.275542999999971],[-63.962775999999963,67.272491000000059],[-63.962775999999963,67.270263999999997],[-63.975829999999917,67.251937999999996],[-63.993056999999965,67.228317000000118],[-63.998336999999935,67.221649000000127],[-64.013335999999981,67.212204000000042],[-64.021392999999989,67.208878000000027],[-64.045272999999952,67.204711999999972],[-64.05610699999994,67.204437000000098],[-64.088608000000022,67.207764000000054],[-64.220222000000035,67.201714000000038],[-64.467498999999918,67.167480000000069],[-64.501403999999923,67.161652000000004],[-64.545272999999952,67.152481000000023],[-64.575011999999958,67.144714000000079],[-64.584166999999923,67.142212000000029],[-64.611938000000009,67.132477000000108],[-64.658050999999944,67.113037000000134],[-64.680831999999953,67.09304800000001],[-64.686935000000005,67.087493999999992],[-64.689986999999917,67.083602999999925],[-64.692490000000021,67.078048999999965],[-64.700561999999991,67.018051000000071],[-64.701110999999912,67.012207000000046],[-64.700561999999991,67.008040999999992],[-64.696945000000028,67.003326000000129],[-64.691939999999988,67.000549000000035],[-64.683060000000012,67.000275000000101],[-64.660278000000005,67.003875999999991],[-64.638610999999969,67.008606000000043],[-64.628325999999959,67.012207000000046],[-64.623885999999914,67.018051000000071],[-64.619720000000029,67.028320000000122],[-64.618057000000022,67.039428999999984],[-64.618057000000022,67.044434000000081],[-64.619720000000029,67.049713000000054],[-64.618880999999988,67.055252000000053],[-64.615279999999927,67.066940000000045],[-64.609160999999972,67.081940000000031],[-64.604172000000005,67.088317999999958],[-64.597777999999892,67.093872000000147],[-64.583617999999888,67.103043000000127],[-64.547501000000011,67.118590999999924],[-64.527221999999881,67.124145999999996],[-64.506393000000003,67.129425000000026],[-64.474715999999944,67.13499500000006],[-64.229995999999971,67.164154000000053],[-64.087218999999948,67.179703000000131],[-64.008895999999993,67.178864000000033],[-63.995551999999975,67.179428000000144],[-63.971381999999949,67.182205000000067],[-63.96055599999994,67.184417999999994],[-63.929726000000016,67.192749000000106],[-63.919166999999959,67.196365000000128],[-63.912216000000001,67.200546000000031],[-63.86222099999992,67.225815000000011],[-63.80750299999994,67.239150999999993],[-63.797500999999954,67.240265000000136],[-63.561942999999985,67.236923000000047],[-63.546394000000021,67.235809000000074],[-63.469443999999953,67.228317000000118],[-63.458336000000031,67.226088999999945],[-63.450554000000011,67.222488000000112],[-63.449164999999994,67.219437000000084],[-63.449164999999994,67.214995999999985],[-63.450835999999981,67.179703000000131],[-63.453888000000006,67.169434000000138],[-63.529442000000017,67.104431000000034],[-63.53833800000001,67.100540000000137],[-63.604720999999984,67.075272000000041],[-63.613892000000021,67.072769000000051],[-63.648055999999883,67.066940000000045],[-63.672775000000001,67.063599000000011],[-63.712776000000019,67.054977000000008],[-63.722771000000023,67.05192599999998],[-63.731383999999991,67.048035000000084],[-63.744445999999982,67.041092000000106],[-63.779723999999987,67.017487000000131],[-63.795836999999949,67.006653000000085],[-63.806389000000024,66.99581900000004],[-63.807219999999973,66.988037000000077],[-63.801392000000021,66.979705999999965],[-63.781386999999938,66.963608000000136],[-63.772498999999868,66.958878000000084],[-63.769447000000014,66.97137500000008],[-63.768889999999942,66.976929000000041],[-63.771111000000019,66.980819999999937],[-63.772498999999868,66.986098999999911],[-63.773613000000012,66.991088999999988],[-63.773330999999985,66.996094000000028],[-63.770836000000031,67.001389000000074],[-63.767219999999952,67.006104000000107],[-63.756950000000018,67.014160000000004],[-63.750557000000015,67.017487000000131],[-63.734443999999939,67.024155000000121],[-63.698607999999979,67.038878999999952],[-63.680000000000007,67.045821999999987],[-63.650832999999977,67.052475000000129],[-63.638335999999981,67.054428000000087],[-63.600837999999953,67.057479999999998],[-63.565552000000025,67.062485000000038],[-63.535277999999948,67.070831000000112],[-63.497222999999963,67.085266000000047],[-63.40277900000001,67.144440000000145],[-63.396392999999989,67.152206000000035],[-63.39416499999993,67.156936999999971],[-63.393889999999942,67.161652000000004],[-63.398055999999997,67.165817000000004],[-63.416945999999882,67.180267000000072],[-63.419997999999964,67.185806000000071],[-63.421943999999883,67.194702000000007],[-63.420836999999949,67.200272000000098],[-63.417777999999998,67.206100000000049],[-63.409163999999919,67.21665999999999],[-63.351669000000015,67.268051000000014],[-63.340553,67.276657000000114],[-63.332503999999972,67.281937000000028],[-63.298888999999974,67.297760000000039],[-63.280555999999933,67.306366000000139],[-63.272498999999982,67.309418000000051],[-63.160277999999948,67.328323000000012],[-63.137222000000008,67.331100000000106],[-63.110282999999868,67.329987000000017],[-63.03972599999986,67.306090999999924],[-63.022498999999925,67.298035000000084],[-63.015006999999969,67.293593999999985],[-62.997779999999977,67.281372000000147],[-62.992774999999995,67.276382000000126],[-62.973884999999882,67.235535000000141],[-62.970832999999971,67.225815000000011],[-62.970832999999971,67.221375000000023],[-63.023055999999997,67.179428000000144],[-63.035834999999963,67.171097000000032],[-63.04472399999986,67.167205999999965],[-63.075561999999934,67.15887500000008],[-63.100554999999986,67.155548000000124],[-63.134170999999981,67.15277100000003],[-63.170279999999991,67.147217000000069],[-63.19027699999998,67.143326000000002],[-63.232497999999964,67.132202000000063],[-63.242500000000007,67.129149999999981],[-63.268889999999942,67.117477000000122],[-63.275832999999977,67.113312000000121],[-63.284447,67.105255],[-63.285278000000005,67.099716000000001],[-63.283614999999998,67.094986000000119],[-63.278052999999943,67.090820000000065],[-63.268607999999972,67.082488999999953],[-63.260833999999988,67.074158000000068],[-63.25389100000001,67.064697000000081],[-63.224716000000001,67.024704000000042],[-63.220276000000013,67.016937000000098],[-63.220276000000013,67.006104000000107],[-63.220832999999971,66.989699999999971],[-63.221381999999949,66.984984999999938],[-63.223884999999996,66.979430999999977],[-63.227776000000006,66.972762999999986],[-63.240836999999999,66.961655000000007],[-63.27777900000001,66.949706999999933],[-63.320557000000008,66.940262000000075],[-63.356109999999944,66.934708000000057],[-63.36860699999994,66.934708000000057],[-63.43638599999997,66.925537000000134],[-63.469993999999986,66.920532000000094],[-63.514724999999999,66.912490999999989],[-63.526138000000003,66.909271000000047],[-63.545554999999865,66.903595000000053],[-63.554442999999935,66.899719000000005],[-63.565552000000025,66.892487000000074],[-63.565552000000025,66.888046000000145],[-63.563613999999973,66.883605999999929],[-63.557502999999997,66.875809000000004],[-63.554717999999866,66.870254999999986],[-63.551392000000021,66.860535000000084],[-63.555557000000022,66.848877000000073],[-63.571944999999971,66.837494000000049],[-63.593329999999924,66.831665000000044],[-63.615004999999996,66.827208999999982],[-63.638892999999882,66.824432000000058],[-63.652221999999881,66.82388300000008],[-63.698607999999979,66.822495000000004],[-63.725273000000016,66.823043999999982],[-63.775832999999921,66.825821000000019],[-63.771384999999952,66.811096000000077],[-63.653053,66.802475000000015],[-63.624442999999928,66.801926000000037],[-63.598334999999906,66.80304000000001],[-63.587776000000019,66.804428000000144],[-63.548889000000031,66.812485000000095],[-63.539443999999946,66.814697000000137],[-63.535277999999948,66.81581100000011],[-63.488891999999964,66.828323000000125],[-63.478881999999942,66.835815000000082],[-63.476386999999932,66.839157],[-63.475272999999959,66.842484000000127],[-63.476944000000003,66.846939000000134],[-63.487220999999977,66.858871000000079],[-63.494719999999973,66.865539999999953],[-63.496947999999861,66.880814000000044],[-63.487220999999977,66.896942000000081],[-63.480826999999977,66.90248100000008],[-63.474441999999954,66.906096999999932],[-63.456107999999972,66.910811999999964],[-63.441665999999998,66.908325000000104],[-63.427223000000026,66.901382000000126],[-63.407218999999998,66.814423000000033],[-63.407776000000013,66.809708000000001],[-63.410278000000005,66.799988000000099],[-63.414718999999991,66.783325000000048],[-63.417777999999998,66.773040999999978],[-63.436110999999926,66.728043000000071],[-63.449439999999925,66.716095000000053],[-63.453056000000004,66.711655000000064],[-63.451941999999917,66.70637499999998],[-63.441939999999931,66.703048999999965],[-63.420279999999934,66.698868000000061],[-63.415276000000006,66.700546000000145],[-63.408332999999914,66.704437000000041],[-63.40277900000001,66.708878000000141],[-63.376663000000008,66.734146000000067],[-63.32028200000002,66.814148000000046],[-63.319450000000018,66.819992000000013],[-63.224716000000001,66.899428999999998],[-62.973884999999882,66.961104999999975],[-62.962501999999972,66.963882000000069],[-62.939994999999954,66.966660000000047],[-62.87222300000002,66.964432000000102],[-62.846946999999943,66.961929000000112],[-62.837776000000019,66.957764000000111],[-62.821114000000023,66.830276000000083],[-62.820557000000008,66.813599000000067],[-62.827498999999932,66.78804000000008],[-62.829726999999991,66.783325000000048],[-62.837501999999972,66.771927000000005],[-62.84332999999998,66.769149999999911],[-62.864448999999979,66.746094000000085],[-62.869995000000017,66.739700000000028],[-62.873055000000022,66.733597000000088],[-62.91194200000001,66.652771000000143],[-62.914444000000003,66.647216999999955],[-62.908050999999944,66.63998400000014],[-62.903052999999943,66.637207000000046],[-62.899726999999984,66.636658000000125],[-62.859169000000009,66.653045999999961],[-62.850280999999939,66.656937000000028],[-62.835274000000027,66.666382000000112],[-62.819999999999936,66.684418000000107],[-62.734168999999952,66.790816999999947],[-62.735831999999959,66.801651000000049],[-62.743331999999953,66.809982000000105],[-62.751113999999916,66.818054000000075],[-62.768058999999937,66.830551000000071],[-62.774170000000026,66.840546000000018],[-62.768332999999984,66.907760999999994],[-62.764449999999954,66.925262000000089],[-62.761115999999959,66.929152999999985],[-62.743057000000022,66.941924999999969],[-62.725273000000016,66.947478999999987],[-62.634170999999981,66.951385000000073],[-62.607779999999991,66.952209000000039],[-62.592223999999931,66.950821000000133],[-62.578612999999962,66.947754000000032],[-62.568892999999889,66.944138000000123],[-62.549994999999967,66.931655999999975],[-62.519996999999933,66.911102000000028],[-62.40277900000001,66.809417999999994],[-62.401389999999935,66.804977000000065],[-62.40193899999997,66.789154000000053],[-62.398613000000012,66.780272999999909],[-62.393332999999984,66.775818000000072],[-62.326950000000011,66.730270000000132],[-62.319450000000018,66.726379000000065],[-62.313332000000003,66.726929000000098],[-62.299171000000001,66.733047000000056],[-62.291388999999924,66.756378000000097],[-62.292777999999998,66.761658000000011],[-62.295837000000006,66.766388000000006],[-62.362220999999977,66.818329000000119],[-62.419448999999986,66.843323000000055],[-62.424720999999977,66.847488000000055],[-62.426948999999865,66.851378999999952],[-62.436942999999985,66.884430000000123],[-62.427222999999969,66.921097000000088],[-62.418891999999971,66.926651000000106],[-62.407501000000025,66.92942800000003],[-62.394721999999945,66.929152999999985],[-62.346946999999886,66.933594000000085],[-62.284728999999913,66.946091000000081],[-62.271666999999979,66.960815000000139],[-62.279723999999931,66.979156000000103],[-62.291388999999924,67.005829000000119],[-62.294448999999986,67.021378000000027],[-62.293616999999983,67.026382000000012],[-62.290282999999988,67.032486000000006],[-62.285277999999948,67.036102000000085],[-62.278609999999958,67.039428999999984],[-62.262504999999976,67.045258000000047],[-62.101394999999968,67.054703000000075],[-62.054442999999878,67.049149000000114],[-62.03194400000001,67.045258000000047],[-62.019721999999945,67.042206000000078],[-62.005561999999941,67.0352630000001],[-62.006950000000018,67.031937000000084],[-62.04999499999991,66.987198000000092],[-62.106110000000001,66.917206000000022],[-62.102225999999916,66.913040000000137],[-62.072226999999998,66.907486000000119],[-62.029723999999987,66.901657000000114],[-62.018889999999942,66.901657000000114],[-62.018607999999972,66.908035000000098],[-62.015006999999912,66.91415400000011],[-61.95666499999993,66.963882000000069],[-61.949722000000008,66.967208999999968],[-61.938605999999993,66.969436999999971],[-61.913329999999974,66.970825000000048],[-61.865554999999972,66.970825000000048],[-61.851395000000025,66.970535000000041],[-61.83805099999995,66.968597000000102],[-61.749725000000012,66.94802900000002],[-61.737220999999977,66.941086000000041],[-61.731941000000006,66.93691999999993],[-61.728881999999942,66.932205000000067],[-61.730826999999863,66.923874000000012],[-61.612777999999992,66.870818999999926],[-61.314163000000008,66.687195000000031],[-61.294723999999917,66.67442299999999],[-61.289443999999946,66.669983000000002],[-61.281386999999995,66.661102000000028],[-61.262504999999976,66.629425000000083],[-61.266662999999937,66.622756999999922],[-61.300277999999935,66.593597000000045],[-61.341667000000029,66.571930000000009],[-61.348052999999936,66.570541000000048],[-61.356666999999959,66.571106000000043],[-61.388335999999981,66.578598],[-61.400275999999963,66.577208999999982],[-61.409720999999934,66.572768999999994],[-61.425003000000004,66.559708000000057],[-61.447776999999974,66.538315000000125],[-61.46166999999997,66.543319999999994],[-61.54861499999987,66.547484999999995],[-61.584723999999994,66.547760000000039],[-61.598609999999951,66.550262000000089],[-61.618056999999965,66.557205000000067],[-61.623885999999914,66.566939999999988],[-61.631942999999978,66.586654999999951],[-61.638610999999969,66.595534999999984],[-61.643889999999999,66.599991000000102],[-61.669166999999959,66.616378999999995],[-61.691382999999973,66.62831100000011],[-61.72582999999986,66.643051000000071],[-61.734443999999996,66.645827999999995],[-61.950554000000011,66.67692599999998],[-62.015555999999947,66.671371000000079],[-62.12388599999997,66.626373000000001],[-62.050551999999982,66.624985000000095],[-62.018607999999972,66.640823000000125],[-61.990836999999999,66.648041000000092],[-61.979995999999971,66.648041000000092],[-61.950554000000011,66.646102999999982],[-61.830284000000006,66.621368000000132],[-61.796950999999979,66.611923000000047],[-61.788895000000025,66.608597000000032],[-61.75389100000001,66.588593000000117],[-61.576667999999984,66.487198000000035],[-61.575279000000023,66.48275799999999],[-61.576392999999996,66.477203000000088],[-61.583327999999938,66.471649000000127],[-61.59194199999996,66.46775800000006],[-61.614166000000012,66.463043000000027],[-61.635001999999929,66.459991000000059],[-61.731383999999935,66.451096000000064],[-61.844161999999926,66.446091000000024],[-61.857779999999934,66.447204999999997],[-61.869720000000029,66.445815999999979],[-61.956947000000014,66.424149000000114],[-61.976943999999946,66.417480000000069],[-61.985832000000016,66.413605000000075],[-61.986945999999932,66.410262999999986],[-61.978049999999996,66.403869999999984],[-61.96416499999998,66.401382000000012],[-61.934165999999891,66.400818000000072],[-61.755004999999983,66.407486000000063],[-61.578612999999905,66.415268000000026],[-61.569449999999904,66.415543000000014],[-61.557266000000027,66.413680999999997],[-61.545279999999991,66.409988000000112],[-61.466942000000017,66.371918000000051],[-61.462501999999972,66.369141000000127],[-61.463614999999891,66.365814],[-61.665276000000006,66.324996999999996],[-61.877494999999954,66.283324999999934],[-61.928885999999977,66.283874999999966],[-62.198883000000023,66.314148000000102],[-62.207503999999915,66.316666000000112],[-62.212218999999948,66.319442999999978],[-62.218055999999933,66.331939999999975],[-62.231941000000006,66.366089000000045],[-62.232215999999937,66.369705000000067],[-62.229439000000013,66.375259000000085],[-62.224998000000028,66.380264000000125],[-62.218604999999968,66.392487000000017],[-62.218329999999867,66.396652000000017],[-62.223610000000008,66.401093000000117],[-62.229996000000028,66.40415999999999],[-62.255279999999914,66.408324999999991],[-62.268889999999999,66.409424000000001],[-62.418610000000001,66.421097000000032],[-62.456107999999915,66.423874000000126],[-62.565833999999995,66.42804000000001],[-62.626662999999894,66.426085999999998],[-62.698883000000023,66.41276600000009],[-62.709723999999994,66.410537999999974],[-62.716110000000015,66.407211000000018],[-62.710281000000009,66.403594999999996],[-62.673614999999984,66.393600000000049],[-62.629996999999946,66.387771999999984],[-62.478049999999996,66.369980000000112],[-62.337501999999972,66.315811000000053],[-62.32028200000002,66.308319000000097],[-62.316108999999983,66.304977000000008],[-62.320556999999951,66.299712999999997],[-62.323616000000015,66.298035000000084],[-62.388892999999939,66.276093000000003],[-62.398338000000024,66.273041000000092],[-62.621940999999993,66.221375000000023],[-62.643615999999952,66.216933999999924],[-62.666945999999939,66.214432000000045],[-62.680832000000009,66.216933999999924],[-62.751944999999921,66.241088999999931],[-62.757225000000005,66.245255000000043],[-62.780555999999933,66.277771000000143],[-62.782218999999884,66.282486000000006],[-62.782218999999884,66.288879000000122],[-62.773330999999985,66.296936000000073],[-62.774170000000026,66.302765000000136],[-62.77944199999996,66.307205000000124],[-62.797225999999966,66.313873000000115],[-62.816665999999941,66.320831000000112],[-62.826110999999912,66.324158000000011],[-62.858894000000021,66.334152000000074],[-62.868057000000022,66.336104999999975],[-62.881110999999976,66.335815000000139],[-62.889998999999989,66.333328000000108],[-62.895003999999915,66.329712000000029],[-62.809440999999993,66.240814000000114],[-62.801391999999964,66.235259999999926],[-62.715003999999908,66.201660000000061],[-62.706107999999972,66.199707000000103],[-62.681389000000024,66.196930000000009],[-62.647223999999994,66.199707000000103],[-62.603614999999991,66.205261000000121],[-62.488051999999925,66.200271999999927],[-62.366660999999965,66.174987999999985],[-62.180557000000022,66.148604999999975],[-62.037505999999951,66.100815000000011],[-61.961112999999898,66.033875000000023],[-61.955001999999979,66.024155000000121],[-61.954445000000021,66.019150000000081],[-61.955832999999927,66.014998999999989],[-61.960280999999895,66.011932000000058],[-61.975554999999986,66.010543999999982],[-62.088889999999935,66.000274999999931],[-62.133614000000023,66.000000000000114],[-62.148055999999997,66.001389000000131],[-62.166388999999981,66.00749200000007],[-62.172501000000011,66.010543999999982],[-62.188889000000017,66.012207000000103],[-62.196663000000001,66.011108000000092],[-62.291672000000005,65.980270000000132],[-62.307776999999987,65.973876999999959],[-62.391669999999863,66.011383000000137],[-62.404715999999894,66.014708999999982],[-62.525276000000019,66.034149000000127],[-62.541388999999981,66.035537999999974],[-62.695549000000028,66.042205999999965],[-62.74111199999993,66.038315000000068],[-62.759726999999884,66.033051000000057],[-62.778885000000002,66.033324999999991],[-62.799995000000024,66.039703000000145],[-62.809165999999891,66.043869000000029],[-62.831672999999967,66.055542000000059],[-62.842223999999987,66.064147999999989],[-62.846946999999943,66.069153000000028],[-62.855003000000011,66.083054000000004],[-62.856667000000016,66.087494000000049],[-62.860001000000011,66.103043000000127],[-62.8663939999999,66.112761999999975],[-62.873329000000012,66.121368000000075],[-62.884170999999867,66.129973999999947],[-62.90555599999999,66.140823000000012],[-62.930557000000022,66.146942000000081],[-62.946945000000028,66.148604999999975],[-62.95944199999991,66.14888000000002],[-62.970551,66.148041000000035],[-63.013618000000008,66.138885000000073],[-63.041672000000005,66.130264000000011],[-63.061942999999928,66.120819000000097],[-63.060279999999977,66.116379000000109],[-63.039443999999889,66.113312000000008],[-63.006393000000003,66.11692800000003],[-62.892226999999934,66.076660000000004],[-62.889998999999989,66.066375999999934],[-62.885833999999988,66.056366000000025],[-62.875,66.047760000000096],[-62.862220999999863,66.039429000000041],[-62.841942000000017,66.027480999999966],[-62.826667999999927,66.020264000000054],[-62.815833999999938,66.016098],[-62.793616999999983,66.010818000000086],[-62.778885000000002,66.009720000000016],[-62.768332999999984,66.009720000000016],[-62.755561999999884,66.00999500000006],[-62.743889000000024,66.011383000000137],[-62.67472099999992,66.015549000000021],[-62.523055999999997,66.002213000000097],[-62.517219999999952,66.000549000000092],[-62.4183349999999,65.970535000000041],[-62.405555999999933,65.963043000000084],[-62.395003999999915,65.949996999999996],[-62.386664999999994,65.936646000000053],[-62.321114000000023,65.831100000000049],[-62.317222999999956,65.808029000000033],[-62.441665999999941,65.793594000000098],[-62.478881999999999,65.790817000000004],[-62.505279999999971,65.790817000000004],[-62.521384999999952,65.792480000000126],[-62.604171999999892,65.801085999999998],[-62.619995000000017,65.803040000000067],[-62.684440999999936,65.816375999999991],[-62.717773000000022,65.825272000000098],[-62.727218999999991,65.828598],[-62.729996000000028,65.831940000000088],[-62.75278499999996,65.853591999999935],[-62.80750299999994,65.88998400000014],[-62.829445000000021,65.899994000000049],[-62.857506000000001,65.911102000000028],[-62.864166000000012,65.911102000000028],[-62.870551999999918,65.90554800000001],[-62.871940999999936,65.901382000000126],[-62.87471800000003,65.887497000000053],[-62.87471800000003,65.883041000000105],[-62.760001999999986,65.816665999999998],[-62.746391000000017,65.809708000000001],[-62.736945999999932,65.80831900000004],[-62.719993999999929,65.809708000000001],[-62.658889999999985,65.791930999999977],[-62.597778000000005,65.771927000000062],[-62.582221999999888,65.765549000000078],[-62.575004999999976,65.761658000000011],[-62.569449999999961,65.757492000000127],[-62.568610999999919,65.752212999999927],[-62.569725000000005,65.746643000000063],[-62.579444999999964,65.728317000000061],[-62.583610999999962,65.723312000000021],[-62.587775999999963,65.720260999999994],[-62.59027900000001,65.719147000000021],[-62.59944200000001,65.718872000000147],[-62.612777999999992,65.72164900000007],[-62.621940999999993,65.725540000000137],[-62.67472099999992,65.735809000000017],[-62.823891000000003,65.761383000000023],[-62.833442999999875,65.752991000000009],[-62.833777999999882,65.74999200000002],[-62.828780999999879,65.744492000000093],[-62.799170999999887,65.711928999999998],[-62.788054999999929,65.708328000000108],[-62.726386999999988,65.71138000000002],[-62.698883000000023,65.710266000000047],[-62.681670999999994,65.708038000000101],[-62.662772999999902,65.701096000000007],[-62.59944200000001,65.675812000000008],[-62.59194199999996,65.671920999999941],[-62.589721999999938,65.668594000000041],[-62.595832999999857,65.652205999999978],[-62.602225999999973,65.640273999999977],[-62.611670999999944,65.624145999999939],[-62.617499999999893,65.614990000000034],[-62.628051999999968,65.601929000000098],[-62.645279000000016,65.587203999999929],[-62.653053,65.586104999999975],[-62.751113999999916,65.58526599999999],[-62.767220000000009,65.587493999999936],[-62.78472899999997,65.59137000000004],[-62.803054999999972,65.59887700000013],[-62.859726000000023,65.634720000000016],[-62.861389000000031,65.639160000000004],[-62.858611999999937,65.65525800000006],[-62.862503000000004,65.685257000000092],[-62.882998999999984,65.724152000000061],[-62.885001999999986,65.726973999999927],[-62.887999999999863,65.729652000000044],[-62.904167000000029,65.746368000000018],[-62.922500999999954,65.752212999999927],[-62.936110999999926,65.754990000000021],[-62.949439999999925,65.755263999999954],[-62.95944199999991,65.753876000000048],[-62.962219000000005,65.748322000000087],[-62.943610999999919,65.743042000000003],[-62.93472300000002,65.738876000000118],[-62.925277999999992,65.731093999999985],[-62.916663999999912,65.722214000000122],[-62.914444000000003,65.718323000000055],[-62.892226999999934,65.641937000000098],[-62.89166999999992,65.638321000000076],[-62.895836000000031,65.633040999999992],[-62.901389999999935,65.628036000000122],[-62.953330999999991,65.586929000000112],[-62.961670000000026,65.583054000000118],[-62.972220999999934,65.580826000000002],[-63.005004999999926,65.624985000000095],[-63.016113000000018,65.632750999999985],[-63.027495999999928,65.635818000000086],[-63.040282999999931,65.63749700000011],[-63.137779000000023,65.644150000000081],[-63.162498000000028,65.632477000000051],[-63.162406999999973,65.628868000000068],[-63.164443999999946,65.625534000000073],[-63.178611999999987,65.627472000000012],[-63.200279000000023,65.633330999999998],[-63.211945000000014,65.640549000000021],[-63.293891999999971,65.708878000000141],[-63.43638599999997,65.84526100000005],[-63.443054000000018,65.854705999999908],[-63.474167000000023,65.833054000000061],[-63.379165999999998,65.720260999999994],[-63.368332000000009,65.693863000000022],[-63.368332000000009,65.669434000000081],[-63.399726999999984,65.676375999999948],[-63.412215999999944,65.67804000000001],[-63.448607999999922,65.680817000000047],[-63.461944999999957,65.681090999999981],[-63.704720000000009,65.68220500000001],[-63.717216000000008,65.681656000000032],[-63.723609999999894,65.680267000000015],[-63.728607000000011,65.675812000000008],[-63.728881999999999,65.673035000000141],[-63.723609999999894,65.668869000000029],[-63.700553999999954,65.655823000000112],[-63.68360899999999,65.650818000000072],[-63.671669000000009,65.648330999999985],[-63.504723000000013,65.6308140000001],[-63.453330999999991,65.629700000000128],[-63.432502999999997,65.631927000000019],[-63.399726999999984,65.634155000000135],[-63.375,65.632202000000007],[-63.36860699999994,65.629150000000095],[-63.351669000000015,65.61775200000011],[-63.326667999999984,65.600815000000068],[-63.319999999999936,65.593322999999998],[-63.336661999999933,65.556930999999963],[-63.34332999999998,65.548325000000091],[-63.355003000000011,65.537766000000033],[-63.359726000000023,65.536102000000028],[-63.373610999999983,65.533874999999966],[-63.463332999999977,65.522766000000047],[-63.474715999999887,65.523605000000032],[-63.482215999999937,65.525269000000037],[-63.488608999999997,65.528320000000065],[-63.501396,65.536377000000016],[-63.523055999999997,65.550812000000121],[-63.532775999999899,65.558594000000085],[-63.541114999999934,65.570267000000115],[-63.541388999999867,65.574158000000011],[-63.546669000000009,65.581100000000106],[-63.561278999999956,65.585372999999947],[-63.567943999999954,65.590042000000096],[-63.572449000000006,65.591209000000049],[-63.581279999999992,65.591873000000078],[-63.589943000000005,65.591209000000049],[-63.595778999999993,65.589035000000081],[-63.608894000000021,65.589981000000023],[-63.618331999999953,65.541931000000034],[-63.616660999999908,65.537490999999989],[-63.612777999999878,65.533325000000104],[-63.601395000000025,65.530273000000022],[-63.530280999999945,65.512206999999989],[-63.43277699999993,65.484421000000111],[-63.391945000000021,65.472488000000112],[-63.362503000000004,65.463318000000015],[-63.309165999999948,65.445525999999973],[-63.301665999999898,65.441650000000095],[-63.295279999999991,65.436371000000122],[-63.290839999999946,65.431656000000089],[-63.292777999999998,65.428863999999976],[-63.393889999999942,65.425262000000032],[-63.409995999999921,65.426651000000049],[-63.468886999999938,65.439697000000137],[-63.495276999999987,65.450272000000098],[-63.502785000000017,65.454162999999994],[-63.521666999999979,65.461105000000089],[-63.532775999999899,65.464705999999978],[-63.553329000000019,65.468872000000033],[-63.568892999999946,65.471649000000127],[-63.583327999999995,65.4727630000001],[-63.64305899999988,65.473602000000085],[-63.65444199999996,65.472213999999951],[-63.655555999999933,65.470824999999991],[-63.654716000000008,65.464995999999985],[-63.627494999999954,65.455826000000116],[-63.563613999999973,65.435806000000071],[-63.483611999999994,65.404984000000013],[-63.335555999999997,65.30053700000002],[-63.335830999999985,65.295531999999923],[-63.424720999999977,65.229430999999977],[-63.472220999999934,65.196365000000014],[-63.418892000000028,65.145263999999997],[-63.376944999999978,65.110809000000017],[-63.424445999999932,65.049149000000114],[-63.464721999999938,65.018051000000128],[-63.527221999999995,64.971924000000058],[-63.528335999999967,64.967758000000003],[-63.546950999999979,64.887207000000046],[-63.653885000000002,64.911652000000061],[-63.659720999999934,64.939697000000081],[-63.747779999999977,64.962203999999986],[-63.824172999999973,64.984711000000061],[-63.828339000000028,65.010817999999915],[-63.825561999999877,65.012771999999984],[-63.720276000000013,65.030823000000112],[-63.669723999999917,65.034988000000112],[-63.659995999999978,65.03637700000013],[-63.655272999999966,65.03804000000008],[-63.658051,65.041091999999992],[-63.664718999999934,65.043594000000041],[-63.685554999999965,65.047759999999982],[-63.697776999999974,65.049423000000047],[-63.732215999999994,65.048874000000126],[-63.751944999999978,65.045258000000047],[-63.782218999999941,65.034149000000014],[-63.801940999999999,65.030273000000079],[-63.824447999999961,65.027481000000023],[-63.849723999999924,65.030273000000079],[-63.861114999999984,65.033325000000048],[-63.870551999999918,65.040816999999947],[-63.873885999999914,65.04553199999998],[-63.875556999999958,65.050262000000032],[-63.885559000000001,65.079987000000131],[-63.886116000000015,65.085815000000025],[-63.881667999999934,65.096939000000134],[-63.948607999999979,65.100540000000024],[-64.121108999999933,65.043869000000086],[-64.132491999999957,65.044434000000081],[-64.140839000000028,65.047211000000004],[-64.267226999999991,65.094147000000021],[-64.275833000000034,65.098877000000073],[-64.271118000000001,65.103317000000061],[-64.22193900000002,65.146942000000081],[-64.208892999999989,65.155258000000003],[-64.18582200000003,65.163879000000065],[-64.167220999999927,65.170532000000037],[-64.131103999999937,65.182480000000112],[-64.129715000000033,65.193588000000091],[-64.203613000000018,65.199707000000103],[-64.211944999999901,65.199996999999939],[-64.231383999999991,65.196930000000009],[-64.301940999999999,65.163040000000137],[-64.30999799999995,65.15914900000007],[-64.314712999999983,65.15248100000008],[-64.339172000000019,65.161377000000016],[-64.37332200000003,65.177200000000028],[-64.380828999999892,65.181091000000094],[-64.395844000000011,65.207214000000079],[-64.407227000000034,65.275818000000015],[-64.405272999999909,65.285537999999917],[-64.402785999999935,65.291092000000106],[-64.398620999999935,65.29693600000013],[-64.389724999999999,65.304428000000087],[-64.355835000000013,65.324996999999996],[-64.333327999999995,65.337203999999986],[-64.30999799999995,65.349990999999989],[-64.300551999999982,65.355819999999994],[-64.25556899999998,65.386382999999967],[-64.250838999999871,65.390823000000012],[-64.236389000000031,65.421920999999998],[-64.234160999999972,65.427199999999971],[-64.237212999999997,65.429977000000065],[-64.248885999999914,65.430542000000116],[-64.272781000000009,65.428588999999988],[-64.291107000000011,65.422484999999938],[-64.431380999999988,65.326934999999992],[-64.461670000000026,65.294983000000002],[-64.471664000000033,65.283324999999991],[-64.474715999999944,65.272491000000116],[-64.468886999999938,65.263885000000016],[-64.463897999999972,65.258881000000031],[-64.456954999999994,65.249420000000043],[-64.452498999999989,65.241653000000099],[-64.455565999999976,65.207214000000079],[-64.462218999999948,65.190810999999997],[-64.468337999999903,65.180267000000129],[-64.509734999999921,65.12052900000009],[-64.521117999999944,65.109146000000123],[-64.535004000000015,65.097214000000122],[-64.549987999999985,65.09275800000006],[-64.555556999999965,65.092209000000082],[-64.561934999999949,65.094986000000006],[-64.567504999999926,65.115814000000057],[-64.567504999999926,65.119979999999998],[-64.569457999999941,65.124419999999986],[-64.580001999999922,65.128860000000032],[-64.611389000000031,65.141937000000041],[-64.641112999999962,65.149993999999992],[-64.655272999999966,65.166092000000049],[-64.718338000000017,65.222487999999942],[-64.760284000000013,65.25221300000004],[-64.765014999999948,65.247756999999979],[-64.778335999999967,65.238585999999998],[-64.788329999999917,65.23414600000001],[-64.801102000000014,65.230820000000108],[-64.814712999999983,65.235259999999982],[-64.864440999999999,65.256653000000085],[-64.883895999999993,65.265273999999977],[-64.891113000000018,65.269150000000081],[-64.896666999999979,65.273315000000082],[-64.898346000000004,65.275818000000015],[-64.910552999999993,65.29942299999999],[-64.910827999999981,65.303589000000102],[-64.910004000000015,65.304977000000008],[-64.855887999999936,65.314545000000123],[-64.834228999999937,65.319046000000014],[-64.823387000000025,65.318214000000125],[-64.796111999999937,65.31860400000005],[-64.793883999999991,65.314697000000081],[-64.786391999999978,65.310806000000014],[-64.777221999999995,65.30914300000012],[-64.757171999999912,65.313095000000033],[-64.752173999999911,65.314255000000117],[-64.696105999999872,65.329712000000029],[-64.691101000000003,65.331940000000031],[-64.687209999999936,65.334991000000059],[-64.685271999999998,65.337493999999992],[-64.684433000000013,65.341095000000053],[-64.689162999999951,65.341660000000104],[-64.799728000000016,65.346939000000077],[-64.813613999999973,65.347214000000065],[-64.868056999999965,65.339706000000092],[-64.897780999999952,65.334152000000074],[-64.909163999999976,65.334717000000126],[-64.912216000000001,65.338042999999971],[-64.910552999999993,65.33998100000008],[-64.904723999999987,65.343596999999932],[-64.609160999999972,65.426376000000005],[-64.591110000000015,65.429703000000131],[-64.583892999999989,65.430267000000072],[-64.508347000000015,65.425812000000064],[-64.477218999999991,65.421097000000032],[-64.466400000000021,65.417480000000069],[-64.458343999999954,65.416656000000103],[-64.448607999999979,65.418319999999937],[-64.441939999999931,65.420258000000103],[-64.433608999999933,65.429153000000099],[-64.429992999999968,65.434417999999994],[-64.40943900000002,65.473877000000073],[-64.412780999999939,65.478592000000106],[-64.418335000000013,65.482758000000047],[-64.434432999999899,65.484146000000123],[-64.551940999999999,65.457764000000054],[-64.695267000000001,65.427765000000022],[-64.795273000000009,65.415268000000026],[-64.806655999999919,65.413879000000009],[-64.82417299999986,65.413315000000068],[-64.833618000000001,65.414429000000041],[-64.843886999999938,65.417205999999965],[-64.845550999999944,65.419434000000138],[-64.854996000000028,65.422759999999982],[-64.863891999999964,65.424698000000092],[-64.869719999999973,65.423874000000126],[-64.974166999999966,65.404708999999968],[-64.981110000000001,65.401932000000102],[-64.987502999999947,65.39776599999999],[-64.990279999999927,65.393875000000094],[-64.988602000000014,65.379424999999969],[-64.98582499999992,65.371368000000018],[-64.989715999999987,65.36831699999999],[-65.001113999999916,65.366652999999985],[-65.016112999999962,65.367203000000018],[-65.058883999999978,65.376648000000102],[-65.075012000000015,65.383041000000048],[-65.136123999999995,65.422484999999938],[-65.144164999999873,65.427765000000022],[-65.149993999999992,65.434143000000006],[-65.168883999999991,65.482758000000047],[-65.168059999999969,65.483871000000079],[-65.160003999999958,65.48803700000002],[-65.149445000000014,65.493042000000059],[-65.142501999999922,65.495818999999983],[-65.129990000000021,65.49859600000002],[-65.110274999999945,65.497482000000048],[-65.082503999999972,65.500548999999978],[-64.929717999999923,65.524703999999986],[-64.854445999999996,65.583603000000096],[-64.836944999999957,65.605819999999937],[-64.767226999999991,65.63998399999997],[-64.741669000000002,65.641662999999994],[-64.723052999999993,65.643600000000049],[-64.711944999999957,65.647217000000012],[-64.70944199999991,65.650543000000027],[-64.710007000000019,65.652205999999978],[-64.71444699999995,65.653320000000122],[-64.768340999999964,65.659988000000112],[-64.794723999999974,65.661926000000051],[-64.818618999999956,65.661926000000051],[-64.828063999999927,65.661102000000085],[-64.843886999999938,65.658034999999984],[-64.853333000000021,65.654709000000139],[-64.872222999999963,65.64498900000001],[-64.888901000000033,65.629150000000095],[-64.899993999999936,65.616378999999995],[-64.952498999999875,65.56442300000009],[-64.974166999999966,65.551376000000062],[-64.993606999999884,65.548035000000027],[-65.110274999999945,65.541092000000049],[-65.15306099999998,65.53915400000011],[-65.311110999999983,65.548874000000012],[-65.318344000000025,65.550537000000134],[-65.326400999999976,65.556366000000139],[-65.333327999999995,65.563599000000124],[-65.338607999999965,65.575546000000088],[-65.308334000000002,65.621094000000028],[-65.303328999999962,65.62831099999994],[-65.299987999999928,65.6308140000001],[-65.295837000000006,65.631653000000085],[-65.275283999999942,65.631363000000079],[-65.252228000000002,65.629974000000061],[-65.217772999999966,65.629974000000061],[-65.188599000000011,65.629974000000061],[-65.153884999999946,65.630264000000068],[-65.125823999999966,65.633330999999998],[-65.112503000000004,65.637207000000103],[-65.105835000000013,65.639435000000049],[-65.103881999999999,65.642487000000131],[-65.103881999999999,65.651932000000045],[-65.109436000000017,65.658875000000023],[-65.106948999999986,65.667205999999908],[-65.105835000000013,65.668594000000041],[-65.09973100000002,65.671920999999941],[-64.994445999999925,65.70138500000013],[-64.981383999999991,65.704712000000086],[-64.969726999999978,65.706650000000025],[-64.942215000000033,65.709152000000074],[-64.922501000000011,65.709427000000119],[-64.902495999999985,65.708602999999982],[-64.814712999999983,65.712769000000037],[-64.803328999999962,65.714157000000114],[-64.798339999999996,65.716385000000116],[-64.793609999999887,65.719985999999949],[-64.791381999999999,65.723312000000021],[-64.794997999999964,65.728043000000127],[-64.801940999999886,65.730270000000019],[-64.815552000000025,65.730545000000006],[-64.90695199999999,65.728867000000093],[-64.973052999999993,65.723602000000028],[-64.996947999999918,65.721374999999966],[-65.024719000000005,65.716934000000037],[-65.057219999999973,65.710266000000047],[-65.076110999999912,65.705551000000014],[-65.103058000000033,65.694427000000132],[-65.11610399999995,65.685257000000092],[-65.138610999999969,65.671096999999975],[-65.144454999999994,65.667480000000012],[-65.164168999999958,65.656937000000084],[-65.168334999999956,65.656097000000045],[-65.369994999999903,65.661102000000085],[-65.431380999999931,65.669144000000074],[-65.441665999999884,65.671646000000123],[-65.449996999999883,65.674988000000042],[-65.454452999999887,65.678314000000114],[-65.456954999999937,65.68220500000001],[-65.456389999999999,65.68553199999991],[-65.452498999999932,65.69081100000011],[-65.447768999999994,65.695251000000098],[-65.460281000000009,65.74136400000009],[-65.490279999999927,65.735809000000017],[-65.497771999999941,65.737487999999985],[-65.50556899999998,65.74331699999999],[-65.505004999999983,65.751663000000121],[-65.498885999999857,65.763046000000088],[-65.455276000000026,65.832489000000066],[-65.449158000000011,65.841094999999939],[-65.439437999999996,65.8477630000001],[-65.357223999999974,65.902480999999909],[-65.152221999999938,65.957764000000111],[-65.137787000000003,65.961104999999975],[-65.050277999999992,65.98054500000012],[-64.963897999999972,65.998596000000134],[-64.946105999999986,66.001389000000131],[-64.934722999999906,66.002213000000097],[-64.923049999999989,66.001389000000131],[-64.898346000000004,65.996933000000013],[-64.880828999999949,65.989975000000015],[-64.851104999999961,65.98054500000012],[-64.842223999999931,65.978043000000071],[-64.801392000000021,65.969436999999971],[-64.772506999999962,65.966095000000053],[-64.755004999999926,65.966095000000053],[-64.743332000000009,65.967484000000013],[-64.735001000000011,65.969436999999971],[-64.733886999999925,65.97554000000008],[-64.738601999999958,65.978867000000037],[-64.765014999999948,65.988037000000077],[-64.821670999999981,66.044708000000014],[-64.750838999999928,66.185532000000023],[-64.721663999999976,66.217483999999956],[-64.712219000000005,66.223602000000085],[-64.605834999999956,66.259155000000135],[-64.480559999999969,66.296371000000079],[-64.451950000000011,66.303589000000102],[-64.405563000000029,66.315811000000053],[-64.388610999999912,66.321655000000078],[-64.375548999999921,66.327209000000039],[-64.365829000000019,66.333053999999947],[-64.356383999999935,66.340546000000074],[-64.354172000000005,66.348038000000031],[-64.356383999999935,66.349715999999944],[-64.366104000000007,66.350815000000125],[-64.377486999999974,66.349990999999989],[-64.443877999999984,66.344711000000075],[-64.464721999999938,66.34304800000001],[-64.71444699999995,66.274994000000049],[-64.718886999999995,66.273315000000025],[-64.789168999999958,66.236374000000126],[-64.796111999999937,66.231659000000093],[-64.839995999999985,66.193313999999987],[-64.858046999999942,66.149993999999992],[-64.856658999999979,66.139984000000084],[-64.851944000000003,66.124984999999981],[-64.849730999999963,66.12052900000009],[-64.854171999999949,66.109711000000118],[-64.858886999999982,66.106093999999985],[-64.933884000000035,66.080276000000026],[-64.948607999999979,66.076934999999992],[-65.126098999999954,66.03776600000009],[-65.381942999999922,65.975815000000125],[-65.398055999999997,65.974700999999925],[-65.827788999999996,65.953049000000078],[-65.876389000000017,65.94802900000002],[-65.916106999999954,65.95109599999995],[-65.928054999999972,65.953873000000044],[-65.935546999999929,65.958328000000051],[-65.939712999999927,65.962493999999992],[-65.96305799999999,66.034424000000001],[-65.963897999999915,66.043869000000029],[-65.918883999999935,66.086105000000032],[-65.911666999999852,66.091660000000104],[-65.904175000000009,66.094437000000028],[-65.786117999999988,66.126373000000115],[-65.674712999999997,66.157486000000119],[-65.65055799999999,66.164429000000098],[-65.640838999999914,66.168319999999994],[-65.634170999999924,66.172484999999995],[-65.564162999999951,66.226929000000041],[-65.545546999999942,66.243317000000104],[-65.471114999999941,66.342484000000013],[-65.471663999999919,66.383606000000043],[-65.473617999999931,66.385817999999915],[-65.475829999999974,66.387771999999984],[-65.479172000000005,66.388046000000088],[-65.482773000000009,66.387771999999984],[-65.489715999999987,66.385817999999915],[-65.501677999999913,66.376373000000058],[-65.553878999999938,66.32777400000009],[-65.555831999999953,66.325272000000041],[-65.559433000000013,66.320541000000105],[-65.561660999999901,66.314423000000147],[-65.564437999999996,66.293593999999985],[-65.562774999999988,66.288315000000011],[-65.562774999999988,66.283324999999934],[-65.571670999999981,66.268326000000059],[-65.598891999999921,66.244979999999998],[-65.610549999999876,66.235809000000074],[-65.696944999999971,66.180542000000116],[-65.702498999999989,66.177475000000015],[-65.844161999999926,66.135817999999972],[-65.926940999999999,66.114700000000084],[-65.951950000000011,66.108871000000079],[-65.96833799999996,66.108032000000094],[-66.073623999999995,66.12052900000009],[-66.139174999999966,66.131362999999965],[-66.145003999999972,66.1336060000001],[-66.147232000000031,66.135269000000051],[-66.200835999999981,66.194977000000051],[-66.191100999999946,66.239974999999959],[-66.25111400000003,66.242203000000131],[-66.371384000000035,66.22526600000009],[-66.401947000000007,66.200821000000076],[-66.478333000000021,66.201660000000061],[-66.489715999999873,66.202774000000034],[-66.496947999999975,66.20498699999996],[-66.505004999999926,66.208878000000027],[-66.524445000000014,66.224152000000117],[-66.529998999999918,66.229156000000103],[-66.534164000000033,66.233046999999999],[-66.540832999999964,66.241653000000099],[-66.542770000000019,66.24664300000012],[-66.577498999999989,66.354430999999977],[-66.576110999999969,66.35914600000001],[-66.570007000000032,66.365540000000067],[-66.564162999999951,66.369141000000127],[-66.53694200000001,66.378035999999952],[-66.500564999999995,66.388046000000088],[-66.454726999999991,66.398041000000148],[-66.445267000000001,66.401382000000012],[-66.438323999999909,66.40415999999999],[-66.434433000000013,66.407211000000018],[-66.437209999999936,66.413315000000068],[-66.441939999999988,66.414429000000041],[-66.466109999999901,66.414992999999981],[-66.473617999999988,66.414429000000041],[-66.481383999999991,66.413040000000024],[-66.597778000000005,66.386932000000115],[-66.604996000000028,66.376373000000058],[-66.610001000000011,66.371368000000018],[-66.617492999999911,66.368591000000094],[-66.629990000000021,66.36775200000011],[-66.713897999999972,66.368866000000082],[-66.724166999999909,66.369431000000134],[-66.730834999999956,66.369980000000112],[-66.743057000000022,66.372756999999979],[-66.767775999999913,66.380539000000113],[-66.821670999999924,66.458037999999931],[-66.821670999999924,66.460815000000025],[-66.806380999999931,66.531936999999971],[-66.851943999999946,66.583328000000051],[-66.972228999999913,66.628860000000088],[-66.999724999999955,66.638321000000019],[-67.023055999999997,66.643326000000059],[-67.036117999999931,66.644714000000022],[-67.048889000000031,66.644714000000022],[-67.058884000000035,66.642761000000064],[-67.060546999999985,66.640273999999977],[-67.05610699999994,66.633605999999986],[-67.043334999999956,66.625809000000061],[-67.016662999999937,66.615265000000022],[-66.950561999999877,66.592209000000139],[-66.908339999999953,66.578049000000078],[-66.887511999999901,66.569442999999978],[-66.884170999999867,66.566086000000041],[-66.889450000000011,66.561096000000134],[-67.105559999999969,66.485809000000017],[-67.118331999999953,66.484985000000052],[-67.133620999999948,66.485809000000017],[-67.176940999999943,66.489700000000084],[-67.189712999999927,66.491653000000042],[-67.198607999999979,66.494141000000013],[-67.202224999999999,66.497208000000114],[-67.203887999999949,66.505264000000011],[-67.192215000000033,66.51527400000009],[-67.186110999999983,66.524428999999941],[-67.19027699999998,66.529160000000104],[-67.327224999999999,66.595825000000048],[-67.338332999999977,66.597762999999986],[-67.34584000000001,66.597214000000008],[-67.398620999999878,66.589157000000057],[-67.410003999999958,66.585540999999978],[-67.463622999999984,66.578873000000044],[-67.515015000000005,66.573607999999979],[-67.581116000000009,66.575271999999984],[-67.639724999999999,66.580551000000128],[-67.726943999999889,66.576660000000061],[-67.737212999999997,66.574158000000011],[-67.740828999999962,66.571106000000043],[-67.742767000000015,66.568328999999949],[-67.741942999999935,66.564148000000046],[-67.735001000000011,66.561371000000008],[-67.722777999999892,66.558029000000033],[-67.701110999999855,66.55581699999999],[-67.499999999999943,66.544838000000027],[-67.426102000000014,66.541367000000037],[-67.407776000000013,66.542206000000022],[-67.395843999999954,66.544708000000071],[-67.380553999999904,66.545822000000044],[-67.373885999999914,66.545822000000044],[-67.365829000000019,66.544434000000138],[-67.296386999999925,66.526093000000003],[-67.281676999999945,66.51887499999998],[-67.148620999999991,66.443863000000022],[-67.143889999999999,66.437759000000028],[-67.143615999999952,66.435531999999967],[-67.138061999999991,66.382202000000063],[-67.139724999999999,66.376648000000046],[-67.160827999999981,66.365540000000067],[-67.172501000000011,66.363876000000062],[-67.185271999999941,66.363602000000128],[-67.197768999999994,66.365814],[-67.291671999999892,66.399429000000055],[-67.337509000000011,66.418869000000086],[-67.338988999999913,66.422852000000091],[-67.343063000000029,66.426650999999993],[-67.350280999999939,66.428863999999976],[-67.365829000000019,66.429703000000131],[-67.389724999999942,66.430817000000104],[-67.406386999999995,66.429703000000131],[-67.410552999999993,66.425262000000032],[-67.410003999999958,66.420821999999987],[-67.383330999999998,66.401932000000045],[-67.378326000000015,66.398604999999918],[-67.36860699999994,66.394714000000022],[-67.31361400000003,66.376373000000058],[-67.288604999999961,66.368866000000082],[-67.240828999999962,66.358871000000022],[-67.195830999999998,66.354980000000126],[-67.188598999999954,66.352203000000031],[-67.133057000000008,66.313873000000115],[-67.125274999999988,66.30693100000002],[-67.126099000000011,66.305542000000003],[-67.129165999999941,66.303589000000102],[-67.139449999999954,66.301376000000118],[-67.162216000000001,66.298874000000069],[-67.183884000000035,66.297485000000052],[-67.194153000000028,66.297760000000039],[-67.208618000000001,66.299988000000042],[-67.226944000000003,66.304153000000042],[-67.240828999999962,66.304153000000042],[-67.254181000000017,66.302765000000136],[-67.261672999999973,66.299149000000057],[-67.282226999999978,66.275269000000037],[-67.297501000000011,66.276093000000003],[-67.399170000000026,66.292480000000012],[-67.413895000000025,66.296646000000067],[-67.450287000000003,66.316666000000112],[-67.453063999999927,66.320541000000105],[-67.453339000000028,66.322495000000117],[-67.494719999999973,66.356934000000138],[-67.526108000000022,66.382202000000063],[-67.5625,66.407486000000063],[-67.566665999999998,66.409424000000001],[-67.603057999999976,66.418594000000041],[-67.634170999999981,66.424698000000092],[-67.690826000000015,66.435256999999922],[-67.71305799999999,66.436096000000077],[-67.730285999999978,66.439971999999955],[-67.812499999999943,66.463043000000027],[-67.825286999999946,66.46775800000006],[-67.828612999999905,66.470824999999934],[-67.834732000000031,66.48332199999993],[-67.838607999999908,66.491653000000042],[-67.923614999999927,66.516098000000056],[-67.952498999999989,66.514709000000039],[-67.985824999999863,66.509720000000073],[-67.992767000000015,66.506943000000035],[-67.992767000000015,66.503876000000105],[-67.944716999999855,66.478867000000093],[-67.929169000000002,66.473038000000088],[-67.906113000000005,66.468048000000067],[-67.886948000000018,66.461928999999998],[-67.870269999999948,66.454712000000086],[-67.760558999999944,66.358032000000037],[-67.756392999999946,66.353317000000004],[-67.711120999999935,66.296936000000073],[-67.701401000000033,66.284714000000122],[-67.701674999999966,66.278320000000065],[-67.705565999999976,66.275269000000037],[-67.724716000000001,66.260818000000029],[-67.672225999999966,66.228317000000118],[-67.570556999999951,66.184143000000006],[-67.454453000000001,66.144714000000079],[-67.399993999999992,66.126373000000115],[-67.281386999999938,66.083054000000004],[-67.165008999999998,66.036926000000051],[-67.162506000000008,66.035262999999929],[-67.243522999999925,65.978301999999985],[-67.173049999999876,65.918593999999985],[-67.185821999999973,65.912200999999982],[-67.194442999999978,65.909714000000122],[-67.201674999999966,65.90914900000007],[-67.429992999999911,65.90554800000001],[-67.740554999999858,65.894150000000025],[-67.795273000000009,65.877197000000137],[-67.824172999999973,65.880814000000044],[-67.86471599999993,65.887772000000041],[-67.914444000000003,65.899155000000064],[-67.938599000000011,65.908035000000098],[-68.02694699999995,65.99275200000011],[-68.030563000000029,65.998032000000023],[-68.031386999999995,66.002213000000097],[-68.027221999999995,66.060806000000071],[-68.025832999999977,66.06581100000011],[-68.130828999999949,66.126648000000102],[-68.244720000000029,66.1827550000001],[-68.340285999999992,66.196930000000009],[-68.538054999999929,66.200821000000076],[-68.712783999999942,66.19859300000013],[-68.808334000000002,66.195816000000036],[-68.842498999999975,66.193313999999987],[-68.851394999999968,66.189972000000012],[-68.846389999999928,66.186645999999996],[-68.835281000000009,66.184981999999991],[-68.668610000000001,66.178864000000033],[-68.568343999999968,66.178588999999988],[-68.414718999999991,66.159424000000058],[-68.403610000000015,66.146378000000084],[-68.391113000000018,66.135269000000051],[-68.383330999999941,66.131087999999977],[-68.300277999999878,66.092758000000003],[-68.27806099999998,66.083602999999982],[-68.244155999999975,66.071105999999986],[-68.237777999999935,66.069992000000013],[-68.225554999999986,66.069992000000013],[-68.220551,66.073044000000095],[-68.218886999999995,66.081375000000037],[-68.22193900000002,66.085266000000104],[-68.229720999999984,66.092209000000082],[-68.244155999999975,66.099991000000045],[-68.246947999999975,66.112761999999975],[-68.220000999999968,66.128586000000041],[-68.202498999999932,66.128859999999975],[-68.194716999999969,66.127472000000068],[-68.157501000000025,66.117477000000008],[-68.134170999999981,66.109985000000052],[-68.118880999999988,66.103592000000106],[-68.047226000000023,66.064986999999974],[-68.048889000000031,66.00749200000007],[-68.051940999999943,65.996643000000006],[-68.05360399999995,65.991088999999988],[-68.064437999999939,65.984421000000054],[-68.12388599999997,65.963043000000084],[-68.134170999999981,65.963318000000129],[-68.173614999999984,65.969436999999971],[-68.196945000000028,65.973876999999959],[-68.210555999999997,65.979430999999977],[-68.27806099999998,66.014160000000061],[-68.304442999999878,66.028046000000018],[-68.323897999999929,66.003875999999991],[-68.333618000000001,65.93193100000002],[-68.332229999999925,65.92886400000009],[-68.325835999999981,65.916382000000112],[-68.321670999999981,65.911925999999994],[-68.304748999999958,65.908661000000052],[-68.287780999999995,65.907760999999994],[-68.260009999999909,65.911377000000016],[-68.194153000000028,65.921097000000145],[-68.156113000000005,65.929703000000018],[-68.150283999999999,65.930542000000003],[-68.142775999999969,65.929152999999985],[-68.139998999999989,65.927475000000072],[-68.136123999999995,65.922760000000039],[-68.134734999999921,65.913605000000018],[-68.13290399999994,65.834885000000043],[-68.139175000000023,65.817215000000147],[-68.147231999999974,65.798325000000034],[-68.033324999999934,65.776382000000069],[-68.023894999999868,65.77526899999998],[-68.003066999999987,65.778320000000008],[-67.923614999999927,65.793869000000086],[-67.886123999999882,65.804977000000065],[-67.821120999999948,65.768050999999957],[-67.870269999999948,65.689422999999977],[-67.942489999999964,65.618042000000116],[-67.989165999999898,65.61914100000007],[-68.058884000000035,65.568053999999961],[-68.027221999999995,65.558319000000097],[-68.012512000000015,65.557754999999929],[-68.011672999999973,65.558868000000018],[-67.998610999999983,65.566939999999988],[-67.98721299999994,65.571381000000088],[-67.971114999999998,65.575271999999984],[-67.956664999999987,65.571655000000021],[-67.951675000000023,65.568329000000006],[-67.953063999999927,65.557205000000124],[-67.955001999999979,65.55386400000009],[-68.020844000000011,65.49803200000008],[-68.027785999999935,65.491653000000042],[-68.030288999999982,65.487761999999975],[-68.030563000000029,65.484421000000111],[-68.025832999999977,65.481093999999985],[-68.022507000000019,65.480545000000063],[-68.00778200000002,65.485535000000084],[-67.941939999999931,65.525269000000037],[-67.922500999999954,65.538040000000137],[-67.860274999999945,65.584427000000062],[-67.730285999999978,65.636383000000137],[-67.712219000000005,65.640823000000125],[-67.652495999999985,65.651382000000012],[-67.466109999999958,65.674149000000114],[-67.428604000000007,65.676650999999993],[-67.402495999999928,65.677475000000129],[-67.396118000000001,65.676650999999993],[-67.382216999999912,65.673874000000069],[-67.328063999999983,65.662491000000045],[-67.319457999999941,65.659423999999944],[-67.280562999999972,65.642487000000131],[-67.275283999999999,65.637772000000098],[-67.256667999999991,65.615265000000022],[-67.25389100000001,65.611649],[-67.251677999999856,65.606934000000138],[-67.253341999999975,65.601654000000053],[-67.256667999999991,65.599152000000004],[-67.272781000000009,65.595261000000107],[-67.320557000000008,65.586929000000112],[-67.333327999999938,65.582489000000066],[-67.336120999999935,65.580826000000002],[-67.456664999999987,65.501937999999996],[-67.458892999999932,65.49803200000008],[-67.451400999999919,65.493590999999981],[-67.347504000000015,65.458602999999982],[-67.221389999999985,65.456375000000037],[-67.189986999999974,65.458037999999988],[-67.180832000000009,65.459152000000131],[-67.169158999999979,65.461380000000077],[-67.155563000000029,65.466934000000094],[-67.142226999999991,65.469147000000078],[-67.081679999999949,65.462494000000049],[-67.065552000000025,65.458602999999982],[-67.058608999999933,65.453597999999943],[-67.058043999999995,65.451385000000016],[-67.058334000000002,65.426651000000049],[-67.062774999999931,65.417480000000069],[-67.078339000000028,65.392211999999972],[-67.111114999999984,65.364700000000028],[-67.118056999999965,65.361922999999933],[-67.12388599999997,65.360535000000027],[-67.134445000000028,65.359711000000061],[-67.218063000000029,65.358597000000088],[-67.255568999999923,65.360535000000027],[-67.316101000000003,65.358597000000088],[-67.400833000000034,65.350266000000033],[-67.408889999999985,65.348328000000095],[-67.413619999999923,65.345825000000104],[-67.417770000000019,65.342209000000025],[-67.416107000000011,65.339157000000114],[-67.40943900000002,65.333328000000108],[-67.399993999999992,65.329712000000029],[-67.391113000000018,65.327209000000096],[-67.33666999999997,65.31721500000009],[-67.326674999999966,65.316940000000045],[-67.319167999999934,65.318054000000018],[-67.315826000000015,65.320541000000105],[-67.306655999999862,65.330276000000026],[-67.306106999999997,65.333602999999925],[-67.306945999999982,65.338042999999971],[-67.303878999999938,65.34248400000007],[-67.297501000000011,65.347487999999998],[-67.291381999999942,65.349716000000001],[-67.283614999999998,65.351089000000059],[-67.269164999999987,65.352203000000031],[-67.125548999999978,65.311919999999986],[-67.119995000000017,65.309982000000048],[-67.077788999999996,65.250275000000101],[-67.063889000000017,65.218322999999941],[-66.93472300000002,65.233871000000136],[-66.933060000000012,65.233597000000032],[-66.928878999999938,65.229705999999965],[-66.948883000000023,65.125259000000142],[-66.950835999999981,65.11692800000003],[-66.953339000000028,65.113036999999963],[-66.959166999999979,65.106644000000017],[-66.967498999999975,65.103866999999923],[-67.025283999999886,65.10832199999993],[-67.044158999999922,65.107483000000002],[-67.055557000000022,65.105255000000056],[-67.066665999999998,65.100815000000011],[-67.072234999999978,65.097214000000122],[-67.106110000000001,65.064147999999989],[-67.108611999999994,65.060256999999922],[-67.107773000000009,65.058868000000132],[-67.096114999999998,65.056091000000038],[-67.085830999999985,65.056366000000082],[-67.075012000000015,65.058029000000147],[-66.890563999999983,65.103317000000061],[-66.835555999999997,65.137206999999989],[-66.756393000000003,65.177200000000028],[-66.74749799999995,65.180542000000003],[-66.730285999999921,65.181366000000139],[-66.726105000000018,65.180267000000129],[-66.725554999999986,65.178040000000067],[-66.753341999999975,65.113312000000008],[-66.801666000000012,65.060806000000071],[-66.767501999999979,65.024429000000112],[-66.743057000000022,64.963042999999971],[-66.726944000000003,64.913879000000122],[-66.727492999999924,64.90525800000006],[-66.728057999999976,64.901657],[-66.733063000000016,64.888321000000019],[-66.739165999999955,64.859985000000108],[-66.735000999999954,64.824707000000103],[-66.734160999999915,64.820541000000048],[-66.698043999999868,64.761931999999945],[-66.694716999999912,64.761383000000023],[-66.687774999999988,64.762206999999989],[-66.654175000000009,64.771103000000096],[-66.641113000000018,64.775818000000129],[-66.632492000000013,64.781372000000147],[-66.638061999999991,64.785538000000031],[-66.676101999999901,64.876082999999994],[-66.696944999999971,65.03276100000005],[-66.694152999999972,65.037201000000096],[-66.688660000000027,65.038772999999935],[-66.673324999999977,65.038589000000002],[-66.660827999999981,65.037201000000096],[-66.618056999999965,65.030273000000079],[-66.535278000000005,65.010817999999915],[-66.530563000000029,65.00749200000007],[-66.49610899999999,64.983047000000056],[-66.488891999999908,64.957489000000123],[-66.496658000000025,64.945526000000086],[-66.495543999999995,64.938873000000115],[-66.491378999999995,64.934982000000048],[-66.486664000000019,64.932205000000124],[-66.478606999999954,64.929153000000042],[-66.388610999999969,64.913315000000011],[-66.379165999999998,64.912201000000039],[-66.368057000000022,64.913605000000018],[-66.363892000000021,64.917480000000012],[-66.361938000000009,64.923599000000024],[-66.36361699999992,64.928589000000102],[-66.334732000000031,64.934708000000114],[-66.177779999999927,64.880264000000068],[-66.148346000000004,64.868866000000025],[-66.177215999999987,64.796371000000022],[-66.18472300000002,64.784424000000058],[-66.191939999999931,64.77887000000004],[-66.199431999999945,64.774993999999992],[-66.203339000000028,64.77388000000002],[-66.213333000000034,64.75610400000005],[-66.219161999999983,64.726089000000115],[-66.218886999999938,64.69081100000011],[-66.212218999999948,64.685531999999967],[-66.18472300000002,64.681656000000032],[-66.166945999999939,64.681091000000038],[-66.161117999999931,64.682479999999998],[-66.15834000000001,64.68414300000012],[-66.151947000000007,64.689147999999989],[-66.147781000000009,64.695815999999979],[-66.147232000000031,64.70138500000013],[-66.147232000000031,64.704162999999937],[-66.150283999999942,64.71748400000007],[-66.14973399999991,64.733597000000145],[-66.145554000000004,64.740265000000136],[-66.136397999999986,64.754166000000112],[-66.116942999999992,64.781372000000147],[-66.091675000000009,64.809708000000057],[-66.080841000000021,64.819153000000085],[-66.058333999999945,64.832764000000054],[-66.037215999999944,64.844986000000063],[-66.020843999999954,64.849716000000058],[-66.011397999999986,64.848327999999981],[-66.011123999999995,64.846375000000023],[-66.008621000000005,64.78915400000011],[-66.009170999999867,64.778046000000074],[-66.012511999999901,64.699417000000039],[-65.899993999999992,64.673309000000074],[-65.846664000000033,64.676085999999998],[-65.852218999999991,64.680267000000072],[-65.861389000000031,64.689147999999989],[-65.889449999999954,64.719711000000132],[-65.899170000000026,64.73275799999999],[-65.958617999999944,64.877761999999962],[-65.95666499999993,64.886108000000092],[-65.953338999999971,64.888321000000019],[-65.941939999999988,64.890548999999965],[-65.931380999999931,64.89137299999993],[-65.92471299999994,64.89137299999993],[-65.838608000000022,64.882476999999994],[-65.727218999999934,64.843597000000045],[-65.717772999999966,64.84027100000003],[-65.674438000000009,64.818054000000132],[-65.664168999999958,64.80831900000004],[-65.661666999999966,64.804428000000144],[-65.660278000000005,64.799149],[-65.665008999999998,64.796936000000017],[-65.683318999999926,64.792206000000022],[-65.698333999999988,64.784714000000065],[-65.720275999999956,64.766663000000108],[-65.736114999999984,64.750275000000045],[-65.742492999999911,64.741089000000102],[-65.742766999999958,64.735260000000039],[-65.736938000000009,64.726089000000115],[-65.726944000000003,64.711380000000077],[-65.710830999999985,64.693039000000056],[-65.704726999999934,64.687485000000095],[-65.703063999999927,64.692200000000128],[-65.709441999999967,64.712769000000037],[-65.71055599999994,64.718596999999988],[-65.710007000000019,64.732208000000128],[-65.708618000000001,64.736099000000024],[-65.684157999999968,64.761107999999979],[-65.676102000000014,64.765548999999908],[-65.665282999999931,64.771378000000141],[-65.648055999999997,64.774993999999992],[-65.642776000000026,64.774993999999992],[-65.627212999999927,64.771103000000096],[-65.598891999999921,64.756377999999984],[-65.56639100000001,64.737488000000042],[-65.561110999999869,64.733047000000113],[-65.557495000000017,64.728317000000061],[-65.555831999999953,64.723312000000021],[-65.556380999999931,64.717758000000003],[-65.572234999999921,64.664153999999996],[-65.576675000000023,64.652481000000023],[-65.583327999999938,64.642761000000121],[-65.586394999999925,64.640274000000034],[-65.654723999999987,64.602478000000019],[-65.662505999999951,64.598328000000038],[-65.714172000000019,64.570541000000048],[-65.730835000000013,64.517761000000007],[-65.732223999999974,64.508040999999935],[-65.725554999999929,64.498031999999967],[-65.721664000000033,64.49414100000007],[-65.708344000000011,64.486649000000114],[-65.695540999999992,64.485809000000074],[-65.665008999999998,64.492203000000131],[-65.643340999999964,64.494979999999998],[-65.573333999999988,64.498596000000077],[-65.524718999999948,64.49971000000005],[-65.518065999999976,64.49971000000005],[-65.506392999999946,64.497482000000105],[-65.504181000000017,64.495818999999983],[-65.50556899999998,64.468872000000033],[-65.396117999999944,64.52137799999997],[-65.384170999999981,64.524155000000064],[-65.365828999999906,64.526931999999988],[-65.210555999999883,64.536102000000028],[-65.203888000000006,64.533874999999966],[-65.144454999999994,64.51138300000008],[-65.085006999999962,64.479705999999965],[-65.077788999999939,64.475815000000068],[-65.075835999999981,64.471375000000023],[-65.074172999999973,64.461929000000055],[-65.071670999999981,64.440810999999997],[-65.071945000000028,64.43081699999999],[-65.073623999999938,64.426086000000055],[-65.194991999999957,64.310257000000092],[-65.202498999999989,64.306366000000025],[-65.210830999999985,64.303863999999976],[-65.284728999999913,64.291656000000103],[-65.295272999999895,64.290267999999969],[-65.309433000000013,64.29136699999998],[-65.343337999999903,64.294983000000002],[-65.377212999999983,64.303314000000114],[-65.386397999999929,64.30664100000007],[-65.408889999999928,64.312485000000038],[-65.451674999999966,64.319992000000013],[-65.498885999999857,64.322769000000108],[-65.525008999999898,64.323318000000029],[-65.554168999999945,64.323318000000029],[-65.563323999999909,64.322494999999947],[-65.65583799999996,64.308868000000075],[-65.661666999999966,64.307479999999998],[-65.658339999999953,64.302765000000136],[-65.654449,64.300812000000008],[-65.61860699999994,64.293045000000063],[-65.601943999999946,64.293594000000041],[-65.591948999999943,64.296096999999975],[-65.572234999999921,64.298599000000081],[-65.505844000000025,64.302475000000129],[-65.465835999999967,64.30304000000001],[-65.434158000000025,64.299149000000114],[-65.422774999999945,64.296371000000136],[-65.250564999999995,64.208328000000051],[-65.24610899999999,64.204987000000017],[-65.242766999999958,64.200271999999984],[-65.265015000000005,64.17886400000009],[-65.16194200000001,64.138046000000145],[-65.049438000000009,64.072220000000016],[-65.053878999999938,64.067764000000068],[-65.060546999999929,64.064986999999974],[-65.093886999999995,64.052199999999971],[-65.103881999999999,64.049149],[-65.136672999999917,64.041367000000037],[-65.158339999999953,64.038315000000068],[-65.196105999999929,64.040268000000026],[-65.206115999999952,64.040268000000026],[-65.21665999999999,64.038589000000002],[-65.221389999999928,64.03637700000013],[-65.225554999999929,64.032761000000107],[-65.221938999999963,64.028594999999996],[-65.214172000000019,64.025543000000084],[-65.189986999999917,64.020264000000111],[-65.096663999999976,64.009155000000021],[-65.08805799999999,64.009430000000066],[-64.949158000000011,64.014999000000046],[-64.800551999999982,64.02777100000003],[-64.68638599999997,64.039154000000053],[-64.676940999999999,64.036652000000004],[-64.668059999999969,64.033051000000114],[-64.661117999999988,64.028594999999996],[-64.630554000000018,63.978324999999984],[-64.631377999999984,63.974709000000132],[-64.632766999999944,63.972763000000043],[-64.638335999999981,63.96915400000006],[-64.64805599999994,63.966934000000037],[-64.658889999999985,63.965546000000131],[-64.669998000000021,63.966385000000059],[-64.689437999999996,63.966103000000032],[-64.700561999999991,63.963882000000126],[-64.817504999999983,63.923607000000004],[-64.875274999999988,63.901100000000099],[-64.888901000000033,63.894996999999989],[-64.974715999999944,63.851936000000137],[-64.985000999999954,63.829163000000051],[-64.987502999999947,63.823051000000078],[-64.984160999999915,63.813881000000038],[-64.954177999999956,63.776382000000126],[-64.94888299999991,63.774437000000091],[-64.77806099999998,63.747772000000055],[-64.68360899999999,63.746383999999978],[-64.584441999999854,63.704711999999915],[-64.559432999999956,63.694153000000085],[-64.540282999999988,63.684433000000013],[-64.527495999999985,63.676941000000056],[-64.522507000000019,63.672768000000076],[-64.508347000000015,63.650826000000052],[-64.506667999999991,63.636940000000038],[-64.507506999999976,63.630821000000026],[-64.515015000000005,63.620270000000119],[-64.52194199999991,63.611938000000123],[-64.536666999999966,63.581108000000086],[-64.529449,63.534996000000035],[-64.522507000000019,63.514717000000076],[-64.50167799999997,63.443878000000097],[-64.49888599999997,63.429161000000079],[-64.495543999999938,63.327773999999977],[-64.510833999999988,63.307770000000062],[-64.588897999999858,63.321938000000102],[-64.608337000000006,63.32388300000008],[-64.61999499999996,63.323326000000009],[-64.62222300000002,63.322219999999959],[-64.624709999999993,63.318054000000075],[-64.61999499999996,63.313324000000023],[-64.614715999999987,63.30971500000004],[-64.587783999999942,63.299721000000034],[-64.577224999999999,63.296660999999972],[-64.566390999999953,63.293884000000048],[-64.525557999999933,63.290550000000053],[-64.500838999999985,63.289992999999981],[-64.488892000000021,63.288330000000087],[-64.482773000000009,63.285827999999981],[-64.481948999999872,63.282211000000018],[-64.531112999999948,63.249718000000087],[-64.538054999999929,63.248329000000069],[-64.658339999999953,63.249161000000015],[-64.767501999999922,63.32388300000008],[-64.826950000000011,63.45249199999995],[-64.850554999999929,63.510826000000009],[-64.942490000000021,63.632210000000043],[-64.955001999999922,63.640274000000034],[-64.973052999999993,63.646942000000024],[-64.99499499999996,63.652488999999946],[-65.046386999999925,63.662209000000075],[-65.06361400000003,63.668053000000043],[-65.070847000000015,63.671936000000017],[-65.166945999999996,63.747772000000055],[-65.166397000000018,63.773323000000119],[-65.153335999999911,63.771102999999925],[-65.150833000000034,63.772217000000126],[-65.154174999999952,63.776939000000027],[-65.15943900000002,63.781105000000082],[-65.204726999999934,63.80332199999998],[-65.293609999999944,63.812767000000065],[-65.298614999999927,63.81249200000002],[-65.301392000000021,63.81082200000003],[-65.303878999999995,63.806938000000002],[-65.300277999999935,63.799995000000024],[-65.281677000000002,63.788887000000045],[-65.215560999999923,63.75471500000009],[-65.15566999999993,63.725326999999993],[-65.135284000000013,63.715271000000143],[-65.053054999999972,63.638046000000088],[-65.039169000000015,63.574165000000107],[-65.069732999999985,63.568886000000134],[-65.085830999999928,63.563881000000094],[-65.091948999999943,63.559714999999983],[-65.099990999999932,63.547217999999987],[-65.102218999999991,63.541664000000026],[-65.102218999999991,63.536658999999929],[-65.099441999999897,63.526381999999955],[-65.026947000000007,63.399162000000103],[-64.965011999999945,63.369438000000059],[-64.952498999999875,63.362212999999997],[-64.942490000000021,63.353049999999996],[-64.909163999999976,63.280548000000124],[-64.901108000000022,63.237495000000024],[-64.908614999999941,63.235550000000046],[-64.921386999999925,63.235825000000034],[-65.046386999999925,63.248329000000069],[-65.068893000000003,63.252494999999954],[-65.082503999999972,63.260826000000066],[-65.103332999999964,63.27777100000003],[-65.114166000000012,63.284996000000092],[-65.123321999999973,63.288330000000087],[-65.136123999999995,63.290833000000021],[-65.141953000000001,63.28943600000008],[-65.148620999999991,63.286110000000065],[-65.146956999999873,63.281380000000013],[-65.083327999999938,63.20388000000014],[-65.057770000000005,63.174712999999997],[-65.054992999999911,63.172217999999987],[-65.046111999999994,63.171104000000014],[-65.016524999999945,63.171515999999997],[-64.998610999999926,63.176102000000014],[-64.944716999999912,63.183327000000077],[-64.920272999999952,63.184158000000082],[-64.911391999999921,63.180824000000086],[-64.811660999999958,63.137497000000053],[-64.797500999999954,63.130547000000035],[-64.783889999999985,63.12221500000004],[-64.755004999999926,63.099158999999986],[-64.753341999999918,63.096657000000107],[-64.762511999999958,63.0472180000001],[-64.771392999999989,62.98333000000008],[-64.703338999999971,62.953323000000069],[-64.696105999999872,62.952217000000076],[-64.676392000000021,62.941658000000018],[-64.645553999999947,62.921660999999972],[-64.634444999999971,62.912491000000102],[-64.627212999999983,62.90415999999999],[-64.626937999999939,62.899994000000106],[-64.629989999999964,62.897491000000116],[-64.638335999999981,62.894440000000088],[-64.733611999999994,62.878875999999991],[-64.769454999999937,62.862213000000111],[-64.855269999999962,62.865273000000002],[-64.881942999999865,62.867493000000024],[-64.903885000000002,62.872490000000084],[-64.923324999999977,62.878875999999991],[-65.005004999999983,62.90776800000009],[-65.162215999999944,62.943047000000035],[-65.225280999999995,62.954993999999942],[-65.236114999999984,62.957771000000037],[-65.243056999999965,62.961662000000103],[-65.248336999999935,62.965828000000045],[-65.25140399999998,62.970543000000077],[-65.255004999999926,62.979713000000118],[-65.254729999999995,62.985268000000019],[-65.26916499999993,62.959991000000059],[-65.194442999999922,62.878875999999991],[-65.190276999999924,62.875267000000008],[-65.175002999999947,62.862495000000024],[-65.153884999999946,62.84693900000002],[-65.14805599999994,62.843322999999998],[-65.129165999999998,62.83638000000002],[-65.115279999999984,62.828880000000083],[-64.984726000000023,62.714157],[-64.978332999999964,62.704711999999972],[-64.94888299999991,62.648604999999975],[-64.964721999999995,62.6336060000001],[-64.980834999999956,62.623604000000114],[-65.062774999999988,62.587494000000049],[-65.071120999999948,62.584435000000042],[-65.087219000000005,62.57888000000014],[-65.114715999999987,62.571663000000058],[-65.145003999999915,62.565826000000072],[-65.187499999999943,62.56221000000005],[-65.19776899999988,62.563048999999978],[-65.205001999999979,62.566101000000117],[-65.212219000000005,62.569992000000013],[-65.22084000000001,62.578331000000048],[-65.288605000000018,62.659987999999998],[-65.294997999999964,62.669441000000006],[-65.296660999999972,62.674163999999962],[-65.290558000000033,62.678878999999995],[-65.273894999999982,62.685265000000129],[-65.267776000000026,62.690269000000058],[-65.266952999999944,62.694434999999999],[-65.279175000000009,62.696654999999964],[-65.321121000000005,62.694434999999999],[-65.327498999999989,62.691658000000075],[-65.329726999999934,62.685546999999985],[-65.328063999999983,62.666100000000142],[-65.337218999999948,62.666664000000083],[-65.346953999999869,62.675827000000083],[-65.353881999999942,62.684433000000013],[-65.356658999999922,62.69499200000007],[-65.339721999999938,62.837493999999992],[-65.391952999999944,62.843605000000025],[-65.436661000000015,62.819442999999978],[-65.566665999999941,62.811661000000015],[-65.579178000000013,62.811934999999949],[-65.601943999999946,62.817772000000105],[-65.60943599999996,62.820831000000055],[-65.61610399999995,62.824715000000083],[-65.746947999999861,62.917770000000075],[-65.909438999999963,62.925827000000027],[-65.933318999999983,62.955826000000059],[-65.910278000000005,62.967765999999983],[-65.839721999999995,63.020828000000051],[-65.834731999999974,63.026382000000069],[-65.833327999999995,63.03138000000007],[-65.838333000000034,63.033333000000027],[-65.84973100000002,63.032767999999976],[-65.866394000000014,63.028602999999976],[-65.926101999999958,63.008331000000112],[-65.949722000000008,62.997772000000055],[-65.955001999999979,62.994155999999975],[-65.955565999999862,62.990829000000076],[-65.946380999999974,62.983047000000113],[-65.945830999999941,62.978874000000133],[-65.950561999999991,62.975822000000051],[-65.960830999999928,62.974433999999974],[-65.973891999999864,62.973877000000073],[-65.987212999999997,62.974709000000132],[-66.014450000000011,62.978874000000133],[-66.031386999999938,62.984717999999987],[-66.039718999999991,62.988602000000014],[-66.052215999999987,62.996658000000082],[-66.14973399999991,63.059990000000084],[-66.155563000000029,63.081383000000017],[-66.162780999999939,63.089989000000116],[-66.174438000000009,63.096382000000062],[-66.266952999999944,63.130820999999969],[-66.275832999999977,63.133881000000031],[-66.282501000000025,63.133330999999998],[-66.287780999999995,63.12971500000009],[-66.291945999999996,63.125267000000122],[-66.293335000000013,63.120543999999995],[-66.291381999999999,63.116104000000121],[-66.206954999999994,63.040833000000077],[-66.196654999999964,63.031661999999983],[-66.182769999999891,63.023604999999975],[-66.121658000000025,63.00110600000005],[-66.105559999999969,62.993880999999988],[-66.098343,62.990273000000059],[-66.091385000000002,62.983604000000014],[-66.089721999999881,62.978600000000029],[-66.097777999999948,62.952492000000063],[-66.103058000000033,62.946655000000135],[-66.107772999999952,62.943878000000041],[-66.11610399999995,62.940544000000045],[-66.135833999999932,62.936652999999978],[-66.147232000000031,62.936104],[-66.159163999999976,62.936652999999978],[-66.168883999999991,62.938881000000094],[-66.192215000000033,62.954437000000041],[-66.220839999999953,62.969437000000028],[-66.284728999999913,62.990273000000059],[-66.293883999999878,62.992767000000015],[-66.345000999999968,62.999161000000015],[-66.351668999999958,62.998603999999943],[-66.366104000000007,62.992493000000081],[-66.37860099999989,62.992493000000081],[-66.392775999999969,62.994995000000131],[-66.408889999999928,63.001938000000109],[-66.444442999999865,63.020546000000024],[-66.46444699999995,63.032211000000075],[-66.518340999999964,63.065269000000058],[-66.525283999999999,63.074715000000026],[-66.551940999999999,63.17943600000001],[-66.626388999999961,63.252220000000136],[-66.646666999999979,63.326384999999959],[-66.638335999999981,63.340271000000143],[-66.637512000000015,63.349998000000085],[-66.636948000000018,63.35833000000008],[-66.637786999999946,63.362770000000069],[-66.642776000000026,63.372489999999971],[-66.650832999999977,63.374992000000077],[-66.657500999999968,63.374435000000005],[-66.664169000000015,63.371658000000082],[-66.735549999999989,63.299438000000066],[-66.738602000000014,63.294159000000093],[-66.740828999999962,63.288048000000003],[-66.740279999999927,63.283607000000075],[-66.731110000000001,63.274712000000022],[-66.720550999999944,63.266388000000006],[-66.685546999999985,63.248046999999985],[-66.671386999999868,63.242767000000129],[-66.646956999999929,63.239159000000029],[-66.639174999999966,63.236107000000118],[-66.607498000000021,63.21027400000014],[-66.602492999999981,63.205269000000101],[-66.600280999999995,63.200829000000113],[-66.558334000000002,63.087212000000022],[-66.537780999999882,62.998047000000042],[-66.540282999999931,62.994155999999975],[-66.546660999999915,62.991379000000109],[-66.557220000000029,62.99193600000001],[-66.673049999999989,63.023048000000074],[-66.682220000000029,63.026382000000069],[-66.763061999999934,63.083054000000061],[-66.768065999999919,63.087768999999923],[-66.773894999999925,63.096382000000062],[-66.774444999999957,63.100548000000003],[-66.778885000000002,63.143607999999972],[-66.789169000000015,63.21138000000002],[-66.806655999999975,63.272491000000116],[-66.807495000000017,63.273323000000062],[-66.811661000000015,63.274437000000034],[-66.82028200000002,63.273323000000062],[-66.829177999999956,63.271660000000111],[-66.837783999999942,63.267769000000044],[-66.846953999999926,63.25750000000005],[-66.849166999999966,63.251389000000131],[-66.849166999999966,63.245544000000052],[-66.846114999999941,63.229713000000061],[-66.844727000000034,63.22665400000011],[-66.837219000000005,63.21804800000001],[-66.828338999999971,63.209159999999997],[-66.819457999999941,63.200272000000041],[-66.813888999999961,63.196098000000006],[-66.803878999999938,63.186378000000104],[-66.801391999999964,63.182495000000131],[-66.799727999999959,63.177490000000091],[-66.799437999999952,63.172492999999974],[-66.801666000000012,63.166382000000112],[-66.806655999999975,63.160545000000127],[-66.818343999999968,63.154159999999933],[-66.835555999999997,63.149161999999933],[-66.844161999999926,63.147217000000126],[-66.855270000000019,63.147217000000126],[-66.868332000000009,63.148880000000077],[-66.87777699999998,63.151931999999988],[-67.018340999999964,63.238883999999985],[-67.023894999999982,63.243050000000096],[-67.025008999999955,63.246658000000025],[-67.024445000000014,63.250274999999988],[-67.023055999999997,63.252777000000037],[-67.006393000000003,63.262215000000083],[-66.971114999999998,63.389717000000019],[-66.972777999999948,63.394997000000103],[-66.977782999999988,63.399719000000005],[-66.988891999999964,63.402489000000003],[-67.011123999999938,63.399993999999992],[-67.017226999999991,63.397217000000069],[-67.040832999999964,63.33554799999996],[-67.039168999999958,63.330551000000071],[-67.035827999999924,63.325272000000098],[-67.025008999999955,63.311104000000057],[-67.016113000000018,63.296660999999972],[-67.014174999999966,63.286385000000053],[-67.017226999999991,63.281105000000025],[-67.033324999999934,63.275268999999923],[-67.051940999999943,63.273323000000062],[-67.171111999999994,63.273880000000133],[-67.179717999999923,63.275551000000007],[-67.203887999999949,63.28527100000008],[-67.431670999999994,63.412765999999976],[-67.499999999999943,63.442764000000125],[-67.621658000000025,63.548881999999992],[-67.683318999999983,63.619438000000002],[-67.838897999999915,63.729713000000118],[-67.897506999999962,63.753052000000139],[-67.914718999999991,63.759438000000046],[-67.92332499999992,63.761108000000036],[-67.926102000000014,63.759163000000058],[-67.925277999999935,63.75471500000009],[-67.921386999999982,63.744438000000059],[-67.918059999999855,63.739159000000086],[-67.820006999999976,63.596382000000006],[-67.710555999999997,63.458603000000039],[-67.683318999999983,63.431664000000069],[-67.675003000000004,63.4180530000001],[-67.67193599999996,63.412490999999989],[-67.667769999999962,63.403046000000074],[-67.666396999999961,63.394439999999975],[-67.666655999999989,63.388046000000145],[-67.678329000000019,63.373047000000099],[-67.685271999999998,63.368880999999988],[-67.694442999999978,63.366385999999977],[-67.716659999999933,63.363884000000098],[-67.724166999999966,63.364159000000086],[-67.737212999999997,63.366385999999977],[-67.746384000000035,63.369438000000059],[-67.820557000000008,63.400269000000037],[-67.827224999999999,63.405266000000097],[-67.837509000000011,63.424164000000019],[-67.854445999999996,63.452774000000034],[-67.858046999999999,63.457497000000046],[-67.871658000000025,63.464714000000129],[-67.950835999999981,63.506660000000124],[-68.025283999999942,63.540832999999964],[-68.033324999999934,63.543883999999991],[-68.041381999999999,63.546104000000014],[-68.053054999999915,63.545273000000009],[-68.061661000000015,63.54332700000009],[-68.075561999999991,63.544159000000036],[-68.365829000000019,63.64527099999998],[-68.388610999999855,63.655548000000124],[-68.400283999999942,63.663879000000009],[-68.405563000000029,63.668602000000021],[-68.428328999999962,63.696381000000031],[-68.542769999999962,63.732490999999925],[-68.645843999999897,63.747490000000028],[-68.713622999999984,63.742493000000081],[-68.709732000000031,63.738045000000113],[-68.711394999999925,63.734717999999987],[-68.716109999999958,63.732207999999957],[-68.723617999999988,63.729713000000118],[-68.795546999999999,63.728600000000085],[-68.804442999999935,63.730270000000019],[-68.876099000000011,63.744713000000104],[-68.915833000000021,63.757216999999969],[-68.924437999999952,63.758888000000013],[-68.962508999999955,63.759163000000058],[-68.994720000000029,63.755554000000018],[-68.996947999999918,63.75360900000004],[-68.998336999999992,63.745270000000005],[-68.995270000000005,63.741379000000109],[-68.989715999999987,63.737495000000081],[-68.977782999999931,63.729713000000118],[-68.933059999999955,63.711936999999978],[-68.919448999999986,63.704993999999999],[-68.824722000000008,63.643883000000073],[-68.813048999999978,63.635551000000078],[-68.809433000000013,63.630821000000026],[-68.807220000000029,63.625824000000136],[-68.809433000000013,63.621658000000025],[-68.793334999999956,63.589157000000114],[-68.766113000000018,63.556656000000032],[-68.754729999999995,63.548607000000004],[-68.717772999999909,63.528603000000089],[-68.557769999999948,63.45249199999995],[-68.495833999999945,63.421378999999945],[-68.35943599999996,63.344710999999961],[-68.288605000000018,63.298332000000016],[-68.270553999999947,63.284996000000092],[-68.206389999999999,63.227211000000011],[-68.202498999999932,63.216933999999981],[-68.206389999999999,63.212493999999992],[-68.18638599999997,63.188324000000136],[-68.156113000000005,63.158324999999934],[-68.146118000000001,63.150269000000037],[-68.139175000000023,63.148605000000032],[-68.128601000000003,63.148048000000131],[-68.115554999999972,63.15248900000006],[-68.082779000000016,63.163605000000018],[-68.063888999999961,63.163605000000018],[-67.952224999999942,63.145546000000081],[-67.926392000000021,63.141106000000036],[-67.917495999999971,63.137214999999969],[-67.916655999999932,63.133049000000085],[-67.92332499999992,63.129433000000063],[-67.912780999999939,63.083327999999995],[-67.646117999999944,63.100272999999959],[-67.632767000000001,63.09887700000013],[-67.610275000000001,63.094154000000117],[-67.604996000000028,63.089989000000116],[-67.599990999999989,63.084434999999928],[-67.599990999999989,63.078880000000026],[-67.601944000000003,63.073326000000066],[-67.61500499999994,63.063605999999993],[-67.624160999999958,63.061104000000057],[-67.636123999999995,63.059715000000097],[-67.682219999999916,63.057770000000119],[-67.689712999999927,63.058044000000052],[-67.709166999999923,63.056655999999919],[-67.719451999999933,63.054993000000024],[-67.727492999999924,63.051659000000029],[-67.77305599999994,63.025826000000052],[-67.772507000000019,62.962212000000136],[-67.769729999999981,62.958327999999938],[-67.763625999999988,62.955551000000071],[-67.748046999999985,62.953049000000135],[-67.738602000000014,62.953323000000069],[-67.728058000000033,62.954993999999942],[-67.721831999999949,62.96265800000009],[-67.718841999999995,62.964493000000061],[-67.718169999999986,62.967327000000068],[-67.719329999999957,62.970490000000098],[-67.72444200000001,62.984161000000086],[-67.729995999999971,62.98832700000014],[-67.736938000000009,62.995544000000109],[-67.733886999999982,63.000832000000116],[-67.698043999999925,63.020828000000051],[-67.686934999999949,63.026657000000114],[-67.659438999999963,63.034164000000033],[-67.56527699999998,63.049438000000123],[-67.553054999999915,63.048607000000118],[-67.529998999999975,63.03694200000001],[-67.510559000000001,63.024712000000079],[-67.499999999999943,63.015549000000078],[-67.499724999999955,63.007773999999984],[-67.509170999999924,63.001938000000109],[-67.531386999999995,62.995269999999948],[-67.550551999999982,62.99193600000001],[-67.573333999999988,62.990273000000059],[-67.593613000000005,62.987495000000081],[-67.630828999999949,62.976379000000122],[-67.651397999999915,62.967490999999939],[-67.670997999999997,62.944323999999995],[-67.671829000000002,62.941322000000127],[-67.672667999999987,62.937996000000055],[-67.672775000000001,62.923324999999977],[-67.665833000000021,62.918884000000048],[-67.659164000000033,62.916664000000026],[-67.654921999999999,62.917282],[-67.648894999999925,62.921104000000071],[-67.646666999999979,62.925270000000125],[-67.638335999999981,62.931938000000116],[-67.572509999999909,62.963882000000126],[-67.566956000000005,62.965546000000131],[-67.470275999999956,62.985268000000019],[-67.462783999999999,62.985268000000019],[-67.39805599999994,62.967209000000082],[-67.194716999999912,62.870270000000062],[-67.048339999999996,62.771378000000141],[-67.012221999999952,62.73443600000013],[-66.95777899999996,62.681106999999997],[-66.913329999999917,62.669991000000039],[-66.824722000000008,62.679161000000079],[-66.813323999999852,62.679992999999968],[-66.741104000000007,62.673882000000106],[-66.733063000000016,62.671661000000029],[-66.726944000000003,62.668602000000021],[-66.728881999999942,62.666100000000142],[-66.735275000000001,62.662490999999932],[-66.744445999999925,62.660271000000137],[-66.752791999999999,62.656936999999971],[-66.760559000000001,62.653602999999976],[-66.768065999999919,62.648879999999963],[-66.773055999999883,62.643050999999957],[-66.775009000000011,62.636940000000095],[-66.773055999999883,62.632492000000127],[-66.606948999999986,62.604996000000085],[-66.425002999999947,62.445267000000115],[-66.359436000000017,62.447487000000137],[-66.351668999999958,62.444992000000127],[-66.349166999999966,62.441376000000048],[-66.327498999999932,62.384438000000046],[-66.330565999999976,62.379158000000018],[-66.337783999999886,62.374992000000077],[-66.426391999999964,62.349433999999974],[-66.435546999999929,62.349158999999986],[-66.458617999999944,62.35193600000008],[-66.469161999999983,62.35193600000008],[-66.475829999999974,62.348602000000085],[-66.478881999999999,62.343323000000112],[-66.478881999999999,62.338325999999995],[-66.476943999999946,62.335823000000005],[-66.470000999999968,62.332214000000022],[-66.374709999999993,62.286110000000065],[-66.329177999999956,62.267494000000056],[-66.318619000000012,62.264717000000132],[-66.355834999999956,62.307770000000062],[-66.359160999999972,62.312492000000134],[-66.363892000000021,62.323051000000021],[-66.361389000000031,62.326942000000088],[-66.355559999999855,62.331940000000088],[-66.351944000000003,62.334991000000116],[-66.332779000000016,62.341934000000094],[-66.3125,62.344993999999986],[-66.294158999999979,62.344711000000018],[-66.285552999999993,62.343605000000139],[-66.208343999999897,62.332214000000022],[-66.165282999999931,62.291381999999999],[-66.160277999999892,62.271378000000084],[-66.167220999999984,62.254439999999988],[-66.201950000000011,62.260551000000078],[-66.256667999999991,62.266105999999979],[-66.261397999999872,62.263054000000068],[-66.257232999999871,62.259720000000073],[-66.241104000000007,62.253326000000015],[-66.212508999999898,62.245270000000119],[-66.166397000000018,62.235267999999962],[-66.081680000000006,62.226379000000065],[-66.058608999999876,62.2241590000001],[-66.051940999999999,62.224709000000132],[-66.045836999999949,62.227485999999999],[-66.043610000000001,62.233604000000128],[-66.038895000000025,62.239432999999963],[-66.033889999999985,62.244995000000131],[-66.028610000000015,62.248604000000114],[-66.025008999999955,62.249718000000087],[-66.015014999999948,62.251389000000131],[-66,62.247771999999998],[-65.993057000000022,62.244155999999975],[-65.939437999999996,62.208602999999925],[-65.933059999999955,62.204163000000108],[-65.929168999999888,62.198044000000095],[-65.930556999999965,62.193321000000083],[-65.934432999999956,62.191657999999961],[-65.952788999999939,62.189156000000082],[-65.963332999999977,62.186935000000005],[-65.969161999999926,62.184714999999983],[-66.043610000000001,62.151657],[-66.050827000000027,62.147774000000084],[-66.132492000000013,62.089432000000045],[-66.110001000000011,62.017494000000113],[-66.041945999999996,61.958046000000081],[-66.035827999999924,61.952773999999977],[-66.033066000000019,61.95249200000012],[-66.019454999999994,61.954993999999999],[-66.003066999999987,61.962212000000022],[-65.999434999999949,61.963051000000121],[-65.992217999999866,61.962769000000094],[-65.988602000000014,61.958885000000066],[-65.949432000000002,61.912491000000102],[-65.946655000000021,61.906936999999914],[-65.946655000000021,61.899162000000047],[-65.948882999999967,61.89527099999998],[-65.955001999999979,61.890274000000034],[-65.961945000000014,61.886383000000137],[-65.97084000000001,61.883881000000088],[-66.057770000000005,61.869713000000047],[-66.066101000000003,61.868599000000074],[-66.275832999999977,61.858330000000024],[-66.287780999999995,61.858330000000024],[-66.395003999999858,61.87082700000002],[-66.404449,61.872765000000129],[-66.521666999999923,61.896942000000024],[-66.543334999999956,61.898880000000133],[-66.555557000000022,61.901382000000012],[-66.626099000000011,61.917213000000004],[-66.632767000000001,61.918884000000048],[-66.659163999999976,61.933601000000067],[-66.665282999999931,61.941375999999991],[-66.662216000000001,61.946655000000135],[-66.746947999999918,62.00777400000004],[-66.755568999999923,62.011108000000036],[-66.781386999999881,62.015549000000135],[-66.803329000000019,62.016937000000041],[-66.812774999999988,62.016663000000108],[-66.825835999999924,62.011940000000095],[-67.091949,62.030822999999998],[-67.104720999999984,62.032211000000132],[-67.254729999999938,62.078049000000078],[-67.345275999999899,62.119437999999946],[-67.463057999999933,62.139435000000049],[-67.499999999999943,62.138657000000137],[-67.731658999999922,62.158356000000026],[-67.757232999999928,62.160544999999956],[-67.798339999999939,62.166100000000085],[-68.003066999999987,62.213882000000126],[-68.113892000000021,62.216103000000032],[-68.233062999999902,62.219711000000132],[-68.256957999999997,62.220825000000104],[-68.269164999999873,62.223045000000127],[-68.299438000000009,62.232208000000128],[-68.325286999999946,62.234993000000145],[-68.401671999999962,62.239432999999963],[-68.46945199999999,62.242767000000129],[-68.519729999999925,62.244713000000047],[-68.548049999999932,62.248604000000114],[-68.564712999999927,62.251938000000109],[-68.615828999999962,62.263885000000073],[-68.722228999999913,62.302216000000044],[-68.725554999999872,62.30471],[-68.726943999999946,62.307770000000062],[-68.759170999999924,62.328049000000021],[-68.882216999999969,62.360550000000103],[-68.922501000000011,62.365547000000049],[-68.995833999999945,62.373322000000087],[-69.039000999999985,62.381355000000042],[-69.121384000000035,62.410820000000115],[-69.160003999999958,62.425270000000069],[-69.193054000000018,62.438042000000053],[-69.231673999999884,62.455269000000101],[-69.270554000000004,62.478325000000098],[-69.36082499999992,62.536385000000053],[-69.40834000000001,62.569992000000013],[-69.430556999999965,62.584160000000054],[-69.426666000000012,62.55443600000001],[-69.428329000000019,62.548332000000016],[-69.442215000000033,62.547493000000031],[-69.449721999999952,62.551102000000014],[-69.519164999999987,62.602493000000095],[-69.583892999999989,62.651932000000102],[-69.597228999999913,62.662490999999932],[-69.597504000000015,62.665268000000026],[-69.565551999999968,62.718048000000067],[-69.557219999999973,62.726379000000009],[-69.543335000000013,62.732765000000086],[-69.525557999999933,62.738044999999943],[-69.50389100000001,62.741378999999938],[-69.482497999999964,62.763611000000026],[-69.727492999999981,62.779991000000109],[-69.906386999999881,62.768599999999992],[-70.121932999999956,62.748878000000104],[-70.217498999999862,62.747772000000111],[-70.229171999999949,62.748878000000104],[-70.240279999999984,62.751389000000074],[-70.354995999999915,62.788329999999974],[-70.360000999999954,62.790276000000063],[-70.367767000000015,62.793883999999991],[-70.477782999999988,62.848328000000038],[-70.499434999999949,62.864441000000056],[-70.508056999999951,62.865828999999962],[-70.665558000000033,62.880547000000092],[-70.830291999999929,62.896660000000111],[-70.853332999999964,62.899994000000106],[-70.885558999999944,62.907211000000018],[-70.896118000000001,62.91443600000008],[-70.893065999999976,62.917770000000075],[-70.885833999999988,62.920546999999999],[-70.871384000000035,62.924713000000054],[-70.863616999999977,62.925552000000039],[-70.848343,62.924713000000054],[-70.847777999999892,62.947212000000036],[-70.974837999999977,62.989437000000009],[-70.977341000000024,62.983768000000055],[-71.013061999999991,62.989990000000091],[-71.060271999999941,62.981102000000078],[-71.071670999999981,62.979431000000034],[-71.120833999999945,62.979431000000034],[-71.135833999999932,62.980820000000051],[-71.152221999999995,62.985268000000019],[-71.156661999999983,62.989159000000086],[-71.156661999999983,62.999434999999949],[-71.136672999999973,63.028602999999976],[-71.118103000000019,63.032219000000055],[-71.091384999999946,63.029991000000052],[-71.020888999999954,63.044270000000097],[-71.013724999999965,63.043602000000021],[-71.007384999999942,63.043437999999981],[-71.003219999999942,63.044768999999974],[-70.863892000000021,63.112213000000054],[-70.856383999999991,63.139434999999992],[-70.908889999999985,63.17083000000008],[-70.920546999999942,63.168883999999991],[-70.952498999999989,63.162766000000033],[-70.971389999999928,63.158882000000006],[-70.976943999999946,63.15665400000006],[-70.990279999999984,63.148048000000131],[-70.997498000000007,63.141662999999937],[-71.001953000000015,63.128044000000045],[-71.002791999999999,63.123322000000144],[-71.00140399999998,63.118881000000044],[-70.993332000000009,63.112770000000125],[-70.990829000000019,63.108330000000137],[-70.989989999999977,63.102492999999981],[-70.993606999999997,63.098045000000013],[-71.029723999999987,63.071937999999989],[-71.041672000000005,63.069442999999922],[-71.127212999999983,63.071663000000115],[-71.138610999999912,63.073326000000066],[-71.195266999999944,63.031661999999983],[-71.195830999999998,63.026657000000114],[-71.198607999999979,63.019989000000123],[-71.208618000000001,63.01166500000005],[-71.232773000000009,63.001938000000109],[-71.243880999999988,63.00110600000005],[-71.255844000000025,63.001938000000109],[-71.262512000000015,63.004166000000112],[-71.40055799999999,63.051659000000029],[-71.408339999999953,63.055267000000129],[-71.413895000000025,63.060546999999985],[-71.421386999999982,63.071663000000115],[-71.454726999999934,63.10193600000008],[-71.465012000000002,63.103325000000098],[-71.605834999999956,63.134995000000004],[-71.624999999999943,63.140831000000048],[-71.70666499999993,63.174995000000081],[-71.713897999999972,63.179161000000136],[-71.770003999999915,63.25638600000002],[-71.794998000000021,63.326660000000004],[-71.795546999999942,63.384720000000073],[-71.805831999999953,63.382767000000001],[-72.009170999999981,63.391106000000036],[-72.063048999999921,63.396385000000009],[-72.076400999999976,63.398048000000074],[-72.083069000000023,63.400542999999971],[-72.141678000000013,63.436104000000114],[-72.146118000000001,63.439987000000031],[-72.145554000000004,63.44609800000012],[-72.126662999999951,63.450271999999984],[-72.023055999999997,63.448043999999982],[-71.933318999999926,63.443321000000026],[-71.825835999999981,63.435265000000129],[-71.785278000000005,63.431938000000002],[-71.748046999999985,63.428047000000106],[-71.711120999999935,63.422768000000133],[-71.683059999999955,63.419716000000051],[-71.634734999999921,63.419716000000051],[-71.61500499999994,63.422493000000145],[-71.59944200000001,63.42582700000014],[-71.411666999999909,63.485824999999977],[-71.316955999999948,63.530823000000055],[-71.227492999999924,63.598877000000016],[-71.229720999999984,63.604713000000061],[-71.234726000000023,63.608047000000056],[-71.245620999999971,63.610939000000087],[-71.261123999999995,63.612495000000024],[-71.295273000000009,63.612495000000024],[-71.306945999999982,63.611381999999935],[-71.323623999999938,63.605270000000132],[-71.328063999999983,63.602218999999934],[-71.331680000000006,63.598328000000038],[-71.333069000000023,63.583603000000096],[-71.332503999999972,63.581664999999987],[-71.328063999999983,63.576942000000031],[-71.325561999999991,63.571938000000046],[-71.326110999999912,63.570549000000028],[-71.331680000000006,63.565543999999989],[-71.335280999999895,63.564437999999996],[-71.379990000000021,63.565543999999989],[-71.407501000000025,63.567771999999934],[-71.414168999999958,63.570549000000028],[-71.416397000000018,63.572769000000051],[-71.378052000000025,63.595268000000033],[-71.367492999999968,63.601935999999966],[-71.363616999999977,63.607216000000051],[-71.362503000000004,63.61332700000014],[-71.377486999999974,63.632767000000115],[-71.396666999999923,63.635826000000066],[-71.407776000000013,63.635551000000078],[-71.411391999999978,63.634437999999989],[-71.418059999999969,63.629990000000021],[-71.452498999999989,63.604439000000127],[-71.441101000000003,63.590827999999988],[-71.439437999999996,63.588042999999971],[-71.446944999999914,63.580826000000002],[-71.455841000000021,63.57888000000014],[-71.470275999999956,63.578049000000135],[-71.561661000000015,63.580275999999969],[-71.576950000000011,63.581664999999987],[-71.580565999999976,63.583878000000141],[-71.581389999999942,63.59304800000001],[-71.583618000000001,63.649719000000118],[-71.569457999999997,63.675552000000039],[-71.562209999999993,63.685546999999985],[-71.581116000000009,63.714995999999985],[-71.585007000000019,63.71665999999999],[-71.615828999999906,63.722213999999951],[-71.629165999999941,63.723877000000073],[-71.638061999999877,63.721099999999979],[-71.660004000000015,63.706940000000088],[-71.664718999999877,63.703049000000021],[-71.667220999999927,63.697212000000036],[-71.700561999999991,63.696381000000031],[-71.823897999999872,63.78054800000001],[-71.830001999999979,63.784439000000077],[-71.891113000000018,63.80832700000002],[-71.904449,63.809989999999971],[-71.915558000000033,63.810271999999998],[-71.938599000000011,63.808044000000052],[-71.958344000000011,63.802490000000034],[-71.970550999999944,63.795830000000024],[-71.985549999999932,63.781937000000028],[-72.000564999999995,63.761383000000023],[-72.004181000000017,63.752776999999924],[-71.999725000000012,63.748328999999956],[-71.991104000000007,63.74610100000001],[-71.972778000000005,63.748047000000099],[-71.966949,63.75110600000005],[-71.954726999999934,63.76527400000009],[-71.946654999999964,63.770271000000037],[-71.939162999999951,63.772491000000059],[-71.934433000000013,63.772766000000047],[-71.853881999999999,63.761383000000023],[-71.848617999999988,63.759438000000046],[-71.843886999999995,63.755554000000018],[-71.879439999999988,63.681937999999946],[-71.882766999999944,63.678047000000049],[-71.920273000000009,63.655548000000124],[-71.933884000000035,63.649437000000034],[-71.963622999999984,63.649162000000047],[-72.051940999999943,63.67860399999995],[-72.154175000000009,63.735550000000103],[-72.169448999999986,63.748604],[-72.21305799999999,63.683876000000112],[-72.212783999999942,63.680550000000039],[-72.213897999999915,63.677772999999945],[-72.218886999999995,63.673882000000049],[-72.223891999999864,63.672218000000044],[-72.234160999999972,63.670273000000066],[-72.245269999999948,63.669715999999994],[-72.28694200000001,63.671660999999972],[-72.317504999999983,63.674164000000133],[-72.324172999999973,63.676658999999972],[-72.327498999999989,63.67971799999998],[-72.363891999999964,63.749435000000005],[-72.363616999999977,63.754440000000045],[-72.357772999999952,63.761383000000023],[-72.352782999999988,63.76527400000009],[-72.342498999999975,63.771378000000141],[-72.324722000000008,63.776939000000027],[-72.317779999999914,63.777771000000087],[-72.302779999999927,63.776657000000114],[-72.291381999999942,63.773605000000032],[-72.270003999999915,63.787216000000001],[-72.215012000000002,63.867767000000072],[-72.209732000000031,63.893051000000071],[-72.223052999999993,63.92943600000001],[-72.232772999999895,63.948325999999952],[-72.238892000000021,63.952492000000063],[-72.246384000000035,63.950272000000041],[-72.250564999999938,63.947769000000051],[-72.36471599999993,63.845543000000134],[-72.383056999999951,63.815543999999932],[-72.376388999999961,63.812209999999936],[-72.371658000000025,63.809158000000025],[-72.366942999999992,63.804710000000057],[-72.365554999999915,63.800270000000069],[-72.363051999999925,63.791107000000068],[-72.368056999999965,63.782494000000099],[-72.372771999999998,63.778603000000032],[-72.436110999999926,63.781661999999983],[-72.515838999999971,63.786384999999996],[-72.526397999999915,63.787773000000072],[-72.531386999999995,63.791107000000068],[-72.532227000000034,63.796661000000029],[-72.531386999999995,63.799438000000123],[-72.519729999999925,63.804710000000057],[-72.496658000000025,63.803604000000064],[-72.474166999999909,63.804710000000057],[-72.463897999999972,63.806655999999975],[-72.459731999999974,63.809158000000025],[-72.456116000000009,63.814438000000109],[-72.456954999999994,63.815826000000015],[-72.465011999999945,63.819160000000011],[-72.521117999999944,63.84027100000003],[-72.537216000000001,63.844154000000003],[-72.585555999999997,63.852776000000006],[-72.634734999999978,63.852493000000038],[-72.637512000000015,63.873604000000057],[-72.641112999999962,63.904434000000094],[-72.611663999999962,63.943046999999979],[-72.592772999999852,64.018051000000128],[-72.592772999999852,64.022217000000069],[-72.658339999999896,64.076660000000004],[-72.664718999999934,64.080551000000071],[-72.67471299999994,64.083327999999995],[-72.682495000000017,64.079711999999972],[-72.685546999999929,64.076385000000016],[-72.688048999999978,64.070540999999992],[-72.704726999999991,64.015549000000078],[-72.705841000000021,64.009155000000021],[-72.702498999999932,64.005553999999961],[-72.696945000000028,64.003052000000082],[-72.668335000000013,63.996101000000124],[-72.660004000000015,63.992493000000024],[-72.658614999999998,63.987770000000069],[-72.666396999999961,63.980545000000006],[-72.678878999999938,63.972488000000055],[-72.692490000000021,63.966660000000104],[-72.699722000000008,63.964439000000027],[-72.720000999999968,63.961105000000032],[-72.753341999999918,64.000274999999988],[-72.758346999999958,64.004166000000055],[-72.779449,64.010544000000039],[-72.836120999999991,64.019714000000079],[-72.931380999999988,64.052475000000015],[-72.94027699999998,64.058594000000028],[-72.941375999999991,64.063599000000067],[-72.93971299999987,64.067764000000068],[-72.933318999999983,64.076385000000016],[-72.925551999999868,64.084152000000131],[-72.919723999999917,64.086929000000055],[-72.911117999999931,64.08859300000006],[-72.888061999999991,64.086105000000089],[-72.878326000000015,64.086655000000121],[-72.874435000000005,64.08859300000006],[-72.870833999999945,64.093872000000033],[-72.868880999999931,64.099152000000117],[-72.868332000000009,64.108321999999987],[-72.897232000000031,64.156937000000028],[-72.905272999999909,64.164993000000095],[-72.911666999999966,64.168868999999972],[-73.223891999999921,64.31164600000011],[-73.271117999999888,64.283875000000023],[-73.267226999999991,64.273880000000133],[-73.270003999999972,64.265823000000125],[-73.273055999999997,64.26249700000011],[-73.279174999999952,64.258606000000043],[-73.339721999999938,64.258040999999992],[-73.365829000000019,64.261932000000058],[-73.380554000000018,64.268600000000049],[-73.384170999999981,64.272491000000116],[-73.386947999999904,64.277480999999966],[-73.417769999999905,64.371093999999914],[-73.415558000000033,64.445816000000036],[-73.326950000000011,64.476089000000002],[-73.167770000000019,64.576660000000118],[-73.164718999999934,64.579712000000029],[-73.164718999999934,64.60554499999995],[-73.165557999999976,64.607483000000116],[-73.169448999999872,64.609984999999995],[-73.296950999999922,64.656937000000084],[-73.302779999999927,64.658875000000023],[-73.309433000000013,64.658600000000035],[-73.342223999999931,64.644150000000081],[-73.346664000000033,64.641098],[-73.347504000000015,64.63499500000006],[-73.341110000000015,64.626083000000051],[-73.326110999999969,64.609984999999995],[-73.314437999999939,64.598038000000031],[-73.308043999999995,64.593322999999998],[-73.302215999999987,64.583878000000084],[-73.298614999999927,64.559418000000107],[-73.299163999999962,64.544982999999945],[-73.303328999999962,64.538315000000011],[-73.30749499999996,64.535812000000021],[-73.315276999999924,64.532211000000132],[-73.32417299999986,64.52998400000007],[-73.424164000000019,64.509995000000004],[-73.463333000000034,64.502486999999974],[-73.47222899999997,64.504440000000102],[-73.475829999999917,64.508040999999935],[-73.477218999999991,64.512207000000046],[-73.473052999999993,64.553589000000045],[-73.448714999999936,64.565422000000012],[-73.467223999999987,64.612762000000089],[-73.595000999999968,64.629699999999957],[-73.655563000000029,64.631653000000085],[-73.655563000000029,64.623596000000134],[-73.667496000000028,64.577209000000039],[-73.750289999999893,64.536377000000073],[-73.75389100000001,64.535263000000043],[-73.764450000000011,64.537491000000045],[-73.787780999999939,64.548035000000084],[-73.803054999999915,64.555251999999996],[-73.821121000000005,64.567490000000078],[-73.837783999999999,64.579712000000029],[-73.84944200000001,64.587493999999992],[-73.861388999999974,64.594436999999971],[-73.876662999999951,64.600815000000125],[-73.886947999999961,64.603592000000049],[-73.910277999999948,64.605819999999994],[-73.920272999999952,64.605255000000113],[-73.929442999999992,64.602203000000031],[-73.932495000000017,64.593597000000102],[-73.931106999999997,64.583878000000084],[-73.844726999999978,64.501937999999996],[-73.925551999999925,64.460265999999933],[-73.972777999999892,64.430267000000129],[-73.999434999999892,64.328048999999965],[-74.062774999999988,64.334427000000119],[-74.102218999999877,64.367476999999951],[-74.128051999999911,64.533051],[-74.127486999999974,64.534424000000115],[-74.105835000000013,64.535812000000021],[-74.082229999999925,64.534988000000055],[-74.065276999999924,64.533051],[-74.055557000000022,64.610535000000027],[-74.050551999999982,64.724991000000045],[-74.053878999999938,64.728592000000106],[-74.060546999999985,64.733322000000101],[-74.089721999999995,64.751099000000011],[-74.096114999999941,64.751389000000017],[-74.114440999999943,64.745819000000097],[-74.120543999999995,64.74192800000003],[-74.195266999999888,64.663040000000024],[-74.208892999999932,64.614151000000049],[-74.212783999999999,64.602768000000083],[-74.224715999999944,64.592484000000013],[-74.240279999999984,64.58027600000014],[-74.381942999999922,64.569992000000127],[-74.390288999999996,64.569716999999912],[-74.397507000000019,64.572220000000073],[-74.535278000000005,64.622208000000057],[-74.657500999999968,64.700272000000098],[-74.701675000000023,64.732483000000002],[-74.704177999999899,64.735535000000084],[-74.700835999999867,64.740265000000136],[-74.683318999999926,64.758331000000112],[-74.567504999999983,64.832764000000054],[-74.501113999999973,64.833603000000039],[-74.487777999999935,64.834152000000017],[-74.478881999999999,64.835815000000082],[-74.476395000000025,64.838882000000012],[-74.476943999999946,64.84165999999999],[-74.540557999999976,64.889160000000004],[-74.545836999999949,64.892212000000086],[-74.561110999999926,64.896102999999982],[-74.621932999999956,64.903869999999927],[-74.639998999999932,64.903595000000109],[-74.648620999999935,64.901382000000126],[-74.660277999999892,64.896378000000027],[-74.732773000000009,64.854705999999965],[-74.741378999999938,64.847488000000112],[-74.743057000000022,64.842209000000139],[-74.741942999999992,64.835815000000082],[-74.738892000000021,64.831375000000094],[-74.72222899999997,64.822220000000016],[-74.714721999999938,64.815535999999952],[-74.710007000000019,64.810532000000023],[-74.706664999999987,64.800537000000077],[-74.706664999999987,64.794983000000116],[-74.710830999999985,64.782761000000107],[-74.718886999999938,64.773604999999975],[-74.726394999999968,64.770828000000108],[-74.837219000000005,64.778595000000053],[-74.868332000000009,64.781936999999971],[-74.893341000000021,64.784714000000065],[-74.902221999999938,64.78804000000008],[-74.909164000000033,64.791367000000037],[-74.915833000000021,64.795822000000044],[-74.924438000000009,64.799149],[-74.944153000000028,64.803589000000045],[-74.955001999999979,64.804428000000144],[-74.975554999999872,64.801376000000062],[-74.985274999999945,64.795822000000044],[-74.985549999999876,64.790268000000083],[-74.982498000000021,64.785263000000043],[-74.978881999999999,64.781372000000147],[-74.963332999999977,64.773604999999975],[-74.834732000000031,64.716385000000116],[-74.733321999999987,64.685531999999967],[-74.694442999999978,64.676376000000005],[-74.675551999999982,64.670258000000047],[-74.660003999999958,64.663879000000009],[-74.613051999999925,64.640274000000034],[-74.545273000000009,64.602203000000031],[-74.512787000000003,64.583603000000096],[-74.475280999999939,64.561371000000008],[-74.470000999999968,64.557479999999941],[-74.47084000000001,64.555542000000003],[-74.513625999999874,64.533325000000104],[-74.520279000000016,64.532211000000132],[-74.585830999999985,64.480270000000075],[-74.685546999999985,64.391936999999984],[-74.685821999999973,64.371093999999914],[-74.797774999999945,64.380813999999987],[-74.974716000000001,64.416091999999992],[-74.985274999999945,64.418869000000086],[-75.010558999999944,64.429977000000122],[-75.056380999999988,64.452208999999982],[-75.142501999999979,64.483321999999987],[-75.174712999999997,64.492752000000053],[-75.182769999999948,64.492477000000065],[-75.188598999999954,64.489426000000037],[-75.188888999999904,64.483321999999987],[-75.187209999999993,64.473602000000085],[-75.182495000000017,64.468323000000112],[-75.177215999999987,64.464705999999978],[-75.151397999999915,64.460265999999933],[-75.146117999999944,64.457214000000022],[-75.14416499999993,64.453049000000021],[-75.15055799999999,64.447204999999997],[-75.154448999999943,64.444702000000063],[-75.199721999999952,64.428040000000067],[-75.207779000000016,64.427765000000022],[-75.21556099999998,64.428864000000033],[-75.224166999999909,64.432205000000067],[-75.295272999999952,64.46665999999999],[-75.323897999999986,64.481934000000081],[-75.332503999999972,64.490814000000114],[-75.344161999999926,64.49914600000011],[-75.34973100000002,64.50221300000004],[-75.381667999999991,64.513611000000026],[-75.409164000000033,64.522766000000104],[-75.479720999999927,64.53915399999994],[-75.490829000000019,64.539703000000088],[-75.566100999999946,64.549988000000042],[-75.666396999999961,64.563873000000115],[-75.693329000000006,64.569992000000127],[-75.703887999999949,64.572769000000051],[-75.721389999999985,64.579163000000051],[-75.736938000000009,64.586104999999975],[-75.74722300000002,64.594436999999971],[-75.763625999999988,64.604980000000126],[-75.773894999999925,64.608322000000044],[-75.796951000000035,64.612198000000149],[-75.824172999999973,64.611649],[-75.843063000000029,64.607758000000103],[-75.847228999999913,64.604430999999977],[-75.837219000000005,64.561371000000008],[-75.823623999999938,64.535812000000021],[-75.818893000000003,64.530823000000055],[-75.807495000000017,64.525269000000037],[-75.729172000000005,64.503051999999968],[-75.644729999999925,64.468872000000033],[-75.639449999999954,64.46527100000003],[-75.630554000000018,64.457214000000022],[-75.631667999999991,64.453598],[-75.636123999999938,64.449142000000052],[-75.641388000000006,64.448028999999963],[-75.696655000000021,64.43942300000009],[-75.708343999999954,64.437759000000028],[-75.727782999999931,64.442474000000061],[-75.746947999999975,64.453049000000021],[-75.765839000000028,64.46527100000003],[-75.77305599999994,64.467484000000127],[-75.874709999999993,64.486923000000047],[-75.895279000000016,64.48803700000002],[-75.908339999999953,64.487198000000035],[-75.920273000000009,64.484420999999998],[-75.922500999999954,64.481094000000041],[-75.910552999999993,64.478317000000118],[-75.875274999999988,64.47387700000013],[-75.857772999999952,64.468048000000067],[-75.720839999999953,64.383331000000055],[-75.717223999999987,64.379700000000014],[-75.718886999999995,64.374419999999986],[-75.723327999999924,64.369705000000124],[-75.726944000000003,64.367203000000018],[-75.83805799999999,64.369141000000013],[-75.861664000000019,64.371093999999914],[-75.950561999999934,64.399155000000007],[-76.043883999999991,64.368317000000047],[-76.253615999999965,64.35775799999999],[-76.264450000000011,64.319153000000028],[-76.214721999999995,64.314986999999974],[-76.205565999999976,64.313309000000004],[-76.196655000000021,64.310806000000071],[-76.188323999999852,64.306931000000077],[-76.189712999999927,64.301376000000005],[-76.197219999999959,64.29693600000013],[-76.205840999999964,64.294708000000014],[-76.300551999999982,64.278869999999984],[-76.484725999999966,64.266662999999994],[-76.493606999999997,64.268600000000049],[-76.503066999999987,64.275269000000094],[-76.506957999999941,64.284424000000001],[-76.505568999999923,64.289153999999996],[-76.503615999999909,64.291091999999935],[-76.502501999999936,64.295258000000047],[-76.506667999999934,64.297485000000108],[-76.541381999999999,64.304703000000075],[-76.591949,64.31053199999991],[-76.705840999999964,64.300812000000008],[-76.719451999999933,64.296646000000123],[-76.733886999999868,64.290543000000014],[-76.736664000000019,64.285812000000078],[-76.738892000000021,64.276382000000012],[-76.721663999999976,64.238312000000064],[-76.714721999999995,64.233870999999965],[-76.706115999999952,64.231369000000086],[-76.684722999999963,64.227768000000026],[-76.674438000000009,64.224990999999932],[-76.667220999999927,64.221924000000058],[-76.660278000000005,64.218322999999998],[-76.654723999999931,64.209152000000017],[-76.654723999999931,64.196640000000059],[-76.65834000000001,64.189972000000068],[-76.662215999999944,64.186646000000053],[-76.670546999999942,64.184143000000063],[-76.84722899999997,64.23054500000012],[-76.968337999999903,64.259720000000016],[-77.138335999999981,64.289429000000041],[-77.276108000000022,64.256378000000097],[-77.296111999999937,64.251938000000052],[-77.327498999999989,64.246367999999961],[-77.351944000000003,64.243866000000082],[-77.366104000000007,64.243866000000082],[-77.379990000000021,64.2452550000001],[-77.381377999999984,64.246643000000006],[-77.382216999999969,64.2494200000001],[-77.381377999999984,64.253601000000003],[-77.378875999999934,64.256943000000092],[-77.434158000000025,64.320267000000001],[-77.588332999999977,64.368317000000047],[-77.652221999999938,64.388046000000088],[-77.660278000000005,64.386383000000023],[-77.664444000000003,64.3836060000001],[-77.665832999999907,64.376923000000147],[-77.664718999999991,64.374146000000053],[-77.658889999999985,64.364990000000091],[-77.67971799999998,64.321105999999986],[-77.747222999999963,64.337769000000037],[-77.831389999999942,64.412490999999989],[-77.970276000000013,64.454436999999928],[-78.178054999999972,64.567490000000078],[-78.183318999999926,64.572495000000117],[-78.168578999999966,64.626197999999931],[-78.160552999999993,64.690536000000066],[-78.184433000000013,64.731093999999985],[-78.073623999999938,64.813599000000124],[-78.064437999999996,64.849426000000051],[-78.065276999999867,64.853591999999992],[-78.06639100000001,64.855820000000108],[-78.073623999999938,64.859420999999998],[-78.102492999999981,64.868866000000025],[-78.117217999999923,64.876082999999994],[-78.120834000000002,64.881088000000034],[-78.129715000000033,64.893875000000037],[-78.146118000000001,64.938309000000004],[-78.148055999999997,64.943862999999965],[-78.149733999999967,64.952209000000039],[-78.145279000000016,64.957489000000123],[-77.973052999999993,65.04136699999998],[-77.67971799999998,65.123306000000014],[-77.543610000000001,65.139709000000096],[-77.50306699999993,65.138596000000007],[-77.488326999999913,65.139434999999935],[-77.479720999999984,65.141098000000056],[-77.344726999999978,65.173309000000131],[-77.328612999999962,65.178864000000033],[-77.322783999999956,65.18331900000004],[-77.315825999999959,65.190536000000009],[-77.313048999999978,65.195816000000036],[-77.315552000000025,65.199417000000096],[-77.3824919999999,65.247482000000105],[-77.397232000000031,65.254990000000134],[-77.422774999999945,65.264435000000049],[-77.444716999999912,65.275543000000027],[-77.498046999999985,65.306641000000013],[-77.513061999999934,65.318877999999984],[-77.515015000000005,65.325820999999962],[-77.512222000000008,65.330551000000014],[-77.471114999999998,65.371368000000018],[-77.466949,65.375259000000085],[-77.461120999999878,65.379149999999981],[-77.452498999999875,65.380813999999987],[-77.438048999999921,65.379700000000014],[-77.41361999999998,65.371643000000063],[-77.402495999999985,65.369141000000127],[-77.345839999999896,65.358597000000088],[-77.337783999999999,65.357483000000116],[-77.323058999999944,65.357757999999933],[-77.30610699999994,65.359711000000061],[-77.295546999999999,65.361922999999933],[-77.291945999999939,65.363876000000062],[-77.287505999999951,65.367751999999996],[-77.287216000000001,65.375259000000085],[-77.289992999999924,65.378860000000145],[-77.295273000000009,65.383331000000055],[-77.319457999999997,65.393326000000002],[-77.326950000000011,65.395538000000045],[-77.341949,65.401657000000057],[-77.367492999999911,65.412491000000102],[-77.398620999999935,65.426651000000049],[-77.420272999999952,65.439972000000012],[-77.428329000000019,65.447754000000145],[-77.434432999999956,65.456940000000088],[-77.430556999999908,65.458878000000027],[-77.421660999999972,65.461380000000077],[-77.385559000000001,65.468048000000067],[-77.336670000000026,65.471375000000023],[-77.265288999999882,65.471923999999944],[-77.238051999999925,65.469437000000084],[-77.154449,65.445815999999979],[-77.134734999999978,65.439423000000033],[-77.124434999999892,65.434143000000006],[-77.115828999999962,65.429703000000131],[-77.111663999999962,65.426085999999998],[-77.111114999999927,65.421371000000136],[-77.106383999999991,65.413605000000075],[-77.09944200000001,65.409149000000014],[-77.08666999999997,65.407211000000075],[-76.962783999999999,65.407211000000075],[-76.956954999999994,65.410537999999974],[-76.952498999999989,65.414993000000038],[-76.956116000000009,65.421371000000136],[-76.955565999999976,65.422759999999982],[-76.951675000000023,65.425262000000032],[-76.944442999999978,65.427765000000022],[-76.920837000000006,65.429428000000144],[-76.849990999999989,65.428313999999943],[-76.824722000000008,65.425262000000032],[-76.626937999999939,65.398880000000133],[-76.361937999999952,65.342209000000025],[-76.235001000000011,65.312759000000142],[-76.164444000000003,65.296097000000145],[-76.072509999999909,65.277205999999921],[-75.96665999999999,65.255829000000119],[-75.953888000000006,65.255264000000068],[-75.925277999999935,65.257217000000026],[-75.920273000000009,65.258330999999998],[-75.912215999999944,65.257217000000026],[-75.898345999999947,65.253875999999991],[-75.805556999999965,65.229705999999965],[-75.785552999999936,65.224426000000108],[-75.769164999999987,65.21887200000009],[-75.765014999999892,65.216660000000047],[-75.760009999999909,65.210815000000139],[-75.741378999999995,65.173874000000012],[-75.739989999999921,65.168319999999994],[-75.570847000000015,65.120818999999926],[-75.528610000000015,65.108871000000079],[-75.475006000000008,65.086105000000089],[-75.46665999999999,65.082214000000022],[-75.457229999999925,65.074707000000046],[-75.446945000000028,65.06581100000011],[-75.428054999999972,65.048324999999977],[-75.424438000000009,65.043869000000086],[-75.410552999999936,65.024704000000099],[-75.415557999999976,64.977478000000076],[-75.420273000000009,64.972214000000065],[-75.428054999999972,64.968322999999998],[-75.496947999999975,64.940536000000066],[-75.507232999999985,64.938309000000004],[-75.51916499999993,64.936919999999986],[-75.533614999999941,64.936919999999986],[-75.557220000000029,64.940262000000132],[-75.634734999999921,64.94720500000011],[-75.654448999999943,64.946365000000071],[-75.663054999999929,64.945251000000098],[-75.667496000000028,64.940811000000053],[-75.601944000000003,64.867752000000053],[-75.594161999999983,64.860259999999926],[-75.587508999999898,64.856644000000074],[-75.56806899999998,64.850540000000024],[-75.555557000000022,64.848602000000085],[-75.461394999999925,64.811645999999996],[-75.389175000000023,64.736099000000024],[-75.373046999999985,64.714996000000099],[-75.316665999999941,64.719437000000028],[-75.308333999999888,64.721099999999979],[-75.298186999999984,64.725769000000128],[-75.294723999999974,64.728043000000127],[-75.291381999999885,64.733871000000079],[-75.289444000000003,64.739975000000072],[-75.291381999999885,64.74443100000002],[-75.30221599999993,64.751099000000011],[-75.310546999999929,64.754990000000078],[-75.329726999999991,64.761107999999979],[-75.333892999999989,64.763321000000133],[-75.344161999999926,64.772217000000069],[-75.373885999999914,64.833054000000118],[-75.357223999999917,64.897766000000104],[-75.422775000000001,64.890273999999977],[-75.451675000000023,64.875259000000028],[-75.460830999999985,64.87164300000012],[-75.469727000000034,64.869431000000077],[-75.55749499999996,64.87414600000011],[-75.563323999999966,64.877197000000137],[-75.565552000000025,64.879425000000083],[-75.567504999999983,64.883605999999986],[-75.56527699999998,64.886932000000058],[-75.473891999999921,64.935806000000014],[-75.390288999999996,64.979430999999977],[-75.384734999999978,64.981934000000138],[-75.376098999999897,64.983322000000044],[-75.363051999999982,64.98414600000001],[-75.353332999999964,64.983597000000088],[-75.344161999999926,64.981094000000098],[-75.335555999999997,64.977768000000083],[-75.264175000000023,64.966095000000053],[-75.196105999999986,65.068604000000107],[-75.189163000000008,65.079712000000086],[-75.185546999999872,65.091369999999927],[-75.186934999999949,65.101653999999996],[-75.192490000000021,65.105545000000063],[-75.196655000000021,65.107207999999957],[-75.212508999999955,65.109421000000111],[-75.225554999999986,65.109421000000111],[-75.240828999999962,65.10832199999993],[-75.259170999999981,65.102203000000088],[-75.263625999999988,65.0977630000001],[-75.265563999999927,65.09165999999999],[-75.262512000000015,65.080551000000071],[-75.260009999999852,65.072769000000108],[-75.261123999999995,65.059142999999949],[-75.263061999999934,65.052199999999971],[-75.279998999999975,65.035262999999986],[-75.299727999999959,65.024704000000099],[-75.348617999999931,65.003876000000048],[-75.360001000000011,65.003876000000048],[-75.367492999999968,65.006378000000097],[-75.373046999999985,65.009430000000009],[-75.378875999999991,65.016663000000051],[-75.379165999999998,65.021378000000084],[-75.381103999999937,65.025818000000072],[-75.402495999999871,65.055817000000104],[-75.410003999999958,65.063873000000001],[-75.425551999999982,65.077208999999925],[-75.441375999999991,65.089157],[-75.448043999999982,65.094147000000021],[-75.516402999999855,65.138596000000007],[-75.728058000000033,65.224151999999947],[-75.761947999999961,65.237762000000032],[-75.781676999999945,65.243042000000116],[-75.835555999999997,65.255264000000068],[-75.864166000000012,65.258330999999998],[-75.890563999999983,65.269150000000081],[-75.939712999999983,65.292480000000012],[-75.943877999999984,65.29525799999999],[-75.950835999999981,65.316376000000105],[-75.950287000000003,65.318329000000062],[-75.941101000000003,65.321380999999974],[-75.931106999999884,65.322220000000129],[-75.904449,65.322220000000129],[-75.873885999999914,65.320541000000105],[-75.857772999999952,65.319153000000028],[-75.603057999999976,65.295531999999923],[-75.592223999999931,65.287201000000039],[-75.575561999999934,65.278046000000018],[-75.566390999999896,65.274994000000049],[-75.555267000000015,65.273605000000089],[-75.495834000000002,65.269150000000081],[-75.48443599999996,65.268326000000116],[-75.211945000000014,65.250549000000035],[-75.186661000000015,65.251938000000052],[-75.153885000000002,65.256943000000092],[-75.114440999999999,65.266387999999949],[-75.101669000000015,65.271378000000027],[-75.093886999999938,65.274994000000049],[-75.083618000000001,65.286102000000085],[-75.081679999999892,65.292206000000078],[-75.070847000000015,65.330276000000026],[-75.090835999999911,65.355545000000006],[-75.109160999999858,65.379974000000118],[-75.110824999999977,65.384720000000073],[-75.111114999999984,65.388885000000073],[-75.110549999999932,65.391098],[-75.108046999999942,65.393051000000128],[-75.097778000000005,65.394989000000066],[-75.08277899999996,65.394989000000066],[-74.823623999999938,65.377472000000068],[-74.660552999999993,65.346374999999966],[-74.645844000000011,65.341370000000097],[-74.635009999999966,65.338593000000003],[-74.624161000000015,65.336655000000064],[-74.58944699999995,65.332489000000123],[-74.546660999999915,65.33137499999998],[-74.524445000000014,65.333328000000108],[-74.508621000000005,65.336655000000064],[-74.496947999999975,65.340820000000065],[-74.357773000000009,65.398604999999975],[-74.347838999999965,65.407181000000037],[-74.323897999999986,65.437759000000028],[-74.318892999999946,65.447204999999997],[-74.31527699999998,65.458037999999988],[-74.311385999999914,65.463882000000012],[-74.182770000000005,65.525269000000037],[-74.105835000000013,65.534988000000055],[-73.845276000000013,65.532211000000132],[-73.791381999999999,65.524428999999998],[-73.767776000000026,65.520828000000108],[-73.747222999999963,65.517487000000074],[-73.736937999999952,65.514709000000096],[-73.732772999999952,65.511932000000002],[-73.731383999999935,65.506943000000035],[-73.730835000000013,65.504166000000112],[-73.735001000000011,65.501662999999951],[-73.740279999999984,65.496933000000126],[-73.740829000000019,65.490814000000114],[-73.736937999999952,65.487761999999975],[-73.711670000000026,65.471099999999979],[-73.703063999999927,65.466934000000094],[-73.694152999999915,65.464432000000045],[-73.663895000000025,65.456940000000088],[-73.651397999999972,65.454711999999915],[-73.641113000000018,65.455261000000064],[-73.559997999999894,65.462494000000049],[-73.500564999999938,65.474426000000051],[-73.56361400000003,65.562194999999974],[-73.618332000000009,65.619705000000067],[-73.662215999999944,65.658599999999979],[-73.684157999999911,65.715271000000087],[-73.68499799999995,65.730545000000006],[-73.704726999999934,65.758041000000048],[-73.709731999999917,65.762496999999996],[-73.720550999999887,65.769440000000145],[-73.810821999999973,65.811096000000134],[-73.841110000000015,65.81999200000007],[-73.884170999999981,65.821930000000009],[-73.886123999999995,65.821381000000031],[-73.923614999999984,65.824432000000058],[-73.931670999999938,65.825546000000031],[-73.942490000000021,65.828323000000125],[-74.011947999999961,65.854705999999908],[-74.029174999999952,65.861923000000047],[-74.058043999999938,65.875534000000016],[-74.129439999999988,65.924697999999978],[-74.258895999999993,66.001663000000065],[-74.296950999999979,66.018326000000116],[-74.337783999999999,66.036652000000117],[-74.37388599999997,66.053863999999976],[-74.388061999999934,66.06164600000011],[-74.425551999999925,66.084717000000126],[-74.444992000000013,66.096939000000077],[-74.455565999999862,66.105820000000051],[-74.471389999999985,66.127197000000081],[-74.472777999999948,66.133041000000048],[-74.472504000000015,66.139160000000118],[-74.470000999999968,66.145828000000051],[-74.466110000000015,66.151932000000102],[-74.446655000000021,66.168594000000098],[-74.434432999999956,66.178314],[-74.406113000000005,66.195816000000036],[-74.366652999999928,66.214157000000057],[-74.342223999999987,66.22526600000009],[-74.316390999999953,66.235259999999926],[-74.306655999999975,66.238876000000005],[-74.187209999999993,66.269713999999965],[-74.077788999999939,66.300812000000008],[-73.86082499999992,66.388321000000076],[-73.744995000000017,66.437759000000028],[-73.666107000000011,66.471924000000115],[-73.606658999999979,66.495254999999986],[-73.529998999999975,66.522766000000047],[-73.460555999999997,66.544434000000138],[-73.444153000000028,66.551086000000055],[-73.430556999999908,66.55831900000004],[-73.420272999999952,66.571655000000021],[-73.418335000000013,66.579711999999972],[-73.418335000000013,66.584717000000012],[-73.416396999999961,66.589981000000023],[-73.400283999999942,66.611649000000114],[-73.396956999999986,66.61554000000001],[-73.379714999999976,66.632477000000051],[-73.351944000000003,66.649994000000049],[-73.328339000000028,66.6602630000001],[-73.296386999999982,66.665817000000061],[-73.267226999999991,66.672760000000096],[-73.108611999999937,66.723311999999964],[-73.00111400000003,66.815536000000122],[-72.87388599999997,66.931930999999963],[-72.852492999999981,66.968597000000102],[-72.837783999999999,66.998031999999967],[-72.831389999999885,67.013321000000076],[-72.831115999999952,67.018326000000116],[-72.828063999999927,67.024994000000049],[-72.824172999999973,67.029434000000094],[-72.806655999999919,67.037201000000039],[-72.791671999999949,67.043320000000051],[-72.738891999999908,67.063034000000016],[-72.716659999999933,67.06860400000005],[-72.68499799999995,67.076096000000007],[-72.626099000000011,67.084717000000126],[-72.550827000000027,67.082763999999997],[-72.525832999999977,67.083328000000108],[-72.464172000000019,67.08998100000008],[-72.43110699999994,67.096099999999922],[-72.399445000000014,67.103592000000049],[-72.368606999999997,67.112487999999985],[-72.351394999999968,67.119705000000124],[-72.337783999999999,67.126373000000058],[-72.315552000000025,67.139435000000105],[-72.282501000000025,67.161102000000142],[-72.276108000000022,67.166930999999977],[-72.258346999999901,67.24803199999991],[-72.28694200000001,67.290817000000061],[-72.363616999999977,67.353317000000004],[-72.436385999999914,67.472214000000122],[-72.481110000000001,67.609711000000004],[-72.48582499999992,67.623031999999967],[-72.490829000000019,67.62831100000011],[-72.49749799999995,67.633040999999935],[-72.508895999999993,67.63638300000008],[-72.597778000000005,67.639709000000096],[-72.666396999999961,67.684143000000063],[-72.676391999999964,67.693862999999965],[-72.677779999999984,67.699416999999983],[-72.675002999999947,67.70526099999995],[-72.668883999999935,67.710541000000035],[-72.661666999999909,67.714706000000035],[-72.613892000000021,67.735259999999982],[-72.596953999999926,67.740814],[-72.591948999999886,67.74331699999999],[-72.583327999999881,67.750274999999988],[-72.608886999999982,67.785812000000078],[-72.612503000000004,67.790268000000026],[-72.619445999999925,67.794708000000014],[-72.735001000000011,67.841659999999933],[-72.820007000000032,67.851089000000115],[-72.833327999999995,67.849991000000045],[-72.843886999999938,67.850815000000011],[-72.848052999999936,67.853592000000106],[-72.942215000000033,67.925262000000089],[-72.944442999999978,67.928040000000067],[-72.944992000000013,67.93081699999999],[-72.94387799999987,67.937759000000085],[-72.942490000000021,67.941085999999984],[-72.929992999999968,67.948867999999948],[-72.922774999999945,67.952774000000034],[-72.904175000000009,67.959717000000012],[-72.902495999999928,67.963882000000012],[-72.896117999999944,68.014160000000004],[-72.910552999999993,68.054153000000042],[-72.913895000000025,68.060806000000014],[-72.941100999999946,68.078323000000069],[-72.956954999999994,68.094986000000119],[-72.981110000000001,68.139160000000061],[-72.992767000000015,68.198593000000074],[-72.993880999999988,68.212204000000042],[-73.161117999999988,68.228866999999923],[-73.190276999999924,68.248871000000065],[-73.189437999999996,68.254715000000033],[-73.189986999999917,68.259430000000066],[-73.194716999999969,68.26527400000009],[-73.200835999999981,68.269714000000135],[-73.215560999999923,68.272766000000047],[-73.271117999999888,68.281936999999971],[-73.303328999999962,68.278434999999945],[-73.314499000000012,68.278434999999945],[-73.336670000000026,68.275604000000044],[-73.355186000000003,68.267830000000004],[-73.395554000000004,68.258605999999929],[-73.496108999999933,68.275542999999971],[-73.410004000000015,68.310806000000127],[-73.39916999999997,68.314987000000031],[-73.354674999999929,68.329215999999974]],[[-124.43055699999996,73.878586000000098],[-124.45028699999995,73.878586000000098],[-124.46721600000001,73.8808140000001],[-124.515289,73.89498900000001],[-124.53666699999991,73.902480999999909],[-124.54611199999999,73.906647000000021],[-124.55055199999998,73.912201000000039],[-124.55277999999993,73.916931000000034],[-124.53056299999997,73.917480000000012],[-124.5133439999999,73.916656000000046],[-124.43250299999994,73.912766000000033],[-124.42027300000001,73.90914900000007],[-124.41583300000002,73.90498400000007],[-124.40888999999993,73.900269000000037],[-124.40943899999996,73.893326000000059],[-124.42027300000001,73.882476999999994],[-124.43055699999996,73.878586000000098]],[[-99.804557999999929,73.889099000000101],[-99.732773000000009,73.849991000000102],[-99.71362299999987,73.846375000000023],[-99.589721999999881,73.837769000000094],[-99.531386999999938,73.831940000000088],[-99.493880999999988,73.825821000000076],[-99.480285999999978,73.821930000000009],[-99.235000999999897,73.737761999999918],[-99.115004999999996,73.74859600000002],[-98.97193900000002,73.750548999999921],[-98.829177999999956,73.751663000000121],[-98.756393000000003,73.75610400000005],[-98.71665999999999,73.766663000000051],[-98.688323999999966,73.772018000000116],[-98.641953000000001,73.777206000000035],[-98.514449999999954,73.787490999999989],[-98.424437999999952,73.793594000000098],[-98.290832999999964,73.801651000000049],[-98.207229999999925,73.80525200000011],[-98.190552000000025,73.803588999999988],[-98.179992999999911,73.804152999999928],[-98.134170999999867,73.809708000000057],[-98.095000999999968,73.815536000000122],[-98.071670999999924,73.819443000000092],[-97.976944000000003,73.84275800000006],[-97.960281000000009,73.846938999999963],[-97.948333999999988,73.851653999999996],[-97.943053999999904,73.856934000000081],[-97.942763999999954,73.862762000000032],[-97.941375999999991,73.868042000000059],[-97.936385999999914,73.87831100000011],[-97.918335000000013,73.890273999999977],[-97.90834000000001,73.894714000000135],[-97.887512000000015,73.899428999999998],[-97.805267000000015,73.911102000000028],[-97.788054999999986,73.912766000000033],[-97.761948000000018,73.911925999999994],[-97.581954999999937,73.893875000000037],[-97.562774999999988,73.890823000000069],[-97.544723999999917,73.886108000000036],[-97.529175000000009,73.879700000000071],[-97.520844000000011,73.873871000000065],[-97.514175000000023,73.867752000000053],[-97.50028999999995,73.861923000000047],[-97.471389999999985,73.857758000000047],[-97.456954999999994,73.857758000000047],[-97.39973399999991,73.858871000000136],[-97.357772999999952,73.862488000000099],[-97.34584000000001,73.864990000000148],[-97.327498999999989,73.865814000000114],[-97.260284000000013,73.860260000000096],[-97.223617999999931,73.856369000000029],[-96.972504000000015,73.744141000000013],[-96.962218999999891,73.738586000000112],[-96.955841000000021,73.732482999999945],[-96.937209999999993,73.703598000000113],[-96.932770000000005,73.692200000000071],[-96.93472300000002,73.686920000000043],[-96.963897999999972,73.63998399999997],[-96.968613000000005,73.633330999999998],[-96.988891999999964,73.624695000000088],[-97.001953000000015,73.6202550000001],[-97.184998000000007,73.562194999999974],[-97.202498999999932,73.557205000000124],[-97.436110999999926,73.525542999999971],[-97.623885999999857,73.538879000000122],[-97.638061999999934,73.538589000000115],[-97.641112999999962,73.533599999999922],[-97.668335000000013,73.483321999999987],[-97.667496000000028,73.479431000000091],[-97.663054999999929,73.4727630000001],[-97.654723999999931,73.466934000000094],[-97.638335999999981,73.460266000000104],[-97.623321999999973,73.456375000000037],[-97.607223999999974,73.454711999999972],[-97.579453000000001,73.454987000000131],[-97.562774999999988,73.459152000000131],[-97.534163999999976,73.473877000000073],[-97.522232000000031,73.478592000000106],[-97.50389100000001,73.483046999999942],[-97.437209999999993,73.491928000000087],[-97.417220999999984,73.493317000000047],[-97.401947000000007,73.493042000000059],[-97.232223999999917,73.474426000000051],[-97.197219999999959,73.469711000000018],[-97.183059999999955,73.464995999999985],[-97.172225999999966,73.460266000000104],[-97.166106999999954,73.454162999999994],[-97.157226999999921,73.395538000000045],[-97.150283999999999,73.389984000000027],[-97.169448999999986,73.35664399999996],[-97.17193599999996,73.352768000000083],[-97.183883999999921,73.350540000000137],[-97.207503999999972,73.348328000000095],[-97.236937999999896,73.348602000000028],[-97.243057000000022,73.354706000000022],[-97.375548999999921,73.347214000000122],[-97.645003999999858,73.318054000000018],[-97.660278000000005,73.316086000000098],[-97.708617999999944,73.304703000000075],[-97.841384999999889,73.273315000000082],[-97.84445199999999,73.268326000000116],[-97.848052999999936,73.254440000000102],[-97.847778000000005,73.249420000000043],[-97.848617999999988,73.244980000000055],[-97.86250299999989,73.233871000000136],[-97.983611999999994,73.181091000000094],[-98.029175000000009,73.165268000000083],[-98.076674999999966,73.151382000000126],[-98.112503000000004,73.142487000000074],[-98.151672000000019,73.131087999999977],[-98.202788999999996,73.110535000000084],[-98.222777999999948,73.099991000000045],[-98.229996000000028,73.090820000000122],[-98.231383999999878,73.085541000000148],[-98.235001000000011,73.079711999999915],[-98.240829000000019,73.075272000000098],[-98.319457999999997,73.050537000000077],[-98.365829000000019,73.037766000000147],[-98.450287000000003,73.020264000000111],[-98.459166999999923,72.99331699999999],[-98.453613000000018,72.898605000000089],[-98.450561999999991,72.874985000000095],[-98.445830999999998,72.865814000000114],[-98.438598999999954,72.860535000000141],[-98.428054999999915,72.856094000000041],[-98.419998000000021,72.858597000000032],[-98.413329999999974,72.864151000000049],[-98.403335999999967,72.881363000000022],[-98.403335999999967,72.887207000000046],[-98.405838000000017,72.891662999999994],[-98.402221999999995,72.897491000000059],[-98.397780999999952,72.902771000000143],[-98.388061999999991,72.908034999999927],[-98.266402999999855,72.972763000000043],[-98.255004999999926,72.977478000000076],[-98.227218999999877,72.987487999999985],[-98.176940999999999,72.998596000000134],[-97.99499499999996,73.037491000000102],[-97.980559999999969,73.039702999999975],[-97.864166000000012,73.047485000000108],[-97.846953999999982,73.048598999999911],[-97.684433000000013,73.033051000000114],[-97.668335000000013,73.03137200000009],[-97.527495999999985,73.011383000000137],[-97.442489999999964,72.999145999999996],[-97.299728000000016,72.969711000000132],[-97.283324999999991,72.963882000000069],[-97.229720999999984,72.943038999999999],[-97.225006000000008,72.939972000000125],[-97.258056999999951,72.883605999999986],[-97.266402999999968,72.878585999999984],[-97.265288999999996,72.84887700000013],[-97.203613000000018,72.825821000000076],[-97.081679999999949,72.77998400000007],[-97.030288999999982,72.74136400000009],[-97.023055999999997,72.732208000000128],[-97.023055999999997,72.727203000000088],[-97.029723999999987,72.716659999999933],[-97.079453000000001,72.701934999999992],[-97.105834999999956,72.696365000000128],[-97.134444999999914,72.688309000000061],[-97.161117999999988,72.67804000000001],[-97.170546999999885,72.673599000000081],[-97.179442999999992,72.667480000000069],[-97.183059999999955,72.661926000000051],[-97.19027699999998,72.640549000000021],[-97.198333999999932,72.609984999999995],[-97.196655000000021,72.604430999999977],[-97.185271999999998,72.601929000000098],[-97.165557999999919,72.60165400000011],[-97.09056099999998,72.605254999999943],[-97.081008999999938,72.605927000000122],[-97.07028200000002,72.608597000000088],[-97.042770000000019,72.623306000000127],[-97.035827999999981,72.628860000000145],[-97.005568999999866,72.644714000000022],[-96.982223999999974,72.655258000000117],[-96.968886999999938,72.660262999999986],[-96.915558000000033,72.678588999999988],[-96.611938000000009,72.74693300000007],[-96.517501999999922,72.714706000000092],[-96.52194199999991,72.674423000000047],[-96.459731999999917,72.607758000000103],[-96.405272999999966,72.559418000000107],[-96.374709999999993,72.534424000000115],[-96.336945000000014,72.500824000000023],[-96.325561999999991,72.488312000000064],[-96.30221599999993,72.433868000000018],[-96.297501000000011,72.42164600000001],[-96.298339999999939,72.415817000000004],[-96.538605000000018,72.343323000000055],[-96.668335000000013,72.309708000000001],[-96.696945000000028,72.310531999999967],[-96.738892000000021,72.321105999999986],[-96.776397999999972,72.323318000000029],[-96.831389999999999,72.323608000000036],[-96.868332000000009,72.321930000000123],[-96.871932999999956,72.321105999999986],[-96.864440999999943,72.317764000000068],[-96.771118000000001,72.298874000000069],[-96.668883999999878,72.27915999999999],[-96.578339000000028,72.278594999999996],[-96.561110999999983,72.275543000000027],[-96.554169000000002,72.263885000000016],[-96.487212999999883,72.136108000000036],[-96.485001000000011,72.129974000000004],[-96.483062999999959,72.11303700000002],[-96.487503000000004,72.101653999999996],[-96.498336999999935,72.090270999999973],[-96.508346999999958,72.084991000000116],[-96.521117999999944,72.079987000000131],[-96.537216000000001,72.07499700000011],[-96.557220000000029,72.071930000000009],[-96.721663999999919,72.052765000000022],[-96.77305599999994,72.053040000000067],[-96.789444000000003,72.052200000000028],[-96.866942999999992,72.041091999999992],[-96.853881999999999,72.036376999999959],[-96.828888000000006,72.030822999999998],[-96.672501000000011,72.012771999999984],[-96.635009999999966,72.013885000000073],[-96.618057000000022,72.018326000000002],[-96.609160999999915,72.024155000000007],[-96.600554999999986,72.02777100000003],[-96.567779999999971,72.033600000000092],[-96.521117999999944,72.038879000000065],[-96.501953000000015,72.038589000000059],[-96.488601999999958,72.034987999999998],[-96.489990000000034,72.018326000000002],[-96.490829000000019,72.012206999999989],[-96.493056999999965,72.001098999999954],[-96.502228000000002,71.975540000000137],[-96.505843999999968,71.969711000000132],[-96.512786999999889,71.964431999999988],[-96.522506999999962,71.959152000000074],[-96.554442999999935,71.949141999999995],[-96.565552000000025,71.946930000000123],[-96.573897999999986,71.948318000000029],[-96.589447000000007,71.954437000000041],[-96.602782999999988,71.958038000000101],[-96.617492999999911,71.959991000000059],[-96.638335999999981,71.957488999999953],[-96.73332199999993,71.928863999999976],[-96.749160999999958,71.923874000000069],[-96.761947999999961,71.918594000000041],[-96.764450000000011,71.914992999999981],[-96.761397999999929,71.909714000000008],[-96.749725000000012,71.903046000000018],[-96.736389000000031,71.899429000000055],[-96.724166999999966,71.898605000000089],[-96.700835999999924,71.899994000000106],[-96.64527899999996,71.917480000000012],[-96.607223999999974,71.92692599999998],[-96.565552000000025,71.93220500000001],[-96.522781000000009,71.934418000000107],[-96.509170999999924,71.933044000000109],[-96.503890999999953,71.931656000000032],[-96.491668999999888,71.926085999999941],[-96.49110399999995,71.919434000000081],[-96.493056999999965,71.914153999999996],[-96.525832999999977,71.868866000000082],[-96.557769999999948,71.829436999999984],[-96.570846999999901,71.819442999999978],[-96.579726999999934,71.814987000000031],[-96.591949,71.810805999999957],[-96.613327000000027,71.807205000000124],[-96.726668999999958,71.793593999999928],[-96.744720000000029,71.792206000000022],[-96.738051999999982,71.824996999999996],[-96.791381999999942,71.827774000000034],[-96.983611999999994,71.775817999999958],[-97.013061999999991,71.749146000000053],[-97.084166999999923,71.700272000000098],[-97.165008999999941,71.675537000000077],[-97.210006999999962,71.663605000000075],[-97.434433000000013,71.617751999999996],[-97.470550999999944,71.612487999999985],[-97.505004999999983,71.611649],[-97.656386999999938,71.614700000000028],[-97.696655000000021,71.619705000000067],[-97.713332999999977,71.623871000000008],[-97.726395000000025,71.628310999999997],[-97.787215999999944,71.644149999999968],[-97.974715999999944,71.660812000000135],[-97.988051999999982,71.661926000000108],[-98.035277999999948,71.653320000000008],[-98.053329000000019,71.648331000000042],[-98.072784000000013,71.641663000000051],[-98.112777999999935,71.636932000000115],[-98.131103999999937,71.638046000000088],[-98.178878999999938,71.641663000000051],[-98.196654999999907,71.643600000000106],[-98.207503999999972,71.646103000000039],[-98.218063000000029,71.649719000000118],[-98.240829000000019,71.659714000000008],[-98.252791999999886,71.666091999999992],[-98.331116000000009,71.708327999999995],[-98.349166999999909,71.718597000000045],[-98.3558349999999,71.7227630000001],[-98.359725999999966,71.728043000000014],[-98.359436000000017,71.733871000000079],[-98.333327999999995,71.787490999999989],[-98.325561999999934,71.798325000000091],[-98.321395999999936,71.803314000000057],[-98.315276999999924,71.809143000000063],[-98.279174999999952,71.834717000000069],[-98.259170999999924,71.844711000000075],[-98.228881999999999,71.862198000000092],[-98.211944999999957,71.878585999999984],[-98.208617999999944,71.884430000000009],[-98.209166999999979,71.889160000000004],[-98.221938999999963,71.89498900000001],[-98.255279999999971,71.902480999999966],[-98.267226999999991,71.90415999999999],[-98.282776000000013,71.899155000000121],[-98.291381999999999,71.894714000000022],[-98.450561999999991,71.79414399999996],[-98.462508999999955,71.783874999999966],[-98.477782999999931,71.767212000000086],[-98.488892000000021,71.749419999999986],[-98.49749799999995,71.733321999999987],[-98.49749799999995,71.721649000000127],[-98.493880999999988,71.713882000000012],[-98.381377999999984,71.653594999999996],[-98.367492999999911,71.647491000000002],[-98.179992999999911,71.571930000000123],[-98.041381999999885,71.530823000000055],[-98.037506000000008,71.526657],[-98.120543999999995,71.460540999999978],[-98.180831999999953,71.423598999999967],[-98.198043999999982,71.414703000000031],[-98.466110000000015,71.313309000000061],[-98.505568999999923,71.299149000000114],[-98.541381999999942,71.289429000000041],[-98.55471799999998,71.287201000000096],[-98.701675000000023,71.271927000000005],[-98.72084000000001,71.269989000000066],[-98.729720999999927,71.270538000000045],[-98.75111400000003,71.274154999999951],[-98.816390999999953,71.289154000000053],[-98.829453000000001,71.293869000000086],[-98.844726999999978,71.305542000000116],[-98.882216999999969,71.333878000000027],[-98.938323999999852,71.369141000000013],[-98.960281000000009,71.379974000000004],[-98.978881999999999,71.382476999999994],[-98.995543999999995,71.382751000000098],[-99.014724999999942,71.381653000000028],[-99.034438999999963,71.378860000000032],[-99.042770000000019,71.374419999999986],[-99.045546999999942,71.368590999999981],[-99.051392000000021,71.363036999999963],[-99.05972300000002,71.358597000000145],[-99.077498999999989,71.353592000000106],[-99.115829000000019,71.350540000000024],[-99.220839999999896,71.342209000000082],[-99.238051999999982,71.344986000000006],[-99.288054999999872,71.402771000000087],[-99.313323999999966,71.43942300000009],[-99.462783999999942,71.59304800000001],[-99.529723999999987,71.605255],[-99.558608999999876,71.613037000000134],[-99.574172999999973,71.619705000000067],[-99.578888000000006,71.622757000000036],[-99.591675000000009,71.635268999999994],[-99.676392000000021,71.72526600000009],[-99.677779999999927,71.729156000000046],[-99.677215999999987,71.736923000000047],[-99.674437999999896,71.742752000000053],[-99.673049999999989,71.749146000000053],[-99.673889000000031,71.753876000000105],[-99.676392000000021,71.758605999999986],[-99.678328999999962,71.760544000000095],[-99.842223999999987,71.834991000000002],[-99.959166999999979,71.854155999999932],[-99.977218999999991,71.855819999999937],[-100.05110200000001,71.865814],[-100.067497,71.870529000000033],[-100.10193599999997,71.884720000000016],[-100.31471299999993,71.979979999999955],[-100.32195299999989,71.984985000000052],[-100.33222999999998,71.997208000000057],[-100.33583099999993,72.006653000000142],[-100.579453,72.154434000000037],[-100.63445299999995,72.18553200000008],[-100.64417300000002,72.188308999999947],[-100.72000099999997,72.201660000000118],[-100.88527699999997,72.207764000000111],[-100.88999899999988,72.207489000000123],[-100.92388900000003,72.199416999999983],[-100.95140099999992,72.171097000000145],[-100.96777299999997,72.174149000000057],[-101.01334399999996,72.191086000000041],[-101.02084400000001,72.196365000000014],[-101.054169,72.231658999999922],[-101.05555700000002,72.236649],[-101.11776700000001,72.284424000000001],[-101.19444299999998,72.324432000000002],[-101.20861799999994,72.329712000000086],[-101.220551,72.332214000000135],[-101.23889200000002,72.33387799999997],[-101.27667200000002,72.328323000000069],[-101.32528699999995,72.314986999999974],[-101.395554,72.286926000000051],[-101.40416699999997,72.281372000000033],[-101.40972899999986,72.275543000000027],[-101.46945199999999,72.265549000000021],[-101.50917099999998,72.283051000000057],[-101.58556399999998,72.301376000000005],[-101.63474299999996,72.306931000000077],[-101.65638699999994,72.305252000000053],[-101.66416900000002,72.301650999999993],[-101.672234,72.292755000000056],[-101.68499799999989,72.28776600000009],[-101.69444299999986,72.288040000000024],[-101.77694700000001,72.299713000000054],[-101.83056599999992,72.319153000000028],[-101.84472699999992,72.324432000000002],[-101.88834399999996,72.358597000000145],[-101.94167299999987,72.451935000000049],[-101.98131599999999,72.478111000000126],[-102.08033799999993,72.516006000000118],[-102.22222899999991,72.542206000000078],[-102.25862100000001,72.549149000000057],[-102.37721299999998,72.577484000000084],[-102.46584299999995,72.604706000000022],[-102.6219329999999,72.664703000000145],[-102.73638899999992,72.719986000000006],[-102.74166899999989,72.724152000000061],[-102.75583599999993,72.761383000000023],[-102.76471699999996,72.784987999999998],[-102.76306199999999,72.790817000000004],[-102.75306699999999,72.811096000000134],[-102.74944299999999,72.817214999999976],[-102.74305699999996,72.82249500000006],[-102.73500100000001,72.826096000000121],[-102.69860799999992,72.836654999999951],[-102.66361999999992,72.853316999999947],[-102.64666699999992,72.864426000000037],[-102.61277799999993,72.896652000000131],[-102.59722899999991,72.913605000000018],[-102.59361299999995,72.919983000000002],[-102.59166699999997,72.925536999999963],[-102.59306300000003,72.931656000000032],[-102.59416199999998,72.942748999999992],[-102.593887,72.949141999999995],[-102.59166699999997,72.954987000000074],[-102.576683,72.979706000000022],[-102.56304899999998,72.991089000000045],[-102.51306199999993,73.026093000000117],[-102.50110599999994,73.030548000000124],[-102.38806199999999,73.062759000000028],[-102.36805699999996,73.067490000000134],[-102.27610800000002,73.08248900000001],[-102.24694799999997,73.083878000000027],[-102.13722199999989,73.086929000000055],[-102.08444199999985,73.084152000000131],[-102.014183,73.079711999999915],[-101.97083999999995,73.070540999999992],[-101.88417099999992,73.024704000000099],[-101.81777999999991,72.966660000000104],[-101.810272,72.960541000000035],[-101.75527999999997,72.930542000000059],[-101.74109599999991,72.924149000000057],[-101.67527799999999,72.909714000000122],[-101.59528399999994,72.902205999999921],[-101.52166699999998,72.87831100000011],[-101.50974299999996,72.871642999999949],[-101.40444899999989,72.782486000000119],[-101.41332999999997,72.748322000000087],[-101.37249800000001,72.727203000000088],[-101.36665299999999,72.725266000000033],[-101.29750099999995,72.709991000000059],[-101.03333299999997,72.689697000000137],[-100.91583299999996,72.688034000000016],[-100.88221699999991,72.689697000000137],[-100.82778899999994,72.705826000000059],[-100.81945799999994,72.710266000000104],[-100.81220999999994,72.715545999999961],[-100.81194299999999,72.719710999999961],[-100.79833999999994,72.743590999999981],[-100.70722999999998,72.755829000000006],[-100.53307299999994,72.751389000000017],[-100.50917099999992,72.749146000000053],[-100.49833699999994,72.74803200000008],[-100.47582999999997,72.742751999999996],[-100.44803599999995,72.735535000000084],[-100.43443300000001,72.73692299999999],[-100.41221599999994,72.74192800000003],[-100.34973100000002,72.770538000000101],[-100.34084300000001,72.774993999999992],[-100.33168000000001,72.78054800000001],[-100.314438,72.796371000000022],[-100.31555199999997,72.801376000000062],[-100.35077699999994,72.851326000000086],[-100.35160799999994,72.853660999999988],[-100.35711699999996,72.859154000000103],[-100.46916199999998,72.950272000000041],[-100.48638899999992,72.949141999999995],[-100.49889399999995,72.950546000000145],[-100.49973299999999,72.95637499999998],[-100.46305799999993,73.014709000000039],[-100.45194999999995,73.020538000000045],[-100.421944,73.034987999999942],[-100.36776700000001,73.046936000000017],[-100.35637700000001,73.049423000000047],[-100.34221600000001,73.044144000000074],[-100.31667299999992,73.034149000000014],[-100.30943299999996,73.028046000000074],[-100.31555199999997,73.022490999999945],[-100.34306300000003,73.013885000000073],[-100.3577729999999,73.010544000000039],[-100.38137799999998,72.949141999999995],[-100.32899499999991,72.891372999999987],[-100.31732899999992,72.888869999999997],[-100.28527800000001,72.873596000000077],[-100.21721599999995,72.876647999999989],[-100.196663,72.877762000000018],[-100.09638999999993,72.88638300000008],[-100.06722999999994,72.902205999999921],[-100.031387,72.934982000000048],[-100.04750099999995,72.957214000000135],[-100.11277799999999,73.025818000000072],[-100.16972399999992,73.078598000000113],[-100.23222399999997,73.134430000000123],[-100.24445299999996,73.136932000000002],[-100.25446299999999,73.137206999999989],[-100.28888699999993,73.135818000000029],[-100.32362399999994,73.133331000000112],[-100.345551,73.130264000000011],[-100.38249200000001,73.122757000000092],[-100.39138799999995,73.118317000000047],[-100.41443600000002,73.104706000000078],[-100.44275699999997,73.087204000000042],[-100.51862299999993,73.0977630000001],[-100.58667000000003,73.132751000000098],[-100.60193599999997,73.140823000000069],[-100.60777300000001,73.146378000000141],[-100.58612099999999,73.167480000000126],[-100.58000199999987,73.173035000000027],[-100.49082900000002,73.230819999999937],[-100.40666199999987,73.280273000000079],[-100.39778100000001,73.284713999999951],[-100.37832600000002,73.289978000000133],[-100.36110699999995,73.290267999999969],[-100.28138699999994,73.27915999999999],[-100.1347429999999,73.221100000000035],[-100.05332899999996,73.186371000000008],[-100.03751399999999,73.183868000000018],[-100.021118,73.183044000000052],[-100.00418099999996,73.183319000000097],[-99.841110000000015,73.191360000000145],[-99.801666000000012,73.195526000000029],[-99.771666999999979,73.201096000000121],[-99.77027899999996,73.203873000000044],[-99.771666999999979,73.208038000000045],[-99.786391999999921,73.212493999999936],[-99.811934999999949,73.215546000000074],[-99.84944200000001,73.21527100000003],[-99.886123999999995,73.213318000000072],[-99.925827000000027,73.214996000000042],[-99.945267000000001,73.216660000000047],[-99.96444699999995,73.219436999999971],[-100.07749899999999,73.251389000000074],[-100.09500100000002,73.257217000000026],[-100.15915699999994,73.289428999999984],[-100.19943199999994,73.31860400000005],[-100.27223199999992,73.358597000000088],[-100.32362399999994,73.3836060000001],[-100.33332799999994,73.388321000000133],[-100.358047,73.393326000000002],[-100.37389399999995,73.395828000000051],[-100.38417099999987,73.396378000000084],[-100.38806199999993,73.395538000000045],[-100.4058379999999,73.361374000000012],[-100.387787,73.338593000000003],[-100.56166099999996,73.286652000000117],[-100.583618,73.283599999999979],[-100.823059,73.260818000000086],[-100.84056099999992,73.259720000000016],[-100.88945000000001,73.264435000000049],[-100.97749299999998,73.280273000000079],[-101.30499299999991,73.361649000000057],[-101.31276700000001,73.371094000000085],[-101.31139400000001,73.382751000000042],[-101.31054699999999,73.392487000000017],[-101.31139400000001,73.398331000000042],[-101.31723,73.401657000000057],[-101.47055099999994,73.436096000000134],[-101.55832700000002,73.446640000000002],[-101.58084099999996,73.450272000000098],[-101.61665299999993,73.485260000000096],[-101.62138400000003,73.490265000000136],[-101.44055200000003,73.549149000000057],[-101.42748999999992,73.552200000000084],[-101.40083299999992,73.553589000000045],[-101.31582599999996,73.550811999999951],[-101.2808379999999,73.552475000000072],[-101.26888999999994,73.556090999999924],[-101.25974300000001,73.561646000000053],[-101.25527999999997,73.567763999999954],[-101.25222799999995,73.578873000000044],[-101.25306699999993,73.584991000000002],[-101.25110599999994,73.589706000000035],[-101.24194299999994,73.595261000000107],[-101.23082699999998,73.600266000000147],[-101.21721600000001,73.604155999999932],[-101.199432,73.60554500000012],[-100.92639200000002,73.600266000000147],[-100.90943900000002,73.599716000000114],[-100.890289,73.596100000000092],[-100.87748699999997,73.59027100000003],[-100.77084400000001,73.539978000000076],[-100.71749899999992,73.509155000000078],[-100.70667299999997,73.499420000000043],[-100.70221699999996,73.494431000000077],[-100.70140100000003,73.488585999999941],[-100.69721999999996,73.482483000000002],[-100.69110099999995,73.476929000000041],[-100.67278299999998,73.464432000000045],[-100.51834099999996,73.416930999999977],[-100.49973299999999,73.412490999999932],[-100.46472199999988,73.407211000000075],[-100.44444299999992,73.40637200000009],[-100.43055700000002,73.406936999999971],[-100.41722099999998,73.413315000000068],[-100.41500899999994,73.41804500000012],[-100.42971799999998,73.430267000000072],[-100.45500199999998,73.441924999999969],[-100.484734,73.451935000000049],[-100.50279199999989,73.45748900000001],[-100.531387,73.466094999999939],[-100.58389299999993,73.482208000000014],[-100.59221599999995,73.486374000000069],[-100.59861799999999,73.491089000000102],[-100.60611,73.497207999999944],[-100.61000099999995,73.503052000000139],[-100.610817,73.509155000000078],[-100.60804699999994,73.514999000000103],[-100.60388199999994,73.521102999999982],[-100.55915799999997,73.546097000000088],[-100.54387700000001,73.556366000000139],[-100.541382,73.562194999999974],[-100.54277000000002,73.573883000000023],[-100.54998799999993,73.594711000000075],[-100.55166600000001,73.598876999999959],[-100.573624,73.596649000000014],[-100.628601,73.593322999999998],[-100.76750199999998,73.603867000000037],[-100.89167799999996,73.619980000000055],[-100.91139199999998,73.622756999999979],[-100.91194200000001,73.625259000000028],[-100.91139199999998,73.630539000000113],[-100.87943999999999,73.635818000000086],[-100.86472300000003,73.641662999999994],[-100.86110699999995,73.645827999999995],[-100.85360699999995,73.662201000000039],[-100.858047,73.667205999999908],[-100.97444199999995,73.679153000000042],[-100.99194299999999,73.678863999999976],[-101.03333299999997,73.671371000000136],[-101.04695099999998,73.673035000000141],[-101.057503,73.676650999999993],[-101.11833199999995,73.723312000000021],[-101.120003,73.727203000000088],[-101.01390100000003,73.797211000000061],[-100.99749799999989,73.802475000000015],[-100.98222399999997,73.80581699999999],[-100.95973199999997,73.809143000000006],[-100.93804899999998,73.810256999999979],[-100.82861300000002,73.815536000000122],[-100.79527300000001,73.812484999999924],[-100.77583300000003,73.812195000000088],[-100.754997,73.812484999999924],[-100.73416099999997,73.815262000000018],[-100.71444700000001,73.820267000000058],[-100.69915800000001,73.826096000000064],[-100.66416900000002,73.844986000000063],[-100.64835399999993,73.848327999999981],[-100.554169,73.854705999999965],[-100.52999899999998,73.853591999999935],[-100.41777000000002,73.845534999999984],[-100.39555399999995,73.840820000000122],[-100.38945000000001,73.83859300000006],[-100.370003,73.828049000000021],[-100.34999099999993,73.818603999999993],[-100.33612099999993,73.814697000000024],[-100.06304899999998,73.764999000000046],[-99.865828999999962,73.837769000000094],[-99.857773000000009,73.84275800000006],[-99.870109999999954,73.861541999999986],[-99.869109999999921,73.867370999999991],[-99.869780999999932,73.870201000000009],[-99.877105999999912,73.876541000000032],[-99.886771999999951,73.8822100000001],[-99.892440999999963,73.883536999999933],[-99.961944999999957,73.873306000000071],[-99.971663999999976,73.868042000000059],[-99.988051999999925,73.856934000000081],[-99.990829000000019,73.851089000000002],[-99.997498000000007,73.845534999999984],[-100.00834699999996,73.841369999999984],[-100.02639799999997,73.836929000000055],[-100.04943800000001,73.832764000000054],[-100.13667299999997,73.827484000000027],[-100.175003,73.828049000000021],[-100.24944299999993,73.833878000000027],[-100.26139799999993,73.838318000000072],[-100.29972799999996,73.860260000000096],[-100.29695100000004,73.865814000000114],[-100.29222099999993,73.872208000000001],[-100.27860999999996,73.888596000000007],[-100.26583900000003,73.899994000000049],[-100.252792,73.905258000000003],[-100.24305700000002,73.907486000000006],[-100.14306599999992,73.929977000000008],[-100.12721299999993,73.933319000000097],[-100.104446,73.936371000000008],[-100.03751399999999,73.942473999999947],[-99.981109999999944,73.945816000000093],[-99.938599000000011,73.946091000000081],[-99.896956999999986,73.944138000000009],[-99.856109999999887,73.940811000000053],[-99.816100999999946,73.93609600000002],[-99.800827000000027,73.931655999999975],[-99.800551999999925,73.925812000000008],[-99.813323999999966,73.921371000000079],[-99.806220999999937,73.902100000000019],[-99.810058999999967,73.898766000000023],[-99.810889999999972,73.894928000000107],[-99.808227999999986,73.891937000000041],[-99.804557999999929,73.889099000000101]],[[-89.988892000000021,73.988312000000121],[-90.007781999999963,73.984984999999995],[-90.058043999999938,73.992477000000122],[-90.158614999999998,74.001389000000131],[-90.217772999999966,74.004439999999988],[-90.250290000000007,74.00999500000006],[-90.265015000000005,74.014708999999982],[-90.281112999999891,74.02165199999996],[-90.284728999999913,74.024994000000106],[-90.285003999999958,74.029709000000139],[-90.276397999999858,74.038589000000002],[-90.271117999999944,74.043320000000108],[-90.240554999999972,74.053863999999976],[-90.206115999999952,74.057755000000043],[-89.991942999999935,74.066665999999998],[-89.97193900000002,74.064697000000137],[-89.941375999999991,74.057479999999998],[-89.914443999999946,74.047485000000108],[-89.90194699999995,74.03776600000009],[-89.903885000000002,74.03137200000009],[-89.918609999999944,74.010543999999982],[-89.928329000000019,74.005554000000132],[-89.988892000000021,73.988312000000121]],[[-98.918610000000001,73.806091000000094],[-98.96166999999997,73.80525200000011],[-99.104172000000005,73.81442300000009],[-99.140838999999914,73.818054000000132],[-99.36361699999992,73.864426000000037],[-99.381942999999922,73.86914100000007],[-99.429717999999923,73.891662999999937],[-99.437499999999943,73.89694199999991],[-99.43638599999997,73.902206000000092],[-99.429717999999923,73.908035000000098],[-99.422501000000011,73.911102000000028],[-99.406113000000005,73.915267999999912],[-99.282500999999968,73.936919999999986],[-99.223891999999978,73.940262000000075],[-99.092772999999909,73.952209000000039],[-99.020279000000016,73.979706000000022],[-98.938048999999921,73.998596000000134],[-98.801666000000012,74.018051000000128],[-98.66194200000001,74.03137200000009],[-98.575835999999981,74.03137200000009],[-98.532501000000025,74.032211000000018],[-98.491942999999935,74.034148999999957],[-98.425277999999992,74.043869000000029],[-98.3558349999999,74.057479999999998],[-98.275832999999921,74.07388300000008],[-98.255004999999926,74.078598000000113],[-98.230285999999978,74.083327999999938],[-98.170836999999949,74.09248400000007],[-98.039992999999981,74.105820000000051],[-97.994445999999925,74.109421000000111],[-97.806106999999884,74.11943100000002],[-97.758346999999958,74.118590999999981],[-97.737212999999997,74.117477000000008],[-97.703613000000018,74.113876000000118],[-97.690826000000015,74.111374000000069],[-97.653609999999958,74.099991000000045],[-97.64805599999994,74.0977630000001],[-97.642226999999934,74.087204000000042],[-97.637787000000003,74.075546000000031],[-97.638335999999981,74.063873000000001],[-97.649444999999957,74.052474999999959],[-97.656661999999983,74.04693599999996],[-97.673324999999863,74.035537999999974],[-97.717223999999987,74.009720000000016],[-97.728058000000033,74.004166000000055],[-97.763625999999931,73.988312000000121],[-97.823058999999887,73.968597000000102],[-98.124161000000015,73.878586000000098],[-98.145003999999915,73.873596000000077],[-98.168334999999956,73.870818999999983],[-98.392776000000026,73.84526100000005],[-98.478881999999999,73.837494000000106],[-98.777221999999995,73.813599000000124],[-98.918610000000001,73.806091000000094]],[[-92.638061999999877,74.103043000000127],[-92.36860699999994,74.041091999999992],[-92.356948999999986,74.038040000000024],[-92.33444199999991,74.03137200000009],[-92.31138599999997,74.02165199999996],[-92.296951000000035,74.014435000000049],[-92.289444000000003,74.009155000000021],[-92.282775999999956,74.003325999999959],[-92.273620999999991,73.990540000000067],[-92.272781000000009,73.984421000000054],[-92.28195199999999,73.974990999999989],[-92.291107000000011,73.969711000000075],[-92.310546999999929,73.961104999999975],[-92.327788999999939,73.951385000000073],[-92.330001999999979,73.945526000000086],[-92.329726999999991,73.942473999999947],[-92.309433000000013,73.940811000000053],[-92.1324919999999,73.946365000000014],[-92.118606999999997,73.949142000000109],[-92.116652999999985,73.95109599999995],[-92.113327000000027,73.95637499999998],[-92.110000999999897,73.964706000000035],[-92.113051999999982,73.974426000000108],[-92.114440999999999,73.976654000000053],[-92.113051999999982,73.981368999999916],[-92.107773000000009,73.984711000000061],[-92.094161999999983,73.989151000000049],[-91.925551999999982,74.012771999999927],[-91.877212999999983,74.016936999999928],[-91.838332999999977,74.018875000000094],[-91.570847000000015,74.025818000000072],[-91.528335999999911,74.024429000000055],[-91.139998999999932,74.00999500000006],[-91.097504000000015,74.008331000000055],[-91.065001999999993,74.006103999999993],[-91.046951000000035,74.004166000000055],[-90.735549999999932,73.968322999999998],[-90.660003999999958,73.953873000000044],[-90.633056999999951,73.948317999999972],[-90.441375999999934,73.919708000000128],[-90.406661999999983,73.914703000000088],[-90.364440999999999,73.911652000000061],[-90.354720999999984,73.912201000000039],[-90.344955000000027,73.914368000000081],[-90.341674999999952,73.917206000000078],[-90.339721999999938,73.920532000000094],[-90.341110000000015,73.924149000000057],[-90.33555599999994,73.925812000000008],[-90.317779999999971,73.925261999999975],[-90.225006000000008,73.908599999999979],[-90.195830999999998,73.901931999999988],[-90.194442999999922,73.899719000000005],[-90.204178000000013,73.888321000000019],[-90.230285999999978,73.862198000000035],[-90.241942999999992,73.851929000000041],[-90.25140399999998,73.846649000000127],[-90.264450000000011,73.84165999999999],[-90.275283999999942,73.83859300000006],[-90.283066000000019,73.838318000000072],[-90.360000999999954,73.800812000000121],[-90.474716000000001,73.72164900000007],[-90.581389999999999,73.65776100000005],[-90.724715999999944,73.583054000000118],[-90.84973100000002,73.540268000000083],[-90.921386999999925,73.495255000000043],[-90.930283000000031,73.483871000000079],[-90.932219999999973,73.481934000000081],[-91.089172000000019,73.384155000000021],[-91.152221999999995,73.361099000000024],[-91.171386999999982,73.351089000000059],[-91.180557000000022,73.345825000000104],[-91.186385999999914,73.340271000000087],[-91.238602000000014,73.279984000000127],[-91.253066999999874,73.269150000000081],[-91.262222000000008,73.263885000000016],[-91.367767000000015,73.200821000000133],[-91.569457999999997,73.063309000000061],[-91.642776000000026,73.021103000000039],[-91.647506999999962,73.016663000000051],[-91.645003999999972,72.998032000000023],[-91.770844000000011,72.913040000000024],[-91.799727999999959,72.897216999999955],[-91.808333999999888,72.891937000000098],[-91.812774999999988,72.885818000000086],[-91.813048999999921,72.880264000000068],[-91.81138599999997,72.868042000000116],[-91.818893000000003,72.862198000000092],[-91.84973100000002,72.846100000000035],[-92.06610099999989,72.752487000000087],[-92.095839999999896,72.743042000000003],[-92.127486999999917,72.734421000000111],[-92.166396999999961,72.725539999999967],[-92.232223999999974,72.713043000000027],[-92.274718999999891,72.70748900000001],[-92.314437999999996,72.704987000000131],[-92.335280999999952,72.704437000000098],[-92.393340999999907,72.707213999999965],[-92.431106999999997,72.710541000000092],[-92.524719000000005,72.720534999999927],[-92.745269999999891,72.739975000000129],[-92.898346000000004,72.750275000000045],[-93.077498999999875,72.769439999999975],[-93.248885999999914,72.789703000000031],[-93.337783999999999,72.8077550000001],[-93.349166999999852,72.802475000000072],[-93.366652999999985,72.797760000000039],[-93.391952999999944,72.794144000000131],[-93.412216000000001,72.792206000000022],[-93.580001999999922,72.778046000000074],[-93.679992999999911,72.779709000000025],[-93.726104999999905,72.781097000000102],[-93.764450000000011,72.781372000000147],[-93.932769999999948,72.774155000000007],[-94.038604999999961,72.766388000000063],[-94.099166999999966,72.764160000000118],[-94.132492000000013,72.764709000000039],[-94.170546999999942,72.767487000000074],[-94.18249499999996,72.769439999999975],[-94.24610899999999,72.77388000000002],[-94.262786999999889,72.774155000000007],[-94.298049999999989,72.770263999999941],[-94.315552000000025,72.763046000000145],[-94.321944999999971,72.759430000000066],[-94.327498999999989,72.754440000000045],[-94.334441999999967,72.738036999999963],[-94.332779000000016,72.731934000000024],[-94.327498999999989,72.721649000000127],[-94.319457999999997,72.717484000000127],[-94.3125,72.715545999999961],[-94.297501000000011,72.713318000000015],[-94.26916499999993,72.719147000000021],[-94.265288999999939,72.723877000000073],[-94.263901000000033,72.729980000000012],[-94.258346999999958,72.732483000000002],[-94.236388999999917,72.734985000000052],[-94.160278000000005,72.729431000000034],[-94.103606999999897,72.718596999999988],[-94.09333799999996,72.714995999999928],[-94.001403999999923,72.704162999999994],[-93.985000999999954,72.70387299999993],[-93.886672999999973,72.704712000000086],[-93.839447000000007,72.717209000000082],[-93.798339999999996,72.702208999999925],[-93.823058999999887,72.653046000000018],[-93.817229999999938,72.642211999999972],[-93.801665999999955,72.634430000000009],[-93.786117999999931,72.629149999999981],[-93.76945499999988,72.624984999999981],[-93.75778200000002,72.623032000000023],[-93.686660999999901,72.622208000000057],[-93.674438000000009,72.618866000000082],[-93.589721999999995,72.58137499999998],[-93.568619000000012,72.570831000000112],[-93.49888599999997,72.521927000000119],[-93.463333000000034,72.462204000000099],[-93.466110000000015,72.451385000000016],[-93.46945199999999,72.439697000000024],[-93.628052000000025,72.341934000000037],[-93.64527899999996,72.337204000000042],[-93.666397000000018,72.333602999999982],[-93.688323999999909,72.331099999999992],[-93.748610999999983,72.329712000000086],[-93.767226999999991,72.327209000000096],[-93.787216000000001,72.322769000000108],[-93.801392000000021,72.317764000000068],[-93.819732999999928,72.30720500000001],[-93.827498999999989,72.301926000000037],[-93.913329999999974,72.241652999999928],[-93.925277999999935,72.233047000000056],[-94.014175000000023,72.163879000000122],[-94.036666999999852,72.142212000000086],[-94.040282999999988,72.137497000000053],[-94.043610000000001,72.131363000000022],[-94.045546999999885,72.126922999999977],[-94.044723999999974,72.115814000000114],[-94.042220999999927,72.106644000000074],[-94.043883999999935,72.096939000000134],[-94.048339999999939,72.091094999999939],[-94.054717999999923,72.085265999999933],[-94.066665999999941,72.076660000000004],[-94.080840999999964,72.066939999999931],[-94.091675000000009,72.061645999999996],[-94.127685999999926,72.056366000000082],[-94.143341000000021,72.057480000000055],[-94.172500999999954,72.0577550000001],[-94.186660999999958,72.055816999999934],[-94.198883000000023,72.052765000000022],[-94.188720999999987,72.045258000000103],[-94.19505300000003,72.042091000000084],[-94.198387000000025,72.03910100000013],[-94.199546999999995,72.036438000000032],[-94.196053000000006,72.032432999999969],[-94.188384999999982,72.030930000000126],[-94.172042999999917,72.029594000000088],[-94.149886999999921,72.029433999999981],[-94.137382999999886,72.031769000000111],[-94.130554000000018,72.033104000000037],[-94.125214000000028,72.035095000000126],[-94.091385000000002,72.037766000000147],[-94.06082200000003,72.035262999999986],[-94.029723999999931,71.999419999999986],[-94.063048999999921,71.978317000000061],[-94.082229999999981,71.976089000000115],[-94.191719000000035,71.994316000000083],[-94.353881999999942,72.018050999999957],[-94.371933000000013,72.019440000000145],[-94.418059999999912,72.02276599999999],[-94.449721999999952,72.023315000000139],[-94.743880999999931,72.011383000000023],[-94.780288999999982,72.006103999999993],[-94.825561999999991,71.997481999999991],[-94.902221999999881,71.989151000000106],[-95.121932999999956,71.966095000000053],[-95.161117999999931,71.964706000000092],[-95.17582699999997,71.966934000000037],[-95.20777899999996,71.988876000000118],[-95.213333000000034,71.99443100000002],[-95.206664999999987,72.097488000000112],[-95.204453000000001,72.102767999999969],[-95.196654999999964,72.106644000000074],[-95.039444000000003,72.131363000000022],[-94.981673999999998,72.139434999999992],[-94.929717999999923,72.143599999999992],[-94.899993999999992,72.144440000000031],[-94.868057000000022,72.145538000000101],[-94.752228000000002,72.153320000000065],[-94.760833999999932,72.15498400000007],[-94.80610699999994,72.15914900000007],[-94.839171999999905,72.158599999999979],[-94.961394999999982,72.155258000000003],[-95.027495999999985,72.14498900000001],[-95.12110899999999,72.136658000000068],[-95.139998999999932,72.135544000000095],[-95.158889999999985,72.135818000000029],[-95.171111999999937,72.139159999999947],[-95.206664999999987,72.180817000000047],[-95.211670000000026,72.187194999999974],[-95.213622999999984,72.193313999999987],[-95.214721999999938,72.200271999999984],[-95.214721999999938,72.20526099999995],[-95.203887999999893,72.221924000000058],[-95.191375999999991,72.2452550000001],[-95.171111999999937,72.283324999999991],[-95.133330999999885,72.46026599999999],[-95.200287000000003,72.524428999999998],[-95.226394999999968,72.53166200000004],[-95.283065999999906,72.535538000000088],[-95.316100999999946,72.539703000000088],[-95.321395999999993,72.546097000000145],[-95.344451999999933,72.58137499999998],[-95.346664000000033,72.587493999999992],[-95.345551,72.593322999999998],[-95.331679999999949,72.598328000000038],[-95.313323999999966,72.601089000000059],[-95.315826000000015,72.606368999999916],[-95.355559999999969,72.637771999999984],[-95.364440999999886,72.643326000000116],[-95.458617999999944,72.68220500000001],[-95.475554999999986,72.686371000000122],[-95.492766999999901,72.688034000000016],[-95.50556899999998,72.686371000000122],[-95.52555799999999,72.681656000000089],[-95.535827999999924,72.681366000000025],[-95.548614999999927,72.68220500000001],[-95.576110999999969,72.689971999999955],[-95.590560999999923,72.695525999999973],[-95.602218999999934,72.702208999999925],[-95.666106999999897,72.801376000000062],[-95.673614999999984,72.813873000000058],[-95.675551999999982,72.82499700000011],[-95.675277999999935,72.841094999999996],[-95.671936000000017,72.852478000000019],[-95.653885000000002,72.876923000000033],[-95.645844000000011,72.91276600000009],[-95.655563000000029,73.019989000000066],[-95.683318999999983,73.075821000000019],[-95.582503999999972,73.127762000000132],[-95.575012000000015,73.164993000000095],[-95.600540000000024,73.283905000000004],[-95.650832999999977,73.325272000000041],[-95.646666999999979,73.330826000000059],[-95.613616999999977,73.342758000000003],[-95.623610999999983,73.361099000000024],[-95.653610000000015,73.412490999999932],[-95.681670999999994,73.444138000000066],[-95.683884000000035,73.450272000000098],[-95.700287000000003,73.55386400000009],[-95.668364999999937,73.581787000000077],[-95.612563999999963,73.610976999999991],[-95.656059000000027,73.631866000000116],[-95.676085999999998,73.665061999999978],[-95.681945999999982,73.711928999999998],[-95.673049999999989,73.723312000000021],[-95.658889999999985,73.732482999999945],[-95.645844000000011,73.735535000000084],[-95.450835999999981,73.771103000000096],[-95.428329000000019,73.77276599999999],[-95.299727999999959,73.771103000000096],[-95.283614999999941,73.769149999999968],[-95.266402999999912,73.764160000000118],[-95.236938000000009,73.752212999999983],[-95.160278000000005,73.713042999999971],[-95.154723999999987,73.706940000000031],[-95.138335999999924,73.700821000000019],[-95.106948999999986,73.691925000000083],[-95.076401000000033,73.683318999999983],[-95.024170000000026,73.671646000000123],[-94.95666499999993,73.659149000000127],[-94.890563999999927,73.649155000000121],[-94.845550999999944,73.644150000000081],[-94.828613000000018,73.643051000000071],[-94.812209999999993,73.643326000000116],[-94.652221999999995,73.648605000000089],[-94.634170999999924,73.649429000000055],[-94.618056999999908,73.651382000000012],[-94.619155999999975,73.654434000000094],[-94.638061999999991,73.665817000000118],[-94.649445000000014,73.670821999999987],[-94.676392000000021,73.676650999999993],[-94.732773000000009,73.681366000000025],[-94.773055999999997,73.679977000000008],[-94.81471299999987,73.680817000000104],[-94.866104000000007,73.687195000000031],[-94.883330999999998,73.692200000000071],[-95.075561999999877,73.773315000000139],[-95.089172000000019,73.783325000000048],[-95.111937999999952,73.801086000000055],[-95.11610399999995,73.806641000000127],[-95.108046999999999,73.812195000000088],[-95.070847000000015,73.822768999999994],[-95.036666999999909,73.829436999999928],[-95.00556899999998,73.832489000000066],[-94.976668999999958,73.831100000000049],[-94.958054000000004,73.831940000000088],[-94.963332999999977,73.838318000000072],[-94.982497999999964,73.845534999999984],[-95.005004999999983,73.852767999999969],[-95.024445000000014,73.855255000000056],[-95.045546999999942,73.855545000000063],[-95.076675000000023,73.852477999999962],[-95.109160999999972,73.843597000000045],[-95.116393999999957,73.839157],[-95.127212999999927,73.825821000000076],[-95.136123999999938,73.823608000000092],[-95.154174999999952,73.823608000000092],[-95.263061999999991,73.862762000000032],[-95.304169000000002,73.8808140000001],[-95.311385999999914,73.885269000000108],[-95.323333999999932,73.89694199999991],[-95.327788999999882,73.90914900000007],[-95.329726999999991,73.919982999999945],[-95.326110999999969,73.944138000000009],[-95.324721999999952,73.952484000000084],[-95.319167999999877,73.964157000000114],[-95.298339999999996,73.980819999999994],[-95.245270000000005,74.010268999999994],[-95.227782999999988,74.014160000000061],[-95.220001000000025,74.014708999999982],[-95.192489999999964,74.008881000000088],[-95.174438000000009,74.008881000000088],[-95.040833000000021,74.026382000000012],[-94.90695199999999,74.047485000000108],[-94.850280999999995,74.058868000000132],[-94.80610699999994,74.068054000000075],[-94.787506000000008,74.072769000000108],[-94.755279999999914,74.087204000000042],[-94.745833999999945,74.092209000000082],[-94.732223999999974,74.095260999999994],[-94.618332000000009,74.090271000000143],[-94.460281000000009,74.094437000000028],[-94.436934999999949,74.095824999999934],[-94.42721599999993,74.100815000000011],[-94.421111999999994,74.105820000000051],[-94.412780999999995,74.115265000000136],[-94.406112999999948,74.118865999999969],[-94.392226999999991,74.121918000000107],[-94.217498999999975,74.131652999999972],[-94.177779999999927,74.1336060000001],[-94.093063000000029,74.136383000000023],[-93.992492999999911,74.138596000000007],[-93.951950000000011,74.138885000000073],[-93.914169000000015,74.136107999999979],[-93.90194699999995,74.133331000000112],[-93.758346999999958,74.096939000000134],[-93.761397999999986,74.129150000000038],[-93.759445000000028,74.139160000000118],[-93.754456000000005,74.144714000000079],[-93.730835000000013,74.154160000000047],[-93.690551999999968,74.162200999999982],[-93.641112999999962,74.167754999999943],[-93.583617999999888,74.170822000000044],[-93.515015000000005,74.173035000000027],[-93.431670999999994,74.172211000000061],[-93.327498999999989,74.169983000000116],[-93.243880999999988,74.164993000000038],[-93.028885000000002,74.149993999999992],[-92.979445999999996,74.145828000000108],[-92.796386999999982,74.124985000000038],[-92.638061999999877,74.103043000000127]],[[-98.657226999999978,74.29942299999999],[-98.746947999999975,74.298035000000084],[-98.810271999999941,74.298325000000091],[-98.831679999999949,74.299149000000057],[-98.859436000000017,74.301376000000118],[-98.86221299999994,74.302475000000129],[-98.864715999999987,74.304703000000075],[-98.863051999999982,74.307479999999998],[-98.857223999999974,74.311371000000065],[-98.752501999999936,74.334152000000074],[-98.718338000000017,74.336655000000007],[-98.630829000000006,74.34248400000007],[-98.616652999999985,74.341934000000037],[-98.585830999999985,74.338593000000003],[-98.573623999999938,74.334991000000002],[-98.535278000000005,74.328873000000101],[-98.521666999999979,74.324706999999989],[-98.511123999999995,74.318329000000006],[-98.515563999999927,74.314147999999932],[-98.525009000000011,74.31053200000008],[-98.568618999999899,74.304703000000075],[-98.657226999999978,74.29942299999999]],[[-120.14998600000001,74.272491000000059],[-119.86472300000003,74.237762000000032],[-119.84528399999999,74.235809000000074],[-119.79527299999995,74.234420999999998],[-119.72501399999993,74.233871000000136],[-119.60916099999997,74.233321999999987],[-119.63971699999996,74.193039000000113],[-119.65139799999997,74.181655999999919],[-119.67250099999995,74.165817000000004],[-119.69082599999996,74.156936999999971],[-119.70249899999999,74.153046000000074],[-119.72305299999994,74.144714000000079],[-119.79415899999998,74.115265000000136],[-119.80332900000002,74.110535000000084],[-119.82417299999992,74.094711000000132],[-119.833618,74.082763999999997],[-119.83612099999999,74.075821000000019],[-119.83277900000002,74.064147999999989],[-119.82721699999991,74.05914300000012],[-119.77916699999997,74.033875000000023],[-119.76806599999986,74.030273000000079],[-119.74481199999997,74.025513000000046],[-119.72860699999995,74.02915999999999],[-119.72609699999992,74.035812000000078],[-119.72638699999993,74.041931000000091],[-119.73777799999999,74.058029000000147],[-119.650284,74.118590999999981],[-119.51000999999991,74.209152000000017],[-119.50083899999998,74.213882000000012],[-119.48916599999995,74.217483999999956],[-119.46528599999994,74.221100000000035],[-119.44972199999995,74.221924000000001],[-119.25723299999999,74.218323000000112],[-119.18472300000002,74.216933999999924],[-119.16528299999987,74.214995999999985],[-119.14862099999999,74.212204000000099],[-119.137787,74.208603000000039],[-119.12110899999993,74.199707000000103],[-119.11554699999999,74.194977000000051],[-119.10193600000002,74.179428000000144],[-119.09638999999999,74.168319999999994],[-119.09084300000001,74.156936999999971],[-119.07055700000001,74.114700000000084],[-119.06527699999998,74.103317000000061],[-119.07084699999996,74.089980999999966],[-119.08084099999996,74.077773999999977],[-119.08805799999999,74.072769000000108],[-119.10166900000002,74.069716999999969],[-119.11972000000003,74.068054000000075],[-119.14723199999997,74.062195000000031],[-119.15222199999994,74.056091000000038],[-119.18720999999999,73.994141000000127],[-119.18720999999999,73.987762000000089],[-119.16750299999995,73.987198000000149],[-118.98889200000002,73.998032000000023],[-118.97305299999999,74.000274999999988],[-118.96362299999993,74.004990000000021],[-118.80777,74.090546000000131],[-118.80055199999998,74.095824999999934],[-118.79028299999993,74.10775799999999],[-118.78751399999999,74.114700000000084],[-118.79277000000002,74.125809000000004],[-118.79804999999999,74.130814000000044],[-118.80695299999996,74.133880999999974],[-118.82333399999999,74.136383000000023],[-118.83693699999992,74.139435000000105],[-118.84805299999994,74.143326000000002],[-118.86721799999998,74.151382000000069],[-118.88333099999994,74.166382000000056],[-118.88612399999994,74.171921000000054],[-118.88110399999999,74.178040000000067],[-118.84388699999994,74.188309000000118],[-118.72000100000002,74.212768999999923],[-118.67388899999997,74.219986000000063],[-118.60722399999997,74.228317000000118],[-118.50583599999999,74.239974999999959],[-118.17999299999991,74.272217000000126],[-118.12249799999995,74.275818000000015],[-118.10193600000002,74.276382000000126],[-118.031387,74.275269000000094],[-117.97361799999999,74.269150000000025],[-117.91860999999989,74.262207000000046],[-117.62832599999996,74.244980000000055],[-117.51251199999996,74.238585999999998],[-117.43859900000001,74.22943099999992],[-117.422234,74.226929000000041],[-117.37609899999995,74.218323000000112],[-117.28943599999997,74.199707000000103],[-117.15722700000003,74.167754999999943],[-116.82833899999997,74.072495000000004],[-116.78500400000001,74.059708000000001],[-116.735817,74.039703000000145],[-116.62249799999989,73.990814],[-116.52806099999998,73.949706999999989],[-116.441101,73.913605000000018],[-116.34805299999999,73.875534000000016],[-116.33805799999999,73.87164300000012],[-116.32778899999988,73.867752000000053],[-116.31471299999993,73.864426000000037],[-116.29888900000003,73.861649000000114],[-116.20805399999995,73.838318000000072],[-116.05583199999995,73.792755000000113],[-116.00556899999998,73.773315000000139],[-115.97638699999999,73.755554000000018],[-115.91443599999997,73.726379000000122],[-115.89444699999996,73.718596999999988],[-115.817497,73.698318000000029],[-115.603882,73.652205999999978],[-115.40222199999999,73.568329000000006],[-115.36694299999999,73.545822000000101],[-115.34889199999998,73.531937000000028],[-115.33194700000001,73.511658000000068],[-115.31500199999999,73.479705999999908],[-115.32305899999994,73.474426000000051],[-115.449432,73.426651000000049],[-115.46140300000002,73.42303499999997],[-115.69943199999989,73.368866000000139],[-115.83473199999997,73.33998100000008],[-115.862213,73.334427000000119],[-116.26750199999998,73.273041000000148],[-116.33556399999998,73.267211999999915],[-116.37249800000001,73.265549000000021],[-116.42500299999995,73.261658000000125],[-116.45612299999993,73.257492000000013],[-116.46945199999999,73.254715000000147],[-116.69304699999992,73.203873000000044],[-116.80943299999996,73.168045000000006],[-116.94803599999995,73.124985000000038],[-117.02639799999997,73.106934000000024],[-117.16915899999998,73.081940000000088],[-117.39388999999994,73.048598999999911],[-117.42639200000002,73.044983000000059],[-117.46610999999996,73.03637700000013],[-117.708054,72.977768000000083],[-117.83667000000003,72.938583000000108],[-117.891953,72.919983000000002],[-117.925003,72.908875000000023],[-117.97501399999993,72.896378000000027],[-118.01611300000002,72.888321000000019],[-118.11527999999993,72.870818999999983],[-118.21806300000003,72.854705999999965],[-118.27362099999999,72.844436999999914],[-118.314438,72.836104999999918],[-118.36609599999997,72.824432000000115],[-118.38999899999993,72.817764000000125],[-118.44444299999998,72.798874000000012],[-118.45333900000003,72.794434000000138],[-118.46000700000002,72.78915400000011],[-118.46472199999994,72.783325000000104],[-118.48528299999992,72.767487000000074],[-118.49610899999999,72.763610999999969],[-118.53472899999991,72.754715000000033],[-118.54943799999995,72.752487000000087],[-118.58528100000001,72.750275000000045],[-118.65805099999994,72.74803200000008],[-118.70861799999994,72.743590999999981],[-118.75306699999999,72.73692299999999],[-118.77861000000001,72.731093999999985],[-119.11444099999994,72.639435000000049],[-119.1375119999999,72.632477000000051],[-119.15888999999999,72.624984999999981],[-119.16750299999995,72.620529000000033],[-119.30943300000001,72.438873000000058],[-119.3163909999999,72.425812000000121],[-119.33000199999987,72.394149999999968],[-119.33249699999999,72.387206999999989],[-119.33000199999987,72.381653000000142],[-119.32501200000002,72.376648000000102],[-119.30999800000001,72.368042000000003],[-119.30277999999993,72.363037000000134],[-119.30248999999998,72.356644000000017],[-119.31111099999993,72.352203000000088],[-119.40444899999994,72.325545999999974],[-119.429169,72.319716999999969],[-119.51555599999989,72.305817000000104],[-119.62666300000001,72.278320000000122],[-119.65750099999991,72.267211999999972],[-119.67804699999999,72.259430000000009],[-119.760559,72.228867000000037],[-119.80139200000002,72.22137500000008],[-119.837784,72.219711000000075],[-119.97250399999996,72.221100000000092],[-120.12372599999998,72.232597000000112],[-120.13405599999999,72.233756999999969],[-120.13871799999998,72.236420000000066],[-120.13621499999994,72.239929000000132],[-120.12888299999992,72.241928000000144],[-120.14362299999993,72.2494200000001],[-120.12943999999999,72.251663000000065],[-120.12721299999993,72.258606000000043],[-120.12999000000002,72.264160000000061],[-120.13999899999993,72.267761000000064],[-120.15750099999997,72.269714000000022],[-120.17582699999997,72.268875000000094],[-120.24109599999997,72.26249700000011],[-120.25110599999999,72.258606000000043],[-120.25945299999995,72.246643000000006],[-120.26139799999987,72.239700000000028],[-120.25862099999995,72.23414600000001],[-120.23144500000001,72.214812999999992],[-120.225281,72.212479000000144],[-120.21028899999999,72.20881700000001],[-120.19810499999994,72.204322999999988],[-120.18894999999998,72.199150000000088],[-120.18578299999996,72.196151999999984],[-120.14527900000002,72.149994000000049],[-120.14499699999993,72.143599999999992],[-120.17582699999997,72.094437000000084],[-120.19415299999997,72.078323000000125],[-120.30526699999996,72.013046000000088],[-120.329453,71.999146000000053],[-120.34750399999996,71.990814000000057],[-120.38362100000001,71.981658999999979],[-120.41332999999986,71.971374999999966],[-120.423317,71.96748400000007],[-120.43916299999989,71.958328000000108],[-120.445267,71.953048999999965],[-120.4491579999999,71.946930000000123],[-120.45278899999994,71.934707999999944],[-120.45249899999993,71.927765000000136],[-120.44972200000001,71.922210999999947],[-120.439438,71.912201000000039],[-120.43167099999994,71.908034999999984],[-120.391953,71.893051000000071],[-120.38445300000001,71.888885000000016],[-120.37917299999998,71.883881000000031],[-120.38082900000001,71.87831099999994],[-120.41500899999994,71.776382000000126],[-120.42278299999998,71.764160000000118],[-120.42471299999994,71.757216999999969],[-120.42639199999996,71.74443100000002],[-120.423607,71.738875999999948],[-120.41332999999986,71.72886699999998],[-120.40805099999994,71.723877000000073],[-120.40055799999993,71.719437000000084],[-120.37998999999996,71.699707000000046],[-120.37748699999992,71.694138000000066],[-120.37693799999994,71.688034000000073],[-120.38082900000001,71.681931000000077],[-120.43611099999998,71.611922999999933],[-120.47305299999999,71.565536000000066],[-120.49665799999997,71.544144000000017],[-120.54332699999992,71.516662999999994],[-120.60166900000002,71.493591000000038],[-120.63639799999999,71.485535000000141],[-120.78028899999998,71.457214000000079],[-120.80750299999988,71.452484000000027],[-120.87721299999998,71.441360000000145],[-120.921944,71.435532000000023],[-121.13333099999994,71.409424000000058],[-121.33249699999993,71.386932000000002],[-121.39444700000001,71.380264000000011],[-121.42916899999994,71.378311000000053],[-121.44833399999999,71.379425000000026],[-121.59056099999998,71.396378000000141],[-121.60305799999998,71.399428999999998],[-121.59137699999991,71.402771000000087],[-121.57611099999997,71.404434000000037],[-121.54915599999993,71.40914900000007],[-121.53751399999999,71.412490999999989],[-121.53195199999993,71.417755],[-121.52861000000001,71.423874000000012],[-121.531677,71.429427999999973],[-121.53694200000001,71.434418000000051],[-121.54998799999993,71.443588000000091],[-121.56973299999999,71.451660000000061],[-121.59638999999999,71.456940000000145],[-121.63027999999991,71.460540999999978],[-121.66860999999994,71.46276899999998],[-121.70361300000002,71.460815000000139],[-121.74388099999999,71.453323000000012],[-121.75556899999998,71.450271999999984],[-121.77639799999997,71.443038999999942],[-121.81220999999994,71.426651000000106],[-121.82917800000001,71.418319999999994],[-121.84612299999998,71.409714000000065],[-121.90194700000001,71.378586000000098],[-121.96528599999999,71.34275800000006],[-122.07501199999996,71.286926000000051],[-122.12165799999991,71.267211999999972],[-122.14417300000002,71.260817999999915],[-122.21056399999986,71.24832200000003],[-122.25446299999999,71.242477000000122],[-122.29833999999994,71.236374000000012],[-122.35526999999996,71.227768000000083],[-122.43028299999997,71.214157000000114],[-122.50556899999992,71.197754000000032],[-122.593887,71.178040000000124],[-122.60500299999995,71.174988000000042],[-122.61638600000003,71.171646000000067],[-122.64584400000001,71.160538000000088],[-122.66221599999994,71.151931999999988],[-122.67832900000002,71.143326000000059],[-122.7069469999999,71.124420000000043],[-122.74249299999997,71.101089000000002],[-122.76999699999988,71.089157000000057],[-122.781113,71.086104999999918],[-122.79611199999988,71.084152000000017],[-122.84944199999995,71.0816650000001],[-123.07611099999986,71.079163000000051],[-123.09500099999997,71.079987000000017],[-123.1260989999999,71.083878000000084],[-123.162781,71.092758000000117],[-123.22332799999998,71.114150999999993],[-123.25945300000001,71.129700000000128],[-123.29305999999985,71.146102999999982],[-123.31696299999999,71.158599999999979],[-123.37027,71.188873000000115],[-123.3952789999999,71.207763999999941],[-123.42999299999997,71.236923000000104],[-123.44860799999998,71.257767000000115],[-123.46640000000002,71.285537999999974],[-123.51390099999998,71.349152000000061],[-123.56696299999993,71.406096999999932],[-123.63417099999992,71.472487999999942],[-123.66583299999996,71.496368000000132],[-123.67971799999998,71.505264000000068],[-123.84388699999994,71.583328000000108],[-123.88722200000001,71.623595999999964],[-123.89917000000003,71.633041000000048],[-123.94888299999997,71.658325000000048],[-123.97582999999997,71.670258000000103],[-124.01334400000002,71.685806000000071],[-124.02390300000002,71.689148000000046],[-124.07055700000001,71.701935000000049],[-124.11138900000003,71.709991000000116],[-124.13694800000002,71.714432000000045],[-124.38474299999996,71.75471500000009],[-124.458054,71.76638800000012],[-124.609734,71.788040000000137],[-124.65278599999994,71.79525799999999],[-124.67887899999999,71.800812000000121],[-124.700287,71.806366000000139],[-124.83194700000001,71.840820000000008],[-124.86665299999993,71.85054000000008],[-125.07694999999995,71.909149000000127],[-125.16000400000001,71.924683000000073],[-125.23638900000003,71.941910000000064],[-125.24722300000002,71.945511000000124],[-125.25361599999997,71.950255999999968],[-125.24472000000003,71.954422000000079],[-125.04804999999999,71.955536000000052],[-124.98029300000002,71.943587999999977],[-124.96945199999999,71.939972000000125],[-124.95388800000001,71.938034000000016],[-124.94275699999997,71.939972000000125],[-124.93804899999998,71.945525999999916],[-124.93554699999999,71.951659999999947],[-124.93971299999998,71.956940000000031],[-124.94833399999999,71.961105000000032],[-124.98777799999999,71.969711000000132],[-125.02278100000001,71.972504000000129],[-125.23277300000001,71.975524999999948],[-125.35221899999999,71.97468600000002],[-125.41639700000002,71.974135999999987],[-125.47833300000002,71.972763000000043],[-125.59111000000001,71.966385000000116],[-125.62666299999995,71.963608000000022],[-125.68639399999995,71.954987000000074],[-125.72165699999994,71.952209000000096],[-125.76139799999993,71.950821000000019],[-125.80139199999996,71.952209000000096],[-125.93582199999992,71.958602999999982],[-125.97361799999999,71.960541000000092],[-125.984444,71.963882000000126],[-125.99333200000001,71.96804800000001],[-125.997772,71.973602000000028],[-125.99333200000001,71.978867000000093],[-125.97778299999999,71.979706000000022],[-125.966949,71.976379000000122],[-125.90055799999999,71.962494000000049],[-125.88054699999992,71.963318000000015],[-125.84973099999991,71.967209000000082],[-125.80999799999995,71.975540000000137],[-125.787781,71.982208000000128],[-125.77887699999991,71.986374000000012],[-125.765289,71.996094000000085],[-125.75418100000002,72.006103999999993],[-125.74082899999996,72.022751000000028],[-125.73388699999998,72.034133999999995],[-125.724716,72.051926000000094],[-125.71777299999985,72.070540999999992],[-125.71528599999994,72.083603000000039],[-125.71528599999994,72.090270999999973],[-125.71749899999992,72.096375000000023],[-125.72165699999994,72.101929000000041],[-125.72833299999996,72.106644000000074],[-125.73944099999989,72.110260000000096],[-125.71444700000001,72.157485999999949],[-125.57389799999993,72.247467000000142],[-125.51445000000001,72.291076999999973],[-125.46777299999997,72.351074000000096],[-125.43221999999997,72.403580000000034],[-125.43666099999996,72.409134000000051],[-125.30055199999993,72.483307000000025],[-125.29110699999995,72.487183000000073],[-125.27971600000001,72.490524000000107],[-125.25787399999996,72.495125000000144],[-125.247772,72.49523899999997],[-125.17194399999994,72.513596000000064],[-125.1394499999999,72.524138999999991],[-125.02806099999998,72.566071000000079],[-125,72.605254999999943],[-124.94055199999997,72.70248400000014],[-124.97193899999991,72.755829000000006],[-125.02610800000002,72.821091000000081],[-124.95916699999998,72.856369000000086],[-124.89334100000002,72.873871000000122],[-124.87917299999998,72.876373000000001],[-124.801941,72.887497000000053],[-124.76695299999994,72.890823000000125],[-124.72749299999987,72.888596000000064],[-124.68804899999986,72.887497000000053],[-124.66944899999993,72.888884999999959],[-124.63667299999997,72.892761000000064],[-124.60611,72.897216999999955],[-124.591949,72.899994000000049],[-124.49722300000002,72.919707999999957],[-124.48554999999999,72.923035000000084],[-124.47582999999997,72.927200000000084],[-124.47305299999999,72.933318999999926],[-124.49305700000002,72.97164900000007],[-124.49722300000002,72.977203000000031],[-124.62138399999992,73.001389000000131],[-124.71250899999995,73.003876000000048],[-124.72609699999998,73.006653000000142],[-124.73777799999999,73.010268999999994],[-124.76972999999992,73.021378000000084],[-124.82417299999992,73.046097000000032],[-124.83332799999994,73.050262000000032],[-124.84916699999997,73.059417999999994],[-124.862503,73.068878000000041],[-124.86694299999994,73.074432000000058],[-124.86888099999999,73.080551000000071],[-124.86389200000002,73.086105000000089],[-124.79472399999992,73.134720000000129],[-124.78500400000001,73.13888500000013],[-124.71362299999987,73.149428999999998],[-124.59916699999985,73.227768000000026],[-124.58640299999996,73.238037000000077],[-124.57389799999993,73.248321999999973],[-124.56360599999988,73.259155000000135],[-124.50805699999995,73.32638500000013],[-124.44583099999994,73.411102000000142],[-124.44055199999997,73.416655999999932],[-124.43306000000001,73.421370999999965],[-124.40556299999997,73.434143000000006],[-124.30555699999991,73.478592000000106],[-124.29332699999998,73.481659000000036],[-124.252228,73.483596999999975],[-124.22833300000002,73.483321999999987],[-124.20916699999998,73.481659000000036],[-124.18998699999997,73.481659000000036],[-124.17304999999999,73.483596999999975],[-124.16055299999999,73.486923000000047],[-124.07000699999998,73.546097000000088],[-124.041946,73.582214000000079],[-124.03888699999993,73.586929000000112],[-124.07167099999998,73.61775200000011],[-124.0786129999999,73.622756999999979],[-124.07611099999991,73.643051000000071],[-124.073059,73.649155000000121],[-124.06777999999991,73.654709000000139],[-124.05526700000001,73.658034999999984],[-123.94554099999993,73.681656000000032],[-123.86138899999997,73.695815999999979],[-123.83389299999999,73.700272000000041],[-123.774719,73.764435000000105],[-123.80471799999987,73.796936000000017],[-123.83833300000003,73.821106000000043],[-123.84777800000001,73.825271999999927],[-123.93639399999995,73.840546000000018],[-123.95834399999995,73.841369999999984],[-123.98055999999991,73.840820000000122],[-124.01999699999999,73.838318000000072],[-124.06639100000001,73.839432000000045],[-124.08583099999998,73.841094999999996],[-124.13417099999992,73.848327999999981],[-124.16306299999985,73.854156000000103],[-124.19860799999992,73.864699999999971],[-124.21749899999986,73.872757000000092],[-124.36860699999988,74.014435000000049],[-124.41166699999991,74.056366000000025],[-124.42666600000001,74.109711000000118],[-124.43415800000002,74.134430000000066],[-124.600281,74.268326000000059],[-124.61805699999996,74.26638800000012],[-124.66082799999992,74.264708999999925],[-124.68083200000001,74.266098000000113],[-124.69304699999986,74.269440000000031],[-124.77500900000001,74.319152999999972],[-124.78415699999999,74.329987000000074],[-124.781387,74.336104999999975],[-124.77084400000001,74.340271000000087],[-124.75556899999992,74.342758000000003],[-124.69722000000002,74.347214000000065],[-124.40471600000001,74.369141000000127],[-124.10861199999999,74.392761000000121],[-123.89527899999996,74.396378000000084],[-123.85694899999987,74.399429000000112],[-123.676941,74.418320000000108],[-123.63834399999996,74.421371000000136],[-123.57444800000002,74.424149000000114],[-123.41887700000001,74.428314000000114],[-123.20584100000002,74.443039000000056],[-123.02250700000002,74.444702000000007],[-122.68998699999992,74.453872999999987],[-122.43804899999998,74.464995999999928],[-122.33750900000001,74.471099999999979],[-122.118607,74.49192800000003],[-122.06610099999995,74.49803200000008],[-121.93859900000001,74.518326000000002],[-121.76666299999999,74.539703000000031],[-121.73000299999995,74.543319999999994],[-121.65194699999995,74.548598999999967],[-121.61028299999992,74.550537000000134],[-121.56416300000001,74.551086000000055],[-121.51862299999993,74.548874000000012],[-121.31082200000003,74.531661999999983],[-121.25361599999997,74.525818000000129],[-121.13612399999994,74.506943000000035],[-121.08389299999993,74.493590999999981],[-121.05777,74.486649000000057],[-121.01112399999988,74.472214000000122],[-121.00222799999995,74.46775800000006],[-120.98998999999998,74.458037999999988],[-120.98055999999991,74.447479000000101],[-120.97693599999991,74.441925000000083],[-120.97556299999991,74.429703000000131],[-120.90638699999994,74.415268000000026],[-120.70584100000002,74.373596000000134],[-120.48166700000002,74.329987000000074],[-120.21721599999989,74.282486000000006],[-120.14998600000001,74.272491000000059]],[[-97.652785999999992,74.455826000000059],[-97.675551999999982,74.454987000000131],[-97.691939999999988,74.455261000000064],[-97.708892999999989,74.457214000000022],[-97.777221999999995,74.476379000000122],[-97.789444000000003,74.479980000000012],[-97.792495999999915,74.485809000000017],[-97.781386999999995,74.497208000000114],[-97.768616000000009,74.508041000000105],[-97.761672999999917,74.512496999999996],[-97.753890999999953,74.515548999999965],[-97.618057000000022,74.552200000000028],[-97.532227000000034,74.606369000000086],[-97.513625999999988,74.611374000000126],[-97.470001000000025,74.621094000000028],[-97.445830999999998,74.626082999999994],[-97.422774999999945,74.629424999999912],[-97.406951999999933,74.62831100000011],[-97.389724999999999,74.626373000000001],[-97.368056999999965,74.622756999999979],[-97.357772999999952,74.621368000000132],[-97.291381999999942,74.605255000000113],[-97.267226999999934,74.597214000000008],[-97.261672999999917,74.594711000000075],[-97.256957999999997,74.590546000000074],[-97.261948000000018,74.583878000000084],[-97.299987999999871,74.551376000000062],[-97.376098999999954,74.511658000000068],[-97.387511999999958,74.506377999999984],[-97.606383999999991,74.461929000000055],[-97.652785999999992,74.455826000000059]],[[-95.311110999999983,74.497757000000092],[-95.331389999999999,74.496093999999971],[-95.353332999999964,74.496368000000075],[-95.458892999999989,74.49859600000002],[-95.480559999999912,74.5],[-95.522781000000009,74.504990000000078],[-95.603057999999919,74.515548999999965],[-95.661666999999966,74.523605000000032],[-95.697768999999937,74.529709000000025],[-95.71665999999999,74.533874999999966],[-95.809432999999956,74.554427999999973],[-95.845000999999968,74.563873000000058],[-95.862212999999997,74.56999200000007],[-95.866394000000014,74.574158000000011],[-95.860549999999989,74.579163000000051],[-95.857497999999964,74.580551000000128],[-95.682495000000017,74.634995000000004],[-95.653885000000002,74.642211999999915],[-95.638061999999991,74.643326000000116],[-95.624161000000015,74.641662999999994],[-95.628601000000003,74.640823000000125],[-95.517501999999922,74.630264000000068],[-95.497498000000007,74.627197000000137],[-95.441101000000003,74.613876000000005],[-95.403609999999958,74.603316999999947],[-95.334441999999967,74.580825999999945],[-95.317779999999971,74.573883000000137],[-95.291945999999939,74.560257000000036],[-95.260283999999956,74.540543000000071],[-95.25111400000003,74.53414900000007],[-95.244995000000017,74.527771000000087],[-95.246383999999978,74.521652000000074],[-95.25111400000003,74.516098000000056],[-95.259170999999981,74.510544000000095],[-95.271117999999944,74.505554000000018],[-95.289443999999946,74.501389000000017],[-95.311110999999983,74.497757000000092]],[[-97.175827000000027,75.24414100000007],[-97.194442999999978,75.242752000000053],[-97.216110000000015,75.24470500000001],[-97.225006000000008,75.24803199999991],[-97.231948999999929,75.254440000000045],[-97.27806099999998,75.343597000000102],[-97.275283999999999,75.347487999999998],[-97.258056999999951,75.349426000000108],[-97.208617999999944,75.342209000000025],[-97.190551999999968,75.33526599999999],[-97.161666999999852,75.322220000000073],[-97.153060999999923,75.315262000000075],[-97.148894999999925,75.297760000000039],[-97.146956999999986,75.27998400000007],[-97.147507000000019,75.273880000000077],[-97.155838000000017,75.255264000000011],[-97.161666999999852,75.250000000000057],[-97.175827000000027,75.24414100000007]],[[-103.9175029999999,75.054977000000008],[-104.22917199999995,75.018051000000071],[-104.261124,75.018326000000116],[-104.45944199999991,75.028869999999984],[-104.662216,75.062485000000038],[-104.84722899999991,75.109146000000067],[-104.85722399999992,75.164703000000031],[-104.82000699999998,75.177765000000022],[-104.79998799999998,75.189423000000033],[-104.79305999999997,75.194702000000063],[-104.74472000000003,75.246093999999971],[-104.76862299999999,75.281937000000028],[-104.71083099999993,75.322220000000073],[-104.68222000000003,75.33776899999998],[-104.67360699999995,75.341660000000047],[-104.49722299999996,75.406372000000033],[-104.42804699999994,75.420821999999987],[-104.37777699999998,75.42804000000001],[-104.33000199999992,75.433043999999938],[-104.18222000000003,75.435531999999967],[-104.15177900000003,75.434555000000103],[-104.11416600000001,75.430267000000072],[-103.97112299999998,75.404434000000094],[-103.953056,75.399994000000106],[-103.935272,75.394989000000066],[-103.84805299999999,75.364990000000034],[-103.81054699999993,75.348602000000142],[-103.74166899999994,75.286102000000028],[-103.587219,75.169983000000059],[-103.58306899999997,75.164703000000031],[-103.59028599999999,75.159424000000058],[-103.60888699999992,75.149155000000007],[-103.7302929999999,75.099990999999989],[-103.76390100000003,75.088882000000126],[-103.79943799999995,75.077484000000084],[-103.81777999999997,75.072494999999947],[-103.88999899999999,75.058318999999983],[-103.9175029999999,75.054977000000008]],[[-100.17223399999995,75.601379000000009],[-100.15722700000003,75.589432000000045],[-100.15778399999994,75.584991000000116],[-100.17639200000002,75.57998699999996],[-100.23332199999993,75.569153000000085],[-100.383331,75.553588999999988],[-100.45417800000001,75.546371000000022],[-100.47972099999993,75.545822000000044],[-100.47556299999997,75.549987999999985],[-100.45749699999999,75.554152999999985],[-100.43195299999991,75.55831900000004],[-100.40666199999987,75.561370999999951],[-100.36110699999995,75.565535999999952],[-100.31777999999986,75.573043999999982],[-100.30332900000002,75.577484000000027],[-100.29361,75.584427000000005],[-100.30332900000002,75.58859300000006],[-100.31973299999999,75.590820000000122],[-100.33917199999996,75.591369999999984],[-100.36332699999997,75.59027100000003],[-100.52778599999994,75.577208999999982],[-100.74973299999994,75.558029000000033],[-100.86527999999998,75.547211000000061],[-100.88555899999994,75.545822000000044],[-100.90862300000003,75.546371000000022],[-100.950287,75.549713000000111],[-100.99445300000002,75.554977000000122],[-101.02333099999993,75.559981999999991],[-101.03333299999997,75.563034000000073],[-101.03943600000002,75.567215000000147],[-101.02583299999998,75.570540999999992],[-100.84277299999991,75.586929000000055],[-100.70249899999993,75.588882000000012],[-100.68055699999996,75.589432000000045],[-100.65583800000002,75.59165999999999],[-100.64167800000001,75.596100000000035],[-100.62027,75.606094000000041],[-100.59861799999999,75.610259999999926],[-100.51112399999994,75.61914100000007],[-100.39444700000001,75.623031999999967],[-100.27639799999997,75.623031999999967],[-100.23500099999995,75.623031999999967],[-100.21777299999997,75.621917999999994],[-100.204453,75.617477000000065],[-100.19499200000001,75.613312000000064],[-100.17223399999995,75.601379000000009]],[[-94.363892000000021,75.590820000000122],[-94.326950000000011,75.579711999999972],[-94.243880999999931,75.549713000000111],[-94.205275999999913,75.529709000000025],[-94.010283999999956,75.442200000000071],[-93.989715999999987,75.434982000000105],[-93.839721999999938,75.388046000000031],[-93.742492999999968,75.364426000000094],[-93.499160999999958,75.264709000000096],[-93.487502999999947,75.256653000000028],[-93.493331999999953,75.247207999999944],[-93.529175000000009,75.176376000000062],[-93.488892000000021,75.072494999999947],[-93.434157999999968,74.966385000000002],[-93.406386999999995,74.883605999999986],[-93.458053999999947,74.714996000000099],[-93.462508999999955,74.708602999999925],[-93.467772999999966,74.703048999999965],[-93.484726000000023,74.687759000000142],[-93.49610899999999,74.68193100000002],[-93.530563000000029,74.667755000000056],[-93.563323999999966,74.659424000000115],[-93.691665999999941,74.63998400000014],[-93.717223999999874,74.636932000000058],[-93.741378999999995,74.635543999999982],[-94.040282999999988,74.640823000000125],[-94.249999999999886,74.646378000000027],[-94.388061999999991,74.635269000000108],[-94.471114999999884,74.626648000000046],[-94.511947999999961,74.623306000000071],[-94.547500999999897,74.621368000000132],[-94.643340999999964,74.623596000000077],[-94.687774999999931,74.62831100000011],[-95.024718999999948,74.673035000000084],[-95.080001999999979,74.680817000000047],[-95.085830999999985,74.687195000000031],[-95.076949999999954,74.697479000000044],[-95.072783999999956,74.702209000000096],[-95.104445999999996,74.744141000000127],[-95.266402999999912,74.793319999999937],[-95.283324999999991,74.79803499999997],[-95.298339999999996,74.800262000000032],[-95.403335999999911,74.803863999999976],[-95.434158000000025,74.801376000000005],[-95.457503999999972,74.798324999999977],[-95.479172000000005,74.78804000000008],[-95.483062999999902,74.783325000000048],[-95.482772999999952,74.779433999999981],[-95.475554999999986,74.769989000000066],[-95.462219000000005,74.756653000000142],[-95.547226000000023,74.761107999999979],[-95.625823999999909,74.807480000000055],[-95.705565999999976,74.829987000000131],[-95.740828999999906,74.82388300000008],[-95.771392999999932,74.823608000000092],[-95.864166000000012,74.826096000000064],[-95.959473000000003,74.856369000000029],[-96.002501999999879,74.872757000000092],[-96.006667999999934,74.876923000000147],[-96.077224999999942,74.902771000000087],[-96.135283999999899,74.951096000000121],[-96.141678000000013,74.957214000000079],[-96.136948000000018,74.963043000000084],[-96.124709999999936,74.975815000000068],[-96.094726999999978,74.991364000000033],[-96.070847000000015,75.001938000000052],[-96.056380999999988,75.010268999999937],[-96.055557000000022,75.016097999999943],[-96.060546999999985,75.019440000000088],[-96.07417299999986,75.023605000000089],[-96.083068999999966,75.024429000000055],[-96.142226999999991,75.017761000000064],[-96.147507000000019,75.013611000000083],[-96.200835999999924,74.954712000000029],[-96.203339000000028,74.951660000000061],[-96.20666499999993,74.943038999999999],[-96.203887999999949,74.93691999999993],[-96.205840999999964,74.92025799999999],[-96.209732000000031,74.915543000000127],[-96.221389999999985,74.910263000000043],[-96.247771999999884,74.90554800000001],[-96.268341000000021,74.903870000000097],[-96.31527699999998,74.90248100000008],[-96.337219000000005,74.903595000000053],[-96.357497999999964,74.906647000000021],[-96.373610999999983,74.910263000000043],[-96.387221999999952,74.914703000000088],[-96.396666999999923,74.919708000000128],[-96.40306099999998,74.925812000000121],[-96.386123999999995,74.97387700000013],[-96.357497999999964,74.97137500000008],[-96.341385000000002,74.972487999999998],[-96.328063999999983,74.974701000000096],[-96.320557000000008,74.979430999999977],[-96.318343999999968,74.982208000000071],[-96.322234999999864,75.001389000000074],[-96.331115999999895,75.004715000000147],[-96.476669000000015,75.004440000000102],[-96.500838999999928,75.002777000000037],[-96.523055999999997,74.999145999999939],[-96.533889999999985,74.994705000000067],[-96.55972300000002,74.986098999999967],[-96.580291999999986,74.98414600000001],[-96.599990999999989,74.983322000000044],[-96.614165999999955,74.984984999999938],[-96.616942999999992,74.991088999999988],[-96.604720999999984,75.063309000000004],[-96.571395999999936,75.101089000000115],[-96.463057999999933,75.19331399999993],[-96.456389999999999,75.196930000000009],[-96.378600999999946,75.21665999999999],[-96.077788999999996,75.272491000000059],[-95.948043999999982,75.283325000000104],[-95.922500999999954,75.286102000000028],[-95.903335999999911,75.289978000000076],[-95.910552999999936,75.29525799999999],[-95.934433000000013,75.297211000000118],[-95.978058000000033,75.298874000000012],[-96.026671999999962,75.299149000000057],[-96.049987999999928,75.296936000000073],[-96.061935000000005,75.315262000000075],[-96.003615999999965,75.343047999999953],[-95.932494999999903,75.353043000000071],[-95.934714999999983,75.350173999999981],[-95.93472300000002,75.347762999999986],[-95.919998000000021,75.34693900000002],[-95.890288999999996,75.349152000000004],[-95.887443999999959,75.360268000000133],[-95.83677699999987,75.369926000000021],[-95.830780000000004,75.371429000000035],[-95.829781000000025,75.372589000000119],[-95.83061199999986,75.374428000000023],[-95.832786999999939,75.375923000000114],[-95.848274000000004,75.378432999999973],[-95.906775999999979,75.387428000000057],[-95.927779999999871,75.398041000000148],[-96.033324999999934,75.40109300000006],[-96.055267000000015,75.400818000000072],[-96.078887999999893,75.396103000000039],[-96.079178000000013,75.391098],[-96.083618000000001,75.385543999999982],[-96.099730999999963,75.380264000000125],[-96.126099000000011,75.37692300000009],[-96.151108000000022,75.374984999999924],[-96.175277999999992,75.379424999999969],[-96.178878999999995,75.384430000000009],[-96.161941999999954,75.395537999999988],[-96.14973399999991,75.400818000000072],[-96.135009999999966,75.406372000000033],[-96.095839999999896,75.417755000000056],[-96.0625,75.424988000000099],[-95.974166999999966,75.436096000000077],[-95.958344000000011,75.436371000000065],[-95.93638599999997,75.43414300000012],[-95.874160999999958,75.423874000000069],[-95.831046999999955,75.41531400000008],[-95.832549999999969,75.413651000000129],[-95.83322099999998,75.409988000000112],[-95.831046999999955,75.406982000000085],[-95.825881999999979,75.403320000000122],[-95.814383999999961,75.400322000000074],[-95.769553999999857,75.400322000000074],[-95.691100999999946,75.40525800000006],[-95.682495000000017,75.408324999999991],[-95.676102000000014,75.415817000000118],[-95.678328999999962,75.421920999999998],[-95.68472300000002,75.428314000000114],[-95.691665999999998,75.429703000000131],[-95.715835999999911,75.429153000000099],[-95.734160999999915,75.426085999999998],[-95.758620999999948,75.42553700000002],[-95.781677000000002,75.42804000000001],[-95.800551999999925,75.431656000000032],[-95.825011999999958,75.439972000000125],[-95.830001999999922,75.4433140000001],[-95.836945000000014,75.453598000000113],[-95.83805799999999,75.459152000000074],[-95.835555999999997,75.464431999999988],[-95.832229999999981,75.470535000000098],[-95.824172999999973,75.477767999999912],[-95.800551999999925,75.49136400000009],[-95.762222000000008,75.508041000000048],[-95.749725000000012,75.513321000000133],[-95.470000999999968,75.566939999999988],[-95.275283999999942,75.599426000000051],[-95.264175000000023,75.59387200000009],[-95.234436000000017,75.584717000000012],[-95.212783999999999,75.582489000000066],[-95.178604000000007,75.584427000000005],[-95.12470999999988,75.59526100000005],[-95.104172000000005,75.60026600000009],[-95.093338000000017,75.603591999999992],[-95.085830999999985,75.607208000000014],[-95.084166999999979,75.609146000000123],[-95.075286999999946,75.614426000000037],[-95.063323999999909,75.618866000000025],[-95.044448999999872,75.62164300000012],[-94.917769999999962,75.637207000000046],[-94.901672000000019,75.637497000000053],[-94.741378999999938,75.62414600000011],[-94.559722999999963,75.612488000000099],[-94.511123999999995,75.611099000000081],[-94.46556099999998,75.608321999999987],[-94.404175000000009,75.599152000000117],[-94.363892000000021,75.590820000000122]],[[-95.910003999999901,75.560256999999979],[-95.911117999999988,75.554152999999985],[-95.93472300000002,75.540543000000071],[-96.170837000000006,75.458038000000101],[-96.220276000000013,75.455551000000071],[-96.238892000000021,75.456650000000025],[-96.255004999999983,75.461380000000077],[-96.399170000000026,75.516388000000063],[-96.417220999999984,75.523315000000139],[-96.42471299999994,75.528595000000053],[-96.450995999999975,75.529991000000052],[-96.441161999999963,75.535987999999975],[-96.415832999999907,75.543648000000132],[-96.412659000000019,75.546150000000011],[-96.411666999999909,75.548819999999978],[-96.417992000000027,75.552658000000065],[-96.431167999999957,75.555489000000023],[-96.441832999999974,75.555664000000093],[-96.450995999999975,75.553154000000063],[-96.503837999999917,75.535156000000029],[-96.507995999999935,75.532982000000118],[-96.518165999999951,75.526320999999996],[-96.525161999999909,75.519325000000038],[-96.553603999999893,75.508880999999917],[-96.552215999999987,75.503326000000015],[-96.549437999999896,75.497208000000114],[-96.545546999999999,75.492203000000075],[-96.541107000000011,75.488037000000134],[-96.533324999999934,75.48275799999999],[-96.517501999999922,75.478043000000127],[-96.503341999999975,75.471374999999966],[-96.500564999999995,75.464996000000099],[-96.50418099999996,75.460266000000104],[-96.511948000000018,75.455826000000059],[-96.65834000000001,75.388596000000064],[-96.833617999999944,75.352478000000019],[-96.851104999999905,75.350266000000147],[-96.862212999999997,75.350815000000125],[-96.876098999999954,75.353591999999992],[-96.93249499999996,75.376082999999994],[-97.030838000000017,75.454437000000041],[-97.053054999999915,75.492203000000075],[-97.053054999999915,75.497208000000114],[-97.006957999999941,75.508331000000112],[-96.940825999999959,75.521652000000017],[-96.913619999999923,75.526382000000069],[-96.891677999999956,75.529160000000047],[-96.666945999999996,75.552765000000022],[-96.469382999999993,75.588425000000029],[-96.466552999999919,75.591933999999924],[-96.467727999999909,75.599091000000044],[-96.470054999999888,75.602264000000048],[-96.422500999999954,75.623596000000077],[-96.424438000000009,75.635544000000095],[-96.415008999999941,75.646941999999967],[-96.396392999999989,75.649994000000049],[-96.379715000000033,75.651093000000003],[-96.347228999999913,75.651382000000126],[-96.335555999999997,75.650818000000015],[-96.314437999999996,75.647766000000104],[-96.241104000000007,75.629974000000061],[-96.133330999999941,75.606644000000074],[-96.115829000000019,75.60386699999998],[-96.101944000000003,75.603591999999992],[-96.025436000000013,75.602844000000061],[-95.95777899999996,75.583603000000039],[-95.938889000000017,75.577484000000027],[-95.923888999999974,75.571655000000021],[-95.916397000000018,75.566375999999991],[-95.910003999999901,75.560256999999979]],[[-96.954453000000001,75.595534999999984],[-96.975005999999894,75.594711000000018],[-96.996658000000025,75.597762999999929],[-97.005004999999983,75.604431000000091],[-97.001953000000015,75.610809000000074],[-96.988601999999958,75.618042000000059],[-96.978607000000011,75.623031999999967],[-96.960830999999985,75.627472000000125],[-96.779449,75.6602630000001],[-96.751952999999958,75.664703000000088],[-96.729720999999984,75.665267999999969],[-96.720551,75.66415399999994],[-96.715835999999967,75.659988000000055],[-96.718886999999995,75.653870000000097],[-96.722305000000006,75.652954000000022],[-96.740279999999927,75.646941999999967],[-96.849166999999966,75.613312000000064],[-96.954453000000001,75.595534999999984]],[[-96.579177999999899,75.736923000000104],[-96.696655000000021,75.730819999999994],[-96.710555999999997,75.733597000000088],[-96.717223999999987,75.739700000000028],[-96.67860399999995,75.777481000000023],[-96.666945999999996,75.786652000000117],[-96.660827999999981,75.789429000000041],[-96.541107000000011,75.822219999999959],[-96.525283999999942,75.826384999999959],[-96.507506999999976,75.828323000000125],[-96.48443599999996,75.827208999999925],[-96.468062999999916,75.822495000000004],[-96.455841000000021,75.817764000000068],[-96.457503999999972,75.801085999999998],[-96.459166999999979,75.789429000000041],[-96.539718999999991,75.74331699999999],[-96.553603999999893,75.738586000000055],[-96.579177999999899,75.736923000000104]],[[-111.79998799999998,75.839157],[-111.823624,75.83859300000006],[-111.86582899999996,75.840545999999961],[-111.900284,75.843596999999988],[-111.91722099999993,75.846939000000134],[-111.92250100000001,75.852767999999969],[-111.91972399999997,75.85775799999999],[-111.90139799999997,75.863876000000118],[-111.85665899999992,75.867751999999996],[-111.79972799999996,75.871093999999971],[-111.61305199999993,75.881927000000132],[-111.59528399999999,75.882751000000098],[-111.58306899999991,75.881927000000132],[-111.5786129999999,75.879974000000004],[-111.58194699999996,75.876083000000108],[-111.59306300000003,75.87303200000008],[-111.62917299999992,75.856934000000024],[-111.64806399999998,75.851928999999984],[-111.75695799999994,75.841659999999933],[-111.79998799999998,75.839157]],[[-122.34084300000001,75.862761999999975],[-122.36277799999999,75.858032000000094],[-122.39862099999993,75.859421000000111],[-122.66471899999993,75.89387499999998],[-122.69167299999998,75.900269000000037],[-122.69360399999999,75.902206000000035],[-122.69554099999993,75.908035000000041],[-122.68277,75.911652000000004],[-122.633331,75.919708000000071],[-122.58222999999998,75.921921000000054],[-122.53751399999993,75.922484999999995],[-122.37917299999992,75.915817000000004],[-122.35305800000003,75.914429000000098],[-122.337784,75.911377000000016],[-122.32833900000003,75.905822999999998],[-122.32417299999997,75.899719000000005],[-122.33473200000003,75.869141000000013],[-122.34084300000001,75.862761999999975]],[[-121.09306299999997,75.726089000000059],[-121.1100009999999,75.724700999999982],[-121.14306599999992,75.725815000000125],[-121.27555799999993,75.747481999999991],[-121.28832999999997,75.752777000000037],[-121.28582799999998,75.758881000000088],[-121.27194199999997,75.770537999999988],[-121.26306199999993,75.774154999999951],[-121.11694299999999,75.795821999999987],[-121.04332699999992,75.808868000000132],[-121.02944899999989,75.811371000000122],[-121.01917299999997,75.818054000000075],[-121.01500699999997,75.824707000000046],[-121.00083899999993,75.856644000000017],[-120.99833699999988,75.867751999999996],[-121.00695799999988,75.879700000000071],[-121.01363399999997,75.884720000000073],[-121.04222099999998,75.894149999999968],[-121.04750099999995,75.899993999999992],[-121.04250299999995,75.90554800000001],[-121.03859699999998,75.908325000000104],[-120.997772,75.926376000000062],[-120.98000300000001,75.929427999999973],[-120.87777699999998,75.936096000000134],[-120.86776700000001,75.924698000000149],[-120.86776700000001,75.913315000000125],[-120.86972000000003,75.881087999999977],[-120.87110899999993,75.87553400000013],[-120.88474300000001,75.844986000000006],[-120.89835399999998,75.825821000000019],[-120.92111199999999,75.803314000000114],[-120.93804899999998,75.790543000000014],[-120.99388099999993,75.757767000000115],[-121.01862299999993,75.744431000000134],[-121.03278399999994,75.737762000000089],[-121.05248999999992,75.732758000000103],[-121.09306299999997,75.726089000000059]],[[-95.792769999999962,75.899719000000005],[-95.809432999999956,75.894714000000135],[-95.818893000000003,75.907211000000075],[-95.825561999999991,75.913315000000125],[-95.847777999999892,75.929427999999973],[-95.862503000000004,75.936096000000134],[-95.882492000000013,75.941086000000041],[-95.896956999999986,75.947753999999975],[-95.899993999999992,75.953873000000044],[-95.890839000000028,75.959427000000005],[-95.860001000000011,75.966660000000047],[-95.796660999999972,75.973312000000078],[-95.770554000000004,75.974991000000102],[-95.746947999999918,75.97387700000013],[-95.73582499999992,75.968323000000112],[-95.736938000000009,75.962494000000106],[-95.751952999999958,75.927475000000072],[-95.761947999999961,75.916092000000049],[-95.779723999999931,75.90498400000007],[-95.792769999999962,75.899719000000005]],[[-94.405563000000029,75.75082400000008],[-94.582778999999903,75.74581900000004],[-94.629165999999998,75.746094000000085],[-94.676102000000014,75.747756999999979],[-94.72084000000001,75.753876000000048],[-94.739440999999999,75.75749200000007],[-94.777495999999928,75.768600000000049],[-94.795272999999952,75.775818000000072],[-94.809157999999968,75.782486000000063],[-94.822234999999978,75.794144000000074],[-94.898894999999925,75.912765999999976],[-94.902785999999992,75.919434000000138],[-94.905272999999966,75.925537000000077],[-94.906112999999948,75.93081699999999],[-94.904449,75.9369200000001],[-94.89527899999996,75.942200000000014],[-94.879989999999964,75.945526000000029],[-94.865554999999972,75.947478999999987],[-94.813613999999973,75.950546000000088],[-94.737777999999992,75.952208999999982],[-94.699722000000008,75.955551000000128],[-94.53832999999986,75.986099000000081],[-94.481948999999929,75.974426000000051],[-94.466948999999886,75.968597000000045],[-94.453338999999914,75.961929000000112],[-94.449721999999952,75.955261000000121],[-94.443603999999993,75.938309000000118],[-94.420272999999952,75.868590999999981],[-94.410277999999948,75.86192299999999],[-94.370833999999945,75.842209000000082],[-94.322234999999978,75.814986999999974],[-94.305557000000022,75.80304000000001],[-94.287780999999939,75.783875000000023],[-94.288054999999986,75.777481000000023],[-94.291381999999999,75.772217000000012],[-94.296950999999979,75.766388000000006],[-94.310271999999941,75.761383000000137],[-94.326400999999976,75.757217000000082],[-94.353881999999942,75.753876000000048],[-94.405563000000029,75.75082400000008]],[[-103.137787,75.74275200000011],[-103.20667300000002,75.74275200000011],[-103.3011019999999,75.744705000000067],[-103.32389799999999,75.747208000000057],[-103.36888099999999,75.753876000000048],[-103.38082899999995,75.759430000000009],[-103.382767,75.765549000000021],[-103.31139399999995,75.805252000000053],[-103.07749899999999,75.890823000000069],[-103.05943300000001,75.896378000000141],[-103.03751399999993,75.901657000000114],[-103.01194799999996,75.906097000000102],[-102.98693800000001,75.909424000000058],[-102.69611399999997,75.946640000000002],[-102.59889199999986,75.953598],[-102.52278099999995,75.958038000000045],[-102.43360899999999,75.964157000000057],[-102.291382,75.977203000000145],[-102.21749899999998,75.985535000000141],[-102.19138299999997,75.989699999999971],[-102.16471899999993,75.99054000000001],[-102.07861300000002,75.97137500000008],[-101.98916599999995,75.950821000000076],[-101.98332199999987,75.945816000000036],[-101.98860200000001,75.934418000000051],[-102.020554,75.925537000000077],[-102.09472700000003,75.911652000000004],[-102.14639299999993,75.903320000000008],[-102.19638099999997,75.899719000000005],[-102.29638699999998,75.894989000000123],[-102.31916799999999,75.893051000000014],[-102.34665699999999,75.889434999999935],[-102.39417299999997,75.880814000000044],[-102.43055699999991,75.869979999999998],[-102.44082600000002,75.86442599999998],[-102.44943199999994,75.85832199999993],[-102.45584099999996,75.852478000000133],[-102.46000699999996,75.847214000000122],[-102.47165699999988,75.818329000000062],[-102.48277300000001,75.806366000000025],[-102.49694799999992,75.79553199999998],[-102.50917099999998,75.789429000000041],[-102.54527300000001,75.779709000000139],[-102.59028599999994,75.770537999999988],[-102.61165599999998,75.767211999999972],[-102.636124,75.764708999999982],[-102.86638599999998,75.753601000000003],[-103.015289,75.747208000000057],[-103.137787,75.74275200000011]],[[-122.81916799999999,76.06053200000008],[-122.78056300000003,76.057205000000124],[-122.68776700000001,76.059982000000048],[-122.66194200000001,76.05693100000002],[-122.64277599999997,76.052475000000129],[-122.63082900000001,76.046646000000123],[-122.72501399999987,76.023605000000089],[-122.88194299999998,76.011108000000092],[-122.89250199999998,76.013611000000026],[-122.89611799999994,76.026931999999988],[-122.89222699999999,76.031096999999988],[-122.85082999999997,76.057205000000124],[-122.81916799999999,76.06053200000008]],[[-102.38999899999993,76.083603000000096],[-102.37554899999998,76.079163000000108],[-102.37138399999998,76.079163000000108],[-102.36805699999996,76.077209000000096],[-102.3563769999999,76.075820999999962],[-102.35333300000002,76.073883000000023],[-102.33889799999997,76.069443000000035],[-102.33249699999999,76.065536000000066],[-102.32167099999998,76.053589000000102],[-102.31639100000001,76.036925999999994],[-102.31889299999989,76.031096999999988],[-102.319458,76.024704000000042],[-102.32972699999993,76.015823000000125],[-102.34388699999994,76.010269000000108],[-102.36582900000002,76.005829000000119],[-102.41665599999999,76.000275000000101],[-102.51722699999993,75.991088999999988],[-102.56777999999991,75.985535000000141],[-102.695267,75.973312000000078],[-102.71472199999988,75.97026100000005],[-102.73972299999997,75.968048000000124],[-102.79055800000003,75.961380000000133],[-102.81139399999995,75.959990999999945],[-102.93611099999998,75.94802900000002],[-103.01027699999997,75.943038999999942],[-103.08528099999995,75.935806000000127],[-103.15695199999993,75.925812000000121],[-103.21888699999994,75.920258000000103],[-103.26500699999997,75.914429000000098],[-103.28943600000002,75.913040000000137],[-103.33944700000001,75.908035000000041],[-103.37998999999996,75.906097000000102],[-103.39639299999993,75.904434000000037],[-103.43305999999995,75.903320000000008],[-103.45333899999997,75.901657000000114],[-103.52443699999998,75.89888000000002],[-103.59277299999997,75.897217000000069],[-103.61332700000003,75.895538000000101],[-103.63474300000001,75.891098000000056],[-103.65556300000003,75.888596000000007],[-103.69972199999989,75.887496999999996],[-103.72332799999987,75.889160000000118],[-103.77111799999994,75.896378000000141],[-103.81166100000002,75.899428999999941],[-103.88806199999993,75.898041000000035],[-103.90194700000001,75.898604999999975],[-103.91471899999993,75.90248100000008],[-103.91500899999994,75.907760999999937],[-103.91722099999993,75.913605000000132],[-103.92555199999998,75.919144000000131],[-103.93611099999998,75.924149],[-103.96472199999999,75.934418000000051],[-103.97165699999994,75.938309000000118],[-103.94220699999994,75.942749000000106],[-103.90194700000001,75.943862999999908],[-103.82556199999999,75.950821000000076],[-103.80248999999998,75.953873000000044],[-103.78527799999995,75.957489000000066],[-103.77139299999988,75.963043000000084],[-103.75834700000001,75.966660000000047],[-103.7083439999999,75.972488000000112],[-103.68776699999989,75.97387700000013],[-103.598343,75.977203000000145],[-103.57444799999996,75.976654000000053],[-103.55471799999998,75.975266000000147],[-103.52250699999991,75.97554000000008],[-103.49694799999997,75.979980000000069],[-103.474716,75.985259999999982],[-103.45694700000001,75.990814000000114],[-103.41306299999997,76.001663000000008],[-103.39138800000001,76.006104000000107],[-103.36582899999996,76.009429999999952],[-103.34028599999988,76.013884999999959],[-103.31500199999999,76.017212000000086],[-103.29028299999999,76.018599999999992],[-103.26363399999997,76.019440000000088],[-103.22138999999993,76.019150000000025],[-103.196663,76.020537999999988],[-103.17887899999999,76.024994000000049],[-103.15666199999993,76.036652000000061],[-103.13667299999992,76.041656000000046],[-103.120003,76.043320000000051],[-103.05110200000001,76.043593999999985],[-103.00639299999995,76.044707999999957],[-102.98110999999989,76.04693600000013],[-102.95556599999998,76.050261999999975],[-102.91555800000003,76.060257000000092],[-102.88971700000002,76.064423000000147],[-102.86833199999995,76.066940000000045],[-102.86028299999992,76.066666000000112],[-102.85582699999992,76.067764000000011],[-102.75666799999993,76.073044000000095],[-102.708618,76.077484000000084],[-102.68138099999999,76.079163000000108],[-102.65805099999994,76.082214000000135],[-102.60777299999995,76.085814999999968],[-102.53138699999994,76.089431999999931],[-102.46806300000003,76.090271000000087],[-102.42804699999999,76.089431999999931],[-102.40416699999997,76.087769000000037],[-102.39639299999999,76.086655000000064],[-102.38999899999993,76.083603000000096]],[[-118.31639100000001,75.57249500000006],[-118.35472099999993,75.558868000000018],[-118.58306900000002,75.499419999999986],[-118.60472099999998,75.496368000000075],[-118.7036129999999,75.503052000000082],[-118.72250400000001,75.504440000000045],[-118.82749899999999,75.532761000000107],[-118.87361099999998,75.547484999999995],[-118.87777699999998,75.553314],[-118.92804699999999,75.562759000000085],[-118.95305599999995,75.564697000000024],[-119.08194700000001,75.567764000000125],[-119.13082900000001,75.566939999999988],[-119.19695299999995,75.562484999999924],[-119.22250400000001,75.565262000000018],[-119.34028599999999,75.579436999999928],[-119.36749299999991,75.58415199999996],[-119.38333099999994,75.589157000000057],[-119.39527899999996,75.594711000000018],[-119.40583800000002,75.600540000000024],[-119.408051,75.605820000000108],[-119.40471600000001,75.611923000000047],[-119.39750700000002,75.618317000000104],[-119.37554899999998,75.631088000000034],[-119.27528399999994,75.674698000000035],[-119.18831599999987,75.702484000000084],[-119.11389200000002,75.720535000000041],[-118.95472699999999,75.778594999999996],[-118.78888699999999,75.843048000000067],[-118.762787,75.856934000000024],[-118.75834699999996,75.862198000000035],[-118.75334199999992,75.866379000000109],[-118.71694899999994,75.882751000000098],[-118.61916399999996,75.915543000000071],[-118.58139,75.924987999999985],[-118.56388899999996,75.928589000000045],[-118.40444899999994,75.960815000000082],[-118.36776699999996,75.966385000000002],[-118.34028599999999,75.967484000000013],[-118.19415300000003,75.967484000000013],[-118.16832699999998,75.968323000000112],[-118.15222199999994,75.97137500000008],[-118.13751200000002,75.979705999999965],[-118.13137799999998,75.985535000000141],[-118.13137799999998,75.991363999999976],[-118.12748699999992,75.997482000000105],[-118.10500299999995,76.023880000000077],[-118.08860800000002,76.029434000000094],[-118.07140400000003,76.034149000000127],[-118.03751399999987,76.038315000000011],[-117.99804699999993,76.039978000000133],[-117.95722999999992,76.043045000000063],[-117.93360899999993,76.047485000000052],[-117.89972699999998,76.057479999999998],[-117.88971699999996,76.060806000000014],[-117.88500999999997,76.066086000000098],[-117.89138799999995,76.072220000000129],[-117.89277600000003,76.077484000000084],[-117.88612399999988,76.079712000000029],[-117.77887699999991,76.108597000000088],[-117.72609699999998,76.115540000000067],[-117.70694700000001,76.117203000000018],[-117.662216,76.117751999999939],[-117.64111299999996,76.116652999999985],[-117.62304699999999,76.114426000000094],[-117.51944700000001,76.099716000000001],[-117.49166899999989,76.094986000000119],[-117.47138999999993,76.088882000000069],[-117.46389799999997,76.083054000000004],[-117.48916600000001,76.04693600000013],[-117.57305899999994,75.981934000000081],[-117.681107,75.921097000000088],[-117.70445299999989,75.916930999999977],[-117.74694799999997,75.910812000000135],[-117.77555799999993,75.89888000000002],[-117.83833299999998,75.859985000000052],[-117.93720999999999,75.785262999999986],[-117.94499199999996,75.77915999999999],[-117.95221700000002,75.771927000000005],[-117.95638999999994,75.765822999999955],[-117.95638999999994,75.75999500000006],[-117.97138999999993,75.728867000000037],[-118.01583899999997,75.699416999999983],[-118.06220999999999,75.685806000000014],[-118.096947,75.678589000000102],[-118.11389200000002,75.673874000000069],[-118.14277599999997,75.663879000000122],[-118.22193900000002,75.633881000000031],[-118.26363400000002,75.616928000000087],[-118.2675089999999,75.61285399999997],[-118.266953,75.609985000000108],[-118.26834099999991,75.59165999999999],[-118.31639100000001,75.57249500000006]],[[-78.926391999999964,75.875809000000004],[-78.914169000000015,75.87303200000008],[-78.904174999999896,75.867203000000075],[-78.881377999999984,75.853317000000061],[-78.876663000000008,75.849152000000061],[-78.879439999999931,75.844147000000021],[-78.897781000000009,75.839706000000092],[-78.921111999999994,75.837494000000049],[-79.048889000000031,75.836928999999998],[-79.067779999999971,75.840271000000143],[-79.072783999999956,75.844437000000028],[-79.068618999999956,75.848328000000095],[-79.05749499999996,75.853317000000061],[-79.042495999999915,75.858032000000094],[-79.021666999999923,75.867477000000008],[-79.031676999999945,75.870819000000097],[-79.05471799999998,75.872757000000036],[-79.268889999999999,75.875259000000142],[-79.319457999999941,75.87359600000002],[-79.343063000000029,75.871093999999971],[-79.361389000000031,75.86692800000003],[-79.408339999999953,75.852767999999969],[-79.420273000000009,75.848038000000088],[-79.428054999999972,75.842484000000127],[-79.458617999999944,75.810806000000071],[-79.598052999999936,75.861374000000069],[-79.620270000000005,75.862761999999975],[-79.705840999999964,75.860535000000084],[-79.726944000000003,75.861099000000024],[-79.739990000000034,75.86442599999998],[-79.752227999999889,75.878586000000098],[-79.580001999999979,75.945251000000042],[-79.567504999999983,75.949142000000109],[-79.396956999999986,76.001938000000052],[-79.375,76.005554000000075],[-79.272780999999952,76.028045999999961],[-79.137786999999946,76.077209000000096],[-79.129714999999976,76.082763999999997],[-79.121932999999956,76.088593000000003],[-79.113051999999925,76.100540000000137],[-79.091384999999889,76.114426000000094],[-79.081954999999994,76.116379000000052],[-78.923888999999974,76.121094000000085],[-78.904174999999896,76.119705000000067],[-78.893065999999976,76.115540000000067],[-78.821670999999924,76.098328000000038],[-78.805832000000009,76.09304800000001],[-78.798049999999876,76.08638000000002],[-78.799164000000019,76.079987000000074],[-78.825835999999924,76.05802900000009],[-78.833892999999989,76.052475000000129],[-78.845551,76.047485000000052],[-78.861389000000031,76.043320000000051],[-78.921660999999915,76.031937000000028],[-78.998610999999983,76.014998999999989],[-79.069732999999928,75.998322000000144],[-79.085007000000019,75.993866000000082],[-79.144729999999981,75.975266000000147],[-79.156112999999948,75.969986000000063],[-79.166655999999932,75.964157000000057],[-79.171936000000017,75.958878000000084],[-79.176392000000021,75.952774000000034],[-79.176940999999943,75.946365000000014],[-79.174437999999952,75.93942300000009],[-79.168335000000013,75.931931000000134],[-79.140288999999939,75.918868999999972],[-79.111938000000009,75.910263000000043],[-79.029449,75.888321000000133],[-79.010284000000013,75.884720000000073],[-78.989440999999943,75.881927000000132],[-78.943603999999993,75.878036000000066],[-78.926391999999964,75.875809000000004]],[[-94.843613000000005,76.122208000000057],[-94.831116000000009,76.09664900000007],[-94.870270000000005,76.068877999999984],[-94.889175000000023,76.05802900000009],[-94.905562999999916,76.05386400000009],[-94.92860399999995,76.051086000000112],[-95.006667999999991,76.047485000000052],[-95.027221999999938,76.047760000000096],[-95.048888999999974,76.050812000000008],[-95.062499999999943,76.056090999999981],[-95.086394999999925,76.068054000000018],[-95.101943999999946,76.07777400000009],[-95.139724999999999,76.107757999999933],[-95.14416499999993,76.111922999999933],[-95.147232000000031,76.116927999999973],[-95.146392999999989,76.118042000000003],[-95.12110899999999,76.118591000000094],[-95.09445199999999,76.113602000000128],[-95.076949999999954,76.108322000000101],[-95.060546999999985,76.105819999999994],[-95.030562999999972,76.104706000000022],[-95.013061999999934,76.105819999999994],[-94.992767000000015,76.109421000000054],[-94.854445999999996,76.136658000000011],[-94.843613000000005,76.122208000000057]],[[-81.327788999999996,76.147217000000012],[-81.338607999999965,76.146378000000084],[-81.452498999999875,76.155822999999941],[-81.462508999999955,76.15887500000008],[-81.456954999999994,76.163605000000075],[-81.415833000000021,76.176926000000037],[-81.378051999999968,76.184417999999994],[-81.348891999999978,76.187485000000095],[-81.294448999999929,76.187759000000028],[-81.267226999999991,76.187759000000028],[-81.221663999999976,76.185531999999967],[-81.203338999999971,76.181091000000038],[-81.201401000000033,76.177765000000022],[-81.208617999999944,76.172211000000004],[-81.306106999999884,76.151093000000117],[-81.327788999999996,76.147217000000012]],[[-102.53083800000002,76.223312000000021],[-102.52722199999994,76.216934000000094],[-102.53138699999994,76.211655000000121],[-102.58056599999986,76.152481000000023],[-102.636124,76.125534000000073],[-102.65055799999999,76.119980000000112],[-102.67138699999998,76.114151000000106],[-102.73665599999998,76.098601999999971],[-102.78056300000003,76.089706000000035],[-102.80638099999999,76.085541000000035],[-102.85777300000001,76.078873000000101],[-102.93360899999999,76.070831000000112],[-103.34221599999995,76.036652000000061],[-103.36472300000003,76.035812000000021],[-103.67999299999997,76.034149000000127],[-103.82000700000003,76.031372000000033],[-103.86638600000003,76.030823000000055],[-103.91443599999997,76.03166200000004],[-103.962219,76.034714000000122],[-103.97277799999995,76.039703000000088],[-103.92388899999997,76.040817000000061],[-103.87832599999996,76.043869000000029],[-103.86945299999996,76.047485000000052],[-103.88861099999997,76.049712999999997],[-103.98332199999999,76.057205000000124],[-104.06054699999999,76.062195000000031],[-104.08677699999998,76.06053200000008],[-104.08743999999996,76.05819699999995],[-104.13082899999989,76.056366000000025],[-104.39111300000002,76.078323000000069],[-104.40833999999995,76.082214000000135],[-104.47833300000002,76.135817999999972],[-104.48277299999995,76.142211999999972],[-104.46389799999992,76.15887500000008],[-104.45417800000001,76.164429000000041],[-104.31582600000002,76.208037999999988],[-104.29804999999993,76.212494000000049],[-104.27250700000002,76.216095000000109],[-104.24722300000002,76.218596999999988],[-104.17223399999995,76.224152000000117],[-104.14806399999986,76.2227630000001],[-104.07472200000001,76.222213999999951],[-103.9569469999999,76.233047000000113],[-103.91805999999997,76.239975000000129],[-103.85138699999999,76.250000000000057],[-103.59445199999999,76.26527400000009],[-103.33693699999998,76.27998400000007],[-103.13137799999993,76.303040000000067],[-103.11000100000001,76.304703000000018],[-103.05999799999995,76.306366000000139],[-102.86472299999997,76.311095999999964],[-102.81696299999999,76.312194999999974],[-102.765556,76.311645999999996],[-102.72693599999997,76.30581699999999],[-102.66915899999992,76.295822000000101],[-102.66555799999998,76.294708000000128],[-102.65222199999994,76.287766000000033],[-102.64277599999997,76.269989000000123],[-102.63362100000001,76.257491999999957],[-102.62554899999992,76.251937999999996],[-102.6036069999999,76.24552900000009],[-102.55832700000002,76.235809000000017],[-102.54055799999998,76.229431000000091],[-102.53083800000002,76.223312000000021]],[[-89.398894999999982,76.43553200000008],[-89.425003000000004,76.43553200000008],[-89.599166999999966,76.440262000000132],[-89.613616999999977,76.440811000000053],[-89.625548999999978,76.444976999999994],[-89.615004999999996,76.449141999999995],[-89.559158000000025,76.470535000000098],[-89.533065999999963,76.47665400000011],[-89.49499499999996,76.472488000000055],[-89.488327000000027,76.46804800000001],[-89.465835999999911,76.462203999999986],[-89.446380999999917,76.457763999999997],[-89.40834000000001,76.450546000000145],[-89.386123999999938,76.447754000000089],[-89.378051999999968,76.444138000000009],[-89.380553999999961,76.439147999999989],[-89.398894999999982,76.43553200000008]],[[-83.962783999999999,76.426375999999948],[-83.986114999999984,76.423309000000017],[-84.009170999999924,76.425812000000008],[-84.109436000000017,76.444427000000132],[-84.12388599999997,76.451096000000007],[-84.139449999999954,76.507217000000082],[-84.128052000000025,76.50999500000006],[-84.097503999999901,76.506653000000142],[-84.013625999999931,76.498032000000023],[-83.992492999999854,76.494980000000112],[-83.976944000000003,76.491089000000045],[-83.918334999999956,76.469437000000028],[-83.908050999999944,76.464996000000099],[-83.962783999999999,76.426375999999948]],[[-104.05387899999999,76.563034000000073],[-104.03388999999999,76.559708000000001],[-103.87888299999997,76.573608000000092],[-103.86860699999994,76.579162999999994],[-103.86665299999993,76.584991000000116],[-103.87138400000003,76.596649000000127],[-103.86721799999998,76.603043000000014],[-103.85944399999994,76.607208000000014],[-103.82640100000003,76.618317000000047],[-103.804169,76.621918000000107],[-103.78751399999993,76.620529000000147],[-103.58194699999996,76.547759999999982],[-103.58805799999993,76.541930999999977],[-103.59249899999998,76.535812000000135],[-103.59166700000003,76.53137200000009],[-103.587784,76.524993999999936],[-103.57028199999996,76.521103000000096],[-103.404449,76.494705000000124],[-103.38445299999995,76.492203000000018],[-103.32112100000001,76.494980000000112],[-103.24500299999994,76.485535000000027],[-103.05777,76.457763999999997],[-103.03666699999991,76.453873000000101],[-103.01418299999995,76.447754000000089],[-103.00805699999989,76.441650000000038],[-103.00446299999999,76.435257000000092],[-103.00446299999999,76.429977000000008],[-103.011124,76.423309000000017],[-103.01917300000002,76.418045000000063],[-103.02971599999989,76.412491000000045],[-103.0425029999999,76.406372000000033],[-103.098343,76.384720000000016],[-103.17250099999995,76.362762000000032],[-103.20472699999993,76.354705999999965],[-103.281387,76.336929000000112],[-103.37805200000003,76.325546000000088],[-103.55444299999999,76.310257000000036],[-103.70056199999993,76.304152999999985],[-103.75195299999996,76.303589000000045],[-103.848343,76.310257000000036],[-104.06194299999993,76.317490000000021],[-104.11165599999998,76.316376000000048],[-104.33500699999996,76.318603999999993],[-104.37888299999992,76.323317999999972],[-104.396118,76.327774000000034],[-104.40471599999995,76.333328000000051],[-104.404449,76.334427000000005],[-104.38971700000002,76.342758000000117],[-104.37581599999993,76.348328000000038],[-104.362213,76.352202999999975],[-104.34333799999996,76.354156000000103],[-104.32972699999999,76.358032000000037],[-104.328056,76.363876000000005],[-104.39111300000002,76.461105000000032],[-104.43388399999998,76.484984999999995],[-104.44888300000002,76.491089000000045],[-104.47332799999998,76.49331699999999],[-104.48249800000002,76.490540000000124],[-104.48361199999999,76.485808999999961],[-104.49749800000001,76.481093999999928],[-104.52278100000001,76.480545000000006],[-104.56388900000002,76.482208000000128],[-104.65888999999987,76.545822000000044],[-104.66583300000002,76.551651000000049],[-104.63722200000001,76.603317000000118],[-104.56304899999998,76.612761999999975],[-104.53666699999997,76.617203000000075],[-104.445267,76.635818000000029],[-104.40666199999987,76.645538000000101],[-104.37416100000002,76.655823000000055],[-104.35193600000002,76.660263000000043],[-104.31500199999994,76.663879000000122],[-104.26750199999998,76.667206000000022],[-104.21665999999999,76.668320000000051],[-104.13417099999998,76.669434000000024],[-104.05332899999996,76.664703000000088],[-104.031113,76.661652000000061],[-103.96333299999998,76.649994000000049],[-103.93971299999998,76.644714000000135],[-103.926941,76.638046000000145],[-103.9225009999999,76.633605999999986],[-103.92610200000001,76.621918000000107],[-103.93831599999999,76.610535000000141],[-103.95861799999994,76.599152000000117],[-104.02778599999988,76.579162999999994],[-104.051941,76.568878000000041],[-104.05387899999999,76.563034000000073]],[[-98.418059999999912,76.668320000000051],[-98.403885000000002,76.661377000000016],[-98.413939999999911,76.647491000000059],[-98.423606999999947,76.641486999999927],[-98.425780999999972,76.63848900000005],[-98.425277999999992,76.63564300000013],[-98.429169000000002,76.626922999999977],[-98.419723999999917,76.622482000000048],[-98.376099000000011,76.611923000000047],[-98.357773000000009,76.608321999999987],[-98.281386999999995,76.602203000000145],[-98.180557000000022,76.586929000000055],[-98.189712999999983,76.580276000000083],[-98.242766999999958,76.571655000000135],[-98.258621000000005,76.573318000000086],[-98.278335999999967,76.581100000000049],[-98.298339999999996,76.585266000000104],[-98.319457999999997,76.58859300000006],[-98.362502999999947,76.593323000000112],[-98.395554000000004,76.594437000000084],[-98.40194699999995,76.591934000000094],[-98.398894999999925,76.581375000000037],[-98.378051999999968,76.572220000000016],[-98.357773000000009,76.565536000000122],[-98.322784000000013,76.561096000000134],[-98.080565999999976,76.531097000000102],[-97.944442999999978,76.518051000000128],[-97.897780999999895,76.515823000000012],[-97.807770000000005,76.514435000000105],[-97.764450000000011,76.510544000000039],[-97.750290000000007,76.506942999999978],[-97.693328999999949,76.487762000000089],[-97.684722999999963,76.47164900000007],[-97.662215999999944,76.425261999999975],[-97.662505999999894,76.419434000000081],[-97.670273000000009,76.414992999999981],[-97.706954999999937,76.405548000000067],[-97.718886999999995,76.40109300000006],[-97.727218999999991,76.395537999999988],[-97.731673999999998,76.38998400000014],[-97.761397999999986,76.334991000000002],[-97.728881999999999,76.282760999999994],[-97.726104999999905,76.278320000000065],[-97.699432000000002,76.266663000000108],[-97.64805599999994,76.250275000000045],[-97.610549999999989,76.242203000000075],[-97.591674999999952,76.23692299999999],[-97.575561999999991,76.231369000000029],[-97.523055999999997,76.205826000000116],[-97.516952999999944,76.199997000000053],[-97.509170999999981,76.188873000000001],[-97.494994999999903,76.148880000000133],[-97.494445999999868,76.138885000000073],[-97.503066999999874,76.127472000000068],[-97.517776000000026,76.119141000000127],[-97.542496000000028,76.108322000000101],[-97.563323999999966,76.097487999999998],[-97.588333000000034,76.080826000000002],[-97.656386999999938,75.972762999999986],[-97.647507000000019,75.944427000000076],[-97.64555399999989,75.938873000000058],[-97.642226999999934,75.9327550000001],[-97.612503000000004,75.901932000000102],[-97.597778000000005,75.889434999999935],[-97.597778000000005,75.846939000000134],[-97.654174999999896,75.798324999999977],[-97.664169000000015,75.793320000000108],[-97.693603999999993,75.785812000000078],[-97.707503999999972,75.783324999999991],[-97.837219000000005,75.765549000000021],[-97.913329999999974,75.751663000000065],[-97.930557000000022,75.746933000000013],[-97.938598999999954,75.741364000000033],[-97.870543999999938,75.73054499999995],[-97.827224999999885,75.726929000000098],[-97.690276999999867,75.720535000000041],[-97.425551999999982,75.692200000000071],[-97.404448999999943,75.68803400000013],[-97.386672999999973,75.682754999999986],[-97.375823999999852,75.676376000000118],[-97.369995000000017,75.670822000000101],[-97.368606999999997,75.659424000000115],[-97.369155999999975,75.653320000000065],[-97.384734999999978,75.643326000000059],[-97.394454999999937,75.638321000000019],[-97.410003999999958,75.620818999999983],[-97.41194200000001,75.61554000000001],[-97.423889000000031,75.528595000000053],[-97.422501000000011,75.506377999999984],[-97.417495999999971,75.494705000000124],[-97.401397999999858,75.458602999999982],[-97.398055999999997,75.45248400000014],[-97.378326000000015,75.43414300000012],[-97.349730999999963,75.419983000000002],[-97.330565999999919,75.414153999999996],[-97.293883999999991,75.405548000000067],[-97.285003999999958,75.402205999999978],[-97.280837999999903,75.396941999999967],[-97.293334999999956,75.390823000000125],[-97.305557000000022,75.390274000000034],[-97.320557000000008,75.391098],[-97.341675000000009,75.393875000000094],[-97.441665999999998,75.414992999999981],[-97.469161999999983,75.422760000000096],[-97.484160999999915,75.429428000000087],[-97.49610899999999,75.442200000000071],[-97.49888599999997,75.469986000000006],[-97.496658000000025,75.478592000000106],[-97.573623999999882,75.513046000000145],[-97.711944999999901,75.566666000000055],[-97.728881999999999,75.570267000000058],[-97.744155999999975,75.571106000000043],[-97.762511999999958,75.568054000000132],[-97.818061999999884,75.54898100000014],[-97.827552999999909,75.545815000000005],[-97.827056999999911,75.539817999999968],[-97.821724000000017,75.537323000000129],[-97.811561999999924,75.535156000000029],[-97.802054999999996,75.53532400000006],[-97.801940999999999,75.524429000000112],[-97.789992999999924,75.51887499999998],[-97.774169999999913,75.508331000000112],[-97.758895999999993,75.496643000000063],[-97.748046999999872,75.484421000000111],[-97.744720000000029,75.478317000000061],[-97.743332000000009,75.471924000000115],[-97.745269999999948,75.466660000000104],[-97.756392999999946,75.462204000000042],[-97.783324999999877,75.45748900000001],[-97.80749499999996,75.456650000000025],[-97.835830999999985,75.460815000000025],[-97.840835999999854,75.464996000000099],[-97.845001000000025,75.469986000000006],[-97.855674999999906,75.484482000000014],[-97.85600299999993,75.487488000000042],[-97.858001999999885,75.494644000000051],[-97.859169000000009,75.497985999999969],[-97.86983499999991,75.501160000000084],[-97.882338999999945,75.503494000000103],[-97.90834000000001,75.513321000000133],[-97.932495000000017,75.512496999999996],[-97.951950000000011,75.507492000000127],[-98.041672000000005,75.483322000000101],[-98.043335000000013,75.481368999999972],[-97.985549999999989,75.457214000000135],[-97.957503999999915,75.44720499999994],[-97.933318999999983,75.448029000000133],[-97.911117999999931,75.446090999999967],[-97.782776000000013,75.428314000000114],[-97.774718999999948,75.423035000000141],[-97.793610000000001,75.413040000000024],[-97.808608999999933,75.408875000000023],[-97.934432999999899,75.407486000000063],[-97.984726000000023,75.408875000000023],[-98.004729999999881,75.413605000000075],[-98.028060999999923,75.413879000000009],[-98.019890000000032,75.407042999999987],[-98.028724999999895,75.404541000000108],[-98.032386999999915,75.400879000000145],[-98.029556000000014,75.398375999999985],[-98.021225000000015,75.39521000000002],[-97.96055599999994,75.384720000000016],[-97.920272999999952,75.38081399999993],[-97.901397999999915,75.379974000000061],[-97.884445000000028,75.376373000000058],[-97.872771999999998,75.37081900000004],[-97.876662999999894,75.364990000000034],[-97.887786999999946,75.360535000000027],[-97.910277999999948,75.356644000000131],[-97.926392000000021,75.35554500000012],[-97.990554999999972,75.355819999999994],[-98.042769999999962,75.35914600000001],[-98.070107000000007,75.364700000000028],[-98.070769999999982,75.367088000000081],[-98.074112000000014,75.369033999999942],[-98.082779000000016,75.370033000000035],[-98.107772999999895,75.371917999999994],[-98.124709999999993,75.367202999999961],[-98.136397999999986,75.361923000000104],[-98.141953000000001,75.356644000000131],[-98.153610000000015,75.345535000000041],[-98.165282999999988,75.334152000000017],[-98.164718999999934,75.329163000000051],[-98.129165999999998,75.30192599999998],[-98.120543999999995,75.297760000000039],[-98.101395000000025,75.291931000000034],[-98.064712999999927,75.285812000000021],[-97.913054999999986,75.264159999999947],[-97.87388599999997,75.270263999999997],[-97.755843999999911,75.229431000000091],[-97.74360699999994,75.224991000000102],[-97.735001000000011,75.207214000000022],[-97.736937999999952,75.204437000000098],[-97.759734999999978,75.188582999999994],[-97.676940999999999,75.164154000000053],[-97.62860099999989,75.151093000000117],[-97.602492999999924,75.147217000000069],[-97.597503999999958,75.149155000000007],[-97.605834999999956,75.158325000000048],[-97.614440999999886,75.162766000000147],[-97.613051999999982,75.164703000000031],[-97.597778000000005,75.164703000000031],[-97.578613000000018,75.15887500000008],[-97.567779999999971,75.152481000000023],[-97.567504999999926,75.147491000000002],[-97.582503999999915,75.137496999999996],[-97.619445999999925,75.118590999999924],[-97.639998999999989,75.116379000000052],[-97.746947999999975,75.111649000000057],[-97.843886999999938,75.110260000000039],[-97.86250299999989,75.111099000000024],[-97.881377999999927,75.11692800000003],[-98.024719000000005,75.162490999999932],[-98.033614999999998,75.17164600000001],[-98.034438999999963,75.181656000000089],[-98.02694699999995,75.187195000000088],[-98.02027899999996,75.196640000000002],[-98.019164999999987,75.201096000000064],[-98.025833000000034,75.210815000000082],[-98.041381999999885,75.216385000000002],[-98.061661000000015,75.22026100000005],[-98.085281000000009,75.2227630000001],[-98.098617999999931,75.2227630000001],[-98.146666999999866,75.180816999999934],[-98.146666999999866,75.163879000000065],[-98.145553999999947,75.159987999999998],[-98.136123999999995,75.154160000000047],[-98.121384000000035,75.147491000000002],[-98.081389999999999,75.130538999999999],[-98.039169000000015,75.116379000000052],[-98.025557999999933,75.113601999999958],[-98.00306699999993,75.112761999999918],[-97.981673999999941,75.110809000000017],[-97.966949,75.104155999999989],[-97.947219999999902,75.079987000000074],[-97.938888999999904,75.069716999999969],[-97.938598999999954,75.064986999999917],[-97.945830999999998,75.026657],[-97.949996999999996,75.021103000000039],[-97.960006999999905,75.017487000000131],[-97.982497999999907,75.015273999999977],[-98.00306699999993,75.015549000000021],[-98.02027899999996,75.018326000000116],[-98.108886999999982,75.022491000000116],[-98.259170999999924,75.022766000000104],[-98.276947000000007,75.022217000000012],[-98.300277999999935,75.021103000000039],[-98.369719999999973,75.014435000000049],[-98.444442999999978,75.004990000000134],[-98.46833799999996,75.003052000000025],[-98.634734999999978,74.992477000000065],[-98.723891999999921,74.989426000000037],[-98.785004000000015,74.994980000000055],[-98.985001000000011,75.000000000000114],[-99.066955999999948,74.996368000000132],[-99.354445999999882,74.984420999999998],[-99.376662999999951,74.98553499999997],[-99.394164999999987,74.988037000000077],[-99.406113000000005,74.993316999999934],[-99.393615999999952,75.027205999999978],[-99.387512000000015,75.03776600000009],[-99.335555999999997,75.070541000000105],[-99.299437999999952,75.092758000000003],[-99.28195199999999,75.102768000000083],[-99.27694699999995,75.108032000000094],[-99.272232000000031,75.115814000000057],[-99.281386999999995,75.122481999999991],[-99.308043999999995,75.122481999999991],[-99.325835999999924,75.11831699999999],[-99.34056099999998,75.113037000000134],[-99.445540999999935,75.058318999999983],[-99.482497999999964,75.03776600000009],[-99.496657999999968,75.026382000000012],[-99.5,75.020537999999988],[-99.496108999999933,75.014708999999982],[-99.480285999999978,75.009155000000135],[-99.445540999999935,75.003875999999991],[-99.432495000000017,75.000275000000101],[-99.42721599999993,74.996368000000132],[-99.426391999999964,74.991364000000033],[-99.538605000000018,74.974152000000004],[-99.562499999999943,74.972214000000065],[-99.602782999999988,74.971100000000035],[-99.619719999999973,74.97137500000008],[-99.701675000000023,74.973602000000142],[-99.990554999999915,74.984420999999998],[-100.05722000000003,74.986923000000104],[-100.14584400000001,74.991088999999988],[-100.21056399999998,74.997208000000001],[-100.25306699999993,75.002777000000037],[-100.34777799999995,75.016937000000098],[-100.36389200000002,75.021378000000027],[-100.38945000000001,75.031097000000045],[-100.39388999999994,75.037201000000039],[-100.396118,75.043594000000041],[-100.39750699999991,75.055542000000059],[-100.39723199999997,75.066666000000112],[-100.39472999999998,75.078323000000069],[-100.38583399999999,75.095535000000098],[-100.38054699999986,75.101928999999984],[-100.37805200000003,75.113311999999951],[-100.39806399999998,75.158600000000092],[-100.41221599999994,75.16804500000012],[-100.43250299999994,75.173598999999967],[-100.45333900000003,75.177200000000028],[-100.47693599999997,75.179428000000144],[-100.51112399999994,75.184143000000006],[-100.52834300000001,75.187759000000028],[-100.54444899999993,75.193039000000113],[-100.54695099999998,75.199417000000096],[-100.53859699999998,75.204711999999972],[-100.46333299999998,75.223602000000085],[-100.43859900000001,75.226653999999996],[-100.41722099999998,75.227478000000133],[-100.32528699999995,75.230545000000063],[-100.30222299999997,75.230820000000108],[-100.27999899999998,75.22886699999998],[-100.24833699999999,75.223877000000073],[-100.22556299999997,75.223037999999974],[-100.031387,75.226929000000041],[-100.00778200000002,75.228043000000014],[-99.990554999999915,75.231369000000029],[-99.987777999999992,75.236099000000081],[-99.995269999999948,75.239975000000129],[-100.00945300000001,75.242203000000075],[-100.11945300000002,75.248596000000077],[-100.20333900000003,75.253326000000072],[-100.22609699999998,75.254165999999941],[-100.314438,75.250824000000023],[-100.35417200000001,75.251663000000008],[-100.37554899999986,75.255264000000011],[-100.39388999999994,75.260269000000108],[-100.406113,75.266663000000108],[-100.40278599999999,75.272491000000059],[-100.33444199999991,75.274428999999998],[-100.31166100000002,75.277206000000092],[-100.29387700000001,75.281371999999976],[-100.279449,75.286652000000061],[-100.25805700000001,75.297760000000039],[-100.24445299999996,75.308868000000018],[-100.25723299999993,75.313308999999947],[-100.28222699999992,75.310257000000036],[-100.33277900000002,75.302200000000084],[-100.35944399999994,75.299712999999997],[-100.49999999999989,75.292480000000012],[-100.52306399999998,75.293045000000006],[-100.60888699999998,75.305817000000047],[-100.62249799999995,75.309143000000063],[-100.76555599999989,75.34637500000008],[-100.77887699999991,75.35054000000008],[-100.76888999999994,75.355255000000113],[-100.67639199999996,75.376648000000046],[-100.65222199999999,75.378585999999984],[-100.63305700000001,75.378036000000122],[-100.61805700000002,75.376648000000046],[-100.60221899999993,75.373596000000134],[-100.61833199999995,75.368866000000082],[-100.64389,75.364700000000028],[-100.67999299999997,75.361923000000104],[-100.69833399999993,75.356644000000131],[-100.68222000000003,75.350266000000147],[-100.63806199999999,75.345825000000048],[-100.61472299999997,75.346100000000092],[-100.59472699999998,75.347487999999998],[-100.44748699999991,75.369980000000055],[-100.43277,75.375259000000028],[-100.42832899999991,75.380539000000113],[-100.44055200000003,75.386658000000125],[-100.56527699999998,75.422211000000004],[-100.58444199999997,75.426376000000005],[-100.60694899999999,75.42804000000001],[-100.67555199999993,75.426926000000037],[-100.71694899999989,75.429153000000099],[-100.72305299999999,75.432479999999998],[-100.69776899999999,75.436371000000065],[-100.67331699999994,75.438582999999937],[-100.43388399999998,75.445815999999979],[-100.33972199999999,75.447479000000101],[-100.27084400000001,75.448593000000074],[-100.17666600000001,75.449141999999995],[-100.11138899999997,75.451096000000007],[-100.06276700000001,75.454437000000041],[-100.01194800000002,75.461380000000077],[-100.00917099999992,75.466095000000109],[-100.01944700000001,75.468596999999988],[-100.10056299999997,75.470535000000098],[-100.19193999999999,75.467758000000003],[-100.21528599999988,75.467758000000003],[-100.30695300000002,75.47164900000007],[-100.30555699999996,75.473602000000028],[-100.12999000000002,75.525818000000129],[-100.03415699999988,75.529433999999981],[-99.966948999999943,75.533325000000048],[-99.845000999999968,75.540817000000004],[-99.831389999999999,75.544144000000131],[-99.832229999999981,75.545532000000037],[-99.845000999999968,75.547484999999995],[-99.856383999999991,75.548035000000027],[-99.899993999999992,75.547484999999995],[-99.946655000000021,75.544708000000071],[-99.990279999999984,75.544434000000138],[-100.03859699999998,75.549149],[-100.03943600000002,75.554152999999985],[-100.02806099999998,75.557205000000067],[-99.823623999999938,75.58415199999996],[-99.800551999999925,75.586655000000121],[-99.756393000000003,75.588043000000027],[-99.736938000000009,75.587204000000099],[-99.712508999999955,75.589157000000057],[-99.672774999999945,75.606094000000041],[-99.667770000000019,75.611099000000081],[-99.685821999999973,75.613876000000005],[-99.790833000000021,75.616653000000099],[-99.84056099999998,75.612488000000099],[-99.863051999999982,75.614426000000037],[-99.862503000000004,75.618866000000025],[-99.823623999999938,75.651657],[-99.817504999999926,75.655258000000003],[-99.788054999999929,75.658324999999934],[-99.458617999999944,75.672485000000052],[-99.226669000000015,75.675537000000134],[-99.202498999999989,75.675537000000134],[-99.083617999999944,75.675812000000008],[-99.033066000000019,75.677200000000084],[-98.982773000000009,75.681090999999981],[-98.929717999999923,75.686371000000008],[-98.905562999999916,75.689972000000068],[-98.889998999999989,75.695251000000042],[-98.891388000000006,75.699141999999938],[-98.907775999999956,75.704712000000029],[-98.925827000000027,75.707489000000123],[-98.950286999999889,75.709991000000002],[-98.97193900000002,75.710266000000047],[-99.329453000000001,75.695251000000042],[-99.55749499999996,75.691925000000026],[-99.619995000000017,75.694138000000009],[-99.643889999999999,75.694138000000009],[-99.740828999999906,75.690811000000053],[-99.84973100000002,75.677475000000072],[-100.031677,75.664428999999984],[-100.256393,75.651657],[-100.37332199999997,75.654709000000082],[-100.39723199999997,75.654434000000037],[-100.54028299999993,75.645537999999931],[-100.62888299999997,75.634720000000129],[-100.65416699999997,75.631653000000028],[-100.80471799999998,75.614990000000148],[-100.82972699999999,75.61303700000002],[-101.22556299999991,75.587494000000106],[-101.24916100000002,75.587204000000099],[-101.30638099999999,75.591094999999996],[-101.37721299999993,75.59887700000013],[-101.38806199999999,75.60026600000009],[-101.47165699999999,75.602203000000145],[-101.4955369999999,75.601929000000041],[-101.74944299999999,75.574432000000058],[-101.89835399999998,75.556091000000094],[-101.97250399999996,75.548325000000034],[-101.99638399999998,75.547211000000061],[-102.06723,75.546097000000088],[-102.13639799999993,75.553314],[-102.15915699999999,75.554977000000122],[-102.20667300000002,75.553314],[-102.35193599999997,75.542206000000022],[-102.39916999999997,75.537200999999982],[-102.44860799999998,75.530547999999953],[-102.49916099999996,75.521103000000096],[-102.53415699999999,75.511383000000023],[-102.67304999999999,75.514709000000039],[-102.86694299999999,75.601089000000002],[-102.87805200000003,75.607758000000047],[-102.88194299999992,75.613312000000064],[-102.88390400000003,75.61914100000007],[-102.87777699999992,75.624695000000031],[-102.86054999999999,75.62831100000011],[-102.8125,75.631088000000034],[-102.79305999999991,75.630539000000056],[-102.70140100000003,75.628860000000032],[-102.68916299999995,75.670532000000094],[-102.58168000000001,75.71276899999998],[-102.56360599999999,75.718322999999998],[-102.53888699999993,75.72137499999991],[-102.37748699999992,75.729155999999989],[-102.35193599999997,75.729155999999989],[-102.31139400000001,75.72665400000011],[-102.26390100000003,75.721924000000058],[-102.16832699999992,75.709152000000074],[-102.15416700000003,75.706100000000106],[-102.07861300000002,75.688309000000004],[-102.05776999999995,75.690811000000053],[-102.03666699999997,75.694138000000009],[-102.01862299999999,75.699416999999983],[-102.00917099999998,75.703048999999908],[-102.00805700000001,75.704987000000074],[-102.09166699999997,75.721924000000058],[-102.120003,75.776382000000012],[-102.10185200000001,75.784247999999991],[-102.09361299999989,75.791091999999992],[-102.112213,75.793594000000041],[-102.23277299999995,75.786652000000117],[-102.28222700000003,75.781937000000084],[-102.32668299999995,75.779983999999956],[-102.34388699999994,75.781937000000084],[-102.36609599999997,75.789978000000019],[-102.37165800000002,75.795821999999987],[-102.37332200000003,75.801650999999993],[-102.37082700000002,75.807480000000055],[-102.36250299999995,75.818054000000075],[-102.33944700000001,75.834991000000059],[-102.31667299999998,75.846649000000127],[-102.29028299999993,75.857208000000128],[-102.26640299999997,75.86192299999999],[-102.16306299999997,75.878860000000032],[-102.13806199999993,75.881087999999977],[-101.864441,75.902206000000035],[-101.82640099999992,75.898331000000042],[-101.80526700000001,75.891937000000041],[-101.79943800000001,75.886658000000068],[-101.77194199999997,75.868590999999981],[-101.74833699999999,75.859146000000067],[-101.74109599999991,75.856934000000024],[-101.55638099999987,75.821105999999986],[-101.47028399999999,75.772217000000012],[-101.46888699999994,75.766388000000006],[-101.45973199999997,75.761107999999922],[-101.43859900000001,75.755554000000132],[-101.41416899999996,75.752487000000031],[-101.301941,75.746094000000085],[-101.254997,75.744705000000067],[-101.24416400000001,75.746933000000013],[-101.23388699999998,75.751389000000131],[-101.20249899999993,75.767211999999972],[-101.18221999999997,75.779709000000139],[-101.23110999999994,75.777205999999978],[-101.328056,75.774429000000055],[-101.34777799999995,75.774994000000106],[-101.35555999999991,75.779433999999924],[-101.35861199999999,75.784988000000112],[-101.35193599999991,75.790543000000014],[-101.34137699999997,75.796097000000032],[-101.326683,75.801650999999993],[-101.323624,75.807480000000055],[-101.32501200000002,75.813309000000061],[-101.33500700000002,75.825272000000098],[-101.34056099999992,75.830276000000026],[-101.35637700000001,75.843048000000067],[-101.36389199999996,75.8477630000001],[-101.37805199999997,75.851928999999984],[-101.39277600000003,75.854431000000034],[-101.40833999999995,75.855820000000051],[-101.42388900000003,75.856369000000029],[-101.48889199999996,75.854156000000046],[-101.52694699999995,75.85832199999993],[-101.537216,75.861374000000069],[-101.54638699999992,75.867477000000008],[-101.57917799999996,75.908600000000092],[-101.56500199999988,75.929703000000018],[-101.49665800000002,75.954987000000017],[-101.47778299999999,75.96026599999999],[-101.45221700000002,75.963608000000079],[-101.39417299999997,75.97554000000008],[-101.30915800000002,76.008330999999998],[-101.30277999999987,76.013046000000031],[-101.31582599999996,76.019150000000025],[-101.33556399999992,76.020827999999995],[-101.36971999999992,76.016937000000098],[-101.38249200000001,76.010818000000086],[-101.39195299999989,76.000549000000035],[-101.40833999999995,75.995529000000147],[-101.61721799999998,75.980820000000108],[-101.641953,75.979705999999965],[-101.67832900000002,75.979705999999965],[-101.68388399999998,75.980270000000075],[-101.728882,75.987488000000099],[-101.80638099999999,76.007492000000013],[-101.83249699999999,76.016662999999994],[-101.84889199999992,76.024704000000042],[-101.89362299999993,76.060257000000092],[-101.90055799999999,76.066666000000112],[-101.90722700000003,76.078598000000056],[-101.90862299999998,76.084427000000062],[-101.90750099999997,76.096100000000092],[-101.90222199999999,76.107757999999933],[-101.88861099999991,76.119141000000127],[-101.761124,76.174148999999943],[-101.71140300000002,76.184708000000001],[-101.685272,76.187759000000028],[-101.60833699999995,76.194427000000019],[-101.53362299999998,76.205261000000064],[-101.48860200000001,76.213608000000022],[-101.46556099999998,76.218872000000033],[-101.39611799999989,76.243317000000047],[-101.38500999999997,76.248871000000065],[-101.387787,76.251937999999996],[-101.44193999999993,76.241653000000042],[-101.49694799999992,76.233871000000079],[-101.69888299999997,76.219437000000084],[-101.74973299999999,76.215820000000122],[-101.77471899999995,76.215546000000018],[-102.051941,76.213608000000022],[-102.11444099999994,76.215546000000018],[-102.13305699999989,76.219986000000006],[-102.14835399999998,76.226653999999996],[-102.16583300000002,76.238312000000008],[-102.15972899999997,76.243042000000059],[-102.13362100000001,76.246368000000075],[-102.08222999999998,76.250824000000023],[-102.06388899999996,76.255264000000011],[-102.05803700000001,76.259155000000078],[-102.00110599999999,76.352768000000026],[-102.029449,76.3808140000001],[-102.051941,76.38638300000008],[-102.05332900000002,76.392211999999915],[-102.05082700000003,76.398041000000148],[-102.03999299999998,76.403595000000109],[-102.01862299999999,76.409423999999944],[-101.88583399999993,76.444976999999994],[-101.86221299999994,76.450272000000041],[-101.80832699999996,76.454163000000108],[-101.78333299999991,76.454437000000041],[-101.67111199999999,76.449141999999995],[-101.45667300000002,76.436371000000065],[-101.43472300000002,76.434418000000107],[-101.41166699999997,76.430817000000047],[-101.31582599999996,76.414428999999984],[-101.30249000000003,76.408324999999991],[-101.29138199999994,76.401657],[-101.28362300000003,76.396102999999982],[-101.27667200000002,76.389435000000049],[-101.24027999999993,76.371643000000006],[-101.22805800000003,76.366928000000144],[-101.20612299999993,76.361374000000126],[-101.13694799999996,76.350815000000068],[-101.06806899999998,76.331940000000145],[-101.05832700000002,76.326935000000105],[-101.09388699999994,76.283051],[-101.00446299999993,76.237761999999975],[-100.98111,76.235260000000096],[-100.92832899999996,76.225815000000011],[-100.91000399999996,76.222213999999951],[-100.86582900000002,76.212204000000042],[-100.783073,76.191085999999984],[-100.75110599999994,76.18220500000001],[-100.71056399999998,76.166381999999999],[-100.63027999999991,76.133331000000055],[-100.43998699999992,76.105255],[-100.31582600000002,76.051376000000118],[-100.30943299999996,76.048035000000084],[-100.13166799999993,75.952484000000027],[-100.047234,75.913879000000065],[-99.982498000000021,75.890548999999908],[-99.888335999999981,75.886383000000023],[-99.753615999999909,75.906372000000147],[-99.730834999999956,75.910538000000031],[-99.71556099999998,75.916092000000049],[-99.678328999999962,75.931366000000139],[-99.587783999999999,75.94999700000011],[-99.508621000000005,75.957489000000066],[-99.483611999999937,75.958603000000039],[-99.457503999999972,75.961380000000133],[-99.442490000000021,75.965819999999951],[-99.439437999999996,75.970534999999984],[-99.45461999999992,75.974808000000053],[-99.494445999999982,75.973602000000085],[-99.657776000000013,75.961380000000133],[-99.785277999999948,75.951385000000016],[-99.811110999999983,75.948317999999915],[-99.859436000000017,75.935256999999979],[-99.86332699999997,75.935532000000023],[-99.898620999999991,75.950271999999984],[-100.07749899999999,76.038879000000122],[-100.08249699999999,76.043869000000029],[-100.09221600000001,76.054977000000008],[-100.14222699999999,76.112198000000149],[-100.15278599999994,76.132477000000108],[-100.12499999999994,76.148880000000133],[-100.10388199999994,76.153320000000008],[-100.07167099999998,76.155822999999941],[-100.031113,76.155548000000124],[-100.01139799999999,76.15387000000004],[-99.868332000000009,76.139984000000027],[-99.730834999999956,76.117477000000122],[-99.680832000000009,76.118591000000094],[-99.650832999999977,76.127472000000068],[-99.609160999999972,76.135817999999972],[-99.556106999999997,76.141663000000051],[-99.502227999999945,76.146103000000039],[-99.483062999999902,76.146942000000024],[-99.429717999999923,76.15387000000004],[-99.414444000000003,76.158325000000048],[-99.421386999999925,76.160262999999986],[-99.445267000000001,76.16137700000013],[-99.498885999999914,76.157761000000107],[-99.548888999999974,76.153320000000008],[-99.668059999999912,76.139709000000039],[-99.693054000000018,76.138596000000121],[-99.716949,76.139709000000039],[-99.874434999999892,76.17053199999998],[-99.915833000000021,76.180267000000072],[-99.948882999999967,76.189697000000137],[-100.15028399999994,76.1933140000001],[-100.17832900000002,76.19081100000011],[-100.20140099999998,76.189972000000012],[-100.22556299999997,76.19081100000011],[-100.43888900000002,76.212494000000049],[-100.47222899999991,76.226378999999952],[-100.49861099999998,76.237761999999975],[-100.51278699999989,76.249146000000053],[-100.514183,76.254166000000112],[-100.51112399999994,76.259720000000129],[-100.49944299999999,76.26527400000009],[-100.465012,76.274993999999992],[-100.43804899999998,76.278870000000097],[-100.41665599999999,76.280272999999966],[-100.36638600000003,76.281661999999983],[-100.26917300000002,76.278595000000053],[-100.18276999999995,76.270828000000108],[-100.111107,76.266388000000063],[-99.895553999999947,76.274703999999986],[-99.86999499999996,76.275817999999958],[-99.844727000000034,76.280272999999966],[-99.848617999999931,76.283874999999966],[-100.03859699999998,76.318878000000097],[-100.27722199999994,76.378585999999984],[-100.30166600000001,76.382750999999985],[-100.32362399999994,76.384155000000135],[-100.35056299999991,76.384430000000009],[-100.37444299999999,76.382750999999985],[-100.48137700000001,76.373871000000122],[-100.55332899999996,76.371094000000028],[-100.67360699999995,76.371917999999994],[-100.69444299999998,76.374985000000095],[-100.95249899999999,76.474700999999982],[-100.97222899999997,76.485260000000039],[-100.98388699999992,76.494430999999963],[-100.98554999999993,76.499145999999996],[-100.98249800000002,76.504990000000021],[-100.962784,76.510268999999994],[-100.93943799999988,76.514435000000105],[-100.89277600000003,76.519440000000145],[-100.82972699999999,76.519714000000079],[-100.80526700000001,76.522217000000069],[-100.737213,76.531097000000102],[-100.72083999999995,76.546097000000032],[-100.72341899999998,76.551094000000148],[-100.72332799999992,76.556091000000038],[-100.71250899999995,76.560531999999967],[-100.65306099999992,76.576385000000016],[-100.45861799999994,76.613602000000014],[-100.383827,76.627502000000106],[-100.36389200000002,76.631087999999977],[-100.318893,76.635544000000095],[-100.21665999999988,76.643051000000014],[-100.19193999999999,76.642212000000086],[-100.05222300000003,76.631363000000022],[-99.981673999999998,76.622207999999944],[-99.911117999999988,76.61303700000002],[-99.885009999999909,76.610535000000141],[-99.837783999999886,76.608596999999975],[-99.811385999999914,76.609710999999947],[-99.796111999999994,76.613875999999948],[-99.795272999999952,76.618317000000047],[-99.770554000000004,76.627762000000132],[-99.741942999999992,76.632751000000098],[-99.725829999999917,76.634720000000129],[-99.684433000000013,76.633331000000112],[-99.588333000000034,76.623871000000065],[-99.569457999999997,76.620529000000147],[-99.366942999999935,76.526382000000069],[-99.256957999999941,76.470535000000098],[-99.260559000000001,76.464706000000092],[-99.255279999999914,76.453598000000056],[-99.184433000000013,76.415817000000118],[-99.163619999999923,76.409149000000127],[-99.12332200000003,76.400818000000015],[-99.099990999999989,76.398041000000148],[-99.079726999999991,76.397217000000012],[-99.066101000000003,76.398605000000089],[-99.06639100000001,76.404434000000094],[-99.083617999999944,76.416092000000106],[-99.110001000000011,76.426650999999993],[-99.118332000000009,76.433044000000109],[-99.137221999999952,76.451934999999992],[-99.133895999999993,76.456650000000025],[-99.122498000000007,76.461105000000032],[-98.994155999999975,76.471099999999922],[-98.980834999999956,76.47164900000007],[-98.955276000000026,76.469147000000021],[-98.946945000000028,76.463042999999971],[-98.948043999999925,76.45277399999992],[-98.950286999999889,76.446365000000071],[-98.943603999999993,76.440811000000053],[-98.925827000000027,76.43609600000002],[-98.906386999999881,76.433318999999983],[-98.882767000000001,76.431366000000025],[-98.857773000000009,76.431366000000025],[-98.846114999999998,76.43609600000002],[-98.856110000000001,76.463882000000126],[-98.865279999999927,76.469147000000021],[-98.898620999999991,76.481093999999928],[-98.953888000000006,76.499145999999996],[-99.038054999999986,76.529708999999968],[-99.050551999999982,76.536102000000142],[-99.051940999999999,76.539978000000019],[-99.027221999999938,76.601088999999945],[-98.999160999999958,76.604980000000012],[-98.971663999999976,76.607758000000047],[-98.86082499999992,76.61442599999998],[-98.714721999999938,76.614150999999993],[-98.611114999999984,76.610260000000096],[-98.589172000000019,76.611374000000069],[-98.56639100000001,76.613602000000014],[-98.538894999999968,76.616379000000109],[-98.518065999999976,76.621368000000075],[-98.511123999999995,76.625259000000142],[-98.489731000000006,76.644707000000096],[-98.48832699999997,76.650818000000015],[-98.546951000000035,76.658035000000098],[-98.591109999999901,76.661652000000061],[-98.595000999999968,76.659424000000115],[-98.592498999999975,76.653870000000097],[-98.598617999999988,76.651093000000003],[-98.623046999999872,76.647217000000126],[-98.674438000000009,76.64387499999998],[-98.744445999999982,76.64387499999998],[-98.814163000000008,76.653595000000053],[-98.851105000000018,76.661652000000061],[-98.857773000000009,76.663879000000122],[-98.855834999999956,76.67025799999999],[-98.852492999999924,76.671646000000067],[-98.821395999999936,76.676925999999924],[-98.733611999999994,76.682754999999986],[-98.712509000000011,76.683044000000052],[-98.504729999999938,76.681090999999924],[-98.480285999999921,76.679152999999985],[-98.439986999999974,76.673035000000084],[-98.418059999999912,76.668320000000051]],[[-99.996947999999975,76.734420999999998],[-99.976395000000025,76.733597000000032],[-99.86999499999996,76.736374000000126],[-99.819457999999884,76.738312000000064],[-99.748336999999992,76.74275200000011],[-99.720839999999953,76.74581900000004],[-99.693877999999984,76.747756999999979],[-99.646392999999989,76.748031999999967],[-99.622498000000007,76.7452550000001],[-99.528884999999946,76.72554000000008],[-99.447768999999994,76.706100000000106],[-99.430556999999965,76.699416999999926],[-99.433883999999978,76.69470200000012],[-99.52806099999998,76.67442299999999],[-99.556106999999997,76.670532000000094],[-99.581680000000006,76.67025799999999],[-99.626937999999996,76.673035000000084],[-99.657776000000013,76.677765000000079],[-99.733321999999987,76.702484000000027],[-99.888389999999902,76.718651000000136],[-99.900222999999926,76.72015399999998],[-99.915557999999976,76.72015399999998],[-100.01112399999988,76.719147000000135],[-100.02999899999992,76.715820000000008],[-100.05139200000002,76.715546000000074],[-100.09750400000001,76.717209000000025],[-100.12138399999998,76.719711000000075],[-100.128601,76.721924000000058],[-100.12805199999997,76.723038000000031],[-100.10193599999997,76.744705000000067],[-100.08277899999996,76.748031999999967],[-100.05526700000001,76.75082400000008],[-100.03778099999988,76.751389000000131],[-99.999434999999949,76.751099000000067],[-99.972228999999913,76.747208000000001],[-99.975006000000008,76.742477000000065],[-99.994155999999975,76.739151000000049],[-100.004997,76.735535000000027],[-99.996947999999975,76.734420999999998]],[[-120.88362100000001,76.739700000000028],[-120.886124,76.728591999999992],[-120.90334299999995,76.723876999999959],[-120.94499199999996,76.717758000000117],[-120.97000100000002,76.716660000000047],[-121.09084299999989,76.71887200000009],[-121.11749299999991,76.719711000000075],[-121.16000400000001,76.723312000000135],[-121.18110699999994,76.727203000000031],[-121.18472299999991,76.731094000000098],[-121.18167099999999,76.732208000000071],[-121.15666199999998,76.733597000000032],[-121.12832600000002,76.730819999999994],[-121.083618,76.729155999999932],[-121.05972300000002,76.731369000000086],[-121.05638099999999,76.732483000000059],[-121.01806599999998,76.751389000000131],[-120.99082900000002,76.754715000000147],[-120.97833300000002,76.755264000000068],[-120.91443599999997,76.754165999999998],[-120.89083900000003,76.749710000000107],[-120.88474300000001,76.745529000000033],[-120.88362100000001,76.739700000000028]],[[-101.38054699999992,76.553588999999988],[-101.40416699999997,76.552765000000022],[-101.45388799999989,76.554153000000099],[-101.54083300000002,76.560806000000071],[-101.56471299999993,76.563599000000067],[-101.62332199999992,76.572768999999937],[-101.68831599999999,76.586380000000077],[-101.57556199999999,76.614150999999993],[-101.52194199999991,76.623871000000065],[-101.38583399999993,76.642487000000074],[-101.31777999999991,76.642761000000007],[-101.21362299999993,76.651931999999988],[-101.05999800000001,76.685805999999957],[-101.04250300000001,76.690536000000009],[-101.03943600000002,76.696365000000014],[-101.04028299999993,76.702209000000039],[-101.03307299999994,76.708038000000045],[-101.00583599999993,76.71887200000009],[-100.98361199999999,76.724700999999925],[-100.95749699999999,76.729155999999932],[-100.90249599999993,76.736374000000126],[-100.74388099999999,76.753326000000129],[-100.69193999999999,76.754715000000147],[-100.53443900000002,76.757217000000026],[-100.50917099999992,76.756378000000097],[-100.484734,76.754715000000147],[-100.26888999999989,76.737198000000092],[-100.24889400000001,76.734711000000061],[-100.25917099999998,76.728591999999992],[-100.26666299999999,76.726379000000065],[-100.29305999999997,76.721924000000058],[-100.297234,76.721924000000058],[-100.31723,76.716660000000047],[-100.48721299999988,76.684418000000051],[-100.761124,76.635818000000029],[-100.92304999999999,76.610260000000096],[-101.19275699999997,76.571381000000031],[-101.27390300000002,76.560806000000071],[-101.326683,76.556366000000082],[-101.38054699999992,76.553588999999988]],[[-89.934432999999956,76.47665400000011],[-89.978881999999999,76.469711000000132],[-89.999725000000012,76.470260999999994],[-90.040833000000021,76.476928999999927],[-90.081680000000006,76.484984999999995],[-90.151108000000022,76.504439999999988],[-90.184433000000013,76.515274000000034],[-90.21444699999995,76.528594999999996],[-90.226669000000015,76.535538000000031],[-90.412216000000001,76.636108000000036],[-90.478058000000033,76.662200999999982],[-90.504456000000005,76.675261999999918],[-90.56361400000003,76.709991000000002],[-90.573333999999988,76.715820000000008],[-90.59445199999999,76.729705999999965],[-90.600280999999939,76.734984999999995],[-90.600829999999974,76.741088999999988],[-90.599990999999989,76.746643000000006],[-90.597777999999948,76.750000000000114],[-90.58666999999997,76.761383000000137],[-90.579178000000013,76.766937000000098],[-90.57028200000002,76.771927000000005],[-90.544448999999986,76.783051000000057],[-90.510284000000013,76.793320000000108],[-90.474716000000001,76.799713000000054],[-90.230559999999969,76.828048999999965],[-90.103058000000033,76.836105000000032],[-90.025283999999999,76.839156999999943],[-89.983063000000016,76.836928999999998],[-89.927779999999984,76.828873000000101],[-89.865279999999984,76.816086000000098],[-89.825835999999981,76.806091000000038],[-89.779448999999886,76.7852630000001],[-89.673888999999974,76.737487999999928],[-89.673888999999974,76.731369000000086],[-89.687774999999988,76.708878000000084],[-89.702224999999999,76.689697000000024],[-89.729445999999996,76.673309000000017],[-89.744155999999975,76.669434000000024],[-89.768065999999976,76.668045000000006],[-89.819732999999928,76.667206000000022],[-89.837218999999891,76.663040000000137],[-89.840835999999911,76.657211000000132],[-89.862777999999992,76.60386699999998],[-89.862502999999947,76.597488000000112],[-89.858336999999949,76.591094999999939],[-89.817504999999983,76.546936000000017],[-89.794448999999929,76.533325000000048],[-89.756119000000012,76.524703999999929],[-89.721663999999976,76.519714000000079],[-89.699157999999954,76.516936999999984],[-89.684433000000013,76.511658000000011],[-89.671386999999982,76.504166000000055],[-89.673888999999974,76.502212999999927],[-89.757507000000032,76.486099000000024],[-89.783614999999884,76.483047000000056],[-89.934432999999956,76.47665400000011]],[[-108.65110800000002,76.813599000000011],[-108.65110800000002,76.808868000000075],[-108.65527299999991,76.803863999999976],[-108.67804699999999,76.784988000000112],[-108.68443299999996,76.780548000000067],[-108.69055200000003,76.774429000000055],[-108.69249000000002,76.769989000000066],[-108.68831599999999,76.766098],[-108.67971799999992,76.763321000000076],[-108.66278099999994,76.761383000000137],[-108.596947,76.760818000000086],[-108.55248999999992,76.761383000000137],[-108.52722199999999,76.760268999999937],[-108.50389099999995,76.756103999999937],[-108.48889199999996,76.751663000000065],[-108.46333299999998,76.739151000000049],[-108.45500199999998,76.733322000000044],[-108.44638099999997,76.723602000000142],[-108.44220699999994,76.717758000000117],[-108.43804899999998,76.708038000000045],[-108.44193999999999,76.696365000000014],[-108.45889299999988,76.684708000000057],[-108.54472399999997,76.646378000000141],[-108.56555200000003,76.641663000000108],[-108.58667000000003,76.641663000000108],[-108.60749800000002,76.642487000000074],[-108.628601,76.645263999999997],[-108.65387699999997,76.647217000000126],[-108.68110699999994,76.647766000000047],[-108.70417799999996,76.646378000000141],[-108.72083999999995,76.642487000000074],[-108.72721899999999,76.638046000000145],[-108.72693600000002,76.634155000000078],[-108.69915800000001,76.605545000000063],[-108.69055200000003,76.600540000000024],[-108.62721299999998,76.575546000000031],[-108.61054999999993,76.569717000000026],[-108.58389299999993,76.477478000000076],[-108.58112299999999,76.439147999999989],[-108.55803699999996,76.408599999999979],[-108.475281,76.406937000000084],[-108.36389200000002,76.399994000000049],[-108.32888800000001,76.396652000000131],[-108.31861900000001,76.394150000000081],[-108.28971899999993,76.384430000000009],[-108.26917300000002,76.374985000000095],[-108.07749899999999,76.28054800000001],[-108.11472299999997,76.261383000000023],[-108.252228,76.196929999999952],[-108.33139,76.181931000000077],[-108.38027999999997,76.165268000000026],[-108.39222699999993,76.159424000000001],[-108.40862300000003,76.14776599999999],[-108.396118,76.046097000000145],[-108.35193600000002,76.048874000000069],[-108.02555799999999,76.062195000000031],[-108.00140399999998,76.063033999999959],[-107.916946,76.063033999999959],[-107.83833300000003,76.061371000000065],[-107.81220999999999,76.056090999999981],[-107.73665599999998,76.039428999999984],[-107.72471599999994,76.035538000000088],[-107.63834399999996,75.996368000000132],[-107.63249200000001,75.991088999999988],[-107.63305699999995,75.981369000000086],[-107.639183,75.976089000000002],[-107.65139799999997,75.97026100000005],[-107.78555299999999,75.919983000000116],[-107.84221599999995,75.899993999999992],[-107.90194700000001,75.896103000000096],[-107.91805999999997,75.891373000000101],[-107.93028300000003,75.885544000000039],[-108.031113,75.822495000000004],[-108.04361,75.802199999999971],[-108.02417000000003,75.783875000000023],[-108.02027900000002,75.780823000000112],[-108.00639299999995,75.779433999999924],[-107.9569469999999,75.784714000000008],[-107.91332999999986,75.789429000000041],[-107.87361099999993,75.798035000000141],[-107.82084699999996,75.829162999999994],[-107.77834300000001,75.854706000000078],[-107.75974299999996,75.869705000000124],[-107.75974299999996,75.874419999999986],[-107.739441,75.879150000000038],[-107.51555599999995,75.899993999999992],[-107.36945299999996,75.911652000000004],[-107.33750899999995,75.911377000000016],[-107.18666099999996,75.90387000000004],[-107.08000199999998,75.892761000000007],[-107.08583099999998,75.872482000000048],[-107.09028599999994,75.867477000000008],[-107.10500300000001,75.834717000000126],[-107.09805299999999,75.823043999999925],[-107.03167699999995,75.771103000000039],[-106.96362299999993,75.738586000000055],[-106.89666699999998,75.720261000000107],[-106.88027999999991,75.765822999999955],[-106.83056599999998,75.785812000000078],[-106.79444899999993,75.791656000000103],[-106.74471999999992,75.79553199999998],[-106.72277799999995,75.795821999999987],[-106.67944299999999,75.793594000000041],[-106.6558379999999,75.793594000000041],[-106.636124,75.794434000000081],[-106.61582899999996,75.797211000000004],[-106.62110899999993,75.803314000000114],[-106.6383439999999,75.806931000000077],[-106.67944299999999,75.812485000000095],[-106.72666900000002,75.813873000000001],[-106.78611799999993,75.813309000000061],[-106.829453,75.816665999999998],[-106.85082999999992,75.819992000000013],[-106.87000299999994,75.824997000000053],[-106.88890100000003,75.834717000000126],[-106.89584400000001,75.844437000000028],[-106.89666699999998,75.935256999999979],[-106.89611799999994,75.941086000000041],[-106.89334100000002,75.947478999999987],[-106.86971999999997,75.964157000000057],[-106.63890099999998,76.053040000000124],[-106.60610999999994,76.057754999999986],[-106.58583099999993,76.058593999999971],[-106.368607,76.055817000000047],[-106.33667000000003,76.054703000000075],[-106.30082699999997,76.051376000000118],[-106.01611299999996,76.019714000000022],[-105.93720999999999,76.010269000000108],[-105.89998600000001,76.005554000000075],[-105.837219,75.996932999999956],[-105.73500100000001,75.974991000000102],[-105.66832699999998,75.955551000000128],[-105.61945299999996,75.93942300000009],[-105.60637699999995,75.934708000000057],[-105.59528399999988,75.929703000000018],[-105.47888199999994,75.863036999999963],[-105.46528599999999,75.851928999999984],[-105.45333900000003,75.841659999999933],[-105.445831,75.830551000000071],[-105.40028399999989,75.694427000000076],[-105.38834399999996,75.656372000000033],[-105.391953,75.63888500000013],[-105.48750299999995,75.560806000000127],[-105.49638399999998,75.55525200000011],[-105.51666299999994,75.550537000000077],[-105.54083300000002,75.546936000000017],[-105.60444599999988,75.539978000000019],[-105.63667299999997,75.533600000000092],[-105.68582200000003,75.519440000000145],[-105.74082900000002,75.494979999999941],[-105.75140399999998,75.489700000000084],[-105.74804699999999,75.485809000000017],[-105.73693799999995,75.48275799999999],[-105.68666100000002,75.483047000000113],[-105.67166099999986,75.481093999999985],[-105.61138900000003,75.47164900000007],[-105.59277299999997,75.46748400000007],[-105.593613,75.462769000000037],[-105.64639299999993,75.365265000000022],[-105.65110799999997,75.359421000000054],[-105.66055299999994,75.349716000000114],[-105.72666900000002,75.31303400000013],[-105.7386019999999,75.309418000000051],[-105.76251199999996,75.304976999999951],[-105.79361,75.302200000000084],[-105.81304899999998,75.29942299999999],[-105.82140399999992,75.295822000000101],[-105.86694299999999,75.275818000000015],[-105.87526699999995,75.271102999999982],[-105.93776699999989,75.214432000000045],[-105.93888900000002,75.208603000000039],[-105.93582199999997,75.202774000000034],[-105.929169,75.197754000000145],[-105.89222699999999,75.190810999999997],[-105.87249800000001,75.171920999999998],[-105.876938,75.145828000000051],[-105.88527699999997,75.14027400000009],[-105.90499899999998,75.136383000000023],[-105.92582699999997,75.135268999999994],[-106.00361599999991,75.135544000000039],[-106.01889,75.133881000000088],[-106.07028200000002,75.106644000000017],[-106.07945299999989,75.096939000000077],[-106.07333399999993,75.087203999999986],[-106.01862299999999,75.074158000000068],[-106.00446299999999,75.068054000000018],[-105.99416399999996,75.062195000000031],[-105.99333199999995,75.055817000000047],[-106.011124,75.050812000000008],[-106.23528299999998,75.021378000000027],[-106.26000999999997,75.019150000000081],[-106.45500199999992,75.005829000000119],[-106.54554699999989,75.001663000000008],[-106.564438,75.00082400000008],[-106.66332999999992,75.004165999999998],[-106.72556299999997,75.00221300000004],[-106.77111799999989,74.996643000000006],[-106.78639199999998,74.991928000000144],[-106.78307299999994,74.989975000000015],[-106.78333299999997,74.986098999999967],[-106.78582799999992,74.98054500000012],[-106.79194599999994,74.975266000000147],[-106.807503,74.969711000000075],[-106.93055699999996,74.933594000000085],[-106.97222899999997,74.926086000000055],[-107.01000999999991,74.922484999999995],[-107.05110200000001,74.921646000000067],[-107.07362399999994,74.919983000000116],[-107.16000399999996,74.910538000000088],[-107.19722000000002,74.910812000000021],[-107.21584300000001,74.911925999999994],[-107.46417199999996,74.934418000000051],[-107.506958,74.939972000000068],[-107.63082900000001,74.961104999999975],[-107.66251399999999,74.966660000000047],[-107.68804899999998,74.976379000000065],[-107.69554099999999,74.982208000000071],[-107.72389199999998,75.016388000000006],[-107.72389199999998,75.020264000000054],[-107.71972699999998,75.02609300000006],[-107.704453,75.030823000000112],[-107.68138099999999,75.042480000000012],[-107.67944299999994,75.048599000000081],[-107.68110699999994,75.05304000000001],[-107.69499199999996,75.075272000000041],[-107.70584100000002,75.086105000000032],[-107.716949,75.090820000000065],[-107.739441,75.095825000000104],[-107.75834700000001,75.096939000000077],[-107.77333099999998,75.096099999999922],[-107.78307299999994,75.093596999999988],[-107.77999899999998,75.072220000000129],[-107.77084400000001,75.06581100000011],[-107.75778200000002,75.06053199999991],[-107.74500299999994,75.054153000000042],[-107.739441,75.048874000000069],[-107.73972299999997,75.043045000000063],[-107.74388099999993,75.037201000000039],[-107.77778599999999,75.029434000000094],[-107.89499699999999,75.003601000000003],[-107.94193999999999,74.93081699999999],[-107.95527600000003,74.928589000000045],[-107.97749299999998,74.927475000000072],[-108.02417000000003,74.929152999999985],[-108.13417099999992,74.927765000000079],[-108.21083099999987,74.923599000000024],[-108.37304699999999,74.910538000000088],[-108.3916779999999,74.911377000000016],[-108.43639400000001,74.915268000000083],[-108.45500199999998,74.918319999999994],[-108.52971599999995,74.936645999999996],[-108.54110700000001,74.940536000000009],[-108.548607,74.946365000000014],[-108.54795799999999,74.951653000000022],[-108.55055199999998,74.956375000000094],[-108.55999800000001,74.960815000000139],[-108.67971799999992,74.970261000000107],[-108.781113,74.979980000000069],[-108.80721999999997,74.983597000000032],[-108.80721999999997,74.984711000000004],[-108.79611199999999,74.985809000000131],[-108.74553699999996,74.984420999999998],[-108.63890100000003,74.981094000000098],[-108.614441,74.979705999999965],[-108.55999800000001,74.976379000000065],[-108.53028899999993,74.973312000000135],[-108.51139799999999,74.97554000000008],[-108.52667199999996,75.001663000000008],[-108.53056300000003,75.005554000000075],[-108.53806299999985,75.009430000000009],[-108.628601,75.046096999999975],[-108.65139799999992,75.053863999999976],[-108.79472399999997,75.069153000000028],[-108.83249699999993,75.069992000000013],[-108.92777999999993,75.05192599999998],[-108.94972200000001,75.040267999999969],[-109.00110599999999,75.004990000000134],[-109.11971999999997,74.979430999999977],[-109.34584000000001,74.944702000000063],[-109.36416600000001,74.939697000000024],[-109.39998600000001,74.918319999999994],[-109.40722700000003,74.912490999999989],[-109.40695199999993,74.908599999999922],[-109.420547,74.893051000000014],[-109.50805700000001,74.866379000000109],[-109.52278099999995,74.863312000000008],[-109.56861900000001,74.857758000000047],[-109.58721899999995,74.856644000000017],[-109.66139199999992,74.856369000000029],[-109.76944700000001,74.859421000000111],[-109.79750099999995,74.863602000000014],[-109.81111099999993,74.868042000000059],[-109.83361799999994,74.869704999999954],[-109.87249800000001,74.869141000000013],[-109.93472300000002,74.860809000000017],[-109.95500199999987,74.857208000000014],[-109.99471999999997,74.848327999999981],[-110.01640299999991,74.842209000000082],[-110.13971700000002,74.833054000000061],[-110.30444299999994,74.846375000000023],[-110.32501200000002,74.847488000000112],[-110.34555099999989,74.846939000000134],[-110.36000100000001,74.843872000000033],[-110.37053700000001,74.839980999999966],[-110.40416699999997,74.826660000000004],[-110.39620999999994,74.813689999999951],[-110.39666699999998,74.799423000000104],[-110.43666100000002,74.793319999999937],[-110.58999599999993,74.778046000000074],[-110.59137699999997,74.724152000000061],[-110.75666799999993,74.685257000000092],[-110.77250699999996,74.680817000000047],[-110.78639199999998,74.674698000000035],[-110.79638699999998,74.668869000000029],[-110.807503,74.657486000000006],[-110.83389299999993,74.651931999999988],[-110.98111,74.621368000000132],[-111.28056300000003,74.567764000000125],[-111.38722200000001,74.563034000000073],[-111.40915699999999,74.562759000000085],[-111.43055699999996,74.560532000000023],[-111.55888399999998,74.52748100000008],[-111.64250199999992,74.501389000000017],[-111.67722300000003,74.493317000000047],[-111.700287,74.49136400000009],[-111.82389799999999,74.48332199999993],[-111.94554099999993,74.474425999999994],[-111.98416099999997,74.468872000000033],[-112.087219,74.452208999999925],[-112.29305999999991,74.427765000000022],[-112.37053699999996,74.418594000000041],[-112.43831599999999,74.414429000000041],[-112.54194599999988,74.409424000000001],[-112.75306699999993,74.401382000000012],[-112.85694899999993,74.398330999999985],[-112.91999799999991,74.397490999999945],[-113.00890400000003,74.398040999999978],[-113.25723299999993,74.405258000000117],[-113.406113,74.413315000000068],[-113.42832899999996,74.414703000000145],[-113.47168699999997,74.41891499999997],[-113.64083900000003,74.437485000000095],[-113.69638099999997,74.446091000000024],[-113.84221600000001,74.479706000000078],[-113.94167299999998,74.50360100000006],[-114.05387899999999,74.530822999999998],[-114.12110899999993,74.549987999999985],[-114.29834,74.602768000000026],[-114.34861799999999,74.618866000000082],[-114.37470999999994,74.629150000000095],[-114.39695699999993,74.639160000000004],[-114.43804899999986,74.659424000000115],[-114.44360399999994,74.664153999999996],[-114.44776899999994,74.674698000000035],[-114.42859599999991,74.691925000000026],[-114.41972399999992,74.698029000000076],[-114.40750099999997,74.704163000000108],[-114.39444700000001,74.708328000000108],[-114.21444699999995,74.755554000000132],[-114.10166899999996,74.776657000000057],[-114.01027699999992,74.790543000000071],[-113.73166699999996,74.827208999999982],[-113.71000699999996,74.829711999999915],[-113.55695300000002,74.839157],[-113.41861,74.84275800000006],[-113.28278399999999,74.848602000000085],[-113.25334199999998,74.87359600000002],[-113.22269399999988,74.896469000000025],[-113.15194699999995,74.924987999999985],[-113.1205369999999,74.932480000000112],[-113.00750699999992,74.954163000000051],[-112.91111799999987,74.970825000000048],[-112.86749299999997,74.97554000000008],[-112.84528399999994,74.976929000000098],[-112.57224299999996,74.99275200000011],[-112.52416999999991,74.995529000000033],[-112.5,74.996010000000012],[-112.453056,74.996933000000013],[-112.37444299999993,74.998321999999973],[-112.01500699999991,75.002486999999974],[-111.962219,75.001389000000074],[-111.935272,74.998871000000122],[-111.89890299999996,74.994980000000055],[-111.86527999999993,74.988312000000064],[-111.84056099999998,74.986374000000126],[-111.76444999999995,74.981659000000093],[-111.75334199999998,74.981659000000093],[-111.718613,74.986649],[-111.62666300000001,75.003875999999991],[-111.58972199999999,75.006378000000041],[-111.55139200000002,75.011383000000137],[-111.53527800000001,75.014998999999989],[-111.28971899999999,75.086105000000032],[-111.02916700000003,75.171097000000032],[-110.920547,75.223602000000085],[-110.91361999999998,75.228591999999935],[-110.91278099999994,75.233871000000136],[-110.91750300000001,75.239699999999971],[-111.05249000000003,75.270263999999997],[-111.06806899999987,75.271927000000119],[-111.23082699999998,75.264159999999947],[-111.24889400000001,75.259155000000078],[-111.25195300000001,75.254165999999941],[-111.25083899999993,75.248596000000077],[-111.25167799999997,75.243042000000059],[-111.25611900000001,75.236649000000114],[-111.26112399999994,75.232208000000014],[-111.27778599999994,75.220534999999984],[-111.33416699999992,75.19747899999993],[-111.39167800000001,75.181091000000094],[-111.47501399999999,75.161652000000004],[-111.56082200000003,75.146103000000096],[-111.57721700000002,75.143600000000106],[-111.59612299999998,75.143326000000002],[-111.69526699999989,75.145828000000051],[-111.70584100000002,75.151093000000117],[-111.787216,75.166655999999932],[-111.958054,75.13499500000006],[-112.22833300000002,75.124694999999974],[-112.39055599999995,75.123032000000023],[-112.40972899999997,75.12359600000002],[-112.42916899999994,75.125259000000085],[-112.439438,75.128586000000041],[-112.44833399999999,75.133041000000048],[-112.47084000000001,75.146378000000084],[-112.46833800000002,75.151382000000069],[-112.46166999999997,75.154433999999981],[-112.45249899999999,75.155822999999998],[-112.41197199999993,75.159012000000075],[-112.36860699999994,75.169144000000131],[-112.35833700000001,75.173035000000027],[-112.29472399999992,75.198028999999963],[-112.29583700000001,75.202774000000034],[-112.33944700000001,75.223602000000085],[-112.39750700000002,75.241089000000102],[-112.40888999999993,75.240814000000114],[-112.4366609999999,75.230545000000063],[-112.46193700000003,75.218872000000033],[-112.46417200000002,75.213043000000027],[-112.46305799999999,75.208327999999995],[-112.45056199999999,75.204711999999972],[-112.43749999999994,75.198868000000118],[-112.43221999999997,75.19331399999993],[-112.43250299999994,75.1869200000001],[-112.44471699999997,75.18331900000004],[-112.46665999999999,75.179977000000065],[-112.56111099999993,75.178314],[-112.59249899999998,75.181656000000089],[-112.60888699999992,75.185256999999979],[-112.62554899999998,75.190810999999997],[-112.6347429999999,75.196365000000128],[-112.63722200000001,75.204987000000131],[-112.63694800000002,75.210541000000148],[-112.632767,75.215820000000122],[-112.61609599999997,75.223877000000073],[-112.59472699999998,75.230270000000075],[-112.58583099999998,75.239150999999993],[-112.59472699999998,75.250000000000057],[-112.61277799999999,75.259430000000123],[-112.65167200000002,75.275269000000037],[-112.66583300000002,75.278595000000109],[-112.679169,75.277771000000143],[-112.71305799999999,75.256104000000107],[-112.718887,75.250275000000045],[-112.735817,75.203323000000125],[-112.73416099999992,75.19747899999993],[-112.72888199999994,75.192749000000106],[-112.71584299999995,75.187195000000088],[-112.698036,75.177765000000022],[-112.68859899999995,75.171920999999998],[-112.699997,75.138321000000133],[-112.80695300000002,75.115814000000057],[-112.89417300000002,75.103317000000061],[-112.95667300000002,75.097214000000122],[-113.25446299999999,75.076096000000007],[-113.29888899999997,75.073044000000095],[-113.343887,75.072220000000129],[-113.610817,75.062759000000142],[-113.68083200000001,75.05192599999998],[-113.699432,75.051375999999948],[-113.89417299999997,75.052199999999914],[-113.91750299999995,75.053589000000102],[-113.94138299999986,75.056931000000077],[-113.950287,75.06053199999991],[-113.96888699999994,75.075272000000041],[-113.97305299999994,75.086655000000064],[-113.97305299999994,75.096374999999966],[-113.93138099999999,75.189148000000046],[-113.82055700000001,75.314423000000147],[-113.80583199999995,75.326660000000118],[-113.78278399999999,75.33776899999998],[-113.72805800000003,75.345825000000048],[-113.66055299999994,75.351379000000065],[-113.64222699999993,75.353591999999992],[-113.573624,75.366928000000144],[-113.34056099999992,75.413315000000068],[-113.38110399999999,75.418320000000108],[-113.47112300000003,75.427764999999965],[-113.577789,75.411652000000117],[-113.66027799999995,75.398605000000089],[-113.74445299999996,75.385818000000086],[-113.83389299999988,75.37692300000009],[-113.87138400000003,75.374145999999996],[-113.90222199999999,75.3744200000001],[-113.91139199999998,75.378036000000122],[-113.92111199999994,75.383881000000031],[-113.958618,75.411102000000085],[-113.98166700000002,75.431091000000038],[-113.98416099999992,75.437758999999971],[-113.99221799999998,75.448318000000029],[-114.02416999999997,75.461105000000032],[-114.04083300000002,75.463882000000126],[-114.06500199999988,75.466095000000109],[-114.08389299999999,75.464706000000092],[-114.08693699999998,75.462494000000049],[-114.08917199999996,75.458602999999982],[-114.093887,75.410812000000078],[-114.09166699999992,75.404984000000127],[-114.08583099999993,75.400269000000094],[-114.07778899999988,75.394150000000081],[-114.06610099999995,75.389160000000061],[-114.05638099999987,75.383330999999998],[-114.04472399999992,75.373032000000023],[-114.04055800000003,75.36775200000011],[-114.04055800000003,75.362198000000092],[-114.04750100000001,75.35054000000008],[-114.13751200000002,75.244979999999998],[-114.15805099999994,75.233321999999987],[-114.17083699999989,75.226929000000041],[-114.18666100000002,75.223312000000078],[-114.203056,75.221375000000023],[-114.22277799999995,75.2227630000001],[-114.26363399999991,75.229705999999908],[-114.28472899999997,75.234985000000108],[-114.319458,75.24470500000001],[-114.34638999999993,75.25471500000009],[-114.35082999999997,75.26638800000012],[-114.34916699999985,75.271378000000141],[-114.35109699999992,75.276093000000003],[-114.35888699999992,75.281371999999976],[-114.49999999999994,75.312194999999974],[-114.51278699999995,75.314697000000081],[-114.52806099999992,75.314423000000147],[-114.54276999999996,75.31303400000013],[-114.60973399999995,75.27998400000007],[-114.61527999999993,75.274994000000049],[-114.61138900000003,75.265273999999977],[-114.598343,75.261658000000068],[-114.57972699999999,75.263321000000019],[-114.57250999999997,75.264434999999992],[-114.54666099999997,75.266937000000041],[-114.49638399999998,75.265548999999965],[-114.46806299999997,75.262207000000046],[-114.44304699999986,75.257216999999969],[-114.41278099999994,75.24803199999991],[-114.39723200000003,75.238876000000005],[-114.30249000000003,75.1827550000001],[-114.297234,75.179152999999928],[-114.29472399999997,75.173309000000131],[-114.29804999999999,75.166655999999932],[-114.30860899999993,75.154709000000025],[-114.32112099999995,75.143326000000002],[-114.33528099999995,75.13108799999992],[-114.34944199999995,75.119140999999956],[-114.36749299999985,75.106934000000024],[-114.39499699999993,75.090546000000131],[-114.42971799999987,75.073044000000095],[-114.46640000000002,75.06053199999991],[-114.48332199999987,75.056090999999981],[-114.51889,75.050261999999975],[-114.60082999999997,75.038315000000011],[-114.72416699999997,75.011932000000058],[-114.76342799999998,75.002472000000012],[-114.825287,74.988037000000077],[-114.88861099999991,74.977478000000019],[-114.94915800000001,74.969986000000063],[-115.03222699999992,74.961655000000007],[-115.05082700000003,74.961104999999975],[-115.066101,74.961655000000007],[-115.16055299999999,74.979430999999977],[-115.18582200000003,74.985259999999982],[-115.195267,74.989975000000015],[-115.22609699999992,75.049713000000054],[-115.22638699999993,75.058318999999983],[-115.225281,75.064147999999989],[-115.21861299999995,75.070831000000112],[-115.21167000000003,75.07638500000013],[-115.199432,75.082763999999997],[-115.18331899999993,75.088882000000126],[-115.17415599999993,75.094147000000021],[-115.17304999999999,75.099990999999989],[-115.17278299999992,75.10775799999999],[-115.17832899999996,75.115814000000057],[-115.216949,75.167480000000126],[-115.23554999999993,75.174698000000092],[-115.24861099999998,75.178314],[-115.25695799999994,75.179977000000065],[-115.26083399999993,75.179977000000065],[-115.25611900000001,75.178040000000067],[-115.252228,75.173874000000126],[-115.25361599999991,75.164429000000098],[-115.256393,75.158035000000041],[-115.26139799999999,75.151932000000102],[-115.27916699999997,75.140823000000012],[-115.291382,75.134430000000066],[-115.33640300000002,75.116652999999985],[-115.35305799999998,75.111099000000024],[-115.37304699999999,75.105820000000051],[-115.38694799999996,75.102203000000088],[-115.40416700000003,75.098877000000016],[-115.42666600000001,75.098038000000088],[-115.451683,75.098877000000016],[-115.48361199999994,75.106093999999985],[-115.51944700000001,75.117751999999996],[-115.62389399999995,75.121368000000018],[-115.60472099999993,75.108597000000088],[-115.54888899999997,75.055817000000047],[-115.53971899999993,75.044434000000081],[-115.53751399999993,75.039429000000041],[-115.53751399999993,75.027205999999978],[-115.54527300000001,75.015823000000125],[-115.5516659999999,75.009155000000135],[-115.57472200000001,74.998321999999973],[-115.60249299999998,74.98553499999997],[-115.61833200000001,74.979155999999932],[-115.658051,74.967208999999968],[-115.67194399999988,74.964706000000035],[-115.69055200000003,74.964157000000057],[-115.73500100000001,74.967208999999968],[-115.75723299999999,74.969986000000063],[-115.84777800000001,74.98553499999997],[-116.16306299999991,75.040267999999969],[-116.27916699999997,75.099425999999994],[-116.28639199999992,75.13108799999992],[-116.27694699999995,75.135268999999994],[-116.26889,75.141373000000044],[-116.2455369999999,75.162766000000147],[-116.24109599999997,75.168869000000086],[-116.23860200000001,75.196930000000009],[-116.23916599999995,75.201385000000016],[-116.24694799999992,75.205261000000064],[-116.26834100000002,75.206100000000049],[-116.287216,75.205551000000071],[-116.52722199999999,75.184708000000001],[-116.56054699999999,75.179152999999928],[-116.58084100000002,75.174423000000104],[-116.59388699999994,75.170258000000103],[-116.60249299999998,75.164993000000038],[-116.618607,75.152481000000023],[-116.66332999999997,75.122481999999991],[-116.679169,75.117203000000018],[-116.69415299999997,75.116652999999985],[-116.71721599999995,75.116652999999985],[-117.16860999999994,75.157486000000063],[-117.38417099999992,75.178588999999988],[-117.41915899999992,75.182480000000055],[-117.45777899999996,75.188873000000001],[-117.47501399999993,75.192200000000128],[-117.66361999999998,75.239150999999993],[-117.67832900000002,75.244431000000077],[-117.68305999999995,75.248596000000077],[-117.68388400000003,75.253052000000139],[-117.67166099999997,75.288879000000122],[-117.666946,75.294144000000017],[-117.66194199999995,75.298035000000084],[-117.53666699999997,75.361649],[-117.45527599999997,75.400269000000094],[-117.42054699999994,75.413315000000068],[-117.35360699999995,75.437485000000038],[-117.32112099999995,75.448593000000074],[-117.26139799999993,75.468871999999976],[-117.24054699999999,75.473602000000028],[-117.218887,75.476379000000122],[-117.14666699999998,75.480270000000019],[-117.10305799999998,75.482208000000128],[-117.041382,75.483597000000145],[-116.89778100000001,75.482482999999945],[-116.87748699999997,75.481368999999972],[-116.75334199999998,75.479431000000034],[-116.13474300000001,75.476379000000122],[-116.11554699999994,75.476928999999984],[-116.02194199999997,75.484985000000052],[-115.97332799999998,75.492751999999996],[-115.92250100000001,75.503876000000048],[-115.81833599999987,75.529709000000025],[-115.68888900000002,75.56442300000009],[-115.64639299999999,75.573607999999922],[-115.61972000000003,75.578872999999987],[-115.56527699999987,75.583878000000027],[-115.53056299999997,75.584991000000116],[-115.50611900000001,75.587204000000099],[-115.46305799999999,75.591933999999924],[-115.36609599999997,75.602768000000026],[-115.28832999999997,75.620529000000147],[-115.28611799999993,75.624420000000043],[-115.27722199999999,75.630539000000056],[-115.26777600000003,75.635818000000029],[-115.20333900000003,75.657211000000132],[-115.18611099999993,75.662766000000033],[-115.09665699999994,75.687194999999974],[-115.08194700000001,75.689423000000147],[-115.07028200000002,75.689972000000068],[-115.04250300000001,75.689697000000081],[-114.99973299999994,75.690811000000053],[-114.99804699999999,75.695816000000093],[-115.00556899999992,75.698868000000004],[-115.02834300000001,75.701660000000118],[-115.05277999999998,75.703048999999908],[-115.07611099999991,75.702484000000084],[-115.10305800000003,75.700821000000133],[-115.14555399999995,75.694138000000009],[-115.21721600000001,75.679321000000073],[-115.27916699999997,75.667755],[-115.32472199999995,75.659988000000055],[-115.38305700000001,75.653870000000097],[-115.40194699999995,75.652480999999966],[-115.47193900000002,75.650269000000037],[-115.51888999999994,75.649994000000049],[-115.60637700000001,75.651093000000003],[-115.66750299999995,75.647217000000126],[-115.71444700000001,75.642487000000131],[-115.889183,75.614426000000037],[-116.09166700000003,75.580551000000128],[-116.108047,75.574157999999954],[-116.11916400000001,75.572768999999994],[-116.34750399999996,75.559143000000006],[-116.38971700000002,75.5577550000001],[-116.46028099999995,75.557480000000055],[-116.48610699999995,75.5577550000001],[-116.84361299999989,75.564987000000031],[-117.19499200000001,75.573607999999922],[-117.21556099999998,75.574707000000103],[-117.23277300000001,75.576935000000049],[-117.24276700000001,75.580551000000128],[-117.25,75.586105000000089],[-117.25110599999994,75.597488000000112],[-117.24833699999999,75.603043000000014],[-117.23999000000003,75.614990000000148],[-117.23361199999994,75.620529000000147],[-117.21362299999993,75.633330999999998],[-117.07805599999995,75.707214000000079],[-117.06443799999994,75.714157000000114],[-117.03971899999999,75.725815000000125],[-117.02362099999993,75.732483000000116],[-117.01666299999994,75.737198000000149],[-116.95556599999992,75.761932000000115],[-116.923317,75.774704000000099],[-116.88667299999992,75.786926000000051],[-116.86888099999999,75.790543000000014],[-116.85056299999991,75.79304500000012],[-116.81639099999995,75.796371000000136],[-116.76278699999995,75.799988000000099],[-116.71972699999998,75.801650999999993],[-116.58860799999997,75.803314000000114],[-116.53056300000003,75.802765000000022],[-116.32417299999992,75.804703000000131],[-116.10582699999998,75.806931000000077],[-116.03721599999994,75.809708000000001],[-115.82305899999994,75.827208999999925],[-115.80444299999994,75.829987000000131],[-115.79444899999999,75.834152000000131],[-115.78415699999994,75.845260999999994],[-115.77971600000001,75.852203000000088],[-115.76500699999997,75.854431000000034],[-115.74944299999999,75.854980000000012],[-115.73693800000001,75.854431000000034],[-115.72638699999993,75.853317000000061],[-115.69193999999993,75.848328000000095],[-115.67388900000003,75.844147000000021],[-115.65943900000002,75.839706000000092],[-115.62277199999994,75.834427000000119],[-115.59445199999999,75.833327999999995],[-115.50723299999993,75.834991000000059],[-115.40499899999998,75.838043000000027],[-115.38194299999992,75.839706000000092],[-115.36416599999995,75.844147000000021],[-115.35193599999997,75.852203000000088],[-115.31360599999994,75.855255],[-115.13945000000001,75.859421000000111],[-115.07277699999986,75.85775799999999],[-115.04998799999998,75.855820000000051],[-115.00083899999998,75.853317000000061],[-114.98082699999992,75.853043000000127],[-114.932503,75.856644000000017],[-114.91194199999995,75.859711000000118],[-114.83860799999997,75.874419999999986],[-114.817497,75.880814000000044],[-114.80444299999994,75.886932000000002],[-114.798607,75.892212000000029],[-114.80999800000001,75.899428999999941],[-114.82417299999986,75.904160000000104],[-114.83667000000003,75.905822999999998],[-114.88166799999993,75.907486000000119],[-114.90722700000003,75.906372000000147],[-115.01806599999992,75.89888000000002],[-115.06416299999989,75.894714000000135],[-115.10527000000002,75.888596000000007],[-115.22165699999999,75.880264000000011],[-115.29277000000002,75.878311000000053],[-115.39472999999992,75.877762000000132],[-115.54055799999998,75.881362999999965],[-115.68222000000003,75.888321000000133],[-115.74694799999986,75.889434999999935],[-115.83029199999993,75.887772000000041],[-115.86888099999999,75.884430000000066],[-116.00472999999994,75.868590999999981],[-116.05332899999991,75.865540000000124],[-116.10665899999998,75.864150999999936],[-116.13474300000001,75.86442599999998],[-116.15083299999992,75.864700000000084],[-116.48277299999995,75.873871000000065],[-116.62389400000001,75.881927000000132],[-116.64972699999998,75.884995000000117],[-116.67666600000001,75.889709000000039],[-116.69972199999995,75.894989000000123],[-116.71501199999994,75.900269000000037],[-116.72444200000001,75.906372000000147],[-116.73416099999992,75.922484999999995],[-116.73361199999999,75.928589000000045],[-116.73137699999995,75.945251000000042],[-116.72666899999996,75.951385000000016],[-116.71389799999997,75.956649999999911],[-116.69972199999995,75.959990999999945],[-116.67748999999998,75.963882000000012],[-116.63221699999997,75.969147000000078],[-116.58528099999995,75.971924000000001],[-116.56139400000001,75.972762999999986],[-116.53721599999994,75.972488000000112],[-116.51611300000002,75.971100000000035],[-116.48528299999998,75.966385000000002],[-116.470551,75.96887200000009],[-116.46193700000003,75.974991000000102],[-116.46833800000002,75.986374000000126],[-116.52834299999995,76.027480999999966],[-116.60221899999993,76.022216999999955],[-116.645554,76.023041000000092],[-116.66944899999999,76.025818000000015],[-116.6875,76.02915999999999],[-116.69888300000002,76.034424000000115],[-116.70556599999998,76.039153999999996],[-116.708618,76.043869000000029],[-116.70777900000002,76.049988000000042],[-116.70612299999999,76.05386400000009],[-116.70168299999995,76.059982000000048],[-116.69638099999992,76.064987000000087],[-116.64138800000001,76.113312000000121],[-116.53388999999999,76.153320000000008],[-116.51611300000002,76.157761000000107],[-116.34221599999995,76.183043999999995],[-116.29611199999999,76.188582999999994],[-116.21362299999998,76.194977000000051],[-116.16361999999992,76.197204999999997],[-116.08416699999998,76.198318000000086],[-116.05943300000001,76.198029000000133],[-115.95889299999999,76.194138000000066],[-115.90862300000003,76.191924999999912],[-115.86554699999999,76.188309000000061],[-115.81582600000002,76.186920000000043],[-115.64334099999996,76.186096000000077],[-115.59500100000002,76.187759000000028],[-115.44721999999996,76.186920000000043],[-115.32749899999999,76.184708000000001],[-115.27306399999998,76.18220500000001],[-115.154449,76.169434000000081],[-115.13027999999997,76.165816999999947],[-115.02166699999998,76.15637200000009],[-114.87554899999998,76.149719000000118],[-114.85109699999992,76.149429000000112],[-114.79077100000001,76.151077000000043],[-114.72833300000002,76.153046000000074],[-114.68499799999995,76.156097000000045],[-114.66972399999997,76.158325000000048],[-114.66251399999999,76.160537999999974],[-114.662781,76.161651999999947],[-114.68083199999995,76.164992999999981],[-114.70639,76.167205999999965],[-114.80082699999997,76.168594000000041],[-114.85056299999997,76.170258000000047],[-114.89862099999993,76.172485000000108],[-114.94499200000001,76.176085999999998],[-114.99305700000002,76.182480000000055],[-115.00974299999996,76.187485000000095],[-115.01444999999995,76.192749000000049],[-115.02250700000002,76.196929999999952],[-115.04527300000001,76.202208999999982],[-115.08944699999995,76.208878000000027],[-115.15972899999997,76.218596999999988],[-115.27223200000003,76.230270000000019],[-115.37304699999999,76.230820000000051],[-115.54943800000001,76.230545000000063],[-115.75666799999993,76.234146000000123],[-115.78195199999993,76.235260000000096],[-115.82721699999991,76.23942599999998],[-115.84777800000001,76.243042000000059],[-115.86665299999993,76.247482000000048],[-115.88194299999992,76.252776999999924],[-115.91471899999993,76.275269000000037],[-115.92166099999997,76.281096999999932],[-115.92500299999989,76.286652000000061],[-115.90943899999996,76.345535000000041],[-115.90139799999997,76.349991000000102],[-115.86054999999999,76.362488000000099],[-115.64835399999998,76.420258000000047],[-115.62638899999996,76.425812000000008],[-115.51471700000002,76.45138500000013],[-115.49973299999994,76.454712000000086],[-115.46665999999993,76.455826000000059],[-115.26944700000001,76.461105000000032],[-115.02139299999993,76.474700999999982],[-115.00167799999997,76.477203000000088],[-114.978882,76.481658999999979],[-114.95638999999994,76.487198000000149],[-114.94638099999992,76.492477000000122],[-114.93360899999999,76.504990000000021],[-114.92999299999997,76.510268999999994],[-114.91944899999999,76.514435000000105],[-114.89972699999987,76.516936999999984],[-114.74054699999988,76.517212000000029],[-114.71112099999999,76.516936999999984],[-114.70194999999995,76.515274000000034],[-114.69611399999991,76.511382999999967],[-114.69833399999999,76.507492000000127],[-114.720551,76.501099000000124],[-114.70694699999996,76.489700000000028],[-114.61028299999992,76.488312000000121],[-114.45140099999998,76.49693300000007],[-114.29361,76.480269999999962],[-114.25167799999991,76.474990999999989],[-114.20722999999987,76.46804800000001],[-114.17471299999994,76.460266000000047],[-114.14806399999998,76.45138500000013],[-114.13555899999989,76.446365000000071],[-114.11833199999995,76.435257000000092],[-114.11193800000001,76.429428000000087],[-114.10333299999996,76.418869000000029],[-114.096947,76.403595000000109],[-114.09111000000001,76.388885000000016],[-114.10611,76.35554500000012],[-114.11749299999997,76.353317000000004],[-114.12943999999993,76.31191999999993],[-114.05972299999996,76.21775800000006],[-113.99665800000002,76.192749000000049],[-113.98332199999999,76.190262000000018],[-113.9583439999999,76.188873000000001],[-113.94833399999999,76.189423000000033],[-113.70889299999999,76.203598000000113],[-113.685272,76.206100000000049],[-113.63890100000003,76.212769000000094],[-113.61609599999997,76.218323000000055],[-113.52443700000003,76.235809000000017],[-113.36501299999992,76.258605999999929],[-113.32333399999993,76.262772000000041],[-113.26055899999994,76.264434999999992],[-112.99916100000002,76.267487000000074],[-112.95667300000002,76.263611000000026],[-112.90972899999997,76.257491999999957],[-112.89222699999993,76.253876000000105],[-112.86860699999994,76.244704999999954],[-112.85888699999998,76.239975000000129],[-112.85305800000003,76.234146000000123],[-112.75055700000001,76.200546000000031],[-112.71721599999995,76.198318000000086],[-112.62138399999998,76.198318000000086],[-112.59028599999999,76.196639999999945],[-112.48194899999999,76.181366000000082],[-112.46278399999994,76.178313999999943],[-112.45388800000001,76.176376000000005],[-112.42500299999995,76.167755000000113],[-112.43138099999993,76.161926000000108],[-112.43859900000001,76.15887500000008],[-112.47721899999999,76.151382000000012],[-112.49416400000001,76.146652000000017],[-112.50389099999995,76.138596000000121],[-112.52610800000002,76.110535000000027],[-112.52806099999998,76.103867000000037],[-112.52278100000001,76.099152000000004],[-112.42278299999987,76.047211000000118],[-112.41332999999992,76.042480000000012],[-112.38555899999994,76.036652000000061],[-112.29888900000003,76.029434000000094],[-112.15416699999997,76.014998999999989],[-112.06861899999996,76.003326000000129],[-112.04332699999992,75.998871000000122],[-111.9786069999999,75.981369000000086],[-111.78443900000002,75.949707000000103],[-111.76390100000003,75.946930000000009],[-111.75279199999994,75.942749000000106],[-111.72778299999999,75.92164600000001],[-111.72666900000002,75.915817000000004],[-111.729446,75.911101999999971],[-111.736107,75.90498400000007],[-111.77749599999999,75.894714000000135],[-111.87138400000003,75.887496999999996],[-111.94444299999998,75.884995000000117],[-112.00945300000001,75.881652999999972],[-112.03472899999997,75.879974000000004],[-112.05222300000003,75.878036000000066],[-112.07501200000002,75.873871000000065],[-112.165009,75.851928999999984],[-112.17971799999998,75.848038000000088],[-112.18694299999993,75.844986000000006],[-112.22556299999997,75.811096000000077],[-112.218613,75.808029000000147],[-112.20834399999995,75.80664100000007],[-112.19248999999996,75.805817000000104],[-112.02834299999995,75.815261999999962],[-111.85861199999988,75.826934999999992],[-111.69082599999996,75.822769000000108],[-111.64499699999993,75.821655000000135],[-111.604446,75.826660000000004],[-111.53971899999993,75.838318000000015],[-111.49638400000003,75.839706000000092],[-111.47638699999999,75.839157],[-111.45195000000001,75.836655000000064],[-111.44499200000001,75.832213999999965],[-111.35527000000002,75.724426000000108],[-111.35388199999994,75.718597000000102],[-111.35500299999995,75.714432000000102],[-111.38971700000002,75.663039999999967],[-111.40834000000001,75.620818999999983],[-111.40722700000003,75.614990000000148],[-111.35360700000001,75.57249500000006],[-111.31861900000001,75.545258000000103],[-111.27139299999999,75.522491000000002],[-111.24722299999996,75.518051000000014],[-111.22165699999999,75.516936999999984],[-110.995003,75.529160000000047],[-110.97222899999997,75.532486000000119],[-110.89943700000003,75.550262000000089],[-110.79499799999996,75.565262000000018],[-110.77166699999992,75.566666000000055],[-110.54222099999993,75.568878000000097],[-110.49553699999996,75.569153000000085],[-110.47582999999992,75.568329000000119],[-110.45612299999999,75.565535999999952],[-110.43110699999994,75.554152999999985],[-110.42443799999995,75.548873999999955],[-110.42223399999995,75.545532000000037],[-110.33389299999993,75.539154000000053],[-110.19583099999994,75.539703000000031],[-110.06777999999997,75.540543000000071],[-109.97416699999991,75.537490999999989],[-109.75,75.529709000000025],[-109.55304699999999,75.521652000000017],[-109.30444299999999,75.514999000000046],[-109.25389100000001,75.514160000000118],[-109.18360899999999,75.5086060000001],[-109.07472199999995,75.498322000000087],[-108.93639400000001,75.47665399999994],[-108.89943699999998,75.476379000000122],[-108.89584399999995,75.477203000000088],[-108.891953,75.480270000000019],[-108.91639700000002,75.513321000000133],[-108.92443800000001,75.52388000000002],[-108.83612099999993,75.612762000000032],[-108.8269499999999,75.686646000000053],[-108.84277299999991,75.691359999999975],[-108.88194299999998,75.692200000000071],[-108.91332999999992,75.691086000000041],[-108.94499199999996,75.694976999999938],[-109.05832699999996,75.728043000000071],[-109.05860899999993,75.733047000000056],[-109.06276699999989,75.737762000000089],[-109.12638900000002,75.7494200000001],[-109.21000699999996,75.762771999999984],[-109.26555599999995,75.770264000000054],[-109.30526700000001,75.771103000000039],[-109.45221700000002,75.783051000000057],[-109.62943999999993,75.799988000000099],[-109.63751200000002,75.822769000000108],[-109.62805200000003,75.829162999999994],[-109.62638900000002,75.83248900000001],[-109.65722699999992,75.866379000000109],[-109.66361999999998,75.870819000000097],[-109.72972099999998,75.876647999999932],[-109.737503,75.876647999999932],[-109.845551,75.863036999999963],[-109.85722399999992,75.860809000000017],[-109.88390400000003,75.849991000000045],[-109.90778399999994,75.849991000000045],[-109.93639399999989,75.856644000000017],[-110.05555699999996,75.890548999999908],[-110.05583200000001,75.894439999999975],[-110.04055800000003,75.898604999999975],[-109.92610200000001,75.927765000000079],[-109.826683,75.930541999999946],[-109.69776899999999,75.940262000000075],[-109.672234,75.943862999999908],[-109.65666199999998,75.94802900000002],[-109.42138699999998,76.035812000000021],[-109.30499299999991,76.100540000000137],[-109.30943300000001,76.106094000000098],[-109.31360599999999,76.109146000000067],[-109.396118,76.133041000000048],[-109.69999699999994,76.218872000000033],[-109.72250400000001,76.222213999999951],[-109.80943300000001,76.234421000000111],[-109.83416699999998,76.236099000000024],[-109.85861199999999,76.235809000000017],[-109.882767,76.233871000000079],[-109.89666699999992,76.230270000000019],[-109.90222199999999,76.226089000000115],[-109.90167199999996,76.221099999999979],[-109.88305699999995,76.198868000000118],[-109.88667299999997,76.194977000000051],[-109.89666699999992,76.193588000000034],[-109.91944899999993,76.196639999999945],[-109.94055200000003,76.20248400000014],[-110.01471700000002,76.229706000000078],[-110.06833599999993,76.250000000000057],[-110.08528100000001,76.255829000000062],[-110.12332199999997,76.266098000000056],[-110.15306099999998,76.27388000000002],[-110.201683,76.285538000000031],[-110.24109599999991,76.290543000000127],[-110.26583900000003,76.291367000000093],[-110.33138999999989,76.290817000000061],[-110.35804699999994,76.292206000000022],[-110.372772,76.294433999999967],[-110.38362099999995,76.297760000000039],[-110.39306599999986,76.391937000000098],[-110.38527699999986,76.423035000000084],[-110.38390400000003,76.427475000000129],[-110.28943600000002,76.433044000000109],[-110.095551,76.454163000000108],[-109.80721999999997,76.490540000000124],[-109.74638400000003,76.505553999999961],[-109.71833799999996,76.515274000000034],[-109.70639,76.521103000000096],[-109.70694700000001,76.526093000000117],[-109.71140300000002,76.529984000000013],[-109.72416699999997,76.531662000000097],[-109.74916100000002,76.531662000000097],[-109.81111099999993,76.527206000000035],[-109.83222999999992,76.529160000000047],[-109.84722899999991,76.532486000000063],[-109.83750900000001,76.538879000000065],[-109.75527999999997,76.572768999999937],[-109.70667299999997,76.587494000000106],[-109.64666699999998,76.593323000000112],[-109.56082199999997,76.640823000000069],[-109.5097429999999,76.708328000000051],[-109.30277999999998,76.79693600000013],[-109.22277800000001,76.808029000000147],[-109.12777699999992,76.819443000000035],[-109.02583299999998,76.822769000000108],[-108.97444199999995,76.816086000000098],[-108.95084400000002,76.81164600000011],[-108.93582200000003,76.809417999999937],[-108.91887699999995,76.809417999999937],[-108.88945000000001,76.814147999999989],[-108.84500099999997,76.823608000000036],[-108.82195299999989,76.829987000000074],[-108.81331599999999,76.833878000000141],[-108.81360599999999,76.837769000000037],[-108.81582600000002,76.84304800000001],[-108.81388899999996,76.847488000000055],[-108.78859699999992,76.857208000000128],[-108.77362099999999,76.85775799999999],[-108.74804699999999,76.855820000000051],[-108.65556300000003,76.817490000000078],[-108.65110800000002,76.813599000000011]],[[-97.045272999999952,76.797760000000096],[-97.075287000000003,76.793320000000108],[-97.093886999999995,76.79693600000013],[-97.188598999999954,76.822769000000108],[-97.200561999999991,76.829437000000041],[-97.200835999999924,76.834152000000074],[-97.200835999999924,76.857482999999945],[-97.187499999999943,76.860260000000039],[-97.149170000000026,76.859711000000118],[-97.128875999999991,76.85775799999999],[-97.086945000000014,76.851089000000115],[-97.005004999999983,76.819716999999969],[-96.997222999999963,76.813309000000004],[-97.009170999999981,76.807479999999998],[-97.026397999999915,76.802475000000129],[-97.045272999999952,76.797760000000096]],[[-113.46610999999996,76.766388000000006],[-113.61361699999992,76.713043000000084],[-113.628601,76.708038000000045],[-113.65249599999999,76.704436999999984],[-113.67999299999985,76.704436999999984],[-113.70417799999996,76.706374999999923],[-113.78472899999997,76.717209000000025],[-113.83667000000003,76.719986000000063],[-113.889183,76.718597000000102],[-114.05471799999992,76.703598000000056],[-114.16194200000001,76.716933999999981],[-114.21444699999995,76.720535000000041],[-114.50110599999999,76.73414600000001],[-114.73416099999997,76.746643000000006],[-114.78694200000001,76.750274999999931],[-114.82501200000002,76.753601000000003],[-114.85888699999998,76.758040999999992],[-114.87304699999993,76.760818000000086],[-114.87526700000001,76.765549000000021],[-114.87581599999999,76.770827999999995],[-114.85526999999996,76.794434000000081],[-114.83721899999989,76.801650999999993],[-114.80444299999994,76.813309000000004],[-114.76666299999988,76.82388300000008],[-114.62416099999996,76.86192299999999],[-114.60637700000001,76.865814000000057],[-114.58583099999993,76.867476999999951],[-114.33693700000003,76.877197000000081],[-114.13834400000002,76.884430000000066],[-113.96221899999995,76.889984000000084],[-113.885559,76.891663000000051],[-113.80750299999994,76.889435000000105],[-113.7625119999999,76.884430000000066],[-113.73444399999994,76.879149999999981],[-113.49804699999993,76.833328000000108],[-113.48750299999989,76.827773999999977],[-113.44915799999995,76.777205999999978],[-113.45388800000001,76.772765999999933],[-113.46610999999996,76.766388000000006]],[[-109.06610099999995,76.900543000000084],[-109.07444800000002,76.894714000000079],[-109.12581599999987,76.898604999999975],[-109.22917200000001,76.906936999999971],[-109.254997,76.910812000000135],[-109.29888899999997,76.922211000000061],[-109.30777,76.928040000000067],[-109.30387899999994,76.933867999999961],[-109.28278399999999,76.937759000000028],[-109.256958,76.938873000000058],[-109.20527600000003,76.935256999999979],[-109.17944299999999,76.932480000000055],[-109.12721299999998,76.923873999999955],[-109.09249899999992,76.912200999999925],[-109.07695000000001,76.906097000000102],[-109.06610099999995,76.900543000000084]],[[-97.256392999999946,76.967484000000127],[-97.284164000000033,76.965820000000122],[-97.335007000000019,76.968048000000067],[-97.40943900000002,76.973037999999974],[-97.458618000000001,76.977203000000145],[-97.473052999999936,76.980545000000063],[-97.423889000000031,77.005829000000062],[-97.374709999999936,77.022491000000059],[-97.286117999999874,77.033325000000104],[-97.243057000000022,77.037491000000045],[-97.199158000000011,77.037766000000033],[-97.154723999999931,77.030273000000022],[-97.136672999999973,77.025542999999971],[-97.092223999999987,77.010818000000029],[-97.093063000000029,77.004990000000134],[-97.231109999999944,76.971375000000023],[-97.256392999999946,76.967484000000127]],[[-95.659728999999913,77.058868000000075],[-95.585555999999883,77.053314000000057],[-95.56082200000003,77.053589000000045],[-95.465285999999935,77.058319000000097],[-95.417769999999962,77.05693100000002],[-95.386672999999973,77.052475000000072],[-95.368331999999953,77.048599000000024],[-95.337218999999948,77.039978000000076],[-95.288054999999872,77.022491000000059],[-95.224715999999944,77.006378000000041],[-95.181945999999925,76.996368000000132],[-95.168334999999956,76.99414100000007],[-95.115829000000019,76.995818999999983],[-95,76.99054000000001],[-94.906386999999881,76.976089000000002],[-94.813888999999904,76.971375000000023],[-94.728606999999954,76.972762999999929],[-94.714172000000019,76.97387700000013],[-94.688599000000011,76.97526600000009],[-94.636123999999995,76.976929000000041],[-94.593063000000029,76.975540000000024],[-94.526397999999972,76.969437000000084],[-94.510009999999909,76.966094999999996],[-94.494155999999919,76.960265999999933],[-94.489715999999987,76.956100000000049],[-94.40194699999995,76.918319999999994],[-94.25778200000002,76.896378000000084],[-94.254729999999995,76.891373000000044],[-94.238891999999964,76.889435000000105],[-94.207229999999925,76.888046000000088],[-94.15972899999997,76.887496999999996],[-94.096389999999985,76.888885000000073],[-94.081680000000006,76.89027400000009],[-94.054992999999854,76.894714000000079],[-94.032226999999921,76.903320000000008],[-94.026107999999965,76.909149000000014],[-94.010559000000001,76.919144000000131],[-94.001113999999916,76.923598999999967],[-93.986663999999962,76.928864000000033],[-93.964721999999995,76.932480000000055],[-93.943603999999937,76.933867999999961],[-93.899993999999936,76.93331900000004],[-93.755004999999926,76.922484999999995],[-93.739166000000012,76.920822000000044],[-93.658339999999896,76.909987999999998],[-93.649445000000014,76.908035000000041],[-93.641953000000001,76.905258000000117],[-93.635833999999988,76.89888000000002],[-93.488602000000014,76.839706000000092],[-93.301392000000021,76.768600000000049],[-93.208054000000004,76.746933000000013],[-93.202788999999939,76.747481999999934],[-93.192214999999976,76.747208000000001],[-93.187499999999943,76.745529000000033],[-93.179717999999923,76.741088999999988],[-93.169723999999974,76.686919999999986],[-93.174438000000009,76.674987999999985],[-93.18638599999997,76.660812000000021],[-93.300277999999878,76.552199999999971],[-93.306655999999919,76.54664600000001],[-93.461394999999982,76.49832200000003],[-93.595276000000013,76.462493999999992],[-93.629989999999964,76.451934999999992],[-93.641953000000001,76.44720500000011],[-93.651947000000007,76.441650000000038],[-93.652221999999938,76.437759000000142],[-93.650283999999999,76.43553200000008],[-93.548339999999882,76.386108000000092],[-93.528609999999958,76.384720000000016],[-93.509445000000028,76.386658000000125],[-93.498336999999992,76.388885000000016],[-93.46362299999987,76.399429000000055],[-93.456954999999994,76.403595000000109],[-93.467399999999998,76.40792799999997],[-93.480559999999969,76.409927000000039],[-93.500838999999985,76.4102630000001],[-93.508895999999993,76.406647000000078],[-93.520554000000004,76.405823000000112],[-93.537780999999995,76.407486000000006],[-93.554992999999968,76.411377000000073],[-93.570846999999958,76.416382000000112],[-93.580565999999976,76.423035000000084],[-93.576401000000033,76.426650999999993],[-93.533065999999963,76.443039000000056],[-93.518889999999999,76.448318000000029],[-93.501403999999923,76.452209000000096],[-93.476562000000001,76.454772999999932],[-93.454223999999954,76.456436000000053],[-93.422226000000023,76.458328000000108],[-93.392776000000026,76.461655000000064],[-93.370270000000005,76.466385000000059],[-93.357223999999917,76.470535000000098],[-93.123610999999926,76.573043999999982],[-93.111114999999927,76.580276000000083],[-93.095276000000013,76.590546000000018],[-93.096953999999926,76.596649000000127],[-93.09973100000002,76.601653999999996],[-93.046386999999925,76.616089000000102],[-92.945830999999998,76.622482000000048],[-92.90306099999998,76.621918000000107],[-92.880279999999971,76.620818999999983],[-92.857223999999917,76.618317000000047],[-92.789718999999934,76.609146000000123],[-92.705276000000026,76.594437000000084],[-92.68360899999999,76.592484000000127],[-92.654998999999975,76.594711000000018],[-92.642501999999979,76.598037999999974],[-92.632767000000001,76.602478000000133],[-92.618057000000022,76.607483000000002],[-92.605834999999956,76.610535000000141],[-92.564437999999939,76.616089000000102],[-92.541106999999897,76.617752000000053],[-92.506393000000003,76.617477000000008],[-92.468338000000017,76.61303700000002],[-92.440825999999959,76.603317000000118],[-92.42111199999988,76.598037999999974],[-92.40055799999999,76.594986000000006],[-92.386948000000018,76.593872000000033],[-92.36860699999994,76.594437000000084],[-92.330840999999964,76.597214000000008],[-92.183318999999983,76.614699999999914],[-92.077498999999989,76.637207000000046],[-92.043609999999887,76.646942000000081],[-92.004332999999917,76.657897999999932],[-91.991942999999992,76.660812000000021],[-91.970001000000025,76.664428999999984],[-91.938599000000011,76.668320000000051],[-91.910003999999901,76.670532000000094],[-91.775557999999933,76.679703000000018],[-91.668609999999944,76.684708000000057],[-91.535827999999924,76.688873000000058],[-91.410552999999936,76.689148000000102],[-91.385283999999956,76.688309000000118],[-91.132767000000001,76.664428999999984],[-91.008895999999936,76.651657000000114],[-90.986114999999984,76.649155000000064],[-90.883895999999936,76.626647999999989],[-90.871383999999978,76.622757000000092],[-90.854720999999984,76.61554000000001],[-90.849990999999875,76.609146000000123],[-90.844161999999926,76.603592000000106],[-90.837218999999948,76.599152000000117],[-90.817779999999971,76.593597000000045],[-90.779998999999975,76.585815000000082],[-90.741104000000007,76.580551000000071],[-90.674438000000009,76.573318000000086],[-90.626388999999961,76.56999200000007],[-90.582503999999972,76.565262000000018],[-90.56361400000003,76.559708000000001],[-90.50306699999993,76.53137200000009],[-90.498610999999926,76.524993999999936],[-90.468613000000005,76.479155999999989],[-90.468063000000029,76.473038000000088],[-90.48332199999993,76.46804800000001],[-90.510833999999988,76.463882000000126],[-90.538054999999929,76.46138000000002],[-90.61610399999995,76.45637499999998],[-90.638335999999924,76.455826000000059],[-90.779175000000009,76.461105000000032],[-90.826400999999976,76.463042999999971],[-91.090560999999923,76.478043000000127],[-91.304169000000002,76.504166000000055],[-91.34973100000002,76.509430000000066],[-91.373885999999857,76.511107999999979],[-91.414718999999934,76.512771999999984],[-91.441101000000003,76.512771999999984],[-91.564162999999951,76.500823999999966],[-91.566665999999998,76.498871000000008],[-91.416396999999961,76.460266000000047],[-91.402495999999985,76.457488999999953],[-91.271117999999944,76.453873000000101],[-91.147506999999962,76.450821000000019],[-91.057219999999973,76.450546000000145],[-90.99110399999995,76.447754000000089],[-90.974166999999966,76.446091000000138],[-90.797774999999945,76.42692599999998],[-90.642226999999991,76.410537999999917],[-90.414443999999946,76.403046000000018],[-90.368331999999953,76.399994000000049],[-90.317229999999938,76.394714000000022],[-90.281386999999995,76.389160000000004],[-90.06361400000003,76.361648999999943],[-89.831389999999942,76.34027100000003],[-89.543883999999935,76.316939999999988],[-89.367766999999958,76.304152999999985],[-89.305557000000022,76.299149],[-89.292496000000028,76.296097000000088],[-89.230559999999912,76.272766000000047],[-89.217772999999909,76.266663000000108],[-89.208617999999944,76.260818000000029],[-89.201110999999912,76.254166000000112],[-89.192214999999976,76.242203000000075],[-89.192490000000021,76.236099000000024],[-89.198607999999865,76.22526600000009],[-89.209166999999979,76.221099999999979],[-89.295546999999942,76.197754000000145],[-89.326400999999919,76.189423000000033],[-89.349730999999963,76.183594000000028],[-89.378051999999968,76.180267000000072],[-89.588332999999921,76.165816999999947],[-89.831954999999994,76.160812000000078],[-89.888610999999912,76.166091999999992],[-89.904175000000009,76.168869000000086],[-89.976105000000018,76.173874000000126],[-90.37332200000003,76.181366000000082],[-90.397780999999952,76.180542000000116],[-90.416945999999996,76.178863999999976],[-90.438598999999954,76.175537000000077],[-90.453613000000018,76.17053199999998],[-90.455840999999964,76.167205999999965],[-90.455565999999976,76.165543000000014],[-90.438598999999954,76.162201000000096],[-90.414443999999946,76.159987999999942],[-90.256957999999941,76.146942000000024],[-90.22222899999997,76.144440000000145],[-90.151671999999905,76.141663000000051],[-90.064162999999894,76.136932000000115],[-90.048614999999984,76.132751000000042],[-90.06361400000003,76.127762000000075],[-90.085280999999895,76.1244200000001],[-90.110824999999977,76.124145999999996],[-90.308884000000035,76.138321000000076],[-90.448607999999979,76.154984000000013],[-90.666397000000018,76.166930999999977],[-90.786117999999988,76.171371000000136],[-90.937209999999936,76.180817000000104],[-91.112212999999883,76.191924999999912],[-91.204726999999934,76.212769000000094],[-91.219726999999978,76.218323000000055],[-91.256957999999941,76.227203000000088],[-91.274444999999957,76.230270000000019],[-91.423614999999984,76.253876000000105],[-91.445830999999941,76.256653000000028],[-91.571395999999936,76.26527400000009],[-91.59722899999997,76.264999000000103],[-91.613616999999977,76.262206999999989],[-91.599730999999963,76.25610400000005],[-91.579453000000001,76.251663000000121],[-91.416655999999989,76.22526600000009],[-91.332779000000016,76.214157],[-91.33666999999997,76.178588999999988],[-91.27194199999991,76.155822999999941],[-91.220276000000013,76.161651999999947],[-91.203339000000028,76.16137700000013],[-91.163329999999974,76.159714000000008],[-91.116652999999985,76.15637200000009],[-90.882491999999957,76.137207000000103],[-90.700287000000003,76.119431000000134],[-90.67971799999998,76.117203000000018],[-90.665008999999998,76.112198000000149],[-90.757506999999976,76.07638500000013],[-90.785277999999948,76.072769000000051],[-90.809432999999956,76.071930000000066],[-90.833618000000001,76.072769000000051],[-90.855270000000019,76.072220000000129],[-90.862502999999947,76.069992000000127],[-90.866104000000007,76.067215000000033],[-90.864715999999987,76.064987000000087],[-90.848891999999978,76.060806000000014],[-90.71578199999999,76.06343099999998],[-90.703605999999922,76.064926000000014],[-90.663940000000025,76.074265000000025],[-90.660941999999864,76.076431000000014],[-90.611664000000019,76.084717000000069],[-90.599166999999966,76.088042999999971],[-90.575012000000015,76.090271000000087],[-90.548339999999939,76.091370000000097],[-90.474166999999966,76.089706000000035],[-90.429442999999992,76.088318000000129],[-90.408614999999998,76.08638000000002],[-90.194442999999922,76.062759000000142],[-90.190552000000025,76.06109600000002],[-90.193877999999984,76.055251999999996],[-90.202498999999989,76.050261999999975],[-90.215012000000002,76.04582199999993],[-90.233886999999925,76.041092000000106],[-90.27416999999997,76.034424000000115],[-90.301666000000012,76.032486000000006],[-90.328613000000018,76.031372000000033],[-90.404723999999931,76.031096999999988],[-90.635947999999985,76.028152000000034],[-90.718452000000013,76.022658999999976],[-90.904175000000009,76.015549000000021],[-90.929168999999888,76.015549000000021],[-91.005279999999971,76.024994000000049],[-91.144729999999981,76.021102999999982],[-91.160827999999924,76.018051000000071],[-91.155272999999909,76.014160000000004],[-91.069732999999928,75.990265000000022],[-90.950286999999946,75.962204000000099],[-90.941939999999988,75.955551000000128],[-90.938598999999954,75.951385000000016],[-90.941939999999988,75.945526000000029],[-90.948882999999967,75.939972000000012],[-90.968063000000029,75.931091000000094],[-91.016953000000001,75.925537000000077],[-91.070557000000008,75.922484999999995],[-91.100280999999995,75.918594000000098],[-91.118880999999931,75.913879000000065],[-91.129439999999988,75.908600000000092],[-91.143340999999964,75.897217000000069],[-91.125823999999852,75.857483000000002],[-91.132492000000013,75.851928999999984],[-91.135833999999932,75.846099999999979],[-91.134170999999924,75.842484000000127],[-91.129990000000021,75.839157],[-91.107498000000021,75.840545999999961],[-91.091675000000009,75.843323000000055],[-91.079452999999944,75.848038000000088],[-91.053328999999906,75.881087999999977],[-90.939986999999974,75.915268000000083],[-90.903060999999923,75.924698000000149],[-90.895844000000011,75.927200000000028],[-90.886123999999995,75.931655999999975],[-90.847778000000005,75.952208999999982],[-90.833618000000001,75.96026599999999],[-90.827788999999996,75.966385000000002],[-90.805557000000022,75.985535000000141],[-90.793883999999991,75.99470500000001],[-90.777495999999985,75.996094000000028],[-90.755843999999968,75.994980000000055],[-90.717223999999931,75.989151000000049],[-90.569457999999941,75.979980000000069],[-90.48332199999993,75.980270000000075],[-90.464447000000007,75.978591999999992],[-90.444716999999969,75.974151999999947],[-90.433318999999983,75.97026100000005],[-90.429442999999992,75.968323000000112],[-90.434158000000025,75.963318000000072],[-90.442490000000021,75.959717000000012],[-90.49221799999998,75.945816000000036],[-90.519164999999987,75.936096000000134],[-90.526107999999965,75.930541999999946],[-90.528335999999911,75.925537000000077],[-90.531386999999938,75.913605000000132],[-90.531676999999945,75.903595000000053],[-90.529998999999862,75.898331000000042],[-90.521118000000001,75.895538000000101],[-90.504729999999938,75.895263999999941],[-90.496947999999975,75.897766000000047],[-90.34722899999997,75.949417000000096],[-90.342223999999987,75.953049000000078],[-90.337783999999999,75.963043000000084],[-90.339447000000007,75.968323000000112],[-90.256957999999941,75.966933999999981],[-90.118057000000022,75.941924999999969],[-90.114440999999943,75.947753999999975],[-90.102492999999981,75.961654999999951],[-90.072509999999966,75.995529000000147],[-90.060271999999998,76.00471500000009],[-90.052779999999984,76.007217000000026],[-90.037506000000008,76.009155000000135],[-90.015015000000005,76.010269000000108],[-89.966659999999877,76.008605999999986],[-89.947495000000004,76.007217000000026],[-89.929717999999923,76.00471500000009],[-89.924437999999952,76.00221300000004],[-89.909163999999976,75.964995999999985],[-89.825012000000015,75.943038999999942],[-89.687499999999943,75.899993999999992],[-89.689986999999917,75.894989000000123],[-89.702224999999999,75.879700000000071],[-89.70944199999991,75.874146000000053],[-89.724441999999954,75.863036999999963],[-89.750290000000007,75.846649000000127],[-89.772781000000009,75.836380000000077],[-89.778885000000002,75.831665000000044],[-89.782227000000034,75.825821000000019],[-89.776397999999972,75.792755000000056],[-89.775008999999955,75.787491000000102],[-89.765014999999948,75.785812000000078],[-89.738891999999964,75.786652000000117],[-89.692490000000021,75.796371000000136],[-89.68638599999997,75.802474999999959],[-89.688048999999978,75.804428000000087],[-89.689162999999951,75.809708000000001],[-89.685546999999985,75.814147999999989],[-89.61999499999996,75.853592000000106],[-89.611114999999927,75.857208000000128],[-89.587508999999955,75.859146000000067],[-89.558334000000002,75.857483000000002],[-89.439163000000008,75.845260999999994],[-89.422774999999945,75.841934000000094],[-89.410277999999948,75.829712000000086],[-89.392501999999979,75.821105999999986],[-89.37777699999998,75.816665999999998],[-89.320007000000032,75.803863999999976],[-89.277495999999928,75.798324999999977],[-89.201401000000033,75.786926000000051],[-89.172775000000001,75.780548000000124],[-89.164169000000015,75.774704000000099],[-89.160278000000005,75.768051000000128],[-89.160552999999936,75.755828999999949],[-89.166945999999996,75.7452550000001],[-89.253890999999953,75.631088000000034],[-89.262787000000003,75.627761999999962],[-89.275008999999955,75.627761999999962],[-89.336670000000026,75.627761999999962],[-89.543059999999969,75.610535000000141],[-89.649170000000026,75.61554000000001],[-89.763061999999991,75.577484000000027],[-89.765288999999882,75.575546000000088],[-89.739440999999943,75.573607999999922],[-89.722504000000015,75.574157999999954],[-89.681945999999868,75.57998699999996],[-89.649993999999992,75.587204000000099],[-89.605559999999912,75.589705999999978],[-89.588332999999921,75.58859300000006],[-89.550995,75.579711999999972],[-89.542496000000028,75.570540999999992],[-89.548614999999984,75.566085999999984],[-89.56806899999998,75.5619200000001],[-89.628325999999959,75.561370999999951],[-89.676392000000021,75.562194999999917],[-89.692490000000021,75.561096000000134],[-89.706954999999994,75.557480000000055],[-89.700835999999981,75.553040000000067],[-89.645553999999947,75.548325000000034],[-89.576674999999966,75.547759999999982],[-89.550827000000027,75.548873999999955],[-89.526397999999915,75.551926000000094],[-89.515015000000005,75.554152999999985],[-89.500564999999995,75.558868000000018],[-89.491942999999992,75.565535999999952],[-89.473617999999874,75.574707000000103],[-89.458618000000001,75.579436999999928],[-89.441665999999998,75.583327999999995],[-89.431670999999994,75.584427000000005],[-89.403335999999967,75.587204000000099],[-89.351669000000015,75.589157000000057],[-89.302215999999987,75.589157000000057],[-89.235824999999977,75.586655000000121],[-89.217223999999987,75.584991000000116],[-89.182770000000005,75.577208999999982],[-89.174438000000009,75.572768999999994],[-89.168335000000013,75.566666000000055],[-89.156386999999938,75.549713000000111],[-89.154998999999975,75.544434000000138],[-89.149170000000026,75.532211000000075],[-89.143065999999976,75.524429000000112],[-89.09973100000002,75.484146000000067],[-88.963897999999972,75.431931000000077],[-88.950561999999934,75.429703000000131],[-88.921386999999982,75.427199999999971],[-88.87110899999999,75.43414300000012],[-88.841675000000009,75.436371000000065],[-88.818618999999956,75.436920000000043],[-88.796951000000035,75.434982000000105],[-88.779723999999987,75.432479999999998],[-88.768889999999942,75.434708000000001],[-88.747771999999941,75.470825000000104],[-88.75,75.474991000000045],[-88.801392000000021,75.531372000000147],[-88.865829000000019,75.586105000000089],[-88.755004999999983,75.676650999999936],[-88.738892000000021,75.67942800000003],[-88.722777999999892,75.679153000000042],[-88.678329000000019,75.675261999999975],[-88.631667999999991,75.667206000000078],[-88.600829999999917,75.659424000000115],[-88.574172999999917,75.648880000000077],[-88.542770000000019,75.635818000000029],[-88.50778200000002,75.619431000000077],[-88.448883000000023,75.59526100000005],[-88.399445000000014,75.579162999999994],[-88.364166000000012,75.568878000000097],[-88.315826000000015,75.556366000000082],[-88.228881999999999,75.539429000000098],[-88.203613000000018,75.531097000000102],[-88.198882999999967,75.528595000000053],[-88.196945000000028,75.522766000000047],[-88.198607999999979,75.517212000000029],[-88.201401000000033,75.512206999999989],[-88.217498999999918,75.509720000000073],[-88.240828999999962,75.509155000000078],[-88.290833000000021,75.49693300000007],[-88.305831999999896,75.492203000000075],[-88.301391999999964,75.488037000000134],[-88.295273000000009,75.484985000000052],[-88.263061999999934,75.476089000000115],[-88.228881999999999,75.471099999999979],[-88.21305799999999,75.470535000000098],[-88.200835999999924,75.471924000000115],[-88.148055999999997,75.488876000000118],[-88.12249799999995,75.501099000000011],[-88.06806899999998,75.521927000000062],[-87.958054000000004,75.544144000000131],[-87.751403999999923,75.576660000000061],[-87.716110000000015,75.575271999999927],[-87.697768999999937,75.573607999999922],[-87.661391999999921,75.567215000000147],[-87.648346000000004,75.5619200000001],[-87.495543999999995,75.485809000000017],[-87.494995000000017,75.483871000000079],[-87.498885999999914,75.478043000000127],[-87.504729999999995,75.474425999999994],[-87.529998999999918,75.465271000000143],[-87.563889000000017,75.459152000000074],[-87.588607999999965,75.456375000000037],[-87.601394999999968,75.453323000000069],[-87.606383999999935,75.449707000000046],[-87.594726999999978,75.446365000000071],[-87.58277899999996,75.444702000000007],[-87.568344000000025,75.443588000000034],[-87.548614999999927,75.444427000000132],[-87.533614999999884,75.446090999999967],[-87.5,75.452209000000096],[-87.459732000000031,75.461380000000077],[-87.445830999999941,75.465271000000143],[-87.434433000000013,75.468871999999976],[-87.4183349999999,75.479706000000078],[-87.416397000000018,75.485260000000039],[-87.430283000000031,75.501099000000011],[-87.437774999999988,75.5086060000001],[-87.444442999999922,75.513885000000073],[-87.46665999999999,75.521103000000096],[-87.462783999999942,75.563034000000073],[-87.393065999999976,75.604156000000103],[-87.381103999999937,75.609420999999998],[-87.354720999999984,75.61303700000002],[-87.285552999999879,75.620255000000043],[-87.263335999999981,75.621094000000028],[-87.25111400000003,75.621094000000028],[-87.234160999999915,75.618317000000104],[-87.088057999999933,75.57998699999996],[-87.079178000000013,75.566666000000055],[-87.072783999999956,75.559981999999991],[-87.055267000000015,75.546936000000017],[-87.011948000000018,75.531372000000147],[-86.967498999999975,75.518326000000002],[-86.931106999999997,75.508041000000048],[-86.914444000000003,75.503876000000048],[-86.862777999999935,75.491653000000042],[-86.807495000000017,75.479156000000046],[-86.771117999999944,75.475540000000137],[-86.72222899999997,75.474991000000045],[-86.643340999999964,75.478043000000127],[-86.631103999999993,75.477767999999912],[-86.601943999999946,75.476379000000122],[-86.583892999999875,75.474701000000039],[-86.567504999999983,75.472214000000122],[-86.48332199999993,75.456650000000025],[-86.464721999999995,75.452773999999977],[-86.375548999999978,75.427475000000129],[-86.365554999999972,75.423309000000074],[-86.368880999999988,75.418320000000108],[-86.389175000000023,75.40776100000005],[-86.400283999999999,75.402205999999978],[-86.415282999999988,75.398880000000133],[-86.506392999999946,75.388046000000031],[-86.553878999999938,75.381363000000079],[-86.576675000000023,75.377197000000024],[-86.611114999999984,75.36831699999999],[-86.615279999999984,75.365540000000067],[-86.596663999999976,75.361649],[-86.544723999999974,75.35914600000001],[-86.520279000000016,75.360259999999982],[-86.491942999999935,75.362762000000089],[-86.376099000000011,75.376373000000058],[-86.358336999999949,75.379699999999957],[-86.245270000000005,75.401932000000045],[-86.198607999999922,75.416091999999935],[-86.169997999999964,75.418594000000041],[-86.082503999999972,75.421371000000136],[-86.031386999999938,75.422485000000108],[-85.833618000000001,75.416091999999935],[-85.680557000000022,75.408034999999984],[-85.674438000000009,75.418320000000108],[-85.908614999999941,75.460266000000104],[-86.006392999999889,75.472214000000122],[-86.109726000000023,75.481934000000024],[-86.124709999999993,75.485535000000084],[-86.138335999999924,75.489975000000072],[-86.149445000000014,75.496368000000075],[-86.154449,75.500823999999966],[-86.143065999999976,75.508041000000048],[-86.11332699999997,75.514999000000046],[-86.096953999999982,75.51776099999995],[-86.00389100000001,75.531372000000147],[-85.908614999999941,75.543868999999916],[-85.865554999999972,75.544708000000071],[-85.763061999999991,75.546097000000088],[-85.44387799999987,75.560256999999979],[-85.329178000000013,75.561096000000134],[-85.303328999999962,75.568878000000097],[-85.189986999999917,75.611923000000047],[-85.074172999999917,75.651931999999988],[-85.054442999999992,75.656096999999988],[-85.039169000000015,75.657760999999994],[-84.926940999999943,75.658874999999966],[-84.879165999999884,75.656937000000028],[-84.797226000000023,75.652771000000143],[-84.763061999999934,75.650269000000037],[-84.71833799999996,75.642761000000064],[-84.683883999999921,75.634430000000123],[-84.62249799999995,75.628036000000066],[-84.59973100000002,75.626647999999989],[-84.572234999999978,75.626373000000001],[-84.524719000000005,75.628036000000066],[-84.497497999999894,75.631653000000028],[-84.503066999999987,75.633330999999998],[-84.519454999999937,75.636108000000036],[-84.539992999999981,75.637772000000098],[-84.557220000000029,75.63888500000013],[-84.607773000000009,75.639160000000004],[-84.63110399999988,75.640548999999965],[-84.651107999999965,75.643599999999992],[-84.657226999999921,75.647491000000059],[-84.66361999999998,75.68609600000002],[-84.644454999999994,75.687194999999974],[-84.482773000000009,75.694427000000076],[-84.350554999999872,75.697754000000032],[-84.322783999999956,75.699141999999938],[-84.299164000000019,75.70277400000009],[-84.070556999999951,75.761932000000115],[-83.929442999999878,75.810806000000071],[-83.878150999999946,75.818962000000056],[-83.767226999999934,75.824158000000125],[-83.740554999999972,75.824432000000058],[-83.722503999999958,75.822495000000004],[-83.703887999999949,75.818329000000062],[-83.698043999999925,75.814423000000033],[-83.706389999999942,75.812195000000088],[-83.72193900000002,75.810806000000071],[-83.74888599999997,75.80664100000007],[-83.752228000000002,75.801376000000005],[-83.736938000000009,75.795258000000047],[-83.698607999999979,75.790268000000026],[-83.672774999999945,75.788879000000009],[-83.619995000000017,75.789429000000041],[-83.56610099999989,75.791656000000103],[-83.515288999999882,75.789703000000145],[-83.495269999999948,75.78637700000013],[-83.479720999999927,75.782211000000018],[-83.464721999999995,75.776093000000117],[-83.458344000000011,75.770264000000054],[-83.447768999999994,75.755828999999949],[-83.43360899999999,75.750274999999988],[-83.419158999999866,75.748870999999951],[-83.292220999999927,75.737762000000089],[-83.123610999999983,75.734421000000054],[-83.065276999999924,75.739151000000049],[-82.960007000000019,75.756103999999993],[-82.82028200000002,75.781937000000084],[-82.799437999999952,75.786102000000085],[-82.664718999999991,75.811371000000122],[-82.466400000000021,75.828048999999965],[-82.327224999999942,75.836928999999998],[-82.279175000000009,75.836655000000064],[-82.139998999999875,75.826934999999992],[-81.95666499999993,75.815261999999962],[-81.885559000000001,75.811096000000077],[-81.660827999999924,75.811371000000122],[-81.536941999999954,75.809417999999994],[-81.450561999999991,75.800812000000064],[-81.212509000000011,75.771378000000084],[-81.22084000000001,75.704712000000029],[-81.276671999999962,75.668320000000051],[-81.281677000000002,75.663605000000018],[-81.285278000000005,75.657486000000006],[-81.271118000000001,75.651382000000126],[-81.256957999999997,75.649719000000005],[-81.010009999999966,75.633330999999998],[-80.983886999999982,75.633330999999998],[-80.857772999999952,75.634995000000004],[-80.779998999999918,75.637772000000098],[-80.547226000000023,75.650818000000015],[-80.502501999999936,75.652206000000092],[-80.480559999999969,75.651093000000003],[-80.46665999999999,75.649428999999998],[-80.316955999999948,75.630539000000056],[-80.275283999999999,75.624985000000095],[-80.256119000000012,75.62164300000012],[-80.199158000000011,75.608871000000136],[-80.101944000000003,75.586929000000055],[-80.068344000000025,75.578872999999987],[-79.953612999999962,75.540268000000083],[-79.948607999999922,75.534149000000014],[-79.956115999999952,75.530822999999998],[-80.085006999999905,75.507766999999944],[-80.191665999999884,75.489975000000072],[-80.252501999999993,75.485809000000017],[-80.355269999999962,75.473877000000073],[-80.371932999999956,75.468871999999976],[-80.373046999999929,75.463042999999971],[-80.358337000000006,75.458602999999982],[-80.338607999999908,75.456375000000037],[-80.306655999999919,75.456099999999992],[-80.108046999999942,75.469147000000021],[-80.000289999999893,75.476928999999984],[-79.929168999999945,75.479706000000078],[-79.73332199999993,75.471924000000115],[-79.714721999999995,75.470535000000098],[-79.644164999999987,75.462494000000049],[-79.586394999999982,75.454712000000086],[-79.574721999999895,75.449997000000053],[-79.581954999999994,75.446365000000071],[-79.635559000000001,75.445815999999979],[-79.656386999999995,75.444138000000066],[-79.675551999999925,75.441360000000032],[-79.683059999999955,75.435806000000071],[-79.682495000000017,75.430817000000104],[-79.62222300000002,75.402480999999966],[-79.605559999999969,75.398041000000148],[-79.561660999999958,75.394989000000066],[-79.520003999999972,75.391098],[-79.503066999999987,75.388596000000064],[-79.488051999999925,75.383330999999998],[-79.486937999999952,75.379974000000061],[-79.488601999999958,75.362487999999928],[-79.510009999999966,75.338043000000084],[-79.527495999999928,75.322220000000073],[-79.539443999999889,75.317763999999954],[-79.563323999999966,75.31860400000005],[-79.596664000000033,75.316086000000041],[-79.610000999999897,75.310806000000014],[-79.61471599999993,75.305542000000003],[-79.611938000000009,75.298325000000091],[-79.587508999999898,75.287491000000045],[-79.570847000000015,75.283051],[-79.548889000000031,75.281096999999988],[-79.443084999999996,75.280190000000061],[-79.506957999999884,75.229980000000069],[-79.571121000000005,75.199142000000052],[-79.629439999999988,75.174987999999928],[-79.651672000000019,75.172484999999995],[-79.731948999999929,75.164703000000031],[-79.774170000000026,75.167205999999965],[-79.835555999999997,75.160262999999986],[-79.929442999999878,75.140549000000078],[-79.944152999999915,75.136383000000023],[-79.954726999999934,75.12692300000009],[-79.955841000000021,75.113876000000118],[-79.955275999999969,75.106644000000017],[-79.955841000000021,75.100266000000033],[-79.960555999999883,75.094711000000132],[-79.974166999999852,75.08998100000008],[-80.128875999999991,75.068054000000018],[-80.150832999999977,75.065536000000066],[-80.215012000000002,75.063309000000004],[-80.296111999999994,75.058868000000075],[-80.440552000000025,75.038040000000024],[-80.427489999999921,75.029984000000127],[-80.402495999999928,75.021103000000039],[-80.327498999999989,74.998596000000134],[-80.310546999999985,74.996368000000132],[-80.297225999999966,74.996643000000006],[-80.238892000000021,74.994431000000134],[-80.194442999999978,74.989975000000015],[-80.182219999999916,74.986649],[-80.173888999999917,74.982483000000059],[-80.184158000000025,74.979430999999977],[-80.216110000000015,74.976089000000002],[-80.243057000000022,74.973038000000031],[-80.258347000000015,74.969711000000075],[-80.271941999999967,74.964996000000042],[-80.278884999999946,74.959427000000062],[-80.278884999999946,74.957214000000079],[-80.274170000000026,74.951096000000121],[-80.266112999999962,74.946640000000059],[-80.240828999999962,74.946640000000059],[-80.033614999999941,74.974426000000108],[-80.026946999999893,74.979980000000069],[-80.013061999999991,74.986923000000104],[-79.975280999999995,74.9994200000001],[-79.942764000000011,75.006943000000092],[-79.919158999999922,75.010543999999982],[-79.795273000000009,75.027480999999966],[-79.776947000000007,75.028320000000122],[-79.716400000000021,75.028869999999984],[-79.692763999999954,75.028046000000018],[-79.613891999999964,75.01998900000001],[-79.59722899999997,75.017487000000131],[-79.582503999999915,75.014435000000049],[-79.505004999999926,74.998321999999973],[-79.501953000000015,74.99581900000004],[-79.507232999999985,74.993042000000116],[-79.535827999999924,74.991653000000099],[-79.555557000000022,74.987198000000092],[-79.551940999999943,74.981659000000093],[-79.464721999999995,74.933319000000097],[-79.442489999999907,74.921646000000067],[-79.426392000000021,74.917206000000022],[-79.391953000000001,74.911102000000028],[-79.35722399999986,74.907486000000119],[-79.338608000000022,74.903320000000065],[-79.334732000000031,74.899993999999992],[-79.333617999999944,74.896378000000141],[-79.333617999999944,74.894440000000031],[-79.335830999999928,74.889160000000118],[-79.370543999999995,74.876373000000115],[-79.390839000000028,74.872482000000048],[-79.501953000000015,74.859421000000111],[-79.530288999999925,74.857758000000047],[-79.580001999999979,74.858321999999987],[-79.732773000000009,74.836655000000121],[-79.851943999999946,74.818878000000041],[-79.860549999999989,74.814697000000137],[-79.880553999999904,74.813034000000073],[-79.930557000000022,74.813309000000061],[-80.06806899999998,74.836380000000077],[-80.25306699999993,74.870818999999983],[-80.274170000000026,74.881087999999977],[-80.28195199999999,74.889984000000084],[-80.293883999999935,74.919983000000116],[-80.293610000000001,74.926376000000062],[-80.296951000000035,74.931090999999924],[-80.306380999999988,74.939148000000102],[-80.321670999999981,74.937759000000085],[-80.335280999999952,74.933044000000052],[-80.362212999999997,74.923599000000024],[-80.386123999999882,74.913604999999961],[-80.396118000000001,74.908599999999922],[-80.413054999999986,74.897766000000047],[-80.416655999999932,74.89387499999998],[-80.416107000000011,74.88888500000013],[-80.361114999999984,74.868866000000025],[-80.347777999999948,74.864990000000148],[-80.329726999999991,74.861374000000069],[-80.296951000000035,74.856934000000081],[-80.261123999999995,74.852767999999969],[-80.224166999999966,74.849426000000051],[-80.18638599999997,74.843323000000112],[-80.153609999999958,74.836655000000121],[-80.108611999999994,74.824432000000058],[-80.097778000000005,74.820267000000058],[-80.101668999999958,74.789154000000053],[-80.159164000000033,74.730269999999962],[-80.191375999999934,74.698029000000076],[-80.156112999999948,74.636932000000058],[-80.148894999999925,74.631088000000034],[-80.146666999999979,74.626923000000033],[-80.149444999999957,74.622482000000105],[-80.161391999999921,74.612198000000092],[-80.231673999999998,74.578049000000078],[-80.248046999999985,74.576096000000121],[-80.253715999999997,74.576050000000066],[-80.339995999999985,74.580551000000128],[-80.385009999999966,74.5816650000001],[-80.454453000000001,74.580825999999945],[-80.468886999999938,74.579436999999984],[-80.488891999999964,74.575546000000088],[-80.591674999999952,74.56442300000009],[-80.753066999999987,74.563309000000118],[-80.844161999999983,74.562759000000085],[-80.951950000000011,74.566086000000041],[-80.974715999999944,74.566939999999988],[-80.994155999999919,74.569717000000082],[-81.029998999999975,74.576660000000061],[-81.049727999999959,74.579163000000051],[-81.069457999999884,74.579711999999972],[-81.219161999999983,74.571381000000088],[-81.269729999999981,74.566086000000041],[-81.287505999999951,74.563034000000073],[-81.510833999999988,74.514434999999935],[-81.670836999999949,74.478592000000106],[-81.759170999999924,74.461105000000089],[-81.785003999999958,74.457764000000054],[-81.810821999999973,74.456940000000088],[-81.854720999999984,74.459427000000119],[-82.060546999999929,74.475540000000024],[-82.081680000000006,74.477203000000088],[-82.101395000000025,74.479706000000078],[-82.327498999999989,74.510544000000095],[-82.511123999999995,74.527206000000035],[-82.557219999999973,74.514709000000096],[-82.574722000000008,74.511658000000068],[-82.592498999999975,74.510544000000095],[-82.615279999999984,74.511108000000036],[-82.74749799999995,74.518051000000014],[-82.783614999999941,74.520263999999997],[-82.871933000000013,74.538589000000059],[-82.914169000000015,74.549149],[-82.953613000000018,74.565810999999997],[-83.018340999999907,74.594436999999914],[-83.056380999999988,74.61554000000001],[-83.079726999999934,74.630264000000068],[-83.088607999999965,74.636658000000125],[-83.092498999999975,74.641372999999987],[-83.102218999999934,74.65415999999999],[-83.12388599999997,74.684982000000048],[-83.128051999999968,74.691925000000026],[-83.131942999999978,74.708328000000108],[-83.128051999999968,74.71748400000007],[-83.107772999999952,74.748032000000023],[-83.090835999999854,74.757767000000115],[-83.075012000000015,74.762206999999933],[-83.041381999999942,74.769989000000066],[-83.028884999999946,74.774993999999936],[-83.02305599999994,74.780548000000124],[-83.024170000000026,74.783325000000048],[-83.081680000000006,74.818054000000075],[-83.09584000000001,74.82388300000008],[-83.105269999999962,74.826660000000004],[-83.116104000000007,74.828597999999943],[-83.15583799999996,74.826935000000049],[-83.203063999999983,74.820830999999998],[-83.227782999999874,74.820540999999992],[-83.24888599999997,74.823608000000092],[-83.299727999999959,74.835541000000148],[-83.33666999999997,74.849426000000051],[-83.380829000000006,74.866379000000109],[-83.402221999999938,74.875259000000142],[-83.475554999999929,74.896652000000074],[-83.511397999999986,74.901657000000114],[-83.52806099999998,74.901657000000114],[-83.547500999999954,74.897491000000059],[-83.55972300000002,74.892487000000074],[-83.560546999999985,74.887206999999989],[-83.559433000000013,74.880814000000044],[-83.556945999999925,74.875259000000142],[-83.527221999999995,74.84526100000005],[-83.518616000000009,74.839432000000045],[-83.472504000000015,74.815262000000018],[-83.458617999999944,74.808028999999976],[-83.429992999999911,74.797484999999938],[-83.394164999999987,74.790268000000026],[-83.375274999999931,74.786926000000108],[-83.354995999999971,74.784424000000001],[-83.327498999999932,74.779160000000047],[-83.318893000000003,74.774993999999936],[-83.324172999999973,74.755264000000125],[-83.327498999999932,74.75],[-83.454726999999991,74.591094999999996],[-83.474441999999954,74.579711999999972],[-83.484160999999972,74.574996999999939],[-83.598891999999978,74.543594000000098],[-83.611664000000019,74.540817000000004],[-83.720839999999953,74.545532000000037],[-83.785552999999936,74.548598999999967],[-83.805556999999965,74.550812000000121],[-83.830840999999964,74.551376000000062],[-83.855270000000019,74.550812000000121],[-83.907501000000025,74.546936000000073],[-84.037780999999939,74.53414900000007],[-84.063323999999966,74.530822999999998],[-84.107498000000021,74.523314999999968],[-84.145844000000011,74.515548999999965],[-84.216400000000021,74.507216999999969],[-84.238892000000021,74.505554000000018],[-84.285552999999936,74.50360100000006],[-84.332778999999903,74.503876000000105],[-84.355835000000013,74.504440000000045],[-84.396118000000001,74.507492000000127],[-84.641678000000013,74.506943000000035],[-84.850280999999995,74.502212999999983],[-84.871384000000035,74.501389000000017],[-84.889450000000011,74.502212999999983],[-84.899445000000014,74.503326000000072],[-84.91194200000001,74.508041000000105],[-84.916655999999932,74.511108000000036],[-84.983063000000016,74.570541000000048],[-84.985275000000001,74.579163000000051],[-84.974715999999944,74.617477000000065],[-84.960281000000009,74.656937000000084],[-84.955001999999865,74.66276600000009],[-84.950835999999981,74.668869000000029],[-84.950835999999981,74.672760000000096],[-84.952498999999989,74.679153000000042],[-84.955565999999976,74.684708000000114],[-84.964172000000019,74.691925000000026],[-84.973327999999867,74.696091000000138],[-84.990554999999972,74.698029000000076],[-85.003341999999975,74.697479000000044],[-85.063888999999961,74.651657],[-85.072509999999966,74.641098000000113],[-85.044723999999917,74.612198000000092],[-85.037506000000008,74.541092000000049],[-85.036941999999954,74.535263000000043],[-85.038604999999961,74.528870000000097],[-85.043609999999944,74.523314999999968],[-85.074172999999917,74.508880999999974],[-85.087783999999886,74.504990000000078],[-85.104720999999984,74.501663000000121],[-85.125274999999931,74.49859600000002],[-85.21444699999995,74.49192800000003],[-85.259445000000028,74.490540000000124],[-85.353057999999976,74.49859600000002],[-85.363616999999977,74.501937999999996],[-85.369995000000017,74.509430000000066],[-85.363891999999964,74.537490999999989],[-85.365554999999972,74.544144000000131],[-85.370270000000005,74.552475000000072],[-85.468613000000005,74.658875000000023],[-85.474166999999909,74.664428999999984],[-85.482773000000009,74.671646000000123],[-85.49499499999996,74.679153000000042],[-85.504455999999948,74.683318999999926],[-85.520554000000004,74.688033999999959],[-85.527221999999881,74.688873000000115],[-85.543335000000013,74.686371000000065],[-85.549987999999985,74.68193100000002],[-85.524170000000026,74.598602000000142],[-85.520844000000011,74.593048000000124],[-85.509170999999981,74.579987000000017],[-85.486938000000009,74.561096000000134],[-85.481948999999929,74.554152999999985],[-85.479996000000028,74.547760000000039],[-85.479171999999949,74.541655999999989],[-85.480285999999921,74.537200999999982],[-85.50389100000001,74.520538000000101],[-85.527221999999881,74.510269000000051],[-85.542220999999927,74.505554000000018],[-85.560546999999929,74.501389000000017],[-85.580840999999964,74.498322000000087],[-85.604172000000005,74.495818999999926],[-86.013335999999981,74.479431000000091],[-86.059433000000013,74.478592000000106],[-86.082503999999972,74.479156000000046],[-86.120834000000002,74.482207999999957],[-86.123046999999872,74.48332199999993],[-86.122771999999941,74.489975000000129],[-86.101105000000018,74.511383000000023],[-86.085555999999997,74.529434000000037],[-86.079178000000013,74.53915400000011],[-86.077788999999939,74.545257999999933],[-86.082779000000016,74.555251999999939],[-86.153610000000015,74.60914600000001],[-86.177779999999927,74.615265000000022],[-86.197494999999947,74.615265000000022],[-86.215835999999854,74.610809000000074],[-86.224441999999954,74.607758000000047],[-86.235001000000011,74.601929000000041],[-86.240554999999972,74.59693900000002],[-86.242766999999958,74.59137000000004],[-86.23443599999996,74.581100000000106],[-86.227492999999981,74.575271999999984],[-86.223052999999936,74.562194999999974],[-86.232223999999974,74.540268000000083],[-86.235275000000001,74.535263000000043],[-86.244719999999973,74.52388000000002],[-86.278885000000002,74.508605999999929],[-86.332779000000016,74.490265000000136],[-86.399170000000026,74.479431000000091],[-86.423324999999977,74.478866999999923],[-86.443603999999993,74.481093999999985],[-86.462508999999955,74.485535000000084],[-86.633330999999998,74.526093000000003],[-86.664168999999958,74.534714000000065],[-86.69110099999989,74.544144000000131],[-86.708618000000001,74.551086000000055],[-86.720839999999896,74.558594000000085],[-86.759170999999981,74.586380000000133],[-86.762786999999946,74.591933999999981],[-86.761672999999973,74.598037999999974],[-86.751403999999866,74.60386699999998],[-86.74610899999999,74.608871000000136],[-86.75111400000003,74.613602000000071],[-86.766952999999944,74.616088999999988],[-86.785277999999948,74.616928000000144],[-86.799437999999952,74.615265000000022],[-86.801101999999958,74.611374000000126],[-86.800551999999925,74.552200000000028],[-86.797226000000023,74.543594000000098],[-86.794448999999986,74.539978000000076],[-86.705565999999976,74.500275000000045],[-86.693603999999937,74.468048000000067],[-86.905838000000017,74.460541000000092],[-87.225829999999917,74.466934000000094],[-87.27027899999996,74.468323000000055],[-87.304169000000002,74.471649000000127],[-87.320846999999958,74.476653999999996],[-87.352782999999931,74.495254999999986],[-87.474441999999954,74.475815000000011],[-87.508621000000005,74.46775800000006],[-87.527221999999995,74.465545999999961],[-87.574722000000008,74.461929000000055],[-87.669998000000021,74.459991000000059],[-87.710830999999928,74.460815000000025],[-87.732223999999974,74.466385000000116],[-87.755004999999983,74.479431000000091],[-87.848052999999993,74.476089000000115],[-87.903610000000015,74.472214000000122],[-88.036117999999931,74.476928999999984],[-88.263625999999988,74.483597000000145],[-88.356109999999944,74.489150999999993],[-88.496947999999861,74.497757000000092],[-88.517226999999991,74.499709999999993],[-88.529723999999987,74.501937999999996],[-88.535277999999948,74.50360100000006],[-88.539992999999981,74.50610400000005],[-88.571121000000005,74.549987999999985],[-88.570846999999958,74.556091000000094],[-88.560821999999973,74.593048000000124],[-88.542220999999984,74.616088999999988],[-88.406386999999995,74.736098999999967],[-88.347504000000015,74.784714000000008],[-88.484725999999966,74.857758000000047],[-88.528060999999866,74.901931999999988],[-88.537216000000001,74.906937000000028],[-88.547774999999945,74.907760999999994],[-88.557220000000029,74.906647000000021],[-88.56806899999998,74.901382000000126],[-88.664718999999934,74.844986000000006],[-88.675827000000027,74.836929000000055],[-88.74360699999994,74.78387500000008],[-88.749724999999899,74.77777100000003],[-88.752501999999993,74.768326000000002],[-88.75306699999993,74.756103999999993],[-88.749724999999899,74.749709999999936],[-88.748885999999914,74.741364000000033],[-88.749434999999949,74.726089000000059],[-88.753341999999918,74.714157000000114],[-88.811935000000005,74.672211000000118],[-88.821395999999993,74.666382000000112],[-88.835555999999997,74.661377000000073],[-88.848343,74.659149000000127],[-88.862212999999997,74.658875000000023],[-88.873885999999914,74.6602630000001],[-88.883056999999951,74.665267999999969],[-88.889724999999999,74.670531999999923],[-88.917220999999984,74.719711000000132],[-88.918059999999855,74.732483000000116],[-88.914168999999958,74.749145999999996],[-88.910278000000005,74.754990000000021],[-88.905563000000029,74.75999500000006],[-88.904174999999952,74.765549000000078],[-88.906386999999995,74.773041000000035],[-88.909728999999857,74.77777100000003],[-88.926940999999943,74.78387500000008],[-89.073623999999882,74.833878000000027],[-89.088608000000022,74.837204000000042],[-89.097778000000005,74.836105000000089],[-89.099166999999966,74.835266000000104],[-89.059998000000007,74.797484999999938],[-89.053329000000019,74.793594000000041],[-89.042769999999905,74.789702999999975],[-89.011123999999938,74.780822999999941],[-89.010283999999956,74.775543000000084],[-89.012786999999946,74.770538000000045],[-89.041381999999999,74.730269999999962],[-89.047501000000011,74.722487999999998],[-89.055832000000009,74.719146999999964],[-89.077788999999882,74.717209000000025],[-89.102218999999991,74.719437000000028],[-89.178878999999938,74.732208000000128],[-89.178878999999938,74.735260000000039],[-89.181106999999997,74.739700000000028],[-89.190551999999968,74.744430999999963],[-89.223052999999993,74.752487000000031],[-89.243057000000022,74.755264000000125],[-89.265014999999948,74.756378000000097],[-89.271118000000001,74.754715000000033],[-89.216400000000021,74.721100000000092],[-89.202498999999932,74.713882000000126],[-89.189712999999927,74.708602999999925],[-89.141112999999962,74.698029000000076],[-89.12249799999995,74.696091000000138],[-89.105270000000019,74.693039000000056],[-89.095839999999953,74.688033999999959],[-89.095839999999953,74.68193100000002],[-89.125,74.616928000000144],[-89.131942999999922,74.611374000000126],[-89.150557999999933,74.599716000000114],[-89.185271999999998,74.587494000000106],[-89.196945000000028,74.584427000000005],[-89.438889000000017,74.550812000000121],[-89.455001999999922,74.548598999999967],[-89.489715999999987,74.545532000000037],[-89.580565999999976,74.540268000000083],[-89.92860399999995,74.530822999999998],[-89.946105999999986,74.532211000000132],[-90.106658999999979,74.549422999999933],[-90.223891999999921,74.563599000000124],[-90.244995000000017,74.566939999999988],[-90.263335999999924,74.570541000000048],[-90.363051999999982,74.594711000000075],[-90.45666499999993,74.600815000000068],[-90.496384000000035,74.601654000000053],[-90.529998999999862,74.605255000000113],[-90.589721999999995,74.613312000000064],[-90.607223999999917,74.616378999999995],[-90.619995000000017,74.619980000000055],[-90.70805399999989,74.648041000000148],[-90.731673999999941,74.664153999999996],[-90.736938000000009,74.669434000000024],[-90.739440999999999,74.673874000000069],[-90.747771999999998,74.703048999999965],[-90.75111400000003,74.716385000000059],[-90.867492999999911,74.702484000000084],[-90.875823999999966,74.691925000000026],[-90.885559000000001,74.683593999999971],[-90.895614999999964,74.681137000000092],[-91.013625999999988,74.698868000000061],[-91.024718999999948,74.70277400000009],[-91.023620999999991,74.706940000000031],[-91.012221999999952,74.717209000000025],[-90.978332999999964,74.739700000000028],[-90.965012000000002,74.747757000000036],[-90.945830999999941,74.751389000000131],[-90.938598999999954,74.750823999999966],[-90.926101999999958,74.751663000000065],[-90.896118000000001,74.75749200000007],[-90.883895999999936,74.761658000000011],[-90.851395000000025,74.776093000000117],[-90.758057000000008,74.831100000000049],[-90.752791999999943,74.835815000000082],[-90.740829000000019,74.847488000000112],[-90.742492999999911,74.852767999999969],[-90.746658000000025,74.860535000000084],[-90.75778200000002,74.880814000000044],[-90.772232000000031,74.884995000000117],[-90.816956000000005,74.883605999999986],[-90.841110000000015,74.879425000000083],[-90.853881999999942,74.875259000000142],[-90.863892000000021,74.869979999999998],[-90.870270000000005,74.86442599999998],[-90.874435000000005,74.859146000000123],[-90.87388599999997,74.853043000000014],[-90.883330999999998,74.84165999999999],[-90.975006000000008,74.799423000000104],[-91,74.789702999999975],[-91.075286999999946,74.761107999999979],[-91.101943999999946,74.751099000000124],[-91.132767000000001,74.744430999999963],[-91.144729999999981,74.747481999999991],[-91.14416499999993,74.751389000000131],[-91.146666999999923,74.755554000000132],[-91.171660999999972,74.75749200000007],[-91.188599000000011,74.752777000000037],[-91.216110000000015,74.738876000000062],[-91.225829999999917,74.733597000000088],[-91.228881999999942,74.727768000000083],[-91.226944000000003,74.722487999999998],[-91.185271999999941,74.684708000000114],[-91.177489999999977,74.678039999999953],[-91.154998999999975,74.665542999999957],[-91.11471599999993,74.645827999999995],[-91.105835000000013,74.63998400000014],[-91.098052999999879,74.633330999999998],[-91.099730999999963,74.62831100000011],[-91.106658999999979,74.625809000000061],[-91.133056999999951,74.624420000000043],[-91.256393000000003,74.628585999999984],[-91.455841000000021,74.639708999999982],[-91.539992999999924,74.646378000000027],[-91.553328999999962,74.648330999999985],[-91.676101999999901,74.671921000000111],[-91.684998000000007,74.677765000000136],[-91.671660999999972,74.689697000000081],[-91.664169000000015,74.693314000000044],[-91.634170999999981,74.696091000000138],[-91.621932999999956,74.700272000000041],[-91.620270000000005,74.704987000000074],[-91.624435000000005,74.709991000000059],[-91.635833999999932,74.715271000000087],[-91.651671999999962,74.719986000000119],[-91.708618000000001,74.727478000000076],[-91.754181000000017,74.727768000000083],[-91.779449,74.725815000000125],[-91.798888999999917,74.722214000000065],[-91.811110999999983,74.71804800000001],[-91.812499999999886,74.713042999999971],[-91.80296299999992,74.706184000000007],[-91.798888999999917,74.699416999999983],[-91.815551999999968,74.69470200000012],[-91.833069000000023,74.696091000000138],[-91.851105000000018,74.698868000000061],[-91.866652999999928,74.702209000000096],[-91.876663000000008,74.706940000000031],[-91.875274999999931,74.711928999999998],[-91.859160999999972,74.721100000000092],[-91.892226999999934,74.750823999999966],[-91.961944999999957,74.764160000000061],[-91.998610999999983,74.773041000000035],[-92.015838999999971,74.778320000000008],[-92.045546999999999,74.789702999999975],[-92.05749499999996,74.79664600000001],[-92.063613999999973,74.803588999999988],[-92.065276999999924,74.80720500000001],[-92.06639100000001,74.813309000000061],[-92.05749499999996,74.82499700000011],[-92.051665999999955,74.830551000000071],[-92.043334999999956,74.836380000000077],[-92.01916499999993,74.846099999999979],[-92.013061999999991,74.851928999999984],[-92.008056999999951,74.863602000000014],[-92.006393000000003,74.888046000000145],[-92.013335999999924,74.908325000000104],[-92.015288999999939,74.913604999999961],[-92.043334999999956,74.951935000000105],[-92.048049999999989,74.958328000000051],[-92.063323999999966,74.963882000000069],[-92.091674999999896,74.971649000000014],[-92.1058349999999,74.976654000000053],[-92.164169000000015,74.998031999999967],[-92.209732000000031,75.038588999999945],[-92.228881999999999,75.071105999999986],[-92.225829999999917,75.07388300000008],[-92.21556099999998,75.07638500000013],[-92.186385999999914,75.08137499999998],[-92.152495999999985,75.083878000000141],[-92.111664000000019,75.081940000000031],[-92.046188000000029,75.084961000000078],[-92.029998999999918,75.08638000000002],[-92.012511999999958,75.095260999999994],[-92.010009999999966,75.101089000000115],[-92.051392000000021,75.146942000000024],[-92.055557000000022,75.15026899999998],[-92.070556999999894,75.153046000000074],[-92.083618000000001,75.153320000000008],[-92.105269999999962,75.151932000000102],[-92.193329000000006,75.143326000000002],[-92.325561999999991,75.151657000000057],[-92.490829000000019,75.213608000000079],[-92.468886999999938,75.284714000000122],[-92.428604000000007,75.394440000000088],[-92.388335999999924,75.441925000000083],[-92.328063999999983,75.489151000000106],[-92.220276000000013,75.546097000000088],[-92.210281000000009,75.551376000000062],[-92.199431999999945,75.553864000000033],[-92.155838000000017,75.556641000000127],[-92.100280999999995,75.562759000000085],[-92.085830999999985,75.564987000000031],[-92.069457999999997,75.568878000000097],[-92.056655999999975,75.573043999999982],[-92.013901000000033,75.589157000000057],[-92.005004999999926,75.594986000000063],[-92.008346999999958,75.661377000000073],[-92.043609999999887,75.68553200000008],[-92.05749499999996,75.691359999999975],[-92.089995999999985,75.700272000000041],[-92.137512000000015,75.721100000000092],[-92.156661999999983,75.731094000000098],[-92.174437999999952,75.744431000000134],[-92.175551999999925,75.750549000000092],[-92.139724999999999,75.778319999999951],[-92.119155999999919,75.789154000000053],[-92.112777999999992,75.794708000000014],[-92.104720999999984,75.805252000000053],[-92.100554999999929,75.823043999999925],[-92.103881999999942,75.841369999999927],[-92.105269999999962,75.847488000000055],[-92.108611999999994,75.858871000000079],[-92.113327000000027,75.863602000000014],[-92.129714999999976,75.876373000000115],[-92.138061999999991,75.879974000000004],[-92.151108000000022,75.883041000000105],[-92.172774999999945,75.885544000000039],[-92.215012000000002,75.888321000000133],[-92.23832699999997,75.891373000000101],[-92.317779999999914,75.90498400000007],[-92.336394999999868,75.908600000000092],[-92.408614999999998,75.928589000000045],[-92.433060000000012,75.936371000000008],[-92.444442999999922,75.941086000000041],[-92.583618000000001,76.008881000000031],[-92.635833999999988,76.104155999999989],[-92.635833999999988,76.109711000000061],[-92.637222000000008,76.115814],[-92.793883999999935,76.20748900000001],[-92.809433000000013,76.212494000000049],[-92.946654999999964,76.245818999999926],[-93.066956000000005,76.299149],[-93.076674999999909,76.316939999999988],[-93.057220000000029,76.326660000000061],[-93.054992999999968,76.332489000000066],[-93.056380999999874,76.338593000000117],[-93.059158000000025,76.34387200000009],[-93.071945000000028,76.353317000000004],[-93.083618000000001,76.358032000000037],[-93.115279999999927,76.363876000000005],[-93.138061999999934,76.366378999999995],[-93.186935000000005,76.368317000000104],[-93.212783999999942,76.368042000000116],[-93.239989999999977,76.366653000000099],[-93.315276999999924,76.360259999999982],[-93.345275999999956,76.356094000000041],[-93.381377999999927,76.34637500000008],[-93.449996999999996,76.326385000000073],[-93.561934999999949,76.297211000000061],[-93.587783999999886,76.292755],[-93.617492999999968,76.291092000000049],[-93.635833999999988,76.291655999999989],[-93.658339999999896,76.293868999999972],[-93.666397000000018,76.298598999999967],[-93.653335999999911,76.302765000000079],[-93.624434999999892,76.30581699999999],[-93.623610999999926,76.310806000000127],[-93.636123999999995,76.326660000000061],[-93.654174999999896,76.325821000000133],[-93.678878999999938,76.322220000000073],[-93.718886999999995,76.312484999999981],[-93.731383999999991,76.306930999999963],[-93.763901000000033,76.286377000000016],[-93.763901000000033,76.282211000000132],[-93.761948000000018,76.280272999999966],[-93.753890999999953,76.275817999999958],[-93.74110399999995,76.271927000000062],[-93.720551,76.267761000000007],[-93.697220000000016,76.26388500000013],[-93.78443900000002,76.253052000000139],[-93.954453000000001,76.257767000000001],[-93.956116000000009,76.257767000000001],[-93.958343999999954,76.257767000000001],[-94.097504000000015,76.259430000000123],[-94.118880999999988,76.261383000000023],[-94.134170999999867,76.264709000000096],[-94.141387999999949,76.269989000000123],[-94.151671999999905,76.274155000000064],[-94.168610000000001,76.278320000000065],[-94.212509000000011,76.280822999999998],[-94.470839999999953,76.281096999999932],[-94.641677999999956,76.293319999999994],[-94.780288999999982,76.288879000000065],[-94.789992999999981,76.283600000000092],[-94.803329000000019,76.278320000000065],[-94.838608000000022,76.268326000000059],[-95.029174999999952,76.236099000000024],[-95.354995999999915,76.234146000000123],[-95.376099000000011,76.234421000000111],[-95.386947999999961,76.235809000000017],[-95.388061999999934,76.283600000000092],[-95.374435000000005,76.297760000000039],[-95.366942999999935,76.301376000000062],[-95.357223999999974,76.302765000000079],[-95.343063000000029,76.300262000000089],[-95.31806899999998,76.290817000000061],[-95.279175000000009,76.281372000000147],[-95.258895999999993,76.282760999999994],[-95.118332000000009,76.298035000000027],[-95.092772999999909,76.302765000000079],[-95.075561999999877,76.307754999999929],[-95.069732999999928,76.313309000000118],[-95.066558999999984,76.319862000000001],[-95.058883999999978,76.324706999999933],[-95.010558999999944,76.331100000000106],[-94.983886999999982,76.332489000000066],[-94.958892999999989,76.332214000000079],[-94.915008999999884,76.329711999999972],[-94.866394000000014,76.325546000000088],[-94.84973100000002,76.323317999999972],[-94.84056099999998,76.319717000000082],[-94.849990999999875,76.31442300000009],[-94.862777999999878,76.309981999999991],[-94.861663999999962,76.306930999999963],[-94.843613000000005,76.303864000000033],[-94.828613000000018,76.306091000000094],[-94.808608999999933,76.311371000000008],[-94.802489999999977,76.315536000000009],[-94.80082699999997,76.321655000000021],[-94.814163000000008,76.329163000000051],[-94.834441999999967,76.334427000000005],[-94.894729999999925,76.341660000000047],[-94.965012000000002,76.347487999999942],[-95.132767000000001,76.361374000000126],[-95.274719000000005,76.372208000000001],[-95.299437999999952,76.372482000000105],[-95.326401000000033,76.37081900000004],[-95.331679999999949,76.365265000000022],[-95.341384999999946,76.359711000000004],[-95.388900999999976,76.351929000000041],[-95.399993999999992,76.353317000000004],[-95.447220000000016,76.365813999999943],[-95.645279000000016,76.384155000000135],[-95.668335000000013,76.386108000000092],[-95.715835999999911,76.392211999999915],[-95.737502999999947,76.393875000000037],[-95.851105000000018,76.40109300000006],[-95.995834000000002,76.436919999999986],[-96.081679999999892,76.478043000000127],[-96.106948999999986,76.494430999999963],[-96.104171999999949,76.5],[-96.099166999999909,76.505553999999961],[-96.09056099999998,76.510268999999994],[-96.065552000000025,76.521378000000084],[-96.052489999999921,76.524155000000007],[-95.997222999999963,76.519440000000145],[-95.944991999999957,76.518326000000002],[-95.806380999999931,76.516388000000063],[-95.778609999999958,76.518875000000094],[-95.694152999999972,76.545258000000103],[-95.680557000000022,76.550537000000077],[-95.657776000000013,76.561371000000122],[-95.593886999999938,76.593048000000067],[-95.584166999999979,76.598327999999981],[-95.587783999999999,76.603592000000106],[-95.599441999999954,76.605255000000056],[-95.619719999999973,76.606094000000041],[-95.638901000000033,76.604156000000046],[-95.660277999999948,76.599426000000051],[-95.696105999999986,76.584152000000131],[-95.695540999999992,76.580276000000083],[-95.696654999999964,76.574432000000058],[-95.712783999999999,76.568603999999937],[-95.759170999999981,76.553588999999988],[-95.780562999999916,76.548874000000126],[-95.992492999999968,76.54803499999997],[-96.016953000000001,76.549149],[-96.158614999999941,76.583327999999995],[-96.17860399999995,76.594147000000078],[-96.225280999999882,76.625809000000004],[-96.27027899999996,76.632751000000098],[-96.33944699999995,76.63220199999995],[-96.355835000000013,76.633041000000105],[-96.38137799999987,76.635818000000029],[-96.403335999999911,76.639709000000096],[-96.421386999999982,76.646102999999982],[-96.445830999999998,76.657211000000132],[-96.454178000000013,76.662490999999989],[-96.461394999999925,76.668593999999985],[-96.461120999999991,76.673599000000024],[-96.46444699999995,76.679703000000018],[-96.470275999999956,76.685532000000023],[-96.527785999999935,76.693038999999999],[-96.611938000000009,76.702484000000027],[-96.636123999999995,76.704436999999984],[-96.661666999999966,76.704712000000029],[-96.736938000000009,76.697205000000054],[-96.764175000000023,76.695526000000086],[-96.789718999999934,76.695816000000093],[-96.81639100000001,76.697478999999987],[-96.857772999999952,76.701935000000105],[-96.879990000000021,76.705826000000002],[-96.915832999999964,76.714432000000102],[-96.946654999999964,76.723602000000142],[-96.959166999999979,76.729155999999932],[-96.964447000000007,76.733322000000044],[-96.900283999999999,76.795258000000047],[-96.887221999999952,76.805542000000059],[-96.873885999999914,76.810806000000071],[-96.854995999999971,76.813034000000016],[-96.839721999999995,76.810257000000092],[-96.724716000000001,76.783324999999991],[-96.679717999999923,76.770264000000054],[-96.592498999999918,76.758881000000031],[-96.426102000000014,76.744705000000067],[-96.330291999999929,76.750274999999931],[-96.311935000000005,76.751389000000131],[-96.305556999999965,76.753875999999991],[-96.315551999999968,76.802475000000129],[-96.320557000000008,76.80664100000007],[-96.366942999999935,76.812758999999971],[-96.453612999999962,76.815262000000132],[-96.50111400000003,76.818054000000075],[-96.547226000000023,76.822769000000108],[-96.797500999999897,76.861374000000012],[-96.81361400000003,76.868042000000003],[-96.848891999999921,76.887496999999996],[-96.865829000000019,76.898041000000035],[-96.869155999999975,76.904160000000047],[-96.869445999999982,76.913879000000065],[-96.864166000000012,76.919708000000071],[-96.857772999999952,76.924987999999928],[-96.833617999999944,76.9327550000001],[-96.796386999999982,76.937484999999924],[-96.771941999999967,76.937759000000028],[-96.761123999999995,76.937759000000028],[-96.723891999999978,76.935256999999979],[-96.708054000000004,76.93331900000004],[-96.698607999999979,76.934143000000006],[-96.660827999999981,76.947204999999997],[-96.659163999999976,76.949142000000052],[-96.667769999999962,76.954436999999928],[-96.677779999999984,76.957764000000054],[-96.696945000000028,76.960541000000148],[-96.718886999999995,76.963043000000027],[-96.765288999999996,76.96527100000003],[-96.808333999999945,76.966094999999996],[-96.824447999999904,76.96775800000006],[-96.827788999999939,76.968872000000033],[-96.825561999999991,76.974426000000051],[-96.810271999999998,76.979156000000103],[-96.772034000000019,76.98101800000012],[-96.742034999999987,76.982208000000014],[-96.673324999999977,76.982208000000014],[-96.622771999999998,76.979980000000069],[-96.483611999999994,76.971100000000035],[-96.353881999999999,76.993042000000059],[-96.391113000000018,77.026931999999988],[-96.387787000000003,77.03054800000001],[-96.373321999999973,77.031937000000028],[-96.28472899999997,77.039428999999984],[-96.27305599999994,77.040267999999912],[-96.24499499999996,77.041931000000034],[-96.226105000000018,77.043045000000006],[-96.103057999999976,77.044708000000128],[-95.96665999999999,77.053040000000124],[-95.888061999999934,77.06109600000002],[-95.752501999999993,77.06860400000005],[-95.734726000000023,77.06860400000005],[-95.707503999999915,77.066940000000045],[-95.659728999999913,77.058868000000075]],[[-113.32888800000001,77.079987000000017],[-113.353882,77.077484000000084],[-113.40888999999999,77.078873000000044],[-113.45140099999992,77.081664999999987],[-113.49194299999999,77.085541000000035],[-113.49749799999989,77.088318000000129],[-113.49027999999998,77.092484000000013],[-113.34472700000003,77.127762000000018],[-113.33528099999995,77.126083000000051],[-113.31471299999998,77.11775200000011],[-113.29332699999986,77.107483000000116],[-113.28694200000001,77.09637500000008],[-113.29110700000001,77.08998100000008],[-113.30471799999998,77.085266000000047],[-113.32888800000001,77.079987000000017]],[[-113.77861000000001,77.104155999999989],[-113.80695299999991,77.104155999999989],[-113.85333300000002,77.10554499999995],[-113.88054699999992,77.108032000000037],[-113.90888999999999,77.113037000000077],[-113.92443800000001,77.118591000000094],[-113.93138099999999,77.1244200000001],[-113.93138099999999,77.129699999999957],[-113.92722300000003,77.135268999999994],[-113.92083700000001,77.141098],[-113.90110800000002,77.146378000000027],[-113.88082900000001,77.149719000000061],[-113.859444,77.151382000000012],[-113.798607,77.152481000000023],[-113.77417000000003,77.151657000000057],[-113.72250399999996,77.148041000000148],[-113.69915800000001,77.144714000000022],[-113.67555199999993,77.140274000000034],[-113.66443599999997,77.134720000000016],[-113.65778399999999,77.129149999999925],[-113.66416900000002,77.123032000000023],[-113.67916899999989,77.116928000000144],[-113.703056,77.111649],[-113.72778299999993,77.108032000000037],[-113.75306699999993,77.10554499999995],[-113.77861000000001,77.104155999999989]],[[-104.25250199999999,77.072769000000051],[-104.30277999999998,77.072220000000073],[-104.35417200000001,77.073883000000023],[-104.37721299999998,77.076660000000118],[-104.40222199999994,77.081100000000106],[-104.421944,77.087203999999986],[-104.43167099999994,77.098877000000016],[-104.42639200000002,77.116379000000052],[-104.42027300000001,77.122208000000057],[-104.40556299999997,77.127762000000018],[-104.31973299999999,77.151657000000057],[-104.30082700000003,77.15525800000006],[-104.27333099999998,77.159714000000008],[-104.18360899999993,77.167205999999965],[-104.11389199999996,77.166091999999992],[-104.07140399999997,77.16137700000013],[-104.06139400000001,77.158875000000023],[-104.031113,77.15109300000006],[-104.01972999999998,77.146103000000039],[-104.00110599999999,77.135818000000086],[-103.99889399999995,77.123870999999951],[-104.00945300000001,77.118042000000116],[-104.02416999999991,77.112487999999985],[-104.04778299999992,77.106934000000138],[-104.15028399999994,77.08638000000002],[-104.196663,77.077484000000084],[-104.25250199999999,77.072769000000051]],[[-95.22444200000001,77.167205999999965],[-95.245270000000005,77.164153999999996],[-95.291381999999999,77.164992999999981],[-95.314437999999996,77.166656000000103],[-95.362777999999935,77.171920999999998],[-95.419998000000021,77.181931000000077],[-95.572509999999852,77.213042999999971],[-95.613051999999925,77.221924000000115],[-95.634170999999924,77.228043000000127],[-95.638901000000033,77.232208000000128],[-95.639998999999932,77.237761999999975],[-95.636672999999973,77.239150999999936],[-95.631377999999927,77.239700000000084],[-95.608046999999885,77.240814000000057],[-95.511123999999995,77.243042000000003],[-95.438048999999978,77.24443100000002],[-95.387512000000015,77.240814000000057],[-95.37222300000002,77.238037000000134],[-95.356110000000001,77.236374000000069],[-95.31361400000003,77.229156000000046],[-95.244155999999919,77.213882000000126],[-95.216399999999965,77.201660000000004],[-95.206664999999987,77.189147999999989],[-95.206954999999994,77.177764999999965],[-95.214447000000007,77.172485000000108],[-95.22444200000001,77.167205999999965]],[[-90.933059999999955,77.254440000000045],[-90.909164000000033,77.251663000000121],[-90.815001999999993,77.240265000000136],[-90.772232000000031,77.231368999999972],[-90.736388999999974,77.220824999999934],[-90.718338000000017,77.207213999999965],[-90.713622999999984,77.200821000000019],[-90.724166999999909,77.183318999999983],[-90.731948999999986,77.177764999999965],[-90.779175000000009,77.156647000000078],[-90.811385999999914,77.14665199999996],[-90.83555599999994,77.142211999999972],[-90.868331999999953,77.138321000000076],[-90.899993999999992,77.136932000000058],[-90.978606999999897,77.137771999999927],[-91.049728000000016,77.145537999999988],[-91.18472300000002,77.163605000000075],[-91.221664000000033,77.170258000000047],[-91.238892000000021,77.174423000000047],[-91.262512000000015,77.18414300000012],[-91.286391999999921,77.196640000000116],[-91.295546999999999,77.203323000000069],[-91.297501000000011,77.207213999999965],[-91.299164000000019,77.217758000000003],[-91.277221999999995,77.227478000000133],[-91.24749799999995,77.235809000000017],[-91.189712999999983,77.24803200000008],[-91.162216000000001,77.251389000000017],[-91.107223999999917,77.254715000000033],[-91.084732000000031,77.254440000000045],[-91.072234999999921,77.253326000000072],[-91.057219999999973,77.254440000000045],[-90.987503000000004,77.254990000000078],[-90.933059999999955,77.254440000000045]],[[-116.35109699999998,77.539154000000053],[-116.20333900000003,77.519989000000066],[-116.09056099999992,77.491089000000045],[-116.073624,77.485535000000027],[-115.88027999999991,77.433319000000097],[-115.52055399999995,77.364426000000037],[-115.49526999999989,77.359420999999998],[-115.458054,77.348602000000085],[-115.44611399999985,77.343048000000124],[-115.389183,77.312194999999917],[-115.390289,77.306366000000082],[-115.54332699999986,77.265548999999908],[-115.59110999999996,77.259995000000117],[-115.61694299999999,77.258331000000112],[-115.66915899999992,77.256942999999978],[-115.69499199999996,77.255264000000011],[-115.77250700000002,77.247757000000036],[-115.81973299999999,77.237488000000042],[-115.83084099999991,77.233322000000101],[-115.85888699999998,77.220824999999934],[-115.87777699999992,77.215271000000143],[-115.94695299999989,77.20887799999997],[-116.112503,77.193863000000022],[-116.13806199999999,77.192200000000128],[-116.19055200000003,77.191650000000095],[-116.21777299999997,77.192749000000049],[-116.26917300000002,77.190261999999962],[-116.28056300000003,77.183594000000028],[-116.31416300000001,77.144440000000088],[-116.31973299999999,77.11775200000011],[-116.28028899999998,77.067215000000033],[-116.26917300000002,77.055817000000047],[-116.24249299999991,77.044144000000017],[-116.17360699999989,77.027206000000092],[-116.06388900000002,77.007492000000013],[-116.00583599999999,76.997482000000105],[-115.95028699999995,76.991363999999976],[-115.860817,76.979156000000103],[-115.75499699999995,76.960815000000082],[-115.73889199999996,76.955261000000064],[-115.73137700000001,76.949707000000103],[-115.72833300000002,76.943863000000079],[-115.729446,76.938034000000073],[-115.73222399999997,76.931656000000089],[-115.74610899999999,76.925262000000089],[-115.80695300000002,76.90637200000009],[-115.829453,76.900818000000129],[-115.85333299999996,76.897217000000069],[-115.90334300000001,76.893874999999923],[-115.92859599999997,76.893050999999957],[-115.98194899999993,76.895538000000045],[-116.06388900000002,76.902771000000087],[-116.11501299999992,76.909149000000014],[-116.25389100000001,76.932480000000055],[-116.306107,76.936096000000134],[-116.32721699999996,76.935532000000023],[-116.35166899999996,76.9327550000001],[-116.36527999999993,76.926376000000062],[-116.36721799999998,76.915543000000071],[-116.36332699999997,76.90887500000008],[-116.35555999999985,76.903320000000008],[-116.34612299999992,76.898331000000042],[-116.32972699999999,76.89276099999995],[-116.18360899999993,76.845825000000104],[-116.16388699999999,76.841660000000104],[-116.10749800000002,76.833602999999982],[-116.031113,76.820267000000001],[-116.00029000000001,76.811371000000065],[-115.89472999999992,76.703323000000012],[-115.89138800000001,76.697478999999987],[-115.89666699999998,76.691649999999981],[-116.07140400000003,76.625809000000004],[-116.09306299999992,76.619141000000013],[-116.11582900000002,76.61442599999998],[-116.16055299999999,76.611099000000081],[-116.23194899999999,76.603043000000014],[-116.25446299999999,76.598602000000085],[-116.32250999999997,76.581100000000049],[-116.37351999999993,76.581802000000039],[-116.73277300000001,76.572495000000004],[-116.75890399999992,76.56999200000007],[-116.97112299999998,76.548598999999967],[-116.99471999999992,76.545822000000044],[-117.01750199999992,76.542205999999965],[-117.03999299999992,76.537490999999932],[-117.05387899999999,76.533051000000114],[-117.06861900000001,76.526093000000117],[-117.07556199999993,76.520538000000045],[-117.07749899999999,76.514160000000061],[-117.07640099999998,76.508881000000088],[-117.07277699999997,76.503052000000082],[-117.05695299999996,76.491652999999985],[-117.04360999999989,76.48692299999999],[-117.01750199999992,76.482483000000116],[-117.00389099999995,76.477478000000076],[-116.98361199999999,76.454987000000074],[-116.94082599999996,76.386932000000058],[-116.93916299999995,76.380539000000113],[-116.93582200000003,76.351929000000041],[-116.93859900000001,76.34637500000008],[-117.09555099999994,76.295257999999933],[-117.13971700000002,76.286925999999994],[-117.31973299999999,76.257767000000001],[-117.345551,76.256377999999984],[-117.36888099999999,76.256943000000035],[-117.52390300000002,76.263611000000026],[-117.5750119999999,76.26887499999998],[-117.60305799999998,76.27388000000002],[-117.62304699999999,76.278870000000097],[-117.639183,76.28414900000007],[-117.65778399999999,76.293319999999994],[-117.64917000000003,76.305542000000003],[-117.64890299999996,76.311371000000008],[-117.65527299999997,76.317490000000021],[-117.67304999999993,76.322220000000073],[-117.69915800000001,76.324158000000011],[-117.72416699999997,76.324432000000115],[-117.87777699999998,76.341933999999981],[-117.889183,76.355819999999937],[-117.90139799999997,76.367203000000131],[-117.90695199999993,76.372208000000001],[-117.99722299999996,76.396941999999967],[-118.02139299999999,76.401932000000045],[-118.04444899999999,76.404984000000127],[-118.05999800000001,76.409149000000127],[-118.04750100000001,76.441650000000038],[-118.02749599999999,76.484711000000061],[-117.97332799999998,76.596375000000023],[-117.92832899999996,76.676651000000106],[-117.91915899999992,76.68803400000013],[-117.90666199999993,76.694137999999953],[-117.883331,76.700546000000088],[-117.86444099999994,76.704163000000051],[-117.84805299999999,76.708328000000051],[-117.81331599999999,76.719436999999971],[-117.79638699999998,76.725815000000125],[-117.78806299999997,76.732208000000071],[-117.73889200000002,76.772217000000012],[-117.73444399999994,76.778320000000122],[-117.73860200000001,76.784149000000127],[-117.79888899999997,76.817764000000011],[-117.81667299999998,76.821380999999974],[-117.84221600000001,76.82388300000008],[-117.86665299999999,76.822220000000129],[-117.88806199999999,76.818878000000041],[-117.90499899999992,76.812195000000031],[-117.91777000000002,76.799988000000042],[-117.92610200000001,76.788040000000024],[-117.96056399999998,76.769989000000066],[-118.00583599999993,76.761383000000137],[-118.02971600000001,76.758606000000043],[-118.08222999999998,76.756943000000092],[-118.10611,76.75749200000007],[-118.15695199999999,76.76249700000011],[-118.21362299999998,76.769150000000081],[-118.29361,76.773041000000148],[-118.319458,76.773041000000148],[-118.33750900000001,76.768326000000116],[-118.49500299999994,76.712203999999929],[-118.47471599999994,76.679703000000018],[-118.45973199999997,76.673874000000012],[-118.42887899999999,76.663879000000122],[-118.40306099999998,76.657760999999994],[-118.35804699999989,76.64888000000002],[-118.34137699999997,76.643599999999992],[-118.33473199999992,76.637497000000053],[-118.316101,76.574707000000103],[-118.50279199999994,76.509720000000073],[-118.52390299999996,76.503876000000048],[-118.54611199999999,76.5],[-118.57084699999996,76.499145999999996],[-118.59694699999989,76.5],[-118.62361099999993,76.501938000000109],[-118.65167200000002,76.505553999999961],[-118.67804699999994,76.50999500000006],[-118.70916699999998,76.519989000000066],[-118.71333299999998,76.525818000000129],[-118.71362299999998,76.531662000000097],[-118.72222899999991,76.537201000000096],[-118.73473399999995,76.542480000000069],[-118.76139799999999,76.546936000000017],[-118.81471299999998,76.553040000000067],[-118.84166700000003,76.554977000000065],[-118.94415299999997,76.518051000000128],[-118.96806300000003,76.505264000000125],[-118.97582999999992,76.498871000000008],[-118.97609699999998,76.496368000000018],[-118.97250399999996,76.491652999999985],[-118.96777299999997,76.488312000000121],[-118.95527600000003,76.483047000000056],[-118.93110699999994,76.479155999999989],[-118.82195300000001,76.471374999999966],[-118.68195300000002,76.445251000000098],[-118.64862099999999,76.428863999999919],[-118.612503,76.400269000000094],[-118.59416199999993,76.383881000000031],[-118.56610099999995,76.343048000000124],[-118.567497,76.336655000000007],[-118.58168000000001,76.324706999999933],[-118.62554899999998,76.294433999999967],[-118.63751200000002,76.288040000000137],[-118.65556299999997,76.28414900000007],[-118.67916899999994,76.282211000000132],[-118.70556599999992,76.281661999999983],[-118.78083799999996,76.282486000000119],[-118.82833900000003,76.281937000000028],[-118.87666299999989,76.27748100000008],[-118.89584400000001,76.272217000000126],[-118.91139199999992,76.265548999999965],[-118.91915899999998,76.259430000000123],[-118.92443799999995,76.252776999999924],[-118.942207,76.210541000000148],[-118.93776699999995,76.204711999999915],[-118.92331699999994,76.194138000000066],[-118.91278099999994,76.188034000000016],[-118.90471600000001,76.169144000000074],[-118.95527600000003,76.132477000000108],[-118.96501199999994,76.126648000000102],[-119.07584399999996,76.083328000000108],[-119.10109699999998,76.084152000000074],[-119.12470999999999,76.088042999999971],[-119.22972099999993,76.107208000000071],[-119.24526999999995,76.111374000000012],[-119.26000999999997,76.117203000000018],[-119.28250099999997,76.127472000000068],[-119.29943800000001,76.138596000000121],[-119.30832699999996,76.149994000000106],[-119.31054699999999,76.155258000000117],[-119.30583200000001,76.167755000000113],[-119.30082699999997,76.174423000000047],[-119.29499799999996,76.180267000000072],[-119.29527300000001,76.186096000000077],[-119.30166600000001,76.191360000000088],[-119.36916399999996,76.229706000000078],[-119.54915599999998,76.324158000000011],[-119.5864029999999,76.318603999999993],[-119.65499899999992,76.303040000000067],[-119.67527799999993,76.264160000000118],[-119.67500299999995,76.245818999999926],[-119.64555399999995,76.230545000000063],[-119.59445199999999,76.203049000000021],[-119.58583099999998,76.197479000000101],[-119.57277699999992,76.186371000000122],[-119.56806899999987,76.180542000000116],[-119.56582600000002,76.175262000000032],[-119.56696299999999,76.168869000000086],[-119.57277699999992,76.16304000000008],[-119.64334099999996,76.112487999999985],[-119.74527,76.116652999999985],[-119.76999699999993,76.116379000000052],[-119.79305999999991,76.114426000000094],[-119.80499299999997,76.108871000000022],[-119.79723399999995,76.104155999999989],[-119.7727809999999,76.099425999999937],[-119.74416400000001,76.097487999999998],[-119.64723200000003,76.081664999999987],[-119.62666300000001,76.076660000000118],[-119.50389100000001,76.040817000000061],[-119.49137899999999,76.035538000000088],[-119.47833299999996,76.024155000000121],[-119.47389199999998,76.018599999999992],[-119.47222899999997,76.000824000000023],[-119.47609699999998,75.982483000000059],[-119.48110999999989,75.970825000000048],[-119.48916599999995,75.965546000000018],[-119.50974299999996,75.960540999999978],[-119.53555299999994,75.962494000000106],[-119.54638699999998,75.968323000000112],[-119.56111099999998,75.97886699999998],[-119.57195299999995,75.984985000000108],[-119.58583099999998,75.989699999999971],[-119.612503,75.992477000000065],[-119.63694800000002,75.992203000000131],[-119.64890300000002,75.986649000000114],[-119.699997,75.94859300000013],[-119.70333900000003,75.942749000000106],[-119.6875,75.938309000000118],[-119.612503,75.910263000000043],[-119.81082199999997,75.86943100000002],[-119.870003,75.857483000000002],[-119.93554699999993,75.848328000000095],[-119.98000300000001,75.843323000000055],[-120.02583300000003,75.839980999999966],[-120.04915599999987,75.838882000000126],[-120.07640100000003,75.867203000000075],[-120.08500700000002,75.872757000000036],[-120.11416600000001,75.888321000000133],[-120.12805199999997,75.893051000000014],[-120.14916999999997,75.896378000000141],[-120.16639700000002,75.892487000000074],[-120.18028299999997,75.879974000000004],[-120.18331899999993,75.873871000000065],[-120.19722000000002,75.861374000000069],[-120.21501199999994,75.848602000000028],[-120.22582999999992,75.842209000000082],[-120.26972999999992,75.821930000000123],[-120.28888699999987,75.816085999999927],[-120.30915800000002,75.811096000000077],[-120.33222999999998,75.807480000000055],[-120.35555999999997,75.806366000000025],[-120.37805200000003,75.80664100000007],[-120.40387699999991,75.808318999999983],[-120.43028300000003,75.811096000000077],[-120.45445299999994,75.81581100000011],[-120.46694899999994,75.821105999999986],[-120.47582999999997,75.826660000000004],[-120.48528299999998,75.837769000000094],[-120.4886019999999,75.844147000000021],[-120.48972300000003,75.849991000000045],[-120.48832699999997,75.855545000000063],[-120.46305799999999,75.916382000000056],[-120.46000700000002,75.922484999999995],[-120.44860799999987,75.935532000000023],[-120.406113,75.954987000000017],[-120.40583800000002,75.97137500000008],[-120.43499799999989,76.003052000000025],[-120.45889299999999,76.011658000000125],[-120.46749899999998,76.012207000000046],[-120.53333299999991,76.003052000000025],[-120.56054699999999,75.991653000000099],[-120.56331599999993,75.985535000000141],[-120.57417299999997,75.979156000000103],[-120.59388699999994,75.978043000000014],[-120.61361699999998,75.981934000000081],[-120.64306599999986,75.992477000000065],[-120.696663,76.013884999999959],[-120.70722999999998,76.018875000000037],[-120.71611000000001,76.024429000000055],[-120.729446,76.039428999999984],[-120.75167799999997,76.099425999999937],[-120.75110599999999,76.105819999999994],[-120.74833699999999,76.111922999999933],[-120.74305700000002,76.117751999999939],[-120.73222399999997,76.124145999999996],[-120.71193699999998,76.129149999999981],[-120.72749299999992,76.158600000000035],[-120.85722399999986,76.196639999999945],[-120.88362100000001,76.198318000000086],[-120.90249599999999,76.196365000000128],[-120.95639,76.177765000000022],[-120.96806300000003,76.172211000000004],[-121.00890400000003,76.144149999999911],[-121.01251199999996,76.139160000000061],[-121.016953,76.121094000000085],[-121.02528399999989,76.073318000000029],[-121.02278100000001,76.059143000000063],[-120.99328600000001,76.026817000000108],[-120.97961399999997,76.019653000000119],[-120.970123,76.013489000000106],[-120.93195300000002,75.959990999999945],[-120.93306000000001,75.956940000000145],[-120.94583099999994,75.94859300000013],[-120.98082699999998,75.941649999999981],[-120.99944299999999,75.939697000000024],[-121.01445000000001,75.942749000000106],[-121.01722699999999,75.94802900000002],[-121.01112399999988,75.970825000000048],[-121.00055699999996,75.977203000000145],[-120.98610699999995,75.984145999999953],[-121.00761399999999,75.988982999999962],[-121.01527399999998,75.992149000000097],[-121.030441,75.992477000000065],[-121.09277299999997,75.993317000000104],[-121.11389199999996,75.991653000000099],[-121.25945299999995,75.964432000000045],[-121.26583900000003,75.958328000000051],[-121.271118,75.946091000000081],[-121.27887699999985,75.927765000000079],[-121.34861799999993,75.928040000000067],[-121.423317,75.933868000000018],[-121.43639400000001,75.939148000000046],[-121.422775,75.946465000000103],[-121.41665599999988,75.953049000000078],[-121.42415599999993,75.956649999999911],[-121.479446,75.976379000000009],[-121.58306899999997,76.003601000000117],[-121.59500100000002,76.005554000000075],[-121.83473200000003,76.034424000000115],[-122.13417099999998,76.036377000000073],[-122.14499699999999,76.030823000000055],[-122.14472999999992,75.996932999999956],[-122.16944899999999,75.978043000000014],[-122.33583099999998,75.942474000000118],[-122.37666300000001,75.933868000000018],[-122.41639700000002,75.928589000000045],[-122.442207,75.927475000000072],[-122.48916599999995,75.927200000000028],[-122.51666299999994,75.928314],[-122.56360599999999,75.931931000000134],[-122.67610200000001,75.951660000000061],[-122.69638099999997,75.955551000000128],[-122.72250400000001,75.96887200000009],[-122.728882,75.973037999999974],[-122.66915899999998,75.976929000000041],[-122.64943699999998,75.982208000000014],[-122.59111000000001,76.001663000000008],[-122.57640100000003,76.007492000000013],[-122.5625,76.014434999999992],[-122.47556299999997,76.104431000000034],[-122.47112300000003,76.110260000000039],[-122.47193899999996,76.114990000000034],[-122.48554999999993,76.1202550000001],[-122.49833699999994,76.120529000000033],[-122.60134900000003,76.115097000000048],[-122.62222300000002,76.111374000000012],[-122.67832900000002,76.111374000000012],[-122.69999699999994,76.112198000000149],[-122.70445299999994,76.114426000000094],[-122.69554099999993,76.117751999999939],[-122.58721899999995,76.134155000000021],[-122.50195299999996,76.136383000000137],[-122.48999000000003,76.141098],[-122.57417299999992,76.166091999999992],[-122.595551,76.170822000000044],[-122.62027,76.174423000000047],[-122.64666699999998,76.175812000000064],[-122.67027300000001,76.174423000000047],[-122.69360399999999,76.17053199999998],[-122.73361199999994,76.162491000000102],[-122.84277299999997,76.131088000000091],[-122.885559,76.104431000000034],[-122.90194699999995,76.098038000000031],[-122.92138699999987,76.092758000000003],[-123.01139799999993,76.083328000000108],[-123.037781,76.084717000000069],[-122.97917199999995,76.125809000000118],[-122.84861799999999,76.208878000000027],[-122.72112299999998,76.231369000000029],[-122.636124,76.264709000000096],[-122.63166799999999,76.270538000000101],[-122.63751200000002,76.288040000000137],[-122.64527899999996,76.299712999999997],[-122.63249199999996,76.329987000000017],[-122.62638900000002,76.336380000000133],[-122.61776700000001,76.342208999999968],[-122.59889199999998,76.348328000000038],[-122.57861300000002,76.353591999999992],[-122.39890300000002,76.396941999999967],[-122.30943300000001,76.408875000000023],[-122.01471699999996,76.432479999999998],[-121.826683,76.422760000000096],[-121.78195199999999,76.420258000000047],[-121.73805199999998,76.421097000000145],[-121.54998799999993,76.434708000000114],[-121.53307299999994,76.437195000000031],[-121.51445000000001,76.444138000000009],[-121.421944,76.493590999999924],[-121.31220999999994,76.572495000000004],[-121.30695300000002,76.578323000000125],[-121.31388899999996,76.589705999999978],[-121.30915800000002,76.593872000000033],[-121.21250899999995,76.649719000000005],[-121.118607,76.673309000000017],[-121.10109699999992,76.668320000000051],[-121.079453,76.668320000000051],[-121.05666399999996,76.671371000000022],[-120.923317,76.689972000000068],[-120.900284,76.693313999999987],[-120.88417099999998,76.698868000000004],[-120.86193800000001,76.711929000000112],[-120.84777799999989,76.724700999999925],[-120.83249699999993,76.731369000000086],[-120.81220999999994,76.737198000000092],[-120.76611299999996,76.743591000000094],[-120.66915899999998,76.751099000000067],[-120.64083899999997,76.748596000000134],[-120.62581599999999,76.746367999999961],[-120.60417200000001,76.746367999999961],[-120.58112299999999,76.7494200000001],[-120.40167200000002,76.797211000000004],[-120.38194299999992,76.804153000000042],[-120.36776700000001,76.810257000000092],[-120.36609599999997,76.813309000000004],[-120.36527999999993,76.836105000000032],[-120.09137699999997,77.003051999999968],[-120.06916799999999,77.008040999999935],[-120.03888699999999,77.013321000000019],[-120.02278100000001,77.015273999999977],[-119.99722300000002,77.01638800000012],[-119.97693600000002,77.013321000000019],[-119.96112099999993,77.009995000000004],[-119.94999699999994,77.012497000000053],[-119.92027299999995,77.023605000000032],[-119.83944700000001,77.05693100000002],[-119.83167999999995,77.06303400000013],[-119.83249699999999,77.069153000000142],[-119.83583099999987,77.075271999999984],[-119.83721899999995,77.079712000000029],[-119.83556399999998,77.085266000000047],[-119.825287,77.091095000000053],[-119.8125,77.096649000000014],[-119.77639799999992,77.106094000000098],[-119.60056299999991,77.145827999999995],[-119.43331899999998,77.173599000000081],[-119.41082799999998,77.178588999999931],[-119.389183,77.184417999999994],[-119.360817,77.203323000000069],[-119.354446,77.209152000000131],[-119.346947,77.221374999999966],[-119.34583999999995,77.227767999999969],[-119.33389299999993,77.239975000000072],[-119.31582599999996,77.258041000000105],[-119.29583700000001,77.276657000000114],[-119.26834099999996,77.28915400000011],[-119.25306699999999,77.295258000000103],[-119.22222899999991,77.306366000000082],[-119.20111099999991,77.313034000000073],[-119.15334299999995,77.325821000000076],[-119.11444099999994,77.327484000000027],[-119.08666999999997,77.326660000000061],[-119.00110599999988,77.321106000000043],[-118.94138299999992,77.319717000000082],[-118.91694599999994,77.32249500000006],[-118.89389,77.327484000000027],[-118.87000299999994,77.333878000000084],[-118.75723299999999,77.352478000000019],[-118.73249800000002,77.35554500000012],[-118.65110799999997,77.360535000000141],[-118.44972199999995,77.358871000000136],[-118.224716,77.356094000000041],[-118.19721999999996,77.354980000000069],[-118.16583300000002,77.355255000000056],[-118.14111299999996,77.35803199999998],[-118.12805200000003,77.364426000000037],[-118.12721299999998,77.369431000000077],[-118.125,77.372482000000105],[-118.10694899999993,77.378036000000122],[-118.08750899999995,77.379150000000095],[-117.91111799999993,77.386932000000058],[-117.86721799999992,77.388596000000064],[-117.85056299999991,77.384430000000123],[-117.781113,77.36303700000002],[-117.76806599999998,77.357758000000047],[-117.756958,77.351654000000053],[-117.75083899999998,77.346648999999957],[-117.73860200000001,77.341933999999924],[-117.72444200000001,77.338043000000084],[-117.61193800000001,77.327774000000034],[-117.45084400000002,77.312194999999917],[-117.27639799999997,77.28915400000011],[-117.02306399999998,77.290817000000004],[-117.01478600000002,77.296700000000044],[-117.01711999999992,77.300208999999938],[-117.02749599999993,77.310256999999979],[-117.06082199999997,77.326660000000061],[-117.10555999999997,77.339981000000023],[-117.11582900000002,77.34165999999999],[-117.11805699999996,77.338593000000117],[-117.1324919999999,77.333328000000051],[-117.15416699999997,77.332489000000066],[-117.16999800000002,77.335815000000082],[-117.18195300000002,77.34027100000003],[-117.18167099999999,77.346375000000023],[-117.17666600000001,77.352203000000145],[-117.15888999999987,77.358871000000136],[-117.14277600000003,77.361374000000126],[-117.11945300000002,77.359985000000108],[-117.06082199999997,77.353317000000118],[-117.00749999999994,77.343039999999974],[-116.94666299999994,77.329436999999984],[-116.87638900000002,77.318054000000132],[-116.848343,77.315810999999997],[-116.79583700000001,77.317490000000021],[-116.77887699999997,77.319153000000085],[-116.65167199999996,77.377761999999962],[-116.64835399999998,77.383330999999998],[-116.65167199999996,77.388046000000031],[-116.66278099999994,77.391662999999994],[-116.74137899999999,77.395263999999997],[-116.87082699999996,77.400818000000015],[-116.89917000000003,77.399428999999998],[-116.97582999999997,77.393326000000059],[-116.99471999999992,77.394440000000031],[-117.01112399999994,77.398880000000077],[-117.15306099999992,77.451660000000118],[-117.14998599999996,77.457214000000135],[-117.13890100000003,77.460541000000035],[-117.08306899999997,77.474425999999937],[-117.06667299999998,77.476929000000098],[-117.06139399999989,77.476089000000059],[-117.03833799999995,77.471001000000058],[-116.991669,77.466660000000104],[-116.91972399999997,77.470535000000041],[-116.89444700000001,77.473312000000135],[-116.78527799999995,77.499145999999996],[-116.75723299999993,77.511658000000011],[-116.76944699999996,77.516388000000006],[-116.85109699999998,77.516663000000051],[-116.87917299999987,77.517761000000121],[-116.9058379999999,77.520264000000111],[-116.926941,77.524704000000099],[-116.92054699999994,77.528594999999996],[-116.900284,77.532211000000018],[-116.875,77.534988000000112],[-116.83306900000002,77.533600000000035],[-116.75418100000002,77.534424000000001],[-116.64750699999996,77.537766000000147],[-116.58583099999998,77.540543000000014],[-116.53611799999993,77.544434000000081],[-116.48777799999999,77.550262000000032],[-116.35109699999998,77.539154000000053]],[[-85.285278000000005,77.587494000000049],[-85.259734999999978,77.586655000000121],[-85.235274999999945,77.586655000000121],[-85.107223999999974,77.581099999999992],[-85.011123999999938,77.57388300000008],[-84.995270000000005,77.569443000000092],[-84.822509999999966,77.505264000000125],[-84.813889000000017,77.497208000000057],[-84.824447999999961,77.491927999999973],[-84.843062999999916,77.487198000000149],[-84.934433000000013,77.470260999999937],[-84.960830999999985,77.466385000000059],[-85.027221999999995,77.459717000000069],[-85.095551,77.454437000000041],[-85.126937999999939,77.453048999999908],[-85.153609999999958,77.454437000000041],[-85.168335000000013,77.456939999999975],[-85.178604000000007,77.464157000000114],[-85.172500999999897,77.473601999999971],[-85.159164000000033,77.48414600000001],[-85.144729999999925,77.489426000000094],[-85.138610999999969,77.494980000000112],[-85.140839000000028,77.501663000000065],[-85.152785999999992,77.507767000000115],[-85.170273000000009,77.511658000000011],[-85.248885999999914,77.527481000000023],[-85.270843999999954,77.529984000000013],[-85.319732999999928,77.532211000000018],[-85.344161999999983,77.532211000000018],[-85.39916999999997,77.53387500000008],[-85.538329999999974,77.539978000000019],[-85.535552999999936,77.543869000000086],[-85.352218999999934,77.582764000000054],[-85.31138599999997,77.586655000000121],[-85.285278000000005,77.587494000000049]],[[-90.603058000000033,77.628311000000053],[-90.521118000000001,77.626083000000108],[-90.492492999999968,77.626083000000108],[-90.438598999999954,77.630538999999999],[-90.414443999999946,77.631087999999977],[-90.388061999999877,77.629425000000026],[-90.339172000000019,77.623871000000065],[-90.242492999999854,77.612488000000042],[-90.219161999999983,77.608871000000079],[-90.208892999999932,77.603042999999957],[-90.210007000000019,77.597488000000055],[-90.206664999999987,77.59165999999999],[-90.196654999999964,77.587204000000042],[-90.177779999999927,77.58248900000001],[-90.059722999999963,77.566375999999991],[-89.937209999999993,77.53276100000005],[-89.91722099999987,77.527205999999978],[-89.841109999999958,77.504166000000055],[-89.806655999999919,77.492477000000122],[-89.753615999999965,77.473038000000031],[-89.719161999999983,77.458328000000108],[-89.636123999999995,77.339157000000057],[-89.640288999999996,77.333328000000051],[-89.67471299999994,77.310256999999979],[-89.70777899999996,77.294144000000131],[-89.849730999999963,77.25],[-89.882767000000001,77.239975000000072],[-89.919998000000021,77.230270000000019],[-90,77.213814000000013],[-90.009170999999981,77.211928999999998],[-90.088897999999915,77.199707000000046],[-90.118057000000022,77.198593000000074],[-90.129165999999998,77.200546000000031],[-90.259170999999924,77.201096000000064],[-90.366942999999992,77.197754000000089],[-90.416655999999989,77.213042999999971],[-90.683318999999926,77.271927000000062],[-90.704726999999934,77.276382000000069],[-90.727218999999934,77.279984000000013],[-90.843063000000029,77.292754999999943],[-90.90972899999997,77.303040000000067],[-90.946655000000021,77.309418000000051],[-91.146666999999923,77.362198000000092],[-91.18249499999996,77.386932000000058],[-91.187209999999993,77.390273999999977],[-91.208892999999932,77.414993000000095],[-91.206954999999994,77.568604000000107],[-91.184433000000013,77.608597000000145],[-91.173614999999927,77.613036999999963],[-91.15834000000001,77.617203000000075],[-91.10943599999996,77.624985000000038],[-90.906386999999938,77.653046000000131],[-90.880828999999949,77.654434000000037],[-90.826400999999976,77.654434000000037],[-90.801666000000012,77.651657000000114],[-90.727492999999981,77.642212000000029],[-90.683608999999933,77.633331000000112],[-90.603058000000033,77.628311000000053]],[[-105.01027699999986,77.408034999999927],[-104.98665599999998,77.404434000000094],[-104.96193700000003,77.404434000000094],[-104.90805099999994,77.406937000000028],[-104.82584400000002,77.413605000000018],[-104.77166699999998,77.416656000000046],[-104.74109599999997,77.414428999999984],[-104.73277300000001,77.411377000000073],[-104.53832999999997,77.338318000000072],[-104.48889199999996,77.318603999999993],[-104.39555399999995,77.276382000000069],[-104.38834400000002,77.271378000000141],[-104.38137799999998,77.264435000000105],[-104.37998999999996,77.261931999999945],[-104.36554699999999,77.230270000000019],[-104.36749299999997,77.224425999999994],[-104.40499899999992,77.172485000000108],[-104.416946,77.161926000000051],[-104.43804899999998,77.150543000000027],[-104.47250400000001,77.13749700000011],[-104.5,77.133040999999992],[-104.52250699999996,77.130539000000113],[-104.74027999999993,77.108597000000088],[-104.79028299999999,77.108871000000022],[-104.83249699999993,77.113312000000121],[-104.85333300000002,77.117477000000122],[-104.86916400000001,77.123596000000134],[-104.883331,77.135543999999982],[-104.89250199999992,77.141936999999928],[-104.906387,77.147491000000116],[-104.92250099999995,77.152481000000023],[-104.945267,77.157211000000018],[-104.993607,77.164992999999981],[-105.04444899999993,77.171371000000136],[-105.09583999999995,77.176085999999998],[-105.11971999999997,77.176650999999993],[-105.13751200000002,77.176085999999998],[-105.15167200000002,77.171371000000136],[-105.24694799999997,77.193863000000022],[-105.40888999999999,77.281661999999983],[-105.41722099999998,77.284714000000065],[-105.45527599999997,77.291930999999977],[-105.48111,77.294983000000116],[-105.50666799999993,77.299149],[-105.531677,77.30525200000011],[-105.55027799999999,77.311645999999996],[-105.57195300000001,77.323317999999915],[-105.67916899999994,77.447479000000044],[-105.691101,77.497208000000057],[-105.83444199999997,77.610260000000096],[-105.85833700000001,77.626923000000147],[-105.878601,77.639709000000096],[-105.88890100000003,77.645263999999997],[-105.93083200000001,77.663040000000137],[-105.94776899999994,77.668868999999972],[-105.98000299999995,77.679427999999973],[-106.01471700000002,77.688583000000051],[-106.08361799999989,77.71026599999999],[-106.09166699999997,77.71527100000003],[-106.09472700000003,77.724151999999947],[-106.08917199999996,77.72886699999998],[-106.07945299999989,77.732758000000047],[-106.04055800000003,77.744980000000055],[-106.01222200000001,77.750549000000035],[-105.94167299999987,77.759720000000016],[-105.91388699999999,77.762497000000053],[-105.70056199999999,77.753600999999946],[-105.64890299999996,77.748596000000077],[-105.55248999999998,77.729430999999977],[-105.50666799999993,77.719711000000075],[-105.47028399999999,77.709152000000017],[-105.38971699999996,77.683868000000018],[-105.17360699999995,77.612198000000035],[-105.15695199999999,77.606093999999985],[-105.03971899999999,77.552199999999971],[-105.02778599999994,77.546371000000136],[-104.968613,77.514435000000049],[-104.95916699999998,77.508041000000048],[-104.94888300000002,77.496094000000085],[-104.94499199999996,77.484984999999995],[-104.946663,77.479155999999989],[-104.95249899999999,77.474425999999937],[-104.96749899999998,77.468872000000147],[-105.01027699999986,77.458603000000096],[-105.01194800000002,77.45277400000009],[-105.01806599999986,77.411925999999994],[-105.01027699999986,77.408034999999927]],[[-95.405838000000017,77.763885000000016],[-95.408889999999928,77.75221300000004],[-95.406113000000005,77.746094000000028],[-95.389724999999942,77.739426000000037],[-95.363892000000021,77.737198000000092],[-95.343886999999995,77.738037000000077],[-95.118606999999997,77.74971000000005],[-95.087783999999942,77.75221300000004],[-95.059433000000013,77.756653000000085],[-95.029174999999952,77.767211999999915],[-95.010833999999988,77.777771000000143],[-94.981673999999998,77.780823000000055],[-94.951674999999966,77.782486000000006],[-94.752228000000002,77.788589000000115],[-94.728881999999942,77.788315000000011],[-94.623321999999973,77.783599999999979],[-94.572783999999899,77.780548000000067],[-94.542220999999927,77.773880000000077],[-94.521118000000001,77.767761000000064],[-94.477492999999924,77.764708999999982],[-94.448607999999979,77.765273999999977],[-94.356658999999866,77.767487000000131],[-94.252501999999936,77.772216999999955],[-94.089995999999928,77.765823000000125],[-94.030288999999982,77.760543999999982],[-93.951110999999969,77.735535000000141],[-93.935821999999973,77.732483000000059],[-93.931380999999988,77.732483000000059],[-93.826675000000023,77.739426000000037],[-93.820007000000032,77.744980000000055],[-93.817779999999971,77.75082400000008],[-93.806655999999919,77.756378000000041],[-93.786666999999966,77.761108000000092],[-93.68638599999997,77.773880000000077],[-93.65695199999999,77.776657],[-93.629439999999931,77.77609300000006],[-93.546111999999994,77.770827999999995],[-93.241669000000002,77.733871000000136],[-93.233886999999868,77.732483000000059],[-93.17471299999994,77.704163000000051],[-93.101944000000003,77.662490999999989],[-93.106658999999922,77.660263000000043],[-93.14834599999989,77.645538000000101],[-93.164169000000015,77.64027400000009],[-93.196380999999974,77.637206999999989],[-93.222504000000015,77.638596000000007],[-93.249161000000015,77.641663000000108],[-93.277221999999938,77.643599999999935],[-93.303054999999972,77.643599999999935],[-93.35943599999996,77.635818000000029],[-93.379439999999988,77.630814000000044],[-93.390288999999939,77.625533999999959],[-93.397232000000031,77.619979999999998],[-93.486388999999974,77.54553199999998],[-93.502501999999993,77.503052000000082],[-93.477782999999988,77.492477000000122],[-93.474715999999944,77.487487999999985],[-93.474166999999909,77.476379000000065],[-93.475280999999995,77.47137499999991],[-93.480834999999956,77.466660000000104],[-93.537780999999995,77.445816000000093],[-93.553054999999915,77.440811000000053],[-93.570556999999951,77.437759000000142],[-93.906661999999983,77.433319000000097],[-93.933884000000035,77.433593999999971],[-94.25167799999997,77.455261000000007],[-94.319457999999997,77.468597000000102],[-94.345001000000025,77.472487999999998],[-94.468886999999995,77.476929000000098],[-94.801101999999901,77.480270000000132],[-95.032226999999978,77.469986000000119],[-95.123610999999983,77.463882000000069],[-95.204453000000001,77.460814999999968],[-95.252791999999943,77.460814999999968],[-95.294998000000021,77.466385000000059],[-95.346389999999985,77.469986000000119],[-95.477492999999981,77.473877000000016],[-95.532776000000013,77.473601999999971],[-95.726105000000018,77.470260999999937],[-95.823623999999938,77.466385000000059],[-95.838897999999858,77.462493999999992],[-95.864166000000012,77.462203999999986],[-95.889450000000011,77.464432000000102],[-96,77.479980000000126],[-96.061385999999857,77.491652999999985],[-96.083327999999995,77.497756999999979],[-96.099730999999963,77.504439999999988],[-96.259170999999981,77.571929999999952],[-96.318343999999968,77.598877000000073],[-96.328888000000006,77.604980000000012],[-96.255568999999923,77.689697000000024],[-96.241104000000007,77.694977000000108],[-96.194442999999978,77.704987000000017],[-96.077224999999942,77.726929000000041],[-95.934433000000013,77.753052000000025],[-95.918059999999969,77.755554000000075],[-95.897231999999974,77.757492000000013],[-95.869445999999925,77.757217000000026],[-95.848052999999993,77.755264000000068],[-95.742767000000015,77.762207000000046],[-95.630553999999961,77.771102999999982],[-95.583892999999932,77.779709000000082],[-95.570007000000032,77.784149000000127],[-95.566101000000003,77.78776600000009],[-95.565552000000025,77.792755000000056],[-95.552779999999927,77.796097000000145],[-95.528884999999946,77.801086000000112],[-95.49610899999999,77.805542000000059],[-95.465285999999935,77.80802900000009],[-95.427779999999984,77.803314000000057],[-95.418335000000013,77.798874000000069],[-95.410827999999981,77.792480000000012],[-95.40695199999999,77.787201000000039],[-95.404449,77.776381999999955],[-95.405838000000017,77.763885000000016]],[[-77.851944000000003,77.774429000000055],[-77.875274999999874,77.774429000000055],[-77.888061999999877,77.781372000000033],[-77.930556999999965,77.808868000000075],[-77.955001999999922,77.830276000000026],[-77.952224999999999,77.833054000000004],[-77.936385999999914,77.839157000000114],[-77.906386999999995,77.844437000000028],[-77.880279999999914,77.848038000000031],[-77.821121000000005,77.854431000000034],[-77.717772999999966,77.863037000000134],[-77.676102000000014,77.864700000000028],[-77.622771999999941,77.862762000000089],[-77.596389999999985,77.860808999999961],[-77.582779000000016,77.858032000000094],[-77.575286999999946,77.854980000000126],[-77.568619000000012,77.849716000000001],[-77.575561999999991,77.823608000000036],[-77.579178000000013,77.81860400000005],[-77.592772999999909,77.813309000000004],[-77.628052000000025,77.804153000000042],[-77.658889999999985,77.79693600000013],[-77.680557000000022,77.792755000000056],[-77.851944000000003,77.774429000000055]],[[-101.71140300000002,77.901657000000057],[-101.671944,77.893326000000002],[-101.62082699999996,77.884430000000066],[-101.52443700000003,77.869980000000112],[-101.450287,77.861098999999967],[-101.36833200000001,77.853867000000093],[-101.26555599999995,77.842758000000003],[-101.23777799999993,77.838882000000126],[-101.19138299999997,77.830826000000059],[-101.16139199999992,77.822769000000051],[-100.96056399999992,77.759155000000135],[-100.92639200000002,77.743317000000104],[-100.92555199999998,77.737198000000092],[-100.92887899999999,77.731369000000086],[-100.94055200000003,77.726929000000041],[-100.96472199999994,77.72554000000008],[-101.096947,77.719436999999914],[-101.21694899999994,77.721924000000001],[-101.26777599999997,77.725815000000068],[-101.31806899999992,77.726089000000002],[-101.50695799999994,77.724991000000102],[-101.53527799999995,77.723602000000142],[-101.56471299999993,77.720535000000041],[-101.58583099999993,77.71527100000003],[-101.593613,77.709427000000005],[-101.60582699999992,77.703873000000044],[-101.62249799999995,77.69859300000013],[-101.65222199999994,77.694427000000076],[-101.79888900000003,77.676376000000062],[-101.82640099999992,77.676086000000055],[-102.01695299999994,77.679703000000018],[-102.06777999999997,77.682205000000067],[-102.1416779999999,77.690810999999997],[-102.43639399999995,77.729705999999965],[-102.44444299999998,77.731934000000081],[-102.51083399999999,77.786102000000085],[-102.52971600000001,77.834152000000074],[-102.51806599999992,77.844146999999964],[-102.49889400000001,77.855545000000006],[-102.45889299999999,77.871094000000085],[-102.44249000000002,77.876648000000102],[-102.41665599999999,77.881927000000076],[-102.38778699999995,77.884155000000021],[-102.13999899999999,77.896378000000084],[-102.08389299999999,77.897217000000069],[-102.04915599999998,77.896942000000024],[-101.91583299999996,77.893875000000094],[-101.83194699999996,77.893875000000094],[-101.779449,77.896378000000084],[-101.74973299999999,77.899719000000118],[-101.71140300000002,77.901657000000057]],[[-114.07305899999994,77.981659000000036],[-113.9813769999999,77.934982000000105],[-113.97501399999993,77.931091000000038],[-113.97222899999997,77.925262000000032],[-113.97222899999997,77.919983000000059],[-113.9583439999999,77.914993000000038],[-113.92388900000003,77.910812000000135],[-113.89499699999993,77.908325000000048],[-113.84028599999999,77.906097000000102],[-113.72666899999996,77.896103000000039],[-113.70639,77.891663000000051],[-113.58556399999998,77.825820999999962],[-113.57861300000002,77.819991999999957],[-113.57611099999997,77.814147999999989],[-113.58750899999995,77.80802900000009],[-113.61916399999996,77.795821999999987],[-113.65972899999997,77.783324999999991],[-113.78832999999992,77.745255000000043],[-113.90833999999995,77.726379000000009],[-113.93472300000002,77.72387700000013],[-114.11444099999989,77.706649999999911],[-114.19304699999998,77.69802900000002],[-114.22305299999999,77.698868000000004],[-114.27722199999999,77.702209000000039],[-114.33112299999999,77.709717000000012],[-114.415009,77.731369000000086],[-114.514183,77.765273999999977],[-114.66251399999999,77.803863999999919],[-114.70916699999998,77.813599000000011],[-114.73029300000002,77.818877999999984],[-114.84834299999994,77.854706000000022],[-115.07721699999996,77.938582999999994],[-115.11138900000003,77.953872999999987],[-115.11501299999992,77.956375000000037],[-115.11609599999991,77.958327999999995],[-115.10833700000001,77.961380000000077],[-115.09084300000001,77.963608000000079],[-115.06054699999993,77.963882000000012],[-115.03388999999993,77.962204000000042],[-114.93028299999997,77.960541000000148],[-114.81973299999993,77.973037999999917],[-114.79778299999992,77.975540000000024],[-114.77749599999993,77.981659000000036],[-114.74027999999998,78.000000000000057],[-114.60582699999998,78.03054800000001],[-114.40083299999998,78.067490000000021],[-114.35500300000001,78.070541000000048],[-114.32694999999995,78.0711060000001],[-114.30332899999996,78.070541000000048],[-114.28694200000001,78.066086000000041],[-114.07305899999994,77.981659000000036]],[[-109.58805799999999,78.064697000000024],[-109.58056599999998,78.058319000000097],[-109.58112299999988,78.041367000000093],[-109.58528100000001,78.035538000000088],[-109.66972399999997,77.971649000000127],[-109.68305999999995,77.965820000000122],[-109.70556599999986,77.959991000000116],[-109.76027699999997,77.951096000000064],[-109.81527699999992,77.942749000000106],[-109.84249899999998,77.938873000000001],[-109.89750699999996,77.932755000000043],[-110.00723299999987,77.921371000000136],[-110.14499699999999,77.911926000000108],[-110.162781,77.906936999999971],[-110.16665599999999,77.901093000000117],[-110.19611399999991,77.896652000000017],[-110.22112299999998,77.893875000000094],[-110.24889399999995,77.893875000000094],[-110.48999000000003,77.883881000000088],[-110.62666300000001,77.873032000000023],[-110.65416700000003,77.871918000000051],[-110.79250299999995,77.870819000000097],[-110.846947,77.866379000000052],[-110.87389400000001,77.862198000000149],[-110.89584400000001,77.856093999999928],[-110.90139799999992,77.849716000000001],[-110.90471600000001,77.843872000000147],[-110.90360999999996,77.838042999999971],[-110.90028399999994,77.832763999999997],[-110.89444699999996,77.826934999999992],[-110.88639799999987,77.820831000000112],[-110.74388099999993,77.773605000000089],[-110.71556099999992,77.768875000000037],[-110.65888999999999,77.759720000000016],[-110.63110399999994,77.758040999999992],[-110.60138699999999,77.758881000000031],[-110.51972999999992,77.763321000000019],[-110.41583299999996,77.770827999999995],[-110.39306599999986,77.773041000000148],[-110.368607,77.776381999999955],[-110.28916899999996,77.782486000000006],[-110.16111799999999,77.784149000000127],[-110.13305700000001,77.780548000000067],[-110.10500299999995,77.774994000000049],[-110.09028599999994,77.769150000000081],[-110.08029199999993,77.763321000000019],[-110.04055800000003,77.637496999999996],[-110.08029199999993,77.563599000000067],[-110.08416699999992,77.557755000000043],[-110.09221599999995,77.551926000000037],[-110.11749299999997,77.539978000000019],[-110.20333899999997,77.511383000000137],[-110.22501399999987,77.505264000000125],[-110.27055399999995,77.49581900000004],[-110.29695100000004,77.491652999999985],[-110.502228,77.460266000000047],[-110.81500199999999,77.424988000000042],[-110.82749899999999,77.419144000000017],[-110.85082999999992,77.414428999999984],[-110.87721299999998,77.411377000000073],[-110.95639,77.407486000000006],[-111.00974299999996,77.406096999999988],[-111.06527699999998,77.406096999999988],[-111.11721799999992,77.408874999999966],[-111.172234,77.416092000000106],[-111.29998799999993,77.419144000000017],[-111.46305799999999,77.393051000000071],[-111.61833200000001,77.373871000000122],[-111.82501199999996,77.34887700000013],[-112.031113,77.324707000000103],[-112.05722000000003,77.323317999999915],[-112.083618,77.323043999999982],[-112.13694800000002,77.323317999999915],[-112.16639700000002,77.325271999999984],[-112.41306299999997,77.356094000000041],[-112.43888900000002,77.361099000000081],[-112.48222399999992,77.371094000000028],[-112.5,77.378235000000018],[-112.50778200000002,77.381363000000022],[-112.52139299999999,77.389434999999992],[-112.52333099999993,77.395263999999997],[-112.52694700000001,77.399719000000061],[-112.545547,77.415817000000061],[-112.587784,77.449141999999938],[-112.60109699999992,77.455261000000007],[-112.626938,77.459427000000062],[-112.65387699999997,77.458878000000141],[-112.68222000000003,77.456939999999975],[-112.69721999999996,77.455261000000007],[-112.73889200000002,77.445816000000093],[-112.764183,77.441650000000038],[-112.79083300000002,77.441086000000098],[-112.80249000000003,77.442474000000004],[-112.92887899999994,77.464157000000114],[-112.95777899999996,77.469436999999971],[-112.96389799999992,77.474152000000004],[-112.96806299999992,77.485809000000131],[-112.96806299999992,77.492203000000018],[-112.97028399999999,77.498032000000023],[-112.978882,77.503326000000015],[-112.99445300000002,77.508881000000088],[-113.01167299999997,77.512771999999984],[-113.03751399999999,77.515823000000012],[-113.06500199999999,77.517211999999972],[-113.14611799999994,77.517761000000121],[-113.17388900000003,77.519440000000145],[-113.198036,77.523880000000133],[-113.20472699999999,77.529433999999981],[-113.23805199999998,77.581375000000037],[-113.24027999999993,77.587204000000042],[-113.16251399999993,77.609146000000123],[-113.1875,77.739426000000037],[-113.20556599999998,77.744431000000077],[-113.26251200000002,77.755554000000075],[-113.283073,77.761108000000092],[-113.29444899999999,77.766662999999994],[-113.30387899999994,77.773041000000148],[-113.31054699999993,77.778595000000109],[-113.31500199999994,77.783875000000023],[-113.31973299999999,77.795531999999923],[-113.31973299999999,77.807204999999954],[-113.31749699999995,77.813033999999959],[-113.30638099999993,77.837203999999986],[-113.23473399999989,77.901657000000057],[-113.23082699999992,77.903594999999996],[-113.20973200000003,77.90887500000008],[-113.12721299999998,77.912201000000096],[-113.09973100000002,77.912766000000147],[-113.07167099999998,77.912201000000096],[-113.04666099999997,77.907761000000107],[-113.03971899999999,77.901932000000102],[-112.94360399999999,77.911926000000108],[-112.80499299999985,77.933043999999995],[-112.78333299999997,77.937195000000088],[-112.76666299999999,77.942474000000061],[-112.74194299999988,77.951660000000004],[-112.57444799999996,77.979431000000091],[-112.46694899999994,77.992477000000008],[-112.29499800000002,78.010544000000095],[-112.12526699999995,78.00610400000005],[-111.97944599999994,78.018599999999992],[-111.787216,78.033599999999922],[-111.77610800000002,78.028046000000131],[-111.756393,78.024428999999998],[-111.73055999999997,78.024155000000064],[-111.70556599999998,78.026931999999988],[-111.63221699999991,78.040817000000061],[-111.34583999999995,78.076935000000105],[-111.31833599999999,78.08027600000014],[-111.28832999999997,78.081940000000145],[-111.09333800000002,78.092484000000013],[-111.048607,78.093597000000102],[-111.02749599999999,78.093322999999998],[-110.99861099999993,78.090546000000074],[-110.99749799999995,78.084717000000069],[-111.00110599999994,78.079987000000017],[-110.995003,78.074158000000011],[-110.90334300000001,78.062194999999974],[-110.861107,78.061645999999996],[-110.83306899999997,78.06303400000013],[-110.80555700000002,78.065262000000075],[-110.78778099999994,78.0711060000001],[-110.77500899999995,78.076935000000105],[-110.77139299999999,78.082764000000111],[-110.76334399999996,78.088882000000069],[-110.74553700000001,78.094711000000075],[-110.72721899999988,78.097762999999986],[-110.67051700000002,78.101089000000002],[-110.54998799999998,78.106094000000098],[-110.46584299999995,78.108597000000032],[-110.23777799999999,78.110809000000131],[-110.10082999999992,78.108597000000032],[-109.95916699999987,78.104705999999965],[-109.78916899999996,78.099716000000114],[-109.67777999999998,78.091933999999981],[-109.65387699999985,78.088318000000129],[-109.60527000000002,78.0711060000001],[-109.58805799999999,78.064697000000024]],[[-101.65139799999997,78.144714000000022],[-101.67527799999999,78.144440000000088],[-101.859444,78.15525800000006],[-101.87917299999992,78.158324999999991],[-101.88194299999998,78.162201000000039],[-101.77610800000002,78.216385000000116],[-101.75334199999992,78.227203000000088],[-101.73137700000001,78.232483000000116],[-101.70722999999987,78.23275799999999],[-101.68472299999996,78.230545000000006],[-101.68167099999994,78.227478000000076],[-101.67250100000001,78.226089000000115],[-101.63362100000001,78.210815000000025],[-101.62277199999988,78.204712000000086],[-101.61582899999996,78.199416999999983],[-101.60360700000001,78.187485000000038],[-101.59999099999993,78.181090999999981],[-101.59861799999993,78.175261999999975],[-101.59973100000002,78.164429000000041],[-101.60527000000002,78.159149000000127],[-101.61305199999998,78.153594999999939],[-101.62581599999993,78.148041000000148],[-101.65139799999997,78.144714000000022]],[[-103.05695300000002,78.119705000000067],[-103.11444099999994,78.11775200000011],[-103.19444299999992,78.11914100000007],[-103.212784,78.120529000000033],[-103.23029300000002,78.123871000000122],[-103.25862099999995,78.134995000000004],[-103.27027900000002,78.141097999999943],[-103.27722199999999,78.146941999999967],[-103.28222700000003,78.15776100000005],[-103.27971600000001,78.163605000000075],[-103.274719,78.169983000000002],[-103.26750199999998,78.17553700000002],[-103.23916600000001,78.192200000000071],[-103.22721899999993,78.197754000000089],[-103.17027300000001,78.219985999999949],[-103.12470999999999,78.236649000000057],[-103.06276700000001,78.258041000000048],[-103.04138199999994,78.263610999999969],[-102.98693800000001,78.27276599999999],[-102.93415800000002,78.27276599999999],[-102.89750700000002,78.269149999999968],[-102.82556199999993,78.258881000000088],[-102.8125,78.255829000000006],[-102.79860699999995,78.250274999999988],[-102.78916899999996,78.24443100000002],[-102.78222700000003,78.238586000000055],[-102.78028899999993,78.23275799999999],[-102.77639799999986,78.215546000000131],[-102.77639799999986,78.210266000000047],[-102.781387,78.204987000000074],[-102.79332699999998,78.199416999999983],[-102.85527000000002,78.188872999999944],[-102.89806399999992,78.17804000000001],[-102.93195300000002,78.166931000000091],[-102.97721899999999,78.150269000000094],[-103.01777599999997,78.133606000000043],[-103.04167199999995,78.122208000000001],[-103.05695300000002,78.119705000000067]],[[-94.366652999999985,78.159149000000127],[-94.378051999999968,78.15776100000005],[-94.404448999999943,78.159988000000112],[-94.506118999999956,78.172760000000096],[-94.520003999999858,78.177475000000129],[-94.67111199999988,78.240814000000057],[-94.683060000000012,78.247208000000057],[-94.694152999999915,78.2586060000001],[-94.692215000000033,78.264709000000039],[-94.681106999999884,78.274155000000007],[-94.660827999999924,78.279160000000047],[-94.635558999999944,78.28387500000008],[-94.602218999999991,78.287200999999925],[-94.572234999999921,78.287766000000147],[-94.546386999999982,78.284424000000058],[-94.515014999999892,78.278046000000074],[-94.481948999999929,78.268326000000002],[-94.36111499999987,78.22164900000007],[-94.344726999999978,78.214706000000092],[-94.316665999999998,78.197479000000044],[-94.309433000000013,78.191086000000098],[-94.306945999999925,78.184982000000048],[-94.309157999999968,78.179153000000042],[-94.366652999999985,78.159149000000127]],[[-88.287215999999944,78.24331699999999],[-88.360001000000011,78.237761999999918],[-88.381942999999978,78.242476999999951],[-88.393616000000009,78.248871000000008],[-88.404723999999987,78.25999500000006],[-88.407500999999911,78.264435000000105],[-88.411117999999931,78.273879999999963],[-88.40972899999997,78.292205999999965],[-88.404449,78.298035000000027],[-88.235274999999888,78.42692599999998],[-88.113051999999982,78.45526099999995],[-88.09445199999999,78.456940000000145],[-88.070281999999963,78.454712000000029],[-88.061385999999914,78.452484000000084],[-88.052779999999927,78.445526000000086],[-88.049728000000016,78.444427000000076],[-88.043334999999956,78.436646000000053],[-88.044448999999929,78.42442299999999],[-88.044997999999964,78.421371000000079],[-88.046660999999972,78.418868999999972],[-88.057220000000029,78.407485999999949],[-88.166396999999961,78.308029000000033],[-88.187774999999988,78.291655999999932],[-88.245543999999995,78.252777000000094],[-88.255004999999983,78.247208000000057],[-88.287215999999944,78.24331699999999]],[[-109.64806399999992,78.588042999999971],[-109.569458,78.586380000000077],[-109.54998799999998,78.586655000000064],[-109.50055700000001,78.582763999999997],[-109.40527299999997,78.556931000000077],[-109.33416699999998,78.524155000000121],[-109.26055899999994,78.487198000000092],[-109.25556899999998,78.482483000000059],[-109.254997,78.478591999999992],[-109.26055899999994,78.455826000000002],[-109.31806899999992,78.35803199999998],[-109.32721700000002,78.352203000000145],[-109.40499899999992,78.306366000000082],[-109.42859599999997,78.303314],[-109.59583999999995,78.302765000000022],[-109.766953,78.294144000000131],[-109.82444799999996,78.293869000000086],[-109.85333300000002,78.29664600000001],[-109.882767,78.301376000000062],[-109.89306599999998,78.307205000000067],[-109.89835399999998,78.3119200000001],[-109.90862299999998,78.317764000000068],[-109.92610200000001,78.323043999999982],[-109.95527599999997,78.325821000000076],[-109.98388699999998,78.325546000000031],[-110.01251200000002,78.323608000000092],[-110.19638099999997,78.303864000000033],[-110.22444199999995,78.299987999999928],[-110.25250199999999,78.295822000000044],[-110.279449,78.284987999999998],[-110.29778299999992,78.281097000000102],[-110.354446,78.276657000000057],[-110.4119419999999,78.277206000000035],[-110.484734,78.284424000000058],[-110.57167099999992,78.289703000000031],[-110.65833999999995,78.29304500000012],[-110.71556099999992,78.292480000000126],[-110.78778099999994,78.306931000000134],[-110.85665899999987,78.327208999999982],[-110.85888699999998,78.337769000000094],[-110.97501399999999,78.363876000000005],[-111.00250199999999,78.368042000000059],[-111.14138799999995,78.386108000000036],[-111.16999799999996,78.384155000000078],[-111.27778599999994,78.372207999999944],[-111.27139299999999,78.346100000000035],[-111.30610699999994,78.321106000000043],[-111.41000400000001,78.277206000000035],[-111.42304999999993,78.272217000000069],[-111.43888899999996,78.268600000000106],[-111.46250899999995,78.267487000000017],[-111.50527999999997,78.266936999999984],[-111.57556199999999,78.270538000000045],[-111.65249599999993,78.27276599999999],[-111.73832700000003,78.27276599999999],[-111.76666299999994,78.271378000000084],[-111.79527299999995,78.271103000000096],[-111.82000700000003,78.273604999999975],[-111.86472300000003,78.296370999999965],[-111.88221699999997,78.306931000000134],[-111.88861099999997,78.312485000000095],[-111.89277599999997,78.318054000000132],[-111.89167800000001,78.322220000000016],[-111.91861,78.332764000000054],[-111.939438,78.338318000000072],[-112.13305700000001,78.36554000000001],[-112.21501199999994,78.365265000000136],[-112.43776700000001,78.354431000000091],[-112.58306899999997,78.343597000000045],[-112.68443299999996,78.331375000000037],[-112.73916599999995,78.323043999999982],[-112.78721599999989,78.310531999999967],[-112.89083900000003,78.292480000000126],[-112.94499199999996,78.28387500000008],[-113.02694700000001,78.27276599999999],[-113.05499299999997,78.271378000000084],[-113.14222699999999,78.268326000000002],[-113.16860999999994,78.268600000000106],[-113.18831599999999,78.269989000000123],[-113.21777299999985,78.27777100000003],[-113.27333099999998,78.296370999999965],[-113.28195199999999,78.299713000000111],[-113.287781,78.302475000000015],[-113.33249699999993,78.328872999999987],[-113.33416699999998,78.332764000000054],[-113.21611000000001,78.385269000000108],[-113.1241609999999,78.420822000000101],[-113.11527999999987,78.423035000000084],[-113.03832999999997,78.436919999999986],[-112.71167000000003,78.484711000000061],[-112.60749800000002,78.4994200000001],[-112.36305199999998,78.533324999999991],[-112.31166100000002,78.539977999999962],[-112.23805199999998,78.547211000000004],[-112.12970699999994,78.551926000000037],[-111.98805199999987,78.552764999999965],[-111.90360999999996,78.548874000000069],[-111.87304699999999,78.544434000000081],[-111.85305800000003,78.542755000000056],[-111.80972299999991,78.545258000000047],[-111.75250199999994,78.55053700000002],[-111.67777999999993,78.563034000000016],[-111.641953,78.574158000000068],[-111.60082999999997,78.585266000000104],[-111.57224299999996,78.588593000000003],[-111.45556599999998,78.592758000000003],[-111.39195299999994,78.61192299999999],[-111.378601,78.617751999999996],[-111.37998999999991,78.622757000000036],[-111.36305199999998,78.64276099999995],[-111.16055299999999,78.691649999999925],[-110.95612299999993,78.718323000000112],[-110.79110700000001,78.735259999999926],[-110.6375119999999,78.748596000000077],[-110.46028100000001,78.757492000000013],[-110.43055700000002,78.758605999999986],[-110.41055299999999,78.757767000000001],[-110.39527900000002,78.756104000000107],[-110.38445299999989,78.751389000000074],[-110.271118,78.727768000000026],[-110.16416900000002,78.70915199999996],[-110.07778899999988,78.694977000000051],[-109.99722300000002,78.683868000000018],[-109.86165599999998,78.666930999999977],[-109.85582699999998,78.660262999999986],[-109.86000100000001,78.654433999999981],[-109.86165599999998,78.649155000000007],[-109.86110699999995,78.643326000000002],[-109.85526999999996,78.637496999999996],[-109.67054699999989,78.591370000000097],[-109.64806399999992,78.588042999999971]],[[-74.306945999999982,78.676651000000049],[-74.334166999999923,78.675262000000089],[-74.36721799999998,78.676086000000055],[-74.419448999999986,78.681655999999919],[-74.614166000000012,78.702774000000034],[-74.704726999999934,78.722762999999929],[-74.710007000000019,78.727477999999962],[-74.710281000000009,78.731094000000041],[-74.706664999999987,78.737488000000099],[-74.645003999999972,78.772491000000059],[-74.632216999999969,78.777206000000092],[-74.615829000000019,78.778595000000109],[-74.591109999999958,78.778870000000097],[-74.555557000000022,78.776093000000003],[-74.356948999999929,78.755829000000062],[-74.312042000000019,78.750000000000057],[-74.28195199999999,78.746094000000028],[-74.192489999999964,78.729705999999965],[-74.167770000000019,78.719986000000063],[-74.163619999999923,78.716094999999996],[-74.172774999999888,78.711380000000133],[-74.236388999999974,78.687194999999917],[-74.256667999999934,78.6827550000001],[-74.28443900000002,78.678864000000033],[-74.306945999999982,78.676651000000049]],[[-96.768065999999976,78.684143000000006],[-96.708892999999989,78.6827550000001],[-96.645003999999972,78.686096000000134],[-96.613051999999982,78.685532000000023],[-96.585007000000019,78.68331900000004],[-96.533614999999941,78.676926000000094],[-96.510559000000001,78.672484999999995],[-96.466399999999965,78.661926000000108],[-96.395279000000016,78.640549000000078],[-96.379165999999998,78.634430000000066],[-96.356109999999944,78.627762000000075],[-96.315826000000015,78.618042000000003],[-96.293883999999935,78.615265000000079],[-96.265015000000005,78.618866000000139],[-96.235549999999989,78.627762000000075],[-96.202498999999875,78.630264000000011],[-96.184432999999956,78.628586000000041],[-96.167495999999971,78.623306000000014],[-96.158889999999872,78.617203000000075],[-96.152495999999985,78.611374000000012],[-96.216400000000021,78.560531999999967],[-96.178054999999915,78.518875000000094],[-96.009445000000028,78.492477000000122],[-95.857773000000009,78.494980000000055],[-95.820006999999919,78.502213000000097],[-95.746658000000025,78.514998999999989],[-95.71665999999999,78.519714000000022],[-95.68472300000002,78.521103000000039],[-95.652221999999995,78.521378000000027],[-95.601944000000003,78.519714000000022],[-95.537215999999944,78.514708999999982],[-95.481673999999998,78.508881000000031],[-95.407775999999956,78.497208000000057],[-95.206389999999942,78.461655000000007],[-95.086944999999957,78.437759000000085],[-94.895003999999972,78.395828000000108],[-94.877776999999924,78.391373000000101],[-94.86082499999992,78.384720000000129],[-94.831679999999949,78.364699999999971],[-94.829177999999956,78.358871000000136],[-94.830840999999907,78.352767999999969],[-94.837508999999955,78.347214000000008],[-94.853332999999907,78.341934000000094],[-94.941939999999988,78.316375999999991],[-94.966948999999943,78.311371000000122],[-95.096389999999928,78.290268000000026],[-95.36361699999992,78.24136400000009],[-95.388061999999934,78.236374000000012],[-95.399170000000026,78.231093999999985],[-95.398620999999991,78.226928999999984],[-95.388900999999976,78.222488000000055],[-95.368880999999988,78.218596999999988],[-95.345839999999953,78.217758000000003],[-95.255279999999914,78.21804800000001],[-95.227492999999981,78.216660000000104],[-95.130829000000006,78.194138000000009],[-95.113051999999925,78.188583000000108],[-95.106948999999986,78.185257000000092],[-95.108611999999994,78.179428000000087],[-95.111937999999952,78.174149000000114],[-95.111937999999952,78.167480000000012],[-95.106109999999944,78.161926000000051],[-95.089721999999995,78.154984000000127],[-95.068068999999923,78.148041000000148],[-94.98332199999993,78.133040999999992],[-94.90695199999999,78.117203000000131],[-94.889998999999989,78.108870999999965],[-94.886947999999961,78.102768000000026],[-94.911666999999852,78.055251999999996],[-95.011397999999986,77.991363999999919],[-95.043883999999935,77.974991000000045],[-95.057494999999903,77.969147000000078],[-95.085280999999952,77.958878000000027],[-95.100554999999929,77.953597999999943],[-95.112503000000004,77.951385000000016],[-95.137511999999958,77.950546000000031],[-95.162506000000008,77.953597999999943],[-95.186385999999857,77.957764000000054],[-95.211670000000026,77.961105000000089],[-95.236938000000009,77.964157],[-95.265838999999971,77.966095000000109],[-95.321395999999993,77.96775800000006],[-95.379989999999964,77.966384999999946],[-95.400283999999999,77.962769000000094],[-95.41332999999986,77.959426999999948],[-95.425551999999925,77.948029000000133],[-95.449722000000008,77.9433140000001],[-95.549728000000016,77.934143000000006],[-95.758057000000008,77.911926000000108],[-95.830840999999964,77.898880000000133],[-95.938599000000011,77.885817999999972],[-96.189437999999939,77.866089000000045],[-96.285552999999936,77.859421000000054],[-96.317504999999926,77.858322000000101],[-96.345551,77.858597000000088],[-96.365279999999984,77.859984999999995],[-96.386123999999995,77.862762000000089],[-96.404174999999952,77.868591000000094],[-96.41194200000001,77.874984999999981],[-96.410827999999924,77.880813999999987],[-96.405272999999966,77.886382999999967],[-96.410552999999993,77.890549000000078],[-96.416945999999996,77.893875000000094],[-96.43582200000003,77.898604999999975],[-96.456664999999987,77.901657000000057],[-96.541107000000011,77.897217000000069],[-96.734436000000017,77.872757000000036],[-96.735000999999954,77.86692800000003],[-96.710555999999997,77.855545000000006],[-96.696380999999917,77.850815000000125],[-96.667220999999927,77.849152000000061],[-96.585007000000019,77.856368999999972],[-96.558884000000035,77.859421000000054],[-96.539718999999991,77.864426000000094],[-96.516113000000018,77.869430999999963],[-96.491668999999888,77.870254999999929],[-96.515563999999983,77.845535000000098],[-96.542770000000019,77.841934000000037],[-96.628325999999959,77.840546000000131],[-96.68720999999988,77.840546000000131],[-96.71166999999997,77.839706000000092],[-96.734160999999972,77.835541000000092],[-96.748610999999926,77.830276000000026],[-96.829452999999944,77.789153999999996],[-96.849990999999989,77.787201000000039],[-96.880553999999961,77.786926000000051],[-96.900283999999999,77.788315000000011],[-96.907776000000013,77.790542999999957],[-96.912216000000001,77.793045000000063],[-96.933884000000035,77.797485000000052],[-97.014174999999966,77.804153000000042],[-97.057495000000017,77.805542000000059],[-97.072509999999909,77.804153000000042],[-97.096953999999926,77.803314000000057],[-97.102218999999991,77.807479999999998],[-97.119720000000029,77.865265000000079],[-97.11999499999996,77.870254999999929],[-97.107497999999964,77.876373000000058],[-97.081389999999942,77.886658000000011],[-97.015563999999983,77.904160000000047],[-97.002228000000002,77.908600000000035],[-96.99221799999998,77.914154000000053],[-96.992492999999911,77.918869000000086],[-96.994995000000017,77.921097000000032],[-97.142775999999969,77.934982000000105],[-97.281676999999945,77.948318000000086],[-97.30999799999995,77.951096000000064],[-97.354445999999996,77.962204000000042],[-97.380279999999971,77.969986000000006],[-97.431670999999994,77.986923000000047],[-97.454726999999934,77.992752000000053],[-97.503066999999874,78.002486999999917],[-97.572234999999978,78.012497000000053],[-97.602782999999931,78.015548999999965],[-97.673614999999984,78.021378000000141],[-97.75556899999998,78.025542999999971],[-97.766953000000001,78.028870000000097],[-97.77555799999999,78.034988000000055],[-97.666945999999996,78.088043000000084],[-97.647781000000009,78.090820000000008],[-97.618331999999953,78.091660000000047],[-97.567504999999926,78.089706000000035],[-97.513061999999991,78.086655000000007],[-97.43249499999996,78.080551000000128],[-97.323623999999995,78.076935000000105],[-97.297775000000001,78.076385000000073],[-97.024444999999901,78.074706999999933],[-96.997771999999998,78.075271999999984],[-96.910278000000005,78.079163000000051],[-96.887511999999958,78.083054000000118],[-96.855559999999912,78.104155999999932],[-96.856383999999991,78.108032000000037],[-96.870543999999995,78.133330999999998],[-96.885558999999944,78.138046000000031],[-96.983886999999925,78.150818000000072],[-97.059157999999968,78.15776100000005],[-97.138061999999934,78.165817000000118],[-97.164444000000003,78.168869000000029],[-97.184722999999963,78.172485000000108],[-97.194992000000013,78.17692599999998],[-97.200835999999924,78.183593999999971],[-97.212509000000011,78.189422999999977],[-97.299438000000009,78.204712000000086],[-97.321120999999948,78.207488999999953],[-97.349166999999966,78.208602999999982],[-97.407776000000013,78.207763999999997],[-97.635558999999944,78.206650000000025],[-97.829453000000001,78.219147000000021],[-97.849441999999954,78.234711000000118],[-97.817504999999983,78.23275799999999],[-97.773055999999997,78.238876000000118],[-97.763335999999924,78.24443100000002],[-97.777785999999878,78.25],[-97.867766999999958,78.279709000000025],[-97.881103999999993,78.283600000000092],[-97.904175000000009,78.28804000000008],[-97.930557000000022,78.290817000000004],[-98.012786999999946,78.296936000000017],[-98.054717999999923,78.301651000000049],[-98.068343999999968,78.308029000000033],[-98.070846999999958,78.313599000000067],[-98.043610000000001,78.389434999999992],[-98.148345999999947,78.403870000000097],[-98.172226000000023,78.40498400000007],[-98.198333999999988,78.408599999999979],[-98.347778000000005,78.443038999999999],[-98.366652999999985,78.449416999999983],[-98.388061999999991,78.467484000000013],[-98.410552999999993,78.490265000000022],[-98.411391999999921,78.4952550000001],[-98.410277999999948,78.508040999999992],[-98.308884000000035,78.533875000000023],[-98.171386999999982,78.529709000000139],[-98.054442999999992,78.533600000000035],[-98.022231999999917,78.53637700000013],[-98.019164999999987,78.542755000000056],[-98.028060999999923,78.563309000000004],[-98.042220999999927,78.569716999999969],[-98.080001999999922,78.582763999999997],[-98.115004999999996,78.593871999999976],[-98.139998999999989,78.599425999999994],[-98.169158999999922,78.603043000000127],[-98.235001000000011,78.619141000000013],[-98.315276999999924,78.64387499999998],[-98.326950000000011,78.650542999999914],[-98.328063999999927,78.652206000000035],[-98.371658000000025,78.719986000000063],[-98.366104000000007,78.763611000000026],[-98.36471599999993,78.768051000000071],[-98.17332499999992,78.812759000000142],[-98.144454999999994,78.816666000000112],[-98.06138599999997,78.818877999999984],[-97.777785999999878,78.815262000000075],[-97.65695199999999,78.811371000000008],[-97.59973100000002,78.807479999999941],[-97.488602000000014,78.796646000000067],[-97.461945000000014,78.792755],[-97.436934999999892,78.786925999999994],[-97.385559000000001,78.776931999999988],[-97.359160999999972,78.773041000000092],[-97.273620999999991,78.764434999999992],[-97.160278000000005,78.758881000000031],[-97.078063999999983,78.74971000000005],[-97.025283999999942,78.741928000000087],[-96.999725000000012,78.736923000000047],[-96.954726999999934,78.726379000000009],[-96.922500999999954,78.713318000000072],[-96.913895000000025,78.706940000000088],[-96.903884999999946,78.701660000000061],[-96.886397999999986,78.696640000000002],[-96.768065999999976,78.684143000000006]],[[-86.319457999999997,78.883606000000043],[-86.388061999999877,78.883041000000048],[-86.414718999999934,78.884430000000009],[-86.444442999999978,78.887207000000103],[-86.469161999999926,78.889708999999982],[-86.484436000000017,78.892761000000121],[-86.476943999999889,78.896378000000084],[-86.43638599999997,78.911102000000085],[-86.386672999999973,78.924988000000099],[-86.366104000000007,78.929703000000131],[-86.346114999999998,78.939697000000137],[-86.328613000000018,78.950821000000019],[-86.292770000000019,78.983047000000113],[-86.285277999999948,78.993317000000047],[-86.283614999999941,78.99803200000008],[-86.046951000000035,79.038589000000059],[-85.990828999999962,79.046936000000073],[-85.924437999999952,79.053864000000033],[-85.896117999999944,79.056931000000134],[-85.820007000000032,79.061371000000008],[-85.712509000000011,79.064148000000046],[-85.646118000000001,79.06442300000009],[-85.321395999999936,79.053864000000033],[-85.263335999999924,79.048874000000012],[-85.216109999999901,79.041367000000037],[-85.199722000000008,79.037490999999989],[-85.182495000000017,79.031372000000147],[-85.167220999999927,79.020828000000108],[-85.169448999999986,79.014709000000039],[-85.176391999999964,79.008880999999974],[-85.186661000000015,79.002777000000094],[-85.20944199999991,78.993590999999981],[-85.225829999999974,78.988586000000112],[-85.246947999999975,78.984146000000067],[-85.301392000000021,78.975266000000033],[-85.466110000000015,78.958327999999995],[-85.546660999999972,78.95248400000014],[-85.765563999999983,78.93414300000012],[-86.026947000000007,78.910262999999986],[-86.213897999999972,78.891663000000051],[-86.244995000000017,78.888321000000076],[-86.284163999999976,78.885268999999994],[-86.319457999999997,78.883606000000043]],[[-103.59388699999988,79.325821000000019],[-103.39835399999993,79.299988000000099],[-103.33556399999998,79.299988000000099],[-103.26251200000002,79.299988000000099],[-103.13999899999993,79.287766000000147],[-103.09777799999995,79.282486000000063],[-103.08361799999994,79.279433999999981],[-103.06806899999992,79.273880000000133],[-102.92111199999999,79.21748400000007],[-102.92666600000001,79.211105000000032],[-102.92639199999996,79.206649999999968],[-102.921944,79.200272000000041],[-102.90194699999995,79.172211000000118],[-102.89167800000001,79.166656000000046],[-102.87444299999987,79.164992999999924],[-102.76862299999993,79.138884999999959],[-102.620003,79.097214000000008],[-102.61165599999998,79.093048000000124],[-102.60582699999998,79.074432000000115],[-102.60637700000001,79.068054000000132],[-102.612213,79.056641000000127],[-102.654449,78.994141000000013],[-102.66555799999998,78.98275799999999],[-102.67582700000003,78.977478000000133],[-102.69860799999992,78.971924000000115],[-102.72084000000001,78.938309000000061],[-102.59500099999997,78.876648000000046],[-102.57945299999994,78.873032000000023],[-102.56082200000003,78.869705000000067],[-102.55082700000003,78.869431000000134],[-102.52887699999985,78.873032000000023],[-102.39195299999994,78.931656000000089],[-102.37638900000002,78.946365000000128],[-102.38054699999998,78.962769000000094],[-102.39806399999992,78.987198000000035],[-102.36305199999998,79.014999000000103],[-102.27944899999989,79.018051000000014],[-102.09361299999989,79.044144000000131],[-102.04943799999995,79.054427999999973],[-102.01500699999997,79.064987000000031],[-101.99333199999995,79.076096000000121],[-101.975281,79.080825999999945],[-101.942207,79.084717000000012],[-101.90249599999993,79.086380000000133],[-101.88194299999998,79.086104999999918],[-101.64890299999996,79.075821000000076],[-101.62805200000003,79.071930000000009],[-101.54194599999994,79.044708000000071],[-101.5202789999999,79.038315000000125],[-101.30803699999996,78.975815000000011],[-101.23166699999996,78.959427000000119],[-101.20472699999999,78.954162999999994],[-101.17666600000001,78.95387299999993],[-101.15222199999988,78.956650000000025],[-101.14334100000002,78.962494000000049],[-101.14472999999992,78.968323000000055],[-101.14083900000003,78.974152000000061],[-101.09388699999994,78.963608000000022],[-101.00556899999998,78.943039000000056],[-100.98665599999998,78.937195000000088],[-100.98528299999998,78.931366000000025],[-101.11694299999988,78.856934000000138],[-101.15278599999999,78.83998100000008],[-101.19304699999992,78.824431999999945],[-101.20056199999999,78.820831000000112],[-101.20333899999997,78.815811000000053],[-101.20084399999996,78.811919999999986],[-101.18639400000001,78.802765000000136],[-101.17278299999998,78.800537000000134],[-100.99194299999999,78.788879000000122],[-100.86389199999991,78.781372000000033],[-100.83056599999992,78.789703000000088],[-100.80055199999998,78.793320000000051],[-100.70556599999998,78.799712999999997],[-100.61389200000002,78.798035000000084],[-100.587784,78.799149000000057],[-100.55915799999997,78.80442800000003],[-100.55027799999993,78.809982000000048],[-100.53639199999998,78.815536000000009],[-100.52443700000003,78.818054000000018],[-100.35109699999998,78.828323000000012],[-100.34445199999993,78.826660000000118],[-100.32389799999999,78.802200000000084],[-100.32250999999997,78.797211000000118],[-100.33249699999993,78.782760999999994],[-100.32333399999993,78.778046000000131],[-100.283073,78.767761000000064],[-100.22778299999993,78.760544000000095],[-100.14334099999996,78.75221300000004],[-100.12416100000002,78.750000000000057],[-100.03250099999997,78.739426000000037],[-100.004997,78.735809000000074],[-99.952498999999989,78.725540000000024],[-99.93638599999997,78.719986000000063],[-99.896392999999932,78.695816000000036],[-99.893889999999942,78.693039000000113],[-99.893065999999976,78.6869200000001],[-99.913329999999917,78.679703000000018],[-99.972777999999948,78.659987999999998],[-100.0625,78.638885000000073],[-100.0625,78.635544000000039],[-100.01666299999988,78.616653000000042],[-99.988891999999908,78.613876000000118],[-99.96305799999999,78.614990000000091],[-99.90972899999997,78.623871000000008],[-99.853332999999964,78.633041000000048],[-99.817504999999926,78.630538999999999],[-99.573623999999995,78.595535000000098],[-99.550277999999878,78.590271000000143],[-99.533324999999991,78.583602999999982],[-99.529723999999987,78.578048999999965],[-99.534164000000033,78.572220000000129],[-99.661117999999931,78.485535000000027],[-99.670272999999895,78.479706000000022],[-99.684157999999968,78.474426000000108],[-99.712508999999955,78.469436999999971],[-99.777221999999995,78.46138000000002],[-99.831389999999999,78.450821000000133],[-99.859436000000017,78.442200000000014],[-99.867767000000015,78.437484999999981],[-99.865004999999996,78.434418000000051],[-99.821395999999993,78.427475000000072],[-99.801391999999964,78.420822000000101],[-99.786666999999966,78.414703000000088],[-99.776672000000019,78.408599999999979],[-99.761123999999995,78.396378000000141],[-99.753615999999909,78.389709000000096],[-99.748336999999992,78.383605999999986],[-99.749160999999958,78.372482000000105],[-99.778609999999958,78.332214000000022],[-99.797774999999945,78.308594000000028],[-99.799437999999952,78.303314],[-99.793883999999878,78.297211000000061],[-99.775832999999977,78.292480000000126],[-99.741378999999938,78.289978000000019],[-99.673049999999989,78.290817000000004],[-99.620543999999938,78.290268000000026],[-99.551102000000014,78.286102000000142],[-99.529449,78.282486000000063],[-99.514450000000011,78.277206000000035],[-99.479720999999984,78.249146000000053],[-99.447768999999994,78.224152000000061],[-99.428329000000019,78.211655000000064],[-99.413894999999968,78.205261000000007],[-99.398620999999991,78.199997000000053],[-99.188599000000011,78.133040999999992],[-98.989166000000012,78.073044000000039],[-98.969161999999926,78.068329000000006],[-98.945830999999885,78.061645999999996],[-98.945830999999885,78.05581699999999],[-98.962783999999942,78.009155000000078],[-98.971663999999976,77.997757000000092],[-98.980834999999956,77.992203000000075],[-98.998885999999914,77.986923000000047],[-99.021666999999866,77.981659000000036],[-99.081115999999952,77.971923999999944],[-99.094727000000034,77.966384999999946],[-99.099166999999966,77.960815000000082],[-99.098891999999921,77.954987000000131],[-99.078612999999905,77.925537000000077],[-99.069167999999991,77.913605000000075],[-99.041381999999942,77.900818000000072],[-99.022781000000009,77.894440000000145],[-99.013335999999981,77.888321000000133],[-99.022231999999974,77.882477000000108],[-99.238051999999982,77.837769000000037],[-99.396666999999979,77.824158000000068],[-99.525283999999999,77.813599000000011],[-99.549438000000009,77.812485000000038],[-99.713057999999933,77.810806000000014],[-99.853881999999999,77.792206000000078],[-99.859436000000017,77.786926000000051],[-99.876937999999939,77.781372000000033],[-99.90695199999999,77.778595000000109],[-100.21000699999996,77.809982000000048],[-100.32972699999999,77.825272000000041],[-100.49889399999995,77.85165400000011],[-100.60637699999995,77.879974000000118],[-100.75527999999997,77.955551000000071],[-100.78611799999999,77.974152000000117],[-100.81749699999995,77.999146000000053],[-100.82389799999999,78.004440000000045],[-100.83833299999998,78.022766000000047],[-100.83778399999994,78.034988000000055],[-100.83693700000003,78.040268000000083],[-100.83444199999991,78.04414399999996],[-100.82694999999995,78.048874000000012],[-100.853882,78.096649000000014],[-100.87581599999999,78.099990999999932],[-100.99861099999998,78.131653000000085],[-101.00974300000001,78.136658000000125],[-101.02194199999991,78.147766000000104],[-101.01889,78.156937000000084],[-101.01528899999994,78.16276600000009],[-101.01363399999997,78.173599000000081],[-101.01390100000003,78.184707999999944],[-101.02027900000002,78.189697000000081],[-101.03555299999999,78.196091000000138],[-101.06276699999995,78.198593000000017],[-101.08944700000001,78.198029000000076],[-101.23137700000001,78.183868000000075],[-101.28943599999997,78.182479999999998],[-101.31667299999998,78.184982000000048],[-101.34249899999998,78.189422999999977],[-101.41722099999998,78.208878000000141],[-101.432503,78.215271000000087],[-101.43138099999999,78.221374999999966],[-101.43276999999989,78.227478000000076],[-101.45638999999994,78.232208000000128],[-101.47416699999991,78.234711000000118],[-101.49665800000002,78.237198000000149],[-101.83332799999999,78.264999000000046],[-102.13305699999989,78.282761000000107],[-102.15750100000002,78.282486000000063],[-102.18221999999997,78.281097000000102],[-102.29888900000003,78.273315000000139],[-102.34722899999997,78.267761000000121],[-102.38890100000003,78.260817999999972],[-102.47138999999999,78.248871000000008],[-102.50167799999997,78.245819000000097],[-102.56139400000001,78.241089000000045],[-102.59056099999987,78.239700000000084],[-102.61860699999994,78.24136400000009],[-102.64527900000002,78.24552900000009],[-102.73222399999992,78.263885000000073],[-102.781387,78.276093000000117],[-102.79778299999998,78.282211000000075],[-102.80943300000001,78.288315000000125],[-102.8163909999999,78.294434000000138],[-102.81833599999999,78.300262000000032],[-102.81360599999994,78.310806000000127],[-102.80803700000001,78.316939999999931],[-102.74999999999989,78.338318000000072],[-102.736107,78.342484000000127],[-102.68639400000001,78.350540000000024],[-102.66583299999991,78.358596999999975],[-102.67083699999995,78.36303700000002],[-102.69499199999996,78.367752000000053],[-102.72250400000001,78.371368000000075],[-102.77778599999994,78.376372999999944],[-102.80610699999994,78.377762000000132],[-102.83583099999998,78.376372999999944],[-102.88999899999999,78.36914100000007],[-102.92027299999995,78.365814000000114],[-102.93804899999992,78.364699999999971],[-102.96694899999989,78.364150999999993],[-103.02443699999998,78.365265000000136],[-103.13390400000003,78.36914100000007],[-103.16388699999999,78.366928000000087],[-103.21417200000002,78.356644000000074],[-103.23832700000003,78.350540000000024],[-103.26471699999996,78.34526100000005],[-103.38110399999988,78.3316650000001],[-103.41111799999999,78.329437000000098],[-103.49804699999999,78.327774000000034],[-103.52749599999987,78.326385000000016],[-103.58473200000003,78.321930000000009],[-103.67999299999997,78.3119200000001],[-103.75110599999999,78.301376000000062],[-103.78195199999999,78.296097000000032],[-103.80803700000001,78.290543000000071],[-103.829453,78.284987999999998],[-103.87721299999998,78.272217000000069],[-103.89417300000002,78.252212999999927],[-103.89890299999996,78.245819000000097],[-103.91027800000001,78.241089000000045],[-103.93331899999998,78.237198000000149],[-103.96305799999999,78.233597000000088],[-103.99194299999999,78.233047000000056],[-104.02250699999996,78.234146000000067],[-104.04277000000002,78.23692299999999],[-104.06984699999987,78.242171999999982],[-104.08306899999997,78.244140999999956],[-104.110817,78.246643000000063],[-104.19027699999998,78.251663000000121],[-104.30471799999992,78.252212999999927],[-104.36361699999998,78.254439999999988],[-104.41251399999999,78.257767000000115],[-104.46749899999998,78.26527400000009],[-104.49445300000002,78.270538000000045],[-104.82055700000001,78.355820000000108],[-104.99194299999999,78.437759000000085],[-104.99999999999994,78.443862999999965],[-105.05055199999998,78.488037000000077],[-105.05139200000002,78.494431000000134],[-105.04305999999991,78.505829000000119],[-105.01194800000002,78.52165199999996],[-104.95361299999996,78.537491000000102],[-104.86860699999994,78.560531999999967],[-104.83139,78.569992000000013],[-104.806107,78.572495000000004],[-104.69638099999992,78.578873000000101],[-104.66665599999999,78.579712000000086],[-104.39778100000001,78.569992000000013],[-104.35500300000001,78.566375999999934],[-104.287781,78.555252000000053],[-104.26278699999995,78.549423000000047],[-104.21221899999995,78.539977999999962],[-104.1661069999999,78.53276100000005],[-104.14277600000003,78.529434000000094],[-104.08833300000003,78.524155000000121],[-104.03388999999999,78.519989000000066],[-103.93055699999996,78.516098],[-103.87110899999993,78.518051000000128],[-103.78250100000002,78.519714000000022],[-103.7225039999999,78.517211999999972],[-103.66583299999996,78.51249700000011],[-103.58860799999997,78.503875999999991],[-103.53333299999991,78.496367999999961],[-103.52362099999999,78.496094000000028],[-103.51834100000002,78.496933000000013],[-103.46584300000001,78.51748699999996],[-103.37805200000003,78.586105000000032],[-103.39998599999996,78.615540000000124],[-103.44666299999994,78.621368000000075],[-103.50611900000001,78.621368000000075],[-103.74082900000002,78.619705000000124],[-103.98554999999999,78.61692800000003],[-104.01000999999991,78.617203000000075],[-104.04215999999991,78.620681999999931],[-104.04222099999998,78.629973999999947],[-104.03278399999988,78.635269000000051],[-103.98916600000001,78.646103000000096],[-103.85193600000002,78.669434000000138],[-103.82611099999997,78.671921000000054],[-103.77223200000003,78.671097000000088],[-103.65834000000001,78.664993000000038],[-103.62888299999992,78.664429000000098],[-103.53943600000002,78.664993000000038],[-103.50917099999987,78.666382000000056],[-103.48361199999994,78.669144000000131],[-103.49082899999996,78.674987999999985],[-103.50306699999999,78.681091000000094],[-103.51306199999993,78.687484999999924],[-103.52778599999999,78.699417000000096],[-103.525284,78.705261000000121],[-103.51806599999998,78.710815000000082],[-103.48860200000001,78.715820000000122],[-103.439438,78.72026100000005],[-103.41221599999989,78.72026100000005],[-103.38861099999997,78.716933999999924],[-103.35804699999994,78.718597000000045],[-103.33389299999999,78.722488000000112],[-103.31916799999999,78.728591999999992],[-103.31639099999995,78.734420999999998],[-103.31889299999995,78.740264999999965],[-103.41665599999999,78.778870000000097],[-103.43916300000001,78.784988000000055],[-103.46806300000003,78.787491000000045],[-103.63971699999996,78.765273999999977],[-103.66915899999992,78.760544000000095],[-103.71056399999998,78.750000000000057],[-103.79611199999999,78.735809000000074],[-103.70249899999999,78.788315000000011],[-103.69526699999994,78.793868999999972],[-103.698036,78.799712999999997],[-103.72693599999997,78.802200000000084],[-103.86054999999999,78.806090999999981],[-103.87053699999996,78.806365999999969],[-103.886124,78.80442800000003],[-103.9083399999999,78.799149000000057],[-103.90556299999997,78.794144000000017],[-103.89639299999993,78.784714000000122],[-103.89083900000003,78.780273000000022],[-103.89527899999996,78.774994000000049],[-103.90527299999997,78.768875000000037],[-103.92916899999994,78.764998999999932],[-103.96056399999992,78.76138300000008],[-103.99109599999991,78.758881000000031],[-104.02166699999992,78.757492000000013],[-104.04943800000001,78.756378000000041],[-104.07389799999993,78.757767000000001],[-104.170547,78.765823000000069],[-104.19888300000002,78.770263999999997],[-104.21167000000003,78.776093000000003],[-104.21972699999998,78.782211000000132],[-104.21528599999999,78.793593999999985],[-104.16722099999998,78.816376000000105],[-104.13305700000001,78.827484000000084],[-104.04834,78.838882000000069],[-103.98665599999998,78.850265999999976],[-103.86054999999999,78.876648000000046],[-103.83139,78.886932000000115],[-103.82389799999999,78.892487000000017],[-103.82167099999992,78.898330999999985],[-103.82472199999995,78.903319999999951],[-103.86749299999997,78.916091999999992],[-103.96305799999999,78.929977000000065],[-103.98998999999998,78.932755000000043],[-104.00639299999995,78.935531999999967],[-104.029449,78.941650000000095],[-104.04750099999995,78.947754000000089],[-104.05332899999996,78.952208999999925],[-104.05387899999999,78.95748900000001],[-104.05222300000003,78.961380000000077],[-104.04778299999992,78.966659999999933],[-104.048607,78.971099999999979],[-104.05777,78.974152000000061],[-104.08112299999999,78.979431000000034],[-104.12943999999999,78.985809000000017],[-104.17859599999991,78.990265000000136],[-104.20361300000002,78.991653000000042],[-104.23388699999998,78.99192800000003],[-104.265556,78.988586000000112],[-104.45500199999998,78.956099999999992],[-104.47193899999996,78.950546000000031],[-104.51112399999994,78.910262999999986],[-104.53832999999997,78.881927000000019],[-104.56416300000001,78.864700000000028],[-104.57888799999989,78.858597000000088],[-104.78582799999998,78.806641000000013],[-104.81749699999995,78.802200000000084],[-104.87860099999995,78.798035000000084],[-104.90915699999999,78.796646000000067],[-104.96888699999994,78.797211000000118],[-104.98832700000003,78.798325000000091],[-105.01194800000002,78.803589000000102],[-105.02250699999996,78.809982000000048],[-105.02861000000001,78.815262000000075],[-105.02916699999997,78.821655000000078],[-105.02834300000001,78.832763999999941],[-105.01222200000001,78.844711000000075],[-104.83389299999999,78.926650999999993],[-104.68859899999995,78.993590999999981],[-104.67887899999999,78.999709999999993],[-104.674713,79.004990000000078],[-104.68110699999994,79.016663000000108],[-104.69415300000003,79.022766000000047],[-104.70805399999995,79.027771000000087],[-104.737213,79.031936999999971],[-104.90249599999993,79.04971299999994],[-104.98638899999997,79.043045000000006],[-105.01334399999996,79.038315000000125],[-105.09916699999991,79.02388000000002],[-105.12526700000001,79.021103000000096],[-105.15638699999988,79.019439999999975],[-105.39527900000002,79.011658000000068],[-105.42610200000001,79.011108000000036],[-105.48388699999998,79.013046000000145],[-105.51363399999997,79.016098000000056],[-105.54332699999998,79.020263999999941],[-105.5625,79.024428999999941],[-105.58138999999994,79.03054800000001],[-105.59084299999995,79.034424000000058],[-105.59944200000001,79.040268000000083],[-105.60665899999992,79.051926000000094],[-105.628601,79.161377000000073],[-105.62053699999996,79.172760000000096],[-105.48277300000001,79.306366000000082],[-105.45973199999997,79.324158000000125],[-105.43998699999997,79.329162999999994],[-105.40862299999992,79.328872999999987],[-105.38305699999995,79.326935000000049],[-105.33277899999996,79.319443000000092],[-105.19721999999996,79.299713000000111],[-105.16111799999999,79.297485000000108],[-105.12721299999998,79.297485000000108],[-105.10861199999999,79.298874000000126],[-105.01611300000002,79.310531999999967],[-104.95472699999993,79.315262000000018],[-104.85916099999997,79.319153000000085],[-104.74276700000001,79.322495000000004],[-104.58332799999999,79.329437000000098],[-104.54860699999989,79.331375000000037],[-104.49082900000002,79.339157],[-104.46083099999998,79.342209000000082],[-104.18167099999999,79.358871000000079],[-104.00723299999999,79.367752000000053],[-103.97778299999999,79.368866000000025],[-103.9491579999999,79.368042000000059],[-103.83500699999996,79.36442599999998],[-103.7225039999999,79.356934000000024],[-103.69526699999994,79.352203000000088],[-103.62053700000001,79.330551000000071],[-103.59388699999988,79.325821000000019]],[[-99.471663999999976,80.109711000000004],[-99.436661000000015,80.107208000000014],[-99.404723999999931,80.10803199999998],[-99.298049999999989,80.118866000000025],[-99.136672999999917,80.133040999999935],[-99.110549999999876,80.130539000000056],[-99.081680000000006,80.124695000000031],[-98.868880999999988,80.077774000000034],[-98.856658999999922,80.07249500000006],[-98.774719000000005,80.01527400000009],[-98.705841000000021,79.965820000000065],[-98.644164999999873,79.800261999999918],[-98.644164999999873,79.794144000000017],[-98.648620999999878,79.783599999999922],[-98.673049999999989,79.771927000000119],[-98.779175000000009,79.702208999999982],[-98.830001999999922,79.664429000000098],[-98.868057000000022,79.700821000000076],[-98.936110999999983,79.719711000000018],[-98.967772999999909,79.724152000000117],[-99.139998999999932,79.740814000000114],[-99.243056999999965,79.748596000000077],[-99.273620999999935,79.751389000000017],[-99.301391999999908,79.75471500000009],[-99.317229999999995,79.758605999999986],[-99.324448000000018,79.762497000000053],[-99.325561999999991,79.767487000000074],[-99.322509999999909,79.771378000000141],[-99.313048999999921,79.776093000000003],[-99.304717999999923,79.782211000000132],[-99.302779999999984,79.787490999999989],[-99.297501000000011,79.812759000000085],[-99.295837000000006,79.833328000000051],[-99.296386999999925,79.839157000000057],[-99.302215999999873,79.845261000000107],[-99.315826000000015,79.848602000000142],[-99.368880999999988,79.857758000000103],[-99.556655999999919,79.888885000000016],[-99.584441999999967,79.891937000000098],[-99.614166000000012,79.893326000000116],[-99.647781000000009,79.893051000000071],[-99.67971799999998,79.888046000000031],[-99.700835999999867,79.882750999999985],[-99.732223999999974,79.878860000000088],[-99.800827000000027,79.876648000000046],[-100.00556899999998,79.8744200000001],[-100.03582799999992,79.874695000000088],[-100.07028199999996,79.876923000000033],[-100.09777800000001,79.881088000000034],[-100.12110899999999,79.886658000000125],[-100.14389,79.893051000000071],[-100.15862299999998,79.898605000000089],[-100.17748999999998,79.909988000000112],[-100.17832900000002,79.915817000000118],[-100.19332900000001,80.03387500000008],[-100.08167999999989,80.084427000000005],[-100.06555200000003,80.089980999999966],[-100.02362099999993,80.099716000000058],[-99.827224999999999,80.143599999999992],[-99.795272999999952,80.147766000000104],[-99.759170999999981,80.149719000000005],[-99.726944000000003,80.150542999999971],[-99.625548999999921,80.148880000000077],[-99.599990999999989,80.145263999999997],[-99.593886999999881,80.139160000000004],[-99.571120999999948,80.132751000000098],[-99.471663999999976,80.109711000000004]],[[-99.155563000000029,80.174697999999978],[-99.127212999999927,80.168045000000006],[-99.113891999999964,80.163879000000122],[-99.138061999999991,80.162491000000045],[-99.160552999999993,80.163040000000137],[-99.184998000000007,80.167755],[-99.251952999999901,80.173035000000084],[-99.277495999999985,80.173035000000084],[-99.313613999999973,80.171097000000145],[-99.341384999999946,80.166092000000106],[-99.333069000000023,80.159424000000115],[-99.30360399999995,80.153870000000097],[-99.305556999999908,80.148331000000098],[-99.342498999999918,80.145538000000101],[-99.375274999999931,80.147217000000126],[-99.400557999999933,80.150818000000015],[-99.418059999999969,80.157211000000132],[-99.418335000000013,80.163040000000137],[-99.413329999999974,80.168868999999972],[-99.386947999999961,80.17886400000009],[-99.366942999999935,80.182205000000124],[-99.239165999999898,80.183868000000075],[-99.211944999999957,80.182205000000124],[-99.155563000000029,80.174697999999978]],[[-95.030837999999903,80.670258000000047],[-94.969451999999933,80.640274000000034],[-94.970551,80.635268999999994],[-94.981383999999991,80.631927000000076],[-95.006957999999997,80.626648000000046],[-95.190276999999924,80.608871000000022],[-95.226104999999961,80.60914600000001],[-95.453613000000018,80.629424999999969],[-95.611114999999984,80.648040999999978],[-95.676940999999943,80.653319999999951],[-95.711945000000014,80.654433999999981],[-95.749160999999958,80.653869999999984],[-95.788054999999929,80.652205999999978],[-95.823623999999938,80.648604999999918],[-95.86332699999997,80.645828000000051],[-96.061935000000005,80.656647000000078],[-96.118056999999965,80.660537999999974],[-96.14916999999997,80.664703000000145],[-96.139449999999954,80.669708000000014],[-96.076675000000023,80.683043999999995],[-96.028335999999967,80.687195000000088],[-96.006119000000012,80.688034000000016],[-95.491378999999995,80.699997000000053],[-95.424438000000009,80.699707000000046],[-95.200561999999934,80.697479000000101],[-95.166945999999939,80.695250999999985],[-95.128875999999934,80.691925000000083],[-95.096663999999976,80.688582999999994],[-95.062499999999943,80.682480000000055],[-95.065276999999924,80.680542000000116],[-95.045836999999949,80.676926000000037],[-95.030837999999903,80.670258000000047]],[[-92.727782999999931,81.305542000000059],[-92.530288999999982,81.284988000000112],[-92.21305799999999,81.245529000000033],[-92.148055999999997,81.236374000000126],[-92.124709999999936,81.232758000000103],[-92.052489999999921,81.218597000000102],[-91.955841000000021,81.196365000000014],[-91.858046999999999,81.167755],[-91.781677000000002,81.090271000000143],[-91.783889999999928,81.083602999999982],[-91.797501000000011,81.081665000000044],[-91.832503999999972,81.080276000000083],[-91.888061999999934,81.081940000000088],[-91.914444000000003,81.078049000000021],[-91.913894999999968,81.07499700000011],[-91.908614999999998,81.070540999999992],[-91.893341000000021,81.064986999999974],[-91.865828999999962,81.058594000000028],[-91.767226999999934,81.049148999999943],[-91.72222899999997,81.042205999999965],[-91.538895000000025,80.981658999999979],[-91.52555799999999,80.974990999999989],[-91.522781000000009,80.962769000000037],[-91.531676999999945,80.951096000000007],[-91.527221999999995,80.939697000000081],[-91.517776000000026,80.932754999999986],[-91.481673999999998,80.919434000000024],[-91.321121000000005,80.882750999999985],[-91.306106999999997,80.875534000000016],[-91.152221999999995,80.785538000000031],[-91.154998999999975,80.78054800000001],[-91.14916999999997,80.770263999999997],[-91.140563999999983,80.764709000000096],[-91.121658000000025,80.754715000000033],[-91.099441999999954,80.74803200000008],[-91.03472899999997,80.737488000000042],[-90.972777999999948,80.730270000000019],[-90.905272999999966,80.724425999999994],[-90.777221999999995,80.71775800000006],[-90.754181000000017,80.714995999999928],[-90.712783999999999,80.705551000000071],[-90.664718999999991,80.684708000000001],[-90.652495999999928,80.67804000000001],[-90.603881999999999,80.651382000000012],[-90.593612999999948,80.645264000000111],[-90.593063000000029,80.640823000000012],[-90.601943999999946,80.636107999999979],[-90.615829000000019,80.630264000000125],[-90.678054999999972,80.615540000000067],[-90.715835999999911,80.605545000000006],[-90.742492999999911,80.594711000000075],[-90.763061999999991,80.583603000000096],[-90.771666999999979,80.577484000000084],[-90.772780999999952,80.571930000000066],[-90.766402999999912,80.565536000000066],[-90.741378999999938,80.562195000000031],[-90.706116000000009,80.561371000000065],[-90.607223999999917,80.561371000000065],[-90.583069000000023,80.561371000000065],[-90.418059999999912,80.552200000000084],[-90.238891999999964,80.550536999999963],[-90.203339000000028,80.549712999999997],[-90.177215999999987,80.548874000000069],[-90.046386999999925,80.541656000000046],[-90.016402999999968,80.538039999999967],[-90,80.534591999999975],[-89.989990000000034,80.532486000000006],[-89.961394999999982,80.520263999999997],[-89.955565999999976,80.515548999999965],[-89.938598999999954,80.508330999999998],[-89.84056099999998,80.481369000000086],[-89.81639100000001,80.474991000000102],[-89.790282999999931,80.469437000000084],[-89.762511999999958,80.464995999999985],[-89.75111400000003,80.464432000000045],[-89.784163999999919,80.500824000000023],[-89.748336999999879,80.532760999999994],[-89.586945000000014,80.545532000000094],[-89.546111999999994,80.547485000000052],[-89.482773000000009,80.544983000000002],[-89.447219999999902,80.542480000000012],[-89.354172000000005,80.534988000000055],[-89.326400999999919,80.531937000000028],[-89.272781000000009,80.523315000000025],[-89.244995000000017,80.517212000000086],[-89.059158000000025,80.461380000000133],[-89.087508999999955,80.438583000000051],[-89.115279999999927,80.433868000000018],[-89.176101999999958,80.426651000000049],[-89.198333999999932,80.42164600000001],[-89.20944199999991,80.417754999999943],[-89.235001000000011,80.408035000000041],[-89.25,80.402206000000035],[-89.257232999999985,80.396942000000081],[-89.253615999999965,80.392761000000007],[-89.237212999999997,80.388596000000007],[-89.216948999999943,80.389709000000039],[-89.189712999999927,80.394149999999968],[-89.167496000000028,80.399155000000007],[-89.136123999999995,80.40248100000008],[-89.09973100000002,80.40248100000008],[-89.083327999999881,80.398331000000042],[-89.075835999999924,80.393051000000014],[-89.104995999999915,80.339431999999988],[-89.114165999999955,80.333327999999938],[-89.125274999999931,80.327773999999977],[-89.143616000000009,80.323318000000029],[-89.169158999999979,80.318054000000075],[-89.220275999999899,80.30914300000012],[-89.241942999999935,80.304153000000099],[-89.256667999999991,80.298599000000081],[-89.263900999999976,80.293320000000108],[-89.262221999999952,80.286652000000117],[-89.25140399999998,80.278320000000122],[-89.180496000000005,80.238174000000072],[-89.113892000000021,80.208038000000045],[-89.092223999999987,80.200821000000133],[-89.072784000000013,80.195526000000086],[-88.776672000000019,80.131363000000022],[-88.75,80.126647999999989],[-88.534728999999913,80.09887700000013],[-88.49888599999997,80.09887700000013],[-88.441939999999931,80.100540000000024],[-88.414718999999991,80.104980000000069],[-88.414444000000003,80.10803199999998],[-88.363051999999925,80.124420000000043],[-88.235274999999888,80.102477999999962],[-88.161941999999954,80.09165999999999],[-88.145554000000004,80.093872000000033],[-88.148346000000004,80.098037999999974],[-88.261397999999929,80.18803400000013],[-88.27305599999994,80.195526000000086],[-88.294158999999979,80.201385000000073],[-88.350829999999974,80.208878000000084],[-88.422775000000001,80.210541000000035],[-88.479996000000028,80.213608000000136],[-88.506957999999941,80.218322999999998],[-88.595276000000013,80.236923000000104],[-88.618057000000022,80.24331699999999],[-88.630279999999914,80.249145999999996],[-88.661391999999921,80.272491000000116],[-88.684432999999956,80.358597000000145],[-88.68582200000003,80.365540000000124],[-88.685271999999998,80.371643000000063],[-88.683059999999955,80.376923000000147],[-88.67721599999993,80.382751000000042],[-88.648894999999925,80.393600000000106],[-88.615279999999927,80.40387000000004],[-88.510284000000013,80.428864000000033],[-88.487777999999992,80.433868000000018],[-88.463333000000034,80.438034000000073],[-88.420546999999999,80.442200000000014],[-88.383895999999993,80.443588000000091],[-88.308333999999945,80.442749000000106],[-88.110549999999932,80.4327550000001],[-87.918883999999991,80.421097000000088],[-87.718613000000005,80.411102000000142],[-87.683884000000035,80.410263000000043],[-87.666396999999904,80.40387000000004],[-87.636123999999938,80.36692800000003],[-87.607498000000021,80.324158000000068],[-87.563889000000017,80.233322000000044],[-87.561935000000005,80.183593999999914],[-87.562774999999931,80.179153000000042],[-87.572234999999921,80.176086000000112],[-87.678054999999915,80.156371999999976],[-87.721389999999985,80.153046000000131],[-87.939162999999951,80.143875000000037],[-87.96665999999999,80.139434999999992],[-88.048889000000031,80.125809000000004],[-88.065552000000025,80.120818999999983],[-88.060546999999985,80.117477000000065],[-87.956664999999987,80.069717000000026],[-87.938048999999978,80.06442300000009],[-87.891387999999949,80.055542000000116],[-87.860001000000011,80.053588999999988],[-87.836120999999935,80.0577550000001],[-87.823059000000001,80.062484999999924],[-87.763061999999934,80.071106000000043],[-87.720000999999911,80.074707000000103],[-87.680557000000022,80.076385000000016],[-87.641678000000013,80.076385000000016],[-87.365004999999996,80.072768999999994],[-87.299987999999985,80.069443000000092],[-87.275557999999876,80.066939999999931],[-87.258620999999948,80.063873000000058],[-87.233321999999987,80.057480000000055],[-87.215285999999992,80.050537000000077],[-87.043334999999956,79.964996000000099],[-87.093612999999948,79.929428000000087],[-87.314437999999996,79.866088999999988],[-87.336120999999935,79.861374000000126],[-87.368332000000009,79.857208000000071],[-87.446655000000021,79.856094000000098],[-87.471938999999907,79.852478000000019],[-87.483062999999959,79.847214000000065],[-87.489440999999943,79.84137000000004],[-87.485549999999876,79.834991000000002],[-87.463622999999984,79.831374999999923],[-87.439162999999951,79.831940000000145],[-87.412780999999995,79.833328000000051],[-87.338608000000022,79.840820000000008],[-87.190826000000015,79.866088999999988],[-87.165558000000033,79.871094000000028],[-87.146956999999929,79.875534000000073],[-87.079726999999934,79.896103000000039],[-87.051392000000021,79.906647000000078],[-87.024718999999948,79.916091999999935],[-87.003066999999987,79.917755000000056],[-86.985824999999977,79.917755000000056],[-86.973891999999864,79.916381999999942],[-86.961394999999982,79.909988000000112],[-86.957779000000016,79.903594999999939],[-86.960555999999997,79.891372999999987],[-87.055557000000022,79.731934000000081],[-87.134170999999924,79.645264000000111],[-87.14416499999993,79.637771999999984],[-87.154998999999975,79.6336060000001],[-87.173049999999989,79.629149999999981],[-87.258620999999948,79.610260000000039],[-87.344451999999933,79.596374999999966],[-87.425551999999982,79.579163000000108],[-87.441665999999941,79.573883000000023],[-87.448043999999982,79.568329000000062],[-87.462509000000011,79.534713999999951],[-87.441939999999988,79.526382000000012],[-87.406661999999983,79.515823000000125],[-87.390563999999927,79.511108000000092],[-87.366394000000014,79.506378000000041],[-87.345276000000013,79.503052000000025],[-87.309998000000007,79.50221300000004],[-87.280563000000029,79.506943000000092],[-87.262786999999946,79.51138300000008],[-87.248336999999992,79.516937000000098],[-87.190552000000025,79.543593999999985],[-87.182769999999948,79.548874000000069],[-87.179992999999968,79.554153000000042],[-87.168883999999991,79.566376000000105],[-87.161117999999931,79.571655000000078],[-87.076675000000023,79.587493999999992],[-87.02555799999999,79.595535000000098],[-87.001113999999973,79.598877000000016],[-86.966659999999933,79.60165400000011],[-86.932495000000017,79.60165400000011],[-86.841384999999946,79.59304800000001],[-86.823623999999995,79.587769000000037],[-86.819732999999985,79.576096000000007],[-86.823897999999986,79.566086000000098],[-86.839721999999995,79.555817000000047],[-86.846389999999985,79.549988000000042],[-86.837783999999999,79.543320000000051],[-86.816665999999998,79.539703000000145],[-86.789992999999981,79.538878999999952],[-86.777221999999995,79.542206000000078],[-86.694991999999957,79.567490000000078],[-86.693329000000006,79.573608000000036],[-86.71055599999994,79.587203999999986],[-86.723891999999978,79.594437000000028],[-86.746383999999978,79.599990999999989],[-86.802489999999977,79.606093999999928],[-86.813048999999921,79.61192299999999],[-86.806380999999874,79.617751999999996],[-86.795272999999952,79.621643000000063],[-86.77694699999995,79.627472000000068],[-86.762222000000008,79.631653000000142],[-86.687209999999993,79.645264000000111],[-86.640838999999914,79.653320000000008],[-86.613051999999925,79.655822999999998],[-86.575012000000015,79.657211000000075],[-86.547775000000001,79.65637200000009],[-86.334166999999923,79.645538000000045],[-86.302779999999984,79.642761000000121],[-86.279448999999943,79.640274000000034],[-86.258895999999993,79.63499500000006],[-86.109160999999972,79.595260999999994],[-86.046111999999994,79.568877999999984],[-86.042220999999927,79.565536000000066],[-86.028060999999923,79.474701000000096],[-86.05471799999998,79.470535000000041],[-86.160552999999993,79.463608000000136],[-86.167496000000028,79.457764000000111],[-86.136123999999995,79.444702000000063],[-86.120834000000002,79.439972000000068],[-86.098891999999921,79.435806000000127],[-86.070847000000015,79.434143000000063],[-86.035004000000015,79.436371000000008],[-86.011947999999961,79.440262000000075],[-85.990554999999972,79.444977000000108],[-85.975829999999917,79.449142000000109],[-85.964171999999962,79.454436999999984],[-85.901108000000022,79.493591000000038],[-85.887222000000008,79.505264000000068],[-85.885283999999956,79.51138300000008],[-85.893341000000021,79.523315000000082],[-85.89916999999997,79.536377000000073],[-85.896666999999979,79.549149000000114],[-85.893341000000021,79.554703000000075],[-85.887786999999946,79.56109600000002],[-85.847504000000015,79.596374999999966],[-85.840285999999992,79.601928999999927],[-85.828339000000028,79.607483000000116],[-85.781386999999995,79.615540000000124],[-85.743606999999997,79.61692800000003],[-85.681945999999925,79.613312000000121],[-85.639175000000023,79.604155999999989],[-85.623885999999914,79.599152000000061],[-85.591385000000002,79.585266000000047],[-85.531112999999948,79.559418000000107],[-85.485000999999954,79.518600000000049],[-85.402221999999995,79.473602000000142],[-85.306655999999919,79.428314],[-85.27806099999998,79.415543000000127],[-85.150557999999933,79.38220200000012],[-85.130279999999971,79.378586000000098],[-85.039718999999877,79.350815000000011],[-84.93249499999996,79.300262000000032],[-84.920273000000009,79.293320000000108],[-84.904175000000009,79.276657000000057],[-84.904175000000009,79.267761000000121],[-84.909728999999857,79.263046000000088],[-84.93110699999994,79.258331000000055],[-85.099990999999932,79.239426000000094],[-85.158889999999928,79.231933999999967],[-85.211394999999868,79.223311999999964],[-85.232772999999952,79.218872000000147],[-85.248046999999872,79.213042999999971],[-85.260009999999909,79.207763999999997],[-85.271941999999967,79.19720500000011],[-85.280563000000029,79.192200000000071],[-85.297226000000023,79.187195000000031],[-85.591385000000002,79.15415999999999],[-85.779998999999918,79.131088000000034],[-85.877212999999983,79.121642999999949],[-86.00389100000001,79.111374000000126],[-86.158889999999985,79.103316999999947],[-86.271392999999989,79.095534999999984],[-86.341674999999952,79.088318000000072],[-86.422501000000011,79.075546000000088],[-86.485549999999989,79.063309000000118],[-86.550827000000027,79.048874000000012],[-86.55999799999995,79.044434000000138],[-86.555557000000022,79.042480000000126],[-86.550827000000027,79.035538000000031],[-86.552490000000034,79.029434000000037],[-86.55999799999995,79.012206999999989],[-86.587783999999942,78.983597000000145],[-86.598891999999921,78.978317000000061],[-86.614440999999943,78.973312000000021],[-86.676940999999886,78.959717000000126],[-86.702224999999942,78.955261000000064],[-86.741378999999938,78.951934999999992],[-86.765015000000005,78.953598000000113],[-86.785004000000015,78.957213999999965],[-86.808334000000002,78.967209000000082],[-86.903335999999854,79.009430000000066],[-86.916396999999961,79.016663000000108],[-86.926391999999964,79.035812000000135],[-86.930556999999965,79.047760000000039],[-86.940551999999968,79.053589000000045],[-86.949158000000011,79.057205000000067],[-86.965285999999935,79.057480000000112],[-86.98332199999993,79.056641000000127],[-86.989989999999977,79.047760000000039],[-87.004456000000005,78.987198000000035],[-87.002501999999993,78.981369000000029],[-86.986937999999952,78.949707000000046],[-86.979995999999971,78.9433140000001],[-86.966948999999943,78.936371000000122],[-86.950835999999981,78.929428000000087],[-86.942764000000011,78.922485000000108],[-86.937774999999988,78.91693099999992],[-86.952498999999932,78.906647000000078],[-86.97084000000001,78.896103000000039],[-86.997498000000007,78.882477000000051],[-87.021666999999923,78.873032000000023],[-87.052490000000034,78.862762000000089],[-87.179442999999935,78.830551000000014],[-87.282775999999956,78.810257000000036],[-87.328063999999983,78.794708000000128],[-87.353881999999999,78.78414900000007],[-87.529998999999918,78.6869200000001],[-87.532776000000013,78.669983000000116],[-87.543059999999969,78.664703000000031],[-87.572783999999956,78.654433999999981],[-87.591949,78.649718999999948],[-87.615829000000019,78.645264000000111],[-87.663054999999986,78.642487000000017],[-87.684432999999956,78.644989000000123],[-87.872771999999941,78.694977000000051],[-87.937774999999874,78.738312000000064],[-87.953612999999962,78.74971000000005],[-87.959166999999979,78.755264000000068],[-87.993880999999931,78.79525799999999],[-88.003341999999918,78.807205000000124],[-88.00140399999998,78.824158000000011],[-87.985275000000001,78.957213999999965],[-87.981673999999884,78.960541000000092],[-87.968338000000017,78.966385000000116],[-87.894164999999987,78.979706000000078],[-87.833617999999944,78.992203000000075],[-87.81361400000003,78.99693300000007],[-87.794448999999986,79.006943000000035],[-87.728881999999942,79.069442999999978],[-87.724715999999944,79.075821000000076],[-87.733886999999982,79.081100000000049],[-87.746108999999933,79.086104999999918],[-87.752791999999999,79.085540999999978],[-87.772780999999952,79.080825999999945],[-87.806380999999931,79.06999200000007],[-87.849166999999966,79.054977000000122],[-87.872771999999941,79.045258000000103],[-87.883330999999998,79.039978000000076],[-87.894454999999994,79.028320000000008],[-87.890288999999996,79.021652000000074],[-87.899993999999992,79.011108000000036],[-87.929442999999992,79.006943000000035],[-88.000564999999995,79.00360100000006],[-88.032776000000013,79.003876000000105],[-88.061385999999914,79.005829000000006],[-88.093886999999938,79.004440000000045],[-88.162506000000008,78.990540000000124],[-88.202498999999932,78.976379000000122],[-88.21305799999999,78.966095000000109],[-88.215285999999935,78.960815000000025],[-88.216659999999933,78.948318000000029],[-88.229720999999984,78.802200000000084],[-88.224716000000001,78.78915399999994],[-88.22222899999997,78.783324999999934],[-88.218063000000029,78.776931999999988],[-88.201110999999969,78.757216999999969],[-88.132216999999969,78.68081699999999],[-88.044158999999922,78.658600000000092],[-88.02416999999997,78.656647000000135],[-88.010833999999932,78.652771000000087],[-87.993056999999965,78.645264000000111],[-87.982772999999952,78.639435000000105],[-87.908614999999998,78.596939000000077],[-87.894729999999981,78.584717000000126],[-87.890839000000028,78.578323000000069],[-87.896956999999873,78.566375999999934],[-87.908339999999953,78.548599000000081],[-87.984725999999966,78.492202999999961],[-88.011948000000018,78.481369000000086],[-88.055832000000009,78.472762999999986],[-88.205276000000026,78.452484000000084],[-88.234160999999972,78.453598000000056],[-88.249160999999958,78.456649999999968],[-88.389450000000011,78.521378000000027],[-88.559432999999899,78.604156000000046],[-88.574721999999952,78.607208000000128],[-88.723052999999993,78.615814000000057],[-88.788605000000018,78.612761999999975],[-88.804168999999945,78.609711000000118],[-88.746108999999933,78.535812000000078],[-88.725006000000008,78.524155000000121],[-88.659164000000033,78.491088999999988],[-88.595276000000013,78.459991000000002],[-88.5625,78.44470200000012],[-88.552215999999987,78.437484999999981],[-88.543883999999991,78.426086000000112],[-88.535552999999993,78.413040000000137],[-88.536117999999931,78.406937000000028],[-88.538054999999986,78.401382000000126],[-88.541381999999999,78.396652000000074],[-88.553054999999915,78.385544000000095],[-88.561110999999983,78.379425000000083],[-88.570556999999951,78.373871000000065],[-88.614715999999987,78.348327999999981],[-88.663329999999974,78.321381000000031],[-88.672501000000011,78.316085999999984],[-88.704177999999956,78.271103000000096],[-88.710555999999997,78.261107999999979],[-88.713897999999858,78.254715000000033],[-88.71556099999998,78.249146000000053],[-88.716110000000015,78.243042000000003],[-88.721114999999941,78.231093999999985],[-88.726105000000018,78.225266000000033],[-88.75140399999998,78.196930000000123],[-88.776672000000019,78.176085999999941],[-88.78443900000002,78.169983000000002],[-88.793334999999956,78.164429000000041],[-88.817779999999914,78.154434000000094],[-88.847777999999948,78.151382000000012],[-88.978881999999942,78.165817000000118],[-89.002791999999943,78.169434000000081],[-89.065001999999879,78.184418000000107],[-89.079726999999991,78.189147999999989],[-89.115828999999962,78.200821000000019],[-89.227492999999981,78.245254999999986],[-89.259170999999924,78.262771999999984],[-89.265014999999948,78.268326000000002],[-89.275283999999999,78.281936999999971],[-89.353881999999885,78.339705999999978],[-89.364440999999999,78.344147000000078],[-89.381103999999993,78.3477630000001],[-89.518341000000021,78.392212000000086],[-89.676665999999955,78.447478999999987],[-89.803878999999995,78.494431000000134],[-89.819457999999997,78.500549000000092],[-89.891113000000018,78.552764999999965],[-89.921660999999972,78.578048999999965],[-89.945830999999998,78.599425999999994],[-89.95695499999988,78.605255],[-89.980559999999969,78.609711000000118],[-90.014724999999885,78.609421000000111],[-90.051391999999964,78.605820000000051],[-90.088332999999977,78.595825000000104],[-90.092498999999975,78.589980999999909],[-90.09973100000002,78.555252000000053],[-90.100829999999974,78.549713000000054],[-90.064712999999927,78.513321000000076],[-89.985000999999954,78.43609600000002],[-89.960555999999997,78.432480000000112],[-89.936110999999983,78.430267000000015],[-89.910004000000015,78.426086000000112],[-89.869995000000017,78.417755],[-89.80972300000002,78.404709000000082],[-89.785278000000005,78.398041000000092],[-89.774445000000014,78.39387499999998],[-89.748046999999929,78.380264000000011],[-89.615554999999858,78.300262000000032],[-89.606109999999944,78.293319999999994],[-89.461670000000026,78.17553700000002],[-89.455841000000021,78.169983000000002],[-89.452498999999989,78.162491000000045],[-89.461670000000026,78.158599999999979],[-89.476668999999958,78.153869999999984],[-89.507781999999963,78.149994000000106],[-89.530288999999982,78.148330999999985],[-89.549437999999952,78.148605000000089],[-89.563048999999921,78.149719000000061],[-89.59584000000001,78.156937000000084],[-89.61860699999994,78.163040000000024],[-89.631942999999978,78.168594000000041],[-89.639724999999942,78.173309000000074],[-89.644164999999987,78.179703000000075],[-89.646118000000001,78.184707999999944],[-89.646118000000001,78.19720500000011],[-89.64805599999994,78.202209000000096],[-89.654174999999952,78.209427000000119],[-89.657226999999978,78.212203999999986],[-89.673888999999974,78.217209000000082],[-89.700835999999981,78.219147000000021],[-89.748885999999914,78.217209000000082],[-89.783324999999934,78.214431999999988],[-89.847778000000005,78.213042999999971],[-89.886948000000018,78.215271000000087],[-89.911117999999988,78.218872000000147],[-89.929169000000002,78.223038000000088],[-89.955276000000026,78.233322000000101],[-89.960281000000009,78.238311999999951],[-89.961945000000014,78.243590999999924],[-89.959441999999967,78.254439999999988],[-89.955001999999922,78.260544000000039],[-89.980285999999921,78.27777100000003],[-90.023330999999985,78.298035000000027],[-90.060271999999998,78.308029000000033],[-90.172500999999954,78.331100000000049],[-90.186110999999926,78.333327999999995],[-90.213622999999984,78.335265999999933],[-90.242492999999854,78.336105000000089],[-90.27416999999997,78.334991000000116],[-90.34056099999998,78.331100000000049],[-90.411391999999921,78.324432000000058],[-90.478881999999999,78.321106000000043],[-90.507781999999963,78.320540999999992],[-90.59445199999999,78.322768999999937],[-90.620269999999948,78.325546000000031],[-90.667770000000019,78.32748399999997],[-90.729445999999996,78.326096000000064],[-90.744445999999982,78.323043999999982],[-90.748610999999983,78.320267000000058],[-90.73721299999994,78.314423000000033],[-90.715560999999923,78.309143000000006],[-90.622771999999941,78.291091999999992],[-90.598343,78.287490999999932],[-90.544998000000021,78.283051000000114],[-90.46166999999997,78.27887000000004],[-90.410277999999948,78.276657000000057],[-90.363327000000027,78.256942999999978],[-90.273894999999982,78.192200000000071],[-90.267501999999922,78.18664600000011],[-90.268889999999999,78.182755000000043],[-90.272781000000009,78.17692599999998],[-90.293883999999991,78.159988000000112],[-90.301102000000014,78.15525800000006],[-90.330291999999986,78.146103000000039],[-90.353881999999942,78.143326000000116],[-90.433884000000035,78.136383000000137],[-90.465012000000002,78.135268999999937],[-90.497771999999941,78.134995000000004],[-90.624434999999949,78.134430000000009],[-90.711120999999991,78.135818000000086],[-90.967223999999987,78.142761000000064],[-91.021392999999989,78.146103000000039],[-91.039718999999991,78.150269000000094],[-91.238387999999986,78.166594999999973],[-91.326674999999966,78.168594000000041],[-91.489715999999873,78.17692599999998],[-91.539992999999924,78.181366000000025],[-91.613891999999964,78.191925000000083],[-91.661941999999897,78.199707000000046],[-91.707229999999981,78.209427000000119],[-91.724715999999944,78.214706000000092],[-91.807770000000005,78.23275799999999],[-91.831389999999999,78.23692299999999],[-91.857497999999964,78.239700000000084],[-91.887511999999901,78.239425999999924],[-91.920273000000009,78.237198000000149],[-91.946380999999974,78.23275799999999],[-91.963332999999977,78.227768000000083],[-91.974441999999954,78.223312000000021],[-91.986114999999984,78.214706000000092],[-92.003066999999987,78.209717000000126],[-92.031113000000005,78.207488999999953],[-92.058334000000002,78.208878000000141],[-92.083327999999995,78.212494000000049],[-92.105559999999969,78.217758000000003],[-92.308333999999945,78.278594999999996],[-92.537216000000001,78.310531999999967],[-92.556655999999975,78.314696999999967],[-92.589447000000007,78.323608000000092],[-92.949431999999888,78.43193100000002],[-92.96665999999999,78.44358799999992],[-92.982498000000021,78.454436999999984],[-92.98721299999994,78.46026599999999],[-92.987502999999947,78.465546000000074],[-92.978881999999942,78.483322000000044],[-92.96665999999999,78.488586000000055],[-92.863891999999964,78.505264000000125],[-92.848617999999988,78.505554000000132],[-92.690551999999968,78.49581900000004],[-92.646392999999932,78.487487999999928],[-92.621933000000013,78.487198000000092],[-92.600554999999986,78.488037000000077],[-92.576675000000023,78.490540000000067],[-92.520279000000016,78.498596000000134],[-92.493606999999997,78.503325999999959],[-92.48721299999994,78.507767000000058],[-92.487777999999992,78.509430000000009],[-92.497771999999998,78.513046000000031],[-92.563323999999966,78.520537999999988],[-92.529448999999943,78.521378000000027],[-92.24722300000002,78.52777100000003],[-92.216659999999933,78.528046000000018],[-92.070847000000015,78.525543000000027],[-92.011123999999938,78.526657],[-91.949996999999939,78.530273000000079],[-91.918610000000001,78.534424000000001],[-91.726395000000025,78.530548000000067],[-91.682495000000017,78.52609300000006],[-91.660827999999981,78.526932000000045],[-91.646117999999944,78.529984000000127],[-91.636123999999938,78.533600000000035],[-91.632492000000013,78.539429000000041],[-91.635284000000013,78.546097000000032],[-91.647506999999962,78.560257000000092],[-91.657500999999968,78.563873000000001],[-91.670272999999952,78.56581100000011],[-91.945267000000001,78.572220000000129],[-92.151397999999915,78.579437000000041],[-92.351943999999946,78.586928999999998],[-92.557220000000029,78.594711000000132],[-92.58555599999994,78.596099999999979],[-92.604720999999984,78.598602000000028],[-92.697768999999994,78.614151000000106],[-92.733063000000016,78.62359600000002],[-92.757781999999963,78.628036000000009],[-92.806106999999997,78.6336060000001],[-92.828888000000006,78.631927000000076],[-92.907227000000034,78.62303200000008],[-92.935546999999985,78.618866000000139],[-92.935821999999973,78.614990000000091],[-92.941665999999998,78.608597000000145],[-92.955841000000021,78.603867000000093],[-92.991668999999945,78.599716000000001],[-93.176940999999999,78.586380000000077],[-93.210555999999997,78.584152000000074],[-93.242492999999968,78.582763999999997],[-93.271118000000001,78.584152000000074],[-93.28443900000002,78.587494000000049],[-93.434157999999968,78.6336060000001],[-93.771392999999989,78.750549000000035],[-93.813613999999973,78.765823000000069],[-93.802779999999927,78.770263999999997],[-93.684158000000025,78.782486000000006],[-93.650283999999999,78.784714000000122],[-93.589721999999995,78.783599999999979],[-93.534438999999963,78.778870000000097],[-93.429169000000002,78.767212000000086],[-93.376388999999961,78.760544000000095],[-93.351394999999968,78.756104000000107],[-93.299728000000016,78.748596000000077],[-93.24722300000002,78.741928000000087],[-93.190551999999968,78.736374000000126],[-93.163329999999974,78.735535000000141],[-93.09973100000002,78.737198000000092],[-93.054992999999968,78.739974999999959],[-93.04222099999987,78.745255000000043],[-93.039963,78.750000000000057],[-93.039443999999946,78.751099000000067],[-93.035277999999948,78.761932000000002],[-93.037780999999939,78.765823000000069],[-93.118880999999988,78.772491000000059],[-93.170273000000009,78.77998400000007],[-93.271941999999967,78.796097000000145],[-93.346389999999928,78.809982000000048],[-93.369155999999975,78.816086000000041],[-93.391388000000006,78.820831000000112],[-93.416397000000018,78.824996999999996],[-93.560546999999929,78.833328000000108],[-93.589721999999995,78.834717000000069],[-93.650283999999999,78.835541000000035],[-93.746947999999975,78.834991000000002],[-93.779723999999987,78.833603000000096],[-93.842772999999966,78.832489000000123],[-93.874709999999936,78.833603000000096],[-93.892501999999979,78.838042999999914],[-93.902221999999995,78.842484000000013],[-93.906386999999995,78.849152000000004],[-93.917495999999971,78.860535000000027],[-93.939437999999939,78.871643000000006],[-93.959441999999967,78.878310999999997],[-94.052490000000034,78.902481000000023],[-94.09584000000001,78.911102000000085],[-94.253066999999987,78.956940000000031],[-94.269729999999981,78.962204000000042],[-94.282227000000034,78.968872000000033],[-94.287506000000008,78.981093999999985],[-94.288605000000018,78.986374000000069],[-94.241378999999881,78.996643000000063],[-94.005279999999914,79.029709000000025],[-93.910277999999948,79.041930999999977],[-93.878051999999968,79.042480000000126],[-93.854720999999927,79.040543000000071],[-93.813889000000017,79.035538000000031],[-93.784164000000033,79.038040000000137],[-93.601943999999889,79.068328999999949],[-93.472778000000005,79.108871000000136],[-93.455565999999976,79.11970500000001],[-93.452498999999989,79.125534000000016],[-93.456664999999987,79.132202000000007],[-93.463333000000034,79.136932000000058],[-93.46055599999994,79.142761000000064],[-93.443054000000018,79.148041000000092],[-93.36610399999995,79.161377000000073],[-93.329726999999934,79.164428999999984],[-93.294997999999907,79.166931000000091],[-93.259170999999924,79.167480000000012],[-93.227782999999931,79.166931000000091],[-93.003066999999987,79.154434000000094],[-92.895553999999947,79.143875000000037],[-92.869720000000029,79.139708999999925],[-92.841109999999958,79.141098000000113],[-92.816101000000003,79.145537999999988],[-92.801392000000021,79.150269000000094],[-92.7933349999999,79.155823000000055],[-92.780288999999868,79.161102000000028],[-92.746947999999975,79.164153999999996],[-92.506957999999941,79.158324999999991],[-92.478606999999954,79.155823000000055],[-92.407500999999911,79.146102999999982],[-92.309433000000013,79.145264000000054],[-92.243057000000022,79.146941999999967],[-91.89805599999994,79.161377000000073],[-91.691939999999988,79.173309000000017],[-91.439162999999951,79.183593999999971],[-91.205275999999969,79.191925000000026],[-91.009170999999867,79.203048999999965],[-90.811934999999949,79.208038000000101],[-90.601669000000015,79.214157000000114],[-90.564162999999951,79.215546000000131],[-90.528335999999911,79.21748400000007],[-90.492767000000015,79.220825000000104],[-90.390839000000028,79.236374000000012],[-90.368331999999953,79.243042000000003],[-90.36326600000001,79.246811000000093],[-90.382216999999969,79.2494200000001],[-90.405563000000029,79.251938000000109],[-90.472778000000005,79.250823999999909],[-90.502227999999945,79.2494200000001],[-90.732223999999974,79.238312000000121],[-90.885833999999988,79.244141000000127],[-91.139998999999932,79.244431000000134],[-91.198883000000023,79.241364000000033],[-91.47084000000001,79.228867000000037],[-91.861114999999927,79.215271000000087],[-92.026397999999972,79.207489000000123],[-92.053604000000007,79.205261000000007],[-92.087783999999999,79.204163000000108],[-92.180832000000009,79.203048999999965],[-92.213897999999972,79.204163000000108],[-92.238892000000021,79.205551000000014],[-92.510284000000013,79.232757999999933],[-92.621933000000013,79.244431000000134],[-92.676666000000012,79.251389000000131],[-92.694716999999969,79.257217000000082],[-92.693053999999961,79.262207000000103],[-92.625548999999978,79.295258000000047],[-92.603881999999942,79.300812000000064],[-92.571944999999971,79.304153000000099],[-92.523330999999928,79.307755000000043],[-92.454453000000001,79.308594000000028],[-92.394729999999981,79.308594000000028],[-92.303329000000019,79.306366000000082],[-92.255004999999983,79.304428000000144],[-92.131377999999984,79.299988000000099],[-91.994995000000017,79.295258000000047],[-91.961944999999957,79.29553199999998],[-91.932494999999903,79.297211000000004],[-91.894164999999987,79.301085999999998],[-91.865279999999927,79.305542000000116],[-91.829452999999944,79.314697000000137],[-91.795546999999885,79.319153000000085],[-91.727492999999924,79.326096000000064],[-91.658889999999985,79.329987000000131],[-91.589721999999938,79.332214000000022],[-91.528884999999946,79.333054000000061],[-91.493880999999874,79.33248900000001],[-91.467498999999975,79.333602999999982],[-91.267776000000026,79.345824999999991],[-91.231673999999941,79.348037999999917],[-91.15834000000001,79.356093999999985],[-91.119995000000017,79.386383000000023],[-91.129165999999884,79.390823000000069],[-91.156386999999995,79.394440000000031],[-91.191100999999946,79.393326000000059],[-91.230559999999969,79.389434999999992],[-91.422225999999966,79.374146000000053],[-91.508621000000005,79.373306000000014],[-91.580841000000021,79.369141000000013],[-91.702224999999942,79.361374000000069],[-91.729720999999984,79.359421000000111],[-91.766662999999994,79.353317000000118],[-91.788329999999974,79.346375000000023],[-91.835281000000009,79.340820000000122],[-91.864715999999987,79.339431999999988],[-91.897781000000009,79.339157],[-92.150832999999977,79.344437000000084],[-92.18110699999994,79.345824999999991],[-92.210006999999962,79.348327999999924],[-92.290833000000021,79.358031999999923],[-92.351943999999946,79.362761999999975],[-92.41194200000001,79.36442599999998],[-92.510009999999966,79.364150999999993],[-92.561934999999949,79.365814000000057],[-92.571670999999867,79.37052900000009],[-92.577498999999989,79.379150000000038],[-92.567504999999869,79.384155000000078],[-92.479996000000028,79.404434000000037],[-92.462509000000011,79.406937000000028],[-92.41194200000001,79.411652000000061],[-92.31361400000003,79.418593999999928],[-92.243880999999988,79.426651000000106],[-92.228607000000011,79.431366000000139],[-92.227782999999931,79.435257000000036],[-92.228881999999999,79.438309000000118],[-92.234726000000023,79.441649999999981],[-92.241942999999935,79.444138000000123],[-92.259170999999981,79.446930000000066],[-92.283324999999991,79.449142000000109],[-92.33805799999999,79.453049000000078],[-92.419723999999974,79.457214000000079],[-92.580841000000021,79.452209000000039],[-92.605270000000019,79.450546000000088],[-92.634170999999981,79.445816000000036],[-92.679992999999968,79.437194999999974],[-92.774170000000026,79.417755],[-92.803054999999972,79.413040000000137],[-92.854445999999996,79.407760999999994],[-92.876098999999954,79.407760999999994],[-92.901671999999962,79.408874999999966],[-92.929442999999935,79.412490999999989],[-92.950835999999981,79.416382000000056],[-92.973327999999981,79.423598999999967],[-93.029175000000009,79.46026599999999],[-93.032775999999956,79.465546000000074],[-93.034728999999913,79.471649000000014],[-93.044723999999917,79.476089000000002],[-93.063048999999921,79.48054500000012],[-93.09056099999998,79.482208000000071],[-93.107223999999974,79.482208000000071],[-93.126662999999951,79.479980000000069],[-93.143889999999885,79.475815000000068],[-93.146666999999979,79.469986000000063],[-93.144454999999994,79.463882000000069],[-93.125,79.450821000000133],[-93.105834999999956,79.43942300000009],[-93.081389999999942,79.426376000000062],[-93.061110999999983,79.415817000000061],[-93.033614999999941,79.404434000000037],[-93.018889999999999,79.399719000000005],[-93.009170999999981,79.395263999999997],[-93.006957999999941,79.389160000000118],[-93.008347000000015,79.388046000000145],[-93.009445000000028,79.387206999999989],[-93.021392999999989,79.382751000000098],[-93.125,79.359711000000118],[-93.264175000000023,79.353592000000106],[-93.312499999999943,79.372757000000092],[-93.251113999999973,79.40498400000007],[-93.236114999999984,79.415268000000083],[-93.229720999999984,79.425537000000134],[-93.231383999999991,79.429977000000122],[-93.235001000000011,79.435257000000036],[-93.252501999999993,79.441924999999969],[-93.275833000000034,79.446640000000002],[-93.293334999999956,79.44802900000002],[-93.320007000000032,79.448317999999972],[-93.338057999999933,79.447205000000054],[-93.354445999999996,79.441360000000145],[-93.424437999999896,79.405258000000003],[-93.433059999999898,79.387496999999996],[-93.485275000000001,79.354156000000046],[-93.641387999999893,79.31164600000011],[-93.757507000000032,79.283600000000035],[-93.801940999999886,79.274704000000099],[-93.869995000000017,79.263885000000073],[-93.906661999999983,79.260544000000039],[-93.969726999999978,79.25749200000007],[-93.99722300000002,79.256942999999978],[-94.047225999999966,79.25749200000007],[-94.206954999999994,79.272490999999945],[-94.212219000000005,79.276657000000057],[-94.162780999999995,79.322220000000016],[-94.14805599999994,79.333602999999982],[-94.119720000000029,79.344711000000018],[-94.088608000000022,79.353592000000106],[-94.056380999999931,79.379700000000071],[-94.245834000000002,79.404160000000104],[-94.366652999999985,79.419708000000128],[-94.386123999999938,79.421371000000022],[-94.494720000000029,79.421371000000022],[-94.509170999999981,79.416382000000056],[-94.5,79.379700000000071],[-94.483063000000016,79.375809000000004],[-94.46305799999999,79.379150000000038],[-94.454453000000001,79.385544000000095],[-94.432769999999948,79.385544000000095],[-94.398055999999997,79.375259000000142],[-94.389998999999989,79.368866000000025],[-94.506667999999991,79.337204000000042],[-94.538054999999929,79.333602999999982],[-94.573623999999938,79.331100000000049],[-94.638900999999976,79.33248900000001],[-94.669997999999964,79.331375000000037],[-94.697495000000004,79.326660000000004],[-94.720001000000025,79.321655000000135],[-94.765015000000005,79.31164600000011],[-94.952498999999932,79.289978000000019],[-94.970000999999968,79.284714000000008],[-94.972777999999892,79.273880000000133],[-94.977218999999991,79.270264000000111],[-94.985824999999977,79.267487000000017],[-95.018616000000009,79.266936999999984],[-95.087555000000009,79.27075200000013],[-95.161666999999966,79.281097000000045],[-95.304992999999968,79.325821000000019],[-95.318619000000012,79.332214000000022],[-95.32028200000002,79.335266000000104],[-95.294448999999986,79.336655000000121],[-95.285004000000015,79.353042999999957],[-95.295837000000006,79.379425000000026],[-95.394164999999987,79.387496999999996],[-95.477218999999991,79.380814000000044],[-95.655563000000029,79.391663000000108],[-95.753341999999975,79.404434000000037],[-95.771666999999979,79.409714000000065],[-95.778609999999958,79.413040000000137],[-95.779449,79.425812000000121],[-95.736388999999974,79.537491000000045],[-95.657500999999968,79.553314000000114],[-95.636123999999938,79.557479999999998],[-95.565552000000025,79.55914300000012],[-95.309722999999963,79.569153000000028],[-95.170273000000009,79.575272000000041],[-95.051665999999955,79.582214000000135],[-94.839995999999871,79.597214000000122],[-94.802489999999977,79.600540000000137],[-94.699432000000002,79.612198000000149],[-94.40695199999999,79.667755000000113],[-94.360275000000001,79.677765000000022],[-94.329453000000001,79.688309000000061],[-94.282776000000013,79.757492000000013],[-94.28694200000001,79.762772000000041],[-94.298339999999996,79.76887499999998],[-94.318344000000025,79.778595000000053],[-94.335281000000009,79.780823000000055],[-94.361664000000019,79.781937000000028],[-94.384170999999981,79.778046000000131],[-94.577498999999932,79.735809000000074],[-94.592498999999975,79.731094000000041],[-94.596663999999976,79.725815000000011],[-94.601395000000025,79.713882000000012],[-94.608886999999925,79.708327999999995],[-94.748336999999935,79.678314],[-94.776671999999962,79.673598999999967],[-94.814437999999939,79.670258000000103],[-94.878325999999959,79.66804500000012],[-94.946380999999974,79.666930999999977],[-94.985001000000011,79.664993000000038],[-95.091675000000009,79.656936999999971],[-95.153610000000015,79.647491000000002],[-95.190825999999959,79.644149999999968],[-95.355559999999969,79.638321000000133],[-95.419998000000021,79.637496999999996],[-95.485274999999945,79.638046000000088],[-95.740828999999906,79.641373000000044],[-95.799437999999952,79.642487000000017],[-95.853332999999964,79.646103000000096],[-95.901107999999965,79.654433999999981],[-95.933060000000012,79.664429000000098],[-95.954726999999991,79.671920999999998],[-95.980835000000013,79.6827550000001],[-96.032227000000034,79.706940000000088],[-96.282501000000025,79.798874000000012],[-96.335555999999997,79.815536000000009],[-96.360824999999977,79.82249500000006],[-96.384170999999924,79.826385000000073],[-96.490554999999972,79.836104999999975],[-96.575561999999934,79.849990999999932],[-96.589447000000007,79.852478000000019],[-96.610549999999989,79.877762000000018],[-96.61500499999994,79.883881000000031],[-96.609436000000017,79.888596000000064],[-96.573623999999995,79.900269000000094],[-96.458618000000001,79.914429000000041],[-96.422775000000001,79.916091999999935],[-96.391387999999949,79.913879000000009],[-96.385009999999909,79.909714000000008],[-96.37777699999998,79.899155000000121],[-96.194716999999912,79.901382000000012],[-96.158889999999872,79.903046000000018],[-96.138061999999991,79.906372000000033],[-96.147780999999952,79.912491000000102],[-96.164718999999991,79.917205999999908],[-96.23332199999993,79.933043999999938],[-96.262512000000015,79.936920000000043],[-96.325561999999991,79.941360000000032],[-96.399170000000026,79.941086000000098],[-96.492766999999958,79.943314000000044],[-96.52416999999997,79.945251000000098],[-96.556655999999975,79.948868000000061],[-96.580565999999976,79.952773999999977],[-96.595839999999953,79.956940000000031],[-96.606658999999922,79.962204000000042],[-96.675003000000004,80.008331000000055],[-96.679442999999992,80.014435000000105],[-96.661941999999954,80.019989000000123],[-96.628052000000025,80.024429000000112],[-96.482772999999952,80.041091999999992],[-96.419158999999922,80.041930999999977],[-96.394164999999873,80.043869000000086],[-96.391677999999956,80.045822000000044],[-96.40583799999996,80.048325000000034],[-96.428878999999995,80.050537000000077],[-96.479172000000005,80.053864000000033],[-96.512222000000008,80.054977000000122],[-96.548614999999927,80.053314],[-96.582503999999915,80.048598999999967],[-96.599166999999909,80.044434000000138],[-96.627776999999924,80.039429000000098],[-96.676101999999958,80.041930999999977],[-96.698882999999967,80.046936000000017],[-96.737503000000004,80.058029000000033],[-96.781676999999945,80.076660000000061],[-96.801391999999964,80.086929000000055],[-96.802779999999984,80.090820000000122],[-96.748885999999857,80.134720000000129],[-96.734436000000017,80.139709000000096],[-96.711120999999935,80.14498900000001],[-96.675827000000027,80.145538000000101],[-96.410003999999958,80.13888500000013],[-96.381103999999937,80.13638300000008],[-96.351395000000025,80.132476999999994],[-96.322784000000013,80.127472000000125],[-96.163054999999872,80.093048000000067],[-96.077788999999996,80.078049000000021],[-96.017776000000026,80.070830999999998],[-95.847777999999892,80.053314],[-95.545836999999949,80.040543000000071],[-95.418883999999935,80.036652000000004],[-95.325011999999958,80.03387500000008],[-95.193877999999984,80.03137200000009],[-95.06361400000003,80.029984000000013],[-95.038054999999986,80.031936999999971],[-95.011672999999917,80.038879000000065],[-94.988892000000021,80.04304500000012],[-94.951110999999855,80.045532000000037],[-94.921386999999925,80.046371000000022],[-94.887512000000015,80.045822000000044],[-94.852782999999874,80.044144000000131],[-94.825835999999924,80.040543000000071],[-94.717772999999966,80.020828000000051],[-94.607498000000021,80.002777000000094],[-94.569457999999941,79.997208000000114],[-94.416945999999996,79.978867000000093],[-94.383620999999948,79.982482999999945],[-94.387786999999946,79.987761999999918],[-94.413894999999911,79.997757000000036],[-94.451674999999966,80.009720000000073],[-94.525557999999933,80.02276599999999],[-94.62110899999999,80.04304500000012],[-94.67111199999988,80.056931000000134],[-94.74888599999997,80.07998699999996],[-94.728881999999942,80.105545000000063],[-94.632766999999944,80.131088000000034],[-94.611937999999952,80.135544000000095],[-94.510558999999944,80.154434000000037],[-94.480559999999855,80.15914900000007],[-94.416396999999961,80.163605000000018],[-94.387222000000008,80.163315000000011],[-94.285827999999924,80.164993000000095],[-94.121108999999933,80.17025799999999],[-94.091675000000009,80.172485000000052],[-94.083892999999989,80.175537000000134],[-94.096389999999985,80.179153000000042],[-94.119995000000017,80.183044000000109],[-94.184433000000013,80.186646000000053],[-94.217772999999966,80.18803400000013],[-94.354171999999949,80.190811000000053],[-94.485000999999954,80.209991000000002],[-94.642226999999991,80.199996999999996],[-94.649993999999879,80.194427000000076],[-94.704453000000001,80.178040000000124],[-94.748336999999935,80.169434000000024],[-94.816956000000005,80.159714000000122],[-95.033324999999991,80.134995000000004],[-95.104996000000028,80.128860000000032],[-95.263625999999988,80.118317000000104],[-95.333618000000001,80.118042000000059],[-95.367767000000015,80.118317000000104],[-95.420273000000009,80.122482000000105],[-95.658889999999985,80.168593999999985],[-95.683884000000035,80.173874000000012],[-95.695830999999998,80.178314000000057],[-95.692215000000033,80.181090999999981],[-95.673889000000031,80.186371000000008],[-95.621658000000025,80.195251000000042],[-95.580841000000021,80.199706999999989],[-95.542770000000019,80.202209000000039],[-95.471114999999941,80.203598000000056],[-95.404175000000009,80.203598000000056],[-95.370543999999995,80.204712000000029],[-95.327788999999882,80.208603000000096],[-95.295837000000006,80.21276899999998],[-95.268341000000021,80.218047999999953],[-95.254455999999948,80.222214000000065],[-95.235000999999897,80.232208000000071],[-95.229996000000028,80.236098999999967],[-95.235000999999897,80.241088999999988],[-95.243331999999953,80.243591000000094],[-95.258895999999993,80.244980000000055],[-95.278060999999923,80.243866000000082],[-95.287216000000001,80.241088999999988],[-95.325561999999991,80.232208000000071],[-95.39834599999989,80.223602000000142],[-95.461394999999868,80.219986000000119],[-95.496947999999975,80.219436999999971],[-95.548339999999996,80.220261000000107],[-95.566955999999948,80.224152000000004],[-95.577498999999989,80.229430999999977],[-95.581389999999885,80.235535000000027],[-95.586394999999925,80.240540000000067],[-95.601944000000003,80.242203000000018],[-95.645844000000011,80.239700000000028],[-95.69027699999998,80.232483000000116],[-95.71055599999994,80.227768000000083],[-95.884170999999981,80.199142000000109],[-95.922500999999954,80.194138000000009],[-95.93360899999999,80.194427000000076],[-95.98443599999996,80.200271999999984],[-96.216659999999877,80.235809000000131],[-96.43499799999995,80.269714000000022],[-96.46444699999995,80.313034000000016],[-96.613892000000021,80.329987000000131],[-96.645844000000011,80.333054000000004],[-96.670272999999952,80.336928999999998],[-96.681670999999881,80.342209000000082],[-96.676101999999958,80.346939000000134],[-96.658051,80.352203000000088],[-96.634170999999981,80.357208000000128],[-96.604720999999984,80.362198000000035],[-96.592223999999987,80.362761999999975],[-96.440552000000025,80.356644000000017],[-96.408889999999985,80.353592000000106],[-96.363892000000021,80.342209000000082],[-96.254729999999938,80.335541000000092],[-96.232223999999974,80.334717000000126],[-96.216400000000021,80.338042999999971],[-96.221664000000033,80.343323000000055],[-96.255004999999983,80.354156000000046],[-96.277221999999938,80.359985000000052],[-96.280838000000017,80.36192299999999],[-96.268065999999919,80.367477000000008],[-96.240554999999972,80.37303200000008],[-96.080841000000021,80.387206999999989],[-96.047774999999888,80.389984000000084],[-95.978606999999954,80.388596000000007],[-95.732497999999907,80.372757000000036],[-95.697495000000004,80.369979999999941],[-95.636948000000018,80.364150999999936],[-95.61221299999994,80.360260000000039],[-95.566955999999948,80.352203000000088],[-95.542770000000019,80.345824999999934],[-95.513900999999976,80.340820000000065],[-95.48832699999997,80.338042999999971],[-95.460280999999952,80.336928999999998],[-95.440826000000015,80.338318000000015],[-95.436935000000005,80.341095000000109],[-95.453338999999971,80.373306000000014],[-95.458617999999944,80.378586000000041],[-95.468063000000029,80.38220200000012],[-95.498610999999983,80.383880999999974],[-95.564162999999951,80.385817999999972],[-95.624999999999943,80.391663000000108],[-95.653885000000002,80.396652000000074],[-95.694992000000013,80.406097000000102],[-95.721664000000033,80.412765999999976],[-95.852218999999991,80.454163000000051],[-95.957229999999925,80.504990000000134],[-96.020553999999947,80.567490000000078],[-96.027221999999995,80.574158000000068],[-96.024445000000014,80.578323000000069],[-96.006957999999884,80.582763999999941],[-95.979996000000028,80.584717000000069],[-95.941665999999941,80.58638000000002],[-95.671660999999972,80.584717000000069],[-95.536391999999978,80.590820000000008],[-95.498046999999872,80.59248400000007],[-95.423614999999984,80.593597000000102],[-95.318343999999911,80.590820000000008],[-95.246658000000025,80.58998100000008],[-95.172226000000023,80.59137000000004],[-95.132216999999969,80.593872000000147],[-95.067229999999995,80.601379000000065],[-95.030837999999903,80.603317000000004],[-94.99499499999996,80.603043000000071],[-94.962783999999942,80.599715999999944],[-94.902495999999985,80.586655000000007],[-94.846953999999926,80.574706999999989],[-94.823623999999995,80.569716999999969],[-94.77194199999991,80.561371000000065],[-94.752791999999943,80.559982000000048],[-94.696654999999964,80.55693100000002],[-94.658614999999998,80.555817000000047],[-94.554992999999911,80.55442800000003],[-94.374999999999943,80.557205000000124],[-94.230835000000013,80.556365999999969],[-94.010559000000001,80.54942299999999],[-93.968886999999995,80.540817000000061],[-93.968886999999995,80.536925999999994],[-93.966110000000015,80.530823000000055],[-93.958343999999954,80.52609300000006],[-93.89916999999997,80.519150000000025],[-93.866942999999992,80.518326000000059],[-93.839447000000007,80.518599999999992],[-93.786391999999978,80.525543000000027],[-93.783066000000019,80.529709000000082],[-93.790832999999964,80.534424000000115],[-93.810546999999985,80.541367000000093],[-93.894729999999868,80.565811000000053],[-93.949158000000011,80.578048999999908],[-93.973617999999931,80.581939999999975],[-94.005004999999983,80.585266000000047],[-94.093612999999948,80.593322999999998],[-94.308334000000002,80.606368999999972],[-94.437774999999988,80.605545000000006],[-94.457503999999915,80.600265999999976],[-94.484726000000023,80.598328000000038],[-94.524170000000026,80.598328000000038],[-94.543335000000013,80.599715999999944],[-94.561935000000005,80.605819999999994],[-94.660278000000005,80.651382000000012],[-94.669448999999929,80.65776100000005],[-94.672775000000001,80.663879000000009],[-94.670273000000009,80.669708000000014],[-94.662215999999944,80.675262000000032],[-94.650283999999999,80.681366000000082],[-94.628326000000015,80.685806000000071],[-94.596953999999982,80.690536000000122],[-94.553604000000007,80.694977000000051],[-94.514724999999942,80.696365000000128],[-94.439163000000008,80.697479000000101],[-94.331116000000009,80.693863000000022],[-94.231673999999884,80.692200000000128],[-94.199722000000008,80.693039000000056],[-94.117492999999968,80.698593000000074],[-94.088332999999977,80.701660000000004],[-94.075561999999991,80.706099999999992],[-94.076950000000011,80.709152000000131],[-94.086394999999982,80.713043000000027],[-94.108337000000006,80.718872000000033],[-94.140288999999996,80.721924000000115],[-94.304442999999935,80.733871000000079],[-94.423049999999876,80.734985000000052],[-94.449158000000011,80.730270000000019],[-94.491104000000007,80.726928999999984],[-94.549438000000009,80.724991000000045],[-94.65972899999997,80.72526600000009],[-94.694716999999969,80.726653999999996],[-94.722778000000005,80.728592000000106],[-94.895554000000004,80.747757000000092],[-95.035827999999867,80.768326000000002],[-95.037505999999951,80.771378000000141],[-95.03694200000001,80.776093000000003],[-95.033889999999985,80.778046000000131],[-95.025283999999999,80.801651000000106],[-95.243056999999965,80.787766000000033],[-95.282501000000025,80.786101999999971],[-95.334166999999923,80.788879000000065],[-95.442764000000011,80.79971299999994],[-95.475554999999986,80.803040000000067],[-95.501113999999973,80.806931000000134],[-95.524170000000026,80.812484999999981],[-95.534164000000033,80.818878000000097],[-95.526397999999972,80.833328000000051],[-95.500838999999871,80.838318000000072],[-95.44027699999998,80.846100000000035],[-95.371384000000035,80.853316999999947],[-95.212783999999999,80.868317000000104],[-95.170837000000006,80.875809000000061],[-95.150832999999921,80.881088000000034],[-95.146666999999923,80.883881000000031],[-95.170546999999999,80.884720000000016],[-95.300827000000027,80.885269000000108],[-95.41332999999986,80.885269000000108],[-95.468886999999995,80.890273999999977],[-95.481383999999991,80.894714000000022],[-95.484726000000023,80.899155000000121],[-95.474166999999966,80.904434000000094],[-95.460280999999952,80.909713999999951],[-95.422775000000001,80.920821999999987],[-95.334166999999923,80.934708000000114],[-95.311934999999949,80.939147999999989],[-95.283614999999941,80.949996999999996],[-95.267501999999979,80.96138000000002],[-95.259734999999921,80.973602000000028],[-95.257506999999976,80.979431000000034],[-95.259170999999981,80.984984999999995],[-95.255004999999983,80.996643000000063],[-95.241104000000007,81.006103999999993],[-95.220839999999896,81.011382999999967],[-95.183060000000012,81.019714000000079],[-94.943329000000006,81.048874000000126],[-94.814163000000008,81.054153000000099],[-94.663054999999986,81.048598999999911],[-94.572783999999899,81.038879000000009],[-94.546111999999994,81.033325000000048],[-94.493880999999988,81.017487000000017],[-94.495543999999995,80.995819000000097],[-94.504181000000017,80.990265000000079],[-94.509170999999981,80.984711000000061],[-94.508057000000008,80.979431000000034],[-94.492767000000015,80.972763000000043],[-94.472778000000005,80.969146999999964],[-94.434158000000025,80.965546000000131],[-94.408614999999941,80.965546000000131],[-94.365554999999972,80.968872000000147],[-94.344726999999978,80.974152000000061],[-94.330001999999865,80.979706000000022],[-94.143616000000009,81.015823000000012],[-94.071670999999924,81.024993999999936],[-93.908051,81.039429000000041],[-93.906386999999995,81.040543000000071],[-94.013335999999981,81.053588999999988],[-94.042220999999927,81.055542000000116],[-94.18249499999996,81.068054000000075],[-94.328612999999962,81.089432000000045],[-94.357498000000021,81.09526100000005],[-94.36221299999994,81.100540000000024],[-94.353607000000011,81.106093999999985],[-94.345550999999944,81.109421000000111],[-94.313048999999978,81.115539999999953],[-94.278335999999967,81.117203000000075],[-94.255279999999971,81.115539999999953],[-94.230835000000013,81.110535000000084],[-94.214721999999881,81.106369000000029],[-94.195830999999941,81.10026600000009],[-94.154723999999987,81.093872000000033],[-94.130279999999971,81.09275800000006],[-93.989715999999987,81.092484000000127],[-93.960830999999928,81.094147000000078],[-93.935271999999941,81.098327999999981],[-93.907227000000034,81.101653999999996],[-93.866394000000014,81.103043000000014],[-93.795273000000009,81.099426000000051],[-93.689437999999996,81.093048000000067],[-93.517226999999878,81.084426999999948],[-93.299987999999928,81.079711999999915],[-93.255844000000025,81.082764000000054],[-93.163054999999929,81.091934000000094],[-93.152221999999938,81.094711000000018],[-93.123321999999916,81.115265000000136],[-93.095550999999944,81.154160000000104],[-93.091674999999952,81.159988000000055],[-93.095839999999953,81.165268000000083],[-93.121108999999933,81.182754999999929],[-93.259734999999978,81.212203999999929],[-93.419448999999929,81.219986000000063],[-93.514724999999999,81.217758000000117],[-93.687499999999943,81.21026599999999],[-93.728333000000021,81.207214000000079],[-93.852218999999934,81.203049000000078],[-93.928878999999995,81.203873000000044],[-94.031386999999938,81.208878000000084],[-94.166397000000018,81.218048000000124],[-94.200561999999877,81.221100000000035],[-94.282227000000034,81.231094000000098],[-94.302489999999977,81.234984999999938],[-94.381667999999991,81.25082400000008],[-94.388061999999991,81.254990000000134],[-94.391388000000006,81.261108000000092],[-94.386123999999938,81.272766000000104],[-94.370270000000005,81.284714000000008],[-94.278610000000015,81.341934000000037],[-94.268616000000009,81.346099999999922],[-94.240829000000019,81.350814999999955],[-94.200561999999877,81.355545000000006],[-94.153884999999946,81.359711000000118],[-94.06806899999998,81.363311999999951],[-94.035278000000005,81.363311999999951],[-93.789444000000003,81.348038000000088],[-93.755004999999926,81.344711000000132],[-93.694442999999922,81.337494000000049],[-93.665833000000021,81.332763999999997],[-93.638900999999976,81.327209000000096],[-93.621933000000013,81.321655000000078],[-93.611389000000031,81.316376000000105],[-93.594451999999933,81.31053199999991],[-93.553329000000019,81.305542000000059],[-93.515288999999996,81.31053199999991],[-93.494994999999903,81.314697000000081],[-93.483063000000016,81.319716999999969],[-93.483611999999994,81.325272000000041],[-93.488051999999982,81.330551000000014],[-93.533324999999991,81.348602000000028],[-93.560546999999929,81.367751999999996],[-93.564712999999927,81.376648000000102],[-93.550551999999925,81.38108799999992],[-93.517501999999979,81.38499500000006],[-93.340285999999992,81.372208000000057],[-93.177490000000034,81.358597000000088],[-93.01556399999987,81.341370000000097],[-92.928054999999972,81.330826000000059],[-92.831680000000006,81.317764000000011],[-92.727782999999931,81.305542000000059]],[[-91.71833799999996,81.549149000000057],[-91.761672999999973,81.548035000000084],[-91.801391999999964,81.548599000000024],[-91.837509000000011,81.551086000000112],[-91.863616999999977,81.555251999999996],[-91.951110999999912,81.584152000000017],[-91.958617999999944,81.588882000000069],[-91.960555999999997,81.594986000000119],[-91.956115999999952,81.600815000000125],[-91.932494999999903,81.605819999999994],[-91.903884999999946,81.608322000000044],[-91.868332000000009,81.608597000000088],[-91.823897999999986,81.606934000000138],[-91.789444000000003,81.603317000000004],[-91.724715999999944,81.596100000000092],[-91.597778000000005,81.580550999999957],[-91.582229999999925,81.578049000000078],[-91.619995000000017,81.562484999999981],[-91.643615999999895,81.557480000000112],[-91.673614999999984,81.552765000000079],[-91.71833799999996,81.549149000000057]],[[-78.365828999999962,82.883605999999986],[-78.383330999999998,82.883605999999986],[-78.419448999999986,82.899155000000064],[-78.417220999999927,82.935532000000023],[-78.414718999999934,82.941925000000026],[-78.405838000000017,82.947754000000032],[-78.389724999999885,82.953323000000012],[-78.361663999999962,82.958603000000096],[-78.323333999999875,82.961929000000112],[-78.273894999999868,82.963043000000084],[-78.223617999999988,82.961104999999975],[-78.145279000000016,82.954712000000029],[-78.119720000000029,82.94859299999996],[-78.116942999999992,82.942200000000014],[-78.122498000000007,82.937194999999974],[-78.150833000000034,82.926925999999924],[-78.212783999999999,82.911377000000016],[-78.336394999999982,82.888046000000145],[-78.365828999999962,82.883605999999986]],[[-70.111937999999952,83.109421000000111],[-70.00140399999998,83.10775799999999],[-69.812209999999993,83.112197999999978],[-69.74888599999997,83.11192299999999],[-69.701675000000023,83.110535000000084],[-69.665008999999998,83.108322000000101],[-69.659164000000033,83.103043000000127],[-69.662215999999944,83.074158000000068],[-69.664168999999958,83.070830999999941],[-69.680557000000022,83.064986999999974],[-69.716109999999958,83.061096000000077],[-69.757506999999976,83.057755000000043],[-69.773894999999982,83.051926000000037],[-69.775283999999942,83.047760000000096],[-69.744445999999982,83.04553199999998],[-69.671936000000017,83.041091999999935],[-69.636123999999995,83.039703000000145],[-69.471389999999985,83.038879000000009],[-69.451110999999969,83.035812000000078],[-69.513335999999981,83.019714000000022],[-69.536117999999988,83.014435000000049],[-69.565001999999936,83.009995000000004],[-69.559722999999963,82.994141000000127],[-69.233062999999959,83.010268999999937],[-69.156386999999938,83.017487000000131],[-69.120543999999995,83.021652000000131],[-69.097777999999948,83.026657],[-69.06361400000003,83.038040000000024],[-69.015563999999927,83.040817000000118],[-68.983063000000016,83.036652000000117],[-68.975280999999995,83.028320000000122],[-68.973891999999978,83.015549000000021],[-68.977218999999991,83.001663000000065],[-68.902785999999935,82.988312000000064],[-68.708344000000011,82.978043000000071],[-68.665008999999941,82.980270000000132],[-68.630829000000006,82.985259999999982],[-68.626663000000008,82.986923000000104],[-68.579726999999991,82.996933000000013],[-68.550551999999925,83.001663000000065],[-68.514724999999999,83.005554000000132],[-68.46665999999999,83.008040999999992],[-68.404723999999987,83.008330999999998],[-68.358046999999885,83.006103999999937],[-68.316101000000003,83.003326000000129],[-68.190826000000015,82.994705000000067],[-68.154175000000009,82.991088999999988],[-68.142226999999934,82.983597000000032],[-68.155272999999966,82.972487999999998],[-68.177779999999984,82.959991000000002],[-68.188599000000011,82.946091000000081],[-68.176391999999964,82.938873000000058],[-68.145554000000004,82.934981999999991],[-68.09973100000002,82.933594000000085],[-68.06806899999998,82.935257000000036],[-68.054169000000002,82.938873000000058],[-67.881667999999934,82.958878000000084],[-67.666945999999996,82.969711000000075],[-67.61082499999992,82.96887200000009],[-67.544158999999979,82.962203999999929],[-67.50140399999998,82.957214000000079],[-67.499999999999943,82.957016000000067],[-67.476104999999961,82.953598000000056],[-67.410003999999958,82.946640000000059],[-67.327788999999939,82.940811000000053],[-67.241669000000002,82.936919999999986],[-67.196655000000021,82.93609600000002],[-67.136123999999938,82.936646000000053],[-67.116942999999992,82.941086000000041],[-67.122771999999998,82.949142000000109],[-67.121658000000025,82.955261000000121],[-67.113327000000027,82.959427000000062],[-67.092223999999931,82.961104999999975],[-67.041107000000011,82.959717000000069],[-66.964721999999995,82.954163000000051],[-66.939986999999917,82.950546000000088],[-66.938323999999909,82.947754000000032],[-66.818893000000003,82.935257000000036],[-66.653060999999866,82.936371000000008],[-66.330001999999922,82.933868000000018],[-66.301391999999964,82.93193100000002],[-66.299437999999952,82.92942800000003],[-66.347503999999958,82.898041000000092],[-66.369155999999919,82.888321000000019],[-66.81138599999997,82.815262000000018],[-66.841110000000015,82.810806000000071],[-66.876663000000008,82.807205000000067],[-66.959732000000031,82.800812000000064],[-67.138335999999981,82.78387500000008],[-67.31527699999998,82.764709000000039],[-67.386123999999995,82.757767000000115],[-67.45777899999996,82.752212999999927],[-67.499999999999943,82.749611000000129],[-67.597778000000005,82.743590999999924],[-67.644729999999925,82.741652999999985],[-67.799164000000019,82.731658999999979],[-67.914168999999958,82.719986000000119],[-68.041381999999999,82.703873000000101],[-68.081679999999949,82.700821000000019],[-68.134170999999981,82.698593000000017],[-68.234726000000023,82.696640000000116],[-68.276108000000022,82.69470199999995],[-68.356658999999979,82.688034000000016],[-68.424437999999896,82.679703000000075],[-68.633621000000005,82.648605000000089],[-68.655838000000017,82.643600000000049],[-68.672225999999966,82.637772000000098],[-68.667220999999984,82.632477000000051],[-68.642501999999979,82.628585999999984],[-68.573623999999938,82.628860000000088],[-68.465011999999945,82.639435000000049],[-68.424437999999896,82.641937000000098],[-68.325835999999981,82.645537999999988],[-67.934998000000007,82.658324999999991],[-67.812774999999988,82.659149000000127],[-67.606658999999922,82.655548000000067],[-67.518065999999862,82.65109300000006],[-67.47084000000001,82.652205999999978],[-67.430557000000022,82.655548000000067],[-67.381942999999978,82.66276600000009],[-67.328063999999983,82.677199999999914],[-67.275283999999999,82.68609600000002],[-67.245834000000002,82.689697000000081],[-67.210830999999928,82.693587999999977],[-66.997771999999998,82.712203999999986],[-66.900283999999999,82.719437000000028],[-66.670837000000006,82.740265000000079],[-66.657227000000034,82.744430999999963],[-66.638335999999981,82.748871000000008],[-66.122771999999998,82.813034000000073],[-66.086670000000026,82.816665999999998],[-65.810271999999941,82.840820000000122],[-65.767776000000026,82.843048000000067],[-65.724166999999909,82.843597000000045],[-65.546660999999915,82.838043000000027],[-65.467772999999852,82.833327999999995],[-65.454726999999991,82.829162999999994],[-65.481673999999998,82.816665999999998],[-65.495834000000002,82.8119200000001],[-65.527221999999938,82.797484999999938],[-65.518065999999976,82.789978000000019],[-65.511123999999995,82.786652000000004],[-65.458617999999888,82.779433999999981],[-65.430832000000009,82.777481000000023],[-65.197494999999947,82.764160000000061],[-65.164444000000003,82.763046000000088],[-65.154723999999987,82.765274000000034],[-65.167496000000028,82.769989000000066],[-65.259170999999924,82.781662000000097],[-65.327498999999989,82.789154000000053],[-65.339721999999938,82.791930999999977],[-65.353057999999976,82.797211000000004],[-65.34445199999999,82.801926000000037],[-65.221938999999963,82.832764000000054],[-65.102782999999931,82.848037999999974],[-65.110001000000011,82.852767999999969],[-65.128052000000025,82.856094000000041],[-65.172775000000001,82.858321999999987],[-65.272781000000009,82.861099000000081],[-65.30749499999996,82.86554000000001],[-65.289168999999958,82.873306000000014],[-65.258057000000008,82.877472000000125],[-65.104720999999984,82.891663000000108],[-64.982223999999974,82.901093000000003],[-64.884734999999921,82.905823000000055],[-64.83555599999994,82.906937000000028],[-64.729720999999927,82.904160000000104],[-64.68472300000002,82.901657000000114],[-64.655562999999972,82.896942000000081],[-64.664168999999902,82.89027399999992],[-64.678604000000007,82.884720000000129],[-64.713897999999915,82.876372999999944],[-64.751953000000015,82.875259000000142],[-64.790558000000033,82.875809000000004],[-64.829726999999934,82.877762000000132],[-64.890288999999939,82.878036000000066],[-64.922501000000011,82.876372999999944],[-64.936934999999949,82.871368000000075],[-64.923614999999984,82.864699999999914],[-64.883895999999993,82.861649000000114],[-64.839995999999985,82.861923000000047],[-64.746384000000035,82.860535000000141],[-64.723052999999993,82.856369000000029],[-64.710555999999997,82.852478000000133],[-64.713897999999915,82.846375000000023],[-64.722777999999948,82.840820000000122],[-64.742217999999923,82.834427000000005],[-64.750838999999928,82.828323000000125],[-64.737777999999992,82.822220000000016],[-64.706954999999994,82.813034000000073],[-64.64805599999994,82.799713000000111],[-64.478607000000011,82.764435000000105],[-64.445266999999944,82.761932000000115],[-64.418059999999912,82.761382999999967],[-64.412780999999939,82.762206999999933],[-64.398055999999997,82.766936999999984],[-64.328888000000006,82.787201000000096],[-64.18638599999997,82.819153000000085],[-64.139998999999989,82.828049000000021],[-64.103058000000033,82.831665000000044],[-64.059722999999963,82.833327999999995],[-63.972770999999966,82.834991000000116],[-63.672775000000001,82.834717000000012],[-63.623610999999926,82.833603000000039],[-63.529723999999987,82.828323000000125],[-63.490836999999942,82.825272000000098],[-63.43472300000002,82.816665999999998],[-63.389167999999927,82.804977000000065],[-63.382499999999993,82.798325000000034],[-63.382216999999912,82.767761000000121],[-63.397223999999994,82.761382999999967],[-63.479163999999855,82.739425999999924],[-63.510284000000013,82.732483000000116],[-63.525832999999977,82.730545000000006],[-63.590836000000024,82.733047000000056],[-63.666106999999954,82.731368999999972],[-63.819449999999961,82.721374999999966],[-63.834998999999982,82.719147000000021],[-63.850280999999995,82.715820000000065],[-63.764450000000011,82.715271000000087],[-63.67888599999992,82.717758000000003],[-63.65166499999998,82.714996000000099],[-63.540001000000018,82.694427000000132],[-63.502040999999906,82.682762000000082],[-63.422226000000023,82.665543000000014],[-63.286948999999993,82.654434000000094],[-63.254447999999968,82.650269000000094],[-63.232215999999994,82.64498900000001],[-63.226105000000018,82.640273999999977],[-63.235557999999855,82.633330999999998],[-63.255835999999988,82.627197000000137],[-63.287223999999981,82.624985000000095],[-63.339721999999995,82.623596000000077],[-63.376388999999961,82.619980000000055],[-63.380829000000006,82.615265000000022],[-63.369445999999982,82.61053499999997],[-63.347495999999978,82.604980000000069],[-63.315001999999936,82.601089000000002],[-63.272223999999937,82.598602000000142],[-63.229720999999984,82.597214000000008],[-63.11361699999992,82.597487999999942],[-63.071113999999966,82.59637500000008],[-63.033614999999941,82.594436999999971],[-62.99639099999996,82.59027100000003],[-62.96416499999998,82.585541000000035],[-62.942496999999946,82.5816650000001],[-62.926108999999997,82.576096000000121],[-62.930557000000022,82.56999200000007],[-62.960555999999997,82.557754999999929],[-63.059440999999936,82.511932000000002],[-63.08943899999997,82.466385000000116],[-63.119994999999903,82.463608000000022],[-63.243889000000024,82.457764000000054],[-63.285004000000015,82.454987000000131],[-63.346106999999904,82.449142000000052],[-63.366111999999987,82.444977000000051],[-63.369995000000017,82.438873000000001],[-63.328613000000018,82.437759000000028],[-63.277221999999938,82.439148000000046],[-63.148887999999999,82.446929999999952],[-63.071670999999981,82.451935000000049],[-63.015838999999971,82.459716999999955],[-62.990836999999885,82.467209000000082],[-62.920836999999949,82.491089000000102],[-62.823616000000015,82.504440000000045],[-62.678336999999999,82.516098000000056],[-62.553328999999962,82.524428999999998],[-62.506667999999877,82.526657000000114],[-62.286948999999993,82.528046000000131],[-62.24500299999994,82.528046000000131],[-62.171669000000009,82.525542999999971],[-62.171386999999982,82.521378000000141],[-62.322776999999974,82.511108000000036],[-62.333060999999987,82.504166000000112],[-62.353057999999976,82.486374000000069],[-62.352782999999931,82.481093999999985],[-62.300835000000006,82.482483000000002],[-62.264449999999954,82.485809000000017],[-62.21566799999988,82.491928000000087],[-62.212497999999869,82.495766000000003],[-62.098052999999936,82.502212999999983],[-61.884170999999981,82.492752000000053],[-61.691665999999998,82.48803700000002],[-61.582503999999972,82.482483000000002],[-61.530829999999867,82.478317000000118],[-61.5,82.474152000000117],[-61.448607999999979,82.464431999999988],[-61.326110999999969,82.439697000000137],[-61.28556100000003,82.430267000000072],[-61.170279999999877,82.395264000000111],[-61.141113000000018,82.383041000000048],[-61.131385999999907,82.377472000000068],[-61.11222099999992,82.363876000000062],[-61.098609999999951,82.350266000000033],[-61.076392999999996,82.320831000000112],[-61.078613000000018,82.301086000000112],[-61.084723999999994,82.293593999999985],[-61.107779999999934,82.267761000000064],[-61.130359999999996,82.252937000000088],[-61.135558999999944,82.247482000000105],[-61.15694400000001,82.235259999999982],[-61.193328999999949,82.223602000000085],[-61.281112999999948,82.202774000000034],[-61.306389000000024,82.197205000000054],[-61.388054000000011,82.18331900000004],[-61.43332700000002,82.176376000000062],[-61.463614999999891,82.172484999999995],[-61.534171999999899,82.165543000000071],[-61.599441999999954,82.160812000000135],[-61.804442999999992,82.146652000000074],[-61.86999499999996,82.106644000000017],[-61.885001999999986,82.100539999999967],[-62.077781999999956,82.053588999999988],[-62.126944999999978,82.043869000000086],[-62.25417299999998,82.019989000000066],[-62.278885000000002,82.015822999999955],[-62.313056999999958,82.01249700000011],[-62.356948999999929,82.010268999999994],[-62.513618000000008,82.004715000000147],[-62.570281999999963,81.976089000000059],[-62.944999999999993,81.922211000000118],[-63.040557999999976,81.909714000000122],[-63.292502999999897,81.877761999999962],[-63.387221999999952,81.867752000000053],[-63.656104999999968,81.837494000000106],[-63.715003999999965,81.820831000000055],[-63.761116000000015,81.811645999999996],[-63.817223000000013,81.804703000000018],[-63.849723999999924,81.801086000000055],[-63.925003000000004,81.795258000000103],[-63.962775999999963,81.792480000000126],[-64.010009999999966,81.790268000000083],[-64.053054999999915,81.789978000000019],[-64.086945000000014,81.791930999999977],[-64.111663999999962,81.794983000000116],[-64.131667999999991,81.799149],[-64.142226999999934,81.803040000000067],[-64.177779999999984,81.810532000000023],[-64.207503999999972,81.81442300000009],[-64.271666999999923,81.821655000000021],[-64.301392000000021,81.824157999999954],[-64.325287000000003,81.824707000000103],[-64.323623999999995,81.819153000000085],[-64.308043999999995,81.814697000000024],[-64.253066999999987,81.806091000000094],[-64.232772999999952,81.800537000000077],[-64.12388599999997,81.768326000000002],[-64.118057000000022,81.764435000000105],[-64.134734999999921,81.754715000000033],[-64.207779000000016,81.74192800000003],[-64.355269999999962,81.726379000000122],[-64.472503999999958,81.721374999999966],[-64.629439999999931,81.722488000000055],[-64.720001000000025,81.723877000000073],[-64.767776000000026,81.725815000000011],[-64.801665999999955,81.728317000000061],[-64.812209999999993,81.730820000000051],[-64.833892999999932,81.738876000000118],[-64.839721999999938,81.742203000000075],[-64.885559000000001,81.750823999999966],[-64.910004000000015,81.752777000000094],[-64.962218999999948,81.752212999999983],[-65.21665999999999,81.74552900000009],[-65.337508999999955,81.737761999999975],[-65.409728999999913,81.728317000000061],[-65.631377999999927,81.70248400000014],[-65.668334999999956,81.700821000000019],[-65.725554999999929,81.701660000000004],[-65.773330999999985,81.702773999999977],[-65.924437999999952,81.70138500000013],[-66.012221999999952,81.696930000000123],[-66.038605000000018,81.692474000000004],[-66.042220999999984,81.690536000000066],[-66.030288999999925,81.684982000000105],[-65.991378999999995,81.682755000000043],[-65.821944999999971,81.684417999999937],[-65.612503000000004,81.680817000000104],[-65.487777999999935,81.687485000000038],[-65.404175000000009,81.69081100000011],[-65.352492999999868,81.691925000000083],[-65.336670000000026,81.688034000000016],[-65.370833999999945,81.678863999999976],[-65.402221999999995,81.674423000000047],[-65.523620999999991,81.659714000000008],[-65.618056999999908,81.648605000000089],[-65.789443999999946,81.632202000000063],[-65.871657999999911,81.627197000000024],[-65.910278000000005,81.629699999999957],[-65.926391999999964,81.634154999999964],[-65.92721599999993,81.635543999999982],[-65.924437999999952,81.639708999999982],[-65.92721599999993,81.645827999999995],[-65.943328999999892,81.650543000000027],[-65.982223999999917,81.65277100000003],[-66.024718999999948,81.653046000000018],[-66.042770000000019,81.651657],[-66.064712999999983,81.647765999999933],[-66.085555999999997,81.642761000000064],[-66.101943999999946,81.637207000000103],[-66.140838999999971,81.620529000000033],[-66.172501000000011,81.618042000000116],[-66.218886999999938,81.616928000000144],[-66.355270000000019,81.617477000000122],[-66.393889999999942,81.619705000000067],[-66.439712999999983,81.62692300000009],[-66.478333000000021,81.628585999999984],[-66.575561999999934,81.626082999999994],[-66.727492999999924,81.6202550000001],[-66.804992999999854,81.615814],[-66.896392999999932,81.611923000000104],[-67.15695199999999,81.608032000000037],[-67.509170999999924,81.60054000000008],[-67.55972300000002,81.599152000000004],[-67.766662999999994,81.593047999999953],[-67.792770000000019,81.589706000000035],[-68.111389000000031,81.56303400000013],[-68.156661999999983,81.56109600000002],[-68.231383999999991,81.561371000000008],[-68.274718999999948,81.562759000000085],[-68.309433000000013,81.565536000000009],[-68.330565999999919,81.56860400000005],[-68.352492999999981,81.573044000000039],[-68.410277999999892,81.588043000000084],[-68.459731999999974,81.597487999999998],[-68.661391999999978,81.633330999999998],[-68.715285999999992,81.642211999999972],[-68.976944000000003,81.684417999999937],[-69.058883999999921,81.697479000000101],[-69.139998999999989,81.70887799999997],[-69.176392000000021,81.712494000000049],[-69.247222999999963,81.71748400000007],[-69.291381999999999,81.718871999999976],[-69.299438000000009,81.717209000000082],[-69.306655999999975,81.714431999999988],[-69.291381999999999,81.707763999999997],[-69.268065999999976,81.70248400000014],[-69.214172000000019,81.695251000000098],[-69.123610999999983,81.683868000000132],[-69.005279999999914,81.667480000000069],[-68.902221999999995,81.651382000000012],[-68.624709999999993,81.604430999999977],[-68.449158000000011,81.570831000000055],[-68.370833999999888,81.553589000000045],[-68.357772999999952,81.548325000000091],[-68.352492999999981,81.541656000000046],[-68.37332200000003,81.537766000000033],[-68.407500999999968,81.533874999999966],[-68.504455999999948,81.532211000000132],[-68.551391999999964,81.532760999999994],[-68.637512000000015,81.535538000000088],[-68.715285999999992,81.539703000000088],[-68.810821999999916,81.548599000000024],[-68.848891999999978,81.549149000000057],[-68.856948999999986,81.547760000000039],[-68.851944000000003,81.541656000000046],[-68.839172000000019,81.536925999999994],[-68.813048999999978,81.533325000000104],[-68.777495999999928,81.529709000000082],[-68.579452999999887,81.514434999999992],[-68.536666999999966,81.513321000000019],[-68.446654999999964,81.517487000000074],[-68.376098999999954,81.522766000000047],[-68.285827999999924,81.526931999999988],[-68.091949,81.529160000000104],[-68.051101999999958,81.53054800000001],[-68.011123999999938,81.533051],[-67.910003999999958,81.542206000000078],[-67.819732999999871,81.546936000000073],[-67.724716000000001,81.551086000000112],[-67.383651999999984,81.56088299999999],[-67.182495000000017,81.564697000000081],[-67.150283999999942,81.564987000000087],[-67.107773000000009,81.564987000000087],[-67.064712999999983,81.562759000000085],[-66.859726000000023,81.546646000000067],[-66.791381999999885,81.540817000000061],[-66.766112999999962,81.537491000000045],[-66.629990000000021,81.518051000000014],[-66.608611999999994,81.512772000000041],[-66.62388599999997,81.506378000000041],[-66.741104000000007,81.491928000000087],[-66.887787000000003,81.480545000000063],[-66.962783999999942,81.474991000000102],[-67.043334999999956,81.469711000000018],[-67.248336999999992,81.44999700000011],[-67.457503999999972,81.423035000000027],[-67.753890999999896,81.391663000000051],[-67.818344000000025,81.385268999999994],[-67.994719999999973,81.368042000000003],[-68.244720000000029,81.33998100000008],[-68.355835000000013,81.32388300000008],[-68.429169000000002,81.31164600000011],[-68.486938000000009,81.303863999999976],[-68.618057000000022,81.290543000000014],[-68.796951000000035,81.275269000000094],[-69.028609999999958,81.258606000000043],[-69.319457999999997,81.260268999999937],[-69.34056099999998,81.263885000000016],[-69.357773000000009,81.268326000000116],[-69.362777999999992,81.268875000000037],[-69.391388000000006,81.270537999999988],[-69.426940999999943,81.26998900000001],[-69.455565999999976,81.265823000000125],[-69.468886999999995,81.259995000000004],[-69.46305799999999,81.253326000000129],[-69.436934999999949,81.249145999999939],[-69.366652999999985,81.246368000000132],[-69.319457999999997,81.243591000000038],[-69.312209999999993,81.240540000000067],[-69.323897999999929,81.238037000000077],[-69.541671999999949,81.212493999999936],[-69.911941999999954,81.182480000000112],[-69.999434999999949,81.179977000000122],[-70.158339999999953,81.181366000000139],[-70.206389999999942,81.179703000000018],[-70.210007000000019,81.173874000000012],[-70.126098999999954,81.165543000000127],[-70.050551999999982,81.161652000000061],[-69.960281000000009,81.160538000000088],[-69.907227000000034,81.161652000000061],[-69.864440999999999,81.16415400000011],[-69.760009999999966,81.173035000000027],[-69.638061999999991,81.177475000000072],[-69.647506999999962,81.172484999999995],[-69.831954999999994,81.137206999999989],[-69.887786999999946,81.129150000000038],[-69.953063999999983,81.122208000000114],[-69.976943999999946,81.118866000000025],[-70.013061999999934,81.109146000000123],[-70.025283999999999,81.102767999999969],[-70.023330999999985,81.100815000000011],[-69.995269999999948,81.099426000000051],[-69.955565999999976,81.099426000000051],[-69.922225999999966,81.102203000000145],[-69.832229999999981,81.111649000000114],[-69.632492000000013,81.139160000000118],[-69.609726000000023,81.14387499999998],[-69.591675000000009,81.14888000000002],[-69.541671999999949,81.164428999999927],[-69.528335999999911,81.169434000000024],[-69.463333000000034,81.183044000000052],[-69.430556999999965,81.187194999999974],[-69.359436000000017,81.193313999999987],[-68.876099000000011,81.231094000000098],[-68.760833999999932,81.239426000000037],[-68.37388599999997,81.266662999999994],[-68.246947999999975,81.272766000000104],[-68.116652999999928,81.280273000000079],[-68.052779999999984,81.286102000000085],[-67.887221999999952,81.30304000000001],[-67.823623999999938,81.310257000000092],[-67.791107000000011,81.315536000000066],[-67.690826000000015,81.329437000000041],[-67.593062999999972,81.340271000000087],[-67.356658999999979,81.363601999999958],[-67.24749799999995,81.371918000000051],[-67.124160999999901,81.379700000000014],[-66.990554999999915,81.385544000000039],[-66.621383999999978,81.413879000000065],[-66.365828999999962,81.434708000000001],[-66.290282999999988,81.440262000000018],[-66.16972399999986,81.447754000000145],[-66.134170999999924,81.450821000000076],[-66.050827000000027,81.459152000000131],[-65.985549999999989,81.468048000000067],[-65.831679999999949,81.484711000000004],[-65.724715999999944,81.493866000000025],[-65.643616000000009,81.498871000000065],[-65.557495000000017,81.503052000000139],[-65.466400000000021,81.506378000000041],[-65.252791999999943,81.517212000000086],[-65.002791999999999,81.530823000000055],[-64.612503000000004,81.544982999999945],[-64.566390999999953,81.545532000000094],[-64.537780999999995,81.543593999999985],[-64.528060999999923,81.541656000000046],[-64.517501999999979,81.537491000000045],[-64.444152999999972,81.490814000000114],[-64.436385999999914,81.479431000000091],[-64.451110999999969,81.466934000000094],[-64.491942999999992,81.448868000000118],[-64.508620999999948,81.441924999999969],[-64.520844000000011,81.4369200000001],[-64.554169000000002,81.425812000000064],[-64.616652999999928,81.404984000000013],[-64.658889999999985,81.393050999999957],[-64.735274999999945,81.374146000000053],[-64.808608999999933,81.360535000000084],[-64.855835000000013,81.352768000000083],[-64.99499499999996,81.333328000000108],[-65.060271999999998,81.326096000000007],[-65.168059999999969,81.309982000000048],[-65.286391999999978,81.287201000000039],[-65.323623999999995,81.278046000000018],[-65.441375999999934,81.256378000000041],[-65.493057000000022,81.250549000000035],[-65.527785999999992,81.247481999999934],[-65.571670999999981,81.244980000000055],[-65.747771999999998,81.235809000000131],[-65.941101000000003,81.226379000000065],[-65.980559999999912,81.22387700000013],[-66.010284000000013,81.220261000000107],[-66.199721999999895,81.183868000000018],[-66.244445999999868,81.17442299999999],[-66.264449999999954,81.169434000000024],[-66.418335000000013,81.128860000000032],[-66.438048999999978,81.12359600000002],[-66.482772999999952,81.106934000000081],[-66.50418099999996,81.095534999999984],[-66.509445000000028,81.08859300000006],[-66.529723999999987,81.076096000000064],[-66.544723999999974,81.070540999999992],[-66.603333000000021,81.05525200000011],[-66.685821999999973,81.035812000000135],[-66.753341999999975,81.021927000000005],[-66.921111999999994,80.991089000000045],[-67.164443999999946,80.948593000000017],[-67.208618000000001,80.941925000000026],[-67.279175000000009,80.93553200000008],[-67.309158000000025,80.934418000000107],[-67.349441999999954,80.936371000000065],[-67.440825999999959,80.936646000000053],[-67.562209999999993,80.93553200000008],[-67.591384999999946,80.933044000000109],[-67.606658999999922,80.929977000000008],[-67.603607000000011,80.92442299999999],[-67.588333000000034,80.913878999999952],[-67.567779999999971,80.908599999999979],[-67.543335000000013,80.90415999999999],[-67.53083799999996,80.897491000000116],[-67.539992999999981,80.891098000000113],[-67.583618000000001,80.876648000000046],[-67.634445000000028,80.860809000000074],[-67.653609999999958,80.856369000000086],[-67.863891999999964,80.834152000000017],[-67.910278000000005,80.8119200000001],[-67.965835999999911,80.797484999999995],[-68.011397999999986,80.788315000000125],[-68.065552000000025,80.779160000000104],[-68.089447000000007,80.776093000000003],[-68.138335999999981,80.772491000000002],[-68.202788999999939,80.765823000000069],[-68.225280999999939,80.761383000000023],[-68.672500999999897,80.66693099999992],[-68.738891999999908,80.647217000000012],[-68.814712999999983,80.628586000000041],[-68.952498999999875,80.603043000000071],[-69.146666999999923,80.529709000000082],[-69.171111999999994,80.517487000000131],[-69.273055999999997,80.463882000000012],[-69.289168999999958,80.451660000000061],[-69.291381999999999,80.444138000000123],[-69.290558000000033,80.437194999999917],[-69.297774999999945,80.424698000000149],[-69.305557000000022,80.418319999999994],[-69.317504999999983,80.412490999999989],[-69.333892999999932,80.406647000000135],[-69.384734999999921,80.391937000000041],[-69.427489999999977,80.382751000000042],[-69.479720999999984,80.37553400000013],[-69.551102000000014,80.366379000000109],[-69.596389999999872,80.361099000000024],[-69.729720999999927,80.352767999999969],[-69.982772999999895,80.344986000000006],[-70.072783999999956,80.344437000000028],[-70.218886999999938,80.346374999999966],[-70.284438999999907,80.351089000000115],[-70.305266999999958,80.356093999999985],[-70.310821999999973,80.363037000000134],[-70.285827999999981,80.372482000000048],[-70.256393000000003,80.381362999999965],[-70.244155999999919,80.386658000000011],[-70.227782999999988,80.401382000000069],[-70.220001000000025,80.416930999999977],[-70.235000999999897,80.429703000000018],[-70.275283999999942,80.44802900000002],[-70.314163000000008,80.464432000000045],[-70.499434999999949,80.513884999999959],[-70.539992999999924,80.521927000000119],[-70.68110699999994,80.548035000000084],[-70.706116000000009,80.552475000000129],[-70.754729999999995,80.559418000000107],[-70.783065999999963,80.56303400000013],[-70.812499999999886,80.562759000000142],[-70.825286999999889,80.558593999999971],[-70.827498999999932,80.551376000000118],[-70.813048999999921,80.544983000000002],[-70.796111999999994,80.540543000000127],[-70.765288999999996,80.534424000000115],[-70.741668999999945,80.531372000000033],[-70.670837000000006,80.518051000000071],[-70.637786999999946,80.509155000000135],[-70.531386999999995,80.474426000000051],[-70.490554999999915,80.460815000000082],[-70.476669000000015,80.454436999999984],[-70.423324999999977,80.42164600000001],[-70.434722999999963,80.391663000000108],[-70.450561999999991,80.385817999999972],[-70.458892999999989,80.381362999999965],[-70.472228999999913,80.368042000000003],[-70.471389999999985,80.362488000000042],[-70.469161999999983,80.354980000000012],[-70.462219000000005,80.346939000000134],[-70.444153000000028,80.340271000000143],[-70.424164000000019,80.336105000000032],[-70.352492999999924,80.324707000000046],[-70.309998000000007,80.318054000000075],[-70.252791999999943,80.313309000000061],[-70.15055799999999,80.299149000000114],[-70.035278000000005,80.278320000000122],[-69.991103999999893,80.268875000000094],[-69.974166999999966,80.263046000000088],[-69.960555999999997,80.256378000000097],[-69.965285999999935,80.252213000000097],[-69.990828999999962,80.24331699999999],[-70.128326000000015,80.19720500000011],[-70.145554000000004,80.193587999999977],[-70.178604000000007,80.189148000000102],[-70.21665999999999,80.186371000000008],[-70.24888599999997,80.18609600000002],[-70.315001999999879,80.187484999999981],[-70.611388999999974,80.19720500000011],[-70.645554000000004,80.199142000000109],[-70.821121000000005,80.195526000000086],[-71.120833999999945,80.172485000000052],[-71.180556999999908,80.166656000000046],[-71.238326999999913,80.158874999999966],[-71.381942999999978,80.139160000000004],[-71.418610000000001,80.131088000000034],[-71.446105999999929,80.121368000000132],[-71.463057999999933,80.118042000000059],[-71.50111400000003,80.11554000000001],[-71.654448999999943,80.111374000000069],[-71.694442999999978,80.110809000000074],[-71.731948999999929,80.111923000000047],[-71.762787000000003,80.114426000000037],[-71.789992999999981,80.117752000000053],[-71.811660999999901,80.123596000000077],[-71.836120999999991,80.131927000000132],[-71.848052999999993,80.143875000000037],[-71.878600999999946,80.162491000000045],[-71.907776000000013,80.171371000000079],[-71.953339000000028,80.180542000000003],[-72.006393000000003,80.188583000000108],[-72.057220000000029,80.19470200000012],[-72.081116000000009,80.194138000000009],[-72.099990999999875,80.192748999999992],[-72.127776999999924,80.187759000000142],[-72.165282999999988,80.188873000000115],[-72.189163000000008,80.192200000000014],[-72.223327999999981,80.201660000000118],[-72.241378999999995,80.207489000000123],[-72.256392999999946,80.213882000000069],[-72.274445000000014,80.219711000000075],[-72.294448999999872,80.223312000000135],[-72.329726999999878,80.22554000000008],[-72.358886999999925,80.226089000000059],[-72.378051999999968,80.224700999999982],[-72.391113000000018,80.221649000000014],[-72.400283999999942,80.218597000000102],[-72.420837000000006,80.211104999999975],[-72.412506000000008,80.207214000000079],[-72.188598999999954,80.163879000000122],[-72.140839000000028,80.156937000000028],[-72.082779000000016,80.151656999999943],[-72.052489999999977,80.149719000000005],[-71.996947999999861,80.143051000000071],[-71.977218999999934,80.139434999999992],[-71.896956999999929,80.11554000000001],[-71.895553999999947,80.114150999999993],[-71.898055999999997,80.108597000000032],[-71.905272999999966,80.103591999999935],[-71.926102000000014,80.099991000000102],[-71.954726999999934,80.096375000000023],[-72.115554999999972,80.087494000000106],[-72.250564999999938,80.085541000000148],[-72.391677999999956,80.085541000000148],[-72.392226999999991,80.081940000000088],[-72.358337000000006,80.064987000000031],[-72.340560999999923,80.059143000000006],[-72.306380999999988,80.057480000000055],[-72.170272999999952,80.053864000000033],[-72.137787000000003,80.053588999999988],[-72.053054999999915,80.057480000000055],[-71.920836999999949,80.066375999999991],[-71.885833999999932,80.067215000000147],[-71.849730999999906,80.067764000000125],[-71.701950000000011,80.064148000000046],[-71.618057000000022,80.06442300000009],[-71.489166000000012,80.068878000000097],[-71.376098999999954,80.076935000000049],[-71.316665999999941,80.081940000000088],[-71.186385999999914,80.093872000000033],[-70.968063000000029,80.114990000000148],[-70.854720999999984,80.12831100000011],[-70.821121000000005,80.131088000000034],[-70.762512000000015,80.133330999999941],[-70.651671999999962,80.131363000000022],[-70.626663000000008,80.130539000000056],[-70.50778200000002,80.099716000000058],[-70.502227999999945,80.093048000000067],[-70.497498000000007,80.082764000000054],[-70.48832699999997,80.057205000000067],[-70.494995000000017,80.050812000000121],[-70.508346999999958,80.047759999999982],[-70.568068999999923,80.042755000000113],[-70.59722899999997,80.039429000000098],[-70.646666999999979,80.031936999999971],[-70.662216000000001,80.026657000000057],[-70.673049999999989,80.020828000000051],[-70.679717999999866,80.014435000000105],[-70.672774999999945,80.006377999999984],[-70.672501000000011,80.001389000000017],[-70.689712999999983,79.993317000000047],[-70.71945199999999,79.986374000000012],[-70.767226999999878,79.981658999999979],[-70.916107000000011,79.974425999999994],[-70.954178000000013,79.972763000000043],[-71.08555599999994,79.968596999999988],[-71.241669000000002,79.960815000000025],[-71.27027899999996,79.957214000000135],[-71.401108000000022,79.93553199999991],[-71.416397000000018,79.930267000000072],[-71.453612999999962,79.906372000000033],[-71.460555999999883,79.901382000000012],[-71.458892999999932,79.894989000000066],[-71.438599000000011,79.88998399999997],[-71.415832999999907,79.886658000000125],[-71.394454999999994,79.884995000000004],[-71.352782999999931,79.886932000000058],[-71.338608000000022,79.888596000000064],[-71.168335000000013,79.914153999999996],[-71.109725999999966,79.915267999999969],[-71.063048999999978,79.911652000000117],[-70.944716999999969,79.894150000000081],[-70.925827000000027,79.890274000000034],[-70.910278000000005,79.885818000000086],[-70.916397000000018,79.879424999999969],[-71.005843999999968,79.819717000000082],[-71.116652999999985,79.789703000000088],[-71.136123999999938,79.784988000000055],[-71.183884000000035,79.77748100000008],[-71.212783999999999,79.774428999999998],[-71.343612999999948,79.76388500000013],[-71.376098999999954,79.760818000000029],[-71.400283999999999,79.757492000000013],[-71.444442999999922,79.741653000000042],[-71.463333000000034,79.736923000000047],[-71.49110399999995,79.733321999999987],[-71.699158000000011,79.709991000000116],[-71.739440999999943,79.707214000000022],[-71.781113000000005,79.706100000000049],[-71.817504999999983,79.703597999999943],[-71.922500999999954,79.695525999999973],[-71.990279999999984,79.689148000000046],[-72.096664000000033,79.674988000000099],[-72.217772999999909,79.659987999999998],[-72.267226999999934,79.659149000000014],[-72.287215999999944,79.659987999999998],[-72.317779999999914,79.667205999999965],[-72.330841000000021,79.672484999999938],[-72.348052999999879,79.678040000000067],[-72.367217999999923,79.681656000000089],[-72.392226999999991,79.683594000000028],[-72.425003000000004,79.685531999999967],[-72.467223999999931,79.684708000000001],[-72.574172999999917,79.679153000000099],[-72.619445999999925,79.677765000000022],[-72.661391999999978,79.677199999999971],[-72.697220000000016,79.678040000000067],[-72.729995999999971,79.679703000000131],[-72.756119000000012,79.682205000000067],[-72.912780999999939,79.702208999999982],[-72.932769999999948,79.706375000000037],[-72.944442999999978,79.710266000000104],[-73.062774999999988,79.79942299999999],[-73.061110999999983,79.805251999999996],[-73.048614999999984,79.808319000000097],[-73.027495999999985,79.80693100000002],[-73.017226999999934,79.804703000000018],[-73.003341999999975,79.803040000000124],[-72.979171999999949,79.802200000000084],[-72.945830999999998,79.804152999999985],[-72.924437999999952,79.806366000000139],[-72.912216000000001,79.809418000000051],[-72.902495999999928,79.815262000000075],[-72.926392000000021,79.819442999999978],[-73.059158000000025,79.825546000000088],[-73.091675000000009,79.826385000000073],[-73.178328999999906,79.822768999999994],[-73.218063000000029,79.822768999999994],[-73.285003999999958,79.826096000000121],[-73.348617999999988,79.83027600000014],[-73.371383999999978,79.833054000000118],[-73.396956999999986,79.834991000000002],[-73.43360899999999,79.835815000000139],[-73.576401000000033,79.832764000000111],[-73.667770000000019,79.829712000000029],[-73.745270000000005,79.828323000000012],[-73.780288999999982,79.82777400000009],[-73.853332999999907,79.829163000000051],[-73.866942999999992,79.830826000000002],[-73.864715999999987,79.835815000000139],[-73.853607000000011,79.839706000000035],[-73.801666000000012,79.84637500000008],[-73.745543999999938,79.849152000000004],[-73.742492999999854,79.849990999999932],[-73.746947999999975,79.854155999999932],[-73.768615999999895,79.858870999999965],[-73.890839000000028,79.875259000000028],[-73.945830999999885,79.881653000000085],[-74.010284000000013,79.885818000000086],[-74.117492999999968,79.888885000000016],[-74.156951999999933,79.888885000000016],[-74.238891999999964,79.887207000000103],[-74.283614999999941,79.881363000000079],[-74.30610699999994,79.876923000000033],[-74.383621000000005,79.868591000000094],[-74.415282999999988,79.865265000000022],[-74.576401000000033,79.856934000000138],[-74.667495999999971,79.853591999999992],[-74.795272999999952,79.850815000000125],[-74.833069000000023,79.849152000000004],[-74.846389999999985,79.847214000000065],[-74.846114999999941,79.84387200000009],[-74.71665999999999,79.796936000000073],[-74.699431999999945,79.792755],[-74.683884000000035,79.789978000000076],[-74.654998999999975,79.788879000000122],[-74.488892000000021,79.791655999999989],[-74.444992000000013,79.794708000000128],[-74.392226999999934,79.800261999999918],[-74.351668999999958,79.802475000000072],[-74.309432999999956,79.803314000000057],[-74.236388999999974,79.801925999999924],[-74.106383999999878,79.795532000000094],[-73.951401000000033,79.784424000000115],[-73.714721999999938,79.76638800000012],[-73.510833999999988,79.756377999999984],[-73.384734999999921,79.748871000000065],[-73.366652999999985,79.718048000000067],[-73.360824999999863,79.712769000000094],[-73.295546999999999,79.688582999999994],[-73.256957999999884,79.678040000000067],[-73.206664999999987,79.663605000000132],[-73.188889000000017,79.658035000000041],[-73.174438000000009,79.651657000000057],[-73.168334999999956,79.646103000000096],[-73.126098999999897,79.569443000000035],[-73.125823999999966,79.558318999999983],[-73.128875999999991,79.554153000000042],[-73.135833999999988,79.549713000000054],[-73.148620999999991,79.543593999999985],[-73.163054999999986,79.538878999999952],[-73.180831999999953,79.534149000000127],[-73.247222999999963,79.520827999999995],[-73.296111999999937,79.512772000000098],[-73.353881999999942,79.505829000000119],[-73.446380999999917,79.499145999999939],[-73.657776000000013,79.496368000000132],[-73.693054000000018,79.496933000000013],[-73.729172000000005,79.498596000000077],[-73.758057000000008,79.500275000000101],[-73.779998999999975,79.503052000000025],[-73.791945999999939,79.506653000000085],[-73.817229999999938,79.515549000000021],[-73.837783999999999,79.527480999999966],[-73.863892000000021,79.540267999999969],[-73.876662999999951,79.544708000000014],[-73.916106999999954,79.552475000000129],[-73.950286999999889,79.555252000000053],[-73.965012000000002,79.554703000000075],[-73.988892000000021,79.55192599999998],[-74.001113999999973,79.545821999999987],[-74.000290000000007,79.541656000000046],[-73.996947999999975,79.535537999999917],[-73.989440999999943,79.528595000000109],[-73.968612999999891,79.516937000000098],[-73.959166999999923,79.508881000000031],[-73.949996999999939,79.493866000000082],[-73.949721999999952,79.479980000000069],[-73.953063999999983,79.472762999999986],[-73.961945000000014,79.466933999999981],[-73.98332199999993,79.455551000000128],[-73.998046999999985,79.451385000000073],[-74.023620999999991,79.446930000000066],[-74.081389999999999,79.440536000000009],[-74.11610399999995,79.43803400000013],[-74.160278000000005,79.436371000000008],[-74.198333999999988,79.436095999999964],[-74.544158999999922,79.43803400000013],[-74.617492999999854,79.438583000000051],[-74.673614999999927,79.444138000000123],[-74.688598999999897,79.446930000000066],[-74.931670999999938,79.498871000000122],[-74.932410999999888,79.504798999999991],[-74.941939999999988,79.510543999999982],[-74.96444699999995,79.513046000000031],[-74.987503000000004,79.509995000000004],[-75.043334999999956,79.49581900000004],[-75.060271999999884,79.490813999999943],[-75.059433000000013,79.483871000000136],[-74.995269999999948,79.453598],[-74.983062999999959,79.449706999999933],[-74.948882999999967,79.440810999999997],[-74.912215999999944,79.429703000000018],[-74.897231999999974,79.423308999999961],[-74.884444999999971,79.416092000000049],[-74.883056999999894,79.408325000000104],[-74.911117999999988,79.39387499999998],[-74.93499799999995,79.385269000000051],[-74.951949999999954,79.380264000000011],[-75,79.375488000000075],[-75.016953000000001,79.374146000000053],[-75.058334000000002,79.373871000000065],[-75.213897999999972,79.376373000000115],[-75.31361400000003,79.379974000000004],[-75.410278000000005,79.384155000000078],[-75.531386999999995,79.392487000000074],[-75.695266999999944,79.409987999999998],[-75.799728000000016,79.431366000000139],[-75.907776000000013,79.426086000000055],[-75.931380999999988,79.423598999999967],[-75.957503999999972,79.426086000000055],[-75.985275000000001,79.429703000000018],[-76.031386999999995,79.438309000000118],[-76.049164000000019,79.443038999999999],[-76.097503999999958,79.461929000000112],[-76.109160999999915,79.467758000000117],[-76.115279999999927,79.472487999999942],[-76.124160999999958,79.476379000000009],[-76.138610999999912,79.481369000000086],[-76.175827000000027,79.488876000000005],[-76.203888000000006,79.492477000000065],[-76.261123999999995,79.497756999999979],[-76.320281999999906,79.501389000000074],[-76.636123999999995,79.519440000000088],[-76.665282999999988,79.520827999999995],[-76.718338000000017,79.51998900000001],[-76.795273000000009,79.51138300000008],[-76.834441999999967,79.508881000000031],[-76.872771999999998,79.508606000000043],[-76.90583799999996,79.509720000000016],[-77.050277999999992,79.518600000000049],[-77.069732999999985,79.523880000000077],[-77.092772999999909,79.539703000000145],[-77.112212999999997,79.545258000000047],[-77.142501999999865,79.547485000000052],[-77.160552999999936,79.543593999999985],[-77.191375999999934,79.511108000000092],[-77.184433000000013,79.503600999999946],[-77.178604000000007,79.499710000000107],[-77.134444999999971,79.490265000000022],[-77.071670999999924,79.486923000000104],[-76.895554000000004,79.48054500000012],[-76.867217999999923,79.479705999999965],[-76.612503000000004,79.474701000000096],[-76.406386999999995,79.473602000000142],[-76.204726999999991,79.461380000000133],[-76.179168999999888,79.459717000000069],[-76.159438999999963,79.456375000000094],[-76.143341000000021,79.449996999999939],[-76.138061999999934,79.443313999999987],[-76.138901000000033,79.441086000000041],[-76.149993999999992,79.437759000000085],[-76.159164000000033,79.436095999999964],[-76.189986999999974,79.433319000000097],[-76.208054000000004,79.429703000000018],[-76.205565999999976,79.424698000000149],[-76.167496000000028,79.396102999999925],[-76.157501000000025,79.391663000000108],[-76.11721799999998,79.384430000000123],[-76.083327999999995,79.378860000000032],[-76.059157999999968,79.374985000000038],[-75.902221999999995,79.357207999999957],[-75.881942999999978,79.353317000000118],[-75.879165999999998,79.351378999999952],[-75.889998999999875,79.348037999999917],[-75.902785999999878,79.346099999999979],[-76.086670000000026,79.332214000000022],[-76.12332200000003,79.331100000000049],[-76.351104999999961,79.341934000000094],[-76.682770000000005,79.352767999999969],[-76.717772999999909,79.353317000000118],[-76.790557999999976,79.353317000000118],[-76.829178000000013,79.350815000000011],[-76.869719999999973,79.349426000000051],[-76.89416499999993,79.353317000000118],[-76.959441999999967,79.367203000000075],[-77.018889999999999,79.381927000000132],[-77.076401000000033,79.398331000000098],[-77.090285999999935,79.40554800000001],[-77.105559999999912,79.416092000000049],[-77.108337000000006,79.420822000000101],[-77.212509000000011,79.447754000000032],[-77.326400999999976,79.454163000000051],[-77.359160999999915,79.455551000000128],[-77.386123999999938,79.452774000000034],[-77.397507000000019,79.447205000000054],[-77.395003999999972,79.440262000000075],[-77.384445000000028,79.433044000000052],[-77.262221999999952,79.372482000000048],[-77.172500999999954,79.336380000000077],[-77.158614999999998,79.329162999999994],[-77.163894999999968,79.324707000000046],[-77.187774999999988,79.322769000000108],[-77.228058000000033,79.321655000000135],[-77.260559000000001,79.322769000000108],[-77.317229999999938,79.327773999999977],[-77.36721799999998,79.336105000000089],[-77.386397999999986,79.33859300000006],[-77.41361999999998,79.34165999999999],[-77.466110000000015,79.346099999999979],[-77.477782999999931,79.346099999999979],[-77.596114999999941,79.345824999999991],[-77.634170999999924,79.345534999999984],[-77.707503999999972,79.343323000000055],[-77.739990000000034,79.344437000000084],[-77.769729999999981,79.346375000000023],[-77.819732999999985,79.351653999999996],[-77.905272999999909,79.365265000000136],[-77.922501000000011,79.366379000000109],[-77.957229999999981,79.363876000000118],[-78.051391999999964,79.354706000000078],[-78.058883999999978,79.349426000000051],[-78.043610000000001,79.344437000000084],[-78.021392999999932,79.339980999999966],[-77.903335999999967,79.322495000000004],[-77.876099000000011,79.319717000000026],[-77.846114999999998,79.317764000000068],[-77.809998000000007,79.316665999999998],[-77.760009999999966,79.316375999999991],[-77.726944000000003,79.317490000000134],[-77.650833000000034,79.317764000000068],[-77.624434999999949,79.315536000000122],[-77.529175000000009,79.30525200000011],[-77.478607000000011,79.29664600000001],[-77.322234999999978,79.267487000000017],[-77.329178000000013,79.261383000000137],[-77.341384999999946,79.259430000000009],[-77.358046999999942,79.257767000000115],[-77.422226000000023,79.254714999999976],[-77.453063999999983,79.252487000000031],[-77.482223999999974,79.248871000000008],[-77.496947999999918,79.24581900000004],[-77.488051999999982,79.244980000000112],[-77.424712999999997,79.246094000000085],[-77.358336999999949,79.249999999999943],[-77.191939999999988,79.263885000000073],[-76.999725000000012,79.273315000000139],[-76.671386999999925,79.277481000000023],[-76.237777999999935,79.271103000000039],[-76.168059999999969,79.269989000000066],[-76.136123999999995,79.268600000000106],[-76.105834999999956,79.265823000000012],[-76.068619000000012,79.25749200000007],[-76.052779999999984,79.251099000000124],[-76.03443900000002,79.24581900000004],[-75.991942999999992,79.236374000000012],[-75.938889000000017,79.230270000000132],[-75.807495000000017,79.227768000000083],[-75.777221999999938,79.227478000000076],[-75.734436000000017,79.229431000000034],[-75.675277999999992,79.236374000000012],[-75.637786999999946,79.239426000000094],[-75.608336999999949,79.239975000000072],[-75.465012000000002,79.239975000000072],[-75.405837999999903,79.237487999999985],[-75.083068999999966,79.235260000000039],[-74.876099000000011,79.238037000000134],[-74.800277999999992,79.240540000000067],[-74.777221999999995,79.240265000000079],[-74.52555799999999,79.227203000000031],[-74.496947999999975,79.224990999999989],[-74.47084000000001,79.22164900000007],[-74.464721999999995,79.219986000000119],[-74.467223999999987,79.215546000000131],[-74.474166999999966,79.211928999999998],[-74.520279000000016,79.203048999999965],[-74.571944999999914,79.196091000000138],[-74.601944000000003,79.192748999999992],[-74.758057000000008,79.18553200000008],[-74.791945999999996,79.182754999999986],[-74.817504999999926,79.17886400000009],[-74.826950000000011,79.174149000000057],[-74.819167999999934,79.167755000000056],[-74.795546999999999,79.163605000000018],[-74.766952999999944,79.161377000000073],[-74.672501000000011,79.156937000000028],[-74.617492999999854,79.151381999999955],[-74.445830999999941,79.065810999999997],[-74.436661000000015,79.0577550000001],[-74.443053999999961,79.046936000000073],[-74.455276000000026,79.041655999999989],[-74.47193900000002,79.036652000000004],[-74.514450000000011,79.028595000000053],[-74.543883999999991,79.025269000000037],[-74.578339000000028,79.023314999999968],[-74.654175000000009,79.022217000000069],[-74.725005999999951,79.022766000000047],[-74.960007000000019,79.028320000000008],[-75.116104000000007,79.035812000000135],[-75.243057000000022,79.043045000000006],[-75.626662999999951,79.066086000000041],[-75.655563000000029,79.068328999999949],[-75.763335999999981,79.080551000000128],[-75.885284000000013,79.097488000000112],[-75.891387999999949,79.102203000000145],[-75.887221999999952,79.12831100000011],[-75.880829000000006,79.134995000000004],[-75.856658999999979,79.139708999999925],[-75.848617999999988,79.14498900000001],[-75.857772999999952,79.152205999999921],[-75.944442999999922,79.173035000000084],[-76.047774999999945,79.192200000000071],[-76.071670999999924,79.196091000000138],[-76.098052999999993,79.199141999999995],[-76.132767000000001,79.199706999999989],[-76.309433000000013,79.190811000000053],[-76.519164999999987,79.190262000000132],[-76.859160999999972,79.185257000000092],[-76.973327999999924,79.183318999999926],[-77.044998000000021,79.183318999999926],[-77.083069000000023,79.183593999999971],[-77.111663999999962,79.184982000000048],[-77.167496000000028,79.189972000000125],[-77.205001999999979,79.195251000000098],[-77.250564999999995,79.198029000000076],[-77.388901000000033,79.199706999999989],[-77.510833999999988,79.194976999999994],[-77.548049999999932,79.194427000000132],[-77.642501999999922,79.199706999999989],[-77.695267000000001,79.204712000000029],[-77.749999999999886,79.208328000000108],[-77.777495999999928,79.208878000000141],[-77.817504999999983,79.207763999999997],[-78.158889999999985,79.189972000000125],[-78.213622999999984,79.183593999999971],[-78.233321999999987,79.17886400000009],[-78.245833999999945,79.174698000000035],[-78.25389100000001,79.169983000000002],[-78.253066999999987,79.164428999999984],[-78.228607000000011,79.160538000000088],[-78.181670999999994,79.159424000000115],[-78.084732000000031,79.168045000000063],[-78.056106999999997,79.171921000000111],[-78.026397999999972,79.174698000000035],[-77.988892000000021,79.177475000000129],[-77.912216000000001,79.17942800000003],[-77.842772999999966,79.178589000000102],[-77.47193900000002,79.167755000000056],[-77.237777999999992,79.156937000000028],[-77.208617999999944,79.154709000000082],[-77.181106999999997,79.153869999999927],[-77.018615999999952,79.153595000000109],[-76.841949,79.153595000000109],[-76.706115999999952,79.153045999999961],[-76.639998999999989,79.15109300000006],[-76.61082499999992,79.149155000000121],[-76.484725999999966,79.136108000000092],[-76.430557000000022,79.132202000000007],[-76.319732999999928,79.124695000000088],[-76.260009999999909,79.121917999999994],[-76.233611999999937,79.121642999999949],[-76.191375999999934,79.123596000000077],[-76.15972899999997,79.122208000000001],[-76.136672999999973,79.11914100000007],[-76.081954999999994,79.099716000000114],[-76.085006999999905,79.093323000000112],[-76.099990999999875,79.08776899999998],[-76.116652999999928,79.083328000000051],[-76.146666999999979,79.077774000000034],[-76.170546999999885,79.075821000000076],[-76.210006999999962,79.074707000000103],[-76.265014999999948,79.074432000000115],[-76.360001000000011,79.078323000000012],[-76.515015000000005,79.085815000000082],[-76.575561999999991,79.089432000000045],[-76.637222000000008,79.090546000000018],[-76.676391999999964,79.089432000000045],[-76.828339000000028,79.082764000000111],[-76.996383999999978,79.074707000000103],[-77.073333999999932,79.070831000000055],[-77.152785999999992,79.066086000000041],[-77.223052999999993,79.060532000000023],[-77.326950000000011,79.051651000000106],[-77.355559999999969,79.048325000000034],[-77.429717999999923,79.037200999999982],[-77.449431999999945,79.032760999999937],[-77.464721999999995,79.027771000000087],[-77.49499499999996,79.017761000000007],[-77.529175000000009,79.018051000000014],[-77.693054000000018,79.033600000000092],[-77.719727000000034,79.036652000000004],[-77.742217999999923,79.041930999999977],[-77.783066000000019,79.062484999999981],[-77.799987999999928,79.066666000000055],[-77.84973100000002,79.069717000000082],[-77.919723999999917,79.068878000000097],[-78.035004000000015,79.065536000000009],[-78.103333000000021,79.066086000000041],[-78.135009999999966,79.067490000000021],[-78.165282999999931,79.06999200000007],[-78.214447000000007,79.075271999999984],[-78.234160999999858,79.078323000000012],[-78.289992999999981,79.083328000000051],[-78.351105000000018,79.086380000000133],[-78.425277999999992,79.083054000000118],[-78.671386999999982,79.071930000000009],[-78.818343999999968,79.069442999999978],[-78.860000999999954,79.067214999999976],[-78.891387999999893,79.063309000000118],[-78.879439999999931,79.060256999999979],[-78.692489999999964,79.058594000000085],[-78.588332999999977,79.059143000000006],[-78.405272999999966,79.064987000000031],[-78.283889999999985,79.066666000000055],[-78.236388999999974,79.064987000000031],[-78.15972899999997,79.051086000000055],[-78.108337000000006,79.04664600000001],[-78.070557000000008,79.04664600000001],[-77.966110000000015,79.049149],[-77.86111499999987,79.049149],[-77.829453000000001,79.048035000000027],[-77.799437999999896,79.045258000000103],[-77.785552999999993,79.041092000000049],[-77.708344000000011,79.013046000000145],[-77.703339000000028,79.006943000000035],[-77.71665999999999,79.003326000000072],[-77.796111999999937,78.988586000000112],[-77.835007000000019,78.979431000000034],[-77.946945000000028,78.951660000000004],[-77.946380999999917,78.945815999999979],[-77.952498999999932,78.939697000000137],[-78.040282999999988,78.906097000000045],[-78.147506999999962,78.865265000000079],[-78.282227000000034,78.80386400000009],[-78.289992999999981,78.799149000000057],[-78.297226000000023,78.788879000000122],[-78.296111999999937,78.783051],[-78.285552999999993,78.775818000000015],[-78.269454999999937,78.772491000000059],[-78.248046999999929,78.770263999999997],[-78.215560999999923,78.770537999999931],[-78.196105999999929,78.772217000000126],[-78.168334999999956,78.780823000000055],[-78.15972899999997,78.784988000000055],[-78.15943900000002,78.789978000000133],[-78.145843999999954,78.800812000000008],[-78.129439999999988,78.812194999999974],[-78.105269999999905,78.828598000000056],[-78.042769999999962,78.861649],[-78.029174999999896,78.867477000000122],[-77.902221999999995,78.91276600000009],[-77.887222000000008,78.917755000000056],[-77.75167799999997,78.95748900000001],[-77.711944999999957,78.966095000000109],[-77.689437999999996,78.968596999999988],[-77.526397999999972,78.979156000000046],[-77.370270000000005,78.984421000000111],[-77.258346999999958,78.986374000000069],[-77.177490000000034,78.989700000000084],[-77.107497999999964,78.99552900000009],[-77.078888000000006,78.998871000000065],[-77.026107999999965,79.006652999999972],[-76.960281000000009,79.012772000000041],[-76.75418099999996,79.027771000000087],[-76.710555999999997,79.028320000000008],[-76.683318999999983,79.027771000000087],[-76.424163999999962,79.022491000000002],[-76.361389000000031,79.019714000000135],[-75.98971599999993,78.99552900000009],[-75.732223999999974,78.969147000000021],[-75.720276000000013,78.965545999999961],[-75.769454999999994,78.939971999999955],[-75.781113000000005,78.934708000000001],[-75.796951000000035,78.929703000000131],[-75.825561999999991,78.926085999999998],[-75.858611999999937,78.923309000000074],[-75.896118000000001,78.920821999999987],[-76.095276000000013,78.910262999999986],[-76.25,78.902205999999978],[-76.287215999999944,78.899719000000118],[-76.315552000000025,78.896103000000039],[-76.335555999999997,78.891663000000051],[-76.375548999999921,78.882750999999985],[-76.415008999999998,78.873870999999951],[-76.446105999999929,78.863876000000062],[-76.456389999999942,78.857758000000103],[-76.460007000000019,78.851929000000098],[-76.458343999999897,78.844986000000119],[-76.440276999999924,78.839432000000102],[-76.41194200000001,78.837203999999986],[-76.394454999999937,78.840820000000008],[-76.391113000000018,78.843872000000147],[-76.37470999999988,78.851089000000059],[-76.344727000000034,78.858871000000022],[-76.330001999999979,78.861649],[-76.231673999999998,78.879149999999981],[-76.204726999999991,78.881088000000091],[-76.178329000000019,78.880264000000125],[-76.15834000000001,78.879149999999981],[-76.133330999999998,78.876648000000046],[-76.077498999999989,78.873032000000023],[-75.975006000000008,78.872756999999979],[-75.791671999999949,78.884155000000021],[-75.461120999999991,78.891372999999987],[-75.316101000000003,78.892211999999972],[-75.292220999999927,78.890274000000034],[-75.180557000000022,78.879149999999981],[-74.964721999999995,78.856094000000098],[-74.775009000000011,78.829987000000074],[-74.760559000000001,78.823607999999979],[-74.752791999999943,78.816940000000045],[-74.719726999999978,78.707489000000066],[-74.727218999999934,78.701385000000016],[-74.755844000000025,78.69802900000002],[-74.823059000000001,78.697478999999987],[-74.84333799999996,78.693039000000113],[-74.86999499999996,78.675812000000121],[-74.869445999999925,78.668594000000098],[-74.857773000000009,78.636107999999979],[-74.819457999999884,78.627472000000068],[-74.789992999999981,78.591370000000097],[-74.862212999999997,78.56721500000009],[-74.878052000000025,78.562485000000038],[-75.024169999999913,78.531937000000084],[-75.048049999999989,78.528046000000018],[-75.072509999999909,78.52777100000003],[-75.079453000000001,78.533875000000023],[-75.101394999999968,78.53776600000009],[-75.131377999999927,78.539153999999996],[-75.16722099999987,78.539703000000145],[-75.200287000000003,78.537491000000102],[-75.219726999999978,78.533051000000057],[-75.235275000000001,78.528046000000018],[-75.261672999999973,78.523315000000082],[-75.290557999999919,78.520537999999988],[-75.479445999999996,78.50999500000006],[-75.830001999999979,78.504715000000147],[-75.888335999999924,78.506103999999993],[-75.965011999999888,78.510818000000086],[-75.989990000000034,78.513885000000016],[-76.030563000000029,78.521103000000039],[-76.073058999999944,78.529709000000139],[-76.095550999999944,78.533600000000035],[-76.120270000000005,78.536652000000117],[-76.151107999999965,78.538589000000002],[-76.404448999999886,78.548035000000141],[-76.437209999999993,78.548599000000081],[-76.468886999999938,78.54553199999998],[-76.642775999999969,78.528320000000122],[-76.684433000000013,78.522217000000012],[-76.691101000000003,78.518875000000094],[-76.692764000000011,78.514708999999982],[-76.693603999999993,78.509720000000016],[-76.684997999999894,78.505829000000119],[-76.668335000000013,78.503875999999991],[-76.645844000000011,78.502777000000037],[-76.539992999999981,78.503325999999959],[-76.468338000000017,78.505264000000125],[-76.36471599999993,78.513321000000076],[-76.324722000000008,78.515274000000034],[-76.289444000000003,78.515549000000021],[-76.261948000000018,78.513611000000083],[-76.243057000000022,78.512207000000103],[-76.124999999999943,78.494141000000127],[-76.114165999999955,78.488312000000121],[-76.112777999999878,78.481094000000098],[-76.108886999999982,78.474990999999989],[-76.100554999999986,78.468322999999998],[-76.081679999999949,78.464432000000102],[-76.057495000000017,78.461929000000112],[-75.761123999999995,78.443862999999965],[-75.61721799999998,78.43803400000013],[-75.49888599999997,78.433044000000052],[-75.443603999999993,78.430542000000003],[-75.410827999999924,78.426651000000106],[-75.269729999999925,78.404160000000104],[-75.089995999999985,78.368866000000025],[-75.031386999999995,78.331375000000037],[-75.038329999999917,78.325546000000031],[-75.051940999999886,78.315810999999997],[-75.0625,78.309708000000001],[-75.086670000000026,78.306366000000082],[-75.189986999999974,78.299713000000111],[-75.22193900000002,78.300262000000032],[-75.246108999999933,78.303314],[-75.273055999999883,78.305542000000116],[-75.307495000000017,78.305542000000116],[-75.358611999999937,78.301651000000049],[-75.377212999999983,78.29664600000001],[-75.385009999999909,78.291367000000037],[-75.392226999999934,78.285262999999986],[-75.39805599999994,78.272491000000002],[-75.479172000000005,78.222214000000122],[-75.494155999999975,78.217209000000082],[-75.513335999999924,78.212769000000037],[-75.582503999999915,78.201096000000007],[-75.61361699999992,78.198029000000076],[-75.650283999999942,78.196930000000123],[-75.679442999999992,78.198318000000029],[-75.776397999999972,78.210541000000092],[-75.902495999999928,78.224152000000061],[-75.985549999999932,78.229979999999955],[-76.157227000000034,78.240540000000124],[-76.188888999999961,78.241089000000045],[-76.225829999999974,78.239975000000072],[-76.291945999999996,78.234421000000054],[-76.324447999999961,78.23275799999999],[-76.361389000000031,78.231658999999979],[-76.393065999999976,78.232208000000128],[-76.474715999999944,78.239425999999924],[-76.520278999999903,78.24552900000009],[-76.548049999999876,78.248322000000087],[-76.574172999999917,78.249709999999993],[-76.608336999999949,78.249419999999986],[-76.630554000000018,78.247757000000036],[-76.831680000000006,78.230820000000051],[-76.855269999999962,78.227478000000076],[-76.888061999999991,78.21804800000001],[-76.898620999999935,78.212494000000049],[-76.912216000000001,78.201096000000007],[-76.90834000000001,78.195525999999916],[-76.883330999999941,78.191925000000083],[-76.688599000000011,78.168869000000029],[-76.664444000000003,78.166092000000106],[-76.641678000000013,78.164429000000041],[-76.537780999999939,78.158324999999991],[-76.021392999999989,78.138046000000031],[-75.763900999999976,78.131653000000085],[-75.735549999999989,78.1308140000001],[-75.621933000000013,78.1244200000001],[-75.59722899999997,78.12081900000004],[-75.581389999999942,78.115814],[-75.575561999999934,78.107758000000103],[-75.575287000000003,78.101379000000065],[-75.588897999999972,78.089432000000102],[-75.599166999999909,78.083328000000051],[-75.692763999999954,78.039978000000076],[-75.707503999999915,78.034988000000055],[-75.723052999999993,78.030823000000055],[-75.761123999999995,78.022491000000059],[-75.809433000000013,78.008331000000112],[-75.838608000000022,77.998322000000087],[-75.922775000000001,77.956650000000081],[-75.965011999999888,77.973037999999917],[-75.984160999999858,77.977478000000133],[-76.157227000000034,78.012497000000053],[-76.214721999999995,78.01527399999992],[-76.246108999999933,78.015823000000069],[-76.276672000000019,78.012772000000041],[-76.303054999999972,78.009430000000123],[-76.444716999999912,77.988586000000112],[-76.466949,77.984710999999947],[-76.481383999999935,77.979706000000078],[-76.491942999999992,77.968597000000045],[-76.499725000000012,77.958327999999995],[-76.526108000000022,77.949142000000052],[-76.548339999999996,77.944977000000051],[-76.595839999999953,77.939697000000137],[-76.669998000000021,77.936371000000122],[-76.694442999999865,77.937195000000088],[-76.730559999999912,77.936096000000077],[-76.757232999999985,77.93331900000004],[-76.780288999999925,77.929977000000065],[-76.802490000000034,77.920258000000103],[-76.805557000000022,77.917205999999965],[-76.806945999999925,77.91304000000008],[-76.825287000000003,77.908325000000048],[-76.86221299999994,77.90277100000003],[-76.93110699999994,77.901382000000069],[-76.959731999999974,77.902481000000023],[-76.986114999999927,77.904708999999968],[-77.036391999999921,77.909714000000008],[-77.077788999999939,77.915817000000004],[-77.089171999999962,77.919708000000071],[-77.095276000000013,77.927199999999971],[-77.104172000000005,77.934417999999994],[-77.120269999999891,77.939148000000046],[-77.160003999999901,77.946091000000024],[-77.210830999999985,77.949142000000052],[-77.244445999999982,77.948593000000074],[-77.272232000000031,77.946365000000128],[-77.298339999999996,77.942749000000106],[-77.336120999999991,77.94081099999994],[-77.838897999999972,77.942749000000106],[-77.997498000000007,77.957214000000022],[-78.03694200000001,77.966384999999946],[-78.140838999999914,77.985260000000096],[-78.162216000000001,77.988312000000008],[-78.237502999999947,77.995818999999983],[-78.260833999999932,77.995254999999986],[-78.411391999999921,77.917755000000113],[-78.420837000000006,77.912491000000102],[-78.426391999999964,77.90637200000009],[-78.419723999999974,77.898880000000133],[-78.410552999999936,77.892211999999972],[-78.330840999999907,77.868591000000094],[-78.317107999999962,77.865814],[-78.282500999999968,77.862762000000089],[-78.260283999999899,77.861374000000012],[-78.173889000000031,77.859984999999995],[-78.139450000000011,77.857208000000128],[-77.97193900000002,77.807204999999954],[-77.958617999999888,77.802200000000084],[-77.947768999999994,77.796371000000079],[-77.940826000000015,77.765549000000021],[-77.940551999999968,77.759995000000004],[-77.981109999999887,77.701385000000073],[-77.920272999999952,77.669983000000116],[-77.882767000000001,77.661652000000004],[-77.862777999999992,77.656372000000147],[-77.742766999999958,77.622208000000114],[-77.724716000000001,77.613312000000008],[-77.718612999999948,77.605820000000051],[-77.723052999999936,77.599152000000061],[-77.730835000000013,77.597214000000122],[-77.87222300000002,77.568329000000119],[-77.952224999999999,77.555817000000104],[-77.958343999999954,77.529709000000139],[-77.944442999999978,77.511383000000137],[-77.946105999999986,77.504714999999976],[-77.948607999999979,77.501938000000109],[-77.981673999999998,77.486374000000012],[-77.99499499999996,77.481094000000098],[-78.256667999999934,77.381926999999962],[-78.303878999999995,77.373306000000071],[-78.690552000000025,77.315535999999952],[-78.741104000000007,77.309418000000051],[-78.777221999999995,77.307205000000067],[-78.806655999999975,77.307205000000067],[-78.834166999999923,77.30831900000004],[-78.839721999999995,77.310256999999979],[-78.833069000000023,77.314987000000031],[-78.786117999999988,77.335815000000082],[-78.733886999999982,77.362762000000032],[-78.726944000000003,77.367477000000065],[-78.725280999999995,77.371094000000028],[-78.727782999999988,77.375259000000028],[-78.764449999999954,77.3808140000001],[-78.784438999999907,77.3808140000001],[-78.816665999999998,77.378036000000122],[-78.841110000000015,77.374420000000043],[-78.861663999999962,77.370255000000043],[-78.89805599999994,77.360809000000074],[-78.920273000000009,77.350815000000068],[-78.939986999999917,77.338882000000012],[-78.948043999999982,77.332489000000066],[-78.955565999999919,77.328322999999955],[-78.968338000000017,77.323317999999915],[-79.00418099999996,77.313873000000058],[-79.083327999999995,77.299987999999985],[-79.139724999999999,77.293594000000098],[-79.171386999999868,77.290817000000004],[-79.207229999999981,77.288315000000125],[-79.270554000000004,77.286926000000108],[-79.321670999999924,77.288589000000059],[-79.373321999999973,77.29304499999995],[-79.493332000000009,77.304428000000144],[-79.631377999999984,77.316666000000055],[-79.653885000000002,77.318603999999993],[-79.712218999999948,77.318328999999949],[-79.83666999999997,77.306931000000134],[-79.860824999999977,77.303314],[-79.881942999999978,77.299713000000111],[-79.896118000000001,77.295822000000044],[-79.92332499999992,77.285263000000043],[-79.960555999999883,77.276932000000102],[-79.988327000000027,77.273604999999975],[-80.01916499999993,77.272217000000069],[-80.042495999999971,77.272766000000047],[-80.456116000000009,77.296097000000088],[-80.753341999999918,77.330551000000128],[-80.775833000000034,77.334427000000005],[-80.879714999999919,77.353043000000014],[-81.005568999999923,77.377197000000137],[-81.015288999999996,77.381363000000022],[-81.019454999999994,77.392761000000064],[-81.027221999999995,77.398041000000092],[-81.035277999999948,77.40109300000006],[-81.095276000000013,77.411925999999994],[-81.121108999999933,77.413605000000018],[-81.150833000000034,77.413605000000018],[-81.207778999999903,77.415817000000061],[-81.254729999999995,77.420532000000094],[-81.277495999999928,77.42442299999999],[-81.294448999999929,77.429153000000042],[-81.310546999999985,77.434982000000048],[-81.316665999999998,77.438873000000115],[-81.321121000000005,77.450272000000041],[-81.325287000000003,77.454987000000074],[-81.337509000000011,77.462769000000037],[-81.351669000000015,77.469711000000075],[-81.370543999999938,77.475540000000137],[-81.388901000000033,77.480819999999994],[-81.442215000000033,77.491364000000033],[-81.533889999999928,77.506942999999978],[-81.573623999999938,77.512771999999984],[-81.587783999999942,77.517487000000017],[-81.589721999999995,77.520828000000051],[-81.608337000000006,77.553588999999988],[-81.610549999999989,77.576096000000064],[-81.820281999999963,77.621918000000107],[-81.839721999999938,77.625809000000004],[-81.845001000000025,77.628860000000032],[-81.848617999999988,77.639434999999935],[-81.847778000000005,77.643326000000002],[-81.836670000000026,77.65498400000007],[-81.847503999999901,77.665817000000004],[-81.860000999999954,77.671371000000022],[-81.876662999999951,77.677475000000072],[-81.89527899999996,77.682480000000112],[-81.913894999999911,77.685532000000023],[-81.928329000000019,77.685806000000127],[-81.930283000000031,77.684981999999991],[-81.935546999999929,77.678040000000067],[-81.949158000000011,77.655258000000003],[-81.949431999999945,77.644989000000123],[-81.911391999999921,77.609421000000111],[-81.895844000000011,77.604156000000046],[-81.857223999999974,77.598877000000073],[-81.810271999999941,77.595260999999994],[-81.798049999999989,77.59165999999999],[-81.787506000000008,77.587494000000049],[-81.678054999999972,77.538315000000068],[-81.670546999999942,77.531662000000097],[-81.667220999999984,77.52526899999998],[-81.666945999999996,77.502213000000097],[-81.670836999999949,77.496094000000085],[-81.690276999999924,77.485260000000039],[-81.710555999999997,77.474990999999989],[-81.71945199999999,77.469986000000119],[-81.748046999999929,77.448029000000076],[-81.743606999999997,77.441086000000098],[-81.739440999999999,77.436371000000065],[-81.728881999999999,77.429977000000008],[-81.700561999999877,77.422760000000096],[-81.523620999999991,77.378036000000122],[-81.484726000000023,77.372208000000001],[-81.432220000000029,77.368042000000059],[-81.336670000000026,77.368591000000038],[-81.25140399999998,77.36914100000007],[-81.203888000000006,77.370529000000147],[-81.189986999999917,77.368042000000059],[-81.178054999999972,77.360259999999926],[-81.172775000000001,77.354705999999965],[-81.167769999999962,77.342758000000117],[-81.165833000000021,77.337204000000099],[-81.165833000000021,77.332764000000054],[-81.169448999999986,77.32249500000006],[-81.283889999999985,77.315262000000018],[-81.425003000000004,77.306366000000082],[-81.538329999999974,77.302765000000079],[-81.874999999999943,77.292480000000126],[-81.953887999999949,77.302200000000028],[-82.091948999999943,77.316376000000048],[-82.151397999999972,77.303864000000033],[-82.166107000000011,77.292480000000126],[-82.081680000000006,77.272766000000047],[-82.043335000000013,77.265548999999908],[-81.978881999999999,77.258331000000112],[-81.90695199999999,77.198318000000029],[-81.906577999999968,77.1933140000001],[-81.902221999999995,77.187195000000031],[-81.876099000000011,77.174698000000092],[-81.868057000000022,77.171646000000123],[-81.834166999999866,77.162491000000102],[-81.796660999999972,77.157486000000063],[-81.78694200000001,77.157486000000063],[-81.715835999999967,77.176926000000037],[-81.696654999999907,77.181366000000025],[-81.634444999999971,77.193863000000022],[-81.607497999999964,77.197479000000101],[-81.395003999999972,77.231659000000036],[-81.149170000000026,77.274703999999986],[-80.960281000000009,77.271378000000141],[-80.592772999999966,77.242477000000008],[-80.526397999999915,77.234985000000052],[-80.280288999999868,77.213608000000022],[-80.258621000000005,77.212204000000042],[-80.205840999999964,77.209427000000119],[-80.154998999999975,77.208037999999931],[-80.135833999999988,77.205826000000059],[-80.116104000000007,77.20138500000013],[-80.114715999999987,77.195525999999973],[-80.136947999999961,77.186096000000077],[-80.152785999999992,77.181656000000032],[-80.255004999999983,77.153320000000122],[-80.401671999999962,77.086655000000007],[-80.40972899999997,77.081100000000106],[-80.40972899999997,77.076660000000118],[-80.394454999999937,77.072769000000051],[-80.373046999999929,77.071380999999917],[-80.34584000000001,77.074996999999996],[-80.328063999999927,77.078323000000012],[-80.206954999999937,77.108597000000088],[-80.159438999999963,77.122756999999979],[-80.135009999999966,77.139435000000049],[-80.118606999999997,77.150818000000072],[-80.094726999999978,77.161102000000085],[-80.072509999999909,77.17053199999998],[-80.013335999999924,77.190536000000066],[-79.93582200000003,77.206650000000025],[-79.785278000000005,77.231368999999972],[-79.725829999999917,77.239975000000072],[-79.660277999999948,77.24443100000002],[-79.633057000000008,77.243317000000047],[-79.445540999999992,77.234421000000111],[-79.424163999999905,77.233047000000113],[-79.255004999999983,77.218596999999988],[-79.216949,77.209717000000126],[-79.041945999999882,77.161102000000085],[-79.033066000000019,77.156647000000078],[-79.02806099999998,77.150543000000027],[-79.003890999999953,77.103592000000049],[-79.005004999999926,77.09693900000002],[-79.013335999999924,77.09137000000004],[-79.029723999999987,77.086929000000112],[-79.132492000000013,77.053589000000045],[-79.328888000000006,76.978591999999935],[-79.365554999999915,76.963318000000072],[-79.376663000000008,76.957489000000066],[-79.391387999999949,76.947204999999997],[-79.395003999999915,76.940536000000122],[-79.393065999999976,76.934143000000006],[-79.386948000000018,76.927475000000015],[-79.37222300000002,76.923309000000131],[-79.34584000000001,76.91804500000012],[-79.317504999999926,76.917755000000113],[-79.244445999999925,76.924987999999928],[-79.193053999999904,76.929152999999928],[-79.005843999999911,76.936096000000134],[-78.980835000000013,76.936371000000122],[-78.954178000000013,76.935256999999979],[-78.886123999999995,76.926926000000094],[-78.870834000000002,76.922211000000061],[-78.866394000000014,76.918869000000086],[-78.910004000000015,76.886658000000011],[-78.915282999999988,76.839706000000092],[-78.748336999999935,76.822494999999947],[-78.721938999999963,76.821380999999974],[-78.712218999999948,76.823318000000029],[-78.708053999999947,76.824997000000053],[-78.56361400000003,76.906647000000135],[-78.566101000000003,76.913605000000132],[-78.567504999999983,76.927200000000028],[-78.562774999999874,76.933043999999995],[-78.553878999999938,76.938582999999994],[-78.547775000000001,76.941360000000088],[-78.384444999999914,76.99971000000005],[-78.344161999999926,77.007767000000001],[-78.32028200000002,77.011658000000068],[-78.292770000000019,77.014709000000096],[-78.196944999999971,77.019440000000031],[-78.140838999999914,77.01998900000001],[-78.087219000000005,77.017761000000007],[-78.07028200000002,77.014434999999992],[-77.896666999999979,76.955551000000128],[-77.886947999999961,76.947754000000145],[-77.881103999999993,76.940262000000018],[-77.779448999999943,76.79136699999998],[-77.789443999999946,76.78166200000004],[-77.813323999999966,76.692748999999992],[-77.813613999999973,76.687759000000085],[-77.813048999999864,76.68193100000002],[-77.804992999999968,76.675261999999918],[-77.769454999999937,76.658325000000104],[-77.78443900000002,76.650269000000037],[-77.810271999999941,76.640823000000069],[-77.841110000000015,76.633331000000112],[-77.861663999999905,76.629700000000071],[-77.918335000000013,76.62831100000011],[-77.947219999999959,76.629425000000083],[-77.985000999999954,76.632476999999994],[-78.013625999999988,76.630814000000044],[-78.027495999999985,76.626922999999977],[-78.089721999999995,76.609420999999941],[-78.097777999999948,76.606094000000041],[-78.178328999999962,76.566085999999984],[-78.186110999999926,76.559708000000001],[-78.206107999999972,76.53914600000013],[-78.256667999999934,76.506653000000142],[-78.364440999999999,76.462493999999992],[-78.377486999999917,76.458038000000101],[-78.435103999999967,76.453171000000111],[-78.443328999999892,76.452209000000096],[-78.473052999999993,76.451660000000118],[-78.519164999999987,76.456940000000031],[-78.552490000000034,76.464157000000114],[-78.607772999999952,76.486649000000057],[-78.61471599999993,76.489975000000072],[-78.619445999999982,76.496094000000085],[-78.616942999999992,76.498871000000008],[-78.615004999999883,76.5],[-78.611388999999917,76.49941999999993],[-78.597228999999913,76.505264000000125],[-78.591949,76.5086060000001],[-78.588332999999977,76.513046000000088],[-78.613327000000027,76.547759999999982],[-78.627212999999927,76.563873000000001],[-78.75111400000003,76.572220000000016],[-78.773330999999985,76.572768999999937],[-78.790558000000033,76.571655000000135],[-78.868331999999953,76.521103000000096],[-78.886947999999961,76.497208000000057],[-78.900833000000034,76.478867000000093],[-78.937774999999988,76.449997000000053],[-78.946655000000021,76.444976999999994],[-78.96945199999999,76.43414300000012],[-78.994155999999975,76.424423000000047],[-79.013061999999991,76.420258000000047],[-79.06138599999997,76.41276600000009],[-79.090285999999992,76.411377000000073],[-79.139174999999966,76.411652000000117],[-79.170837000000006,76.409988000000112],[-79.18971299999987,76.405823000000112],[-79.198043999999868,76.400269000000094],[-79.261123999999995,76.352202999999975],[-79.265563999999927,76.346100000000035],[-79.266402999999968,76.339432000000102],[-79.262786999999946,76.331940000000145],[-79.254181000000017,76.320267000000115],[-79.25306699999993,76.314697000000024],[-79.261123999999995,76.309143000000063],[-79.272780999999952,76.304152999999985],[-79.312774999999988,76.297484999999995],[-79.338608000000022,76.296371000000022],[-79.365828999999962,76.296646000000067],[-79.414168999999902,76.301086000000055],[-79.445540999999992,76.306641000000127],[-79.500838999999928,76.314148000000102],[-79.525283999999886,76.31442300000009],[-79.573623999999995,76.311645999999996],[-79.596664000000033,76.308594000000085],[-79.805556999999965,76.278320000000065],[-79.924438000000009,76.25360100000006],[-80.061385999999914,76.226928999999984],[-80.087218999999948,76.223602000000085],[-80.107223999999974,76.2227630000001],[-80.121658000000025,76.224426000000051],[-80.136123999999995,76.228317000000118],[-80.156386999999881,76.23692299999999],[-80.178329000000019,76.239700000000084],[-80.203613000000018,76.240539999999953],[-80.230285999999978,76.239975000000129],[-80.261123999999995,76.238312000000008],[-80.2933349999999,76.235260000000096],[-80.338332999999977,76.228317000000118],[-80.366942999999992,76.218048000000067],[-80.375548999999921,76.213043000000027],[-80.383056999999951,76.20748900000001],[-80.396666999999923,76.202208999999982],[-80.412216000000001,76.198029000000133],[-80.426940999999886,76.195525999999973],[-80.506957999999941,76.196365000000128],[-80.606383999999991,76.191650000000095],[-80.627486999999917,76.187195000000088],[-80.637787000000003,76.17053199999998],[-80.639724999999885,76.167480000000069],[-80.654175000000009,76.162491000000102],[-80.672501000000011,76.158325000000048],[-80.703338999999971,76.156647000000078],[-80.949996999999996,76.144989000000066],[-81.053329000000019,76.128036000000009],[-81.075835999999924,76.129149999999981],[-81.085830999999928,76.134155000000021],[-81.090285999999935,76.137496999999939],[-81.095551,76.212204000000042],[-81.047501000000011,76.249419999999986],[-81.041106999999954,76.25360100000006],[-81.026397999999915,76.258331000000112],[-80.903885000000002,76.312194999999974],[-80.783614999999998,76.374985000000095],[-80.769454999999994,76.384720000000016],[-80.761123999999995,76.394150000000081],[-80.760009999999909,76.40415999999999],[-80.763625999999874,76.411102000000085],[-80.771666999999923,76.419144000000017],[-80.78472899999997,76.423874000000069],[-80.991668999999945,76.483047000000056],[-81.188889000000017,76.518875000000094],[-81.275008999999955,76.533325000000048],[-81.304169000000002,76.510544000000039],[-81.337218999999891,76.494980000000112],[-81.351944000000003,76.490265000000079],[-81.388901000000033,76.481368999999972],[-81.411117999999988,76.477478000000076],[-81.460830999999928,76.471374999999966],[-81.492492999999911,76.469437000000028],[-81.521941999999967,76.468596999999988],[-81.636948000000018,76.468872000000147],[-81.71665999999999,76.470260999999994],[-81.788605000000018,76.474700999999982],[-81.879990000000021,76.483871000000022],[-82.039718999999934,76.509430000000066],[-82.05860899999999,76.513610999999969],[-82.075835999999981,76.518600000000106],[-82.083617999999944,76.523879999999963],[-82.03195199999999,76.553588999999988],[-81.985000999999954,76.578597999999943],[-81.981948999999929,76.584717000000012],[-81.993331999999953,76.590270999999973],[-82.045273000000009,76.603592000000106],[-82.056655999999862,76.609146000000123],[-82.049438000000009,76.612488000000042],[-81.953338999999914,76.631927000000132],[-81.873610999999869,76.645828000000108],[-81.851394999999968,76.649719000000005],[-81.814163000000008,76.658599999999922],[-81.790282999999931,76.667755],[-81.782227000000034,76.672760000000039],[-81.776947000000007,76.677475000000072],[-81.778885000000002,76.681090999999924],[-81.785827999999924,76.685532000000023],[-81.799163999999962,76.685805999999957],[-81.819457999999997,76.682754999999986],[-81.838057999999933,76.678314000000057],[-81.852782999999988,76.673599000000024],[-81.861938000000009,76.669144000000017],[-81.893341000000021,76.660812000000021],[-82.081115999999952,76.631087999999977],[-82.115554999999915,76.628860000000032],[-82.145553999999947,76.628036000000066],[-82.199996999999996,76.628586000000098],[-82.273330999999928,76.633331000000112],[-82.292495999999971,76.635544000000095],[-82.326950000000011,76.641373000000101],[-82.346114999999998,76.645538000000101],[-82.377486999999917,76.657485999999949],[-82.442490000000021,76.684981999999991],[-82.470276000000013,76.698868000000004],[-82.476668999999958,76.704712000000029],[-82.487212999999997,76.717758000000117],[-82.580291999999986,76.776382000000012],[-82.596114999999998,76.782486000000006],[-82.698607999999979,76.812485000000038],[-82.725005999999951,76.819153000000028],[-82.749725000000012,76.818604000000107],[-82.767226999999991,76.813309000000004],[-82.769729999999925,76.811096000000077],[-82.76556399999987,76.808318999999983],[-82.74610899999999,76.804153000000042],[-82.728333000000021,76.799149000000114],[-82.698607999999979,76.788589000000002],[-82.640563999999983,76.766388000000006],[-82.556106999999997,76.723038000000031],[-82.558333999999945,76.718322999999998],[-82.566665999999941,76.707489000000123],[-82.569457999999941,76.701385000000073],[-82.562499999999943,76.688873000000058],[-82.545546999999942,76.674149000000057],[-82.533324999999991,76.666382000000056],[-82.460555999999997,76.636108000000036],[-82.435271999999998,76.628036000000066],[-82.415008999999884,76.62303199999991],[-82.308884000000035,76.609420999999941],[-82.208054000000004,76.593048000000067],[-82.113891999999908,76.572220000000016],[-82.102218999999991,76.568878000000041],[-82.081115999999952,76.561096000000134],[-82.093886999999995,76.557205000000067],[-82.175002999999947,76.546936000000017],[-82.196944999999971,76.542755000000113],[-82.211394999999925,76.53804000000008],[-82.22222899999997,76.532761000000107],[-82.225280999999995,76.526657000000057],[-82.224715999999887,76.520264000000111],[-82.222504000000015,76.514435000000105],[-82.216399999999965,76.5086060000001],[-82.189437999999882,76.486649000000057],[-82.158050999999944,76.466095000000053],[-82.147232000000031,76.461105000000032],[-82.135558999999944,76.453323000000069],[-82.131377999999927,76.448593000000017],[-82.127212999999927,76.441650000000038],[-82.132216999999912,76.436919999999986],[-82.162505999999951,76.421921000000111],[-82.17971799999998,76.416931000000091],[-82.209441999999967,76.409988000000112],[-82.260284000000013,76.398605000000089],[-82.293335000000013,76.395827999999995],[-82.348342999999943,76.395537999999988],[-82.483063000000016,76.396378000000027],[-82.704453000000001,76.386932000000058],[-82.833327999999881,76.397766000000104],[-82.990554999999915,76.426650999999993],[-83.003615999999965,76.429153000000042],[-83.0625,76.450272000000041],[-83.099730999999963,76.463882000000126],[-83.102492999999981,76.469437000000028],[-83.096953999999982,76.475814999999955],[-83.08944699999995,76.480819999999994],[-83.065001999999993,76.491089000000045],[-83.061935000000005,76.497208000000057],[-83.075012000000015,76.532761000000107],[-83.084441999999967,76.546370999999965],[-83.110001000000011,76.579987000000131],[-83.116652999999985,76.586105000000089],[-83.198607999999979,76.619431000000077],[-83.338897999999858,76.66415400000011],[-83.384170999999981,76.730819999999994],[-83.365279999999927,76.740540000000067],[-83.358611999999937,76.746094000000028],[-83.355834999999956,76.752213000000097],[-83.362212999999997,76.756103999999937],[-83.379989999999964,76.758881000000031],[-83.400833000000034,76.759995000000004],[-83.410003999999901,76.757767000000058],[-83.497498000000007,76.723876999999959],[-83.518340999999964,76.713318000000129],[-83.523620999999935,76.706649999999968],[-83.523330999999928,76.700821000000133],[-83.520553999999947,76.695251000000042],[-83.515014999999948,76.689972000000068],[-83.499161000000015,76.676651000000106],[-83.352218999999991,76.612488000000042],[-83.331116000000009,76.603317000000118],[-83.316101000000003,76.598037999999974],[-83.298614999999984,76.593048000000067],[-83.278060999999923,76.588318000000072],[-83.254181000000017,76.579437000000098],[-83.246383999999978,76.572768999999937],[-83.207503999999915,76.505553999999961],[-83.184432999999899,76.424988000000042],[-83.188323999999966,76.419434000000081],[-83.202224999999942,76.414428999999984],[-83.223617999999874,76.410537999999917],[-83.256667999999991,76.407486000000006],[-83.285827999999981,76.406372000000033],[-83.439986999999917,76.411102000000085],[-83.619995000000017,76.423599000000081],[-83.691100999999946,76.428863999999919],[-83.710555999999997,76.433044000000109],[-83.735000999999954,76.444138000000009],[-83.734160999999915,76.449141999999995],[-83.735275000000001,76.455826000000059],[-83.740554999999972,76.462769000000037],[-83.756667999999991,76.468596999999988],[-83.893616000000009,76.501663000000065],[-83.985001000000011,76.520538000000045],[-84.018616000000009,76.529433999999981],[-84.033614999999941,76.534714000000065],[-84.046660999999972,76.542205999999965],[-84.058334000000002,76.553040000000067],[-84.058884000000035,76.558868000000132],[-84.061661000000015,76.585266000000104],[-84.070846999999901,76.616653000000042],[-84.086670000000026,76.62414600000011],[-84.101944000000003,76.629425000000083],[-84.118880999999988,76.633880999999974],[-84.138610999999912,76.637772000000041],[-84.261123999999995,76.65554800000001],[-84.284438999999963,76.657760999999994],[-84.31082200000003,76.658325000000104],[-84.319732999999871,76.656096999999988],[-84.324722000000008,76.653320000000065],[-84.330841000000021,76.647491000000059],[-84.313323999999909,76.641098000000113],[-84.256667999999991,76.628586000000098],[-84.220551,76.622207999999944],[-84.202498999999932,76.617203000000075],[-84.193053999999961,76.609985000000108],[-84.194442999999978,76.606934000000081],[-84.216948999999886,76.571655000000135],[-84.249725000000012,76.536926000000108],[-84.248336999999992,76.530548000000124],[-84.24499499999996,76.524993999999936],[-84.221114999999941,76.510817999999972],[-84.208617999999888,76.505264000000125],[-84.192490000000021,76.49941999999993],[-84.179717999999923,76.49192800000003],[-84.180832000000009,76.484984999999995],[-84.195540999999935,76.45637499999998],[-84.205565999999976,76.451096000000007],[-84.215835999999967,76.448029000000076],[-84.236938000000009,76.443587999999977],[-84.489166000000012,76.429153000000042],[-84.518615999999952,76.427765000000136],[-84.570846999999958,76.428863999999919],[-84.619720000000029,76.431656000000032],[-84.636947999999961,76.434418000000107],[-84.652785999999992,76.438034000000016],[-84.783889999999985,76.469986000000119],[-84.792770000000019,76.474990999999989],[-84.785278000000005,76.485260000000039],[-84.783889999999985,76.489975000000072],[-84.795273000000009,76.503876000000048],[-84.848891999999921,76.53637700000013],[-84.860001000000011,76.542755000000113],[-84.950561999999934,76.577773999999977],[-84.970550999999944,76.581940000000088],[-84.991378999999938,76.582764000000054],[-85.016402999999912,76.578872999999987],[-85.028335999999967,76.57499700000011],[-85.034163999999976,76.569153000000085],[-85.051391999999964,76.514160000000061],[-85.022507000000019,76.456099999999992],[-84.970276000000013,76.426086000000112],[-84.960281000000009,76.42053199999998],[-84.944442999999978,76.416931000000091],[-84.904175000000009,76.411926000000051],[-84.728058000000033,76.390273999999977],[-84.43638599999997,76.338593000000117],[-84.397506999999962,76.330551000000128],[-84.381377999999927,76.324706999999933],[-84.376098999999954,76.317764000000125],[-84.381942999999978,76.31191999999993],[-84.393889999999999,76.308029000000033],[-84.413054999999986,76.304703000000018],[-84.429169000000002,76.303040000000067],[-84.533614999999941,76.30581699999999],[-84.716659999999933,76.306930999999963],[-84.776397999999972,76.303314],[-84.898055999999997,76.288589000000059],[-84.928328999999962,76.286377000000016],[-85.174438000000009,76.280272999999966],[-85.232223999999917,76.295257999999933],[-85.36221299999994,76.303314],[-85.505004999999983,76.321930000000066],[-85.523055999999883,76.326660000000061],[-85.544448999999986,76.329987000000017],[-85.698333999999988,76.34887700000013],[-85.952498999999932,76.368591000000038],[-85.978058000000033,76.370528999999976],[-86.004181000000017,76.37081900000004],[-86.110274999999945,76.368317000000104],[-86.134734999999978,76.369431000000077],[-86.281677000000002,76.376923000000033],[-86.330565999999976,76.3808140000001],[-86.37222300000002,76.38638300000008],[-86.412216000000001,76.40776100000005],[-86.415008999999884,76.41276600000009],[-86.421386999999925,76.456940000000031],[-86.418610000000001,76.469147000000021],[-86.409728999999913,76.474700999999982],[-86.398055999999997,76.478867000000093],[-86.378875999999991,76.483871000000022],[-86.36082499999992,76.487762000000089],[-86.307769999999948,76.49552900000009],[-86.277785999999935,76.5],[-86.256119000000012,76.503876000000048],[-86.22222899999997,76.513321000000133],[-86.213057999999933,76.518600000000106],[-86.20777899999996,76.524429000000112],[-86.211944999999957,76.535262999999986],[-86.226104999999961,76.542755000000113],[-86.532776000000013,76.623306000000014],[-86.594161999999983,76.634994999999947],[-86.63034099999993,76.635132000000112],[-86.625823999999966,76.629425000000083],[-86.601104999999961,76.619979999999998],[-86.512512000000015,76.586929000000055],[-86.36221299999994,76.541655999999932],[-86.342223999999987,76.512206999999933],[-86.508056999999894,76.487762000000089],[-86.64916999999997,76.458878000000141],[-86.664718999999991,76.419708000000014],[-86.711120999999991,76.348037999999974],[-86.71665999999999,76.346100000000035],[-86.770554000000004,76.350815000000068],[-87.083327999999995,76.379424999999912],[-87.130829000000006,76.384155000000135],[-87.148346000000004,76.388321000000076],[-87.154998999999975,76.39498900000001],[-87.154175000000009,76.40109300000006],[-87.225280999999995,76.448029000000076],[-87.426665999999898,76.468596999999988],[-87.462783999999942,76.586929000000055],[-87.468886999999995,76.59165999999999],[-87.520279000000016,76.612488000000042],[-87.53694200000001,76.617477000000008],[-87.563613999999973,76.616379000000109],[-87.580001999999979,76.611374000000069],[-87.583618000000001,76.604980000000012],[-87.598617999999988,76.540817000000004],[-87.595550999999944,76.534149000000014],[-87.553604000000007,76.451096000000007],[-87.545273000000009,76.443587999999977],[-87.53694200000001,76.439147999999989],[-87.516953000000001,76.432479999999998],[-87.500290000000007,76.428863999999919],[-87.455276000000026,76.423874000000069],[-87.429992999999911,76.417755000000056],[-87.402495999999985,76.352768000000026],[-87.416397000000018,76.348037999999974],[-87.591384999999889,76.341094999999996],[-87.648894999999868,76.338043000000084],[-87.719726999999978,76.343048000000124],[-87.742767000000015,76.34637500000008],[-87.760559000000001,76.352202999999975],[-87.788604999999961,76.366378999999995],[-87.817229999999995,76.390549000000021],[-87.864166000000012,76.38998400000014],[-87.900833000000034,76.363037000000077],[-87.916945999999996,76.359711000000004],[-87.948333999999988,76.357758000000103],[-87.997771999999998,76.358322000000044],[-88.351104999999905,76.384995000000004],[-88.389998999999875,76.389708999999982],[-88.42971799999998,76.398041000000148],[-88.434433000000013,76.402205999999978],[-88.391953000000001,76.454163000000108],[-88.371932999999956,76.476089000000059],[-88.355835000000013,76.481093999999928],[-88.348617999999988,76.487198000000149],[-88.349441999999954,76.514435000000105],[-88.356658999999979,76.521103000000096],[-88.442764000000011,76.59165999999999],[-88.515288999999939,76.636108000000036],[-88.509170999999981,76.697478999999987],[-88.488601999999958,76.765274000000034],[-88.479720999999927,76.776932000000045],[-88.476669000000015,76.783324999999991],[-88.474715999999887,76.788879000000009],[-88.474715999999887,76.794983000000002],[-88.477782999999988,76.807755000000043],[-88.485275000000001,76.814422999999977],[-88.494719999999973,76.81721500000009],[-88.518889999999999,76.816086000000098],[-88.541945999999939,76.812758999999971],[-88.554442999999935,76.807479999999998],[-88.557220000000029,76.805817000000104],[-88.701950000000011,76.707489000000123],[-88.683318999999983,76.701935000000105],[-88.649733999999967,76.684143000000063],[-88.591949,76.642761000000007],[-88.584441999999967,76.635818000000029],[-88.495543999999938,76.552199999999971],[-88.489440999999999,76.503326000000015],[-88.496383999999978,76.497208000000057],[-88.571670999999924,76.473602000000028],[-88.593558999999971,76.455933000000016],[-88.60321799999997,76.449265000000025],[-88.608214999999973,76.442261000000144],[-88.607727000000011,76.439095000000009],[-88.608611999999994,76.416092000000106],[-88.59973100000002,76.409988000000112],[-88.597503999999958,76.405823000000112],[-88.608046999999942,76.399994000000049],[-88.631942999999922,76.397217000000012],[-88.656386999999881,76.398330999999985],[-88.67721599999993,76.401932000000045],[-88.689986999999974,76.408324999999991],[-88.693603999999993,76.414703000000145],[-88.693329000000006,76.420821999999987],[-88.684998000000007,76.432479999999998],[-88.678054999999972,76.441650000000038],[-88.659508000000017,76.478706000000102],[-88.646506999999986,76.489212000000009],[-88.640288999999996,76.558594000000028],[-88.644164999999987,76.565262000000018],[-88.651672000000019,76.571930000000009],[-88.660277999999948,76.577773999999977],[-88.688888999999961,76.591369999999984],[-88.710006999999962,76.594986000000006],[-88.733611999999937,76.593872000000033],[-88.740828999999962,76.587769000000094],[-88.791381999999942,76.513321000000133],[-88.795273000000009,76.479431000000034],[-88.786666999999909,76.473602000000028],[-88.781386999999938,76.466385000000059],[-88.783324999999991,76.460815000000025],[-88.799438000000009,76.449997000000053],[-88.901671999999962,76.408324999999991],[-88.921111999999937,76.40525800000006],[-88.947220000000016,76.40525800000006],[-88.994155999999919,76.409149000000127],[-89.166396999999961,76.424423000000047],[-89.213332999999977,76.429703000000075],[-89.231673999999998,76.433593999999971],[-89.353333000000021,76.479979999999955],[-89.407227000000034,76.515823000000012],[-89.490279999999927,76.557480000000055],[-89.499435000000005,76.54664600000001],[-89.515015000000005,76.541655999999932],[-89.541381999999999,76.541655999999932],[-89.667220999999984,76.564423000000033],[-89.676665999999955,76.567215000000147],[-89.679442999999992,76.571655000000135],[-89.614166000000012,76.616089000000102],[-89.603607000000011,76.621918000000107],[-89.571945000000028,76.631653000000028],[-89.528335999999967,76.640823000000069],[-89.480559999999969,76.649428999999998],[-89.443329000000006,76.658325000000104],[-89.431380999999988,76.663605000000018],[-89.415558000000033,76.67442299999999],[-89.411666999999966,76.680266999999958],[-89.434432999999899,76.724426000000108],[-89.47222899999997,76.784714000000008],[-89.496947999999918,76.820267000000001],[-89.514449999999954,76.835815000000025],[-89.529175000000009,76.847214000000122],[-89.533324999999991,76.853592000000049],[-89.521392999999932,76.858871000000079],[-89.417770000000019,76.886658000000011],[-89.279449,76.906936999999971],[-89.238892000000021,76.916091999999992],[-89.14805599999994,76.925537000000077],[-88.986938000000009,76.954436999999928],[-88.976104999999961,76.959991000000116],[-88.898894999999982,76.985535000000141],[-88.769164999999987,76.998871000000065],[-88.740279999999927,77.00277699999998],[-88.719451999999933,77.007492000000013],[-88.702788999999939,77.012207000000046],[-88.50111400000003,77.071655000000078],[-88.473327999999981,77.096649000000014],[-88.544723999999917,77.098038000000031],[-88.545837000000006,77.100266000000147],[-88.426392000000021,77.12081900000004],[-88.307219999999973,77.128860000000088],[-88.278335999999911,77.129699999999957],[-88.172501000000011,77.128035999999952],[-88.154175000000009,77.116088999999988],[-87.967223999999931,77.127472000000012],[-87.690552000000025,77.135268999999994],[-87.670272999999952,77.133606000000043],[-87.656951999999933,77.130264000000125],[-87.642501999999979,77.124984999999924],[-87.626937999999996,77.117477000000122],[-87.619719999999973,77.110809000000131],[-87.568892999999889,77.099426000000108],[-87.455841000000021,77.101929000000098],[-87.349166999999966,77.106094000000098],[-87.337783999999886,77.110259999999982],[-87.353607000000011,77.114700000000028],[-87.37222300000002,77.117203000000018],[-87.451401000000033,77.122756999999979],[-87.460555999999997,77.125534000000073],[-87.456664999999987,77.131927000000019],[-87.452224999999999,77.136383000000137],[-87.432219999999973,77.149719000000061],[-87.416107000000011,77.156647000000078],[-87.404174999999896,77.160812000000078],[-87.356383999999991,77.17553700000002],[-87.33666999999997,77.179153000000099],[-87.312774999999988,77.180817000000104],[-87.069167999999991,77.182755000000043],[-87.044448999999929,77.180542000000059],[-86.959166999999979,77.161926000000051],[-86.951674999999966,77.158324999999991],[-86.946945000000028,77.154433999999924],[-86.951949999999897,77.149994000000106],[-86.951401000000033,77.144714000000022],[-86.942490000000021,77.141936999999928],[-86.875274999999931,77.132202000000063],[-86.829177999999956,77.127762000000018],[-86.804442999999992,77.127197000000024],[-86.791381999999999,77.130813999999987],[-86.739990000000034,77.174149000000114],[-86.773620999999935,77.185806000000071],[-86.960006999999962,77.195815999999979],[-87.15055799999999,77.199417000000039],[-87.148055999999997,77.198029000000133],[-87.146956999999929,77.195815999999979],[-87.161117999999931,77.194426999999962],[-87.182769999999948,77.196930000000123],[-87.196105999999929,77.199997000000053],[-87.21055599999994,77.205261000000064],[-87.174437999999896,77.229431000000034],[-87.166945999999939,77.233871000000079],[-87.141388000000006,77.238037000000134],[-87.007232999999985,77.255829000000006],[-86.976669000000015,77.257492000000127],[-86.948882999999967,77.255554000000018],[-86.928329000000019,77.255264000000011],[-86.910552999999936,77.260269000000051],[-86.919158999999979,77.266098000000056],[-86.947494999999947,77.271652000000074],[-86.984436000000017,77.274703999999986],[-87.012221999999952,77.274993999999992],[-87.078063999999927,77.273604999999975],[-87.106110000000001,77.272217000000069],[-87.136672999999973,77.272217000000069],[-87.183884000000035,77.273604999999975],[-87.197495000000004,77.27526899999998],[-87.229171999999949,77.285538000000031],[-87.245270000000005,77.298325000000034],[-87.24888599999997,77.303314],[-87.108611999999994,77.338318000000072],[-87.09584000000001,77.34027100000003],[-87.068618999999956,77.342209000000139],[-87.037780999999995,77.342209000000139],[-86.962783999999942,77.339157000000057],[-86.934722999999963,77.338882000000012],[-86.900283999999999,77.342209000000139],[-86.845839999999953,77.349152000000117],[-86.829726999999991,77.353043000000014],[-86.838608000000022,77.357483000000059],[-86.851944000000003,77.360535000000141],[-86.963332999999977,77.366378999999995],[-87.064162999999951,77.366928000000087],[-87.091109999999958,77.366378999999995],[-87.241378999999938,77.356094000000041],[-87.263061999999877,77.351654000000053],[-87.280838000000017,77.34693900000002],[-87.294158999999979,77.34165999999999],[-87.326110999999969,77.333878000000084],[-87.358886999999982,77.331375000000094],[-87.391112999999962,77.330551000000128],[-87.416397000000018,77.330826000000116],[-87.695830999999998,77.35554500000012],[-87.711945000000014,77.359985000000108],[-87.715835999999911,77.363312000000064],[-87.775283999999999,77.415543000000127],[-87.780288999999982,77.421097000000145],[-87.78472899999997,77.429703000000075],[-87.775009000000011,77.441360000000032],[-87.748336999999992,77.451660000000118],[-87.730834999999956,77.45637499999998],[-87.669539999999984,77.469238000000018],[-87.65194699999995,77.474990999999989],[-87.642501999999979,77.480270000000132],[-87.646117999999944,77.486923000000104],[-87.694442999999978,77.537201000000096],[-87.711120999999878,77.541656000000103],[-87.868880999999988,77.578598000000113],[-88.063048999999978,77.618866000000025],[-88.162216000000001,77.626923000000147],[-88.180556999999965,77.631927000000132],[-88.200835999999924,77.642761000000007],[-88.214721999999995,77.650542999999971],[-88.223617999999931,77.662490999999989],[-88.223052999999993,77.667206000000022],[-88.221114999999884,77.672760000000039],[-88.162780999999995,77.758330999999998],[-88.06806899999998,77.820267000000001],[-87.835830999999928,77.840271000000087],[-87.640563999999983,77.862487999999985],[-87.294723999999917,77.898041000000035],[-87.231383999999935,77.898880000000133],[-87.174712999999997,77.897491000000002],[-86.876099000000011,77.8836060000001],[-86.824172999999917,77.879424999999969],[-86.651671999999962,77.860260000000039],[-86.46166999999997,77.836105000000032],[-86.422225999999966,77.830826000000059],[-86.377486999999917,77.822769000000051],[-86.222778000000005,77.794434000000024],[-86.198883000000023,77.786102000000085],[-85.986938000000009,77.711380000000133],[-85.975280999999882,77.705825999999945],[-85.884445000000028,77.632751000000098],[-85.718886999999995,77.472214000000065],[-85.715835999999967,77.467209000000025],[-85.717223999999931,77.462493999999992],[-85.727218999999877,77.451934999999935],[-85.748610999999983,77.446930000000066],[-85.76916499999993,77.443587999999977],[-85.775832999999921,77.439972000000068],[-85.795837000000006,77.423874000000069],[-85.794448999999929,77.419708000000128],[-85.776947000000007,77.421371000000079],[-85.551391999999964,77.458328000000108],[-85.530562999999916,77.461928999999941],[-85.493331999999953,77.430267000000015],[-85.436385999999914,77.404159999999933],[-85.39973399999991,77.395827999999995],[-85.376662999999894,77.392487000000131],[-85.299438000000009,77.387772000000098],[-85.270003999999915,77.386658000000125],[-85.155838000000017,77.387497000000053],[-84.973327999999867,77.377197000000137],[-84.954726999999934,77.374420000000043],[-84.9375,77.370818999999983],[-84.875274999999988,77.351654000000053],[-84.825286999999946,77.334152000000017],[-84.759170999999867,77.318328999999949],[-84.719727000000034,77.311645999999996],[-84.649444999999957,77.304428000000144],[-84.601944000000003,77.300537000000077],[-84.529175000000009,77.295822000000044],[-84.479445999999996,77.294434000000138],[-84.466399999999965,77.296371000000022],[-84.463333000000034,77.300262000000089],[-84.47444200000001,77.3119200000001],[-84.481948999999986,77.317764000000125],[-84.494719999999973,77.321106000000043],[-84.520279000000016,77.324157999999954],[-84.553878999999995,77.331375000000094],[-84.569167999999991,77.339705999999978],[-84.615004999999996,77.383040999999992],[-84.612777999999878,77.389160000000004],[-84.603881999999942,77.393599999999992],[-84.58555599999994,77.398041000000092],[-84.550277999999935,77.401382000000126],[-84.520844000000011,77.401657],[-84.49610899999999,77.399428999999998],[-84.470550999999944,77.396378000000027],[-84.429442999999935,77.388884999999959],[-84.386397999999986,77.383881000000031],[-84.33444199999991,77.383040999999992],[-84.27027899999996,77.384995000000004],[-84.153609999999958,77.39498900000001],[-84.061661000000015,77.398605000000032],[-84.005843999999968,77.397491000000059],[-83.985275000000001,77.395537999999931],[-83.949996999999996,77.388884999999959],[-83.868057000000022,77.376923000000033],[-83.793610000000001,77.36914100000007],[-83.531951999999933,77.346375000000023],[-83.505843999999968,77.344711000000018],[-83.478058000000033,77.344147000000078],[-83.464721999999995,77.348327999999981],[-83.463057999999876,77.349152000000117],[-83.46444699999995,77.35554500000012],[-83.472504000000015,77.387207000000046],[-83.553054999999972,77.393051000000071],[-83.654998999999975,77.395537999999931],[-83.711669999999913,77.404709000000082],[-83.728607000000011,77.408324999999934],[-83.778609999999958,77.423309000000017],[-83.822509999999966,77.442474000000004],[-83.833892999999989,77.448868000000004],[-83.835555999999997,77.455261000000007],[-83.824722000000008,77.460541000000035],[-83.801391999999964,77.464706000000035],[-83.768065999999919,77.466934000000037],[-83.682220000000029,77.46804800000001],[-83.620833999999945,77.471924000000058],[-83.593886999999938,77.475540000000137],[-83.426102000000014,77.499710000000107],[-83.389450000000011,77.507767000000115],[-83.36332699999997,77.518051000000128],[-83.216110000000015,77.577773999999977],[-83.011123999999995,77.665817000000004],[-82.895003999999858,77.717484000000013],[-82.674438000000009,77.836928999999998],[-82.655272999999852,77.847763000000043],[-82.541671999999949,77.920532000000037],[-82.526107999999965,77.961929000000055],[-82.577224999999999,78.003326000000072],[-82.590835999999967,78.011108000000036],[-82.591675000000009,78.017487000000074],[-82.579726999999878,78.022766000000047],[-82.56361400000003,78.027771000000087],[-82.538054999999986,78.031096999999988],[-82.497498000000007,78.03414900000007],[-82.470551,78.034714000000122],[-82.40972899999997,78.03414900000007],[-82.377486999999917,78.035812000000021],[-82.369445999999925,78.039428999999927],[-82.326110999999969,78.065262000000075],[-82.318619000000012,78.070831000000055],[-82.320007000000032,78.075821000000133],[-82.336120999999991,78.078873000000044],[-82.518341000000021,78.074158000000011],[-82.549438000000009,78.071930000000066],[-82.652221999999995,78.056090999999924],[-82.672500999999954,78.051651000000106],[-82.692489999999964,78.044983000000116],[-82.780288999999982,78.014999000000103],[-82.790282999999988,78.010544000000095],[-82.792769999999905,78.005829000000062],[-82.794158999999979,77.994979999999998],[-82.785277999999948,77.969986000000006],[-82.775283999999942,77.964157],[-82.735275000000001,77.947479000000101],[-82.728881999999942,77.939972000000012],[-82.728607000000011,77.929703000000131],[-82.736114999999984,77.924148999999943],[-82.769164999999987,77.914993000000038],[-82.852218999999991,77.896942000000024],[-82.949157999999898,77.874694999999974],[-83.123046999999929,77.780548000000067],[-83.156661999999926,77.744980000000055],[-83.185546999999985,77.716385000000002],[-83.192489999999964,77.710540999999978],[-83.200835999999867,77.705551000000128],[-83.386672999999917,77.616653000000042],[-83.427215999999987,77.600815000000011],[-83.527785999999935,77.572769000000108],[-83.648055999999997,77.540816999999947],[-83.735000999999954,77.518875000000094],[-83.873046999999985,77.49331699999999],[-83.898345999999947,77.490540000000067],[-83.920546999999942,77.491652999999985],[-84.143889999999999,77.509430000000009],[-84.192490000000021,77.515549000000078],[-84.229995999999971,77.521378000000084],[-84.386672999999917,77.528594999999996],[-84.419997999999964,77.52777100000003],[-84.452224999999942,77.524994000000106],[-84.483321999999987,77.521652000000017],[-84.500564999999995,77.518051000000128],[-84.555557000000022,77.51249700000011],[-84.579726999999991,77.51249700000011],[-84.760558999999944,77.519714000000079],[-84.779174999999952,77.522490999999945],[-84.858886999999925,77.542755000000113],[-84.869155999999975,77.562759000000028],[-84.87110899999999,77.569153000000085],[-84.866393999999957,77.574158000000125],[-84.837219000000005,77.583878000000027],[-84.815552000000025,77.588881999999955],[-84.773620999999991,77.5977630000001],[-84.707229999999981,77.609985000000052],[-84.665282999999988,77.618866000000025],[-84.627486999999917,77.628036000000066],[-84.520003999999972,77.664703000000031],[-84.441939999999931,77.706100000000106],[-84.429992999999968,77.718322999999941],[-84.428328999999962,77.722762999999986],[-84.431106999999884,77.726379000000009],[-84.443054000000018,77.736374000000126],[-84.486938000000009,77.750275000000101],[-84.495270000000005,77.751099000000067],[-84.503066999999987,77.74971000000005],[-84.48971599999993,77.746368000000132],[-84.483062999999959,77.74470500000001],[-84.475280999999995,77.738876000000005],[-84.476669000000015,77.728316999999947],[-84.486388999999974,77.711380000000133],[-84.499161000000015,77.699707000000103],[-84.520844000000011,77.689148000000102],[-84.533889999999985,77.684981999999991],[-84.547226000000023,77.68081699999999],[-84.715012000000002,77.639709000000096],[-84.922501000000011,77.601653999999996],[-84.952498999999989,77.601379000000122],[-84.972503999999901,77.606369000000029],[-85.158339999999896,77.641663000000108],[-85.298889000000031,77.660538000000031],[-85.310546999999985,77.664703000000031],[-85.348891999999921,77.72886699999998],[-85.348891999999921,77.733871000000136],[-85.335830999999985,77.738037000000077],[-85.190276999999867,77.779984000000127],[-85.054992999999968,77.79693600000013],[-85.05360399999995,77.830551000000014],[-85.144164999999987,77.817490000000078],[-85.297775000000001,77.797211000000118],[-85.328063999999927,77.79832499999992],[-85.381942999999978,77.807754999999986],[-85.400283999999942,77.813309000000004],[-85.402495999999928,77.819991999999957],[-85.400283999999942,77.83638000000002],[-85.389724999999999,77.841934000000037],[-85.353333000000021,77.855545000000006],[-85.325012000000015,77.866089000000045],[-85.281386999999995,77.87441999999993],[-85.231948999999986,77.881653000000142],[-85.207778999999903,77.883881000000088],[-84.925551999999982,77.891098],[-84.837219000000005,77.887496999999939],[-84.692490000000021,77.898604999999975],[-84.664444000000003,77.902206000000035],[-84.611114999999927,77.90387000000004],[-84.498154,77.900116000000082],[-84.428878999999995,77.896942000000024],[-84.385833999999932,77.891098],[-84.368056999999908,77.887206999999933],[-84.342772999999909,77.88499500000006],[-84.318618999999956,77.886932000000115],[-84.31361400000003,77.891936999999984],[-84.325012000000015,77.896103000000039],[-84.379715000000033,77.90637200000009],[-84.401671999999962,77.910262999999986],[-84.559432999999956,77.92303499999997],[-84.575561999999991,77.923874000000126],[-84.634444999999914,77.926926000000037],[-84.663054999999929,77.925262000000032],[-84.816665999999941,77.911652000000004],[-84.847228999999913,77.90887500000008],[-85.056945999999982,77.900543000000084],[-85.166396999999961,77.902206000000035],[-85.200561999999991,77.901657000000057],[-85.267501999999922,77.898041000000035],[-85.303604000000007,77.894714000000079],[-85.331680000000006,77.890823000000012],[-85.378051999999968,77.882202000000063],[-85.423049999999989,77.874694999999974],[-85.474715999999944,77.868591000000094],[-85.515288999999996,77.8836060000001],[-85.678878999999938,77.929428000000144],[-85.67971799999998,77.936645999999939],[-85.675277999999992,77.941650000000095],[-85.660278000000005,77.946639999999945],[-85.450561999999991,77.991089000000102],[-85.28694200000001,78.021652000000074],[-85.065551999999911,78.056366000000139],[-85.038894999999911,78.057205000000124],[-85.009734999999921,78.055251999999996],[-84.963057999999933,78.04414399999996],[-84.884170999999924,78.033051],[-84.816955999999948,78.026382000000126],[-84.788054999999986,78.024155000000064],[-84.761672999999917,78.023605000000032],[-84.726943999999946,78.025817999999958],[-84.708892999999989,78.029434000000037],[-84.695540999999935,78.033599999999922],[-84.688888999999961,78.03915400000011],[-84.673888999999974,78.04414399999996],[-84.654175000000009,78.048874000000012],[-84.575561999999991,78.067215000000033],[-84.547501000000011,78.0711060000001],[-84.524444999999901,78.072220000000073],[-84.360001000000011,78.070267000000115],[-84.328612999999905,78.070541000000048],[-84.307219999999973,78.07249500000006],[-84.288054999999929,78.075546000000088],[-84.292769999999962,78.078049000000078],[-84.299438000000009,78.079712000000029],[-84.323623999999938,78.082764000000111],[-84.410003999999958,78.086929000000112],[-84.532775999999899,78.085541000000035],[-84.557220000000029,78.083603000000096],[-84.623046999999985,78.071381000000088],[-84.673614999999984,78.064148000000102],[-84.736937999999896,78.058319000000097],[-84.765563999999983,78.056366000000139],[-84.798888999999974,78.055251999999996],[-84.855835000000013,78.056930999999963],[-84.881942999999978,78.059143000000063],[-84.993880999999988,78.074158000000011],[-85.077498999999932,78.090820000000008],[-85.094451999999933,78.097487999999998],[-85.087783999999886,78.103317000000004],[-84.994994999999903,78.163040000000024],[-84.901947000000007,78.170821999999987],[-84.829452999999944,78.168869000000029],[-84.793883999999991,78.171096999999975],[-84.761123999999995,78.174423000000047],[-84.708617999999944,78.182479999999998],[-84.688598999999954,78.187195000000031],[-84.657775999999956,78.19720500000011],[-84.63110399999988,78.199997000000053],[-84.549437999999952,78.19720500000011],[-84.430557000000022,78.186371000000065],[-84.315551999999968,78.173599000000081],[-84.284164000000033,78.166381999999942],[-84.222778000000005,78.158875000000023],[-84.201110999999969,78.156937000000084],[-84.173889000000031,78.15776100000005],[-84.127776999999924,78.171096999999975],[-84.126662999999951,78.179977000000008],[-84.453612999999962,78.214706000000092],[-84.479720999999927,78.216934000000037],[-84.506667999999934,78.217758000000003],[-84.693603999999993,78.217209000000082],[-84.722504000000015,78.216934000000037],[-84.777495999999871,78.210266000000047],[-84.877212999999927,78.193039000000056],[-84.909728999999857,78.191086000000098],[-84.937774999999931,78.192474000000004],[-84.951400999999976,78.195525999999916],[-84.968613000000005,78.202484000000084],[-84.973891999999978,78.208602999999982],[-84.970276000000013,78.214157000000114],[-84.967223999999931,78.21804800000001],[-84.956116000000009,78.232208000000128],[-84.942764000000011,78.243866000000139],[-84.83444199999991,78.314987000000031],[-84.815276999999924,78.321654999999964],[-84.792496000000028,78.32499700000011],[-84.731383999999991,78.325546000000031],[-84.658614999999998,78.329437000000098],[-84.629715000000033,78.333327999999995],[-84.605270000000019,78.337494000000106],[-84.585281000000009,78.341934000000094],[-84.575561999999991,78.346375000000023],[-84.572784000000013,78.350540000000024],[-84.571944999999971,78.355545000000063],[-84.575835999999924,78.361374000000069],[-84.581679999999949,78.366089000000102],[-84.601944000000003,78.368866000000025],[-84.630828999999949,78.364990000000148],[-84.667769999999962,78.348602000000085],[-84.684722999999963,78.344147000000078],[-84.707229999999981,78.341094999999939],[-84.735001000000011,78.340270999999973],[-84.772231999999974,78.342209000000139],[-84.815552000000025,78.349152000000117],[-84.866942999999992,78.36914100000007],[-84.865829000000019,78.372207999999944],[-84.785278000000005,78.501663000000065],[-84.782501000000025,78.505829000000119],[-84.774718999999948,78.509154999999964],[-84.759170999999867,78.514160000000061],[-84.738602000000014,78.518875000000094],[-84.724166999999966,78.524429000000055],[-84.704452999999944,78.534988000000112],[-84.625823999999966,78.584152000000074],[-84.619445999999925,78.588318000000015],[-84.61999499999996,78.590546000000131],[-84.638610999999969,78.594147000000021],[-84.661117999999988,78.59248400000007],[-84.675277999999992,78.588318000000015],[-84.838332999999977,78.516662999999994],[-84.846389999999928,78.511658000000125],[-84.978333000000021,78.414993000000095],[-84.974715999999944,78.358871000000136],[-84.970550999999944,78.353317000000118],[-84.964721999999938,78.348602000000085],[-84.961945000000014,78.343597000000045],[-84.96665999999999,78.338882000000012],[-85.043335000000013,78.299149],[-85.188048999999978,78.228317000000061],[-85.418335000000013,78.118866000000082],[-85.433318999999983,78.113876000000005],[-85.450835999999924,78.109984999999938],[-85.486114999999927,78.102478000000019],[-85.508057000000008,78.099152000000004],[-85.523055999999883,78.099426000000108],[-85.528060999999923,78.101929000000098],[-85.608886999999982,78.100815000000068],[-85.740829000000019,78.093048000000124],[-85.80471799999998,78.088882000000069],[-85.876662999999951,78.08166499999993],[-85.894164999999987,78.078049000000078],[-86.010283999999956,78.066086000000041],[-86.119995000000017,78.056366000000139],[-86.148345999999947,78.054703000000018],[-86.178054999999972,78.054977000000122],[-86.223327999999981,78.057480000000112],[-86.267226999999991,78.066376000000048],[-86.282227000000034,78.071655000000021],[-86.288329999999974,78.076385000000073],[-86.291381999999999,78.081375000000094],[-86.290558000000033,78.085815000000139],[-86.25140399999998,78.156647000000078],[-86.234160999999972,78.160537999999974],[-86.135558999999944,78.165543000000014],[-86.113051999999868,78.17053199999998],[-86.098052999999993,78.17553700000002],[-85.949996999999996,78.228317000000061],[-85.93110699999994,78.236649000000057],[-85.839995999999985,78.325821000000076],[-85.835281000000009,78.332214000000022],[-85.827224999999942,78.344147000000078],[-85.825561999999934,78.348602000000085],[-85.833068999999966,78.379974000000004],[-85.853333000000021,78.379150000000038],[-85.878051999999968,78.376922999999977],[-86.052779999999984,78.297484999999995],[-86.060271999999998,78.292480000000126],[-86.060546999999929,78.280548000000124],[-86.06527699999998,78.263610999999969],[-86.073623999999938,78.24859600000002],[-86.259170999999924,78.196365000000071],[-86.285277999999948,78.193314000000044],[-86.311110999999983,78.193314000000044],[-86.453613000000018,78.211928999999998],[-86.476668999999958,78.215820000000065],[-86.497771999999941,78.215546000000131],[-86.515014999999948,78.211655000000064],[-86.537215999999944,78.19470199999995],[-86.548888999999974,78.183044000000109],[-86.569457999999941,78.172210999999947],[-86.719726999999978,78.121917999999994],[-86.736938000000009,78.118042000000116],[-86.763061999999991,78.114990000000034],[-87.079726999999934,78.102768000000026],[-87.10943599999996,78.103043000000071],[-87.196654999999964,78.106094000000098],[-87.439712999999983,78.121643000000006],[-87.505843999999911,78.12831099999994],[-87.529174999999952,78.132202000000007],[-87.538605000000018,78.138046000000031],[-87.535003999999958,78.143051000000071],[-87.526671999999962,78.149155000000121],[-87.483886999999925,78.164429000000041],[-87.430556999999965,78.178314000000114],[-87.407501000000025,78.183044000000109],[-87.352218999999991,78.191086000000098],[-87.314163000000008,78.193863000000022],[-87.289992999999981,78.19470199999995],[-87.166945999999939,78.195525999999916],[-87.104996000000028,78.199141999999995],[-87.08944699999995,78.201934999999992],[-87.087219000000005,78.206099999999992],[-87.105835000000013,78.209427000000119],[-87.262222000000008,78.22665400000011],[-87.293609999999944,78.226089000000115],[-87.363892000000021,78.221099999999922],[-87.371657999999968,78.219437000000028],[-87.396118000000001,78.217209000000082],[-87.423049999999932,78.216095000000053],[-87.475554999999872,78.216385000000116],[-87.497771999999941,78.219711000000132],[-87.513335999999924,78.224990999999989],[-87.518616000000009,78.230545000000006],[-87.516953000000001,78.24136400000009],[-87.516113000000018,78.245819000000097],[-87.494445999999982,78.298598999999967],[-87.502501999999879,78.30525200000011],[-87.513061999999991,78.316375999999991],[-87.516402999999968,78.322768999999937],[-87.52555799999999,78.410263000000043],[-87.524718999999948,78.416382000000112],[-87.517226999999991,78.426376000000118],[-87.503066999999987,78.436646000000053],[-87.476943999999946,78.44802900000002],[-87.311385999999914,78.509154999999964],[-87.292220999999927,78.513885000000016],[-87.15834000000001,78.546371000000136],[-87.140563999999983,78.550262000000032],[-87.013061999999991,78.554153000000099],[-86.891112999999962,78.54553199999998],[-86.866394000000014,78.546371000000136],[-86.858336999999949,78.547760000000096],[-86.855834999999956,78.551650999999993],[-86.858886999999982,78.566375999999934],[-86.864440999999999,78.568878000000041],[-86.877776999999924,78.573044000000095],[-86.898620999999991,78.575821000000019],[-86.957779000000016,78.574997000000053],[-87.031676999999945,78.569153000000028],[-87.066101000000003,78.567490000000134],[-87.095275999999956,78.568604000000107],[-87.113051999999925,78.573044000000095],[-87.121658000000025,78.576934999999992],[-87.12388599999997,78.581099999999992],[-87.122498000000007,78.587204000000042],[-86.944716999999969,78.704711999999972],[-86.934432999999956,78.709991000000116],[-86.922501000000011,78.714705999999978],[-86.856948999999929,78.734985000000108],[-86.638901000000033,78.79942299999999],[-86.615829000000019,78.803040000000124],[-86.377212999999983,78.809982000000048],[-86.138061999999991,78.816666000000112],[-86.067504999999983,78.819716999999912],[-86.037215999999944,78.821380999999974],[-85.646666999999866,78.848602000000142],[-85.607497999999964,78.85165400000011],[-85.577498999999932,78.855819999999994],[-85.350280999999995,78.88749700000011],[-85.329726999999934,78.892211999999972],[-85.297500999999954,78.902205999999978],[-85.257507000000032,78.910537999999974],[-85.09973100000002,78.917755000000056],[-85.064163000000008,78.919144000000074],[-85.036117999999988,78.91693099999992],[-85.008895999999993,78.913315000000068],[-84.84584000000001,78.888885000000016],[-84.788329999999917,78.878035999999952],[-84.766402999999968,78.873032000000023],[-84.740554999999915,78.869980000000112],[-84.712783999999942,78.86775200000011],[-84.563323999999966,78.859984999999995],[-84.412216000000001,78.85554499999995],[-84.212783999999886,78.856934000000138],[-84.145003999999972,78.85554499999995],[-83.850829999999974,78.845261000000107],[-83.746947999999918,78.836928999999941],[-83.694442999999978,78.829712000000029],[-83.674437999999952,78.825546000000145],[-83.660004000000015,78.819992000000127],[-83.64056399999987,78.813873000000115],[-83.601944000000003,78.802200000000084],[-83.579726999999934,78.796371000000079],[-83.538329999999917,78.787201000000039],[-83.513061999999991,78.783874999999966],[-83.485824999999977,78.781372000000033],[-83.428604000000007,78.779159999999933],[-83.394164999999987,78.778870000000097],[-83.34584000000001,78.773605000000032],[-83.327498999999932,78.769713999999965],[-83.308334000000002,78.76388500000013],[-83.293610000000001,78.756104000000107],[-83.284926999999925,78.750000000000057],[-83.236938000000009,78.74054000000001],[-83.101394999999968,78.714432000000045],[-82.994720000000029,78.699707000000103],[-82.941939999999988,78.695526000000029],[-82.910827999999981,78.694702000000063],[-82.845000999999968,78.697478999999987],[-82.822509999999966,78.695250999999985],[-82.689712999999983,78.664154000000053],[-82.69638099999986,78.657761000000107],[-82.704453000000001,78.651932000000102],[-82.695540999999992,78.645264000000111],[-82.610549999999932,78.611374000000012],[-82.506957999999997,78.591095000000109],[-82.417220999999927,78.574158000000068],[-82.37388599999997,78.568604000000107],[-82.357497999999907,78.567490000000134],[-82.337783999999999,78.566665999999941],[-82.308334000000002,78.568878000000041],[-82.262222000000008,78.578048999999965],[-82.236938000000009,78.588318000000015],[-82.235549999999932,78.595825000000104],[-82.244719999999973,78.598877000000073],[-82.310271999999941,78.616653000000042],[-82.416655999999989,78.64276099999995],[-82.496384000000035,78.661926000000108],[-82.516953000000001,78.666930999999977],[-82.535278000000005,78.672759999999982],[-82.559433000000013,78.682205000000067],[-82.565552000000025,78.685256999999979],[-82.584732000000031,78.695526000000029],[-82.59445199999999,78.703049000000021],[-82.581954999999994,78.708327999999995],[-82.569167999999991,78.711380000000133],[-82.45666499999993,78.730820000000108],[-82.435546999999929,78.731659000000093],[-82.407775999999956,78.730820000000108],[-82.350554999999986,78.726089000000002],[-82.279723999999987,78.71775800000006],[-82.255279999999914,78.71665999999999],[-82.230835000000013,78.71775800000006],[-82.223327999999981,78.719711000000018],[-82.215011999999888,78.723037999999974],[-82.220550999999887,78.732208000000014],[-82.231948999999986,78.736374000000126],[-82.254729999999995,78.740814000000114],[-82.279175000000009,78.74414100000007],[-82.310821999999973,78.746933000000126],[-82.396392999999932,78.74914600000011],[-82.45666499999993,78.74914600000011],[-82.480835000000013,78.748322000000144],[-82.506119000000012,78.745818999999983],[-82.525557999999933,78.742203000000131],[-82.542770000000019,78.737198000000092],[-82.564437999999996,78.732758000000047],[-82.619155999999975,78.728043000000014],[-82.663619999999923,78.728043000000014],[-82.752501999999936,78.729705999999965],[-82.781386999999995,78.731094000000041],[-82.809722999999963,78.734146000000123],[-82.826950000000011,78.737488000000099],[-82.84333799999996,78.742203000000131],[-82.911666999999909,78.76638800000012],[-83.069732999999928,78.792206000000078],[-83.108611999999994,78.796646000000067],[-83.21055599999994,78.798874000000069],[-83.228607000000011,78.804153000000042],[-83.255844000000025,78.829987000000074],[-83.254729999999995,78.834991000000002],[-83.244445999999925,78.839432000000102],[-83.218337999999903,78.843597000000102],[-83.1875,78.847214000000065],[-83.085830999999985,78.85554499999995],[-83.056945999999925,78.856094000000098],[-82.991669000000002,78.85554499999995],[-82.811110999999983,78.848038000000031],[-82.67582699999997,78.842209000000025],[-82.65055799999999,78.838882000000069],[-82.621384000000035,78.837493999999992],[-82.462783999999942,78.833328000000108],[-82.429442999999992,78.833328000000108],[-82.289718999999991,78.837203999999986],[-82.254455999999948,78.840546000000074],[-82.112777999999992,78.857483000000116],[-82.079452999999944,78.859711000000061],[-81.947495000000004,78.865814],[-81.913894999999911,78.865814],[-81.764174999999966,78.859984999999995],[-81.749434999999949,78.858032000000037],[-81.740554999999915,78.855254999999943],[-81.767226999999991,78.853317000000004],[-81.824447999999961,78.853867000000037],[-81.838607999999965,78.851379000000065],[-81.833618000000001,78.846649000000014],[-81.820281999999963,78.845261000000107],[-81.741378999999881,78.839157000000114],[-81.712509000000011,78.839706000000035],[-81.699157999999954,78.842757999999947],[-81.660827999999924,78.877762000000018],[-81.656661999999869,78.883881000000088],[-81.65695199999999,78.888321000000076],[-81.666397000000018,78.895537999999988],[-81.68249499999996,78.900268999999923],[-81.734725999999966,78.90637200000009],[-81.753066999999987,78.912201000000096],[-81.755843999999968,78.91804500000012],[-81.698607999999922,78.973877000000073],[-81.690825999999959,78.980270000000019],[-81.683060000000012,78.984421000000111],[-81.553604000000007,79.024155000000007],[-81.486114999999927,79.041655999999989],[-81.477218999999991,79.047211000000061],[-81.486663999999962,79.052475000000072],[-81.50306699999993,79.059143000000006],[-81.521118000000001,79.061096000000134],[-81.548614999999984,79.061355999999989],[-81.617767000000015,79.051086000000055],[-81.865829000000019,79.013610999999969],[-81.910277999999948,79.004990000000078],[-81.928329000000019,79],[-81.961120999999935,78.98692299999999],[-81.97222899999997,78.982483000000002],[-81.974166999999966,78.979431000000034],[-81.999725000000012,78.960266000000104],[-82.092772999999909,78.918320000000108],[-82.110274999999945,78.913605000000075],[-82.34722899999997,78.894440000000088],[-82.50306699999993,78.882750999999985],[-82.559433000000013,78.884720000000016],[-82.681380999999988,78.903319999999951],[-82.813888999999961,78.923035000000141],[-82.839447000000007,78.926376000000005],[-82.924438000000009,78.934982000000105],[-83.063048999999978,78.939697000000137],[-83.126663000000008,78.941085999999927],[-83.264175000000023,78.939147999999989],[-83.514174999999966,78.930542000000059],[-83.570557000000008,78.929977000000065],[-83.637512000000015,78.930817000000104],[-83.694716999999912,78.934708000000001],[-83.787215999999887,78.942474000000061],[-83.812774999999988,78.945815999999979],[-84.034163999999976,78.956650000000025],[-84.165558000000033,78.956940000000031],[-84.200561999999991,78.957213999999965],[-84.259170999999981,78.959427000000119],[-84.328888000000006,78.965271000000143],[-84.367492999999968,78.972488000000055],[-84.386123999999882,78.977767999999969],[-84.429992999999968,78.987761999999975],[-84.473052999999936,78.99552900000009],[-84.573333999999875,79.009995000000117],[-84.651397999999972,79.019439999999975],[-84.679442999999992,79.021652000000074],[-84.726943999999946,79.027771000000087],[-84.748046999999985,79.031936999999971],[-84.766953000000001,79.037200999999982],[-84.779174999999952,79.04664600000001],[-84.789718999999991,79.064148000000046],[-84.789168999999958,79.069442999999978],[-84.783889999999985,79.074432000000115],[-84.651672000000019,79.114699999999971],[-84.544158999999979,79.141372999999987],[-84.528609999999901,79.143326000000059],[-84.503615999999909,79.144440000000088],[-84.473052999999936,79.143051000000071],[-84.163894999999911,79.12414600000011],[-84.135559000000001,79.121917999999994],[-84.075561999999934,79.10443099999992],[-84.0625,79.090546000000018],[-84.040558000000033,79.075447000000054],[-83.990279999999984,79.051651000000106],[-83.950561999999934,79.043594000000098],[-83.896392999999989,79.038040000000137],[-83.744720000000029,79.028046000000074],[-83.600554999999929,79.025269000000037],[-83.504456000000005,79.023604999999975],[-83.474716000000001,79.024155000000007],[-83.454726999999991,79.025542999999971],[-83.386123999999995,79.039429000000098],[-83.36860699999994,79.044434000000138],[-83.358611999999937,79.050812000000121],[-83.373610999999926,79.056366000000139],[-83.399445000000014,79.059708000000057],[-83.415557999999976,79.059981999999991],[-83.430831999999953,79.05831900000004],[-83.461670000000026,79.052200000000028],[-83.493880999999931,79.043319999999994],[-83.521118000000001,79.041367000000037],[-83.546111999999937,79.042480000000126],[-83.70666499999993,79.077774000000034],[-83.976394999999968,79.141098000000113],[-84.003615999999909,79.148605000000089],[-84.029998999999975,79.151657],[-84.029175000000009,79.156937000000028],[-84.018889999999999,79.161377000000073],[-84.005004999999926,79.166092000000106],[-83.952498999999989,79.180267000000015],[-83.939986999999917,79.18553200000008],[-83.933318999999926,79.191925000000026],[-83.941101000000003,79.216385000000059],[-83.956664999999987,79.221924000000058],[-83.979720999999927,79.22164900000007],[-84.016952999999944,79.213042999999971],[-84.043059999999912,79.203048999999965],[-84.051940999999943,79.198029000000076],[-84.067504999999983,79.192474000000004],[-84.086120999999991,79.188033999999959],[-84.121933000000013,79.184708000000114],[-84.158507999999983,79.183304000000135],[-84.193329000000006,79.183044000000109],[-84.303329000000019,79.186646000000053],[-84.326949999999954,79.188583000000108],[-84.323897999999872,79.19470200000012],[-84.316665999999941,79.200546000000145],[-84.31361400000003,79.206649999999968],[-84.335555999999997,79.252213000000097],[-84.34445199999999,79.258041000000048],[-84.362777999999992,79.264999000000046],[-84.401108000000022,79.27526899999998],[-84.428878999999995,79.290268000000026],[-84.452788999999996,79.328872999999987],[-84.452224999999942,79.34165999999999],[-84.446654999999964,79.353866999999923],[-84.446105999999929,79.358871000000079],[-84.484725999999966,79.406372000000147],[-84.503341999999975,79.413040000000137],[-84.581116000000009,79.433868000000018],[-84.606110000000001,79.43803400000013],[-84.660278000000005,79.444138000000123],[-84.709166999999979,79.451660000000061],[-84.821120999999948,79.473037999999974],[-84.882492000000013,79.486098999999911],[-84.896956999999929,79.492477000000065],[-84.96945199999999,79.537491000000045],[-84.972503999999901,79.542206000000078],[-85.022232000000031,79.611099000000024],[-85.028885000000002,79.615814000000057],[-85.050277999999992,79.621643000000063],[-85.068892999999946,79.626083000000051],[-85.25418099999996,79.667205999999965],[-85.372497999999894,79.684417999999994],[-85.493331999999953,79.700546000000031],[-85.551391999999964,79.705826000000116],[-85.615828999999962,79.708327999999995],[-85.684433000000013,79.709152000000131],[-85.763061999999991,79.705551000000071],[-85.94888299999991,79.708327999999995],[-86.203339000000028,79.735809000000074],[-86.387512000000015,79.747482000000048],[-86.415833000000021,79.750548999999978],[-86.445830999999885,79.754166000000112],[-86.47193900000002,79.759720000000129],[-86.486389000000031,79.763611000000026],[-86.49360699999994,79.768326000000059],[-86.502227999999945,79.775269000000037],[-86.47193900000002,79.890549000000021],[-86.460281000000009,79.919708000000014],[-86.450286999999889,79.931091000000038],[-86.43638599999997,79.942474000000004],[-86.424437999999952,79.948029000000076],[-86.389724999999999,79.958038000000101],[-86.36721799999998,79.962769000000037],[-86.300277999999935,79.968596999999988],[-86.263335999999924,79.969147000000021],[-86.230285999999978,79.96804800000001],[-86.083892999999989,79.95748900000001],[-85.885833999999988,79.941086000000098],[-85.819732999999928,79.938582999999937],[-85.785003999999958,79.938034000000016],[-85.711394999999925,79.937485000000038],[-85.65695199999999,79.938034000000016],[-85.519454999999994,79.924988000000042],[-85.460006999999905,79.910812000000078],[-85.416397000000018,79.901382000000012],[-85.389998999999932,79.897491000000116],[-85.365829000000019,79.896378000000027],[-85.308334000000002,79.900543000000027],[-85.289168999999958,79.904984000000127],[-85.275008999999955,79.909424000000001],[-85.262511999999958,79.914992999999981],[-85.255004999999926,79.920821999999987],[-85.271118000000001,79.923874000000069],[-85.440826000000015,79.938309000000004],[-85.640839000000028,79.962769000000037],[-86.190552000000025,80],[-86.301940999999943,79.998322000000087],[-86.341384999999946,79.99693300000007],[-86.413329999999974,79.99803200000008],[-86.442763999999954,79.999709999999993],[-86.466400000000021,80.003876000000048],[-86.482773000000009,80.0086060000001],[-86.565551999999968,80.035812000000135],[-86.579452999999944,80.04304500000012],[-86.642501999999922,80.098037999999974],[-86.658614999999884,80.117752000000053],[-86.65943900000002,80.128036000000066],[-86.65583799999996,80.135269000000108],[-86.514724999999942,80.299149000000114],[-86.493057000000022,80.304428000000087],[-86.46833799999996,80.308594000000028],[-86.434432999999956,80.312485000000095],[-86.345001000000025,80.319153000000028],[-86.11610399999995,80.333602999999982],[-86.076110999999912,80.333602999999982],[-85.897507000000019,80.333054000000004],[-85.745269999999948,80.320267000000001],[-85.717498999999975,80.316375999999934],[-85.671936000000017,80.306931000000077],[-85.616652999999928,80.298874000000126],[-85.509170999999981,80.285812000000078],[-85.479171999999949,80.28276100000005],[-85.354171999999892,80.273041000000148],[-85.290832999999964,80.268600000000049],[-85.256957999999997,80.267211999999972],[-85.095839999999953,80.262207000000103],[-84.9375,80.267211999999972],[-84.898346000000004,80.269440000000088],[-84.779174999999952,80.272491000000116],[-84.702498999999932,80.273315000000082],[-84.589721999999995,80.273605000000089],[-84.196655000000021,80.271378000000027],[-84.049437999999896,80.267761000000121],[-83.989440999999999,80.264435000000049],[-83.926392000000021,80.259720000000016],[-83.811110999999983,80.249145999999996],[-83.78195199999999,80.24581900000004],[-83.716110000000015,80.233871000000022],[-83.626389000000017,80.213608000000136],[-83.560821999999973,80.195816000000093],[-83.546386999999982,80.189423000000147],[-83.478058000000033,80.164428999999984],[-83.461394999999925,80.15914900000007],[-83.42471299999994,80.148331000000098],[-83.40306099999998,80.142212000000086],[-83.24499499999996,80.103591999999935],[-83.138901000000033,80.078323000000125],[-83.029723999999987,80.053314],[-82.89805599999994,80.02526899999998],[-82.803329000000019,80.006377999999984],[-82.736114999999984,79.992476999999951],[-82.605835000000013,79.964431999999988],[-82.283889999999985,79.893051000000071],[-82.15306099999998,79.858870999999965],[-82.101943999999946,79.839706000000035],[-82.091675000000009,79.834717000000069],[-82.062499999999943,79.816086000000041],[-82.046386999999982,79.801651000000106],[-81.976944000000003,79.735809000000074],[-81.981673999999998,79.723877000000073],[-81.978881999999999,79.718323000000112],[-81.916655999999989,79.703323000000125],[-81.853057999999976,79.693588000000034],[-81.799438000000009,79.686645999999939],[-81.767501999999922,79.684981999999934],[-81.733886999999925,79.686371000000122],[-81.68472300000002,79.675812000000064],[-81.6163939999999,79.623305999999957],[-81.61860699999994,79.61831699999999],[-81.628052000000025,79.614700000000028],[-81.651671999999905,79.610260000000039],[-81.678054999999972,79.607208000000128],[-81.687774999999874,79.608032000000094],[-81.694716999999969,79.609711000000061],[-81.709732000000031,79.615540000000124],[-81.734160999999972,79.619705000000124],[-81.748610999999983,79.621094000000085],[-81.767501999999922,79.62052900000009],[-81.777221999999995,79.619140999999956],[-81.785277999999892,79.614990000000091],[-81.786117999999931,79.609146000000067],[-81.782227000000034,79.604979999999955],[-81.768616000000009,79.600266000000033],[-81.750290000000007,79.594711000000132],[-81.728333000000021,79.589706000000092],[-81.706664999999987,79.586655000000064],[-81.675277999999992,79.584991000000059],[-81.639450000000011,79.584991000000059],[-81.605835000000013,79.588593000000003],[-81.578613000000018,79.59304800000001],[-81.56361400000003,79.597763000000043],[-81.544998000000021,79.609146000000067],[-81.509444999999914,79.624145999999996],[-81.495270000000005,79.629425000000026],[-81.476395000000025,79.634155000000021],[-81.457229999999981,79.636932000000115],[-81.424712999999997,79.636658000000011],[-81.368056999999965,79.634430000000066],[-81.279998999999918,79.628310999999997],[-81.253615999999965,79.624694999999974],[-81.013061999999877,79.598877000000016],[-80.69027699999998,79.56860400000005],[-80.630554000000018,79.564147999999989],[-80.598052999999993,79.566086000000098],[-80.589721999999995,79.568054000000018],[-80.591949,79.573608000000036],[-80.60861199999988,79.576096000000007],[-80.625274999999931,79.580826000000059],[-80.641953000000001,79.588042999999971],[-80.634170999999981,79.592758000000003],[-80.618606999999884,79.597214000000122],[-80.598052999999993,79.601379000000122],[-80.569167999999877,79.605255],[-80.50167799999997,79.61192299999999],[-80.100280999999995,79.644440000000145],[-80.056655999999975,79.646942000000024],[-80.025283999999942,79.647217000000069],[-79.972778000000005,79.644440000000145],[-79.93638599999997,79.644440000000145],[-79.904723999999987,79.646942000000024],[-79.892501999999922,79.649155000000007],[-79.761947999999961,79.695816000000036],[-79.751403999999923,79.701385000000016],[-79.768616000000009,79.701935000000049],[-80.041381999999999,79.697479000000101],[-80.356658999999979,79.685256999999979],[-80.389724999999999,79.68331900000004],[-80.432220000000029,79.677765000000022],[-80.473617999999988,79.669708000000071],[-80.516113000000018,79.664429000000098],[-80.618057000000022,79.654160000000047],[-80.658889999999928,79.652481000000023],[-80.795273000000009,79.648041000000035],[-80.827498999999989,79.648331000000042],[-80.910552999999993,79.651932000000102],[-80.942215000000033,79.653594999999996],[-80.955275999999969,79.658600000000035],[-80.958892999999932,79.664993000000038],[-80.970839999999953,79.671370999999965],[-80.978333000000021,79.67303499999997],[-81.076110999999969,79.688873000000001],[-81.171936000000017,79.703323000000125],[-81.227782999999988,79.709427000000005],[-81.291945999999882,79.713608000000079],[-81.385559000000001,79.713608000000079],[-81.424437999999952,79.712769000000094],[-81.519729999999925,79.730820000000108],[-81.569457999999941,79.819717000000082],[-81.582779000000016,79.836929000000112],[-81.587783999999942,79.841660000000047],[-81.59973100000002,79.851929000000098],[-81.608337000000006,79.858597000000032],[-81.631377999999984,79.872208000000001],[-81.651947000000007,79.882750999999985],[-81.65972899999997,79.888596000000064],[-81.665008999999941,79.897765999999933],[-81.663054999999986,79.903046000000018],[-81.643616000000009,79.909988000000112],[-81.540557999999919,79.922760000000096],[-81.515839000000028,79.924988000000042],[-81.416945999999939,79.927199999999971],[-81.402221999999995,79.932479999999998],[-81.400283999999942,79.937758999999971],[-81.420272999999952,79.943587999999977],[-81.557495000000017,79.960815000000025],[-81.589721999999995,79.962494000000049],[-81.639450000000011,79.962204000000042],[-81.643341000000021,79.962204000000042],[-81.710555999999997,79.964706000000092],[-81.743056999999965,79.966385000000116],[-81.833068999999966,79.973877000000016],[-82.005004999999983,79.993042000000003],[-82.168334999999956,80.013610999999969],[-82.191101000000003,80.018600000000106],[-82.285827999999981,80.046097000000088],[-82.34333799999996,80.063873000000058],[-82.359160999999915,80.069153000000085],[-82.619155999999975,80.150542999999971],[-82.948043999999982,80.247481999999991],[-83.12110899999999,80.292755000000056],[-83.166655999999932,80.301376000000005],[-83.186934999999949,80.30664100000007],[-83.201400999999976,80.313309000000061],[-83.203887999999949,80.318054000000075],[-83.196654999999964,80.320830999999998],[-83.166945999999939,80.326934999999992],[-83.131942999999978,80.330551000000071],[-82.942764000000011,80.345535000000098],[-82.854720999999984,80.350815000000011],[-82.787780999999939,80.352203000000088],[-82.706664999999987,80.352767999999969],[-82.579726999999878,80.358322000000101],[-82.273330999999928,80.377472000000068],[-82.031386999999938,80.398331000000042],[-81.987212999999997,80.40026899999998],[-81.899170000000026,80.401657000000114],[-81.882216999999969,80.401932000000102],[-81.673888999999974,80.406097000000102],[-81.334441999999967,80.420532000000037],[-81.204726999999991,80.427200000000028],[-81.079726999999991,80.436096000000134],[-80.98611499999987,80.443588000000091],[-80.835007000000019,80.452774000000034],[-80.660004000000015,80.460815000000082],[-80.481110000000001,80.462494000000106],[-80.412216000000001,80.460541000000148],[-80.367766999999958,80.462204000000099],[-80.336120999999991,80.465819999999951],[-80.318893000000003,80.470534999999984],[-80.306655999999919,80.47526600000009],[-80.294158999999866,80.486649000000114],[-80.297775000000001,80.488876000000005],[-80.312209999999936,80.491653000000099],[-80.343338000000017,80.49414100000007],[-80.354996000000028,80.498031999999967],[-80.357223999999917,80.501389000000074],[-80.227492999999924,80.519713999999965],[-80.195540999999935,80.523605000000032],[-80.153335999999967,80.526382000000126],[-80.116394000000014,80.527771000000143],[-80.058608999999933,80.527206000000092],[-79.940276999999924,80.528869999999927],[-79.558043999999995,80.536377000000073],[-79.490554999999915,80.539703000000088],[-79.339995999999928,80.549988000000042],[-79.232773000000009,80.553314000000057],[-79.190552000000025,80.55386400000009],[-79.011123999999995,80.553314000000057],[-78.815551999999911,80.555817000000047],[-78.592772999999966,80.562195000000031],[-78.46556099999998,80.563873000000115],[-78.345276000000013,80.564423000000147],[-78.098891999999921,80.562485000000038],[-78.063889000000017,80.564697000000081],[-78.038054999999929,80.567215000000033],[-78.015014999999948,80.586655000000007],[-78.013625999999988,80.591095000000053],[-78.019164999999987,80.594436999999971],[-78.030838000000017,80.596100000000092],[-78.088608000000022,80.596939000000077],[-78.357773000000009,80.60165400000011],[-78.741378999999938,80.60914600000001],[-78.851944000000003,80.612487999999985],[-78.925277999999992,80.616652999999985],[-78.981109999999944,80.616089000000045],[-79.114440999999999,80.612487999999985],[-79.255004999999983,80.605819999999994],[-79.347228999999913,80.601089000000059],[-79.392226999999934,80.599715999999944],[-79.565276999999924,80.596100000000092],[-79.634170999999981,80.595535000000041],[-79.86332699999997,80.603043000000071],[-79.934433000000013,80.606094000000098],[-79.960555999999883,80.608032000000037],[-79.960280999999952,80.614700000000028],[-79.907226999999978,80.623871000000008],[-79.847777999999948,80.631927000000076],[-79.559433000000013,80.669983000000059],[-79.353607000000011,80.696640000000116],[-79.291945999999996,80.703872999999987],[-79.172501000000011,80.713043000000027],[-78.990829000000019,80.729706000000078],[-78.809432999999956,80.746933000000126],[-78.62388599999997,80.769149999999968],[-78.585280999999952,80.772217000000069],[-78.50556899999998,80.77748100000008],[-78.236664000000019,80.793319999999994],[-77.894454999999994,80.813309000000118],[-77.805832000000009,80.818603999999993],[-77.733062999999959,80.825546000000088],[-77.639175000000023,80.83027600000014],[-77.287780999999939,80.83526599999999],[-76.926392000000021,80.841933999999981],[-76.845001000000025,80.841094999999996],[-76.729172000000005,80.838043000000084],[-76.681380999999931,80.838593000000117],[-76.590835999999967,80.842758000000117],[-76.556655999999975,80.84637500000008],[-76.511672999999973,80.854430999999977],[-76.484725999999966,80.86554000000001],[-76.485000999999897,80.871094000000028],[-76.490829000000019,80.874985000000095],[-76.526672000000019,80.88638300000008],[-76.621108999999933,80.900818000000015],[-76.656661999999983,80.898041000000148],[-76.699432000000002,80.891372999999987],[-76.738892000000021,80.888321000000019],[-76.797500999999954,80.886108000000092],[-76.841675000000009,80.885543999999982],[-77.168883999999935,80.886932000000058],[-77.201675000000023,80.887772000000098],[-77.308884000000035,80.893051000000071],[-77.428329000000019,80.903046000000018],[-77.454726999999991,80.90525800000006],[-77.581115999999895,80.911377000000073],[-77.766113000000018,80.906937000000084],[-77.980285999999921,80.90109300000006],[-78.421111999999994,80.879424999999912],[-78.836394999999982,80.85386699999998],[-78.869445999999925,80.852202999999975],[-78.885283999999956,80.853591999999992],[-78.896118000000001,80.854705999999965],[-78.908614999999998,80.858871000000136],[-78.922225999999966,80.866088999999988],[-78.93499799999995,80.875534000000016],[-78.93638599999997,80.881363000000079],[-78.930556999999965,80.981933999999967],[-78.928604000000007,80.990540000000067],[-78.839721999999995,81.016098],[-78.799987999999985,81.026382000000069],[-78.757781999999906,81.035537999999974],[-78.636672999999973,81.058594000000028],[-78.528884999999946,81.081940000000088],[-78.501113999999973,81.09165999999999],[-78.457503999999972,81.107758000000047],[-78.426101999999958,81.120818999999983],[-78.416396999999961,81.125259000000142],[-78.397231999999917,81.137497000000053],[-78.393065999999919,81.142761000000007],[-78.406386999999938,81.144988999999953],[-78.461945000000014,81.147491000000059],[-78.475280999999939,81.149719000000005],[-78.475829999999974,81.15248100000008],[-78.472777999999948,81.158325000000104],[-78.463622999999927,81.160812000000021],[-78.438598999999954,81.164703000000088],[-78.411391999999921,81.167479999999955],[-78.290833000000021,81.174698000000149],[-78.254729999999995,81.177765000000079],[-78.225005999999894,81.181930999999963],[-78.15943900000002,81.193862999999965],[-78.051102000000014,81.218597000000102],[-78.03694200000001,81.223312000000135],[-78.016662999999994,81.232758000000103],[-78.009170999999981,81.238585999999998],[-77.976943999999889,81.249145999999939],[-77.875274999999874,81.272766000000104],[-77.850829999999917,81.277205999999978],[-77.612503000000004,81.318877999999984],[-77.576949999999897,81.322494999999947],[-77.50306699999993,81.328323000000069],[-77.366394000000014,81.336105000000032],[-77.233611999999994,81.351089000000115],[-77.116942999999935,81.367751999999996],[-76.955275999999969,81.393874999999923],[-76.765014999999948,81.428588999999988],[-76.748610999999983,81.4327550000001],[-76.745269999999948,81.439148000000046],[-76.761123999999995,81.442749000000106],[-76.777785999999878,81.444427000000019],[-76.803328999999962,81.445526000000029],[-76.855835000000013,81.445526000000029],[-76.951110999999969,81.440536000000122],[-77.028609999999958,81.43331900000004],[-77.208617999999944,81.409424000000058],[-77.264450000000011,81.400818000000129],[-77.41722099999987,81.380538999999999],[-77.571395999999993,81.366652999999985],[-77.609726000000023,81.364425999999924],[-77.829177999999899,81.34248400000007],[-77.896117999999944,81.335541000000092],[-78.174163999999962,81.30053700000002],[-78.228333000000021,81.291656000000046],[-78.273620999999935,81.283599999999979],[-78.29222099999987,81.278320000000122],[-78.305557000000022,81.272766000000104],[-78.325835999999924,81.261383000000137],[-78.351944000000003,81.250275000000101],[-78.370270000000005,81.2452550000001],[-78.410004000000015,81.236374000000126],[-78.433883999999921,81.231934000000138],[-78.487212999999997,81.223038000000031],[-78.604996000000028,81.206375000000094],[-78.652495999999928,81.197205000000054],[-78.675277999999935,81.191925000000026],[-78.701950000000011,81.181655999999975],[-78.721114999999998,81.172211000000061],[-78.728333000000021,81.166382000000056],[-78.75111400000003,81.141663000000108],[-78.754181000000017,81.135818000000029],[-78.745833999999945,81.129150000000038],[-78.71665999999999,81.123306000000014],[-78.690552000000025,81.12164300000012],[-78.690825999999959,81.11943100000002],[-78.817504999999926,81.106093999999985],[-78.895019999999931,81.098999000000049],[-78.916945999999996,81.098037999999917],[-78.941375999999934,81.101088999999945],[-78.963622999999984,81.107758000000047],[-79.015014999999948,81.115539999999953],[-79.075287000000003,81.122757000000092],[-79.162780999999939,81.13220199999995],[-79.218062999999972,81.136932000000002],[-79.242767000000015,81.139984000000084],[-79.399170000000026,81.174698000000149],[-79.463622999999984,81.193313999999987],[-79.486114999999984,81.194977000000108],[-79.50167799999997,81.193588000000091],[-79.499434999999949,81.189972000000068],[-79.491669000000002,81.186095999999964],[-79.475829999999974,81.180542000000003],[-79.275283999999999,81.12359600000002],[-79.218886999999938,81.111099000000081],[-79.172501000000011,81.10386699999998],[-79.088837000000012,81.094757000000072],[-79.073623999999995,81.090820000000122],[-79.063613999999916,81.085541000000148],[-79.072783999999956,81.080826000000116],[-79.087783999999999,81.076660000000004],[-79.142226999999991,81.069153000000085],[-79.226944000000003,81.063034000000073],[-79.255279999999914,81.058868000000132],[-79.305266999999958,81.029984000000013],[-79.315826000000015,81.023880000000133],[-79.323623999999938,81.018326000000002],[-79.33666999999997,81.0086060000001],[-79.343886999999995,80.99832200000003],[-79.336945000000014,80.992203000000018],[-79.321120999999891,80.988586000000055],[-79.291381999999885,80.984984999999995],[-79.258347000000015,80.984421000000054],[-79.205275999999969,80.987762000000089],[-79.18472300000002,80.986374000000012],[-79.164718999999991,80.983047000000056],[-79.158889999999985,80.977768000000083],[-79.15834000000001,80.972763000000043],[-79.165282999999931,80.966660000000104],[-79.265288999999996,80.924149000000057],[-79.600829999999917,80.824432000000115],[-79.618056999999965,80.819442999999978],[-79.883621000000005,80.783325000000104],[-80.065552000000025,80.759720000000129],[-80.247498000000007,80.73692299999999],[-80.511123999999938,80.705826000000059],[-80.651947000000007,80.691925000000083],[-80.720551,80.684142999999949],[-80.855559999999969,80.663315000000068],[-80.919448999999929,80.655548000000124],[-80.956664999999987,80.651932000000045],[-81.336394999999925,80.623306000000127],[-81.533324999999991,80.607208000000071],[-81.575561999999991,80.604155999999989],[-81.808884000000035,80.59304800000001],[-81.966110000000015,80.579712000000029],[-82.353881999999942,80.556365999999969],[-82.434998000000007,80.553040000000124],[-82.798889000000031,80.539428999999984],[-82.881103999999937,80.536652000000061],[-82.956389999999999,80.536377000000073],[-83.027495999999928,80.538589000000115],[-83.096664000000033,80.541656000000046],[-83.151946999999893,80.546371000000079],[-83.165008999999998,80.55192599999998],[-83.170272999999895,80.564147999999932],[-83.168059999999912,80.576660000000118],[-83.165282999999931,80.589432000000102],[-83.161391999999864,80.601089000000059],[-83.156112999999948,80.606644000000131],[-83.146666999999979,80.612198000000149],[-83.096953999999982,80.639435000000049],[-83.078063999999927,80.644989000000066],[-83.056380999999988,80.649154999999951],[-82.773055999999997,80.68664600000011],[-82.527495999999985,80.703323000000125],[-82.431945999999982,80.708878000000027],[-82.250838999999928,80.716385000000116],[-82.216399999999965,80.719147000000021],[-82.135833999999875,80.729431000000091],[-82.025009000000011,80.746643000000063],[-81.948333999999932,80.759155000000078],[-81.908614999999941,80.767761000000007],[-81.762786999999889,80.810806000000127],[-81.758895999999993,80.813034000000073],[-81.767501999999922,80.821381000000088],[-81.943603999999993,80.833054000000118],[-81.961120999999935,80.833054000000118],[-81.996108999999933,80.83027600000014],[-82.05221599999993,80.822768999999994],[-82.099730999999906,80.813599000000124],[-82.146118000000001,80.803589000000045],[-82.193877999999984,80.796646000000067],[-82.332229999999981,80.781372000000147],[-82.513061999999934,80.763046000000145],[-82.526107999999965,80.752777000000094],[-82.535827999999867,80.747208000000114],[-82.543334999999956,80.74443100000002],[-82.567229999999995,80.740814000000057],[-82.601669000000015,80.738036999999963],[-82.940551999999968,80.714431999999988],[-83.311934999999949,80.687759000000028],[-83.356948999999929,80.685531999999967],[-83.516113000000018,80.701384999999959],[-83.541107000000011,80.704162999999994],[-83.547226000000023,80.706940000000088],[-83.569457999999997,80.739150999999993],[-83.5625,80.743866000000025],[-83.529723999999987,80.747482000000048],[-83.456664999999987,80.751099000000011],[-83.422500999999954,80.753876000000105],[-83.391387999999949,80.758041000000105],[-83.261947999999961,80.786377000000016],[-83.133057000000008,80.818878000000097],[-83.120270000000005,80.823317999999972],[-83.132492000000013,80.828598],[-83.158051,80.833603000000039],[-83.191100999999946,80.835815000000139],[-83.256957999999997,80.838593000000117],[-83.297225999999966,80.836104999999975],[-83.323333999999932,80.8316650000001],[-83.329177999999956,80.828323000000012],[-83.331954999999937,80.823883000000137],[-83.353881999999999,80.813599000000124],[-83.381377999999984,80.803864000000033],[-83.407226999999978,80.799422999999933],[-83.493332000000009,80.787766000000033],[-83.587218999999891,80.775269000000037],[-83.610549999999932,80.771652000000074],[-83.630828999999949,80.766937000000041],[-83.645554000000004,80.761658000000068],[-83.64916999999997,80.755554000000018],[-83.658889999999872,80.751937999999996],[-83.667769999999905,80.75],[-83.696655000000021,80.746643000000063],[-83.712783999999999,80.747757000000092],[-83.827498999999932,80.761383000000023],[-83.859160999999972,80.759155000000078],[-83.863892000000021,80.757492000000127],[-83.836394999999982,80.719710999999961],[-83.821670999999981,80.705826000000059],[-83.812499999999943,80.698318000000086],[-83.801391999999964,80.691925000000083],[-83.783065999999963,80.684142999999949],[-83.757232999999928,80.669708000000014],[-83.734436000000017,80.654160000000047],[-83.723327999999924,80.643875000000094],[-83.720000999999911,80.636658000000011],[-83.719726999999978,80.630813999999987],[-83.73582499999992,80.613037000000077],[-83.779175000000009,80.570831000000112],[-83.794723999999974,80.560257000000036],[-83.821120999999948,80.550536999999963],[-83.840560999999866,80.545532000000094],[-83.871108999999933,80.541367000000093],[-83.93472300000002,80.534424000000115],[-83.973327999999981,80.531937000000028],[-84.313323999999909,80.513611000000026],[-84.381103999999993,80.512207000000046],[-84.48971599999993,80.514434999999992],[-84.551392000000021,80.517761000000064],[-84.689437999999996,80.524994000000049],[-84.763625999999988,80.525818000000015],[-84.846664000000033,80.523315000000025],[-84.890563999999983,80.521102999999982],[-84.964447000000007,80.514434999999992],[-85.027221999999995,80.507217000000026],[-85.066956000000005,80.505264000000068],[-85.232772999999952,80.508881000000031],[-85.334731999999974,80.513611000000026],[-85.366652999999985,80.517487000000131],[-85.42582699999997,80.523041000000092],[-85.462218999999948,80.524994000000049],[-85.594727000000034,80.529159999999933],[-85.809433000000013,80.531937000000028],[-85.864165999999898,80.535538000000088],[-85.865829000000019,80.541367000000093],[-85.812774999999931,80.559143000000063],[-85.705841000000021,80.589706000000035],[-85.689162999999951,80.593872000000147],[-85.665008999999941,80.598601999999971],[-85.613051999999982,80.606368999999972],[-85.571945000000028,80.615265000000079],[-85.564712999999927,80.619431000000134],[-85.594451999999933,80.6202550000001],[-85.636397999999986,80.619141000000127],[-85.694716999999969,80.613602000000128],[-85.744719999999916,80.606368999999972],[-85.793059999999855,80.596939000000077],[-85.854720999999984,80.582214000000135],[-85.889724999999999,80.573044000000039],[-85.925277999999992,80.562485000000038],[-85.950606999999991,80.552947999999958],[-85.95666499999993,80.548325000000091],[-85.982773000000009,80.537491000000045],[-86.011947999999961,80.533324999999934],[-86.037215999999944,80.530823000000055],[-86.080840999999964,80.528320000000065],[-86.148345999999947,80.53166200000004],[-86.177490000000034,80.534149000000127],[-86.428329000000019,80.560257000000036],[-86.639998999999932,80.583054000000004],[-86.718062999999972,80.59304800000001],[-86.739165999999898,80.597487999999998],[-86.744995000000017,80.603043000000071],[-86.732498000000021,80.615265000000079],[-86.680282999999974,80.654984000000013],[-86.660003999999958,80.666091999999992],[-86.638061999999991,80.676651000000049],[-86.514724999999942,80.729431000000091],[-86.497771999999941,80.735260000000096],[-86.466110000000015,80.74552900000009],[-86.410004000000015,80.760818000000029],[-86.338333000000034,80.775542999999971],[-86.244719999999973,80.794144000000131],[-86.225554999999929,80.799149],[-86.174438000000009,80.81442300000009],[-86.050277999999992,80.856644000000074],[-85.964171999999962,80.886932000000058],[-85.846114999999998,80.928589000000102],[-85.828339000000028,80.93414300000012],[-85.77416999999997,80.948868000000061],[-85.698607999999922,80.962769000000037],[-85.605835000000013,80.975815000000125],[-85.556106999999997,80.981933999999967],[-85.003066999999874,81.028320000000008],[-84.928878999999995,81.030822999999941],[-84.726669000000015,81.031097000000102],[-84.404998999999918,81.043869000000086],[-84.368332000000009,81.046097000000032],[-84.20666499999993,81.060531999999967],[-84.119994999999903,81.067490000000134],[-84.025009000000011,81.070830999999998],[-83.908050999999944,81.071381000000031],[-83.823623999999938,81.073608000000092],[-83.529998999999918,81.090271000000143],[-83.31138599999997,81.103317000000118],[-83.15055799999999,81.120529000000147],[-83.12332200000003,81.12303200000008],[-83.053328999999962,81.123306000000014],[-82.943603999999993,81.120818999999983],[-82.869445999999925,81.121368000000075],[-82.826401000000033,81.12303200000008],[-82.785004000000015,81.125534000000016],[-82.760283999999956,81.129150000000038],[-82.738891999999964,81.133880999999974],[-82.707229999999981,81.144440000000031],[-82.688323999999966,81.148331000000098],[-82.64416499999993,81.151657000000114],[-82.599166999999966,81.152771000000087],[-82.531386999999938,81.149993999999992],[-82.50306699999993,81.147766000000047],[-82.466659999999933,81.148331000000098],[-82.37222300000002,81.174698000000149],[-82.364440999999999,81.17942800000003],[-82.389998999999989,81.180266999999958],[-82.420837000000006,81.17942800000003],[-82.484160999999972,81.169983000000116],[-82.52305599999994,81.166382000000056],[-82.565276999999924,81.166092000000049],[-82.665008999999998,81.17442299999999],[-82.828063999999983,81.173308999999961],[-82.866652999999928,81.169708000000128],[-82.894164999999987,81.165268000000083],[-82.926940999999999,81.161102000000028],[-82.962783999999942,81.158325000000104],[-83.14973399999991,81.151382000000126],[-83.453338999999971,81.13220199999995],[-83.757507000000032,81.113312000000008],[-84.116104000000007,81.0977630000001],[-84.372771999999941,81.092209000000082],[-84.58555599999994,81.086380000000077],[-84.797500999999954,81.078323000000125],[-85.065551999999911,81.066375999999991],[-85.211944999999901,81.056931000000077],[-85.25,81.05525200000011],[-85.291381999999999,81.054703000000131],[-85.404448999999943,81.057755000000043],[-85.482773000000009,81.058594000000028],[-85.572509999999966,81.05664100000007],[-85.681670999999938,81.049423000000104],[-85.75556899999998,81.041367000000037],[-85.817779999999971,81.032761000000107],[-85.988602000000014,81.006653000000142],[-86.143340999999907,80.978317000000061],[-86.30972300000002,80.940811000000053],[-86.351944000000003,80.930542000000059],[-87.061935000000005,80.727478000000133],[-87.076401000000033,80.7227630000001],[-87.083618000000001,80.716934000000094],[-87.079078999999979,80.707024000000104],[-87.080291999999986,80.699142000000052],[-87.121383999999921,80.677475000000015],[-87.180557000000022,80.649154999999951],[-87.215011999999945,80.638321000000076],[-87.240554999999972,80.634155000000021],[-87.273055999999997,80.630813999999987],[-87.315001999999936,80.629424999999969],[-87.458054000000004,80.627762000000075],[-87.489715999999873,80.627472000000012],[-87.559433000000013,80.627472000000012],[-87.594726999999978,80.628586000000041],[-87.628051999999968,80.632202000000063],[-87.777221999999938,80.648880000000133],[-87.864166000000012,80.659424000000001],[-87.954726999999878,80.671645999999953],[-88.139724999999999,80.685256999999922],[-88.17721599999993,80.686920000000043],[-88.196105999999986,80.688582999999994],[-88.22222899999997,80.691085999999984],[-88.348891999999921,80.708602999999982],[-88.406661999999926,80.716934000000094],[-88.488601999999958,80.731934000000024],[-88.566956000000005,80.74859600000002],[-88.706116000000009,80.772766000000047],[-88.967498999999862,80.808594000000085],[-89.034163999999976,80.816376000000048],[-89.125823999999966,80.825821000000076],[-89.290557999999976,80.849426000000108],[-89.334731999999917,80.857483000000059],[-89.382492000000013,80.86970500000001],[-89.398055999999997,80.876082999999994],[-89.450561999999934,80.903320000000122],[-89.462218999999948,80.909988000000055],[-89.466110000000015,80.914153999999996],[-89.462218999999948,80.919144000000017],[-89.442763999999897,80.923599000000024],[-89.380828999999892,80.933044000000109],[-89.235274999999945,80.948318000000029],[-89.18638599999997,80.953048999999965],[-88.905563000000029,80.977768000000083],[-88.858611999999994,80.981368999999972],[-88.766861000000006,80.986801000000014],[-88.590285999999992,80.996368000000018],[-88.513901000000033,80.99832200000003],[-88.283324999999991,81.002213000000097],[-88.089721999999938,81.003601000000003],[-88.011397999999986,81.003326000000015],[-87.826674999999966,80.998032000000023],[-87.755004999999983,80.994980000000112],[-87.689437999999939,80.990814],[-87.628051999999968,80.984711000000061],[-87.597504000000015,80.980819999999994],[-87.524169999999913,80.977203000000031],[-87.446380999999974,80.976928999999927],[-87.279448999999943,80.981933999999967],[-87.15943900000002,80.986922999999933],[-87.119719999999973,80.989700000000028],[-87.089172000000019,80.994141000000127],[-87.064712999999983,80.998871000000008],[-87.030562999999972,81.001938000000109],[-86.983062999999902,81.003876000000048],[-86.946105999999986,81.004166000000055],[-86.755004999999983,81.001099000000124],[-86.711670000000026,81.002487000000031],[-86.671936000000017,81.005264000000125],[-86.635559000000001,81.009430000000066],[-86.541945999999996,81.020264000000111],[-86.419448999999986,81.036102000000142],[-86.061110999999983,81.082764000000054],[-85.916396999999961,81.104980000000012],[-85.916396999999961,81.110260000000096],[-85.907227000000034,81.113875999999948],[-85.887512000000015,81.118866000000025],[-85.562774999999988,81.17942800000003],[-85.483063000000016,81.192748999999992],[-85.425277999999935,81.201660000000061],[-85.297500999999954,81.218597000000102],[-85.22193900000002,81.226379000000065],[-85.02027899999996,81.244980000000055],[-84.976394999999968,81.248596000000134],[-84.876388999999961,81.254715000000147],[-84.832503999999972,81.258330999999998],[-84.802490000000034,81.261658000000125],[-84.776108000000022,81.266097999999943],[-84.733886999999982,81.281097000000045],[-84.735549999999989,81.285537999999974],[-84.745834000000002,81.289429000000041],[-84.899993999999936,81.304977000000008],[-84.936660999999958,81.307755000000043],[-84.975554999999986,81.307479999999998],[-85.029175000000009,81.305817000000047],[-85.279174999999952,81.289978000000133],[-85.361388999999974,81.28276100000005],[-85.768340999999964,81.244705000000067],[-85.950561999999991,81.224701000000096],[-86.018341000000021,81.215820000000008],[-86.077498999999932,81.207489000000066],[-86.154174999999952,81.193313999999987],[-86.225006000000008,81.173874000000012],[-86.240829000000019,81.16914399999996],[-86.256957999999941,81.162766000000033],[-86.299437999999896,81.148605000000032],[-86.338333000000034,81.138596000000007],[-86.404998999999975,81.129700000000071],[-86.438048999999921,81.126083000000108],[-86.472777999999892,81.122757000000092],[-86.521118000000001,81.119704999999954],[-86.650833000000034,81.115814000000114],[-86.956389999999999,81.099426000000051],[-87.111388999999917,81.087769000000094],[-87.297225999999966,81.076935000000049],[-87.637512000000015,81.059417999999994],[-87.678878999999995,81.058594000000028],[-87.720000999999911,81.059417999999994],[-87.841385000000002,81.062759000000028],[-88.0625,81.069992000000013],[-88.217772999999852,81.071381000000031],[-88.339995999999985,81.069717000000026],[-88.43499799999995,81.064148000000046],[-88.571670999999924,81.054703000000131],[-88.65834000000001,81.051376000000005],[-88.740828999999962,81.049713000000111],[-88.889998999999932,81.051926000000037],[-88.964721999999938,81.049423000000104],[-89.041672000000005,81.041091999999992],[-89.210555999999997,81.026657000000057],[-89.25556899999998,81.023880000000133],[-89.341675000000009,81.020264000000111],[-89.629165999999998,81.009155000000021],[-89.746658000000025,81.008881000000088],[-89.787505999999951,81.009720000000073],[-89.820847000000015,81.010817999999972],[-89.87388599999997,81.016388000000006],[-90.011947999999961,81.033051000000114],[-90.06361400000003,81.039702999999975],[-90.095275999999899,81.044708000000071],[-90.149170000000026,81.054977000000065],[-90.19776899999988,81.069717000000026],[-90.210007000000019,81.07499700000011],[-90.338057999999933,81.151657000000114],[-90.351944000000003,81.167479999999955],[-90.325561999999934,81.181930999999963],[-90.277221999999995,81.197205000000054],[-90.102218999999991,81.230270000000132],[-90.043059999999969,81.239426000000037],[-90.011123999999995,81.241928000000144],[-89.972778000000005,81.24275200000011],[-89.870543999999938,81.242203000000131],[-89.74610899999999,81.236649],[-89.669158999999866,81.218048000000124],[-89.635009999999909,81.212203999999929],[-89.573059000000001,81.206940000000145],[-89.535004000000015,81.206100000000106],[-89.491104000000007,81.206375000000094],[-89.447219999999902,81.208328000000051],[-89.357223999999974,81.214432000000102],[-89.281386999999995,81.221649000000014],[-89.136672999999973,81.238876000000005],[-89.088333000000034,81.242477000000065],[-89.044448999999986,81.24275200000011],[-88.982223999999974,81.241928000000144],[-88.954178000000013,81.24275200000011],[-88.944152999999972,81.24414100000007],[-88.935821999999973,81.247756999999979],[-88.949721999999895,81.253601000000003],[-88.979445999999996,81.258330999999998],[-89.162215999999944,81.255829000000119],[-89.198607999999865,81.253326000000129],[-89.265014999999948,81.244431000000134],[-89.307220000000029,81.240540000000067],[-89.335280999999952,81.24275200000011],[-89.443603999999937,81.260543999999982],[-89.687774999999988,81.289978000000133],[-89.775008999999955,81.296371000000079],[-89.868056999999965,81.306090999999981],[-89.898620999999935,81.31053199999991],[-89.91722099999987,81.314422999999977],[-89.950287000000003,81.324158000000068],[-89.952498999999875,81.329437000000041],[-89.940552000000025,81.333328000000108],[-89.916396999999904,81.336928999999998],[-89.882216999999969,81.340271000000087],[-89.702224999999999,81.350266000000033],[-89.627212999999983,81.356644000000017],[-89.242492999999968,81.423035000000027],[-89.059158000000025,81.455551000000071],[-88.928328999999962,81.485535000000141],[-88.90943900000002,81.490814000000114],[-88.846953999999982,81.49971000000005],[-88.715835999999967,81.513045999999974],[-88.545272999999952,81.525269000000037],[-88.494995000000017,81.527206000000092],[-88.406113000000005,81.528320000000065],[-88.37110899999999,81.526931999999988],[-88.161391999999921,81.530273000000022],[-88.029998999999975,81.535812000000021],[-87.984160999999972,81.535812000000021],[-87.959732000000031,81.534714000000122],[-87.939437999999996,81.531661999999983],[-87.893699999999967,81.524712000000136],[-87.801391999999964,81.515548999999965],[-87.679442999999935,81.51388500000013],[-87.490279999999984,81.508880999999974],[-87.431380999999931,81.50471500000009],[-87.398894999999982,81.500824000000023],[-87.343063000000029,81.492752000000053],[-87.311110999999983,81.488876000000005],[-87.276672000000019,81.485809000000074],[-87.251403999999923,81.487488000000042],[-87.244719999999973,81.490265000000136],[-87.286391999999921,81.505554000000075],[-87.288329999999974,81.506104000000107],[-87.315551999999968,81.513321000000019],[-87.37860099999989,81.517212000000086],[-87.489166000000012,81.523315000000025],[-87.645844000000011,81.527480999999909],[-87.721664000000033,81.532211000000132],[-87.751952999999958,81.535263000000043],[-87.915008999999941,81.552765000000079],[-88.279449,81.579436999999984],[-88.306380999999931,81.581374999999923],[-88.352218999999991,81.579712000000029],[-88.392226999999991,81.57777400000009],[-88.446944999999971,81.572220000000073],[-88.552215999999987,81.558868000000018],[-88.642226999999934,81.551651000000106],[-88.669448999999986,81.550537000000134],[-88.769164999999987,81.551086000000112],[-88.849990999999989,81.550537000000134],[-88.900283999999886,81.548325000000091],[-88.998046999999985,81.540543000000127],[-89.073058999999944,81.532211000000132],[-89.145844000000011,81.523041000000092],[-89.282500999999911,81.505264000000011],[-89.548339999999882,81.477203000000145],[-89.585555999999997,81.473037999999974],[-89.710280999999952,81.455261000000064],[-90.011397999999929,81.416930999999977],[-90.370833999999945,81.375259000000085],[-90.443053999999961,81.366652999999985],[-90.467498999999918,81.367751999999996],[-90.500564999999938,81.371368000000018],[-90.535827999999981,81.37692300000009],[-90.553329000000019,81.38499500000006],[-90.525283999999999,81.388596000000121],[-90.517226999999934,81.389160000000061],[-90.478881999999999,81.394440000000145],[-90.481383999999991,81.396652000000017],[-90.487777999999935,81.398604999999975],[-90.516953000000001,81.402481000000023],[-90.643616000000009,81.416381999999999],[-90.678328999999962,81.417480000000126],[-90.746658000000025,81.422211000000061],[-90.779998999999975,81.425537000000077],[-90.811385999999914,81.429977000000065],[-90.841110000000015,81.435531999999967],[-90.854171999999949,81.440536000000122],[-90.856658999999922,81.444138000000066],[-90.853881999999942,81.450821000000076],[-90.848342999999943,81.454987000000131],[-90.80082699999997,81.464995999999985],[-90.770554000000004,81.469711000000018],[-90.583069000000023,81.497482000000105],[-90.540282999999988,81.501663000000008],[-90.312209999999993,81.531371999999976],[-90.130553999999904,81.564423000000147],[-89.874709999999936,81.599152000000004],[-89.797500999999954,81.602478000000019],[-89.674438000000009,81.601654000000053],[-89.632492000000013,81.604706000000022],[-89.597503999999958,81.614151000000049],[-89.585006999999962,81.619705000000067],[-89.585006999999962,81.625809000000061],[-89.601943999999889,81.627762000000018],[-89.798889000000031,81.629974000000061],[-89.868056999999965,81.630264000000125],[-89.914169000000015,81.628310999999997],[-89.962218999999948,81.625534000000073],[-90.069457999999941,81.633606000000043],[-90.111580000000004,81.656746000000112],[-90.204726999999934,81.686371000000065],[-90.271392999999989,81.697479000000101],[-90.296950999999979,81.698593000000074],[-90.330291999999986,81.696090999999967],[-90.353057999999976,81.690536000000066],[-90.36082499999992,81.685257000000092],[-90.355270000000019,81.673599000000081],[-90.337218999999948,81.662491000000102],[-90.354720999999984,81.651382000000012],[-90.511123999999995,81.65776100000005],[-90.604720999999927,81.664703000000145],[-90.638901000000033,81.668045000000063],[-90.678878999999995,81.668869000000029],[-90.718886999999938,81.666656000000103],[-90.734725999999966,81.660812000000078],[-90.74221799999998,81.655548000000067],[-90.763625999999931,81.645537999999988],[-90.779723999999987,81.641098],[-90.803878999999995,81.636108000000092],[-90.834731999999974,81.631363000000079],[-90.878052000000025,81.627472000000012],[-90.923888999999974,81.625259000000028],[-90.966948999999943,81.621094000000028],[-90.99110399999995,81.616088999999988],[-91.006957999999997,81.598876999999959],[-91.003341999999918,81.592209000000025],[-90.988602000000014,81.579436999999984],[-90.988602000000014,81.557754999999986],[-91.071670999999981,81.537200999999982],[-91.091949,81.533874999999966],[-91.104445999999996,81.534424000000115],[-91.113891999999964,81.539978000000076],[-91.236938000000009,81.543320000000051],[-91.313888999999961,81.53414900000007],[-91.401397999999972,81.526382000000126],[-91.446380999999974,81.524428999999998],[-91.463332999999977,81.526093000000003],[-91.467772999999909,81.527206000000092],[-91.452498999999932,81.531661999999983],[-91.428604000000007,81.536652000000061],[-91.411117999999988,81.541931000000034],[-91.406386999999938,81.547760000000039],[-91.444153000000028,81.583603000000096],[-91.474441999999954,81.588882000000069],[-91.654175000000009,81.605819999999994],[-91.74722300000002,81.60914600000001],[-91.85722399999986,81.612762000000089],[-91.878326000000015,81.614151000000049],[-91.900283999999999,81.616928000000144],[-91.938599000000011,81.625534000000073],[-91.948607999999922,81.631088000000091],[-91.956664999999987,81.658600000000035],[-91.949432000000002,81.662201000000096],[-91.926940999999999,81.664992999999981],[-91.902221999999938,81.666931000000091],[-91.867767000000015,81.663315000000068],[-91.838897999999858,81.658600000000035],[-91.801101999999958,81.658600000000035],[-91.770844000000011,81.663315000000068],[-91.73721299999994,81.686920000000043],[-91.725829999999917,81.706650000000025],[-91.723617999999874,81.72164900000007],[-91.485549999999989,81.769989000000123],[-91.386123999999995,81.77388000000002],[-91.351395000000025,81.770264000000111],[-91.287506000000008,81.761931999999945],[-91.255004999999983,81.759155000000078],[-91.212508999999898,81.759430000000066],[-91.053328999999906,81.761658000000011],[-91.03443900000002,81.763885000000073],[-91.033324999999991,81.76776099999995],[-91.05749499999996,81.772766000000047],[-91.090560999999923,81.777206000000035],[-91.117766999999958,81.784424000000058],[-91.140563999999983,81.791930999999977],[-91.152495999999928,81.798035000000027],[-91.147232000000031,81.803864000000033],[-91.137511999999958,81.808594000000085],[-91.101104999999961,81.818878000000097],[-91.051665999999955,81.828872999999987],[-91.001113999999973,81.832764000000054],[-90.852218999999991,81.842483999999956],[-90.727492999999981,81.841094999999996],[-90.704178000000013,81.843597000000045],[-90.689986999999917,81.848602000000085],[-90.686377999999991,81.853966000000014],[-90.678328999999962,81.858597000000032],[-90.635009999999966,81.868866000000025],[-90.610001000000011,81.873871000000065],[-90.565276999999867,81.878036000000066],[-90.436661000000015,81.887497000000053],[-90.338057999999933,81.893051000000071],[-90.245270000000005,81.896102999999982],[-90.154449,81.896652000000131],[-89.990828999999962,81.905548000000067],[-89.783324999999934,81.917206000000078],[-89.735824999999977,81.917480000000012],[-89.700835999999981,81.915543000000127],[-89.676940999999999,81.9102630000001],[-89.683051999999975,81.899437000000148],[-89.682494999999903,81.883330999999998],[-89.649445000000014,81.863312000000064],[-89.629989999999964,81.856369000000029],[-89.461394999999982,81.818054000000132],[-89.425003000000004,81.815262000000018],[-89.356383999999935,81.811096000000134],[-89.244720000000029,81.846375000000023],[-89.227218999999991,81.852203000000145],[-89.203223999999977,81.878036000000066],[-89.19923399999999,81.881537999999921],[-89.199059000000034,81.885208000000034],[-89.213218999999981,81.888382000000092],[-89.328063999999927,81.902206000000092],[-89.367217999999923,81.905548000000067],[-89.397506999999962,81.909424000000115],[-89.419158999999979,81.915543000000127],[-89.416945999999939,81.925812000000008],[-89.397780999999895,81.930817000000047],[-89.371658000000025,81.935806000000014],[-89.338897999999972,81.940262000000075],[-89.288895000000025,81.943038999999999],[-89.249724999999955,81.941086000000041],[-89.157393999999954,81.928368000000091],[-89.156218999999908,81.925201000000072],[-89.152556999999945,81.921371000000079],[-89.133057000000008,81.918533000000082],[-89.074721999999952,81.911652000000061],[-89.033324999999991,81.912201000000039],[-89.007232999999871,81.915543000000127],[-88.98971599999993,81.921097000000145],[-88.986388999999974,81.944976999999938],[-88.992767000000015,81.951385000000073],[-89.011947999999904,81.958603000000096],[-89.048339999999996,81.978043000000071],[-89.054442999999992,81.987487999999985],[-89.041106999999954,81.993041999999946],[-89.021117999999944,81.998032000000023],[-88.963897999999972,82.008041000000048],[-88.77305599999994,82.039429000000041],[-88.625548999999978,82.062759000000028],[-88.589721999999938,82.066665999999998],[-88.543059999999912,82.070540999999992],[-88.443054000000018,82.074997000000053],[-88.296660999999915,82.080276000000026],[-88.25,82.080826000000059],[-88.145003999999972,82.086928999999998],[-88.11361699999992,82.090545999999961],[-88.09973100000002,82.093048000000067],[-88.095001000000025,82.096374999999966],[-88.085281000000009,82.101379000000122],[-88.075561999999934,82.104980000000012],[-88.038329999999974,82.103867000000093],[-87.91194200000001,82.090820000000065],[-87.71833799999996,82.083878000000027],[-87.702224999999942,82.086928999999998],[-87.666396999999904,82.089431999999988],[-87.641952999999944,82.090271000000143],[-87.599730999999963,82.089157],[-87.50140399999998,82.084152000000131],[-87.402221999999938,82.07388300000008],[-87.352782999999931,82.06721500000009],[-87.333617999999888,82.063309000000061],[-87.271666999999979,82.047759999999926],[-87.230559999999969,82.036926000000051],[-87.195830999999998,82.026382000000012],[-87.183608999999933,82.022491000000116],[-87.174437999999896,82.014708999999982],[-87.173324999999977,82.011107999999922],[-87.178603999999893,82.007767000000115],[-87.197768999999937,82.002213000000097],[-87.232773000000009,81.99331699999999],[-87.258057000000008,81.989426000000094],[-87.299987999999985,81.979155999999989],[-87.314437999999996,81.973877000000016],[-87.309432999999956,81.967484000000013],[-87.265839000000028,81.958878000000141],[-87.169158999999979,81.945526000000086],[-87.101669000000015,81.937759000000142],[-87.063323999999909,81.934418000000107],[-86.939437999999996,81.918868999999972],[-86.877212999999983,81.909424000000115],[-86.828887999999949,81.897491000000059],[-86.804169000000002,81.893051000000071],[-86.768341000000021,81.890273999999977],[-86.726669000000015,81.891937000000098],[-86.726944000000003,81.897217000000126],[-86.734160999999915,81.902771000000143],[-86.745833999999945,81.906647000000021],[-86.834732000000031,81.927765000000136],[-86.86361699999992,81.933593999999971],[-86.919448999999986,81.942748999999992],[-87.066101000000003,81.954987000000074],[-87.098052999999936,81.958328000000108],[-87.127212999999927,81.963882000000069],[-87.130279999999857,81.968322999999998],[-87.00140399999998,82.036102000000085],[-86.987212999999997,82.039978000000019],[-86.931670999999938,82.049423000000047],[-86.892501999999979,82.054153000000099],[-86.84333799999996,82.05720500000001],[-86.791945999999939,82.058029000000147],[-86.583617999999944,82.053863999999976],[-86.356383999999991,82.053588999999988],[-86.27806099999998,82.050812000000064],[-86.239166000000012,82.048599000000081],[-86.202788999999996,82.04553199999998],[-86.169158999999922,82.041656000000103],[-86.016112999999962,82.016663000000051],[-85.960555999999997,82.00749200000007],[-85.914443999999946,81.997481999999991],[-85.815001999999993,81.973877000000016],[-85.767501999999922,81.961928999999941],[-85.731383999999878,81.949996999999996],[-85.628875999999991,81.916092000000106],[-85.467223999999987,81.867203000000131],[-85.422501000000011,81.857483000000059],[-85.379439999999988,81.856934000000081],[-85.371658000000025,81.859711000000004],[-85.37388599999997,81.863876000000005],[-85.385833999999932,81.874985000000095],[-85.398055999999997,81.881088000000034],[-85.441939999999988,81.893875000000037],[-85.469451999999876,81.899719000000005],[-85.566101000000003,81.924988000000042],[-85.654723999999987,81.950821000000133],[-85.731948999999986,81.983322000000044],[-85.729996000000028,81.987762000000089],[-85.726943999999946,81.990265000000079],[-85.693877999999984,81.994980000000112],[-85.650557999999933,81.99832200000003],[-85.559432999999956,82.001663000000065],[-85.258621000000005,81.996933000000013],[-85.217498999999975,81.995529000000033],[-85.188323999999909,81.99275200000011],[-85.165833000000021,81.985259999999982],[-85.160004000000015,81.979706000000022],[-85.140563999999927,81.966095000000053],[-85.096389999999985,81.945816000000093],[-85.018889999999999,81.919434000000024],[-84.984160999999915,81.911102000000028],[-84.879439999999988,81.887497000000053],[-84.838897999999915,81.882476999999994],[-84.816887000000008,81.885367999999914],[-84.821884000000011,81.888214000000062],[-84.844222999999886,81.894882000000052],[-84.863891999999964,81.900269000000037],[-84.915008999999998,81.918045000000006],[-84.994719999999973,81.948593000000017],[-85.025283999999942,81.960815000000139],[-85.037216000000001,81.966933999999981],[-85.048889000000031,81.974426000000108],[-85.066100999999946,81.987487999999985],[-85.055556999999965,81.990814],[-85.038329999999974,81.994141000000127],[-85.00111400000003,81.994141000000127],[-84.929169000000002,81.993041999999946],[-84.889174999999966,81.990265000000079],[-84.858886999999925,81.985259999999982],[-84.831680000000006,81.979430999999977],[-84.816665999999941,81.970825000000048],[-84.814437999999996,81.966385000000059],[-84.815276999999924,81.961104999999975],[-84.821945000000028,81.949141999999938],[-84.797606999999971,81.930870000000141],[-84.789267999999993,81.924698000000035],[-84.75144199999994,81.910538000000088],[-84.74227899999994,81.908378999999968],[-84.688598999999954,81.891937000000098],[-84.656113000000005,81.887772000000098],[-84.635283999999956,81.886108000000036],[-84.621933000000013,81.886932000000002],[-84.604996000000028,81.88998400000014],[-84.714721999999995,81.969986000000119],[-84.729720999999984,81.977203000000031],[-84.751677999999913,81.984711000000061],[-84.815276999999924,82.00082400000008],[-84.840835999999967,82.006103999999993],[-84.89973399999991,82.015274000000034],[-84.93249499999996,82.019440000000088],[-85.039992999999981,82.028594999999996],[-85.116942999999935,82.033051000000057],[-85.405838000000017,82.042205999999965],[-85.678328999999906,82.054428000000087],[-85.755843999999968,82.058868000000132],[-85.851669000000015,82.06721500000009],[-85.915833000000021,82.07748400000014],[-85.999725000000012,82.094147000000021],[-86.062209999999936,82.103867000000093],[-86.091109999999901,82.104431000000034],[-86.278885000000002,82.107208000000128],[-86.485001000000011,82.114150999999936],[-86.565551999999968,82.118865999999969],[-86.637511999999958,82.124419999999986],[-86.706116000000009,82.131927000000132],[-86.731383999999935,82.136383000000023],[-86.752228000000002,82.141098000000056],[-86.856658999999922,82.184708000000057],[-86.869155999999919,82.195251000000042],[-86.876099000000011,82.202208999999982],[-86.871933000000013,82.207764000000111],[-86.843613000000005,82.212494000000106],[-86.764174999999966,82.221649000000014],[-86.669448999999929,82.228316999999947],[-86.619445999999982,82.229705999999965],[-86.571670999999981,82.230270000000075],[-86.520003999999915,82.229705999999965],[-86.316665999999998,82.224701000000096],[-86.228881999999885,82.224701000000096],[-86.181106999999997,82.225266000000147],[-86.137787000000003,82.226929000000041],[-85.984436000000017,82.237488000000099],[-85.934158000000025,82.238876000000005],[-85.841384999999946,82.239151000000049],[-85.798889000000031,82.237762000000032],[-85.753890999999953,82.237488000000099],[-85.706115999999952,82.23803700000002],[-85.662215999999944,82.239699999999971],[-85.61999499999996,82.243591000000038],[-85.603881999999999,82.24914600000011],[-85.598891999999978,82.254440000000102],[-85.580565999999976,82.264434999999992],[-85.557770000000005,82.269440000000088],[-85.508347000000015,82.273041000000092],[-85.413895000000025,82.27609300000006],[-85.370833999999945,82.279984000000127],[-85.350554999999929,82.283875000000023],[-85.34722899999997,82.286377000000073],[-85.367492999999911,82.291092000000106],[-85.396392999999989,82.29693600000013],[-85.457229999999981,82.307479999999998],[-85.481673999999941,82.313599000000011],[-85.489990000000034,82.319716999999969],[-85.515015000000005,82.343322999999998],[-85.531677000000002,82.369705000000067],[-85.50167799999997,82.393600000000106],[-85.501403999999923,82.398880000000133],[-85.515288999999996,82.403320000000008],[-85.534164000000033,82.407486000000063],[-85.669448999999872,82.409424000000001],[-85.866942999999992,82.421920999999998],[-85.904998999999975,82.424988000000099],[-85.921111999999994,82.429977000000065],[-85.911941999999954,82.435806000000071],[-85.819732999999928,82.454437000000098],[-85.794723999999974,82.458602999999982],[-85.746947999999975,82.461380000000077],[-85.708617999999944,82.463608000000022],[-85.502501999999993,82.471099999999979],[-85.298614999999927,82.478042999999957],[-85.046950999999979,82.481934000000024],[-85.003066999999874,82.480820000000051],[-84.693877999999927,82.471375000000023],[-84.662780999999995,82.468596999999988],[-84.641678000000013,82.465546000000018],[-84.62222300000002,82.459152000000131],[-84.616394000000014,82.453598000000113],[-84.613326999999913,82.447204999999997],[-84.613326999999913,82.4433140000001],[-84.631377999999984,82.440262000000018],[-84.787780999999995,82.434982000000105],[-84.895279000000016,82.433594000000028],[-84.940552000000025,82.431931000000077],[-84.943877999999984,82.425812000000064],[-84.916655999999932,82.42053199999998],[-84.888610999999855,82.416930999999977],[-84.714721999999995,82.405822999999941],[-84.559722999999906,82.394989000000066],[-84.482498000000021,82.389435000000105],[-84.449996999999996,82.386107999999979],[-84.418334999999956,82.381088000000091],[-84.388061999999991,82.371094000000085],[-84.384170999999924,82.366089000000045],[-84.387221999999952,82.361649],[-84.378600999999946,82.356933999999967],[-84.34445199999999,82.352768000000083],[-84.303329000000019,82.355819999999994],[-84.228881999999999,82.363876000000062],[-84.180556999999965,82.368042000000003],[-84.146956999999986,82.369705000000067],[-84.095550999999944,82.371094000000085],[-84.047226000000023,82.371368000000018],[-83.961394999999925,82.368591000000094],[-83.876937999999939,82.364151000000106],[-83.841948999999943,82.361374000000012],[-83.767501999999979,82.353043000000071],[-83.606383999999935,82.33137499999998],[-83.516402999999968,82.316940000000045],[-83.384734999999978,82.282210999999961],[-83.36860699999994,82.276381999999955],[-83.360001000000011,82.269440000000088],[-83.360001000000011,82.263611000000026],[-83.369155999999975,82.251663000000008],[-83.371933000000013,82.24470500000001],[-83.371933000000013,82.239151000000049],[-83.344451999999933,82.227203000000145],[-83.308334000000002,82.218323000000112],[-83.24221799999998,82.204163000000051],[-83.184157999999968,82.194702000000063],[-83.130553999999961,82.184981999999991],[-83.083892999999932,82.175812000000121],[-83.022781000000009,82.159424000000058],[-83,82.151093000000003],[-82.976669000000015,82.138321000000133],[-82.953063999999983,82.119979999999998],[-82.95666499999993,82.109711000000118],[-82.958617999999944,82.104431000000034],[-82.968338000000017,82.098038000000088],[-82.978058000000033,82.093872000000033],[-83.001953000000015,82.089157],[-83.0625,82.080276000000026],[-83.126098999999954,82.072495000000004],[-83.128051999999968,82.06721500000009],[-83.111937999999952,82.065261999999962],[-83.076400999999919,82.061920000000043],[-82.974166999999966,82.064986999999974],[-82.888335999999981,82.072495000000004],[-82.797501000000011,82.077773999999977],[-82.758057000000008,82.076934999999992],[-82.674438000000009,82.073043999999925],[-82.636397999999986,82.070540999999992],[-82.421660999999972,82.066940000000102],[-82.284163999999976,82.066375999999991],[-82.199432000000002,82.064147999999989],[-82.122222999999906,82.058594000000028],[-82.055556999999965,82.050812000000064],[-81.963622999999927,82.037201000000096],[-81.926101999999958,82.034714000000008],[-81.889998999999989,82.034988000000112],[-81.878051999999968,82.03637700000013],[-81.884734999999921,82.041091999999992],[-81.924164000000019,82.058868000000132],[-81.966110000000015,82.071105999999986],[-82.020844000000011,82.082213999999965],[-82.05860899999999,82.084717000000126],[-82.102492999999981,82.085541000000092],[-82.243056999999965,82.084991000000059],[-82.417496000000028,82.087204000000042],[-82.546386999999982,82.090271000000143],[-82.58444199999991,82.09275800000006],[-82.619719999999916,82.096099999999979],[-82.651947000000007,82.100266000000033],[-82.676940999999943,82.10775799999999],[-82.683884000000035,82.118317000000047],[-82.688599000000011,82.126083000000108],[-82.697495000000004,82.131362999999965],[-82.717223999999931,82.142761000000007],[-82.731383999999935,82.149993999999992],[-82.772232000000031,82.163315000000125],[-82.860275000000001,82.187759000000085],[-82.886947999999961,82.193862999999908],[-82.94027699999998,82.203598],[-82.987503000000004,82.214995999999985],[-83.011397999999986,82.221649000000014],[-83.027785999999878,82.235259999999982],[-83.028884999999946,82.264998999999989],[-83.028884999999946,82.276657],[-83.02555799999999,82.283324999999991],[-83.019164999999873,82.288879000000122],[-82.990829000000019,82.292480000000012],[-82.735549999999932,82.286102000000028],[-82.693603999999937,82.284714000000122],[-82.654448999999886,82.282210999999961],[-82.621658000000025,82.278045999999961],[-82.508895999999936,82.258040999999992],[-82.452788999999939,82.249420000000043],[-82.286666999999966,82.229156000000103],[-82.263061999999991,82.222214000000008],[-82.211120999999991,82.204711999999972],[-82.160278000000005,82.193313999999987],[-82.101943999999946,82.183044000000052],[-82.011123999999995,82.168594000000098],[-81.918059999999912,82.15498400000007],[-81.608886999999982,82.118590999999981],[-81.425277999999935,82.0977630000001],[-81.353057999999976,82.091659999999933],[-81.249161000000015,82.081375000000037],[-81.150283999999999,82.068878000000041],[-81.091110000000015,82.059417999999994],[-80.868332000000009,82.03137200000009],[-80.640288999999996,82.018326000000116],[-80.43249499999996,81.997481999999991],[-80.225829999999974,81.986098999999967],[-80.153609999999958,81.981368999999916],[-80.085006999999905,81.973602000000142],[-80.035277999999948,81.963042999999914],[-79.883056999999951,81.924698000000035],[-79.610000999999897,81.851089000000002],[-79.589721999999938,81.844147000000078],[-79.587783999999999,81.838318000000072],[-79.577224999999942,81.828872999999987],[-79.564163000000008,81.825271999999927],[-79.53443900000002,81.820831000000055],[-79.492217999999923,81.819717000000026],[-79.244445999999925,81.816085999999984],[-79.229171999999949,81.816085999999984],[-79.452224999999999,81.88998400000014],[-79.489989999999977,81.900269000000037],[-79.521117999999888,81.905548000000067],[-79.579726999999934,81.913605000000018],[-79.670837000000006,81.927475000000072],[-79.844451999999933,81.97137499999991],[-79.837783999999942,82.007217000000082],[-79.832229999999868,82.013885000000016],[-79.853333000000021,82.018875000000094],[-79.880829000000006,82.021927000000005],[-79.916397000000018,82.023880000000133],[-80.213897999999858,82.032211000000018],[-80.331680000000006,82.038589000000002],[-80.368606999999997,82.041091999999992],[-80.624435000000005,82.061920000000043],[-80.657226999999921,82.064697000000137],[-80.725554999999986,82.071655000000135],[-80.791107000000011,82.079437000000098],[-80.822234999999921,82.083878000000027],[-80.878326000000015,82.094147000000021],[-80.922226000000023,82.103592000000106],[-80.948607999999979,82.110260000000096],[-80.962783999999999,82.116379000000109],[-80.975554999999986,82.12359600000002],[-80.975554999999986,82.127762000000132],[-80.956664999999987,82.137206999999989],[-80.931380999999988,82.142212000000029],[-80.89973399999991,82.146378000000141],[-80.874435000000005,82.151093000000003],[-80.868056999999965,82.15498400000007],[-80.909163999999976,82.156647000000135],[-81.051391999999964,82.154709000000025],[-81.171111999999994,82.156372000000147],[-81.253341999999918,82.159714000000065],[-81.324722000000008,82.164993000000038],[-81.423324999999977,82.176926000000094],[-81.799728000000016,82.222762999999986],[-81.825561999999934,82.226654000000053],[-81.887786999999946,82.23803700000002],[-82.170546999999999,82.286652000000061],[-82.454726999999991,82.328048999999965],[-82.513061999999934,82.337769000000037],[-82.625548999999921,82.359146000000067],[-82.679992999999968,82.37081900000004],[-82.711670000000026,82.382477000000108],[-82.722778000000005,82.388321000000076],[-82.7308349999999,82.395264000000111],[-82.732223999999974,82.401657000000057],[-82.728881999999942,82.408325000000048],[-82.710281000000009,82.419434000000081],[-82.698333999999988,82.424988000000099],[-82.539444000000003,82.497208000000114],[-82.520553999999947,82.502487000000087],[-82.498336999999992,82.506377999999984],[-82.458892999999989,82.508331000000112],[-82.406386999999881,82.509155000000078],[-82.316956000000005,82.506943000000035],[-82.091675000000009,82.501389000000017],[-81.669997999999907,82.492477000000008],[-81.541672000000005,82.496093999999971],[-81.542220999999927,82.504990000000078],[-81.713332999999977,82.51527400000009],[-81.75140399999998,82.516937000000041],[-81.84722899999997,82.515548999999965],[-81.880554000000018,82.517761000000007],[-81.927489999999977,82.522766000000047],[-81.966400000000021,82.528870000000097],[-82.263901000000033,82.576660000000061],[-82.321121000000005,82.589157000000057],[-82.343886999999938,82.595261000000107],[-82.390288999999996,82.611923000000104],[-82.394729999999925,82.617477000000065],[-82.392226999999934,82.622756999999979],[-82.38110399999988,82.634720000000016],[-82.371933000000013,82.639708999999982],[-82.354445999999996,82.645537999999988],[-82.335281000000009,82.650543000000027],[-82.288054999999986,82.659988000000112],[-82.255004999999926,82.664428999999984],[-82.215285999999992,82.668593999999985],[-82.154998999999918,82.671097000000145],[-82.060271999999998,82.669708000000014],[-81.97222899999997,82.666382000000112],[-81.931380999999931,82.663878999999952],[-81.543335000000013,82.637207000000046],[-81.432495000000017,82.629150000000095],[-81.359725999999966,82.62081900000004],[-81.30082699999997,82.611098999999911],[-81.136123999999995,82.578049000000078],[-80.989440999999999,82.547211000000061],[-80.949721999999952,82.538040000000137],[-80.891952999999944,82.532760999999994],[-80.581679999999949,82.543045000000006],[-80.578063999999983,82.546097000000088],[-80.599166999999966,82.55442800000003],[-80.87388599999997,82.629700000000128],[-80.994445999999925,82.650269000000094],[-81.049987999999985,82.660812000000078],[-81.077224999999999,82.666931000000091],[-81.097503999999958,82.672485000000052],[-81.124709999999993,82.686919999999986],[-81.223617999999988,82.715820000000065],[-81.305831999999953,82.733871000000022],[-81.449996999999996,82.755553999999961],[-81.508620999999948,82.764709000000039],[-81.573623999999938,82.788315000000068],[-81.58444199999991,82.794434000000138],[-81.585006999999962,82.800812000000064],[-81.571670999999924,82.806366000000082],[-81.556655999999975,82.811371000000122],[-81.536391999999921,82.816665999999998],[-81.514175000000023,82.821106000000043],[-81.473052999999993,82.82499700000011],[-81.411391999999921,82.827773999999977],[-81.359725999999966,82.827773999999977],[-81.022232000000031,82.821930000000009],[-80.977218999999934,82.820267000000058],[-80.801940999999999,82.812485000000095],[-80.500564999999995,82.797484999999938],[-80.418334999999956,82.792205999999965],[-80.381103999999993,82.788879000000065],[-80.318618999999956,82.779984000000013],[-80.2933349999999,82.774429000000112],[-80.15834000000001,82.727768000000083],[-80.138901000000033,82.719986000000119],[-80.139449999999954,82.715820000000065],[-80.178329000000019,82.699997000000053],[-80.182495000000017,82.69470199999995],[-80.181380999999931,82.687759000000142],[-80.160277999999948,82.681366000000025],[-80.070846999999901,82.665543000000014],[-80.003066999999987,82.656372000000033],[-79.941665999999998,82.649429000000055],[-79.861664000000019,82.644150000000081],[-79.817779999999914,82.644440000000088],[-79.800827000000027,82.646652000000131],[-79.803604000000007,82.649994000000049],[-79.822509999999966,82.65776100000005],[-79.848617999999988,82.663878999999952],[-79.966949,82.684708000000114],[-79.983321999999987,82.689147999999989],[-79.977492999999981,82.695815999999922],[-79.961394999999925,82.700821000000019],[-79.928604000000007,82.705551000000014],[-79.885833999999875,82.708602999999925],[-79.829726999999991,82.708878000000141],[-79.787505999999894,82.707763999999997],[-79.74749799999995,82.704987000000074],[-79.684158000000025,82.699706999999989],[-79.617492999999911,82.693039000000056],[-79.468338000000017,82.677475000000129],[-79.384734999999978,82.672760000000096],[-79.149993999999936,82.667755000000056],[-78.843613000000005,82.664992999999981],[-78.565552000000025,82.674698000000035],[-78.521118000000001,82.67692599999998],[-78.502791999999999,82.681090999999981],[-78.53195199999999,82.684418000000107],[-78.576675000000023,82.686919999999986],[-78.840835999999967,82.680817000000047],[-78.895003999999858,82.680267000000015],[-78.931945999999982,82.681656000000032],[-79.243057000000022,82.695251000000098],[-79.331680000000006,82.699706999999989],[-79.40306099999998,82.70637499999998],[-79.623046999999985,82.727768000000083],[-79.836944999999901,82.750549000000092],[-79.886948000000018,82.759430000000066],[-79.913329999999917,82.765274000000034],[-79.93638599999997,82.772217000000069],[-79.996947999999975,82.803314],[-79.975829999999974,82.808594000000028],[-79.942489999999964,82.811371000000122],[-79.692215000000033,82.818054000000075],[-79.674437999999952,82.820267000000058],[-79.67222599999991,82.823883000000137],[-79.673889000000031,82.824707000000103],[-79.847777999999948,82.834991000000116],[-79.896118000000001,82.835815000000082],[-80.006667999999934,82.834427000000005],[-80.110000999999954,82.834717000000012],[-80.15834000000001,82.835541000000148],[-80.194153000000028,82.838318000000072],[-80.219727000000034,82.84165999999999],[-80.277221999999938,82.850815000000011],[-80.393065999999976,82.875534000000016],[-80.430282999999974,82.887497000000053],[-80.42971799999998,82.894150000000025],[-80.398055999999997,82.899719000000005],[-80.095839999999953,82.937194999999974],[-79.904723999999987,82.951096000000121],[-79.793335000000013,82.957489000000123],[-79.458344000000011,82.974152000000004],[-79.414444000000003,82.975266000000147],[-79.370543999999995,82.974152000000004],[-79.177489999999977,82.951935000000105],[-79.073333999999988,82.901931999999988],[-79.064437999999882,82.895828000000108],[-79.066101000000003,82.889434999999992],[-78.928054999999972,82.898605000000032],[-78.825287000000003,82.928040000000124],[-78.780288999999982,82.93803400000013],[-78.756118999999956,82.942474000000118],[-78.719726999999978,82.946640000000059],[-78.671111999999937,82.945526000000086],[-78.631942999999978,82.941360000000145],[-78.546111999999994,82.926651000000106],[-78.521666999999923,82.921097000000088],[-78.503341999999918,82.913314999999955],[-78.501953000000015,82.907760999999994],[-78.504180999999903,82.901093000000003],[-78.521941999999967,82.889159999999947],[-78.538605000000018,82.876647999999989],[-78.557770000000005,82.860535000000141],[-78.553328999999906,82.853592000000106],[-78.53443900000002,82.8477630000001],[-78.500564999999938,82.845534999999984],[-78.341674999999952,82.850540000000024],[-78.175551999999982,82.827208999999982],[-78.14416499999993,82.823318000000086],[-78.109160999999972,82.825272000000098],[-78.106658999999979,82.831940000000088],[-78.128875999999877,82.836655000000121],[-78.194442999999922,82.845824999999991],[-78.223617999999988,82.851088999999945],[-78.241378999999938,82.858871000000079],[-78.238891999999964,82.865265000000136],[-78.108337000000006,82.893326000000059],[-78.080291999999986,82.898331000000098],[-77.986663999999962,82.909988000000055],[-77.949996999999883,82.91415400000011],[-77.863327000000027,82.921371000000022],[-77.813048999999864,82.92442299999999],[-77.768340999999964,82.922485000000052],[-77.708344000000011,82.916092000000049],[-77.688889000000017,82.912490999999989],[-77.616652999999985,82.902771000000087],[-77.528060999999923,82.891098000000113],[-77.467223999999987,82.883880999999974],[-77.405272999999909,82.878860000000032],[-77.319457999999997,82.873306000000014],[-77.128325999999959,82.863312000000008],[-77.108046999999999,82.859146000000123],[-77.089171999999962,82.852767999999969],[-76.96665999999999,82.804703000000131],[-76.959166999999923,82.774155000000007],[-76.941665999999998,82.768326000000002],[-76.898346000000004,82.766098],[-76.851104999999961,82.764999000000046],[-76.815552000000025,82.761107999999979],[-76.789168999999958,82.756377999999927],[-76.766662999999994,82.750823999999966],[-76.708617999999944,82.733047000000056],[-76.674438000000009,82.721374999999966],[-76.644164999999987,82.709152000000074],[-76.612503000000004,82.696091000000138],[-76.598052999999993,82.688873000000115],[-76.570556999999951,82.666656000000046],[-76.538329999999974,82.664153999999996],[-76.387221999999952,82.651382000000012],[-76.09333799999996,82.62081900000004],[-76.058884000000035,82.616928000000144],[-75.913895000000025,82.597487999999942],[-75.892226999999991,82.591933999999981],[-75.896392999999989,82.588318000000072],[-75.918610000000001,82.579987000000017],[-75.938323999999966,82.575821000000133],[-75.972778000000005,82.571381000000088],[-76.038895000000025,82.557205000000067],[-76.194716999999969,82.511108000000036],[-76.207503999999972,82.506377999999984],[-76.217772999999909,82.500548999999978],[-76.255279999999971,82.471924000000115],[-76.261002000000019,82.466552999999976],[-76.236937999999896,82.445250999999985],[-76.230835000000013,82.444702000000007],[-76.184158000000025,82.453872999999987],[-76.102782999999874,82.470534999999984],[-76.037780999999939,82.484421000000111],[-75.975006000000008,82.499709999999993],[-75.887221999999952,82.522217000000126],[-75.802779999999984,82.546371000000022],[-75.773894999999925,82.557205000000067],[-75.671386999999925,82.586929000000112],[-75.648055999999997,82.591660000000047],[-75.606383999999935,82.595825000000048],[-75.500838999999928,82.600266000000147],[-75.451675000000023,82.603317000000004],[-75.420273000000009,82.606934000000138],[-75.396118000000001,82.614699999999971],[-75.40972899999997,82.61914100000007],[-75.43472300000002,82.623871000000122],[-75.468886999999881,82.627762000000018],[-75.503615999999852,82.628860000000088],[-75.55749499999996,82.628585999999984],[-75.625548999999978,82.633040999999992],[-75.670546999999999,82.642761000000064],[-75.807495000000017,82.654709000000082],[-76.103057999999976,82.68609600000002],[-76.235824999999977,82.712203999999986],[-76.256392999999946,82.717209000000025],[-76.275557999999933,82.724425999999994],[-76.299987999999871,82.739700000000028],[-76.306655999999919,82.745819000000097],[-76.309158000000025,82.752777000000094],[-76.269454999999994,82.760817999999972],[-76.226395000000025,82.764435000000105],[-76.176391999999964,82.767212000000029],[-76.056945999999982,82.771652000000017],[-76.014724999999999,82.775818000000129],[-75.989440999999999,82.779984000000013],[-75.976104999999961,82.784714000000065],[-75.998336999999935,82.787490999999932],[-76.18638599999997,82.78387500000008],[-76.241378999999995,82.783600000000035],[-76.288605000000018,82.784714000000065],[-76.375274999999988,82.789154000000053],[-76.447495000000004,82.797484999999938],[-76.50167799999997,82.8077550000001],[-76.525283999999942,82.813873000000001],[-76.545272999999952,82.821106000000043],[-76.586394999999982,82.83859300000006],[-76.629165999999998,82.859710999999947],[-76.666655999999989,82.872482000000048],[-76.710830999999985,82.885818000000029],[-76.752791999999999,82.894988999999953],[-76.844161999999983,82.90914900000007],[-76.881942999999978,82.913605000000018],[-77.025832999999977,82.927765000000079],[-77.066390999999953,82.93081699999999],[-77.131667999999991,82.939972000000068],[-77.344726999999978,82.972487999999998],[-77.385283999999899,82.983046999999999],[-77.381377999999984,82.994431000000134],[-77.364440999999999,83.000000000000114],[-77.341949,83.005554000000132],[-77.276108000000022,83.020264000000054],[-77.252227999999945,83.025269000000094],[-77.222777999999948,83.030548000000067],[-77.183883999999978,83.033875000000023],[-77.134734999999978,83.032486000000006],[-77.137221999999895,83.028320000000122],[-77.171386999999982,83.017211999999972],[-77.169723999999974,83.013885000000016],[-77.135558999999944,83.011383000000137],[-76.863051999999925,83.010818000000086],[-76.559432999999956,83.011932000000058],[-76.360274999999945,83.021378000000027],[-76.266662999999994,83.02915999999999],[-76.20666499999993,83.036652000000117],[-76.113327000000027,83.05053700000002],[-76.079177999999956,83.053589000000102],[-76.028610000000015,83.054428000000087],[-75.979720999999927,83.05304000000001],[-75.948607999999922,83.051926000000037],[-75.580841000000021,83.038040000000024],[-75.313323999999909,83.027480999999966],[-75.046951000000035,83.041656000000103],[-75,83.043884000000048],[-74.956389999999999,83.04553199999998],[-74.797501000000011,83.043594000000041],[-74.706664999999987,83.041091999999935],[-74.43582200000003,83.027205999999978],[-74.408050999999887,83.024704000000099],[-74.279175000000009,83.009995000000004],[-74.172774999999888,82.991088999999988],[-74.084166999999979,82.972487999999998],[-74.018065999999976,82.956940000000145],[-73.879439999999875,82.897217000000126],[-73.851668999999958,82.866653000000042],[-73.817779999999971,82.852767999999969],[-73.607772999999952,82.81581099999994],[-73.548339999999939,82.806091000000038],[-73.281951999999933,82.766388000000063],[-73.247222999999963,82.761658000000011],[-73.160278000000005,82.751388999999961],[-73.075011999999958,82.745819000000097],[-72.949721999999952,82.738876000000062],[-72.906661999999983,82.735808999999961],[-72.835830999999985,82.728592000000049],[-72.75,82.714706000000092],[-72.700835999999981,82.703323000000069],[-72.672225999999966,82.698593000000017],[-72.633895999999936,82.694427000000132],[-72.603332999999964,82.695815999999922],[-72.594727000000034,82.697479000000044],[-72.49888599999997,82.718323000000055],[-72.502501999999936,82.724425999999994],[-72.648894999999925,82.746643000000063],[-72.716659999999933,82.755553999999961],[-72.912216000000001,82.776657000000057],[-72.983886999999982,82.78387500000008],[-73.027221999999881,82.786926000000108],[-73.211394999999925,82.813873000000001],[-73.257506999999919,82.825821000000076],[-73.401397999999915,82.874985000000038],[-73.420272999999952,82.890548999999965],[-73.430556999999908,82.893599999999992],[-73.460830999999928,82.898605000000032],[-73.49499499999996,82.90248100000008],[-73.577224999999999,82.908035000000098],[-73.607498000000021,82.913040000000137],[-73.633330999999998,82.918593999999985],[-73.65055799999999,82.925811999999951],[-73.644164999999873,82.932205000000124],[-73.634444999999971,82.936646000000053],[-73.619155999999975,82.941086000000041],[-73.261948000000018,83.007767000000058],[-73.033889999999928,83.036652000000117],[-72.948607999999979,83.055252000000053],[-72.927489999999977,83.067490000000078],[-72.650557999999933,83.096374999999966],[-72.59973100000002,83.096939000000077],[-72.57028200000002,83.092758000000003],[-72.568619000000012,83.087769000000037],[-72.556655999999975,83.079712000000086],[-72.523894999999925,83.076934999999992],[-72.477492999999868,83.076659999999947],[-72.424163999999962,83.079163000000108],[-72.407776000000013,83.083602999999982],[-72.393616000000009,83.089431999999988],[-72.365829000000019,83.094147000000021],[-72.336394999999925,83.097763000000043],[-72.226943999999946,83.101379000000122],[-72.111938000000009,83.101089000000115],[-72.005568999999866,83.099152000000061],[-71.831680000000006,83.097763000000043],[-71.712783999999886,83.098877000000016],[-71.611663999999905,83.096099999999979],[-71.581679999999949,83.091095000000109],[-71.596953999999869,83.085266000000047],[-71.654448999999943,83.068878000000041],[-71.696380999999917,83.057755000000043],[-71.75,83.043045000000063],[-71.775008999999898,83.032211000000018],[-71.7933349999999,83.020537999999988],[-71.794998000000021,83.013611000000083],[-71.792220999999984,83.00749200000007],[-71.778335999999911,83.001663000000065],[-71.567229999999938,82.941086000000041],[-71.493606999999997,82.932205000000124],[-71.33666999999997,82.914703000000088],[-71.219726999999978,82.914993000000095],[-71.144164999999987,82.908325000000104],[-71.084166999999979,82.900542999999971],[-71.018340999999964,82.891937000000041],[-70.952224999999999,82.883605999999986],[-70.871384000000035,82.881087999999977],[-70.835006999999962,82.883041000000105],[-70.84333799999996,82.889984000000084],[-70.857773000000009,82.897217000000126],[-70.904174999999952,82.908035000000098],[-70.961944999999957,82.918593999999985],[-71.080841000000021,82.937484999999981],[-71.306380999999931,82.982208000000071],[-71.472777999999948,83.001663000000065],[-71.497498000000007,83.007217000000026],[-71.489990000000034,83.014435000000049],[-71.474166999999852,83.019440000000088],[-71.425002999999947,83.029434000000094],[-71.125274999999988,83.087494000000049],[-70.887221999999895,83.098038000000088],[-70.694152999999972,83.103592000000049],[-70.585280999999952,83.103317000000061],[-70.470000999999968,83.107482999999945],[-70.37388599999997,83.113311999999951],[-70.260009999999966,83.113876000000118],[-70.160003999999958,83.111374000000012],[-70.111937999999952,83.109421000000111]]]} +} +] +} diff --git a/lisp-interpreter/tests/data/big_data_canada.sexpr b/lisp-interpreter/tests/data/big_data_canada.sexpr new file mode 100644 index 0000000..e420735 --- /dev/null +++ b/lisp-interpreter/tests/data/big_data_canada.sexpr @@ -0,0 +1 @@ +#((type . "FeatureCollection") (features . (#((type . "Feature") (properties . #((name . "Canada"))) (geometry . #((type . "Polygon") (coordinates . (((-65.61361699999998 43.42027300000001) (-65.61972000000003 43.418052999999986) (-65.625 43.42137900000006) (-65.63612399999988 43.44971499999997) (-65.63305699999995 43.47470900000013) (-65.61138900000003 43.51305400000007) (-65.60583500000001 43.51610599999998) (-65.598343 43.515830999999935) (-65.566101 43.508331000000055) (-65.561935 43.50443999999999) (-65.55999799999995 43.49971800000009) (-65.57333399999999 43.476379000000065) (-65.59361299999995 43.44415300000003) (-65.61361699999998 43.42027300000001)) ((-59.81694799999991 43.92832899999996) (-59.84166700000003 43.91860200000002) (-59.86639399999996 43.909988) (-59.879722999999956 43.906654) (-59.895835999999974 43.90416000000005) (-59.91944899999993 43.901099999999985) (-59.95333099999999 43.898604999999975) (-60.01361799999995 43.90332000000001) (-60.02860999999996 43.905548000000124) (-60.078338999999914 43.91749600000003) (-60.10388899999998 43.92665900000003) (-60.121666000000005 43.934990000000084) (-60.129997 43.94193300000006) (-60.124168 43.94526700000006) (-60.09500099999997 43.93943000000013) (-60.017776000000026 43.92582700000008) (-59.975554999999986 43.92193600000002) (-59.96694200000002 43.92193600000002) (-59.91500099999996 43.925552000000096) (-59.86194599999999 43.93443300000001) (-59.841385 43.93888099999998) (-59.80972300000002 43.950829) (-59.793334999999956 43.9594350000001) (-59.77722199999994 43.96804800000007) (-59.75527999999997 43.97943100000009) (-59.724716 43.99110400000012) (-59.72777599999995 43.98638200000005) (-59.73638900000003 43.9791560000001) (-59.753615999999965 43.964995999999985) (-59.76250499999992 43.95777100000009) (-59.782501000000025 43.944435) (-59.79305999999997 43.93832400000008) (-59.81694799999991 43.92832899999996)) ((-66.28277599999996 44.289719000000105) (-66.314438 44.25054899999998) (-66.32223499999998 44.252777000000094) (-66.32444800000002 44.25750000000005) (-66.32389799999999 44.26332900000011) (-66.310272 44.28999300000004) (-66.30305499999992 44.30054500000006) (-66.29472399999992 44.310272) (-66.22833300000002 44.38582600000001) (-66.21945199999999 44.394713999999965) (-66.214447 44.39777400000003) (-66.20638999999994 44.39527100000004) (-66.20472699999993 44.384995) (-66.20527599999997 44.37943300000006) (-66.20805399999995 44.37276500000007) (-66.21472199999994 44.36360900000011) (-66.24972500000001 44.32721700000013) (-66.28277599999996 44.289719000000105)) ((-66.886124 44.614441) (-66.900284 44.61332699999997) (-66.90417499999995 44.61804999999998) (-66.904449 44.62248999999997) (-66.88473499999998 44.68332700000002) (-66.85861199999994 44.74305000000004) (-66.83778399999994 44.770827999999995) (-66.83332799999994 44.77499400000005) (-66.80332900000002 44.79888199999999) (-66.79804999999993 44.80249000000009) (-66.78666699999985 44.80804400000011) (-66.77972399999993 44.80915800000008) (-66.77250700000002 44.80915800000008) (-66.76722699999993 44.80554999999998) (-66.764725 44.801102000000014) (-66.75778199999996 44.792496000000085) (-66.73472600000002 44.7291560000001) (-66.73693800000001 44.71720900000014) (-66.74027999999993 44.70777099999998) (-66.761124 44.67610200000013) (-66.765015 44.671378999999945) (-66.87527499999993 44.61943800000006) (-66.886124 44.614441)) ((-61.199996999999996 45.55832700000008) (-61.20472000000001 45.55526700000007) (-61.21277599999996 45.55665600000003) (-61.219993999999986 45.55999000000003) (-61.22416700000002 45.56415600000014) (-61.222220999999934 45.569443000000035) (-61.21416499999998 45.568886000000134) (-61.20861099999996 45.56721500000009) (-61.20249899999999 45.56332400000002) (-61.199996999999996 45.55832700000008)) ((-60.993889000000024 45.45777099999998) (-61.00028199999997 45.455826) (-61.00778199999996 45.45721400000008) (-61.01944699999996 45.46388200000007) (-61.101943999999946 45.52304800000002) (-61.10583500000001 45.526939000000084) (-61.108337000000006 45.54083300000002) (-61.10444599999994 45.54638700000004) (-61.09860999999995 45.549164000000076) (-61.023612999999955 45.57499700000005) (-61.01722000000001 45.57527200000004) (-60.936942999999985 45.57665999999995) (-60.908051 45.576103000000046) (-60.900275999999906 45.575554000000125) (-60.879996999999946 45.5605470000001) (-60.87860899999987 45.55582400000014) (-60.88388800000001 45.55054499999994) (-60.889167999999984 45.548332000000016) (-60.91027799999995 45.54610400000007) (-60.93611099999998 45.539161999999976) (-60.947495 45.533607000000075) (-60.95249899999993 45.529990999999995) (-60.962501999999915 45.519989000000066) (-60.96305799999999 45.51499899999999) (-60.96166999999991 45.51027700000009) (-60.95861100000002 45.50582900000012) (-60.950553999999954 45.497772) (-60.993889000000024 45.45777099999998)) ((-63.24639100000002 46.43554700000004) (-63.25389100000001 46.43526500000013) (-63.26167299999986 46.43637800000005) (-63.26944699999996 46.4397130000001) (-63.285004000000015 46.450829000000056) (-63.27055399999989 46.450271999999984) (-63.245834 46.442764000000125) (-63.240837 46.438599000000124) (-63.24639100000002 46.43554700000004)) ((-71.11111499999998 46.850548) (-71.118607 46.850273000000016) (-71.12748699999992 46.85166200000003) (-71.13027999999991 46.85610200000002) (-71.12832600000002 46.86221300000011) (-71.12138399999998 46.87416100000013) (-71.09889199999998 46.89804800000002) (-71.07833900000003 46.913605000000075) (-70.936935 46.992493000000024) (-70.89666699999987 47.013329000000056) (-70.87222300000002 47.02416200000005) (-70.86000100000001 47.02777100000003) (-70.84527600000001 47.02916000000005) (-70.83639499999998 47.02777100000003) (-70.818893 47.02276599999999) (-70.81361400000003 47.019440000000145) (-70.80915800000002 47.01527400000009) (-70.80749500000002 47.00999500000006) (-70.80943299999996 47.00443999999999) (-70.814438 46.998329000000126) (-70.87721299999998 46.93110700000011) (-70.88751200000002 46.923607000000004) (-70.90417499999995 46.913605000000075) (-71.00917099999992 46.87110100000007) (-71.03332499999993 46.86249499999997) (-71.04083299999996 46.86054999999999) (-71.08222999999992 46.8533250000001) (-71.11111499999998 46.850548)) ((-60.44527399999998 46.86166400000013) (-60.436942999999985 46.86110700000006) (-60.35278299999999 46.86166400000013) (-60.34583299999986 46.86249499999997) (-60.33444199999997 46.8688810000001) (-60.32611099999997 46.86832399999997) (-60.32083899999998 46.864441000000056) (-60.309440999999936 46.85110500000013) (-60.302223000000026 46.837493999999936) (-60.30139200000002 46.831940000000145) (-60.304442999999935 46.815269000000114) (-60.32277699999992 46.73638200000005) (-60.327224999999885 46.724991000000045) (-60.47888199999994 46.38999200000006) (-60.53527799999995 46.32166300000006) (-60.58943899999986 46.25499700000006) (-60.60916900000001 46.201934999999935) (-60.59033199999993 46.20782100000008) (-60.587001999999984 46.209488000000135) (-60.57150299999995 46.22865300000012) (-60.55332900000002 46.24887800000005) (-60.551391999999964 46.25499700000006) (-60.54333500000001 46.26666300000005) (-60.528053 46.27860299999992) (-60.479720999999984 46.31110400000006) (-60.46805599999999 46.316666) (-60.44388600000002 46.32694200000009) (-60.43055700000002 46.33138299999996) (-60.424171 46.331665000000044) (-60.41638899999987 46.32804900000002) (-60.412216 46.31888600000002) (-60.41777799999994 46.28582799999998) (-60.419997999999964 46.27999100000005) (-60.42472099999992 46.27526899999998) (-60.43804899999992 46.27082800000005) (-60.45471999999995 46.26221500000008) (-60.47055099999994 46.25110599999999) (-60.53583100000003 46.19243600000004) (-60.59027900000001 46.1386030000001) (-60.60028099999994 46.13027199999999) (-60.61611199999993 46.12082700000013) (-60.64583600000003 46.10610200000002) (-60.687774999999874 46.08832600000005) (-60.70111099999991 46.08526599999999) (-60.788895000000025 46.066666000000055) (-60.86333499999995 46.052490000000034) (-60.98611499999993 45.982491000000095) (-61.02388799999994 45.96943700000003) (-61.08028399999995 45.951660000000004) (-61.08777600000002 45.95138500000013) (-61.09583299999997 45.952217000000076) (-61.10500300000001 45.954712000000086) (-61.113059999999905 45.95526899999999) (-61.11777499999994 45.950829) (-61.12694499999998 45.92832900000013) (-61.12555699999996 45.92360700000006) (-61.11833200000001 45.92304999999993) (-61.05699900000002 45.93121699999995) (-61.05283400000002 45.93188100000003) (-61.01749799999999 45.940712000000076) (-61.014835000000005 45.94338200000004) (-60.989165999999955 45.95638300000013) (-60.987777999999935 45.96249400000005) (-60.98416899999995 45.96749099999994) (-60.957221999999945 45.984992999999974) (-60.94055199999991 45.99443800000006) (-60.892776000000026 46.01527400000009) (-60.853057999999976 46.03138000000007) (-60.77083599999992 46.057495000000074) (-60.75750699999992 46.060546999999985) (-60.743056999999965 46.061661000000015) (-60.73555799999991 46.05804400000005) (-60.73416900000001 46.05332199999998) (-60.73416900000001 46.047493000000145) (-60.807503 45.93110700000011) (-60.87027699999999 45.91082000000006) (-60.898056 45.90665400000012) (-60.956947000000014 45.90304600000002) (-61.042888999999946 45.8913270000001) (-61.047053999999946 45.890659000000085) (-61.05055599999997 45.88899199999997) (-61.053390999999976 45.88616200000013) (-61.096663999999976 45.860275) (-61.09777799999995 45.85471300000006) (-61.094719 45.850273000000016) (-61.08777600000002 45.847488) (-61.07972699999999 45.84693900000002) (-61.073059 45.84804500000007) (-61.06082900000001 45.852776000000006) (-61.04944599999999 45.858330000000024) (-61.026107999999965 45.86971299999999) (-60.98999799999996 45.881935) (-60.96805599999999 45.883331000000055) (-60.96028100000001 45.88027200000005) (-60.919448999999986 45.85749800000008) (-60.91583300000002 45.852776000000006) (-60.91777799999994 45.847488) (-60.93527199999994 45.825271999999984) (-60.94055199999991 45.821663) (-60.947495 45.82054900000003) (-61.01944699999996 45.80998999999997) (-61.06750499999998 45.79166399999997) (-61.079169999999976 45.78611000000001) (-61.11805700000002 45.763611000000026) (-61.12777699999998 45.75527199999999) (-61.147223999999994 45.704994) (-61.14917000000003 45.699715000000026) (-61.14250199999992 45.69638100000003) (-61.07749899999993 45.68888099999998) (-61.07083899999998 45.68998700000003) (-61.041945999999996 45.704162999999994) (-61.012778999999966 45.71888000000001) (-60.99639100000002 45.72776799999997) (-60.97277100000002 45.738045) (-60.95471999999995 45.74554399999994) (-60.93582900000001 45.751389000000074) (-60.92222599999991 45.75360900000004) (-60.914443999999946 45.75360900000004) (-60.890556000000004 45.75166300000001) (-60.88194299999992 45.75000000000006) (-60.8641659999999 45.744438000000116) (-60.84416199999998 45.735268000000076) (-60.816666 45.72248800000011) (-60.80999800000001 45.71915400000012) (-60.800835000000006 45.71166199999999) (-60.72943899999996 45.77860300000003) (-60.719719 45.78832999999997) (-60.516944999999964 45.92083000000014) (-60.49194299999988 45.92943600000007) (-60.46694200000002 45.938041999999996) (-60.409163999999976 45.979987999999935) (-60.40416699999997 45.98443600000007) (-60.395835999999974 45.99610100000001) (-60.40166499999998 45.994713000000104) (-60.55500000000001 45.9469380000001) (-60.611671 45.92499500000014) (-60.6297229999999 45.91749600000014) (-60.63999899999999 45.91027100000008) (-60.644721999999945 45.905548000000124) (-60.655272999999966 45.898330999999985) (-60.66111000000001 45.89527099999992) (-60.6733319999999 45.89054900000002) (-60.686110999999926 45.88694000000004) (-60.69388600000002 45.88610799999992) (-60.708892999999875 45.887215000000026) (-60.72332799999998 45.893326000000116) (-60.78833799999995 45.92943600000007) (-60.78972599999997 45.934433000000126) (-60.788895000000025 45.939986999999974) (-60.785278000000005 45.94638100000003) (-60.78055599999999 45.950829) (-60.69138299999997 46.00193799999994) (-60.679168999999945 46.00666000000001) (-60.601395000000025 46.039719000000105) (-60.54111499999999 46.0655440000001) (-60.523612999999955 46.07555400000001) (-60.49083699999994 46.094437000000084) (-60.30999799999995 46.206939999999975) (-60.30499999999995 46.210548000000074) (-60.29999499999997 46.21499600000004) (-60.295279999999934 46.22693600000014) (-60.295279999999934 46.23220800000007) (-60.304169 46.233878999999945) (-60.36555499999997 46.22499099999999) (-60.372772 46.223320000000115) (-60.39611100000002 46.213051000000064) (-60.40193899999991 46.21027399999997) (-60.41833500000001 46.199996999999996) (-60.428054999999915 46.19249000000008) (-60.442497 46.17943600000001) (-60.46333299999992 46.16387900000012) (-60.47916399999991 46.15277100000014) (-60.528053 46.12165800000014) (-60.60583500000001 46.07471500000008) (-60.629997 46.065269000000114) (-60.64416499999999 46.06304900000009) (-60.65193899999997 46.06388099999998) (-60.65610499999997 46.06777200000005) (-60.65638699999994 46.07305100000002) (-60.652495999999985 46.079436999999984) (-60.63833599999987 46.093048000000124) (-60.45610799999997 46.24137900000005) (-60.404998999999975 46.27999100000005) (-60.399726999999984 46.28388200000012) (-60.388892999999996 46.291106999999954) (-60.35972599999997 46.30499300000014) (-60.347778000000005 46.310546999999985) (-60.285278000000005 46.32138100000003) (-60.205558999999994 46.240273) (-60.13805400000001 46.246658000000025) (-60.13194299999992 46.248604000000114) (-60.124168 46.248604000000114) (-60.09999799999997 46.24638400000009) (-60.091666999999916 46.24471300000005) (-59.9505539999999 46.20138500000007) (-59.873054999999965 46.17582699999997) (-59.808608999999876 46.111938000000066) (-59.80972300000002 46.10638400000005) (-59.81944999999996 46.09721400000001) (-59.83416699999998 46.08471700000001) (-59.853888999999924 46.00249500000001) (-59.840553 45.93832400000002) (-59.95861099999996 45.90165700000006) (-60.13027999999997 45.86776700000013) (-60.13611599999996 45.86499799999996) (-60.155272999999966 45.84665699999999) (-60.15943899999996 45.841102999999976) (-60.160552999999936 45.835548000000074) (-60.17444599999999 45.76388500000013) (-60.22916399999997 45.70555100000013) (-60.233886999999925 45.70110299999993) (-60.245834 45.69499200000007) (-60.37972300000001 45.644997000000046) (-60.39222699999999 45.64110599999998) (-60.411666999999966 45.636940000000095) (-60.49888599999997 45.62026999999995) (-60.513061999999934 45.61888099999999) (-60.55750299999994 45.61804999999998) (-60.765556000000004 45.5949940000001) (-60.96083099999993 45.59943399999992) (-61.101669000000015 45.564437999999996) (-61.14833799999991 45.55526700000007) (-61.168334999999956 45.5513840000001) (-61.19691799999998 45.58374000000009) (-61.21869699999996 45.5807880000001) (-61.237521999999956 45.58152800000005) (-61.273056 45.561935000000005) (-61.336945000000014 45.57332600000001) (-61.37557599999991 45.62213100000014) (-61.430556999999965 45.66554300000007) (-61.45471999999995 45.70555100000013) (-61.45750399999997 45.71527100000003) (-61.478049999999996 45.80387900000011) (-61.49472000000003 45.84638199999995) (-61.527495999999985 45.98943300000002) (-61.455558999999994 46.13749700000005) (-61.447776999999974 46.14943699999998) (-61.43888899999996 46.159430999999984) (-61.41277299999996 46.178329000000076) (-61.39083900000003 46.191376000000105) (-61.37388599999997 46.20082900000011) (-61.34332999999992 46.21249399999999) (-61.30555700000002 46.22499099999999) (-61.29389200000003 46.230819999999994) (-61.28333299999997 46.23888400000004) (-61.09722099999999 46.44609800000012) (-61.08943899999991 46.45804600000014) (-61.035278000000005 46.55554999999998) (-61.033057999999926 46.56166100000007) (-61.031113000000005 46.57276900000005) (-61.032501000000025 46.57749200000006) (-60.99694799999992 46.63472000000007) (-60.89222699999999 46.77388000000002) (-60.87361099999987 46.79305299999993) (-60.86361699999992 46.80138400000004) (-60.84027900000001 46.81360599999999) (-60.833884999999896 46.81554399999993) (-60.80555700000002 46.82027399999998) (-60.79389200000003 46.825271999999984) (-60.724716 46.874992000000134) (-60.714721999999995 46.88249200000007) (-60.70444499999991 46.89138000000003) (-60.69527399999993 46.901657) (-60.68666099999996 46.912491000000045) (-60.67833699999994 46.93082400000014) (-60.67055499999998 46.953606000000036) (-60.664444 46.96610300000003) (-60.65694400000001 46.97860000000003) (-60.64028200000001 47) (-60.60916900000001 47.02443700000009) (-60.59777799999989 47.031105000000025) (-60.59194200000002 47.03333300000003) (-60.58332799999994 47.031661999999926) (-60.46083099999987 46.999161000000015) (-60.427498000000014 46.96582799999999) (-60.493889000000024 46.90221400000007) (-60.49805500000002 46.89666000000011) (-60.45222499999994 46.864441000000056) (-60.44527399999998 46.86166400000013)) ((-64.03971899999999 46.74332400000009) (-64.031677 46.742767000000015) (-64.01640299999991 46.743607000000054) (-64.00917099999998 46.74415600000003) (-64.00500499999998 46.74971800000014) (-63.99999999999994 46.75360900000004) (-63.991668999999945 46.75305200000014) (-63.97916399999991 46.74638399999998) (-63.974715999999944 46.74249300000008) (-63.83250399999997 46.61721000000006) (-63.83167300000002 46.61193800000012) (-63.86500499999988 46.537498000000085) (-63.86888899999997 46.531937000000084) (-63.840836000000024 46.46443899999991) (-63.82833900000003 46.45804600000014) (-63.780281 46.44499200000007) (-63.74222600000002 46.43943000000013) (-63.73305499999998 46.43888100000004) (-63.709442000000024 46.43749200000002) (-63.703888000000006 46.4405440000001) (-63.698050999999964 46.45638300000007) (-63.69860799999998 46.46166200000005) (-63.70027900000002 46.466385) (-63.72277100000002 46.48054500000012) (-63.73805199999998 46.491378999999995) (-63.739998000000014 46.49610100000007) (-63.723327999999924 46.54361000000006) (-63.716110000000015 46.55387900000011) (-63.709723999999994 46.55609900000013) (-63.676391999999964 46.56415600000008) (-63.662216 46.56638299999997) (-63.64722399999988 46.56721500000009) (-63.618889000000024 46.561104) (-63.49777999999998 46.52777100000014) (-63.315001999999936 46.48860200000007) (-63.27197999999993 46.426926000000094) (-63.240661999999986 46.420456) (-63.21639299999998 46.41220900000013) (-62.94277199999988 46.42694100000011) (-62.862777999999935 46.4347150000001) (-62.69860799999998 46.45249200000001) (-62.692497 46.456100000000106) (-62.686385999999914 46.457497000000046) (-62.66583300000002 46.461104999999975) (-62.595001000000025 46.47082500000005) (-62.47721899999999 46.477768000000026) (-62.455558999999994 46.47860000000014) (-62.182503 46.48582499999998) (-62.16638899999998 46.48610700000006) (-62.13333099999994 46.482764999999915) (-62.058051999999975 46.472762999999986) (-62.01472499999994 46.46527100000003) (-61.979720999999984 46.45915999999994) (-61.970551 46.456940000000145) (-61.965003999999965 46.45332300000001) (-61.968886999999995 46.447768999999994) (-61.97360999999995 46.44304700000009) (-62.01306199999999 46.42110400000013) (-62.101112 46.37971500000003) (-62.17333199999996 46.349433999999974) (-62.21555299999994 46.34360500000014) (-62.27972399999993 46.33804300000003) (-62.309166000000005 46.349998000000085) (-62.326392999999996 46.354996000000085) (-62.34277300000002 46.356102000000135) (-62.357779999999934 46.35582700000009) (-62.355834999999956 46.35083000000003) (-62.34805299999999 46.33221400000002) (-62.334723999999994 46.31193500000006) (-62.36194599999993 46.27665700000006) (-62.419448999999986 46.21998600000012) (-62.42472099999998 46.215546000000074) (-62.453888000000006 46.21443899999997) (-62.50750699999992 46.214157000000114) (-62.603888999999924 46.18249500000013) (-62.603888999999924 46.17721599999999) (-62.54222900000002 46.12249000000003) (-62.50750699999992 46.118881000000044) (-62.5 46.11915600000009) (-62.47833300000002 46.12082700000013) (-62.47721899999999 46.126380999999924) (-62.478882 46.13193500000011) (-62.481667000000016 46.13638300000008) (-62.489998000000014 46.138329) (-62.49722299999996 46.13804600000003) (-62.506110999999976 46.139717000000076) (-62.513892999999996 46.142220000000066) (-62.509727 46.14860500000003) (-62.504448000000025 46.150825999999995) (-62.48916600000001 46.151382000000126) (-62.47305299999999 46.150269000000094) (-62.468886999999995 46.14610299999998) (-62.44916499999994 46.100548) (-62.44749499999995 46.095543000000134) (-62.44694500000003 46.09054600000002) (-62.45472000000001 46.01888300000007) (-62.45916699999998 46.00638600000008) (-62.47360999999995 45.994713000000104) (-62.496947999999975 45.983879) (-62.51000199999993 45.979156000000046) (-62.54167199999995 45.97054300000008) (-62.54861499999993 45.96943700000003) (-62.59166700000003 45.9649960000001) (-62.613891999999964 45.96276900000004) (-62.65027600000002 45.96027400000003) (-62.76111599999996 45.95416299999994) (-62.83777600000002 45.96749099999994) (-62.856667000000016 45.977486000000056) (-62.88277399999998 45.99554400000011) (-62.93028300000003 46.037215999999944) (-62.97083299999997 46.07416500000005) (-62.922500999999954 46.09249100000005) (-62.917220999999984 46.09638200000012) (-62.87527499999993 46.134995) (-62.871940999999936 46.14360799999997) (-62.885276999999974 46.155823000000055) (-62.89083900000003 46.159430999999984) (-63.02527600000002 46.18915600000008) (-63.10361499999999 46.201934999999935) (-63.11277799999999 46.20416300000011) (-63.11944599999987 46.207214000000135) (-63.12222300000002 46.2116620000001) (-63.12027699999999 46.2177660000001) (-63.11583699999994 46.222488) (-63.038895000000025 46.28027300000008) (-63.02416999999997 46.29027599999995) (-63.017776000000026 46.29249600000014) (-63.01028400000001 46.292770000000075) (-63.002228 46.28999299999998) (-62.99610899999999 46.292220999999984) (-62.97943899999996 46.30165899999997) (-62.96916199999998 46.309432999999956) (-62.96472199999988 46.31415600000014) (-62.96277599999996 46.31999200000001) (-62.96944399999995 46.31888600000002) (-63.03527799999989 46.30165899999997) (-63.04138899999998 46.299721000000034) (-63.05277999999993 46.29388400000005) (-63.05860899999993 46.29083300000002) (-63.090836000000024 46.26915699999995) (-63.16500100000002 46.210548000000074) (-63.143332999999984 46.20166000000012) (-63.139167999999984 46.19776900000005) (-63.13861099999991 46.19249000000008) (-63.140556000000004 46.186378000000104) (-63.22444200000001 46.139717000000076) (-63.23860899999994 46.13804600000003) (-63.253615999999965 46.13749700000005) (-63.26167299999986 46.13804600000003) (-63.289169000000015 46.14388299999996) (-63.40916399999992 46.176941) (-63.519722 46.206099999999935) (-63.59194200000002 46.21193700000009) (-63.64277599999991 46.22499099999999) (-63.64972699999993 46.22804300000007) (-63.69972200000001 46.25943799999999) (-63.700553999999954 46.269989000000066) (-63.702225 46.27526899999998) (-63.70666499999993 46.27860299999992) (-63.741942999999935 46.30443600000007) (-63.75444799999997 46.310822000000144) (-63.811110999999926 46.32749200000012) (-63.77222399999994 46.36082500000009) (-63.73694599999993 46.35388200000011) (-63.72916399999997 46.35277600000006) (-63.714721999999995 46.354164000000026) (-63.73916600000001 46.391106000000036) (-63.745003 46.394714000000135) (-63.75444799999997 46.39638500000001) (-63.76167299999992 46.39666) (-63.84110999999996 46.39888000000002) (-63.963615000000004 46.40110000000004) (-63.981941000000006 46.39388300000013) (-63.9891659999999 46.393608000000086) (-64.12193300000001 46.404709000000025) (-64.12998999999996 46.40721100000013) (-64.13305700000001 46.4116590000001) (-64.13500999999991 46.416382000000056) (-64.13305700000001 46.43332700000002) (-64.11582899999996 46.52304800000002) (-64.11332699999997 46.53472099999999) (-64.11000099999995 46.541107000000125) (-64.10555999999997 46.54583000000008) (-64.10028099999988 46.54972099999998) (-64.09416199999993 46.551659000000086) (-64.10555999999997 46.618050000000096) (-64.27389499999998 46.62332200000003) (-64.38751199999996 46.62082700000002) (-64.39195299999994 46.624709999999936) (-64.41389500000002 46.6658250000001) (-64.41555800000003 46.670547) (-64.41665599999993 46.68110699999994) (-64.41471899999999 46.69776900000011) (-64.41027799999995 46.71110500000009) (-64.40028399999994 46.72748600000011) (-64.38249200000001 46.74665800000008) (-64.34695399999998 46.77360500000003) (-64.32389799999993 46.786384999999996) (-64.29638699999998 46.80165900000003) (-64.28611799999993 46.80943300000007) (-64.27305599999994 46.82360799999998) (-64.24972499999996 46.86805000000004) (-64.24777199999994 46.87416100000013) (-64.2472229999999 46.879714999999976) (-64.24388099999999 46.88610800000009) (-64.23638900000003 46.897491000000116) (-64.22694399999995 46.906097000000045) (-64.18277 46.945541000000105) (-64.16861 46.956657000000064) (-64.02084400000001 47.03860500000013) (-63.99500299999994 46.984161000000086) (-63.969993999999986 46.901657) (-63.96749899999986 46.891662999999994) (-64.041382 46.82249500000006) (-64.06610099999995 46.80443600000012) (-64.07640100000003 46.79888199999999) (-64.09167499999995 46.77860300000003) (-64.07749899999993 46.756386000000134) (-64.07444800000002 46.75222000000002) (-64.06750499999993 46.74916100000007) (-64.03971899999999 46.74332400000009)) ((-55.87610599999999 47.26055100000002) (-55.96832999999987 47.25777399999993) (-55.94638800000001 47.27332300000006) (-55.934440999999936 47.279434000000094) (-55.89500399999997 47.29083300000002) (-55.888053999999954 47.29249600000014) (-55.881110999999976 47.29332699999998) (-55.872772 47.2922210000001) (-55.865836999999885 47.28777300000013) (-55.85500300000001 47.26971400000002) (-55.87610599999999 47.26055100000002)) ((-61.38055400000002 47.62027000000012) (-61.49305700000002 47.55249000000009) (-61.498610999999926 47.55027000000007) (-61.53556099999997 47.54583000000008) (-61.54222900000002 47.54554700000011) (-61.54778299999987 47.549164000000076) (-61.54944599999999 47.55387900000011) (-61.54527999999999 47.55943300000007) (-61.520279000000016 47.56916000000001) (-61.51389299999994 47.57249500000012) (-61.477492999999924 47.60054800000006) (-61.47361000000001 47.6055530000001) (-61.471382000000006 47.611382000000106) (-61.470551 47.61693600000012) (-61.47916399999997 47.61859900000002) (-61.534447 47.6188810000001) (-61.541945999999996 47.61721000000006) (-61.55944099999999 47.60916100000003) (-61.653610000000015 47.54999500000008) (-61.85555999999997 47.41721300000006) (-61.84972399999998 47.41360500000013) (-61.84166700000003 47.410820000000115) (-61.83361100000002 47.409988) (-61.789169000000015 47.42582700000008) (-61.777221999999995 47.43166400000007) (-61.76666299999994 47.439156000000025) (-61.71444700000001 47.48998999999998) (-61.69138299999997 47.515548999999965) (-61.70139299999994 47.49193600000007) (-61.74083699999994 47.44499200000007) (-61.84332999999992 47.388603000000046) (-61.90589099999994 47.35493500000001) (-61.92527799999999 47.34360500000014) (-61.93332700000002 47.33332799999994) (-61.96277600000002 47.2816620000001) (-61.965003999999965 47.27555100000001) (-61.964721999999995 47.27027100000009) (-61.961945000000014 47.26610600000009) (-61.95750399999997 47.26194000000004) (-61.93860599999999 47.257217000000026) (-61.82778200000001 47.23416100000003) (-61.81945000000002 47.233330000000024) (-61.80777699999999 47.23915900000003) (-61.79944599999999 47.25027499999993) (-61.79472399999992 47.254714999999976) (-61.78305799999987 47.26055100000002) (-61.782775999999956 47.25527200000005) (-61.789725999999916 47.242493000000024) (-61.79389200000003 47.23693800000012) (-61.79944599999999 47.23276499999997) (-61.81027999999998 47.22665400000005) (-61.816948000000025 47.224709000000075) (-61.84444400000001 47.21943699999997) (-61.85944399999988 47.21804799999995) (-61.955276000000026 47.21166200000005) (-61.97999599999997 47.213608000000136) (-61.9963909999999 47.21499600000004) (-62.004722999999956 47.2177660000001) (-62.01000199999987 47.22137500000008) (-62.01306199999999 47.225821999999994) (-62.01472499999994 47.23054500000012) (-62.01500699999991 47.235825000000034) (-62.01306199999999 47.24166100000008) (-61.94860799999998 47.37943299999995) (-61.94166599999994 47.39221999999995) (-61.93749999999994 47.39777400000014) (-61.92805499999997 47.407211000000075) (-61.92222599999997 47.409988) (-61.90888999999993 47.413879000000065) (-61.736114999999984 47.50721699999997) (-61.705832999999984 47.5324940000001) (-61.684440999999936 47.547492999999974) (-61.662216 47.56166100000007) (-61.61694299999999 47.588042999999914) (-61.57111400000002 47.613609) (-61.55361199999999 47.623046999999985) (-61.53583500000002 47.631659999999954) (-61.52916700000003 47.63360600000004) (-61.52111099999996 47.63443799999999) (-61.42527799999999 47.642769000000044) (-61.407775999999956 47.64110599999992) (-61.388892999999996 47.637771999999984) (-61.38194299999992 47.63443799999999) (-61.377776999999924 47.63110399999999) (-61.37610599999999 47.62638099999998) (-61.38055400000002 47.62027000000012)) ((-54.261391 47.39027400000009) (-54.26889 47.38971700000002) (-54.29305999999997 47.39166300000005) (-54.341385 47.398048000000074) (-54.35805499999998 47.403046000000074) (-54.36444899999998 47.406654) (-54.365554999999915 47.41165900000004) (-54.35972600000002 47.41666400000008) (-54.326392999999996 47.436653000000035) (-54.29527999999999 47.44999700000011) (-54.278053 47.46082300000006) (-54.26722000000001 47.469437000000084) (-54.26222200000001 47.47470900000002) (-54.25778199999996 47.48082000000011) (-54.230552999999986 47.52360500000003) (-54.22999600000003 47.55027000000007) (-54.20471999999995 47.59360500000008) (-54.13527699999986 47.66805300000004) (-54.12888299999997 47.670547) (-54.122772 47.66693900000007) (-54.12194099999999 47.66193400000003) (-54.12222299999996 47.656937000000084) (-54.12499999999994 47.640831000000105) (-54.16082799999998 47.534996000000035) (-54.23889200000002 47.40387700000008) (-54.24333199999995 47.39943700000009) (-54.25500499999998 47.3927690000001) (-54.261391 47.39027400000009)) ((-54.07749899999999 47.47943100000009) (-54.08306099999993 47.4749910000001) (-54.09305599999993 47.483047) (-54.096663999999976 47.487213000000054) (-54.101112 47.496384000000035) (-54.101944 47.501389000000074) (-54.099723999999924 47.55888399999998) (-54.09833500000002 47.589714000000015) (-54.097220999999934 47.60527000000013) (-54.09332999999998 47.631659999999954) (-54.08361099999996 47.67971799999992) (-54.07861299999996 47.68499000000003) (-54.07138800000001 47.68554699999993) (-54.06750499999998 47.68110700000011) (-54.06055500000002 47.651099999999985) (-54.078056000000004 47.56388100000004) (-54.05972300000002 47.53221100000013) (-54.05889100000002 47.52721400000007) (-54.07749899999999 47.47943100000009)) ((-55.90193899999986 47.60249300000004) (-55.92305799999991 47.59943400000009) (-55.947220000000016 47.60193600000014) (-56.01333599999998 47.61166400000002) (-56.097778000000005 47.62748700000003) (-56.105559999999855 47.630821000000026) (-56.10916900000001 47.63499500000006) (-56.11361699999998 47.64471400000002) (-56.11222099999998 47.64971900000012) (-56.10666699999996 47.65470900000014) (-56.10028099999994 47.65721100000002) (-56.00583599999999 47.680274999999995) (-55.94110899999998 47.68915600000014) (-55.93388399999998 47.68832400000002) (-55.92861199999993 47.684432999999956) (-55.927498000000014 47.67665899999997) (-55.934440999999936 47.65888200000012) (-55.934440999999936 47.65387700000002) (-55.932503 47.64388300000002) (-55.93000000000001 47.63943500000005) (-55.92639200000002 47.635268999999994) (-55.914161999999976 47.628326000000015) (-55.88944200000003 47.6188810000001) (-55.87638899999996 47.61166400000002) (-55.882499999999936 47.60777300000012) (-55.90193899999986 47.60249300000004)) ((-64.48277300000001 47.91777000000002) (-64.50167799999997 47.85638400000005) (-64.50361599999991 47.850273000000016) (-64.514725 47.832497000000046) (-64.523056 47.822220000000016) (-64.54110699999995 47.80332199999998) (-64.60499599999997 47.748329000000126) (-64.61054999999999 47.745270000000005) (-64.63583399999999 47.73582500000009) (-64.64750700000002 47.733879) (-64.69055199999997 47.75305200000014) (-64.69332899999995 47.75804900000003) (-64.70278899999994 47.82360799999998) (-64.697769 47.83610499999992) (-64.68554699999999 47.85221900000005) (-64.66749600000003 47.86693600000007) (-64.66221599999994 47.87082700000013) (-64.62416099999996 47.88471999999996) (-64.61776700000001 47.886658000000125) (-64.60916099999997 47.88693999999998) (-64.58416699999992 47.884995) (-64.50805700000001 47.90387700000002) (-64.48277300000001 47.91777000000002)) ((-64.56750499999993 47.89943699999998) (-64.57444800000002 47.89804799999996) (-64.58361799999989 47.89943699999998) (-64.589447 47.90277100000014) (-64.593887 47.90665400000006) (-64.59445199999993 47.911933999999974) (-64.59361299999989 47.918052999999986) (-64.531677 48.01610599999998) (-64.52694699999995 48.02165999999994) (-64.52278099999995 48.02555100000001) (-64.51695299999994 48.028602999999976) (-64.50973499999992 48.02999100000005) (-64.50111400000003 48.027488999999946) (-64.49554399999994 48.02388000000013) (-64.4908289999999 48.019989000000066) (-64.48582499999992 48.01305400000001) (-64.48277300000001 48.00860600000004) (-64.46972699999998 47.96971100000013) (-64.46916199999987 47.96443899999997) (-64.47055099999994 47.95332300000007) (-64.47444200000001 47.94776900000005) (-64.49638399999998 47.933876) (-64.51390100000003 47.924713) (-64.56750499999993 47.89943699999998)) ((-53.71277599999996 48.14888000000002) (-53.68972000000002 48.147217000000126) (-53.682503 48.14777400000003) (-53.66750300000001 48.15054299999997) (-53.64778100000001 48.155265999999926) (-53.615554999999915 48.16749600000003) (-53.583327999999995 48.18082400000003) (-53.57111399999991 48.186104000000114) (-53.56416299999995 48.19054399999993) (-53.55305499999997 48.19915800000001) (-53.539444 48.20221700000013) (-53.53167000000002 48.20277400000003) (-53.516395999999986 48.201935000000105) (-53.50972699999994 48.198326000000066) (-53.50917099999987 48.193321000000026) (-53.51083399999999 48.15082600000011) (-53.51250499999992 48.14527100000004) (-53.53082999999992 48.09777100000002) (-53.53639199999998 48.093323000000055) (-53.54944599999999 48.0886000000001) (-53.56361400000003 48.084991000000116) (-53.598884999999996 48.0794370000001) (-53.634170999999924 48.0752720000001) (-53.82333399999993 48.09276599999998) (-53.83943899999997 48.094437000000084) (-53.85611 48.098044999999956) (-53.871940999999936 48.10471300000012) (-53.87666300000001 48.108604000000014) (-53.93250299999994 48.17276799999996) (-53.93582900000001 48.18249500000013) (-53.93277699999999 48.198326000000066) (-53.929168999999945 48.209434999999985) (-53.92222599999997 48.212493999999936) (-53.90638699999994 48.21027400000014) (-53.89888799999994 48.20665700000001) (-53.860000999999954 48.17443800000012) (-53.85555999999997 48.169991000000095) (-53.71277599999996 48.14888000000002)) ((-123.47444200000001 48.709160000000054) (-123.48277300000001 48.70832800000011) (-123.48999000000003 48.70943500000004) (-123.51306199999993 48.716385000000116) (-123.52471899999989 48.722488000000055) (-123.54943800000001 48.74665800000008) (-123.551941 48.75222000000002) (-123.59277299999991 48.8983310000001) (-123.595551 48.90971400000012) (-123.59612299999998 48.928329000000076) (-123.59665699999994 48.946938000000046) (-123.59361299999995 48.94721199999998) (-123.58056599999992 48.93554700000004) (-123.57721699999996 48.929161000000136) (-123.53611799999999 48.914993000000095) (-123.53028899999998 48.911933999999974) (-123.45749699999993 48.86305200000004) (-123.43388400000003 48.844437000000084) (-123.37027 48.768326) (-123.36888099999993 48.762771999999984) (-123.37165800000002 48.75750000000005) (-123.37638900000002 48.75360899999998) (-123.43195300000002 48.72109999999998) (-123.47444200000001 48.709160000000054)) ((-58.34222399999999 49.06610100000012) (-58.349166999999966 49.064437999999996) (-58.356109999999944 49.06582600000013) (-58.35194399999989 49.0719380000001) (-58.341385 49.07638500000013) (-58.33361100000002 49.07777399999998) (-58.330558999999994 49.07332600000001) (-58.33583099999993 49.068885999999964) (-58.34222399999999 49.06610100000012)) ((-123.32277699999997 48.861107000000004) (-123.3705369999999 48.85638400000005) (-123.37888299999997 48.85694100000012) (-123.38474299999996 48.85999300000003) (-123.54055799999998 48.94499200000013) (-123.66251399999999 49.03527100000008) (-123.703888 49.09526800000003) (-123.70527599999997 49.10027300000007) (-123.70249899999999 49.105552999999986) (-123.695831 49.10804700000011) (-123.686394 49.106659000000036) (-123.68055700000002 49.10360700000007) (-123.674713 49.09304800000007) (-123.65943900000002 49.073608000000036) (-123.60444599999994 49.01471700000013) (-123.58640300000002 49.00054900000009) (-123.52166699999998 48.96027400000014) (-123.49916099999996 48.94721199999998) (-123.487503 48.94110100000006) (-123.45973200000003 48.93054999999998) (-123.43639399999995 48.92443800000001) (-123.42027299999995 48.92054700000011) (-123.38194299999992 48.910819999999944) (-123.32833900000003 48.89582799999994) (-123.32250999999991 48.89276899999999) (-123.31777999999997 48.88888500000013) (-123.31276700000001 48.87276500000007) (-123.3125 48.86805000000004) (-123.31639100000001 48.86332700000003) (-123.32277699999997 48.861107000000004)) ((-125.816101 49.12582400000014) (-125.82028200000002 49.12470999999999) (-125.86028299999998 49.134438000000046) (-125.906387 49.160820000000115) (-125.910278 49.16554300000007) (-125.92582699999991 49.190826000000015) (-125.93360899999993 49.21110499999992) (-125.93306000000001 49.218048000000124) (-125.93055700000002 49.21998600000006) (-125.92610200000001 49.22332000000006) (-125.87888299999992 49.23582499999998) (-125.86749299999997 49.23333000000014) (-125.82917800000001 49.22637900000001) (-125.81806899999987 49.220543000000134) (-125.79915599999998 49.20832800000005) (-125.78888699999993 49.17276800000013) (-125.79583699999995 49.1519320000001) (-125.79833999999994 49.14638500000001) (-125.81249999999994 49.12915800000013) (-125.816101 49.12582400000014)) ((-126.13194299999992 49.393325999999945) (-126.126938 49.39027400000003) (-126.12471 49.39027400000003) (-126.12053699999996 49.38860299999999) (-126.11054999999999 49.38221000000004) (-126.10665899999992 49.378601) (-126.09612300000003 49.368599000000074) (-126.08640300000002 49.35860400000013) (-126.07277699999997 49.34304800000001) (-126.0497279999999 49.265548999999965) (-126.0511019999999 49.260550999999964) (-126.05583200000001 49.25610400000011) (-126.06471299999987 49.250832) (-126.071121 49.24832900000001) (-126.07972699999999 49.24665800000014) (-126.0891719999999 49.24610100000007) (-126.09638999999999 49.24721500000004) (-126.18666100000002 49.263329) (-126.19167299999992 49.265548999999965) (-126.22332799999992 49.27971600000012) (-126.22944599999994 49.28249399999993) (-126.23916600000001 49.28971899999999) (-126.23473399999995 49.374161000000015) (-126.229172 49.378601) (-126.22138999999999 49.38054700000009) (-126.141388 49.39415699999995) (-126.13194299999992 49.393325999999945)) ((-123.37943999999999 49.326941999999974) (-123.39222699999999 49.326103000000046) (-123.41027799999995 49.33416) (-123.42194399999994 49.339714000000015) (-123.42666600000001 49.344154) (-123.42804699999999 49.348877000000016) (-123.42027299999995 49.38166000000001) (-123.41332999999997 49.38610799999998) (-123.3600009999999 49.411658999999986) (-123.35472099999998 49.41332200000011) (-123.327789 49.41666400000008) (-123.31696299999999 49.41749600000014) (-123.31221 49.41499299999998) (-123.30943300000001 49.41137700000013) (-123.31027199999994 49.40526600000004) (-123.31194299999993 49.401932000000045) (-123.327789 49.363052000000096) (-123.33112299999999 49.35499600000003) (-123.34472699999998 49.34193400000004) (-123.36833199999995 49.33027599999997) (-123.37943999999999 49.326941999999974)) ((-54.705276000000026 49.400543000000084) (-54.71277600000002 49.398330999999985) (-54.730278 49.40304600000002) (-54.73555799999997 49.40721100000002) (-54.75972699999994 49.43249500000002) (-54.75917099999998 49.43776699999995) (-54.75472300000001 49.44387800000004) (-54.74944299999993 49.449158000000125) (-54.73833499999995 49.45777100000009) (-54.68055699999991 49.49193600000001) (-54.67305799999991 49.49249300000008) (-54.66500100000002 49.489159000000086) (-54.64416499999999 49.47332) (-54.64028199999996 49.46915400000006) (-54.64083899999997 49.463881999999955) (-54.65471600000001 49.460823000000005) (-54.68444099999999 49.420547) (-54.699164999999994 49.40387700000008) (-54.705276000000026 49.400543000000084)) ((-124.179169 49.44110100000012) (-124.18554699999999 49.439986999999974) (-124.313606 49.45609999999999) (-124.32668299999995 49.460823000000005) (-124.36000099999995 49.474433999999974) (-124.36609599999997 49.477486000000056) (-124.37082699999996 49.481102000000135) (-124.37165799999997 49.48304700000011) (-124.38054699999998 49.506943000000035) (-124.38110399999994 49.511940000000095) (-124.37832599999996 49.51583099999999) (-124.37165799999997 49.518326) (-124.361107 49.519157000000064) (-124.35500299999995 49.51749400000011) (-124.34889199999998 49.51444200000003) (-124.30471799999992 49.51221499999997) (-124.24471999999997 49.50138900000002) (-124.23750299999995 49.498329000000126) (-124.22138999999993 49.49137900000011) (-124.1875 49.474433999999974) (-124.181671 49.47137500000002) (-124.17388900000003 49.45638299999996) (-124.17194399999994 49.446655000000135) (-124.17223399999989 49.444153000000085) (-124.179169 49.44110100000012)) ((-123.33277899999996 49.44110100000012) (-123.36028299999987 49.43305199999992) (-123.37499999999994 49.43332700000013) (-123.442207 49.43859900000007) (-123.448036 49.44165800000002) (-123.45944199999997 49.46720900000008) (-123.45973200000003 49.47054300000008) (-123.45305599999995 49.49554400000011) (-123.44526699999994 49.51527400000009) (-123.43666100000002 49.52221700000007) (-123.38082899999995 49.53611000000012) (-123.37000299999994 49.53611000000012) (-123.360817 49.53499599999998) (-123.3550029999999 49.53193699999997) (-123.33833300000003 49.50610400000005) (-123.33167999999995 49.500832000000116) (-123.32805599999995 49.49638399999998) (-123.32389799999993 49.488602000000014) (-123.319458 49.47470899999996) (-123.31777999999997 49.464157) (-123.319458 49.45193499999999) (-123.32224300000001 49.448043999999925) (-123.32695000000001 49.444153000000085) (-123.33277899999996 49.44110100000012)) ((-55.69554899999997 49.506943000000035) (-55.72582999999997 49.50555400000002) (-55.732497999999964 49.509163) (-55.73500100000001 49.51361099999997) (-55.736114999999984 49.518599999999935) (-55.735832000000016 49.52388000000002) (-55.73027799999994 49.545547000000056) (-55.72277100000002 49.55777000000012) (-55.716110000000015 49.560272) (-55.68499800000001 49.561104000000114) (-55.67694899999998 49.561104000000114) (-55.65833299999997 49.559158000000025) (-55.653052999999886 49.55526700000013) (-55.65222199999994 49.55027000000007) (-55.653885 49.54471600000005) (-55.66138499999994 49.529716000000064) (-55.664444 49.52388000000002) (-55.68111399999998 49.51082600000012) (-55.68749999999994 49.50804900000003) (-55.69554899999997 49.506943000000035)) ((-124.68943799999994 49.48027000000002) (-124.69611399999997 49.47776799999997) (-124.70221700000002 49.47804299999996) (-124.74137899999994 49.48804500000011) (-124.75361599999991 49.49137900000011) (-124.82362399999994 49.53943599999997) (-124.83666999999997 49.554993000000024) (-124.84111000000001 49.56276700000001) (-124.84249899999992 49.57860599999998) (-124.84194899999989 49.58415999999994) (-124.83416699999992 49.607773000000066) (-124.83168 49.61054999999999) (-124.82749899999993 49.60888700000004) (-124.81054699999993 49.58971400000013) (-124.80888400000003 49.58665500000001) (-124.80583200000001 49.58582300000006) (-124.77887699999997 49.56888600000008) (-124.68804899999986 49.483604000000014) (-124.68943799999994 49.48027000000002)) ((-55.69305399999996 49.56749700000006) (-55.70916699999998 49.56638300000009) (-55.71665999999993 49.567214999999976) (-55.72083299999997 49.57138100000009) (-55.72305299999999 49.57610299999999) (-55.72277100000002 49.58138300000007) (-55.70583299999993 49.613883999999985) (-55.68499800000001 49.624992000000134) (-55.673888999999974 49.630547000000035) (-55.659720999999934 49.63555100000002) (-55.653052999999886 49.63638300000008) (-55.572776999999974 49.603882) (-55.567504999999926 49.59999800000014) (-55.573058999999944 49.595543000000134) (-55.58638799999994 49.59137700000008) (-55.60805499999998 49.586104999999975) (-55.67166900000001 49.57138100000009) (-55.69305399999996 49.56749700000006)) ((-54.576667999999984 49.558601000000124) (-54.77305599999994 49.49388099999999) (-54.80944099999999 49.48804500000011) (-54.83916499999998 49.48443600000013) (-54.85583500000001 49.48443600000013) (-54.86306000000002 49.48526800000002) (-54.871940999999936 49.48749500000008) (-54.87305500000002 49.49221800000009) (-54.89361600000001 49.58055100000013) (-54.894447000000014 49.58526599999999) (-54.89194500000002 49.590546000000074) (-54.885276999999974 49.593048000000124) (-54.805556999999965 49.59582500000005) (-54.79222899999996 49.572768999999994) (-54.79333500000001 49.56693999999999) (-54.79167199999989 49.56249200000002) (-54.78833800000001 49.55777000000012) (-54.78417200000001 49.554161000000136) (-54.76860799999997 49.54666100000003) (-54.760001999999986 49.545547000000056) (-54.743889000000024 49.544998000000135) (-54.729720999999984 49.548050000000046) (-54.70861100000002 49.55443600000012) (-54.61472299999997 49.60610200000002) (-54.57472200000001 49.63526900000011) (-54.56194299999993 49.65360300000009) (-54.54888900000003 49.659988000000055) (-54.53611799999993 49.664153999999996) (-54.52972399999999 49.63388100000003) (-54.53166999999996 49.62221500000004) (-54.538054999999986 49.587494000000106) (-54.543334999999956 49.582497000000046) (-54.57055700000001 49.562209999999936) (-54.576667999999984 49.558601000000124)) ((-54.004448000000025 49.647491000000116) (-54.25778199999996 49.566666000000055) (-54.26583900000003 49.56693999999999) (-54.274719000000005 49.56916000000001) (-54.289444 49.57610299999999) (-54.29333500000001 49.58055100000013) (-54.29888899999992 49.60999300000009) (-54.29778299999998 49.6511000000001) (-54.28805499999993 49.71138000000002) (-54.282775999999956 49.716660000000104) (-54.26999699999999 49.722488) (-54.14194500000002 49.75) (-54.10222599999997 49.75027499999999) (-54.09388699999994 49.74887800000005) (-54.085830999999985 49.74554400000005) (-54.08111599999995 49.736381999999935) (-54.04000099999996 49.68998700000009) (-54.00305899999995 49.659988000000055) (-54.004448000000025 49.647491000000116)) ((-124.129707 49.650825999999995) (-124.139183 49.65054300000003) (-124.15361000000001 49.65554800000007) (-124.18694299999993 49.66888399999999) (-124.196663 49.676941) (-124.20195000000001 49.70193499999999) (-124.19943199999989 49.70609999999999) (-124.14750699999996 49.746658000000025) (-124.14277600000003 49.75) (-124.13722199999995 49.752219999999966) (-124.09166699999997 49.7677690000001) (-124.03611799999999 49.77721400000013) (-124.029449 49.7783280000001) (-124.021118 49.77777100000003) (-124.01611299999996 49.77555100000001) (-124.01862299999999 49.77165999999994) (-124.02555799999993 49.7677690000001) (-124.046112 49.75638600000008) (-124.06054699999999 49.74499500000013) (-124.07472200000001 49.733330000000024) (-124.090843 49.71554600000013) (-124.10109699999992 49.70027200000004) (-124.10555999999991 49.689430000000016) (-124.10722399999992 49.67721599999999) (-124.11081699999994 49.664992999999924) (-124.11361699999998 49.65971399999995) (-124.12304699999993 49.65193199999999) (-124.129707 49.650825999999995)) ((-56.80361199999993 49.763329000000056) (-56.82749899999999 49.76110799999998) (-56.83555599999994 49.762771999999984) (-56.83805099999995 49.767494000000056) (-56.832779000000016 49.771934999999985) (-56.826667999999984 49.77526899999998) (-56.79250300000001 49.78555299999999) (-56.782219 49.78694200000001) (-56.78194400000001 49.78082299999994) (-56.79084 49.768326) (-56.79666900000001 49.764999000000046) (-56.80361199999993 49.763329000000056)) ((-124.44611399999991 49.723320000000115) (-124.43749999999994 49.72304500000013) (-124.42887899999994 49.723877000000016) (-124.41000400000001 49.72304500000013) (-124.38137799999998 49.71332600000011) (-124.35138699999999 49.698044000000095) (-124.33277900000002 49.68332700000008) (-124.13474300000001 49.52526900000004) (-124.13221699999991 49.52027100000004) (-124.12416100000002 49.49916100000007) (-124.122772 49.493607000000054) (-124.12748699999997 49.48971599999999) (-124.13417099999992 49.48749500000008) (-124.14167799999996 49.48582500000009) (-124.14916999999997 49.486107000000004) (-124.15527299999985 49.488602000000014) (-124.281387 49.54666100000003) (-124.40583800000002 49.60582699999998) (-124.43804899999998 49.62887599999999) (-124.44220699999994 49.63804600000003) (-124.47666900000002 49.67193600000013) (-124.5396649999999 49.692768) (-124.55249799999996 49.69710500000002) (-124.56167599999998 49.69993599999992) (-124.61416600000001 49.713607999999965) (-124.62721299999993 49.71915400000006) (-124.65416699999997 49.73610700000012) (-124.66082799999992 49.74276700000013) (-124.65666199999993 49.79694399999994) (-124.65110800000002 49.79999500000014) (-124.61945300000002 49.79721800000004) (-124.604446 49.78943600000014) (-124.59944199999995 49.78443900000002) (-124.59028599999999 49.77165999999994) (-124.56234 49.753326000000015) (-124.55933399999998 49.751495000000034) (-124.49472000000003 49.733330000000024) (-124.44611399999991 49.723320000000115)) ((-126.67610199999996 49.58360300000004) (-126.68138099999993 49.58305400000012) (-126.68888899999996 49.583878000000084) (-126.69722000000002 49.585548000000074) (-126.78971899999999 49.61221300000011) (-126.80803699999996 49.61971299999999) (-126.81416299999995 49.62276500000007) (-126.90556300000003 49.6855470000001) (-126.96528599999999 49.72693599999997) (-126.96945199999999 49.73110200000008) (-126.97416699999991 49.740273) (-126.97556299999997 49.75) (-126.94055200000003 49.83138300000002) (-126.890556 49.84777100000008) (-126.79915599999993 49.87609900000001) (-126.77749599999993 49.87971500000009) (-126.76872299999997 49.87861600000008) (-126.74944299999999 49.85694100000012) (-126.73416099999997 49.84804500000001) (-126.67804699999994 49.8252720000001) (-126.64472999999992 49.77416200000005) (-126.636124 49.75943799999999) (-126.63445300000001 49.75388300000009) (-126.61332699999997 49.648330999999985) (-126.61609599999997 49.62443500000006) (-126.62053699999996 49.60610200000002) (-126.62416099999996 49.60138699999999) (-126.63305700000001 49.596100000000035) (-126.66861 49.585548000000074) (-126.67610199999996 49.58360300000004)) ((-62.08972199999988 49.38638300000014) (-62.08139 49.38555100000008) (-62.051665999999955 49.39027400000003) (-62.04361699999993 49.39054900000008) (-62.02527600000002 49.38749700000011) (-61.892226999999934 49.351387000000045) (-61.875557000000015 49.34499400000004) (-61.825835999999924 49.31220999999999) (-61.82111400000002 49.30888399999998) (-61.66332999999992 49.14916200000005) (-61.661666999999966 49.144439999999975) (-61.670837000000006 49.134163) (-61.70222499999994 49.111107000000004) (-61.73555799999997 49.09609999999998) (-61.79611199999994 49.078048999999965) (-62.01999699999999 49.069443000000035) (-62.02916700000003 49.069443000000035) (-62.19554900000003 49.07499700000005) (-62.36805700000002 49.0991590000001) (-62.72610500000002 49.154709000000025) (-62.782218999999884 49.165824999999984) (-62.946662999999944 49.19887499999999) (-63.089995999999985 49.228043000000014) (-63.097778000000005 49.23054500000012) (-63.209442000000024 49.270827999999995) (-63.23082699999992 49.28027300000002) (-63.24277499999994 49.287498000000085) (-63.25305900000001 49.294997999999964) (-63.26999699999999 49.311104) (-63.27583299999998 49.31471299999998) (-63.283332999999914 49.317771999999934) (-63.38722199999995 49.34388000000007) (-63.41694599999988 49.35082999999997) (-63.501296999999965 49.370384000000115) (-63.53722399999987 49.379714999999976) (-63.573058999999944 49.39666000000011) (-63.61611199999993 49.4469380000001) (-63.62194099999988 49.45555100000007) (-63.620833999999945 49.46110500000009) (-63.61666099999991 49.46665999999999) (-63.61333499999995 49.473044999999956) (-63.61250299999995 49.47887399999996) (-63.61611199999993 49.48832700000003) (-63.61972000000003 49.492767000000015) (-63.66277299999996 49.533051) (-63.67888599999992 49.54471600000005) (-63.71444699999989 49.56638300000009) (-63.84194199999996 49.639160000000004) (-63.88194299999998 49.65915700000005) (-63.918334999999956 49.67443800000001) (-64.01556399999987 49.70249200000006) (-64.30694599999993 49.777489) (-64.38221699999997 49.78943600000014) (-64.38999899999993 49.789719000000105) (-64.41833500000001 49.80165899999997) (-64.511124 49.858604000000014) (-64.51390100000003 49.863609000000054) (-64.51028399999996 49.86859900000013) (-64.50111400000003 49.87804399999999) (-64.49610899999988 49.883049000000085) (-64.4908289999999 49.886939999999925) (-64.472778 49.89582800000011) (-64.458618 49.90082600000011) (-64.44554099999999 49.90443400000004) (-64.22694399999995 49.948326000000066) (-64.20361300000002 49.950271999999984) (-64.14277599999997 49.94804400000004) (-64.13305700000001 49.94721200000009) (-64.12388599999997 49.945267000000115) (-64.02917500000001 49.92443800000012) (-63.95889299999993 49.89804800000013) (-63.61583699999994 49.849158999999986) (-63.545006 49.84332300000011) (-63.49222599999996 49.840828000000045) (-63.47527299999996 49.84054600000002) (-63.34694699999994 49.8202740000001) (-63.30972299999996 49.81388099999998) (-63.13611599999996 49.78082299999994) (-63.07444799999996 49.76416000000006) (-62.99610899999999 49.736656000000096) (-62.78666700000002 49.6763840000001) (-62.71055599999994 49.66082) (-62.54555499999998 49.59999800000014) (-62.44361099999992 49.5472180000001) (-62.340553 49.48693800000001) (-62.21221899999995 49.41443600000008) (-62.205832999999984 49.41137700000013) (-62.18888900000002 49.40582300000011) (-62.16916699999996 49.401099999999985) (-62.09916700000002 49.387771999999984) (-62.08972199999988 49.38638300000014)) ((-124.92415599999998 50.05860100000001) (-124.96861299999995 50.03582799999998) (-125.00055699999996 50.05665600000003) (-125.06304899999998 50.103324999999984) (-125.06696299999999 50.107498000000135) (-125.066101 50.11388400000004) (-125.0625 50.11832400000009) (-125.03971899999999 50.13054699999992) (-124.991669 50.16832700000003) (-124.98222399999992 50.17610200000013) (-124.98055999999991 50.18221299999999) (-124.98332199999999 50.225548) (-124.93138099999993 50.17110400000013) (-124.92859599999997 50.16610000000014) (-124.91528299999999 50.14138000000008) (-124.89778100000001 50.07749200000006) (-124.92415599999998 50.05860100000001)) ((-63.859443999999996 50.19776899999994) (-63.87361099999998 50.194435) (-63.89028200000001 50.194709999999986) (-63.899993999999936 50.19609800000006) (-63.90860700000002 50.19860100000005) (-63.91610700000001 50.201660000000004) (-63.920837000000006 50.20555100000007) (-63.93055700000002 50.218597000000045) (-63.931389000000024 50.22387700000007) (-63.93055700000002 50.22943100000009) (-63.92694899999992 50.236107000000004) (-63.92277499999989 50.24166100000002) (-63.91666399999997 50.244713000000104) (-63.90999599999992 50.24665800000014) (-63.90193899999997 50.24721500000004) (-63.889725 50.24221800000009) (-63.865554999999915 50.22832500000004) (-63.859443999999996 50.22470900000002) (-63.85472099999993 50.22082499999999) (-63.85278299999999 50.21610300000009) (-63.85361499999999 50.21054800000002) (-63.85583500000001 50.2044370000001) (-63.859443999999996 50.19776899999994)) ((-125.16777000000002 49.98081999999994) (-125.16999800000002 49.98081999999994) (-125.17111199999994 49.98165900000009) (-125.18582199999997 50.004166) (-125.20722999999998 50.04499800000002) (-125.21417199999996 50.06999200000001) (-125.28167699999989 50.11332700000014) (-125.31777999999986 50.13610799999998) (-125.32362399999994 50.143326) (-125.33999599999993 50.20304900000002) (-125.34916699999997 50.24249300000014) (-125.34973100000002 50.25777400000004) (-125.348343 50.26166500000011) (-125.34554299999996 50.26390100000003) (-125.33999599999993 50.26888300000013) (-125.31082200000003 50.28138000000013) (-125.26334400000002 50.29388399999999) (-125.25472999999988 50.29361000000006) (-125.24638399999998 50.290549999999996) (-125.24333199999995 50.28832999999997) (-125.16722099999987 50.21360800000008) (-125.16111799999999 50.2002720000001) (-125.16000400000001 50.1905440000001) (-125.18666100000002 50.14166300000005) (-125.1536099999999 50.00610399999994) (-125.15416699999997 50.000832) (-125.16416900000002 49.98526800000013) (-125.16777000000002 49.98081999999994)) ((-124.8125 50.11138199999999) (-124.821121 50.11110700000012) (-124.82749899999993 50.11193799999995) (-124.83361799999989 50.11444100000011) (-124.86110699999989 50.13638300000002) (-124.93916299999995 50.20777100000009) (-124.96305799999999 50.23638200000005) (-124.96610999999996 50.246941000000106) (-124.96556099999992 50.25166300000001) (-124.92304999999993 50.29638699999998) (-124.91832699999986 50.29972099999992) (-124.91082799999998 50.29999500000008) (-124.90249599999999 50.29833200000013) (-124.89862099999999 50.29388399999999) (-124.87581599999993 50.28472099999999) (-124.82167099999992 50.239716000000044) (-124.75666799999999 50.17832899999996) (-124.75250199999999 50.16777000000013) (-124.752228 50.16137699999996) (-124.75499699999995 50.1560970000001) (-124.80695300000002 50.11388400000004) (-124.8125 50.11138199999999)) ((-124.73082699999992 50.30221599999999) (-124.72693599999997 50.29916400000002) (-124.72471599999994 50.29916400000002) (-124.69554099999999 50.28943600000002) (-124.68331899999993 50.283333000000084) (-124.67250100000001 50.27610000000004) (-124.66860999999994 50.27249100000006) (-124.66111799999993 50.263054000000125) (-124.65943900000002 50.25833099999994) (-124.65750099999997 50.24777200000011) (-124.65611299999989 50.23137700000001) (-124.65834000000001 50.21221200000002) (-124.66000399999996 50.20749699999999) (-124.66251399999999 50.203323000000125) (-124.695831 50.15749400000004) (-124.70195000000001 50.15860000000009) (-124.70805399999995 50.16137699999996) (-124.79222099999993 50.22526600000009) (-124.79499800000002 50.22887400000002) (-124.78083800000002 50.26944000000003) (-124.77778599999999 50.27748900000006) (-124.74500299999994 50.29943799999995) (-124.74054699999994 50.30193300000002) (-124.73082699999992 50.30221599999999)) ((-125.54387700000001 50.39388300000002) (-125.63583399999999 50.379714999999976) (-125.693604 50.383331) (-125.70333899999991 50.384163000000115) (-125.75527999999997 50.391662999999994) (-125.762787 50.39415700000012) (-125.76363400000002 50.397491000000116) (-125.75527999999997 50.40554800000007) (-125.74416399999996 50.40776800000009) (-125.59528399999999 50.43305200000009) (-125.58640300000002 50.43415800000014) (-125.52390300000002 50.434433000000126) (-125.51889 50.431381000000044) (-125.51806599999998 50.42860400000012) (-125.51777600000003 50.40943100000004) (-125.520554 50.40332000000012) (-125.52500899999995 50.400825999999995) (-125.53639199999998 50.395827999999995) (-125.54387700000001 50.39388300000002)) ((-125.16555800000003 50.37443500000006) (-125.061394 50.24054700000005) (-125.05194099999989 50.226653999999996) (-125.05027799999993 50.22165700000011) (-125.048607 50.20777100000009) (-125.04915599999993 50.19332099999997) (-125.05166599999995 50.19082600000013) (-125.11638599999998 50.13665800000001) (-125.12917299999998 50.126098999999954) (-125.13390400000003 50.12276499999996) (-125.14028899999994 50.121658000000025) (-125.14472999999987 50.12193300000007) (-125.15083299999998 50.12499200000002) (-125.15416699999997 50.133331000000055) (-125.13971699999996 50.1594310000001) (-125.15611299999995 50.23915899999997) (-125.21083099999993 50.31304899999992) (-125.21362299999993 50.316666000000055) (-125.22000099999991 50.318329000000006) (-125.26363400000002 50.32360799999998) (-125.27194199999997 50.32388300000002) (-125.31555199999997 50.31805400000002) (-125.32112099999989 50.31693999999999) (-125.32695000000001 50.31388100000004) (-125.33306900000002 50.30443599999995) (-125.33473200000003 50.29972099999992) (-125.3394469999999 50.29583000000008) (-125.35610999999994 50.29027600000006) (-125.37222300000002 50.28943600000002) (-125.38527699999997 50.289993000000095) (-125.390289 50.29222100000004) (-125.39306599999998 50.29583000000008) (-125.39917000000003 50.311104000000114) (-125.400284 50.320831000000055) (-125.39943699999998 50.331108000000086) (-125.39806399999998 50.333878000000084) (-125.391953 50.340546000000074) (-125.291946 50.433876000000055) (-125.28443899999996 50.435822000000144) (-125.27500900000001 50.43332700000013) (-125.27306399999992 50.43110700000011) (-125.23665599999993 50.4158250000001) (-125.21640000000002 50.40470900000014) (-125.16555800000003 50.37443500000006)) ((-125.42610200000001 50.3555530000001) (-125.45777899999996 50.34943400000009) (-125.46749899999998 50.350273000000016) (-125.52610800000002 50.37887599999999) (-125.52806099999998 50.381660000000124) (-125.51862299999993 50.39027400000003) (-125.47749299999998 50.42416400000013) (-125.471657 50.42748999999998) (-125.465012 50.42999300000014) (-125.37998999999996 50.460823000000005) (-125.37165799999997 50.45777100000004) (-125.37082699999996 50.45582600000006) (-125.36665299999993 50.45416299999994) (-125.34306300000003 50.44165800000002) (-125.33194700000001 50.4355470000001) (-125.33000199999998 50.43082400000014) (-125.33056599999986 50.425270000000125) (-125.33693700000003 50.416664000000026) (-125.38583399999999 50.36971299999999) (-125.39835399999998 50.36415900000003) (-125.42610200000001 50.3555530000001)) ((-125.80721999999997 50.413605000000075) (-125.90695199999993 50.40971400000001) (-125.92194399999988 50.41027100000008) (-125.92804699999999 50.411658999999986) (-125.93110699999988 50.41387900000001) (-125.95111099999997 50.433876000000055) (-125.93943799999988 50.443047000000035) (-125.90583799999996 50.45638300000013) (-125.81416299999995 50.46804800000001) (-125.80777 50.46776599999998) (-125.80359599999997 50.46554600000013) (-125.79055799999998 50.45694000000003) (-125.74109599999997 50.43166400000001) (-125.73805199999998 50.42804700000005) (-125.73805199999998 50.42665899999997) (-125.74276700000001 50.42416400000013) (-125.75834700000001 50.41999099999998) (-125.79110700000001 50.41499299999998) (-125.80721999999997 50.413605000000075)) ((-126.22582999999997 50.55526700000013) (-126.30888399999998 50.52832799999999) (-126.33640299999996 50.52166) (-126.35056299999997 50.52027099999998) (-126.486107 50.51554900000008) (-126.58805799999999 50.521378000000084) (-126.60417199999995 50.52526899999998) (-126.623894 50.53388199999995) (-126.60417199999995 50.539719000000105) (-126.57444800000002 50.546387000000095) (-126.55695300000002 50.54860700000012) (-126.54194599999994 50.54943800000012) (-126.52667200000002 50.548882000000106) (-126.48860200000001 50.55332199999992) (-126.381104 50.574715000000026) (-126.28611799999999 50.59832799999998) (-126.28278399999999 50.59748800000011) (-126.22609699999998 50.564156000000025) (-126.223053 50.560546999999985) (-126.224716 50.55665599999992) (-126.22582999999997 50.55526700000013)) ((-126.46639999999996 50.575829000000056) (-126.47501399999993 50.57555400000001) (-126.47917199999995 50.576385000000016) (-126.535553 50.59054600000002) (-126.54915599999998 50.59638200000006) (-126.55222300000003 50.598602000000085) (-126.554169 50.60277600000012) (-126.55248999999998 50.60749800000002) (-126.55027799999999 50.60860400000007) (-126.54360999999994 50.61138200000005) (-126.52916699999997 50.61499800000013) (-126.45361299999996 50.626937999999996) (-126.40499899999992 50.62609900000007) (-126.385559 50.625549000000035) (-126.37721299999993 50.623877999999934) (-126.364441 50.619438000000116) (-126.36138900000003 50.61582900000013) (-126.36165599999998 50.61305200000004) (-126.36971999999992 50.60582699999998) (-126.38027999999997 50.598602000000085) (-126.38474300000001 50.596100000000035) (-126.39138799999995 50.59276600000004) (-126.39806399999998 50.59110300000009) (-126.46639999999996 50.575829000000056)) ((-59.34583299999997 50.53388199999995) (-59.353888999999924 50.53388199999995) (-59.358337000000006 50.537773000000016) (-59.384170999999924 50.633049000000085) (-59.384170999999924 50.638329) (-59.38277399999998 50.64388300000013) (-59.37805199999991 50.64916199999993) (-59.37194099999999 50.65277100000014) (-59.36444899999998 50.653876999999966) (-59.35500300000001 50.65221400000007) (-59.337775999999906 50.64083100000005) (-59.333610999999905 50.636108000000036) (-59.32167099999998 50.618881000000044) (-59.305556999999965 50.59165999999999) (-59.30027799999999 50.58194000000009) (-59.29833999999994 50.57249500000006) (-59.29833999999994 50.56193500000012) (-59.30889100000002 50.553047000000106) (-59.32055700000001 50.545830000000024) (-59.33306099999987 50.53943600000014) (-59.34583299999997 50.53388199999995)) ((-126.87332200000003 50.66332200000005) (-126.83416699999998 50.63416300000006) (-126.83112299999999 50.62915800000002) (-126.83583099999998 50.62526700000012) (-126.90249599999993 50.61388399999993) (-126.91251399999999 50.61360900000011) (-127.016663 50.638329) (-127.025284 50.63999200000006) (-127.04276999999996 50.63749700000005) (-127.05832700000002 50.63249200000001) (-127.10193600000002 50.627486999999974) (-127.12249800000001 50.62721300000004) (-127.13221699999991 50.62832600000013) (-127.14055599999995 50.62971500000009) (-127.14472999999998 50.63388100000003) (-127.14334100000002 50.63888500000013) (-127.13166799999999 50.65221400000007) (-127.12721299999998 50.65609699999999) (-127.10916099999997 50.66526799999997) (-127.093887 50.669159000000036) (-127.08640300000002 50.66971600000011) (-126.89028899999994 50.66721300000012) (-126.87970699999994 50.66610000000003) (-126.87332200000003 50.66332200000005)) ((-126.64388999999994 50.691933000000006) (-126.65249599999999 50.691376000000105) (-126.65888999999993 50.694435000000055) (-126.662781 50.69860099999994) (-126.66583300000002 50.70332300000001) (-126.69027699999998 50.75499700000006) (-126.68554699999993 50.75888800000013) (-126.66832699999998 50.759163000000115) (-126.60221899999999 50.77082800000005) (-126.58277900000002 50.76971400000002) (-126.54387700000001 50.765831000000105) (-126.53639199999992 50.76361100000008) (-126.53582799999998 50.75860600000004) (-126.63806199999993 50.69499200000013) (-126.64388999999994 50.691933000000006)) ((-55.56472000000002 50.69971499999991) (-55.58000199999992 50.69832600000012) (-55.58888999999999 50.699431999999945) (-55.64527899999996 50.71888000000007) (-55.65166499999998 50.72304500000007) (-55.653052999999886 50.72721100000001) (-55.62943999999993 50.78082300000011) (-55.62471800000003 50.78721600000006) (-55.619163999999955 50.791382) (-55.46277599999996 50.80582400000014) (-55.454444999999964 50.80248999999998) (-55.45055400000001 50.798332000000016) (-55.44972200000001 50.792770000000075) (-55.45472000000001 50.788048) (-55.46694199999996 50.784163999999976) (-55.512504999999976 50.72276300000004) (-55.52500199999997 50.71582799999999) (-55.55139200000002 50.70332300000001) (-55.557503 50.70138500000007) (-55.56472000000002 50.69971499999991)) ((-126.27306399999998 50.65277100000014) (-126.46333300000003 50.64166299999994) (-126.56806899999998 50.6483310000001) (-126.58416699999992 50.65026900000004) (-126.59889199999998 50.65415999999993) (-126.60637699999995 50.65721100000013) (-126.612503 50.659988000000055) (-126.61749299999997 50.664993000000095) (-126.61749299999997 50.66777000000002) (-126.545837 50.72609699999998) (-126.43721 50.78388200000012) (-126.38971699999996 50.806381000000044) (-126.38221699999997 50.808043999999995) (-126.28056299999997 50.82833100000005) (-126.26640299999997 50.82777399999998) (-126.25805699999995 50.824715000000026) (-126.2538909999999 50.8219380000001) (-126.25171699999987 50.818932000000075) (-126.23832699999997 50.81110400000006) (-126.22944599999994 50.803322000000094) (-126.17832900000002 50.75083200000006) (-126.17722299999997 50.748604000000114) (-126.17666600000001 50.7438810000001) (-126.25305200000003 50.69964600000009) (-126.25611900000001 50.66137700000007) (-126.26083399999999 50.65721100000013) (-126.26640299999997 50.65470900000008) (-126.27306399999998 50.65277100000014)) ((-126.73137700000001 50.771934999999985) (-126.79778299999992 50.76888300000002) (-126.807503 50.769989000000066) (-126.85333300000002 50.78276799999992) (-126.86472299999997 50.78943600000008) (-126.90583799999996 50.82276900000011) (-126.90139799999992 50.8252720000001) (-126.88806199999999 50.829162999999994) (-126.88137799999993 50.830276000000026) (-126.64862099999999 50.84721400000012) (-126.64334100000002 50.846939000000134) (-126.63583399999999 50.84526800000003) (-126.62943999999993 50.842490999999995) (-126.58860800000002 50.82138100000003) (-126.56806899999998 50.80777000000006) (-126.56304899999992 50.79999500000014) (-126.56861900000001 50.79749300000009) (-126.73137700000001 50.771934999999985)) ((-127.22693599999991 50.636108000000036) (-126.975281 50.57694200000009) (-126.85472099999993 50.55443600000012) (-126.77639799999997 50.54610400000013) (-126.76806599999998 50.544441000000006) (-126.72138999999999 50.53193699999997) (-126.70527600000003 50.527489) (-126.63999899999999 50.50777399999998) (-126.62332199999992 50.498329000000126) (-126.56388899999996 50.483604000000014) (-126.49388099999993 50.481934000000024) (-126.39472999999998 50.48165899999998) (-126.38694800000002 50.48276500000003) (-126.35582699999998 50.48333000000008) (-126.327789 50.48082000000005) (-126.22112299999998 50.46859699999999) (-126.20500199999992 50.466660000000104) (-126.15471600000001 50.45943500000004) (-126.06916799999999 50.43859900000007) (-126.04611199999994 50.43249500000002) (-126.031387 50.427773000000116) (-126.01889 50.42193600000013) (-125.97609699999992 50.39499699999999) (-125.96250900000001 50.388885000000016) (-125.94776899999994 50.38499500000006) (-125.92859599999997 50.382209999999986) (-125.81696299999999 50.3780440000001) (-125.58000199999987 50.36582899999996) (-125.56416300000001 50.363883999999985) (-125.54860699999989 50.35916100000003) (-125.46305799999993 50.32971999999995) (-125.44972200000001 50.32360799999998) (-125.44055200000003 50.318329000000006) (-125.43554699999999 50.31471299999998) (-125.431671 50.31054700000004) (-125.42887899999994 50.30554999999998) (-125.42722300000003 50.29999500000008) (-125.42666599999995 50.29388399999999) (-125.42722300000003 50.287498000000085) (-125.41500899999994 50.26166500000011) (-125.39362299999999 50.21554600000002) (-125.37777699999998 50.17971799999998) (-125.36277799999993 50.13804600000009) (-125.33084099999996 50.11388400000004) (-125.28694199999995 50.08138300000013) (-125.229446 50.026657) (-125.221657 50.01805100000007) (-125.21611000000001 50.001389000000074) (-125.21417199999996 49.976379000000065) (-125.212784 49.97082500000005) (-125.20722999999998 49.96166200000005) (-125.16860999999994 49.91276600000003) (-125.11221299999994 49.86832400000009) (-124.99305699999991 49.78833000000009) (-124.89806399999998 49.73165899999998) (-124.89138799999989 49.66471100000007) (-124.91639700000002 49.631660000000124) (-124.86028299999992 49.54166399999997) (-124.85305800000003 49.5324940000001) (-124.83306900000002 49.51082600000012) (-124.78943599999991 49.464157) (-124.579453 49.38749700000011) (-124.55110200000001 49.3780440000001) (-124.535553 49.37387800000005) (-124.51917300000002 49.37027000000012) (-124.26083399999993 49.315269) (-124.12193299999996 49.27027100000009) (-123.94304699999992 49.21110499999992) (-123.85637699999995 49.14916200000005) (-123.86028299999992 49.153046000000074) (-123.86638599999998 49.160820000000115) (-123.86805700000002 49.16443600000014) (-123.87110899999988 49.17360700000012) (-123.87138399999998 49.181107) (-123.86638599999998 49.18637800000005) (-123.86165599999993 49.18888099999998) (-123.84999099999999 49.191658000000075) (-123.82444800000002 49.192764000000125) (-123.82055699999995 49.1905440000001) (-123.80722000000003 49.18027500000005) (-123.79444899999993 49.173325000000034) (-123.78859699999998 49.17027300000012) (-123.76944700000001 49.16304800000006) (-123.73805199999993 49.15443399999998) (-123.71112099999999 49.14999399999999) (-123.70417800000001 49.147491) (-123.699432 49.14388300000007) (-123.696663 49.14027400000009) (-123.69638099999997 49.13555100000008) (-123.69915799999995 49.130272000000105) (-123.703888 49.12638100000004) (-123.73137700000001 49.11749300000008) (-123.74166899999989 49.11804999999998) (-123.83750899999995 49.14138000000014) (-123.85056299999997 49.145546000000024) (-123.81027199999994 49.115829000000076) (-123.75195300000001 49.04083300000002) (-123.74944299999999 49.03527100000008) (-123.7502899999999 49.02915999999999) (-123.75695799999994 48.98693800000012) (-123.75862099999989 48.980819999999994) (-123.76334399999996 48.97693600000014) (-123.69193999999993 48.908325000000104) (-123.68222000000003 48.90221400000007) (-123.5911099999999 48.83998900000012) (-123.58277900000002 48.83194000000009) (-123.56555199999997 48.789719000000105) (-123.56304899999998 48.77832799999999) (-123.56471299999993 48.74971800000009) (-123.50945300000001 48.58749399999999) (-123.47666899999996 48.631660000000124) (-123.47083999999995 48.67332499999998) (-123.46916199999993 48.67943600000001) (-123.464447 48.68332700000008) (-123.45973200000003 48.685822000000144) (-123.45140100000003 48.68665299999998) (-123.44193999999999 48.68665299999998) (-123.41639699999996 48.684433000000126) (-123.40110800000002 48.681381000000044) (-123.39639299999999 48.677773000000116) (-123.34973099999996 48.54777500000006) (-123.34834299999994 48.535828000000095) (-123.29527300000001 48.48471800000004) (-123.291672 48.48082000000011) (-123.27861000000001 48.45610000000005) (-123.27610800000002 48.4511030000001) (-123.276947 48.44554099999999) (-123.28694200000001 48.41860200000002) (-123.28971899999999 48.41332199999994) (-123.29444899999993 48.409714000000065) (-123.30082699999997 48.406654) (-123.3205569999999 48.399437000000034) (-123.33640299999996 48.396942000000024) (-123.36028299999987 48.39721700000007) (-123.41665599999999 48.423882000000106) (-123.42138699999992 48.427490000000034) (-123.425003 48.431938) (-123.45973200000003 48.41193400000003) (-123.51334400000002 48.37470999999999) (-123.53694200000001 48.33832600000011) (-123.54250300000001 48.31249200000008) (-123.546112 48.307770000000005) (-123.55166600000001 48.304710000000114) (-123.55915800000002 48.30304700000005) (-123.58332799999994 48.301102000000014) (-123.598343 48.31166100000007) (-123.71444699999995 48.34804500000013) (-123.76251199999996 48.36166400000002) (-123.77166699999998 48.36166400000002) (-123.77999899999998 48.360550000000046) (-123.79499799999996 48.357498000000135) (-123.80888400000003 48.353324999999984) (-123.817497 48.352493000000095) (-123.823624 48.35277600000006) (-123.91610699999995 48.36415900000003) (-123.92415599999998 48.366104000000064) (-123.97609699999998 48.381935) (-124.26363399999997 48.46888000000001) (-124.423607 48.51693700000004) (-124.609444 48.56054700000004) (-124.6885989999999 48.57833099999999) (-124.72083999999995 48.58665500000001) (-124.75917099999998 48.6055530000001) (-124.77111799999994 48.61166399999996) (-124.79499800000002 48.629989999999964) (-124.81777999999997 48.64888000000013) (-124.82277699999997 48.65248900000012) (-124.9225009999999 48.67999300000014) (-125.02887699999997 48.70888500000001) (-125.0625 48.7149960000001) (-125.09500100000002 48.721930999999984) (-125.10221899999993 48.72443399999992) (-125.11389199999996 48.73110200000008) (-125.18443299999996 48.79610400000013) (-125.18499800000001 48.80082700000008) (-125.01722699999999 48.92054700000011) (-124.90862300000003 48.969154) (-124.90306099999998 48.97137500000008) (-124.84750399999996 49.011664999999994) (-124.84277299999985 49.01554900000002) (-124.83556399999998 49.02416199999999) (-124.78083800000002 49.131377999999984) (-124.77944899999994 49.144439999999975) (-124.78083800000002 49.150542999999914) (-124.79695099999998 49.2158280000001) (-124.79972799999996 49.22693600000008) (-124.80499299999997 49.236938000000066) (-124.80776999999995 49.24054700000005) (-124.81555199999997 49.238045) (-124.818893 49.23471800000004) (-124.82444800000002 49.224158999999986) (-124.82501199999996 49.21720900000014) (-124.82333399999993 49.20555100000013) (-124.81723 49.18332700000002) (-124.81610099999995 49.16471100000001) (-124.81806899999998 49.146103000000096) (-124.82611099999997 49.12248999999997) (-124.83139 49.11249500000008) (-124.87832599999996 49.02526899999992) (-124.88194299999998 49.02054600000014) (-124.89472999999998 49.00888800000013) (-124.90055799999993 49.00499700000006) (-124.906113 49.00193800000005) (-124.93694299999999 48.98804500000006) (-124.94999699999994 48.983330000000024) (-124.96278399999994 48.98110200000002) (-125.06916799999999 48.98443600000002) (-125.126938 48.99110400000001) (-125.19888300000002 48.96276899999998) (-125.21000699999996 48.955826) (-125.21665999999988 48.95332300000001) (-125.22416699999991 48.95166000000012) (-125.23137699999995 48.951103000000046) (-125.24194299999988 48.95166000000012) (-125.318893 48.96443899999997) (-125.32721699999996 48.966102999999976) (-125.45722999999992 48.918052999999986) (-125.46472199999988 48.91638200000011) (-125.483612 48.91582500000004) (-125.502228 48.91777000000002) (-125.50723299999999 48.92027300000001) (-125.75110599999994 49.05526700000007) (-125.76806599999998 49.09860200000003) (-125.73805199999998 49.105552999999986) (-125.69304699999992 49.12860100000006) (-125.64167800000001 49.16304800000006) (-125.63722200000001 49.16693900000013) (-125.60888699999998 49.19804399999998) (-125.60582699999992 49.210274000000084) (-125.60749800000002 49.2158280000001) (-125.611107 49.22026799999992) (-125.61638599999998 49.21971100000002) (-125.66443599999991 49.18998700000003) (-125.72083999999995 49.157767999999976) (-125.74694799999997 49.148604999999975) (-125.75334199999998 49.147491) (-125.75611899999996 49.151657000000114) (-125.779449 49.24166100000002) (-125.79666099999992 49.310272000000055) (-125.86609599999991 49.27443699999998) (-125.952789 49.230270000000075) (-125.96501199999989 49.22526599999992) (-125.97028399999999 49.22470900000002) (-125.97444199999995 49.2249910000001) (-125.98137700000001 49.227211000000125) (-125.98750299999989 49.230270000000075) (-126.020554 49.263054000000125) (-126.02333099999993 49.26805100000007) (-126.02223200000003 49.280823000000055) (-126.01862299999993 49.28555300000011) (-126.01306199999999 49.2888870000001) (-126.00666799999993 49.290549999999996) (-125.98029300000002 49.292496000000085) (-125.97361799999999 49.294997999999964) (-125.96916199999998 49.29749300000003) (-125.950287 49.311935000000005) (-125.94554099999999 49.31666600000011) (-125.89750699999996 49.41027100000008) (-125.89584399999995 49.416382) (-125.89695699999993 49.42804700000005) (-125.89972699999998 49.43360100000007) (-125.90471599999995 49.435822000000144) (-125.90915699999988 49.431938000000116) (-125.94722000000002 49.39554600000014) (-125.96250900000001 49.37748700000003) (-125.96501199999989 49.373604000000114) (-125.96528599999999 49.367493000000024) (-125.962219 49.3555530000001) (-125.962784 49.35027300000007) (-125.96610999999996 49.34554300000002) (-125.99527 49.324440000000095) (-126.00195300000001 49.321938000000046) (-126.0094529999999 49.321663) (-126.03916900000002 49.33027599999997) (-126.04638699999987 49.33332800000011) (-126.06111099999998 49.344154) (-126.06500199999999 49.34832800000004) (-126.07556199999999 49.38638300000014) (-126.07389799999999 49.392494000000056) (-126.120003 49.42304999999999) (-126.22556299999991 49.41027100000008) (-126.26390099999998 49.38943500000005) (-126.36527999999998 49.40165700000006) (-126.45916699999998 49.401932000000045) (-126.46167000000003 49.382767000000115) (-126.46611000000001 49.38027200000005) (-126.52667200000002 49.37193300000001) (-126.54222099999993 49.37443500000012) (-126.54723399999995 49.3780440000001) (-126.57778899999988 49.40776799999992) (-126.579453 49.41332200000011) (-126.57917799999996 49.41944099999995) (-126.56973299999999 49.57638500000007) (-126.56610099999995 49.584434999999985) (-126.47028399999999 49.63555100000002) (-126.46167000000003 49.636658000000125) (-126.40416699999997 49.6377720000001) (-126.38417099999992 49.63638300000008) (-126.36749299999997 49.633049000000085) (-126.36028299999998 49.63082099999997) (-126.34137699999997 49.62887599999999) (-126.28472899999997 49.6344380000001) (-126.22389199999998 49.64054900000002) (-126.13417099999998 49.64999400000005) (-126.09445199999988 49.65554800000007) (-126.08693699999998 49.65721100000002) (-126.08750899999995 49.66220900000002) (-126.09028599999999 49.66638200000011) (-126.09416199999993 49.671104000000014) (-126.10305799999998 49.67916100000002) (-126.11028299999992 49.68138099999999) (-126.11972000000003 49.681107000000054) (-126.20944199999991 49.67388199999999) (-126.23444399999994 49.669159000000036) (-126.24638400000003 49.66471100000007) (-126.283073 49.654990999999995) (-126.29833999999994 49.65221400000007) (-126.340843 49.64860500000009) (-126.43110699999994 49.662491000000045) (-126.43831599999993 49.664153999999996) (-126.58500699999996 49.701103000000046) (-126.59028599999994 49.70443700000004) (-126.63027999999997 49.79499800000008) (-126.67971799999998 49.878876000000105) (-126.80444299999988 49.90915699999999) (-126.83917200000002 49.88472000000013) (-126.84555099999989 49.8822100000001) (-126.85221899999993 49.87971500000009) (-126.87609899999995 49.87332200000009) (-126.93943799999994 49.862770000000125) (-126.99416399999996 49.85527000000002) (-127.12111699999997 49.85228699999999) (-127.13249200000001 49.85694100000012) (-127.17749000000003 49.88888500000013) (-127.18554699999999 49.89749100000006) (-127.22444199999995 49.940269000000114) (-127.241379 49.961937000000034) (-127.23889199999996 49.96720899999997) (-127.234444 49.97137500000008) (-127.17999299999991 50.02137800000003) (-127.18277 50.03166200000004) (-127.18360899999999 50.051102000000014) (-127.17666599999995 50.061104) (-127.172234 50.06499500000007) (-127.13027999999997 50.084717000000126) (-127.15833999999995 50.096382000000006) (-127.27055399999995 50.0991590000001) (-127.27500899999995 50.05999000000003) (-127.27749599999993 50.055267000000015) (-127.28388999999999 50.052216000000044) (-127.33000199999998 50.03388200000006) (-127.34500100000002 50.03027300000008) (-127.38054699999998 50.0261000000001) (-127.38999899999993 50.02860300000009) (-127.42331699999994 50.0422210000001) (-127.45195000000001 50.06971699999997) (-127.46916199999993 50.08804299999997) (-127.47193900000002 50.09276599999998) (-127.54804999999993 50.130272000000105) (-127.63276699999994 50.12999000000002) (-127.78028899999993 50.084160000000054) (-127.781387 50.084160000000054) (-127.78362299999998 50.084160000000054) (-127.890556 50.10694100000006) (-127.89584400000001 50.108886999999925) (-127.90083299999998 50.112495000000024) (-127.90695199999999 50.12082700000002) (-127.90666199999998 50.127769000000114) (-127.903343 50.13249200000013) (-127.89222699999988 50.13916000000006) (-127.87917299999998 50.144440000000145) (-127.86805700000002 50.151099999999985) (-127.83721899999995 50.17249300000009) (-127.82833900000003 50.180550000000096) (-127.78888699999999 50.22221400000001) (-127.79915599999993 50.317772000000105) (-127.80444299999994 50.32138099999992) (-127.86389200000002 50.33693700000009) (-127.87138399999998 50.33776899999998) (-127.881104 50.33721200000008) (-127.895554 50.32638500000007) (-127.90778399999999 50.31971700000008) (-127.92166099999997 50.316666000000055) (-127.93138099999993 50.31610100000006) (-127.94833399999993 50.32193799999999) (-127.95249899999993 50.32471500000008) (-127.97860700000001 50.34249100000005) (-127.97944599999994 50.347214000000065) (-127.92610199999996 50.45999100000006) (-127.92388900000003 50.46276900000004) (-127.91722099999993 50.46415699999994) (-127.75666799999993 50.48638199999999) (-127.708054 50.491661000000136) (-127.70028699999995 50.49221800000004) (-127.58416699999998 50.48693800000001) (-127.576683 50.48471799999999) (-127.57140400000003 50.481934000000024) (-127.56331599999999 50.4741590000001) (-127.53278399999999 50.439986999999974) (-127.50750700000003 50.40915700000011) (-127.49527 50.395827999999995) (-127.47444200000001 50.381660000000124) (-127.46193699999998 50.37582400000008) (-127.454453 50.37360400000006) (-127.44695300000001 50.37276500000013) (-127.446663 50.379714999999976) (-127.45249899999988 50.388885000000016) (-127.48665599999993 50.437492000000134) (-127.50583599999999 50.45860299999998) (-127.52027899999996 50.46971100000013) (-127.53083800000002 50.47693600000002) (-127.54750100000001 50.48693800000001) (-127.56388899999996 50.50222000000002) (-127.57000699999998 50.51221499999991) (-127.56749699999995 50.51610599999998) (-127.55027799999999 50.53832999999992) (-127.54472399999997 50.54166400000008) (-127.50361599999997 50.56221000000011) (-127.49694799999992 50.56526900000006) (-127.49027999999993 50.56805400000013) (-127.47501399999999 50.571663000000115) (-127.443604 50.571663000000115) (-127.41972399999992 50.57388300000014) (-127.41416900000002 50.575829000000056) (-127.41166699999997 50.58138300000002) (-127.41139199999992 50.587494000000106) (-127.41944899999999 50.59665700000011) (-127.58168 50.59388000000001) (-127.69138299999997 50.60665900000009) (-127.87332200000003 50.623877999999934) (-127.87666299999995 50.62165800000014) (-127.87361099999993 50.61693600000007) (-127.854446 50.60833000000014) (-127.80055199999998 50.587494000000106) (-127.78666699999997 50.58221400000002) (-127.76834099999996 50.579994000000056) (-127.751106 50.58110800000003) (-127.72501399999993 50.58443499999993) (-127.708618 50.584991000000116) (-127.66251399999999 50.58138300000002) (-127.63445300000001 50.57804900000002) (-127.61028299999998 50.56582599999996) (-127.595551 50.55582400000003) (-127.59166699999997 50.55165900000003) (-127.589722 50.54610400000013) (-127.595551 50.53665900000004) (-127.60109699999998 50.53333300000003) (-127.60888699999987 50.53138000000007) (-128.05142199999995 50.44669300000004) (-128.13363599999997 50.47470900000013) (-128.224152 50.53110500000008) (-128.319458 50.60860400000007) (-128.37527499999993 50.678604000000064) (-128.406952 50.738883999999985) (-128.41473399999995 50.762771999999984) (-128.416656 50.76915699999995) (-128.41305499999993 50.77388000000013) (-128.40863000000002 50.77777100000003) (-128.35583499999996 50.799721000000034) (-128.349152 50.80165899999997) (-128.10693400000002 50.8605500000001) (-128.05307 50.87193300000007) (-127.91832699999998 50.87221499999998) (-127.90972899999991 50.871376) (-127.882767 50.86554699999999) (-127.833328 50.85416399999997) (-127.67749000000003 50.817497) (-127.51471700000002 50.774437000000034) (-127.50723299999993 50.77221700000001) (-127.49582699999996 50.765831000000105) (-127.48750299999995 50.75721700000008) (-127.45916699999992 50.718323) (-127.354446 50.676102000000014) (-127.22693599999991 50.636108000000036)) ((-127.65471599999995 50.837769000000094) (-127.66139199999998 50.83499100000006) (-127.67027300000001 50.835266000000104) (-127.75306699999999 50.85277600000006) (-127.833328 50.87971500000003) (-127.83860799999997 50.88166000000007) (-127.83306899999997 50.88499500000012) (-127.73500100000001 50.909988) (-127.72638699999993 50.90860000000009) (-127.71665999999999 50.90554800000001) (-127.71028099999995 50.9019320000001) (-127.69138299999997 50.88721499999997) (-127.67083699999995 50.86693600000001) (-127.65833999999995 50.85416399999997) (-127.65527299999997 50.849433999999974) (-127.65334299999995 50.84388000000013) (-127.65471599999995 50.837769000000094)) ((-55.55555700000002 50.88638300000002) (-55.56388899999996 50.88499500000012) (-55.571670999999924 50.88582600000012) (-55.58111600000001 50.888046000000145) (-55.604720999999984 50.898048000000074) (-55.61555499999997 50.9060970000001) (-55.61972000000003 50.91027100000014) (-55.63611599999996 50.950829000000056) (-55.63527699999992 50.96138000000013) (-55.62943999999993 50.96554600000002) (-55.565552000000025 50.983047) (-55.558334 50.98443600000002) (-55.550551999999925 50.985268000000076) (-55.54222900000002 50.98499300000009) (-55.53527799999995 50.98137700000001) (-55.531386999999995 50.977211000000125) (-55.52972399999999 50.96832300000011) (-55.549995000000024 50.89083099999999) (-55.55555700000002 50.88638300000002)) ((-55.993889000000024 51.2002720000001) (-55.99999999999994 51.196655000000135) (-56.00111400000003 51.201660000000004) (-55.99805500000002 51.20749699999999) (-55.992774999999995 51.212769000000094) (-55.981383999999935 51.22165700000005) (-55.975554999999986 51.22582200000005) (-55.967772999999966 51.226653999999996) (-55.96832999999987 51.22137500000002) (-55.97055099999994 51.218323000000055) (-55.98249800000002 51.208885000000066) (-55.993889000000024 51.2002720000001)) ((-58.41332999999992 51.2388840000001) (-58.462219000000005 51.21610300000009) (-58.56361399999997 51.22832500000004) (-58.56500199999999 51.23333000000008) (-58.56194299999993 51.239159000000086) (-58.55583199999995 51.242767000000015) (-58.513335999999924 51.2649990000001) (-58.506392999999946 51.26832600000006) (-58.419448999999986 51.274712000000136) (-58.412773000000016 51.26721200000003) (-58.40916399999992 51.256943000000035) (-58.41332999999992 51.2388840000001)) ((-53.756366999999955 48.50326200000012) (-53.99749800000001 48.42555200000004) (-54.011116000000015 48.42166099999997) (-54.025001999999915 48.41860200000002) (-54.04888900000003 48.420547) (-54.05722000000003 48.42193600000002) (-54.07277699999992 48.42860400000001) (-54.08111599999995 48.42999299999997) (-54.09444399999995 48.42582700000008) (-54.10055499999993 48.42249300000009) (-54.147223999999994 48.39138000000008) (-54.13805400000001 48.35916100000003) (-54.134727 48.35443899999996) (-54.12749500000001 48.353324999999984) (-54.118607 48.364998000000014) (-54.088607999999965 48.39554599999997) (-54.075561999999934 48.4019320000001) (-54.06944999999996 48.40387700000008) (-54.054442999999935 48.40416000000005) (-54.04555499999998 48.4019320000001) (-54.02916700000003 48.399437000000034) (-54.02111100000002 48.39916200000005) (-53.998885999999914 48.40082600000005) (-53.99222599999996 48.402489) (-53.97972099999987 48.408042999999964) (-53.91305499999993 48.444153000000085) (-53.756366999999955 48.50326200000012) (-53.67444599999993 48.53416400000009) (-53.647223999999994 48.54110700000007) (-53.63194299999998 48.541382000000056) (-53.623054999999965 48.53916200000009) (-53.586388 48.52526900000004) (-53.57472200000001 48.50721699999997) (-53.558051999999975 48.47470900000002) (-53.58805100000001 48.428047000000106) (-53.56221799999997 48.43915599999997) (-53.533889999999985 48.45193500000005) (-53.48860899999994 48.50721699999997) (-53.461945000000014 48.55526699999996) (-53.46527900000001 48.56860399999999) (-53.46583599999997 48.57416500000005) (-53.465003999999965 48.579436999999984) (-53.43721799999997 48.619987000000094) (-53.42444599999999 48.625549000000035) (-53.345832999999914 48.61582899999996) (-53.33805099999995 48.61249499999997) (-53.31305699999996 48.595267999999976) (-53.30583200000001 48.58665500000001) (-53.30332900000002 48.581940000000145) (-53.22638699999993 48.555549999999926) (-53.216392999999925 48.56693999999999) (-53.153884999999946 48.628601) (-53.07972699999999 48.6988750000001) (-53.07277699999992 48.70027200000004) (-53.067779999999914 48.696380999999974) (-53.02305599999994 48.66082) (-53.01888999999994 48.65638000000001) (-52.978049999999996 48.60443900000013) (-52.97638699999999 48.59915900000004) (-52.976944 48.59388000000007) (-52.98722099999998 48.548050000000046) (-53.05388599999998 48.44276400000007) (-53.07556199999999 48.42249300000009) (-53.09749599999998 48.4052660000001) (-53.1875 48.35082999999997) (-53.194159999999954 48.34860200000003) (-53.201941999999974 48.347488000000055) (-53.20972399999994 48.34777100000002) (-53.21805599999993 48.3491590000001) (-53.24888599999997 48.36277000000007) (-53.261391 48.37082700000002) (-53.266395999999986 48.37499200000002) (-53.345001000000025 48.36027500000006) (-53.38889299999988 48.30387900000011) (-53.615279999999984 48.178046999999935) (-53.62138399999992 48.174713) (-53.634170999999924 48.169991000000095) (-53.662216 48.163321999999994) (-53.668609999999944 48.16249099999999) (-53.67694899999998 48.163879000000065) (-53.69471699999991 48.16915899999998) (-53.71055599999994 48.17582700000014) (-53.89250199999998 48.22693600000014) (-53.901389999999935 48.2291560000001) (-53.93416599999995 48.23333000000014) (-53.94055199999997 48.23081999999994) (-53.94527399999998 48.17887900000005) (-53.9441599999999 48.163879000000065) (-53.917778 48.08804300000003) (-53.91249800000003 48.084160000000054) (-53.90416700000003 48.08194000000009) (-53.823616000000015 48.07443999999998) (-53.79333500000001 48.07360800000009) (-53.77027899999996 48.07332600000001) (-53.733611999999994 48.0761030000001) (-53.71860499999997 48.07804900000002) (-53.69694499999997 48.079162999999994) (-53.68916300000001 48.07888000000003) (-53.69288599999987 48.067993) (-53.68838900000003 48.06599) (-53.68521900000002 48.06366000000014) (-53.68388700000003 48.060822000000144) (-53.68422299999992 48.057822999999985) (-53.68788899999993 48.05482500000011) (-53.691055000000006 48.052658000000065) (-53.69888300000002 48.049328) (-53.73694599999999 48.032767999999976) (-53.76333599999998 48.02638200000001) (-53.79944599999999 48.02165999999994) (-53.83666199999993 48.02221700000001) (-53.85222599999997 48.023048000000074) (-53.87638900000002 48.02582600000005) (-53.89388999999994 48.02999100000005) (-53.90166499999998 48.033607000000075) (-53.90943899999996 48.03388200000012) (-53.91666399999991 48.03333299999997) (-53.923614999999984 48.0316620000001) (-53.924170999999944 48.02665700000006) (-53.919167000000016 48.022490999999945) (-53.91138499999994 48.01915700000001) (-53.89305899999994 48.014442000000145) (-53.794448999999986 47.99638400000009) (-53.77916699999997 47.996658000000025) (-53.69538899999992 48.01821899999999) (-53.69138700000002 48.019215000000145) (-53.668724 48.02988099999999) (-53.65021899999999 48.03788400000013) (-53.60777999999999 48.05110200000007) (-53.60583500000001 48.04638700000004) (-53.61916400000001 47.99887800000005) (-53.62249800000001 47.993050000000096) (-53.72361000000001 47.84388000000001) (-53.73777799999999 47.82666000000006) (-53.78750600000001 47.773048000000074) (-53.79333500000001 47.768599999999935) (-53.801391999999964 47.76998900000012) (-53.807503 47.773604999999975) (-53.82556199999999 47.79499800000008) (-53.85250099999996 47.78527100000014) (-53.850554999999986 47.760551000000135) (-53.837501999999915 47.69943200000006) (-53.760283999999956 47.609993000000145) (-53.631110999999976 47.54332700000009) (-53.55055199999998 47.52915999999993) (-53.54527999999999 47.534439000000134) (-53.542502999999954 47.55027000000007) (-53.54111499999999 47.58526600000005) (-53.49777999999998 47.73471799999999) (-53.495834 47.74027300000006) (-53.46111300000001 47.806655999999975) (-53.43499800000001 47.83776899999998) (-53.30610699999994 47.98416100000003) (-53.29084 47.99943500000012) (-53.274445000000014 48.013329000000056) (-53.17055499999998 48.05360399999995) (-53.11000100000001 48.03943600000008) (-53.101943999999946 48.038048) (-53.095001000000025 48.03943600000008) (-53.05332900000002 48.049721000000034) (-53.041945999999996 48.05582400000014) (-52.996947999999975 48.08638000000008) (-52.974716 48.11638599999998) (-52.959723999999994 48.143051000000014) (-52.95639 48.14860500000003) (-52.92694899999998 48.169991000000095) (-52.91999800000002 48.171379) (-52.902221999999995 48.16304800000006) (-52.88611599999996 48.15110000000004) (-52.88194299999992 48.14749100000006) (-52.83555599999994 48.10638399999999) (-52.83138999999994 48.10166199999992) (-52.832779000000016 48.096939000000134) (-52.838889999999935 48.09360500000014) (-52.87194099999999 48.08221400000002) (-52.880279999999914 48.083327999999995) (-52.898056 48.09054600000002) (-52.90416700000003 48.08971400000007) (-52.911384999999996 48.08804300000003) (-52.91750300000001 48.084716999999955) (-52.928337 48.075553999999954) (-53.058051999999975 47.92249300000003) (-53.05999799999995 47.91693900000001) (-53.05944099999999 47.886658000000125) (-53.07583599999998 47.85083000000009) (-53.15860700000002 47.68305200000009) (-53.178337 47.65138200000001) (-53.18360899999993 47.64638500000012) (-53.201667999999984 47.63638300000014) (-53.22110699999996 47.628601) (-53.24083699999994 47.622489999999914) (-53.259727 47.61582900000002) (-53.26500699999997 47.61166400000002) (-53.26722000000001 47.60610200000008) (-53.26167299999997 47.54638699999998) (-53.17556000000002 47.4313810000001) (-53.128333999999995 47.41110200000014) (-53.12194099999999 47.413321999999994) (-53.11194599999999 47.42360700000012) (-53.08306099999999 47.458327999999995) (-53.06583399999994 47.46998600000006) (-53.013061999999934 47.501389000000074) (-52.995003 47.51138300000008) (-52.95166799999993 47.530823000000055) (-52.919167000000016 47.54166399999997) (-52.907219 47.54833200000013) (-52.89694999999995 47.55860100000001) (-52.84916700000002 47.621101000000124) (-52.84249899999992 47.632767000000115) (-52.84055299999994 47.638329000000056) (-52.837501999999915 47.65415999999999) (-52.838889999999935 47.66387900000001) (-52.841110000000015 47.66860200000002) (-52.84166700000003 47.67332499999998) (-52.84055299999994 47.683876000000055) (-52.79888900000003 47.78416400000003) (-52.79138899999998 47.795547000000056) (-52.78556100000003 47.79972100000009) (-52.77944200000002 47.803047000000106) (-52.770554000000004 47.79972100000009) (-52.704169999999976 47.75388299999997) (-52.70055400000001 47.749435000000005) (-52.65777600000001 47.657493999999986) (-52.61444899999998 47.51666299999994) (-52.62027699999999 47.5002750000001) (-52.625832 47.48915899999997) (-52.65332799999999 47.43776700000001) (-52.71805599999993 47.364998000000014) (-52.78750600000001 47.30804399999994) (-52.818610999999976 47.22415900000004) (-52.84972399999998 47.1616590000001) (-52.84527600000001 47.14249399999994) (-52.843613000000005 47.06388099999998) (-52.84416199999998 47.05860100000007) (-52.85278299999999 47.022491) (-52.88417099999998 46.9741590000001) (-52.90999599999998 46.911658999999986) (-52.92972599999996 46.85166200000003) (-52.93277699999999 46.82555400000007) (-52.93499800000001 46.804993000000024) (-52.938332 46.78916200000009) (-53.090836000000024 46.643326) (-53.10250100000002 46.63665800000001) (-53.16111000000001 46.61998699999998) (-53.16916699999996 46.61971300000005) (-53.192497 46.62332200000003) (-53.20722199999989 46.630272000000105) (-53.21333299999998 46.63388100000009) (-53.315552000000025 46.694709999999986) (-53.35417199999995 46.73693800000001) (-53.36194599999993 46.73749500000008) (-53.38417099999998 46.72137500000002) (-53.410552999999936 46.700829) (-53.426391999999964 46.68721000000011) (-53.451392999999996 46.66137700000013) (-53.46361499999995 46.65416000000005) (-53.52111100000002 46.62082700000002) (-53.53277600000001 46.61415900000003) (-53.56166799999994 46.61277000000007) (-53.56944999999996 46.61415900000003) (-53.577225 46.617493000000024) (-53.60777999999999 46.63610799999998) (-53.613891999999964 46.64027400000003) (-53.617774999999995 46.64415700000001) (-53.63500199999993 46.68082399999997) (-53.643058999999994 46.7044370000001) (-53.64416499999993 46.70916000000011) (-53.648056 46.79666100000003) (-53.64778100000001 46.80193299999996) (-53.645279000000016 46.81249200000002) (-53.639725 46.82916300000005) (-53.636391 46.83471700000007) (-53.594719 46.9447100000001) (-53.64166999999992 46.983879) (-53.63361400000002 47.00110599999999) (-53.57778199999996 47.08526599999993) (-53.55083499999995 47.106659000000036) (-53.539444 47.11415899999997) (-53.591385 47.15609699999999) (-53.64639299999999 47.105270000000075) (-53.70361299999996 47.053047000000106) (-53.823059 46.956657000000064) (-53.89416499999999 46.899994000000106) (-53.94583099999994 46.85888700000004) (-54.05332899999996 46.794998000000135) (-54.097220999999934 46.79943800000012) (-54.17888599999992 46.81610100000006) (-54.18777499999999 46.81916000000001) (-54.18999500000001 46.82360799999998) (-54.190833999999995 46.82860599999998) (-54.196387999999956 46.86249499999997) (-54.196663 46.883331) (-54.193329000000006 46.89360799999997) (-54.16082799999998 46.981934000000024) (-54.13194299999998 47.012496999999996) (-54.11500499999994 47.039719000000105) (-54.092498999999975 47.0794370000001) (-54.066666 47.13110400000011) (-53.993889000000024 47.26527400000003) (-53.964721999999995 47.299721000000034) (-53.92861199999999 47.302773000000116) (-53.921943999999996 47.30416100000002) (-53.879997 47.34804500000013) (-53.875557000000015 47.35416399999997) (-53.86750000000001 47.40277100000009) (-53.87943999999993 47.43082400000003) (-53.90027599999996 47.48610700000006) (-53.891669999999976 47.524711999999965) (-53.885558999999944 47.576941999999974) (-53.894721999999945 47.6055530000001) (-53.896950000000004 47.609993000000145) (-53.983886999999925 47.75777400000004) (-54.003333999999995 47.778877000000136) (-54.033332999999914 47.79666100000003) (-54.19527399999998 47.85749800000002) (-54.19499999999999 47.843048000000124) (-54.1972199999999 47.83221400000008) (-54.21277600000002 47.77777100000009) (-54.219161999999926 47.766106000000036) (-54.22388499999994 47.75999500000012) (-54.25917099999998 47.71527100000014) (-54.33777600000002 47.621658000000025) (-54.435272 47.505554000000075) (-54.468605000000025 47.441658000000075) (-54.47749299999998 47.40499100000005) (-54.47249599999998 47.401099999999985) (-54.47749299999998 47.39582800000005) (-54.48277299999995 47.39166300000005) (-54.511116000000015 47.372765000000015) (-54.51721999999995 47.36943800000006) (-54.60139499999997 47.34526800000003) (-54.611388999999974 47.353049999999996) (-54.61306000000002 47.35833000000008) (-54.61333499999995 47.36277000000007) (-54.606948999999986 47.37443499999995) (-54.601944 47.37971500000003) (-54.59666399999986 47.38388099999992) (-54.55999800000001 47.413879000000065) (-54.52916699999997 47.442214999999976) (-54.489998000000014 47.48638200000005) (-54.417220999999984 47.583603000000096) (-54.41082799999987 47.59499400000004) (-54.41332999999992 47.599715999999944) (-54.418334999999956 47.60360700000001) (-54.43055700000002 47.59777100000014) (-54.44083399999994 47.58693700000009) (-54.50861400000002 47.513329) (-54.53194400000001 47.47998799999999) (-54.539444 47.468048000000124) (-54.56361399999997 47.43998700000003) (-54.57888799999989 47.423882000000106) (-54.604720999999984 47.4019320000001) (-54.62138399999998 47.38999200000001) (-54.70027900000002 47.35777300000001) (-54.71999399999993 47.35221899999999) (-54.72721899999999 47.351387000000045) (-54.81861099999986 47.363609000000054) (-54.81945000000002 47.368599000000074) (-54.80305499999997 47.38054699999998) (-54.79361699999998 47.391936999999984) (-54.78666700000002 47.413879000000065) (-54.78750600000001 47.418884000000105) (-54.796111999999994 47.420830000000024) (-54.85639200000003 47.39054900000008) (-54.98055299999993 47.285552999999936) (-55.039169000000015 47.225821999999994) (-55.04389200000003 47.22082500000005) (-55.04555499999998 47.21527100000009) (-55.04333500000001 47.210548000000074) (-55.05361199999993 47.15082600000011) (-55.065833999999995 47.09332300000011) (-55.06945000000002 47.08221400000002) (-55.100280999999995 47.05471) (-55.14944499999996 47.01221500000008) (-55.15471600000001 47.00804900000003) (-55.193329000000006 46.984993000000145) (-55.22582999999997 46.934433000000126) (-55.23027799999994 46.928329000000076) (-55.23694599999993 46.923607000000004) (-55.246947999999975 46.91693900000001) (-55.258613999999966 46.91027100000008) (-55.358337000000006 46.87416100000013) (-55.384170999999924 46.86582900000013) (-55.399993999999936 46.86582900000013) (-55.45666499999999 46.87471000000011) (-55.463615000000004 46.877486999999974) (-55.46860499999997 46.881660000000124) (-55.47193899999996 46.88638300000014) (-55.62694499999992 46.8688810000001) (-55.63417099999998 46.86666100000008) (-55.689719999999966 46.85832999999997) (-55.80332899999996 46.86054999999999) (-55.84583299999997 46.86971299999999) (-55.91500099999996 46.88749700000011) (-55.92361499999993 46.889717000000076) (-55.931389000000024 46.892769000000044) (-55.946663 46.89943699999998) (-55.966110000000015 46.90998800000011) (-55.98082699999992 46.932213000000104) (-55.98277300000001 46.93665299999998) (-55.98416899999995 46.94165800000002) (-55.98305499999998 46.95249200000006) (-55.980552999999986 46.95777100000004) (-55.96665999999999 46.98137700000012) (-55.95249899999999 46.99638399999992) (-55.88694800000002 47.05609900000002) (-55.87110899999999 47.069160000000124) (-55.86555499999997 47.07276899999994) (-55.77527600000002 47.10193600000008) (-55.76860799999997 47.10332500000004) (-55.74555199999992 47.10443900000007) (-55.73889200000002 47.10443900000007) (-55.72360999999995 47.104164000000026) (-55.715553 47.10305000000005) (-55.698050999999964 47.09804500000001) (-55.68250299999994 47.09137700000002) (-55.67444599999999 47.09027099999997) (-55.586945000000014 47.110275000000115) (-55.573616000000015 47.11360900000011) (-55.493331999999896 47.133880999999974) (-55.48777799999999 47.13721499999997) (-55.32944500000002 47.242493000000024) (-55.29833999999994 47.26721199999997) (-55.290557999999976 47.2783280000001) (-55.285278000000005 47.29499800000002) (-55.28583500000002 47.31027200000011) (-55.28694899999999 47.31499500000007) (-55.28611799999999 47.325554000000125) (-55.269721999999945 47.39083099999999) (-55.266662999999994 47.39666) (-55.262221999999895 47.40277100000009) (-55.25694999999996 47.407211000000075) (-55.202225 47.44609800000012) (-55.179169 47.46054800000002) (-55.17250100000001 47.46388200000001) (-55.10777999999999 47.48360400000007) (-55.100554999999986 47.48416099999997) (-55.08361100000002 47.481101999999964) (-55.07583599999987 47.48082000000011) (-55.04028299999993 47.48499300000003) (-54.95139299999988 47.504997) (-54.86805700000002 47.54388399999999) (-54.84583299999997 47.55693800000006) (-54.84166699999997 47.56332400000014) (-54.841385 47.583603000000096) (-54.845551 47.63388100000009) (-54.949439999999925 47.599715999999944) (-54.95639 47.59804500000007) (-54.97083299999997 47.59665699999999) (-55.019278999999926 47.621101000000124) (-55.02827799999989 47.62076600000012) (-55.033278999999936 47.62160100000011) (-55.036109999999894 47.623936000000015) (-55.03761299999991 47.62660199999999) (-55.03744099999989 47.62977200000006) (-55.03561000000002 47.63326999999998) (-55.02961299999993 47.639598999999976) (-55.013779 47.65310299999993) (-55.00777800000003 47.65943500000003) (-54.95639 47.74137900000011) (-54.94749499999995 47.75360900000004) (-54.93804899999998 47.771103000000096) (-54.936110999999926 47.78166199999998) (-54.94305400000002 47.78110500000008) (-54.94860799999992 47.776657000000114) (-55.011391 47.721374999999966) (-55.021942000000024 47.71166199999993) (-55.02527600000002 47.70526899999999) (-55.027221999999995 47.69526700000006) (-55.03055599999999 47.68415800000014) (-55.03361499999994 47.67832900000013) (-55.119114000000025 47.61693600000012) (-55.122443999999916 47.61426900000009) (-55.12628199999995 47.612774) (-55.130774999999915 47.61193800000012) (-55.13577700000002 47.61360500000001) (-55.262778999999966 47.650543000000084) (-55.34916700000002 47.7044370000001) (-55.34833500000002 47.71027400000003) (-55.357506 47.726097000000095) (-55.365005 47.72637900000012) (-55.379722999999956 47.724991000000045) (-55.42749799999996 47.71166199999993) (-55.432503 47.70638299999996) (-55.46194499999996 47.64610300000004) (-55.46472199999994 47.64027400000003) (-55.467498999999975 47.61915599999992) (-55.46665999999999 47.61415900000003) (-55.46138799999994 47.610275) (-55.454444999999964 47.61110700000012) (-55.446663 47.623046999999985) (-55.436110999999926 47.631659999999954) (-55.43000000000001 47.634163000000115) (-55.42305799999997 47.635826000000066) (-55.415276000000006 47.63249200000007) (-55.40777600000001 47.624161000000015) (-55.40027600000002 47.615547000000106) (-55.39833799999997 47.610275) (-55.389725 47.58638000000002) (-55.40027600000002 47.514717000000076) (-55.406661999999926 47.49305000000004) (-55.40972099999999 47.487213000000054) (-55.41416199999992 47.481101999999964) (-55.42972600000002 47.46720900000014) (-55.43638599999997 47.46554600000002) (-55.49861099999998 47.45388000000003) (-55.50583599999993 47.453322999999955) (-55.52610800000002 47.45443699999993) (-55.55527499999994 47.44026900000006) (-55.56055500000002 47.43610400000006) (-55.56500199999999 47.429993000000024) (-55.58777600000002 47.398604999999975) (-55.625 47.46360800000008) (-55.65416700000003 47.49527000000006) (-55.79527999999999 47.49276700000007) (-55.914443999999946 47.43776700000001) (-55.920279999999934 47.43526500000013) (-55.92556000000002 47.439156000000025) (-55.92388900000003 47.444709999999986) (-55.91972399999986 47.450829000000056) (-55.83167300000002 47.517212000000086) (-55.788895000000025 47.551102000000014) (-55.745834 47.58526600000005) (-55.77305599999994 47.57972000000001) (-55.82417299999997 47.56638299999997) (-55.89222699999999 47.5366590000001) (-55.98777799999999 47.500549000000035) (-56.104172000000005 47.46360800000008) (-56.110557999999855 47.462494000000106) (-56.11860699999994 47.46360800000008) (-56.15888999999993 47.48471800000004) (-56.169167000000016 47.49249300000014) (-56.1725009999999 47.49721500000004) (-56.1725009999999 47.50166300000001) (-56.16805999999997 47.50721699999997) (-56.16249800000003 47.51138300000008) (-56.12027699999993 47.519157000000064) (-56.044448999999986 47.53527100000002) (-55.94193999999993 47.56166100000007) (-55.88999899999993 47.57833099999999) (-55.63999899999999 47.66805300000004) (-55.633331 47.67110400000007) (-55.628333999999995 47.674713000000054) (-55.635001999999986 47.67832900000013) (-55.64250199999998 47.67860400000012) (-55.64999399999999 47.677773000000116) (-55.66388699999993 47.67555200000004) (-55.704169999999976 47.66499299999998) (-55.75 47.649437000000034) (-55.756110999999976 47.646942000000024) (-55.77471899999995 47.638329000000056) (-55.80471799999998 47.62443500000012) (-55.82444799999996 47.61859900000002) (-55.838889999999935 47.61721000000006) (-55.85583500000001 47.62027000000012) (-55.90332799999993 47.64527099999992) (-55.913611999999944 47.65304600000002) (-55.91750300000001 47.657493999999986) (-55.91944899999993 47.667213000000004) (-55.918609999999944 47.67304999999999) (-55.91638899999998 47.67832900000013) (-55.91194200000001 47.684432999999956) (-55.90138999999999 47.693047000000035) (-55.895554000000004 47.696655000000135) (-55.86639399999996 47.713882000000126) (-55.83277899999996 47.74249300000008) (-55.81500199999999 47.772491) (-55.799445999999875 47.79916400000002) (-55.74222600000002 47.92332500000009) (-55.746947999999975 47.93249499999996) (-55.75444799999997 47.94110100000006) (-55.76721999999995 47.95332300000007) (-55.77361300000001 47.95694000000003) (-55.78055599999999 47.95526899999993) (-55.81750499999998 47.88693999999998) (-55.83527399999991 47.85083000000009) (-55.835556 47.845543000000134) (-55.847220999999934 47.806938) (-55.84999800000003 47.80110200000013) (-55.854445999999996 47.79471600000005) (-55.865279999999984 47.78611000000012) (-55.877219999999966 47.778602999999976) (-55.888892999999996 47.773048000000074) (-56.04972799999996 47.69943200000006) (-56.08750199999997 47.73693800000001) (-56.08111600000001 47.73971599999999) (-56.05361199999999 47.77388000000002) (-56.057503 47.77832799999999) (-56.06416300000001 47.776657000000114) (-56.111671 47.76361099999997) (-56.125 47.75721699999997) (-56.185272 47.680274999999995) (-56.160278000000005 47.64222000000012) (-56.15499899999986 47.638329000000056) (-56.16138499999994 47.634163000000115) (-56.173332000000016 47.629714999999976) (-56.18749999999994 47.6272130000001) (-56.35833699999989 47.603324999999984) (-56.394722 47.60110500000013) (-56.41027799999995 47.601387000000045) (-56.41889200000003 47.60193600000014) (-56.443053999999904 47.60582700000003) (-56.54695099999998 47.613883999999985) (-56.615554999999915 47.61332700000008) (-56.64416499999999 47.59610000000009) (-56.64111300000002 47.592216000000064) (-56.63999899999999 47.58721200000008) (-56.64416499999999 47.581108000000086) (-56.65055099999995 47.57833099999999) (-56.774719000000005 47.53193700000003) (-56.840836000000024 47.52137799999997) (-56.902221999999995 47.55249000000009) (-56.92444599999999 47.56220999999999) (-56.95610799999997 47.574996999999996) (-56.96527900000001 47.57777400000009) (-56.99250000000001 47.58387800000014) (-56.99972500000001 47.58471700000007) (-57.01472499999994 47.58387800000014) (-57.096663999999976 47.56610100000006) (-57.11833200000001 47.56388100000004) (-57.12610599999999 47.56388100000004) (-57.13444500000003 47.56638299999997) (-57.15027600000002 47.57276900000005) (-57.16332999999992 47.57972000000001) (-57.20472000000001 47.59304800000001) (-57.53082999999987 47.630821000000026) (-57.65777600000001 47.60305000000011) (-57.779441999999904 47.62748700000003) (-57.88249999999999 47.65138200000001) (-58.02749599999993 47.69415300000003) (-58.03639199999998 47.69609800000006) (-58.35944399999994 47.64721700000001) (-58.690552000000025 47.598877000000016) (-58.77111099999996 47.59137700000008) (-58.86194599999993 47.589157000000114) (-58.88500199999987 47.5927660000001) (-58.89416499999987 47.59388000000007) (-58.93749999999994 47.589989) (-59.076667999999984 47.571663) (-59.10213099999993 47.56425100000013) (-59.11361699999992 47.55832700000008) (-59.118889000000024 47.554710000000114) (-59.135559 47.55638099999999) (-59.161941999999954 47.56166100000007) (-59.29778299999987 47.60665899999998) (-59.30444299999999 47.609993000000145) (-59.30583199999995 47.614998000000014) (-59.30944099999999 47.661102000000085) (-59.30944099999999 47.67137900000006) (-59.30499999999995 47.724991000000045) (-59.3024979999999 47.736107000000004) (-59.32556199999999 47.80721300000005) (-59.32972699999999 47.81638300000009) (-59.36916400000001 47.85277599999995) (-59.40193899999997 47.88027199999999) (-59.40694400000001 47.889717000000076) (-59.40471599999995 47.900269000000094) (-59.40083299999992 47.90665400000006) (-59.39166999999992 47.916664000000026) (-59.37805199999991 47.92249300000003) (-59.365554999999915 47.92499500000008) (-59.328612999999905 47.92887900000011) (-59.32194500000003 47.93054999999998) (-59.31639100000001 47.93415800000008) (-59.31138599999997 47.938881000000094) (-59.26777599999997 47.98220800000007) (-59.26500699999991 47.98804500000006) (-59.262778999999966 47.99943500000012) (-59.246947999999975 48.01194000000004) (-59.23027799999994 48.02276599999999) (-59.218605000000025 48.02916000000005) (-59.091384999999946 48.09027100000014) (-59.05388599999986 48.105552999999986) (-59.041114999999934 48.11027500000006) (-59.020554000000004 48.11638599999998) (-58.958054000000004 48.14999399999999) (-58.75 48.287498000000085) (-58.701392999999996 48.31971699999997) (-58.69110899999998 48.32888000000014) (-58.686385999999914 48.334160000000054) (-58.682503 48.34054600000013) (-58.678337 48.35193600000002) (-58.675835000000006 48.363051999999925) (-58.67027999999999 48.37499200000002) (-58.59888499999994 48.423325000000034) (-58.58777599999996 48.43055000000004) (-58.56889299999989 48.43859900000007) (-58.55583199999995 48.443047000000035) (-58.514725 48.45277399999998) (-58.50055699999996 48.45555100000007) (-58.492774999999995 48.45555100000007) (-58.492774999999995 48.4502720000001) (-58.49777999999998 48.44582400000013) (-58.51889 48.44137599999999) (-58.52610800000002 48.4405440000001) (-58.54639400000002 48.434990000000084) (-58.55889100000002 48.42971799999998) (-58.588889999999935 48.412765999999976) (-58.59999800000003 48.405823) (-58.601112 48.40082600000005) (-58.59194199999996 48.39887999999996) (-58.483611999999994 48.427773) (-58.47083299999997 48.43221299999999) (-58.464721999999995 48.43637799999999) (-58.449439999999925 48.449158000000125) (-58.4183349999999 48.48665599999998) (-58.42027999999999 48.508049000000085) (-58.56944999999996 48.53860500000002) (-58.673614999999984 48.55471000000006) (-58.682503 48.554993000000024) (-58.69721999999996 48.55304699999999) (-58.732215999999994 48.545830000000024) (-58.765556000000004 48.535828000000095) (-58.778052999999886 48.53193700000003) (-58.81249999999994 48.52388000000002) (-58.857506 48.51859999999999) (-58.931389000000024 48.51193999999998) (-58.95472000000001 48.51082599999995) (-58.97916399999997 48.51249700000005) (-58.988335000000006 48.51444200000003) (-59.004722999999956 48.52027100000004) (-59.013335999999924 48.522217000000126) (-59.09166700000003 48.50833100000011) (-59.10555999999997 48.50471500000009) (-59.118889000000024 48.50110600000005) (-59.146392999999875 48.49304999999998) (-59.19277199999999 48.47776799999997) (-59.232497999999964 48.468597000000045) (-59.246947999999975 48.46665999999999) (-59.25527999999997 48.467490999999995) (-59.260558999999944 48.47193100000004) (-59.26111599999996 48.476653999999996) (-59.23277300000001 48.52304800000013) (-59.228882 48.529160000000104) (-59.215003999999965 48.545547000000056) (-59.209998999999925 48.549995000000024) (-59.137504999999976 48.59887699999996) (-59.084166999999866 48.62638099999998) (-59.07778200000001 48.629158000000075) (-59.050277999999935 48.63555100000002) (-59.03055599999999 48.6419370000001) (-59.02416999999997 48.64471400000002) (-58.908889999999985 48.70193499999999) (-58.828888000000006 48.750832000000116) (-58.81166799999994 48.76166500000005) (-58.79972799999996 48.76805099999996) (-58.774719000000005 48.77887700000008) (-58.76777599999997 48.775551000000064) (-58.77249899999998 48.76998900000012) (-58.815001999999936 48.73582500000009) (-58.84972399999987 48.7149960000001) (-58.873885999999914 48.70165999999995) (-58.89111300000002 48.69082600000007) (-58.912773000000016 48.674713000000054) (-58.93860599999988 48.65360300000009) (-58.94777699999992 48.642769000000044) (-58.955832999999984 48.63027200000005) (-58.95861099999996 48.62416100000013) (-58.95861099999996 48.613883999999985) (-58.955832999999984 48.60943600000002) (-58.94749499999995 48.60110500000013) (-58.896950000000004 48.55193300000002) (-58.888335999999924 48.55110199999996) (-58.74305700000002 48.56082200000009) (-58.728332999999964 48.56249200000002) (-58.72138199999995 48.56443800000011) (-58.715003999999965 48.56721500000003) (-58.709442000000024 48.570831000000055) (-58.70444500000002 48.575271999999984) (-58.69554900000003 48.58693700000009) (-58.68332700000002 48.60582700000003) (-58.67666600000001 48.618050000000096) (-58.67250100000001 48.62943300000006) (-58.66999800000002 48.640831000000105) (-58.671386999999925 48.650825999999995) (-58.674171 48.65526600000004) (-58.67944299999999 48.66944100000012) (-58.68083200000001 48.68471500000004) (-58.658051 48.74304999999998) (-58.618331999999896 48.779716000000064) (-58.54389200000003 48.86082499999998) (-58.53583499999996 48.87860100000012) (-58.506667999999934 48.949431999999945) (-58.506667999999934 48.98054499999995) (-58.503333999999995 48.997490000000084) (-58.50083899999993 49.003608999999926) (-58.400832999999864 49.12748700000009) (-58.39611099999996 49.131377999999984) (-58.35194399999989 49.15026899999998) (-58.348884999999996 49.14582800000011) (-58.342967999999985 49.10020100000003) (-58.365635 49.07992200000007) (-58.368019000000004 49.061428000000035) (-58.35370299999994 49.05665600000003) (-58.31075299999992 49.068584000000044) (-58.29285799999997 49.07276200000007) (-58.24055499999997 49.0702740000001) (-58.17832199999998 49.063217000000066) (-58.143726000000015 49.04174000000012) (-58.09833500000002 48.99221799999998) (-58.08472399999994 48.98526800000013) (-58.07778199999996 48.98193400000014) (-58.06027999999992 48.97609699999998) (-58.05055199999998 48.973320000000115) (-57.99610899999999 48.96138000000002) (-57.961388 48.95665700000001) (-57.93860599999999 48.95832800000005) (-57.90166499999998 48.96276899999998) (-57.88805400000001 48.966102999999976) (-57.88166799999999 48.96888000000007) (-57.892226999999934 48.98165899999992) (-57.90055100000001 48.9847180000001) (-57.92944299999999 48.978874000000076) (-57.95861100000002 48.97609699999998) (-57.974716 48.97609699999998) (-58.00922399999996 48.98041500000005) (-58.02777900000001 48.98554999999999) (-58.03583499999996 48.98860200000013) (-58.05055199999998 48.99582700000002) (-58.09332999999998 49.025825999999995) (-58.103888999999924 49.033607000000075) (-58.10805499999992 49.03777299999996) (-58.135276999999974 49.08277100000004) (-58.144447000000014 49.12193300000007) (-58.122612000000004 49.124931000000004) (-58.119282 49.127102000000036) (-58.11560800000001 49.12910500000004) (-58.111110999999994 49.129771999999946) (-58.09477599999997 49.124603000000036) (-58.078776999999945 49.12176900000003) (-58.04944599999993 49.120270000000005) (-57.92555999999996 49.12304700000004) (-57.91861 49.12470999999999) (-57.91332999999997 49.12915800000013) (-57.88277399999993 49.157767999999976) (-57.87888299999997 49.17027300000012) (-57.89805599999994 49.15860000000009) (-57.912215999999944 49.15277100000009) (-57.92583499999989 49.14833100000004) (-57.939437999999996 49.144997000000046) (-57.94749499999995 49.144997000000046) (-58.05722000000003 49.144997000000046) (-58.075558 49.153271000000075) (-58.08105499999999 49.15443800000014) (-58.08605599999993 49.15626900000012) (-58.092555999999945 49.16093400000011) (-58.09589399999993 49.16627100000011) (-58.064055999999994 49.18335000000013) (-58.063057000000015 49.18545199999994) (-58.06545599999998 49.19041400000003) (-58.060622999999964 49.18858300000005) (-58.05495499999995 49.18758399999996) (-58.034957999999904 49.185749000000044) (-58.02545900000001 49.185749000000044) (-58.011292000000026 49.186252999999965) (-58.00245699999999 49.18825100000009) (-57.99562100000003 49.19207800000004) (-57.98878500000001 49.19724700000012) (-57.93221999999997 49.23416099999997) (-57.92805499999997 49.240273000000116) (-57.93638599999997 49.239716000000044) (-57.99516299999999 49.236885000000086) (-58.003330000000005 49.234215000000006) (-58.011662 49.23071299999998) (-58.031001999999944 49.22454800000003) (-58.03566399999994 49.22371300000003) (-58.049331999999936 49.222717000000046) (-58.05882999999994 49.223049) (-58.19193999999993 49.23638200000005) (-58.20083599999987 49.239716000000044) (-58.211945000000014 49.24721500000004) (-58.23388699999998 49.27304799999996) (-58.236663999999905 49.27748900000006) (-58.24083699999994 49.28694200000007) (-58.24194299999999 49.29166399999997) (-58.24194299999999 49.30221599999999) (-58.223327999999924 49.39027400000003) (-58.21639299999998 49.402488999999946) (-58.192497 49.42943600000007) (-58.15777600000001 49.46443900000003) (-58.152221999999995 49.468879999999956) (-58.04389200000003 49.541382000000056) (-58.03221899999994 49.54833200000007) (-58.01916499999987 49.55387900000005) (-57.99833699999999 49.559158000000025) (-57.97110700000002 49.554993000000024) (-57.91511200000002 49.532047000000034) (-57.91060999999996 49.53021600000005) (-57.903445999999974 49.525551000000064) (-57.861445999999944 49.505885999999975) (-57.74694799999992 49.45360600000009) (-57.71500400000002 49.454712000000086) (-57.707503999999915 49.45555100000007) (-57.70111099999997 49.458327999999995) (-57.69638800000001 49.46360800000002) (-57.69888300000002 49.468323000000055) (-57.705832999999984 49.47165700000005) (-57.788895000000025 49.500832000000116) (-57.86422299999998 49.534939000000065) (-57.86938900000001 49.53543900000005) (-57.87271900000002 49.53777300000007) (-57.94222300000001 49.60305000000011) (-57.94471699999997 49.60749800000008) (-57.95111099999991 49.65277100000014) (-57.95111099999991 49.65776800000009) (-57.94833399999993 49.674164000000076) (-57.935272 49.708602999999925) (-57.926391999999964 49.726379000000065) (-57.89999399999999 49.76221500000008) (-57.82916999999992 49.84554300000008) (-57.67111199999994 50.084160000000054) (-57.631667999999934 50.14471400000008) (-57.543334999999956 50.29833200000013) (-57.524445000000014 50.33416) (-57.52138499999995 50.345267999999976) (-57.52111100000002 50.35054800000006) (-57.51555599999995 50.37360400000006) (-57.50722499999995 50.390831000000105) (-57.49833699999999 50.408600000000035) (-57.490837 50.42083000000014) (-57.44860799999998 50.48610699999995) (-57.37722000000002 50.58443499999993) (-57.37249799999995 50.5908280000001) (-57.36111499999993 50.598602000000085) (-57.34166700000003 50.60749800000002) (-57.310059000000024 50.60894000000013) (-57.300220000000024 50.60977600000007) (-57.295559000000026 50.60927200000009) (-57.291225 50.60710500000005) (-57.27622200000002 50.60144000000008) (-57.24527699999999 50.59638200000006) (-57.22804999999994 50.594437000000084) (-57.204444999999964 50.596100000000035) (-57.17361499999993 50.60083000000003) (-57.166945999999996 50.6033250000001) (-57.161384999999996 50.60638400000005) (-57.15083299999992 50.61610400000012) (-57.148056 50.621933000000126) (-57.15471599999995 50.625549000000035) (-57.171943999999996 50.624992000000134) (-57.276442999999915 50.64071700000005) (-57.378608999999926 50.687767000000065) (-57.33416699999992 50.71193700000009) (-57.32500499999992 50.71166200000005) (-57.23694599999999 50.72721100000001) (-57.16249800000003 50.75110599999999) (-57.14833799999991 50.75610399999999) (-57.08943899999991 50.780548000000124) (-57.072501999999986 50.79388400000005) (-56.98305499999998 50.86832400000009) (-56.927498000000014 50.915824999999984) (-56.898056 51.01944000000009) (-56.89917000000003 51.02443699999998) (-56.90332799999999 51.02860300000009) (-56.90999599999998 51.03276800000009) (-56.927223000000026 51.03860500000002) (-56.964721999999995 51.04332700000009) (-56.92166900000001 51.0513840000001) (-56.89222699999999 51.060272000000055) (-56.879996999999946 51.06554399999999) (-56.78444699999994 51.137771999999984) (-56.781386999999995 51.14360800000003) (-56.78194400000001 51.14916200000005) (-56.785278000000005 51.153046000000074) (-56.793334999999956 51.16137700000013) (-56.80972300000002 51.18360100000007) (-56.79389200000003 51.23998999999992) (-56.74416400000001 51.29305299999993) (-56.738609 51.298881999999935) (-56.733330000000024 51.302773) (-56.68250299999994 51.3394320000001) (-56.623885999999914 51.366386000000034) (-56.616942999999935 51.368881000000044) (-56.512504999999976 51.40221400000007) (-56.47666199999992 51.411658999999986) (-56.461945000000014 51.41499299999998) (-56.45416999999992 51.415543000000014) (-56.27138499999995 51.47165699999999) (-56.110557999999855 51.52387999999996) (-56.011391 51.56638300000003) (-55.99833699999999 51.572220000000016) (-55.96028100000001 51.59388000000001) (-55.943329000000006 51.60638400000005) (-55.918609999999944 51.62110100000001) (-55.90555599999999 51.626937999999996) (-55.898056 51.62860100000012) (-55.89028200000001 51.629433000000006) (-55.83777599999996 51.621376000000055) (-55.84638999999993 51.60193600000008) (-55.85777999999999 51.59332300000011) (-55.88500199999993 51.562492000000134) (-55.88666499999994 51.556938) (-55.88694800000002 51.55193300000013) (-55.88722200000001 51.50027499999999) (-55.886116000000015 51.49527000000012) (-55.87777699999998 51.49221800000004) (-55.69444299999998 51.48110200000008) (-55.63999899999999 51.481934000000024) (-55.648612999999955 51.48526799999996) (-55.68360899999999 51.5) (-55.729720999999984 51.54332700000003) (-55.737503000000004 51.552490000000034) (-55.73916600000001 51.55665600000009) (-55.73860899999994 51.567214999999976) (-55.735274999999945 51.57305100000002) (-55.724716 51.58360300000004) (-55.718605000000025 51.58721200000002) (-55.65332799999999 51.59054600000002) (-55.63166799999999 51.569717000000026) (-55.625 51.5655440000001) (-55.59861000000001 51.56137799999999) (-55.589721999999995 51.56027199999994) (-55.58138999999994 51.56027199999994) (-55.57444800000002 51.56276700000001) (-55.54750100000001 51.584991000000116) (-55.51583899999997 51.60221900000005) (-55.45861099999996 51.59221600000001) (-55.41111000000001 51.580826000000116) (-55.40555599999999 51.57694200000009) (-55.40444200000002 51.5719380000001) (-55.40527300000002 51.56166100000013) (-55.40694400000001 51.55609900000002) (-55.454444999999964 51.45526899999999) (-55.49222600000002 51.37776900000006) (-55.50805700000001 51.36332700000008) (-55.597778000000005 51.303604000000064) (-55.612777999999935 51.30110200000013) (-55.62222300000002 51.30332199999998) (-55.70278200000001 51.32804900000008) (-55.82055700000001 51.35083000000009) (-56.030555999999876 51.37860099999995) (-56.07833899999997 51.36971299999999) (-56.085556 51.36832399999997) (-56.096389999999985 51.318329000000006) (-56.025557999999876 51.23832700000003) (-56.01225299999999 51.21233700000005) (-55.99256100000002 51.17657500000013) (-55.95944199999997 51.19748700000008) (-55.85139499999997 51.22693600000002) (-55.83777599999996 51.23054500000006) (-55.76916499999999 51.216934000000094) (-55.76083399999999 51.213881999999955) (-55.72610500000002 51.190544000000045) (-55.71277600000002 51.17804700000005) (-55.70999899999998 51.17360700000006) (-55.71916199999998 51.12304700000004) (-55.732497999999964 51.07999400000011) (-55.73555799999991 51.07416500000011) (-55.75111399999997 51.05832700000008) (-55.75695000000002 51.05387900000011) (-55.796111999999994 51.03916200000009) (-55.80555700000002 51.00916300000006) (-55.85916900000001 50.94249000000002) (-55.99944299999987 50.788605000000075) (-56.068893 50.72443400000009) (-56.09227800000002 50.72571600000009) (-56.097279000000015 50.72588000000002) (-56.10127999999992 50.72804599999995) (-56.125832 50.754166000000055) (-56.130829000000006 50.763329000000056) (-56.133331 50.77304800000002) (-56.128052000000025 50.84638200000006) (-56.12222300000002 50.8638840000001) (-56.11972000000003 50.86915600000003) (-56.116394000000014 50.87499200000008) (-56.107223999999974 50.88721499999997) (-56.10388899999998 50.893326) (-56.10388899999998 50.89833100000004) (-56.107779999999934 50.90277100000009) (-56.12222300000002 50.89943700000009) (-56.14305899999994 50.89249400000011) (-56.155272999999966 50.885551000000135) (-56.1725009999999 50.85582700000009) (-56.15721899999994 50.69082600000007) (-56.141272999999956 50.6710470000001) (-56.13577699999996 50.66988400000014) (-56.16332999999992 50.61776700000007) (-56.25861400000002 50.502777000000094) (-56.32361599999996 50.446380999999974) (-56.42305799999991 50.352776000000006) (-56.42194399999994 50.34777100000014) (-56.42222600000002 50.34249100000005) (-56.423614999999984 50.33693700000009) (-56.42666600000001 50.331108000000086) (-56.462501999999915 50.272217000000126) (-56.50194499999992 50.214439000000084) (-56.51194799999996 50.20360600000009) (-56.55583200000001 50.16749600000003) (-56.635276999999974 50.10638399999999) (-56.743056999999965 50.022766000000104) (-56.76750199999992 49.96221200000008) (-56.778610000000015 49.933876) (-56.78194400000001 49.91749600000003) (-56.77500199999997 49.91915899999998) (-56.726661999999976 49.91610000000003) (-56.75984599999998 49.837275999999974) (-56.82790399999999 49.78500000000008) (-56.86686300000002 49.777603) (-56.90533099999999 49.74752000000012) (-56.82099900000003 49.74209600000006) (-56.78400799999997 49.731243000000006) (-56.78277600000001 49.69082600000007) (-56.815552000000025 49.59499400000004) (-56.818610999999976 49.58888200000001) (-56.84888499999994 49.544441000000006) (-56.84305599999993 49.548050000000046) (-56.826667999999984 49.56276700000001) (-56.78277600000001 49.60999300000009) (-56.76306199999999 49.63137800000004) (-56.749167999999884 49.64916199999999) (-56.73555799999997 49.66693900000001) (-56.71250199999997 49.696380999999974) (-56.67777999999993 49.73360400000013) (-56.598609999999894 49.81193500000006) (-56.56138599999997 49.84221599999995) (-56.477776000000006 49.89222000000001) (-56.46416499999992 49.89638500000001) (-56.43194599999998 49.890549000000135) (-56.412216 49.90971400000012) (-56.38805400000001 49.94304700000009) (-56.38500199999993 49.94915800000001) (-56.330284000000006 50.024994000000106) (-56.32417299999997 50.029990999999995) (-56.23777799999999 50.10027300000007) (-56.22083299999997 50.112495000000024) (-56.20889299999999 50.12027000000012) (-56.160278000000005 50.148048000000074) (-56.153884999999946 50.150543000000084) (-56.13249999999999 50.155548000000124) (-56.12471800000003 50.15638000000007) (-56.116660999999965 50.153046000000074) (-56.067222999999956 50.096382000000006) (-56.065001999999936 50.091377000000136) (-56.00500499999998 50.03138000000001) (-55.938605999999936 50.03638500000005) (-55.90527300000002 50.03388200000006) (-55.89611100000002 50.031937000000084) (-55.881110999999976 50.024994000000106) (-55.853888999999924 50.005554000000075) (-55.84610699999996 49.996940999999936) (-55.845275999999956 49.99221799999998) (-55.845551 49.986938000000066) (-55.84416199999998 49.98193400000014) (-55.840836000000024 49.977211000000125) (-55.83000199999998 49.969154) (-55.75500499999987 49.92416400000002) (-55.74610899999993 49.923050000000046) (-55.58721899999995 49.96415700000006) (-55.55610699999994 49.98027000000013) (-55.54389200000003 49.98721300000011) (-55.527221999999995 50.0002750000001) (-55.49169899999998 50.00730900000002) (-55.46333299999998 49.96693399999998) (-55.460830999999985 49.96221200000008) (-55.45972399999994 49.957497000000046) (-55.46028100000001 49.95221699999996) (-55.46500400000002 49.940826000000015) (-55.47527299999996 49.93027500000011) (-55.49222600000002 49.91721300000006) (-55.511391 49.908882000000006) (-55.659163999999976 49.84777100000008) (-55.84305599999993 49.78833000000009) (-55.98611499999987 49.74694099999999) (-56.11527999999993 49.63999200000012) (-56.124168 49.61332700000008) (-56.050551999999925 49.66638200000011) (-56.044448999999986 49.669990999999925) (-55.963889999999935 49.698601) (-55.957779000000016 49.70027200000004) (-55.89389 49.714157000000114) (-55.833327999999995 49.68665299999992) (-55.88027999999997 49.584990999999945) (-55.93544399999996 49.54399100000012) (-55.94544199999996 49.536159999999995) (-55.95344499999999 49.533660999999995) (-55.971607000000006 49.531826000000024) (-55.980278 49.53049500000003) (-56.03527799999995 49.50666000000007) (-56.08000199999992 49.48693800000001) (-56.12749500000001 49.43110700000011) (-56.129166 49.42555200000004) (-56.12277199999994 49.421379000000115) (-56.073891 49.434432999999956) (-56.06221800000003 49.440544000000045) (-56.02527599999996 49.46110500000009) (-56.02027899999996 49.46499599999993) (-56.005279999999914 49.48082000000005) (-55.99972500000001 49.48526800000002) (-55.96305499999994 49.496155000000044) (-55.91705300000001 49.50749600000012) (-55.87471799999997 49.51721200000003) (-55.82778199999996 49.5241620000001) (-55.783332999999914 49.511940000000095) (-55.775001999999915 49.50860599999993) (-55.72499799999997 49.47943100000009) (-55.72083299999997 49.47582200000005) (-55.725554999999986 49.47054300000008) (-55.72277100000002 49.45388000000003) (-55.67833699999994 49.38694000000004) (-55.67305799999997 49.38304900000014) (-55.664444 49.381935) (-55.65638699999994 49.38221000000004) (-55.65027599999996 49.384162999999944) (-55.639167999999984 49.392769000000044) (-55.63611599999996 49.39860499999992) (-55.637778999999966 49.40915700000011) (-55.637778999999966 49.413605000000075) (-55.63611599999996 49.41915900000009) (-55.58916499999992 49.46249400000005) (-55.56027999999998 49.482490999999925) (-55.55388599999992 49.48499300000003) (-55.54695099999998 49.48638199999999) (-55.53167000000002 49.487770000000125) (-55.523056 49.486655999999925) (-55.522223999999994 49.481934000000024) (-55.56639099999995 49.40915700000011) (-55.572776999999974 49.376656000000025) (-55.573058999999944 49.371658000000025) (-55.57055699999995 49.36693600000012) (-55.566666 49.36277000000001) (-55.55999800000001 49.365273) (-55.55471799999992 49.36971300000005) (-55.539443999999946 49.38555100000008) (-55.52972399999999 49.396942000000024) (-55.528053 49.402488999999946) (-55.528885 49.408043000000134) (-55.52916699999997 49.42332499999998) (-55.52638999999999 49.42860399999995) (-55.49610899999999 49.45388000000003) (-55.441666 49.491104000000064) (-55.430282999999974 49.498878000000104) (-55.37749500000001 49.50360900000004) (-55.36944599999998 49.50332600000007) (-55.34927699999997 49.468159000000014) (-55.33294699999993 49.41648900000013) (-55.33577699999995 49.388161000000025) (-55.333610999999905 49.35916100000003) (-55.33860800000002 49.35527000000013) (-55.336112999999955 49.35082999999997) (-55.315276999999924 49.31443799999994) (-55.31099699999993 49.35593799999998) (-55.30683099999993 49.356772999999976) (-55.274834 49.385605000000055) (-55.26750199999998 49.39660300000003) (-55.2645 49.40343500000006) (-55.264336000000014 49.406441000000086) (-55.26666999999986 49.40910300000007) (-55.269833000000006 49.41143800000003) (-55.28083800000002 49.41443600000008) (-55.28317299999992 49.41693500000008) (-55.31000099999994 49.48477200000002) (-55.310832999999946 49.487770000000125) (-55.30555700000002 49.53443900000008) (-55.261390999999946 49.54110700000007) (-55.14972699999993 49.546387000000095) (-55.14111299999996 49.54527300000012) (-55.13722200000001 49.540833000000134) (-55.123328999999956 49.49694100000005) (-55.12471799999997 49.46527100000014) (-55.22110700000002 49.26193999999998) (-55.231109999999944 49.251389000000074) (-55.23722099999998 49.24804699999993) (-55.29639400000002 49.22637900000001) (-55.315001999999936 49.216933999999924) (-55.365837 49.16526800000008) (-55.36916400000001 49.1594310000001) (-55.36944599999998 49.15416000000005) (-55.36000100000001 49.15138200000007) (-55.34749599999998 49.157211000000075) (-55.339721999999995 49.15860000000009) (-55.33167300000002 49.156654) (-55.32361599999996 49.153602999999976) (-55.319449999999904 49.14916200000005) (-55.30721999999997 49.104996000000085) (-55.30777699999999 49.0991590000001) (-55.31750499999998 49.08776900000004) (-55.323059 49.08332799999994) (-55.383331 49.04083300000002) (-55.345551 49.05777000000006) (-55.27222399999994 49.099998000000085) (-55.277495999999985 49.10388200000011) (-55.282501000000025 49.11305199999998) (-55.283332999999914 49.11804999999998) (-55.288054999999986 49.182495000000074) (-55.288054999999986 49.18721000000011) (-55.285004000000015 49.19304700000009) (-55.28055599999993 49.199157999999954) (-55.27527599999996 49.204436999999984) (-55.148056 49.259995) (-55.08111600000001 49.28388200000006) (-55.08167300000002 49.345825000000104) (-55.08138999999994 49.35110500000013) (-55.07805599999995 49.356941000000006) (-55.06945000000002 49.3555530000001) (-55.01028400000001 49.32388300000002) (-54.989998000000014 49.28694200000007) (-54.99055499999997 49.28166200000004) (-54.82444800000002 49.269157000000064) (-54.817779999999914 49.271660000000054) (-54.78750600000001 49.28860500000002) (-54.78194400000001 49.29277000000002) (-54.67972599999996 49.37999000000002) (-54.65833299999997 49.39916200000005) (-54.648056 49.40943100000004) (-54.641388000000006 49.42110400000007) (-54.64389 49.42582700000008) (-54.579726999999934 49.494713000000104) (-54.541114999999934 49.526657000000114) (-54.528885 49.53333300000003) (-54.52111100000002 49.533882000000006) (-54.474716 49.53499599999998) (-54.431945999999925 49.47082499999999) (-54.43083199999995 49.465828000000045) (-54.45055400000001 49.427773000000116) (-54.483330000000024 49.36193800000012) (-54.49361399999998 49.26805100000007) (-54.49250000000001 49.263611000000026) (-54.48694599999999 49.25971999999996) (-54.48055299999993 49.262215000000026) (-54.474716 49.266662999999994) (-54.40638699999994 49.32083100000011) (-54.40083299999992 49.32527200000004) (-54.39917000000003 49.330551000000014) (-54.410278000000005 49.34360500000008) (-54.412773000000016 49.34804500000007) (-54.413612 49.35304999999994) (-54.407501000000025 49.37471000000011) (-54.40416700000003 49.38054700000009) (-54.395003999999915 49.392769000000044) (-54.38027999999997 49.40888200000012) (-54.36999499999996 49.41915900000009) (-54.36416600000001 49.42360700000006) (-54.35805499999998 49.426941000000056) (-54.32527900000002 49.42388200000005) (-54.24888599999997 49.397490999999945) (-54.186661000000015 49.371101000000124) (-54.17888599999992 49.37082700000002) (-54.1661069999999 49.3780440000001) (-54.1619419999999 49.38360600000004) (-54.15582999999998 49.40526600000004) (-54.15332799999993 49.416100000000085) (-54.15193899999991 49.427216000000044) (-54.14833799999997 49.437492000000134) (-54.145279000000016 49.44332099999997) (-54.13999899999993 49.44860100000005) (-54.13388800000001 49.45193499999999) (-54.04888900000003 49.47943100000009) (-54.04167199999995 49.48082000000005) (-53.91999800000002 49.44776900000011) (-53.77500199999997 49.39610300000004) (-53.67333199999996 49.34304800000001) (-53.511116000000015 49.27721400000007) (-53.48860899999994 49.220543000000134) (-53.58833299999998 49.04083300000002) (-53.593886999999995 49.03555299999999) (-53.66194200000001 49.03221100000002) (-53.71472199999994 49.02915999999999) (-53.80444299999999 49.02221700000001) (-53.78527799999995 49.01110799999992) (-53.731667000000016 49.013329000000056) (-53.725273000000016 49.009720000000016) (-53.73666400000002 49.00110599999999) (-53.742774999999995 48.997772) (-53.74916799999994 48.99527000000012) (-53.77027899999996 48.98943300000013) (-53.80361199999999 48.97804300000007) (-53.81305699999996 48.93888100000004) (-53.974441999999954 48.84777100000008) (-54.02138499999995 48.833327999999995) (-54.09610699999996 48.81221000000011) (-53.92027999999999 48.834991000000116) (-53.89917000000003 48.83804300000003) (-53.875557000000015 48.836937000000034) (-53.82944500000002 48.83138300000002) (-53.82055699999995 48.82943699999993) (-53.800835000000006 48.81276700000001) (-53.802223000000026 48.80777000000006) (-53.84527600000001 48.766936999999984) (-53.86777499999994 48.75) (-53.89055599999989 48.733604000000014) (-53.89722399999994 48.73137700000012) (-53.93221999999997 48.71393599999999) (-53.95055400000001 48.67083000000014) (-53.93250299999994 48.62471000000011) (-53.92444599999999 48.62443500000006) (-53.91722099999993 48.62499199999996) (-53.88861099999997 48.631660000000124) (-53.88277399999993 48.63360600000004) (-53.869163999999955 48.638885000000016) (-53.857223999999974 48.64415700000012) (-53.79555499999992 48.67582700000003) (-53.79000100000002 48.67999300000014) (-53.79888900000003 48.682213000000104) (-53.81777999999997 48.67388200000005) (-53.83139 48.66999099999998) (-53.85278299999993 48.66638199999994) (-53.896950000000004 48.66220900000002) (-53.91305499999993 48.663605000000075) (-53.92083699999995 48.667213000000004) (-53.92444599999999 48.67137900000006) (-53.892058999999904 48.68293800000009) (-53.88722599999994 48.690102000000024) (-53.884052 48.69310000000013) (-53.88055400000002 48.69509900000014) (-53.85755899999998 48.70493700000003) (-53.75917099999998 48.71415699999994) (-53.618056999999965 48.69443500000011) (-53.61000100000001 48.69304699999998) (-53.601943999999946 48.68971300000004) (-53.599723999999924 48.68499000000003) (-53.603888999999924 48.674164000000076) (-53.61000100000001 48.668602000000135) (-53.645835999999974 48.648330999999985) (-53.65860700000002 48.6419370000001) (-53.67194399999994 48.63860299999993) (-53.72888199999994 48.62943300000006) (-53.779998999999975 48.62360400000006) (-53.787780999999995 48.622490000000084) (-53.92833699999994 48.575829000000056) (-53.93332700000002 48.57222000000007) (-53.951392999999996 48.549995000000024) (-53.956107999999915 48.54388399999999) (-53.95249899999993 48.53943600000002) (-53.9441599999999 48.53971899999999) (-53.93221999999997 48.544998000000135) (-53.91999800000002 48.551659000000086) (-53.914444 48.55582400000009) (-53.908332999999914 48.559158000000025) (-53.901389999999935 48.56220999999999) (-53.89500399999986 48.56304899999992) (-53.804169 48.56805399999996) (-53.78805499999993 48.56638300000009) (-53.74639100000002 48.55860099999995) (-53.74694799999992 48.52332299999995) (-53.74888599999997 48.51332900000011) (-53.750838999999985 48.50777400000004) (-53.756366999999955 48.50326200000012)) ((-127.91443599999991 51.41082) (-127.92443799999995 51.41027100000008) (-128.06527700000004 51.464157000000114) (-128.07583599999998 51.47054300000002) (-128.08111599999995 51.47470900000013) (-128.15307599999988 51.601661999999976) (-128.15417499999995 51.60582699999998) (-128.15280199999995 51.638046000000145) (-128.15249600000004 51.64193700000004) (-128.15029899999996 51.64749100000006) (-128.14556900000002 51.65360300000003) (-128.136414 51.6616590000001) (-128.01306199999993 51.72137500000008) (-128.00527999999997 51.72332000000006) (-128 51.720542999999964) (-127.99694799999997 51.71415700000006) (-127.99804699999999 51.71166200000005) (-127.995003 51.7052690000001) (-127.98388699999998 51.68249500000013) (-127.96749899999992 51.65193199999999) (-127.951683 51.633880999999974) (-127.93776699999995 51.621933000000126) (-127.92639199999996 51.60888699999998) (-127.91999800000002 51.60054799999995) (-127.90556300000003 51.55971500000004) (-127.87361099999993 51.46443900000003) (-127.87193300000001 51.45193499999999) (-127.87332200000003 51.44776900000005) (-127.87666299999995 51.44304699999998) (-127.90444899999994 51.41471100000007) (-127.91443599999991 51.41082)) ((-55.36750000000001 51.874161000000015) (-55.37471800000003 51.87387800000005) (-55.38221699999991 51.875267000000065) (-55.42888599999998 51.884163) (-55.43000000000001 51.88582600000012) (-55.43111399999992 51.887771999999984) (-55.43055700000002 51.89666) (-55.42610899999994 51.905823) (-55.42333199999996 51.9094310000001) (-55.38777900000002 51.942764000000125) (-55.35361499999999 51.96360800000008) (-55.30139200000002 51.99305000000004) (-55.283889999999985 52.001389000000074) (-55.27722199999994 52.00249500000007) (-55.26999699999999 52.000549000000035) (-55.26888999999994 51.998604) (-55.26750199999998 51.993881000000044) (-55.27417000000003 51.97693600000008) (-55.27417000000003 51.975548) (-55.28194400000001 51.961937000000034) (-55.295005999999944 51.943321000000026) (-55.30222299999997 51.93332699999996) (-55.33250399999997 51.89638499999995) (-55.342223999999874 51.88638300000002) (-55.35472099999993 51.87804399999999) (-55.36000100000001 51.87582400000014) (-55.36750000000001 51.874161000000015)) ((-128.053894 51.7536090000001) (-128.11972000000003 51.74166100000008) (-128.13192699999996 51.7438810000001) (-128.13613899999996 51.74665799999997) (-128.25445599999995 51.86582900000002) (-128.25308199999995 51.87221499999998) (-128.22222899999997 51.953323000000125) (-128.21749899999998 51.962769000000094) (-128.177795 52.00833099999994) (-128.150848 52.03527100000002) (-128.14529400000004 52.03860500000002) (-128.107758 52.051659000000086) (-128.06082200000003 52.05638099999999) (-127.99582699999996 52.062767000000065) (-127.98332199999993 52.06193499999995) (-127.96028100000001 52.05554999999998) (-127.95472699999999 52.05332199999998) (-127.95121799999998 52.04691300000013) (-127.95140100000003 52.03054800000001) (-127.95472699999999 51.981101999999964) (-128.00723299999993 51.782493999999986) (-128.00946 51.7783280000001) (-128.01306199999993 51.77360500000009) (-128.018616 51.77027100000009) (-128.03582800000004 51.760826000000066) (-128.053894 51.7536090000001)) ((-79.252792 52.07138099999992) (-79.31973299999999 51.96998600000006) (-79.36444099999994 51.942214999999976) (-79.370544 51.938599000000124) (-79.37666300000001 51.93610400000006) (-79.38583399999999 51.935546999999985) (-79.42361499999987 51.93693500000006) (-79.43331899999987 51.93832400000008) (-79.45056199999988 51.942214999999976) (-79.50111400000003 51.942489999999964) (-79.56834400000002 51.935546999999985) (-79.57667500000002 51.934158000000025) (-79.591949 51.92276800000013) (-79.604446 51.91666400000008) (-79.61166400000002 51.91443600000014) (-79.61776700000001 51.91777000000013) (-79.62138399999998 51.9222180000001) (-79.65278599999999 51.981101999999964) (-79.65417500000001 51.98665599999998) (-79.65083299999998 51.99193600000007) (-79.633896 52.01749399999994) (-79.62943999999999 52.022217000000126) (-79.62332200000003 52.02526900000004) (-79.61471599999993 52.02304800000013) (-79.608612 52.01998900000001) (-79.60388199999994 52.016106000000036) (-79.596115 52.013611000000026) (-79.58528100000001 52.01277200000004) (-79.56777999999997 52.0149990000001) (-79.53832999999997 52.023323000000005) (-79.40888999999999 52.071938000000046) (-79.39666699999987 52.07721700000002) (-79.38389599999994 52.09082799999999) (-79.345551 52.10860400000013) (-79.33833299999998 52.110275) (-79.29722599999997 52.09193399999998) (-79.27722199999988 52.090546000000074) (-79.26972999999992 52.08776899999998) (-79.26362599999999 52.083878000000084) (-79.252792 52.07138099999992)) ((-131.01889 51.94609800000006) (-131.02166699999998 51.94082599999996) (-131.029175 51.94137599999999) (-131.03695700000003 51.944435) (-131.04861499999998 51.951385000000016) (-131.074158 51.970543000000134) (-131.09500099999997 51.98998999999998) (-131.10165399999994 52.00277699999998) (-131.120544 52.05554999999998) (-131.12719699999997 52.09554300000002) (-131.126373 52.106941000000006) (-131.122498 52.12471000000011) (-131.116394 52.14804800000002) (-131.11026000000004 52.15109999999993) (-131.10192899999998 52.151932000000045) (-131.0836179999999 52.15138200000001) (-131.07720900000004 52.15026899999992) (-131.00946 52.102776000000006) (-130.9924929999999 52.06082200000009) (-131.00473 52.00582900000006) (-131.01889 51.94609800000006)) ((-127.96278399999989 52.07471499999991) (-128.05111699999992 52.07416500000005) (-128.062225 52.074996999999996) (-128.07638499999996 52.07999400000011) (-128.09387199999998 52.090546000000074) (-128.105835 52.100273000000016) (-128.10888699999992 52.10527000000013) (-128.12081899999998 52.14193699999993) (-128.11471599999987 52.14916199999999) (-128.10693400000002 52.15248900000012) (-128.03167699999995 52.163292000000126) (-128.01583900000003 52.164711000000125) (-127.89111299999996 52.17166099999997) (-127.881104 52.17221800000004) (-127.87917299999998 52.166664000000026) (-127.88971700000002 52.13110399999999) (-127.89334100000002 52.12693800000005) (-127.943604 52.07916300000005) (-127.94721999999996 52.07582900000011) (-127.96278399999989 52.07471499999991)) ((-128.21194499999996 52.015549000000135) (-128.220825 52.01444200000003) (-128.23858599999994 52.014717000000076) (-128.2463679999999 52.01666299999994) (-128.25308199999995 52.019714000000135) (-128.29110699999995 52.10193600000014) (-128.29415899999998 52.113609) (-128.29168700000002 52.1188810000001) (-128.25280799999996 52.17137900000006) (-128.24444600000004 52.17999300000014) (-128.23971599999993 52.18415800000014) (-128.23193399999997 52.187492000000134) (-128.18804899999998 52.19360400000011) (-128.16223100000002 52.196655000000135) (-128.15307599999988 52.195267) (-128.14779699999997 52.19165800000002) (-128.14584399999995 52.186104) (-128.1480709999999 52.18332700000013) (-128.154724 52.15943100000004) (-128.15612799999997 52.15332000000012) (-128.15862999999996 52.11971299999999) (-128.154449 52.10860400000013) (-128.15139799999997 52.103882000000056) (-128.14752199999998 52.0927660000001) (-128.15112299999993 52.081108000000086) (-128.206116 52.01888300000013) (-128.21194499999996 52.015549000000135)) ((-128.42834499999992 52.13749700000011) (-128.44415300000003 52.134163000000115) (-128.44638099999997 52.13499500000006) (-128.50472999999994 52.16027100000008) (-128.50918599999994 52.16443600000008) (-128.51113899999996 52.16999099999998) (-128.50863600000002 52.17555200000004) (-128.50527999999997 52.180274999999995) (-128.50058 52.18415800000014) (-128.45138499999996 52.21720900000008) (-128.448059 52.21915400000006) (-128.43331899999998 52.22332) (-128.41641200000004 52.22637900000012) (-128.40972899999997 52.224991000000045) (-128.40640299999995 52.2227630000001) (-128.40527299999997 52.21859699999999) (-128.4100039999999 52.21471400000007) (-128.40777599999996 52.15277100000003) (-128.408905 52.149437000000034) (-128.41363499999994 52.14527099999992) (-128.42834499999992 52.13749700000011)) ((-128.29998799999998 52.13360600000004) (-128.308044 52.12887599999999) (-128.313629 52.129714999999976) (-128.36499000000003 52.1624910000001) (-128.37304699999999 52.18526500000007) (-128.378601 52.21360800000002) (-128.37832599999996 52.22026800000003) (-128.3771969999999 52.22387700000007) (-128.37027 52.22860000000003) (-128.35665900000004 52.23582500000009) (-128.345276 52.238602000000014) (-128.29724099999999 52.237213) (-128.23721299999994 52.222488000000055) (-128.22943099999998 52.22026800000003) (-128.22720300000003 52.21888000000013) (-128.22610499999996 52.21693400000004) (-128.22747799999996 52.21276900000004) (-128.22997999999995 52.2094350000001) (-128.29998799999998 52.13360600000004)) ((-81.476944 52.24916100000007) (-81.48582499999992 52.248329000000126) (-81.646118 52.25138900000002) (-81.68749999999994 52.25499700000012) (-81.70611599999995 52.25804900000003) (-81.71000700000002 52.262496999999996) (-81.69583099999994 52.26721200000003) (-81.57806399999998 52.29471600000005) (-81.55166600000001 52.298050000000046) (-81.541672 52.29666100000003) (-81.49305700000002 52.28388199999995) (-81.48055999999997 52.277489) (-81.475281 52.27388000000002) (-81.47166400000003 52.268051000000014) (-81.46806300000003 52.26305400000007) (-81.46777299999997 52.25694299999998) (-81.47083999999995 52.25222000000002) (-81.476944 52.24916100000007)) ((-127.924713 52.17416400000013) (-127.93360899999999 52.17304999999993) (-128.036407 52.17748999999998) (-128.05416899999994 52.18055000000004) (-128.07971199999997 52.186377999999934) (-128.08639500000004 52.18859900000007) (-128.0927729999999 52.19221500000009) (-128.16696199999996 52.244713000000104) (-128.17001299999998 52.24971800000014) (-128.15862999999996 52.25638600000008) (-128.06945799999994 52.29471600000005) (-128.0477909999999 52.30054500000006) (-128.04000899999994 52.30165900000003) (-127.97944599999994 52.29666100000003) (-127.972778 52.29527300000012) (-127.96193700000003 52.28943600000014) (-127.95861799999989 52.28749800000003) (-127.95111099999997 52.279716000000064) (-127.90943899999996 52.21027400000003) (-127.90750100000002 52.204712000000086) (-127.90666199999998 52.198601) (-127.91055299999988 52.186377999999934) (-127.91776999999996 52.176941) (-127.924713 52.17416400000013)) ((-128.18444799999992 52.278602999999976) (-128.20361299999996 52.277489) (-128.21026599999993 52.27832799999999) (-128.21362299999998 52.279716000000064) (-128.18917799999986 52.330826000000116) (-128.18307499999997 52.33971400000013) (-128.11471599999987 52.41832700000009) (-128.11111499999998 52.421661000000086) (-128.10443099999992 52.421379) (-128.0999759999999 52.418602000000135) (-128.093597 52.41165899999993) (-128.09249899999998 52.408324999999934) (-128.085266 52.396385000000066) (-128.05917399999998 52.35221900000005) (-128.05694600000004 52.346100000000035) (-128.05526699999996 52.334991000000116) (-128.05667099999994 52.32888000000008) (-128.061401 52.32471500000008) (-128.151947 52.282211000000075) (-128.18444799999992 52.278602999999976)) ((-127.72444199999995 51.97693600000008) (-127.8708269999999 51.944709999999986) (-127.87970699999994 51.94499200000007) (-127.886124 51.947768999999994) (-127.89167800000001 51.951385000000016) (-127.89472999999992 51.95610000000005) (-127.89943700000003 51.97332) (-127.90110799999991 51.98582499999998) (-127.90055799999988 51.999435000000005) (-127.881104 52.07888000000008) (-127.87361099999993 52.09499400000004) (-127.85138699999999 52.14138000000003) (-127.82833900000003 52.17582700000003) (-127.817497 52.191375999999934) (-127.79750100000001 52.213882000000126) (-127.78916899999996 52.221930999999984) (-127.75334199999998 52.24582700000008) (-127.74527 52.247772000000055) (-127.699997 52.25721699999991) (-127.68083199999995 52.25888800000001) (-127.65943900000002 52.259163) (-127.65055799999999 52.260276999999974) (-127.58640300000002 52.28110500000008) (-127.516663 52.30443600000012) (-127.51000999999985 52.306938) (-127.46056399999998 52.34582499999999) (-127.45694700000001 52.350548) (-127.45612299999988 52.362213000000054) (-127.45694700000001 52.36832400000014) (-127.45333900000003 52.37304699999993) (-127.4177699999999 52.38526900000011) (-127.36277799999999 52.403876999999966) (-127.26390100000003 52.43665300000009) (-127.25945300000001 52.435265000000015) (-127.23473399999995 52.41693900000001) (-127.20777899999996 52.34471100000002) (-127.21056399999992 52.33526599999999) (-127.218887 52.325829000000056) (-127.23222399999992 52.31304900000009) (-127.24749800000001 52.30193300000013) (-127.27084399999995 52.28860500000013) (-127.28916899999996 52.27943399999998) (-127.30304699999999 52.27416200000005) (-127.30999800000001 52.27166) (-127.32584400000002 52.268051000000014) (-127.36193800000001 52.26471700000002) (-127.42582699999997 52.24610100000001) (-127.43971299999993 52.240829000000076) (-127.44526699999994 52.23832699999997) (-127.57972699999999 52.177216000000044) (-127.58444199999991 52.17332499999998) (-127.58805799999999 52.167770000000075) (-127.59631300000001 52.151793999999995) (-127.65416700000003 52.12387799999999) (-127.68694299999993 52.074440000000095) (-127.69193999999993 52.06360600000005) (-127.70111099999991 52.04110700000007) (-127.703888 52.028877000000136) (-127.699997 52.01776899999999) (-127.69915799999995 52.01138300000008) (-127.699432 52.00471500000009) (-127.70194999999995 51.998604) (-127.708054 51.98832700000003) (-127.71749899999998 51.980270000000075) (-127.72444199999995 51.97693600000008)) ((-128.66860999999994 52.26638800000006) (-128.67556799999994 52.26638800000006) (-128.72055099999994 52.306938) (-128.724152 52.31137800000005) (-128.72637899999995 52.316101) (-128.74832200000003 52.36915600000009) (-128.76196299999998 52.41832700000009) (-128.76251200000002 52.42332500000009) (-128.76196299999998 52.429160999999965) (-128.759186 52.449432) (-128.75280799999996 52.4677660000001) (-128.74722299999996 52.47165699999999) (-128.6813959999999 52.48220800000007) (-128.674438 52.48220800000007) (-128.65029899999996 52.47443400000009) (-128.63696299999992 52.4685970000001) (-128.624146 52.4616620000001) (-128.61914099999996 52.45777100000004) (-128.615814 52.453606000000036) (-128.61608899999993 52.44860099999994) (-128.61331199999995 52.364441000000056) (-128.61471599999993 52.3533250000001) (-128.61776699999996 52.329994000000056) (-128.61999500000002 52.32388300000014) (-128.62554899999992 52.31137800000005) (-128.62997399999995 52.305550000000096) (-128.66860999999994 52.26638800000006)) ((-128.471924 52.49276700000013) (-128.4677729999999 52.483047000000056) (-128.46499599999993 52.47304500000007) (-128.46417199999996 52.46804800000001) (-128.46499599999993 52.462212000000136) (-128.467224 52.456099999999935) (-128.47082499999993 52.44971499999997) (-128.4805599999999 52.440269) (-128.4869379999999 52.43720999999999) (-128.494141 52.43498999999997) (-128.50946 52.432213000000104) (-128.51806599999998 52.43193800000006) (-128.59553499999998 52.46014000000008) (-128.66314699999987 52.49192799999997) (-128.75500499999998 52.48777000000001) (-128.77557399999995 52.49332400000003) (-128.7847289999999 52.496101000000124) (-128.80944799999997 52.51554900000008) (-128.81304899999992 52.519989000000066) (-128.81390399999998 52.524994000000106) (-128.811127 52.536941999999954) (-128.808899 52.54305300000004) (-128.73889199999996 52.58749400000005) (-128.732483 52.59054599999996) (-128.72470099999998 52.59165999999999) (-128.5781859999999 52.5936430000001) (-128.56750499999998 52.62249000000003) (-128.535278 52.64721700000007) (-128.53167699999995 52.62110100000001) (-128.52890000000002 52.611107000000004) (-128.52194199999997 52.59137700000002) (-128.50085399999995 52.543610000000115) (-128.4888919999999 52.52027099999998) (-128.48526000000004 52.515831000000105) (-128.47970599999996 52.50666000000001) (-128.471924 52.49276700000013)) ((-131.464447 52.62748700000009) (-131.58554099999998 52.585266000000104) (-131.593597 52.585823000000005) (-131.601379 52.5886000000001) (-131.6119379999999 52.59609999999998) (-131.62359600000002 52.60888699999998) (-131.709717 52.705269000000044) (-131.691101 52.7249910000001) (-131.68499799999995 52.728043000000014) (-131.65945399999993 52.730270000000075) (-131.48471099999995 52.736938000000066) (-131.475281 52.73665599999998) (-131.468597 52.73333000000014) (-131.46887200000003 52.73054500000012) (-131.44943199999994 52.71499600000004) (-131.44027699999998 52.706940000000145) (-131.4391779999999 52.70166000000006) (-131.441376 52.684158000000025) (-131.45443699999998 52.63638300000002) (-131.45834399999995 52.63082100000008) (-131.464447 52.62748700000009)) ((-128.43029799999994 52.36805000000004) (-128.44168099999996 52.36805000000004) (-128.4561159999999 52.37304699999993) (-128.460266 52.37721300000004) (-128.46664399999986 52.38693999999998) (-128.4677729999999 52.39305100000007) (-128.437775 52.543610000000115) (-128.44973800000002 52.62082700000008) (-128.450562 52.626937999999996) (-128.44168099999996 52.746941000000106) (-128.43917799999997 52.75222000000008) (-128.43582200000003 52.75694300000009) (-128.390015 52.79749300000003) (-128.383331 52.79749300000003) (-128.37332200000003 52.791107000000125) (-128.36276199999998 52.740272999999945) (-128.35861199999988 52.7291560000001) (-128.32138099999992 52.63472000000013) (-128.275848 52.496101000000124) (-128.27502400000003 52.489990000000034) (-128.28640699999994 52.45777100000004) (-128.311401 52.42388199999999) (-128.365814 52.38220999999993) (-128.371643 52.37887599999999) (-128.386414 52.374992000000134) (-128.40335099999993 52.37165800000014) (-128.43029799999994 52.36805000000004)) ((-128.974426 52.45332300000007) (-128.982758 52.453049000000135) (-129.11471599999993 52.55665600000009) (-129.21081499999997 52.64888000000002) (-129.26333599999998 52.710548000000074) (-129.27056899999997 52.719153999999946) (-129.291962 52.761664999999994) (-129.29278599999998 52.7669370000001) (-129.28140299999995 52.81721500000009) (-129.27722199999988 52.823051000000135) (-129.270844 52.826103000000046) (-129.26223799999997 52.82666000000012) (-129.252228 52.82527200000004) (-129.23111 52.81610100000006) (-129.218323 52.80915800000008) (-129.104156 52.74110399999995) (-129.066101 52.71471400000013) (-128.94695999999993 52.626381000000094) (-128.926941 52.61082500000009) (-128.92333999999994 52.606659000000036) (-128.919739 52.60221899999999) (-128.91861 52.527488999999946) (-128.92251599999997 52.51527400000003) (-128.936401 52.480545000000006) (-128.943604 52.469711000000075) (-128.9491579999999 52.465546000000074) (-128.96166999999997 52.45943500000004) (-128.974426 52.45332300000007)) ((-128.26974499999994 52.596939000000134) (-128.27416999999997 52.59554300000008) (-128.27890000000002 52.59582499999999) (-128.28445399999998 52.59860200000003) (-128.287506 52.60277600000006) (-128.28973399999995 52.60833000000008) (-128.29269399999993 52.661549000000036) (-128.32305899999994 52.74110399999995) (-128.32638499999996 52.77137800000003) (-128.32501199999996 52.7761000000001) (-128.26322900000002 52.784645000000125) (-128.21063200000003 52.79851500000001) (-128.18582199999992 52.82694200000003) (-128.177795 52.826103000000046) (-128.17334 52.82332600000012) (-128.17028799999997 52.81777199999999) (-128.175842 52.78777300000013) (-128.17861899999997 52.7761000000001) (-128.20776399999994 52.704436999999984) (-128.21026599999993 52.698875000000044) (-128.24722299999996 52.62054400000011) (-128.249725 52.616660999999965) (-128.26141399999995 52.60443900000001) (-128.26974499999994 52.596939000000134)) ((-131.63973999999996 52.828049000000135) (-131.64666699999992 52.82582900000011) (-131.64889499999998 52.826103000000046) (-131.669739 52.81916000000007) (-131.708344 52.811378000000104) (-131.72387700000002 52.80832700000008) (-131.73306299999996 52.80860100000001) (-131.81332399999997 52.82027400000004) (-131.82388300000002 52.82777400000009) (-131.83138999999994 52.84193400000004) (-131.830292 52.84665699999999) (-131.8225099999999 52.84804500000013) (-131.74859599999996 52.853324999999984) (-131.72860699999995 52.851387000000045) (-131.644745 52.83554800000013) (-131.636414 52.8324970000001) (-131.63973999999996 52.828049000000135)) ((-128.50527999999997 52.641106000000036) (-128.5125119999999 52.641106000000036) (-128.51611300000002 52.64527100000004) (-128.52029400000004 52.65499100000011) (-128.54000899999994 52.70332300000001) (-128.53500399999996 52.758049000000085) (-128.53362999999996 52.76915700000012) (-128.513916 52.860825000000034) (-128.510284 52.867493000000024) (-128.50613399999992 52.87304700000004) (-128.498871 52.87082700000002) (-128.49194299999994 52.868599000000074) (-128.48553499999997 52.865273) (-128.471924 52.853049999999996) (-128.46832299999994 52.84860200000003) (-128.45083599999992 52.805267000000015) (-128.45361300000002 52.782493999999986) (-128.45443699999998 52.776939000000084) (-128.5016779999999 52.647491) (-128.50527999999997 52.641106000000036)) ((-129.61053500000003 52.954994) (-129.618317 52.95360600000009) (-129.62222299999996 52.95804600000008) (-129.65139799999992 53.01332900000011) (-129.650848 53.01888300000013) (-129.62441999999993 53.02388000000002) (-129.615814 53.02443699999992) (-129.607208 53.02276600000005) (-129.5705569999999 53.013611000000026) (-129.5625 53.010551000000135) (-129.55749499999996 53.00666000000007) (-129.556671 53.00138900000002) (-129.558624 52.99749000000003) (-129.55334500000004 52.98499300000003) (-129.561127 52.97054300000008) (-129.5963749999999 52.9594350000001) (-129.61053500000003 52.954994)) ((-129.531677 53.010551000000135) (-129.53890999999993 53.008049000000085) (-129.546967 53.00888800000001) (-129.58859299999995 53.0241620000001) (-129.640015 53.04415899999998) (-129.63391099999996 53.056099000000074) (-129.56277499999993 53.05304699999999) (-129.52444500000001 53.03360699999996) (-129.51779199999993 53.02999100000011) (-129.517242 53.02499399999999) (-129.52056900000002 53.01832600000006) (-129.531677 53.010551000000135)) ((-55.76306199999999 53.02943400000004) (-55.85333300000002 53.01527399999992) (-55.86194599999999 53.015549000000135) (-55.870834 53.01859999999999) (-55.87638899999996 53.02748900000006) (-55.87610599999999 53.03276800000003) (-55.872772 53.04388399999999) (-55.86971999999997 53.04972100000009) (-55.85777999999999 53.06749700000006) (-55.854445999999996 53.071663) (-55.84860999999995 53.07610299999999) (-55.808333999999945 53.09137700000008) (-55.80055199999998 53.093605000000025) (-55.79222900000002 53.093048000000124) (-55.788612 53.08971400000013) (-55.78833799999995 53.08665500000001) (-55.749168 53.06916000000001) (-55.748885999999914 53.06471299999993) (-55.75500499999987 53.03860499999996) (-55.75666799999999 53.033051) (-55.76306199999999 53.02943400000004)) ((-129.60247799999996 53.05721300000005) (-129.61080899999996 53.056655999999975) (-129.69250499999993 53.075829000000056) (-129.701935 53.078330999999935) (-129.70834399999995 53.08166499999993) (-129.723053 53.09915900000004) (-129.73611500000004 53.12221500000004) (-129.738312 53.12721300000004) (-129.732758 53.13110399999994) (-129.716949 53.13388100000003) (-129.69973800000002 53.134995) (-129.6680599999999 53.13610800000009) (-129.662506 53.13555100000002) (-129.65444899999994 53.13276700000006) (-129.650848 53.130547000000035) (-129.644165 53.12721300000004) (-129.62081899999998 53.11249499999997) (-129.615814 53.10860400000007) (-129.5880429999999 53.08471700000007) (-129.58416699999998 53.08027600000014) (-129.58193999999997 53.07555400000007) (-129.586121 53.06999200000013) (-129.596649 53.061104000000114) (-129.60247799999996 53.05721300000005)) ((-79.90916400000003 53.081940000000145) (-79.91972399999997 53.081940000000145) (-79.92610200000001 53.084991) (-79.92971799999998 53.0894320000001) (-79.93222000000003 53.09443699999997) (-79.93859900000001 53.122490000000084) (-79.93859900000001 53.134995) (-79.93499799999995 53.147774000000084) (-79.93055700000002 53.15248900000012) (-79.906387 53.172768000000076) (-79.89778100000001 53.17443800000001) (-79.88751199999996 53.17443800000001) (-79.87748699999997 53.1730500000001) (-79.86639399999996 53.16944100000012) (-79.85888699999987 53.16693900000001) (-79.84611499999994 53.16054500000001) (-79.79583699999989 53.116386000000034) (-79.789444 53.106941000000006) (-79.78721599999994 53.10193600000014) (-79.789444 53.09582500000005) (-79.79695100000004 53.093605000000025) (-79.835556 53.083878000000084) (-79.843887 53.08221400000008) (-79.90916400000003 53.081940000000145)) ((-129.4324949999999 53.15138200000001) (-129.35278299999993 53.07222000000007) (-129.29000899999988 52.993607000000054) (-129.287506 52.978043000000014) (-129.28945899999985 52.971930999999984) (-129.295837 52.96888000000001) (-129.31222499999996 52.966934000000094) (-129.341095 52.97332) (-129.41418499999997 53.010551000000135) (-129.41915900000004 53.01444200000003) (-129.42138699999998 53.019157000000064) (-129.42471299999994 53.04027600000006) (-129.42916899999994 53.04972100000009) (-129.475281 53.10193600000014) (-129.50527999999997 53.12638099999998) (-129.51196300000004 53.129714999999976) (-129.52194199999985 53.13110399999994) (-129.537506 53.12832600000013) (-129.54473899999994 53.12832600000013) (-129.54724099999993 53.13304900000014) (-129.548065 53.14916199999999) (-129.546967 53.16027100000008) (-129.5386049999999 53.171660999999915) (-129.52166699999992 53.18360100000001) (-129.51446499999997 53.185822000000144) (-129.49859599999996 53.18859900000001) (-129.49026499999997 53.188881000000094) (-129.47997999999995 53.18776700000012) (-129.470551 53.185265000000015) (-129.46276899999992 53.17999300000008) (-129.4324949999999 53.15138200000001)) ((-81.10610999999989 53.19971499999997) (-81.08778399999989 53.17943600000001) (-81.04527299999995 53.14860500000009) (-80.97888199999994 53.11305200000004) (-80.97361799999999 53.10943600000002) (-80.80943300000001 52.97693600000008) (-80.77500899999995 52.94443499999994) (-80.76333599999992 52.931381000000044) (-80.66915899999998 52.776939000000084) (-80.66776999999996 52.7719350000001) (-80.66749600000003 52.7594380000001) (-80.67083699999989 52.74582700000013) (-80.67304999999993 52.74054700000005) (-80.69972200000001 52.69609800000012) (-80.70500199999998 52.692214999999976) (-80.71250900000001 52.689156000000025) (-80.720551 52.68832400000014) (-80.731674 52.68888100000004) (-80.73916600000001 52.69137600000005) (-80.74916100000002 52.698875000000044) (-80.75306699999999 52.70332300000001) (-80.76583900000003 52.70971700000001) (-80.79750099999995 52.719153999999946) (-80.81500199999999 52.72304500000001) (-80.86138899999992 52.73110200000002) (-80.89889499999998 52.73749500000014) (-80.91888399999999 52.740272999999945) (-80.99554399999994 52.74610100000007) (-81.01556399999993 52.74860400000006) (-81.02444499999996 52.750549000000035) (-81.13806199999993 52.78804800000012) (-81.15306099999998 52.793052999999986) (-81.19888299999997 52.81415600000008) (-81.21278399999994 52.81999199999996) (-81.25195300000001 52.8324970000001) (-81.287216 52.83998900000006) (-81.36915599999986 52.85610200000008) (-81.41722099999987 52.863052000000096) (-81.58444199999991 52.88916000000006) (-81.64917000000003 52.907211000000075) (-81.76362599999993 52.93776700000001) (-81.781387 52.941658000000075) (-81.81166099999996 52.94526700000006) (-81.83416699999987 52.94638100000003) (-81.88137799999998 52.954162999999994) (-81.91665599999999 52.96166199999999) (-81.93331899999998 52.965828000000045) (-81.94972199999995 52.97137500000002) (-81.96278399999989 52.97693600000008) (-82.04998799999998 53.01444200000003) (-82.05665599999986 53.01749400000011) (-82.06166100000002 53.021102999999925) (-82.06332399999991 53.026657000000114) (-82.060272 53.03193700000003) (-82.05332900000002 53.04193899999996) (-82.04916400000002 53.04666100000003) (-81.974716 53.113883999999985) (-81.96528599999994 53.12221500000004) (-81.95417799999996 53.129990000000134) (-81.91082799999998 53.15888200000006) (-81.89222699999999 53.16832699999998) (-81.864441 53.17860400000012) (-81.84805299999994 53.18166400000001) (-81.82611099999997 53.181381000000044) (-81.71472199999988 53.18859900000001) (-81.54305999999997 53.209160000000054) (-81.3852839999999 53.22499099999999) (-81.37499999999994 53.22499099999999) (-81.295547 53.21776599999998) (-81.11639400000001 53.20082900000011) (-81.10610999999989 53.19971499999997)) ((-131.76223800000002 53.19665500000008) (-131.6305539999999 53.08416) (-131.595551 53.04610399999996) (-131.593048 53.041382000000056) (-131.59472700000003 53.03527100000002) (-131.60165399999994 53.033051) (-131.61026000000004 53.03221100000013) (-131.628876 53.0324940000001) (-131.63973999999996 53.03443900000008) (-131.73666400000002 53.05387900000005) (-131.75558499999994 53.058601000000124) (-131.77444500000001 53.06888600000008) (-131.7839049999999 53.07138100000009) (-131.79473899999994 53.07305100000008) (-131.813629 53.07360799999998) (-131.82971199999992 53.07138100000009) (-131.943329 53.054993000000024) (-131.964722 53.046386999999925) (-131.91195700000003 53.00527199999999) (-131.9083559999999 53.011108000000036) (-131.89944499999996 53.019714000000135) (-131.888062 53.02693900000003) (-131.87027 53.03749800000003) (-131.85611 53.04222100000004) (-131.847778 53.04305299999993) (-131.831116 53.04305299999993) (-131.81167600000003 53.03971899999999) (-131.662781 53.00777400000004) (-131.644745 53.00388299999997) (-131.62860099999995 52.998328999999956) (-131.61498999999998 52.99166100000002) (-131.609711 52.98804500000011) (-131.598053 52.97526600000009) (-131.59582499999993 52.96471400000007) (-131.59750399999996 52.95860299999998) (-131.61554 52.920273000000066) (-131.662781 52.88221000000004) (-131.66805999999997 52.87804399999993) (-131.68057299999992 52.871658000000025) (-131.68749999999994 52.869155999999975) (-131.70443699999993 52.86776700000013) (-131.802216 52.86471599999993) (-131.808624 52.86582900000002) (-131.833618 52.88499500000006) (-131.849152 52.9019320000001) (-131.87027 52.922768000000076) (-131.88473499999992 52.93443300000001) (-131.890015 52.93832400000008) (-131.898346 52.94110099999995) (-131.906677 52.94026900000006) (-131.93859899999995 52.934990000000084) (-131.94473299999999 52.93166400000001) (-131.982483 52.87971500000003) (-131.978607 52.87554900000009) (-131.968597 52.87443500000012) (-131.95278899999988 52.875267000000065) (-131.94528200000002 52.87693800000011) (-131.93139599999995 52.88166000000001) (-131.85638399999993 52.85610200000008) (-131.7755739999999 52.71666000000005) (-131.767517 52.71388200000001) (-131.733612 52.69860100000011) (-131.72692900000004 52.69554100000005) (-131.72305299999988 52.691101) (-131.683899 52.64222000000001) (-131.681396 52.637496999999996) (-131.65945399999993 52.581665000000044) (-131.572784 52.52999100000005) (-131.56527700000004 52.5316620000001) (-131.55667099999994 52.53221100000002) (-131.545837 52.53027300000008) (-131.48193400000002 52.50777399999998) (-131.46749899999992 52.50138900000013) (-131.42361499999998 52.46082300000012) (-131.42748999999998 52.414993000000095) (-131.39849899999996 52.377827000000025) (-131.39533999999998 52.37549200000012) (-131.39016699999996 52.374660000000006) (-131.3674929999999 52.381827999999985) (-131.365494 52.384491000000025) (-131.36599699999988 52.390986999999996) (-131.36715700000002 52.39716000000004) (-131.357483 52.403320000000065) (-131.3583369999999 52.414153999999996) (-131.35305799999998 52.41832700000009) (-131.32833900000003 52.431107000000054) (-131.31304899999998 52.43415800000008) (-131.27252199999998 52.43888100000004) (-131.25558499999988 52.440269) (-131.23638900000003 52.43915600000008) (-131.23248299999995 52.43471499999998) (-131.247498 52.36582900000013) (-131.25085399999995 52.35916099999997) (-131.25836200000003 52.34777100000008) (-131.263062 52.34276600000004) (-131.30311599999993 52.332100000000025) (-131.31977799999993 52.33510600000005) (-131.330597 52.33277099999992) (-131.33248899999995 52.29361) (-131.32833900000003 52.28499599999998) (-131.3244319999999 52.280823) (-131.271393 52.27777100000009) (-131.259186 52.28416400000003) (-131.25613399999992 52.29083300000008) (-131.24832199999997 52.3022160000001) (-131.17971799999998 52.31777200000005) (-131.17193599999996 52.31944299999992) (-131.136414 52.31137800000005) (-131.09500099999997 52.28611000000012) (-131.015015 52.22554800000012) (-131.00750699999998 52.21720900000008) (-131.0052799999999 52.206657000000064) (-131.01168799999988 52.19360400000011) (-131.01556400000004 52.18776700000012) (-131.024719 52.17804700000005) (-131.030304 52.17388200000005) (-131.036407 52.17083000000014) (-131.0430599999999 52.16832699999998) (-131.11512799999997 52.168289000000016) (-131.166107 52.12554900000009) (-131.18057299999987 52.121658000000025) (-131.26473999999985 52.11971299999999) (-131.29888900000003 52.15026899999992) (-131.36025999999993 52.18915600000014) (-131.366943 52.192490000000134) (-131.38946499999997 52.20582600000006) (-131.41168200000004 52.22054300000008) (-131.55111699999998 52.333878000000084) (-131.57333399999993 52.36082499999998) (-131.58194000000003 52.379990000000134) (-131.582764 52.38526900000011) (-131.58056599999986 52.390548999999965) (-131.57778899999994 52.39360799999997) (-131.57083099999994 52.39610299999998) (-131.548065 52.40054300000003) (-131.53973399999995 52.4011000000001) (-131.52972399999993 52.400269000000094) (-131.52029400000004 52.39777400000003) (-131.561401 52.431664000000126) (-131.66168199999998 52.478324999999984) (-131.67916899999994 52.48360400000013) (-131.7094419999999 52.49110400000001) (-131.76223800000002 52.50499700000006) (-131.77529899999996 52.51166500000005) (-131.892792 52.58277100000009) (-132.01751699999994 52.677490000000034) (-132.08194000000003 52.72748599999994) (-132.084717 52.732208000000014) (-132.060272 52.75527200000005) (-132.01028399999996 52.775269000000094) (-132.002502 52.776939000000084) (-131.993042 52.77443699999998) (-131.973053 52.764717000000076) (-131.96389799999997 52.756660000000124) (-131.94445799999988 52.73554999999999) (-131.933624 52.728043000000014) (-131.92694099999994 52.724709000000075) (-131.91751099999988 52.72248799999994) (-131.91723599999995 52.72582200000011) (-131.93722499999996 52.76361100000008) (-131.93972799999995 52.768326000000116) (-131.95166 52.78110500000014) (-131.96221899999995 52.78860500000002) (-131.96887200000003 52.79193900000001) (-132.03417999999994 52.81276700000012) (-132.06167599999998 52.813881000000094) (-132.05804399999994 52.80416100000002) (-132.05557299999987 52.79361000000006) (-132.10247800000002 52.74943500000006) (-132.11026000000004 52.748046999999985) (-132.12026999999995 52.74887799999999) (-132.12747199999995 52.750832) (-132.2141719999999 52.804710000000114) (-132.219452 52.80832700000008) (-132.22888199999994 52.81638299999997) (-132.31640599999997 52.90221400000013) (-132.34414700000002 52.93166400000001) (-132.34695399999993 52.93637799999999) (-132.34304799999995 52.942214999999976) (-132.32971199999992 52.94582400000013) (-132.313629 52.94804399999998) (-132.25558499999994 52.954711999999915) (-132.24527 52.95388000000003) (-132.2380369999999 52.95193500000005) (-132.16778599999992 52.928047000000106) (-132.156403 52.958885000000066) (-132.11248799999998 52.987770000000125) (-132.11026000000004 52.99304999999998) (-132.11276199999992 52.997772000000055) (-132.11944599999998 53.00110600000005) (-132.25613399999997 53.028877000000136) (-132.26696799999996 53.030823000000055) (-132.29501300000004 53.03110500000008) (-132.41195700000003 53.03193700000003) (-132.47970599999996 53.027214000000015) (-132.4960939999999 53.03276800000003) (-132.50778199999996 53.040549999999996) (-132.51196300000004 53.04471600000005) (-132.55279499999995 53.08971400000013) (-132.55557299999992 53.09443699999997) (-132.563629 53.139160000000004) (-132.562225 53.14527100000009) (-132.55667099999994 53.14943699999998) (-132.5491639999999 53.1511000000001) (-132.5394589999999 53.14888000000008) (-132.52584799999994 53.142220000000066) (-132.50140399999998 53.13388100000003) (-132.48165899999998 53.13082099999997) (-132.45111099999986 53.1280440000001) (-132.41363499999989 53.127486999999974) (-132.378601 53.12943300000006) (-132.21081499999997 53.141662999999994) (-132.07083099999994 53.15387700000002) (-132.06390399999987 53.15638000000001) (-132.05777 53.15971400000001) (-132.030579 53.17999300000008) (-132.00750700000003 53.1947100000001) (-131.92834500000004 53.230545000000006) (-131.92138699999992 53.233047000000056) (-131.811127 53.25360899999998) (-131.80194099999994 53.253326000000015) (-131.794464 53.25138899999996) (-131.79055800000003 53.247214999999926) (-131.76223800000002 53.19665500000008)) ((-55.77805299999994 53.289719000000105) (-55.78666700000002 53.28833000000009) (-55.79444899999993 53.29110700000001) (-55.79722600000002 53.295547) (-55.793334999999956 53.300545) (-55.78500399999996 53.30360400000001) (-55.77610800000002 53.30027000000001) (-55.77638999999999 53.295273000000066) (-55.77805299999994 53.289719000000105)) ((-128.68945299999996 53.16443600000008) (-128.67944299999994 53.16304799999995) (-128.670837 53.163605000000075) (-128.652222 53.16276600000009) (-128.64196799999996 53.16137700000007) (-128.62469499999997 53.15554800000007) (-128.60555999999997 53.14527100000009) (-128.5761109999999 53.10527000000013) (-128.53167699999995 53.021102999999925) (-128.52890000000002 53.011108000000036) (-128.52056900000002 52.9594350000001) (-128.5183409999999 52.94360400000011) (-128.51779199999987 52.92748999999998) (-128.5183409999999 52.91110200000014) (-128.52002 52.89971900000012) (-128.5227969999999 52.88804600000009) (-128.57028199999996 52.69137600000005) (-128.57223499999992 52.68526500000013) (-128.57528699999995 52.679993000000024) (-128.59359699999993 52.65915699999999) (-128.58526599999988 52.6594310000001) (-128.57748400000003 52.65638000000007) (-128.5858149999999 52.6322100000001) (-128.59222399999993 52.6138840000001) (-128.5972289999999 52.609161000000086) (-128.60497999999995 52.60777300000001) (-128.74887099999995 52.59721400000012) (-128.75167799999997 52.60083000000003) (-128.74859600000002 52.74860400000006) (-128.74804699999999 52.754166) (-128.74444600000004 52.76082600000001) (-128.69250499999998 52.85610200000008) (-128.653351 52.8927690000001) (-128.648346 52.89777400000014) (-128.64474499999994 52.90416000000005) (-128.64334099999996 52.91554300000007) (-128.64196799999996 52.94860100000005) (-128.64334099999996 52.958885000000066) (-128.646973 52.963325999999995) (-128.653351 52.96665999999999) (-128.663635 52.96804800000007) (-128.67138699999998 52.96665999999999) (-128.67694099999994 52.962769000000094) (-128.67999299999997 52.95777100000009) (-128.751129 52.83582300000012) (-128.75390600000003 52.83082600000006) (-128.76223800000002 52.81082200000009) (-128.76446499999997 52.804710000000114) (-128.780579 52.73998999999998) (-128.78140299999995 52.73416099999997) (-128.77999899999998 52.72387700000013) (-128.777802 52.71888000000001) (-128.77111799999994 52.70471199999997) (-128.76556400000004 52.69554100000005) (-128.7788999999999 52.66415400000011) (-128.84637499999997 52.653320000000065) (-128.88446 52.64804800000013) (-128.89251699999994 52.64888000000002) (-129 52.69721200000009) (-129.032776 52.719711000000075) (-129.04779099999996 52.73137700000001) (-129.080292 52.772491000000116) (-129.108612 52.81276700000012) (-129.11080899999996 52.81749700000012) (-129.114441 52.821938000000046) (-129.11886600000003 52.83138300000013) (-129.12191799999994 52.852218999999934) (-129.12191799999994 52.863052000000096) (-129.11999500000002 52.869155999999975) (-129.11080899999996 52.87748700000003) (-129.10360699999995 52.87971500000003) (-129.09500100000002 52.880272000000105) (-129.08444199999997 52.87804399999993) (-129.0763849999999 52.87499200000002) (-129.02224699999988 52.905548000000124) (-128.95178199999992 52.97366000000005) (-128.86999499999996 53.02193500000004) (-128.85498 53.02526900000004) (-128.84082 53.02971600000012) (-128.83639499999998 53.03555300000005) (-128.843597 53.04415899999998) (-128.89556899999997 53.08277099999998) (-128.96389799999992 53.12165799999997) (-128.970551 53.124992000000134) (-129.00222799999995 53.13694000000004) (-129.011688 53.139717000000076) (-129.01583900000003 53.13388100000003) (-129.01501499999995 53.12887599999999) (-129.00473 53.10999300000009) (-128.99386599999997 53.097214000000065) (-128.98748799999998 53.09582500000005) (-128.98110999999994 53.09887700000013) (-128.97387700000002 53.10110500000013) (-128.96444699999995 53.100548) (-128.956665 53.09777100000014) (-128.912781 53.07305100000008) (-128.86444099999989 53.038887000000045) (-128.862213 53.03416400000009) (-129.05584699999997 52.90915699999994) (-129.06915299999991 52.90387700000008) (-129.09500100000002 52.902489) (-129.105835 52.90470899999997) (-129.15945399999998 52.919715999999994) (-129.16583299999996 52.92304999999999) (-129.169464 52.92748999999998) (-129.175293 52.93637799999999) (-129.18554700000004 52.955269000000044) (-129.18722499999996 52.96554600000002) (-129.191956 53.00777400000004) (-129.191376 53.01332900000011) (-129.18804899999992 53.0241620000001) (-129.16665599999993 53.06610100000006) (-129.16168200000004 53.0711060000001) (-129.154724 53.073326000000066) (-129.13165300000003 53.07804900000008) (-129.1180419999999 53.07916300000005) (-129.1174929999999 53.07388299999997) (-129.1180419999999 53.068329000000006) (-129.11499000000003 53.06471299999993) (-129.108612 53.067772000000105) (-129.08248899999995 53.089989) (-129.075287 53.10305000000011) (-129.073334 53.10916099999997) (-129.070557 53.131660000000124) (-129.05889899999988 53.23137700000012) (-129.06027199999988 53.241661000000136) (-129.064728 53.25110599999999) (-129.07193 53.25999500000006) (-129.08221400000002 53.2677690000001) (-129.08972199999994 53.287216000000114) (-129.086121 53.29361) (-129.07971199999997 53.29666100000003) (-129.06664999999992 53.30082700000008) (-129.04305999999997 53.30471) (-129.025848 53.305550000000096) (-129.018616 53.305550000000096) (-128.90084799999994 53.290276000000006) (-128.8913879999999 53.287773000000016) (-128.88137800000004 53.27999100000005) (-128.87777699999992 53.27582600000005) (-128.8638919999999 53.26361099999997) (-128.843597 53.24804700000004) (-128.83221399999996 53.24054699999999) (-128.77529900000002 53.20888500000001) (-128.71167000000003 53.17388200000005) (-128.7052609999999 53.17054699999994) (-128.68945299999996 53.16443600000008)) ((-129.15307599999994 53.09832800000004) (-129.16168200000004 53.09777100000014) (-129.25946 53.09804500000007) (-129.28945899999985 53.10193600000014) (-129.311401 53.11693600000007) (-129.3266599999999 53.128601) (-129.332489 53.13749700000011) (-129.33471699999996 53.142494) (-129.33639500000004 53.15277099999997) (-129.33889799999986 53.17916100000002) (-129.3383179999999 53.18499000000003) (-129.33639500000004 53.19110100000012) (-129.3252869999999 53.21610300000003) (-129.27389500000004 53.32804900000002) (-129.26806599999992 53.33194000000009) (-129.26028399999996 53.333327999999995) (-129.250854 53.33305400000006) (-129.22915599999988 53.32888000000003) (-129.22692899999998 53.32610299999993) (-129.208893 53.32193799999993) (-129.19415299999997 53.3155440000001) (-129.18112199999996 53.30860100000007) (-129.17611699999998 53.30471) (-129.16860999999994 53.29610400000013) (-129.14529399999998 53.22165700000005) (-129.132477 53.11859900000002) (-129.13192699999996 53.11360899999994) (-129.1339109999999 53.10749800000008) (-129.13891599999994 53.10249300000004) (-129.15307599999994 53.09832800000004)) ((-79.94276400000001 53.266936999999984) (-80.00917099999992 53.26388500000007) (-80.01806599999986 53.26583099999999) (-80.02444500000001 53.26888300000007) (-80.08167999999995 53.316101) (-80.08389299999999 53.32110600000004) (-80.08528100000001 53.32694200000009) (-80.07333399999999 53.34887700000007) (-80.06889299999995 53.35332500000004) (-80.06138599999991 53.35555300000004) (-79.99972499999996 53.364716000000044) (-79.94471699999997 53.36805000000004) (-79.95056199999993 53.34971600000006) (-79.95194999999995 53.34832799999998) (-79.91305499999999 53.29610400000013) (-79.91194200000001 53.29055000000011) (-79.91332999999992 53.283051000000114) (-79.92083699999995 53.273048000000074) (-79.92721599999999 53.27027099999998) (-79.94276400000001 53.266936999999984)) ((-129.358337 53.30416100000008) (-129.37442 53.301383999999985) (-129.38363600000002 53.30193300000013) (-129.3875119999999 53.30609900000002) (-129.43499799999995 53.378876000000105) (-129.43307500000003 53.38472000000013) (-129.39502 53.410819999999944) (-129.386414 53.40915700000005) (-129.3797 53.40554800000001) (-129.373871 53.40082600000011) (-129.3666379999999 53.39888000000008) (-129.32861300000002 53.377769) (-129.30557299999998 53.335823000000005) (-129.30334499999992 53.33110799999997) (-129.30749500000002 53.31888600000002) (-129.3124999999999 53.31388099999998) (-129.326935 53.3097150000001) (-129.358337 53.30416100000008)) ((-55.78750599999995 53.394157000000064) (-55.79305999999997 53.39166300000011) (-55.80139200000002 53.39249399999994) (-55.94943999999998 53.43027500000011) (-55.95805399999995 53.43415800000008) (-55.97166399999992 53.445824000000016) (-55.97888199999994 53.45471200000003) (-55.97916399999991 53.45916) (-55.97638699999999 53.463051000000064) (-55.95889299999993 53.472488) (-55.94554900000003 53.47860000000014) (-55.931670999999994 53.483879000000115) (-55.92388900000003 53.48554999999999) (-55.91638899999998 53.485825000000034) (-55.88305700000001 53.486382000000106) (-55.87805199999997 53.48665600000004) (-55.81194299999993 53.483879000000115) (-55.75722499999995 53.468323) (-55.740554999999915 53.46221200000008) (-55.72916399999997 53.4552690000001) (-55.72943900000001 53.450271999999984) (-55.78750599999995 53.394157000000064)) ((-128.94250499999998 53.317497) (-129.11138899999997 53.31582600000013) (-129.12222299999996 53.31805400000013) (-129.1258239999999 53.322495) (-129.13891599999994 53.33998900000012) (-129.14334099999996 53.34971600000006) (-129.14416499999993 53.35499600000014) (-129.14306599999986 53.36610400000012) (-129.14083899999997 53.37221500000004) (-129.13445999999993 53.383880999999974) (-129.08270299999998 53.42926) (-129.054062 53.45360199999999) (-129.05883799999998 53.487965000000145) (-129.051941 53.50499700000006) (-129.04779099999996 53.51055100000002) (-129.03778099999988 53.52027100000009) (-129.02194199999997 53.53388200000006) (-129.015289 53.536658999999986) (-128.99941999999987 53.53943600000008) (-128.988586 53.53721600000006) (-128.984711 53.53305100000006) (-128.98416099999997 53.52777100000003) (-128.98553499999997 53.52304800000002) (-128.98611499999998 53.51305400000001) (-128.98611499999998 53.502220000000136) (-128.9844359999999 53.49166100000008) (-128.97555499999987 53.472762999999986) (-128.95361300000002 53.44665500000002) (-128.94137599999993 53.43415800000008) (-128.93612699999994 53.43027500000011) (-128.90335099999993 53.39138000000014) (-128.90112299999998 53.38665800000007) (-128.90029900000002 53.38137800000004) (-128.91805999999997 53.33138300000002) (-128.92251599999997 53.325829) (-128.92807 53.321663000000115) (-128.94250499999998 53.317497)) ((-79.70973200000003 53.50804900000014) (-79.72027600000001 53.50749999999999) (-79.73055999999997 53.50888800000013) (-79.74694799999992 53.513329) (-79.76472499999994 53.52360500000009) (-79.76972999999992 53.52721400000013) (-79.77362099999999 53.5316620000001) (-79.77027899999996 53.536942000000124) (-79.76139799999993 53.54610400000007) (-79.75500499999998 53.54305300000004) (-79.70695499999988 53.51554900000002) (-79.70333899999991 53.51110800000009) (-79.70973200000003 53.50804900000014)) ((-129.93472299999985 53.48416100000003) (-129.9427799999999 53.48276499999997) (-129.95220899999998 53.483047000000056) (-130.01446499999997 53.50193800000005) (-130.02111799999994 53.50527200000005) (-129.98858599999988 53.52860300000009) (-129.94195599999995 53.55110200000007) (-129.93417399999998 53.55248999999998) (-129.92611699999992 53.55165899999997) (-129.8933409999999 53.545547) (-129.886688 53.5422210000001) (-129.88418599999994 53.53721600000006) (-129.88696300000004 53.534163999999976) (-129.894745 53.52193499999993) (-129.89889499999998 53.516388000000006) (-129.913635 53.50193800000005) (-129.92916899999994 53.48832700000008) (-129.93472299999985 53.48416100000003)) ((-129.8794249999999 53.39276899999999) (-129.72915599999993 53.21527100000009) (-129.73028599999992 53.20416300000011) (-129.73220799999996 53.198044000000095) (-129.74249299999997 53.178329000000076) (-129.7508539999999 53.16693900000001) (-129.75585899999993 53.16220900000002) (-129.76223799999997 53.15888200000006) (-129.864166 53.15304600000002) (-129.91223100000002 53.15638000000001) (-129.931671 53.15804300000008) (-129.93695099999997 53.161933999999974) (-130.0880429999999 53.28943600000014) (-130.11111500000004 53.32804900000002) (-130.16500899999988 53.35833000000014) (-130.20333899999997 53.378876000000105) (-130.24249299999997 53.38416300000006) (-130.261414 53.38472000000013) (-130.28695700000003 53.38137800000004) (-130.29638699999998 53.38166000000007) (-130.30584699999997 53.38416300000006) (-130.31640600000003 53.39193700000004) (-130.401947 53.47998800000005) (-130.527222 53.552216000000044) (-130.52999899999998 53.56777199999999) (-130.52944899999994 53.57332600000001) (-130.52224699999994 53.618599000000074) (-130.52029399999998 53.62470999999999) (-130.50836200000003 53.631935000000055) (-130.459991 53.637496999999996) (-130.450287 53.63499500000012) (-130.39584399999995 53.61943800000006) (-130.39111300000002 53.61693600000001) (-130.37554899999992 53.612213) (-130.27529900000002 53.580276000000026) (-130.20220900000004 53.55387899999994) (-130.14083900000003 53.52887700000002) (-129.97720300000003 53.45555099999996) (-129.94415299999991 53.438598999999954) (-129.93222000000003 53.43138099999999) (-129.92056300000002 53.42416400000002) (-129.88418599999994 53.397217000000126) (-129.8794249999999 53.39276899999999)) ((-129.08639500000004 53.44609799999995) (-129.15750099999997 53.39276899999999) (-129.16778599999998 53.59388000000013) (-129.16583299999996 53.61082500000009) (-129.16305499999999 53.62248999999997) (-129.16082799999998 53.62860100000006) (-129.15307599999994 53.638603000000046) (-129.14724699999994 53.64249400000011) (-129.14083899999997 53.645546000000024) (-129.05249000000003 53.681107) (-129.03860499999985 53.68637799999999) (-129.00805699999995 53.693321000000026) (-128.9833069999999 53.69665500000002) (-128.87554899999998 53.70943499999993) (-128.832764 53.712494000000106) (-128.82388299999997 53.71305100000001) (-128.81887800000004 53.70916000000011) (-128.821106 53.70304900000002) (-128.82360799999998 53.70054600000009) (-128.8722229999999 53.66110200000014) (-128.97970599999996 53.58387799999997) (-128.98638900000003 53.58082600000006) (-128.99221799999992 53.57694200000003) (-129.07556199999993 53.51471700000013) (-129.08554100000003 53.50499700000006) (-129.08999599999999 53.49943500000006) (-129.09359699999993 53.49276700000013) (-129.09414699999996 53.48721300000011) (-129.093323 53.48193400000014) (-129.08889799999997 53.472488) (-129.08526599999993 53.46804799999995) (-129.08306899999997 53.46332600000005) (-129.08221400000002 53.45832800000005) (-129.08276399999988 53.45249200000001) (-129.08639500000004 53.44609799999995)) ((-130.09109499999994 53.569443000000035) (-130.09832800000004 53.5669400000001) (-130.107758 53.567497) (-130.148621 53.5719380000001) (-130.21887199999992 53.587212000000136) (-130.22833299999996 53.58943199999999) (-130.32916299999994 53.61804999999998) (-130.34249899999998 53.62470999999999) (-130.39028899999988 53.66999100000004) (-130.403351 53.682495000000074) (-130.39111300000002 53.69943200000006) (-130.29888899999997 53.79694400000005) (-130.2836299999999 53.79833200000013) (-130.27194199999997 53.79777500000006) (-130.26168799999994 53.79638699999998) (-130.2466429999999 53.79027600000006) (-130.23330699999985 53.78360700000002) (-130.11944600000004 53.686653000000035) (-130.11721799999998 53.681938) (-130.09109499999994 53.569443000000035)) ((-56.86721799999998 53.76499899999993) (-56.94860799999998 53.75000000000006) (-56.98277300000001 53.75527199999999) (-57.01139099999989 53.78110500000014) (-57.01445000000001 53.78555300000011) (-57.01222200000001 53.79027600000006) (-57.00666799999999 53.79471600000011) (-57 53.79833200000013) (-56.98472600000002 53.80387900000011) (-56.96694200000002 53.80387900000011) (-56.86306000000002 53.7980500000001) (-56.84444400000001 53.792496000000085) (-56.84751899999998 53.78664400000014) (-56.86721799999998 53.76499899999993)) ((-129.8261109999999 53.724158999999986) (-129.59722899999997 53.550270000000125) (-129.51611300000002 53.48804500000006) (-129.42471299999994 53.411377000000016) (-129.43472299999996 53.40165699999994) (-129.45165999999995 53.37915800000002) (-129.45498699999996 53.37249000000003) (-129.47415199999995 53.28916200000003) (-129.47387700000002 53.23999000000009) (-129.50668299999995 53.216660000000104) (-129.56390399999998 53.2074970000001) (-129.72582999999992 53.34054600000002) (-129.800568 53.38054699999998) (-129.80721999999997 53.38416300000006) (-129.82223499999986 53.401382000000126) (-129.858337 53.45638300000007) (-129.87719699999997 53.50499700000006) (-129.87026999999995 53.51805100000013) (-129.86999500000002 53.53472100000005) (-129.87026999999995 53.545547) (-129.883911 53.57972000000001) (-129.91607699999992 53.60171500000001) (-129.9192349999999 53.60405000000014) (-129.924896 53.605545000000006) (-129.93022199999996 53.605213000000106) (-129.939728 53.603549999999984) (-129.94305399999985 53.601215000000025) (-129.94605999999987 53.59821699999998) (-129.945557 53.59521500000011) (-129.96139500000004 53.59471100000013) (-129.96554600000002 53.58915699999994) (-129.99941999999993 53.57471499999997) (-130.00750699999998 53.57332600000001) (-130.01611300000002 53.57276900000011) (-130.0269469999999 53.57471499999997) (-130.04028299999993 53.58138300000013) (-130.051666 53.59443700000003) (-130.05639599999995 53.60388200000011) (-130.05584699999991 53.60943600000007) (-130.051666 53.61527300000006) (-130.03085299999987 53.622765000000015) (-129.98288000000002 53.641605000000084) (-129.97805799999992 53.64243699999997) (-129.96240199999994 53.643436000000065) (-129.95622300000002 53.6427690000001) (-129.94955400000003 53.64143400000012) (-129.93505900000002 53.636272000000076) (-129.92938199999998 53.634765999999956) (-129.926895 53.636772000000065) (-129.92820699999993 53.639602999999966) (-129.93440199999992 53.644268000000125) (-129.94956999999994 53.646805000000086) (-129.95996100000002 53.64950199999993) (-129.96726999999993 53.65029900000002) (-129.98693799999995 53.65860000000009) (-130.01889 53.653046000000074) (-130.091949 53.6772160000001) (-130.156952 53.72137500000002) (-130.283905 53.83277099999998) (-130.286407 53.83749399999999) (-130.27917499999995 53.856384000000105) (-130.27029400000004 53.87554900000009) (-130.266418 53.8813780000001) (-130.25472999999994 53.88916000000006) (-130.20166 53.9124910000001) (-130.19445799999994 53.914711000000125) (-130.186401 53.916100000000085) (-130.10916099999992 53.88555100000002) (-129.96444699999995 53.80582400000009) (-129.83139 53.728043000000014) (-129.8261109999999 53.724158999999986)) ((-79.86416600000001 53.90638000000001) (-79.87388599999991 53.90415999999999) (-79.906113 53.91387900000001) (-79.91888399999999 53.920273000000066) (-79.922775 53.924713000000054) (-79.92527799999988 53.92971799999992) (-79.92639200000002 53.93526500000007) (-79.915009 53.933876000000055) (-79.86749299999997 53.919715999999994) (-79.862213 53.9158250000001) (-79.86000100000001 53.91082000000006) (-79.86416600000001 53.90638000000001)) ((-130.14974999999998 53.989159000000086) (-130.16805999999997 53.9888840000001) (-130.179169 53.990829000000076) (-130.19415300000003 53.99721499999998) (-130.20306400000004 54.005271999999934) (-130.21499600000004 54.029160000000104) (-130.21694899999994 54.03943600000014) (-130.21640000000002 54.04499800000008) (-130.21304299999997 54.05165900000003) (-130.20278899999994 54.06916000000001) (-130.193604 54.07972000000012) (-130.186401 54.081940000000145) (-130.17834500000004 54.08332800000005) (-130.16861 54.08305400000012) (-130.15917999999994 54.08055100000013) (-130.155579 54.07555400000001) (-130.14889500000004 54.072220000000016) (-130.14361599999995 54.06832899999995) (-130.13973999999996 54.064156000000025) (-130.132477 54.049995000000024) (-130.12249799999995 54.02499399999999) (-130.1213679999999 54.01998900000012) (-130.12249799999995 54.0086060000001) (-130.12442 54.00249500000007) (-130.13528399999996 53.993607000000054) (-130.14974999999998 53.989159000000086)) ((-130.25918599999994 54.00471500000003) (-130.237213 53.984161000000086) (-130.23330699999985 53.979987999999935) (-130.23083499999996 53.97526600000003) (-130.228882 53.96471400000007) (-130.22998 53.95360600000009) (-130.23330699999985 53.9469380000001) (-130.24249299999997 53.93637799999999) (-130.338593 53.839157000000114) (-130.344452 53.83526600000005) (-130.35220299999997 53.83387800000014) (-130.37860099999995 53.831939999999975) (-130.38723800000002 53.83138300000007) (-130.45016499999997 53.864326000000005) (-130.45433000000003 53.86632500000002) (-130.45849599999997 53.88215999999994) (-130.41278099999994 53.95860299999998) (-130.407776 53.963325999999995) (-130.400848 53.965828000000045) (-130.38165300000003 53.96527100000014) (-130.35055499999993 53.96166199999993) (-130.341095 53.96138000000008) (-130.3330689999999 53.962769000000094) (-130.32748400000003 53.966934000000094) (-130.34359699999987 53.98499300000003) (-130.35497999999995 53.99332400000009) (-130.42944299999994 53.98304700000011) (-130.4375 53.981659000000036) (-130.44387800000004 53.97860000000003) (-130.452789 53.96804800000007) (-130.47517400000004 53.94421399999993) (-130.47550999999993 53.940712000000076) (-130.47917199999995 53.926379999999995) (-130.48266599999988 53.915379000000144) (-130.48516799999993 53.91204800000003) (-130.4895019999999 53.910549) (-130.494659 53.910217000000046) (-130.500854 53.91088100000013) (-130.524338 53.914711000000125) (-130.54724099999999 53.90387700000002) (-130.55248999999998 53.90776799999992) (-130.55639599999995 53.91193400000003) (-130.56527699999998 53.92582700000003) (-130.57748400000003 53.93721000000005) (-130.591949 53.949158000000125) (-130.59722899999997 53.953048999999965) (-130.60278299999993 53.956657000000064) (-130.61080900000002 53.959717000000126) (-130.621918 53.96166199999993) (-130.6580509999999 53.96443900000003) (-130.666962 53.963882000000126) (-130.67251599999997 53.95999100000006) (-130.676666 53.954162999999994) (-130.69528200000002 53.91944100000012) (-130.698059 53.91415400000005) (-130.695557 53.90943100000004) (-130.6849979999999 53.901932000000045) (-130.66305499999993 53.89222000000012) (-130.64666699999998 53.886657999999954) (-130.633331 53.87999000000002) (-130.62777700000004 53.876099000000124) (-130.62249799999995 53.8722150000001) (-130.6177669999999 53.86277000000001) (-130.61804199999995 53.85721600000005) (-130.62136799999996 53.85054800000006) (-130.62554899999998 53.844711000000075) (-130.6305539999999 53.839989) (-130.64251699999994 53.83277099999998) (-130.65139799999997 53.83443500000004) (-130.69583099999994 53.84443699999997) (-130.70639 53.85193600000014) (-130.710266 53.856384000000105) (-130.71276899999998 53.86110700000012) (-130.723053 53.917213000000004) (-130.72277799999995 53.922768000000076) (-130.7202759999999 53.93471500000004) (-130.7177729999999 53.939986999999974) (-130.667236 53.98693800000001) (-130.66168200000004 53.990829000000076) (-130.595276 54.02638200000007) (-130.523346 54.059989999999914) (-130.411133 54.10083000000009) (-130.40249600000004 54.10138699999999) (-130.37081899999998 54.08721200000008) (-130.336121 54.06749700000006) (-130.3049929999999 54.04527300000012) (-130.25918599999994 54.00471500000003)) ((-58.51833299999993 54.05165900000003) (-58.52666499999992 54.05054500000006) (-58.536666999999966 54.05082700000014) (-58.54555499999998 54.0522160000001) (-58.556389000000024 54.05471000000006) (-58.56138599999997 54.05804400000005) (-58.56138599999997 54.06388099999998) (-58.55777699999993 54.06916000000001) (-58.55277999999993 54.07444000000004) (-58.53556100000003 54.08665499999995) (-58.50305899999995 54.10305000000005) (-58.468605000000025 54.114716000000044) (-58.45055400000001 54.11721) (-58.43777499999999 54.11554700000005) (-58.378608999999926 54.10665900000009) (-58.373885999999914 54.10416400000008) (-58.378052000000025 54.09999800000014) (-58.40717299999994 54.09056100000004) (-58.426109 54.070831000000055) (-58.43250299999994 54.067214999999976) (-58.44055199999997 54.0647130000001) (-58.45639 54.061661000000015) (-58.51833299999993 54.05165900000003)) ((-132.808044 54.12027000000006) (-132.78891 54.119987000000094) (-132.77999899999998 54.12082700000013) (-132.75723300000004 54.126380999999924) (-132.73580899999996 54.13388100000003) (-132.70306399999993 54.139160000000004) (-132.65835600000003 54.142220000000066) (-132.6480709999999 54.14138000000003) (-132.63946499999997 54.1386030000001) (-132.57528699999995 54.11554700000005) (-132.56973300000004 54.111938000000066) (-132.55777 54.088043000000084) (-132.558899 54.04833200000007) (-132.56054699999999 54.04222100000004) (-132.56664999999992 54.029160000000104) (-132.57583599999998 54.01915700000001) (-132.58139 54.0149990000001) (-132.59387199999998 54.0086060000001) (-132.62554899999992 54.00222000000002) (-132.63275099999993 53.99971800000014) (-132.66418499999997 53.98333000000008) (-132.67999299999997 53.958885000000066) (-132.681671 53.95277399999998) (-132.680298 53.94776900000011) (-132.6589049999999 53.93943000000007) (-132.57223499999992 53.976653999999996) (-132.55584699999997 53.989159000000086) (-132.55029299999995 53.99388099999999) (-132.5477909999999 53.99916100000007) (-132.54888899999997 54.00416600000011) (-132.55307 54.00833100000011) (-132.54833999999994 54.02693899999997) (-132.54528800000003 54.03360700000013) (-132.54055799999998 54.03832999999997) (-132.416656 54.096100000000035) (-132.40972899999997 54.098602000000085) (-132.40167199999985 54.09999800000014) (-132.30111699999998 54.11166400000013) (-132.29055800000003 54.11054999999999) (-132.28582799999998 54.107773000000066) (-132.25280799999996 54.08526599999999) (-132.22833300000002 54.065826000000015) (-132.15029899999996 53.992767000000015) (-132.142517 53.97860000000003) (-132.11111499999998 53.878326000000015) (-132.11721799999992 53.864998000000014) (-132.125 53.853324999999984) (-132.13445999999988 53.84360500000008) (-132.225006 53.78027300000002) (-132.23111 53.77693900000003) (-132.24527 53.772217000000126) (-132.474426 53.70749699999999) (-132.50500499999998 53.70027199999993) (-132.52084399999995 53.69721200000009) (-132.53805499999999 53.69582399999996) (-132.55721999999997 53.69582399999996) (-132.56832899999995 53.697768999999994) (-132.58889799999992 53.699715000000026) (-132.6069339999999 53.69887499999999) (-132.62441999999993 53.69748700000008) (-132.64724699999994 53.69193300000012) (-132.6589049999999 53.68443300000001) (-132.66332999999997 53.67943600000012) (-132.665009 53.673325000000034) (-132.46362299999993 53.61277000000007) (-132.41805999999997 53.60610200000008) (-132.32138099999992 53.66360500000013) (-132.31527699999998 53.66693900000013) (-132.308044 53.66915899999992) (-132.29943799999995 53.66999100000004) (-132.290009 53.66971600000005) (-132.27890000000002 53.6680530000001) (-132.24554399999994 53.66249099999999) (-132.156403 53.716385) (-132.15249600000004 53.81249200000008) (-132.08450299999998 53.87273800000003) (-132.106201 53.91788100000002) (-132.126373 53.979431000000034) (-132.07250999999997 54.02276600000005) (-132.0150149999999 54.02193500000004) (-131.98803699999996 54.023048000000074) (-131.97109999999998 54.02526900000004) (-131.87499999999994 54.052773) (-131.86053500000003 54.057495000000074) (-131.81777999999997 54.07193799999999) (-131.75473 54.094993999999986) (-131.727783 54.10610200000002) (-131.71499599999999 54.11249500000014) (-131.70361299999996 54.120543999999995) (-131.67193599999996 54.146660000000054) (-131.66305499999999 54.15221400000007) (-131.66000399999996 54.13110400000011) (-131.666656 54.079436999999984) (-131.67279099999996 54.04415899999998) (-131.67971799999998 54.019714000000135) (-131.70498699999996 53.966934000000094) (-131.720825 53.94387800000004) (-131.73889199999996 53.92332499999998) (-131.78640699999994 53.87443500000012) (-131.79666099999997 53.865273) (-131.82971199999992 53.841102999999976) (-131.85333300000002 53.81638299999997) (-131.86886600000003 53.79332700000009) (-131.87222299999996 53.78694200000007) (-131.93331899999998 53.61527300000006) (-131.934998 53.609161000000086) (-131.94000199999988 53.51971400000002) (-131.9391779999999 53.50888800000013) (-131.91778599999998 53.3991620000001) (-131.90863000000002 53.35749800000002) (-131.95916699999992 53.27638200000007) (-131.96832299999988 53.26638800000006) (-131.98220799999996 53.25166300000012) (-131.988586 53.248604000000114) (-132.00585899999993 53.247214999999926) (-132.036407 53.25) (-132.0561219999999 53.253326000000015) (-132.08331299999992 53.25305200000008) (-132.17138699999998 53.23832700000014) (-132.19500700000003 53.233879) (-132.21054100000003 53.230545000000006) (-132.21749899999998 53.228324999999984) (-132.27279699999997 53.21027400000003) (-132.27029399999998 53.205551000000014) (-132.26611300000002 53.20138500000013) (-132.25558499999994 53.193877999999984) (-132.23776199999998 53.188881000000094) (-132.22997999999995 53.190544000000045) (-132.21581999999995 53.195267) (-132.20361299999996 53.20165999999995) (-132.19415299999991 53.20165999999995) (-132.14502 53.19832599999995) (-132.133911 53.19665500000008) (-132.12441999999987 53.19415300000003) (-132.121918 53.189430000000016) (-132.158905 53.16999099999998) (-132.18695099999997 53.16054500000001) (-132.19473300000004 53.15888200000006) (-132.390289 53.142769000000044) (-132.40835599999997 53.142220000000066) (-132.4466549999999 53.14360799999997) (-132.457489 53.14527100000009) (-132.506958 53.161102000000085) (-132.53668199999998 53.17887900000011) (-132.56527700000004 53.21276900000004) (-132.57638499999996 53.23220800000013) (-132.58581500000003 53.24027300000006) (-132.59664899999996 53.24748999999997) (-132.61471599999993 53.252777000000094) (-132.64529399999992 53.25555399999996) (-132.664734 53.25638600000008) (-132.683624 53.25666000000001) (-132.675842 53.281661999999926) (-132.61944599999998 53.30027000000001) (-132.552216 53.308043999999995) (-132.54446399999995 53.30943300000001) (-132.539734 53.31443800000005) (-132.53695700000003 53.32110600000004) (-132.53918499999997 53.326385000000016) (-132.54333499999996 53.33055100000007) (-132.54998799999987 53.33387800000003) (-132.55835000000002 53.33665500000012) (-132.568604 53.337494000000106) (-132.67001300000004 53.32694200000009) (-132.72000100000002 53.320831) (-132.73388699999998 53.33721200000002) (-132.709991 53.370270000000005) (-132.70443699999993 53.374435000000005) (-132.6975099999999 53.376937999999996) (-132.52076699999998 53.340160000000026) (-132.51744099999996 53.337990000000104) (-132.41641200000004 53.2972180000001) (-132.41055299999994 53.294715999999994) (-132.406677 53.300545) (-132.40362500000003 53.30721299999999) (-132.40057399999995 53.31944300000009) (-132.40029900000002 53.330826000000116) (-132.402802 53.33554800000002) (-132.406677 53.33971400000007) (-132.41223099999996 53.34360499999997) (-132.52084399999995 53.41220900000013) (-132.54138199999994 53.41638200000011) (-132.73580899999996 53.45332300000001) (-132.857758 53.461104999999975) (-132.86749299999997 53.463608000000136) (-132.87277199999988 53.467209000000025) (-132.97250399999996 53.55582400000014) (-132.991669 53.583054000000004) (-132.9941409999999 53.58776900000004) (-132.9888919999999 53.59193400000004) (-132.96139500000004 53.60027300000007) (-132.95361300000002 53.60193600000002) (-132.94415300000003 53.60193600000002) (-132.93444799999986 53.599716) (-132.91805999999997 53.58860000000004) (-132.90972899999997 53.585823000000005) (-132.898621 53.584160000000054) (-132.89083900000003 53.58554800000013) (-132.88446 53.588882000000126) (-132.880829 53.59471100000013) (-132.8805539999999 53.60027300000007) (-132.88192700000002 53.605552999999986) (-132.8861389999999 53.60971799999999) (-132.92028800000003 53.63721499999991) (-132.935272 53.648604999999975) (-132.950562 53.654709000000025) (-133.00778200000002 53.676383999999985) (-132.95361300000002 53.68277000000012) (-132.95443699999998 53.70277400000003) (-132.9844359999999 53.74276700000007) (-133.02471899999995 53.751389000000074) (-133.03362999999996 53.75277699999998) (-133.09387200000003 53.77555100000012) (-133.10082999999997 53.77860300000003) (-133.10638399999993 53.7824940000001) (-133.10916099999997 53.78694200000007) (-133.13751199999996 53.87499200000002) (-133.13891599999994 53.88027200000005) (-133.140015 53.908043000000134) (-133.13833599999992 53.91415400000005) (-133.133911 53.91915900000009) (-133.11639399999996 53.93415800000014) (-133.09527599999996 53.94943200000006) (-133.09081999999995 53.954162999999994) (-133.041107 54.03166199999998) (-133.039734 54.03777300000007) (-133.04083299999996 54.0430530000001) (-133.05862399999995 54.07610299999999) (-133.079163 54.09777100000008) (-133.08193999999992 54.10249299999998) (-133.07165499999996 54.16888399999999) (-133.06722999999988 54.17388199999999) (-133.04083299999996 54.176102000000014) (-133.0311279999999 54.176102000000014) (-132.94027700000004 54.16137700000007) (-132.93029799999994 54.15915700000005) (-132.92001299999993 54.15248900000006) (-132.90335099999993 54.13582600000001) (-132.82748400000003 54.122490000000084) (-132.808044 54.12027000000006)) ((-130.19555699999995 54.11805000000004) (-130.21166999999997 54.115273000000116) (-130.22109999999998 54.11554700000005) (-130.23220799999996 54.11749300000014) (-130.24581899999993 54.12416100000013) (-130.251129 54.128044000000045) (-130.25500499999998 54.132209999999986) (-130.261414 54.14138000000003) (-130.26364099999995 54.14610299999998) (-130.26473999999996 54.151381999999955) (-130.26306199999993 54.16832700000009) (-130.2611389999999 54.174164000000076) (-130.25778199999996 54.18082400000009) (-130.2528079999999 54.1855470000001) (-130.239716 54.18971299999998) (-130.23083499999996 54.190269) (-130.20944199999985 54.18720999999999) (-130.2099909999999 54.18360100000001) (-130.20166 54.18305200000003) (-130.19223 54.18054999999998) (-130.17861900000003 54.173607000000004) (-130.161133 54.16276600000009) (-130.15585299999992 54.15888200000006) (-130.15194699999995 54.154434000000094) (-130.15112299999998 54.14943699999998) (-130.153076 54.14332600000006) (-130.158051 54.138329) (-130.169464 54.130547000000035) (-130.19555699999995 54.11805000000004)) ((-79.46972700000003 54.167496000000085) (-79.47721899999988 54.16582500000004) (-79.483612 54.169159000000036) (-79.48500100000001 54.174713) (-79.48110999999994 54.18749200000008) (-79.47555499999993 54.191376000000105) (-79.43472300000002 54.20027200000004) (-79.41305499999999 54.19165799999996) (-79.41861 54.18720999999999) (-79.42639200000002 54.18305200000003) (-79.46972700000003 54.167496000000085)) ((-130.648621 54.114441000000056) (-130.67138699999992 54.107773000000066) (-130.69055199999997 54.10833000000014) (-130.69888299999997 54.11110700000006) (-130.77417000000003 54.142220000000066) (-130.78500399999996 54.14999400000005) (-130.798065 54.16220899999996) (-130.800568 54.16693900000001) (-130.79861500000004 54.1730500000001) (-130.78167699999995 54.2116620000001) (-130.77444500000001 54.21388200000007) (-130.763916 54.21276900000004) (-130.75613399999992 54.20916) (-130.74636799999996 54.206657000000064) (-130.72582999999997 54.19665500000008) (-130.64889500000004 54.14971900000006) (-130.64501999999993 54.14527100000009) (-130.640015 54.13582600000001) (-130.63919099999993 54.13082099999997) (-130.63946499999997 54.124992000000134) (-130.642792 54.11859900000002) (-130.648621 54.114441000000056)) ((-130.3555599999999 54.25777399999998) (-130.3666379999999 54.24110400000001) (-130.375 54.244155999999975) (-130.38861099999997 54.25083200000006) (-130.400574 54.25804899999997) (-130.45556599999998 54.29583000000014) (-130.46639999999996 54.303322000000094) (-130.46722399999993 54.30860100000007) (-130.4475099999999 54.325829) (-130.440002 54.32804900000002) (-130.43112199999996 54.32860600000009) (-130.41778599999992 54.326385000000016) (-130.39196799999996 54.312492000000134) (-130.385284 54.308884000000035) (-130.37997399999995 54.30526700000007) (-130.37582399999997 54.30082700000008) (-130.35470599999996 54.26915700000001) (-130.35220299999997 54.264442000000145) (-130.3555599999999 54.25777399999998)) ((-130.266418 54.26055100000008) (-130.32528699999995 54.243050000000096) (-130.33416699999998 54.24471300000005) (-130.33804299999997 54.24887800000005) (-130.355255 54.282211000000075) (-130.354156 54.29332699999998) (-130.350281 54.30555000000004) (-130.344452 54.30971500000004) (-130.29000899999994 54.33221400000002) (-130.2727969999999 54.329720000000066) (-130.26751699999994 54.325829) (-130.25973499999998 54.317497) (-130.252502 54.30304700000005) (-130.25058 54.292770000000075) (-130.2516779999999 54.28138000000001) (-130.255585 54.269440000000145) (-130.25973499999998 54.26361099999991) (-130.266418 54.26055100000008)) ((-130.70416299999994 54.356659000000036) (-130.745544 54.35471300000012) (-130.754456 54.356102000000135) (-130.763916 54.364159000000086) (-130.767242 54.37416100000007) (-130.7683409999999 54.379433000000006) (-130.76779199999987 54.38499500000012) (-130.76446499999992 54.38943499999999) (-130.75805699999995 54.39249400000011) (-130.72943099999986 54.40277100000009) (-130.7222289999999 54.40499100000011) (-130.71417199999996 54.40638000000013) (-130.699432 54.40665400000006) (-130.68890399999998 54.39332600000006) (-130.68331899999998 54.3730470000001) (-130.685272 54.36693600000001) (-130.6894529999999 54.36138199999999) (-130.696106 54.35804700000011) (-130.70416299999994 54.356659000000036)) ((-57.32472199999995 54.49887799999999) (-57.34249899999992 54.49860400000006) (-57.35166899999996 54.5002750000001) (-57.35666699999996 54.50222000000008) (-57.36277799999999 54.50610400000011) (-57.365005 54.511664999999994) (-57.36555499999997 54.51638799999995) (-57.36250299999995 54.52748900000012) (-57.359443999999996 54.533332999999914) (-57.333327999999995 54.56554399999999) (-57.32778200000001 54.57083100000011) (-57.32111400000002 54.57499700000005) (-57.26722000000001 54.58554800000013) (-57.265556000000004 54.580551000000014) (-57.269722 54.57499700000005) (-57.27272800000003 54.57249500000012) (-57.239441 54.52221700000001) (-57.240279999999984 54.517769000000044) (-57.255004999999926 54.513329) (-57.29305999999991 54.5036090000001) (-57.30777699999999 54.500549000000035) (-57.32472199999995 54.49887799999999)) ((-130.95166 54.45471199999997) (-130.95944199999997 54.45332300000001) (-130.96499600000004 54.456940000000145) (-130.96749899999992 54.46166200000005) (-130.96609499999994 54.51082600000001) (-130.96472199999994 54.52777100000014) (-130.961121 54.53999299999998) (-130.93057299999998 54.61471599999993) (-130.92556799999994 54.61943800000006) (-130.88891599999994 54.62887600000005) (-130.88137800000004 54.62915800000013) (-130.754456 54.62943300000012) (-130.74777199999994 54.626099000000124) (-130.74664299999995 54.62082700000002) (-130.74694799999997 54.61527300000006) (-130.7441409999999 54.60166200000009) (-130.745544 54.584717000000126) (-130.74914599999994 54.57276900000005) (-130.752502 54.56610100000012) (-130.75613399999992 54.559433000000126) (-130.760834 54.554710000000114) (-130.766663 54.55054500000011) (-130.84915199999995 54.496941000000106) (-130.855835 54.493881000000044) (-130.93695099999997 54.459434999999985) (-130.95166 54.45471199999997)) ((-79.66722099999993 54.76388500000013) (-79.726944 54.75249500000007) (-79.71028100000001 54.76388500000013) (-79.70361300000002 54.76693700000004) (-79.61111499999998 54.79332700000009) (-79.58721899999995 54.79916400000002) (-79.624435 54.77971600000012) (-79.631104 54.776657000000114) (-79.63778699999995 54.77360500000003) (-79.65972899999991 54.766106000000036) (-79.66722099999993 54.76388500000013)) ((-130.2683409999999 54.714995999999985) (-130.370544 54.692214999999976) (-130.37887599999988 54.69526700000006) (-130.37609899999995 54.70054600000003) (-130.3710939999999 54.705269000000044) (-130.326935 54.739716000000044) (-130.32110599999987 54.743881000000044) (-130.2241519999999 54.80304699999999) (-130.21749899999998 54.80638099999999) (-130.20944199999985 54.80777000000012) (-130.20694000000003 54.80304699999999) (-130.19860800000004 54.78360700000002) (-130.200562 54.77748900000006) (-130.20971699999996 54.760551000000135) (-130.21362299999993 54.74832900000001) (-130.217224 54.74166100000002) (-130.22222899999986 54.73693800000001) (-130.23388699999998 54.72887400000002) (-130.2611389999999 54.71720900000014) (-130.2683409999999 54.714995999999985)) ((-130.51834099999996 54.70249200000012) (-130.527222 54.70193500000005) (-130.5386049999999 54.70388000000003) (-130.56750499999993 54.716934000000094) (-130.57443199999994 54.72026800000009) (-130.585266 54.72776799999997) (-130.60803199999992 54.74832900000001) (-130.6105349999999 54.75305200000014) (-130.61166399999996 54.758049000000085) (-130.60665900000004 54.763054000000125) (-130.4880369999999 54.80749500000013) (-130.47998 54.80888399999992) (-130.469452 54.80777000000012) (-130.458618 54.80027000000007) (-130.44665499999996 54.787216) (-130.44027699999992 54.77832799999999) (-130.43777499999993 54.77360500000003) (-130.43582199999997 54.76332900000011) (-130.4397279999999 54.75110600000005) (-130.4538879999999 54.71915400000012) (-130.457489 54.712769000000094) (-130.46331799999996 54.70860300000004) (-130.51834099999996 54.70249200000012)) ((-57.94083399999994 54.911933999999974) (-57.985832000000016 54.87082699999996) (-57.98860899999994 54.86721) (-57.991942999999935 54.833878000000084) (-57.98388699999987 54.80221599999999) (-57.98027799999994 54.79860700000012) (-57.971663999999976 54.798050000000046) (-57.965553 54.79943799999995) (-57.95889299999999 54.80304699999999) (-57.955558999999994 54.80582400000009) (-57.923888999999974 54.82332600000012) (-57.871666000000005 54.83166499999993) (-57.864723000000026 54.83221400000008) (-57.85972600000002 54.83027600000014) (-57.843613000000005 54.82054900000003) (-57.841110000000015 54.81693999999999) (-57.84166700000003 54.81249200000002) (-57.84833499999996 54.80693800000006) (-57.875 54.79332700000009) (-57.88194299999992 54.790549999999996) (-58.02277400000003 54.75555400000002) (-58.031386999999995 54.75388299999997) (-58.04000099999996 54.75277699999998) (-58.04999499999991 54.75305200000014) (-58.11999500000002 54.75555400000002) (-58.13916799999993 54.75721699999997) (-58.15943900000002 54.76138300000008) (-58.174171 54.76776899999999) (-58.17694899999998 54.77082800000011) (-58.17237899999998 54.797314000000085) (-58.184173999999985 54.80847199999994) (-58.21971899999994 54.825829000000056) (-58.22277100000002 54.83027600000014) (-58.224715999999944 54.83526599999999) (-58.225554999999986 54.850273000000016) (-58.225554999999986 54.86277000000001) (-58.22499800000003 54.86693600000007) (-58.21888699999994 54.87526700000001) (-58.215836000000024 54.8780440000001) (-58.20972399999994 54.87748700000003) (-58.04944599999993 54.893326000000116) (-57.96777300000002 54.919159000000036) (-57.94277199999999 54.92499500000014) (-57.94027699999998 54.923607000000004) (-57.93860599999999 54.918602000000135) (-57.94083399999994 54.911933999999974)) ((-79.12582399999991 54.89721700000001) (-79.13444500000003 54.895827999999995) (-79.23500099999995 54.89666000000011) (-79.51528899999994 54.840546000000074) (-79.66027799999995 54.805549999999926) (-79.76362599999999 54.771660000000054) (-79.77417000000003 54.77304800000013) (-79.776947 54.77804600000013) (-79.77333099999998 54.783333000000084) (-79.76888999999994 54.78777300000007) (-79.72555499999999 54.81888600000008) (-79.714722 54.82638500000007) (-79.68693499999995 54.83832600000005) (-79.65666199999998 54.84665699999999) (-79.46722399999993 54.888329) (-79.45861799999994 54.88999200000012) (-79.43055700000002 54.892769000000044) (-79.41944899999987 54.892769000000044) (-79.3394469999999 54.89694199999997) (-79.16416900000002 54.92555200000004) (-79.053879 54.94665500000008) (-79.04194599999988 54.94582400000007) (-79.01501499999995 54.93832400000002) (-79.01501499999995 54.932213000000104) (-79.027222 54.925270000000125) (-79.05749499999996 54.917770000000075) (-79.10278299999999 54.90387700000002) (-79.12582399999991 54.89721700000001)) ((-58.67527799999999 54.914153999999996) (-58.68360899999999 54.913048) (-58.75250199999999 54.91582500000004) (-58.757225000000005 54.916100000000085) (-58.76055899999989 54.92054699999994) (-58.75917099999998 54.92610200000007) (-58.75472300000001 54.93249500000002) (-58.70166799999993 54.999161000000015) (-58.697495 55.003326000000015) (-58.69110899999998 55.00694299999998) (-58.684722999999906 55.008331000000055) (-58.67639199999991 55.00943799999999) (-58.66027799999995 55.0086060000001) (-58.6536099999999 55.00555400000002) (-58.65277899999995 55.00110600000005) (-58.65750099999997 54.99610099999995) (-58.6627729999999 54.99221800000004) (-58.65833299999997 54.96249400000005) (-58.65666199999998 54.94221500000009) (-58.65860700000002 54.93249500000002) (-58.663054999999986 54.92249300000003) (-58.66889200000003 54.917770000000075) (-58.67527799999999 54.914153999999996)) ((-130.385284 54.76998899999995) (-130.39916999999997 54.76471700000002) (-130.40918 54.767212000000086) (-130.41445899999997 54.77082800000011) (-130.45556599999998 54.81332400000014) (-130.45944199999997 54.81749700000006) (-130.46194499999996 54.82222000000007) (-130.459991 54.82833099999999) (-130.41833499999996 54.85332499999993) (-130.385284 54.8688810000001) (-130.343048 54.89499699999999) (-130.27029400000004 54.95027200000004) (-130.25 54.96971100000013) (-130.22778299999993 54.99721499999998) (-130.2133179999999 55.012496999999996) (-130.20083599999992 55.01971400000008) (-130.184998 55.02332300000012) (-130.175293 55.023048000000074) (-130.168335 55.01971400000008) (-130.16500899999988 55.01416000000012) (-130.16027799999995 55.00443999999999) (-130.146973 54.97582200000005) (-130.14529399999998 54.96527100000014) (-130.14556899999997 54.959717000000126) (-130.14611799999994 54.95416300000011) (-130.14974999999998 54.947487000000024) (-130.16332999999997 54.931381000000044) (-130.27029400000004 54.830826) (-130.385284 54.76998899999995)) ((-82.964722 55.26361100000008) (-82.97000099999997 55.259720000000016) (-83.01445000000001 55.26971400000002) (-83.03195199999988 55.27388000000013) (-83.035278 55.27887700000002) (-83.02749599999993 55.28138000000001) (-83.016953 55.2816620000001) (-82.99027999999998 55.280548000000124) (-82.98083500000001 55.27887700000002) (-82.96333299999998 55.27388000000013) (-82.96166999999997 55.26915700000012) (-82.964722 55.26361100000008)) ((-77.59277299999991 55.43526500000013) (-77.633331 55.42443800000012) (-77.64416499999987 55.42582700000008) (-77.44943199999994 55.53388200000006) (-77.33612099999999 55.60443900000013) (-77.32305899999994 55.610550000000046) (-77.22138999999993 55.65360299999992) (-77.21389799999992 55.65526600000004) (-77.20527600000003 55.65387700000008) (-77.19999699999994 55.65026899999998) (-77.20111099999991 55.64415699999995) (-77.210556 55.63971700000013) (-77.25222799999995 55.618050000000096) (-77.38917499999997 55.54638699999998) (-77.45222499999994 55.5127720000001) (-77.47416699999997 55.49804699999993) (-77.48416099999992 55.48915899999997) (-77.49499499999996 55.48137700000001) (-77.50056499999994 55.4783250000001) (-77.55221599999993 55.45304900000002) (-77.59277299999991 55.43526500000013)) ((-60.970832999999914 55.869437999999946) (-60.98833499999995 55.86721) (-60.99833699999999 55.86776700000007) (-61.008895999999936 55.86915600000009) (-61.016944999999964 55.873046999999985) (-61.05166600000001 55.9011000000001) (-61.05666400000001 55.905823000000055) (-61.05916599999995 55.909988000000055) (-61.07055700000001 55.93859900000001) (-61.06555199999997 55.94415300000003) (-61.04778299999998 55.945541000000105) (-61.03694899999999 55.9447100000001) (-60.96805599999999 55.93665299999992) (-60.94860799999998 55.93054999999998) (-60.90833299999997 55.898330999999985) (-60.906386999999995 55.893326000000116) (-60.91110999999995 55.8877720000001) (-60.91750300000001 55.884163000000115) (-60.970832999999914 55.869437999999946)) ((-60.858611999999994 55.864716000000044) (-60.87610599999999 55.863883999999985) (-60.89250199999998 55.864441000000056) (-60.898612999999955 55.86721) (-60.902221999999995 55.87137600000011) (-60.90055100000001 55.87638099999998) (-60.87361099999987 55.94360400000005) (-60.86999500000002 55.949432) (-60.86500499999994 55.95277400000009) (-60.851944 55.95526899999993) (-60.748336999999935 55.94415300000003) (-60.74138599999992 55.94276400000001) (-60.74250000000001 55.93915600000008) (-60.74749800000001 55.931663999999955) (-60.691939999999875 55.925270000000125) (-60.68638599999997 55.92193600000013) (-60.68804899999998 55.91721300000012) (-60.69277199999999 55.911658999999986) (-60.70500199999998 55.90304600000002) (-60.71860499999991 55.896385000000066) (-60.756393 55.88027200000005) (-60.778610000000015 55.87609900000007) (-60.840836000000024 55.86610399999995) (-60.858611999999994 55.864716000000044)) ((-79.12304699999993 55.78999300000004) (-79.13055399999996 55.788887000000045) (-79.135559 55.78916200000003) (-79.13778699999995 55.79054999999994) (-79.13612399999994 55.79415899999998) (-79.13166799999993 55.799995000000024) (-79.12609900000001 55.80387900000005) (-79.12193299999996 55.808601000000124) (-79.10888699999992 55.82388300000014) (-79.10278299999999 55.83305400000012) (-79.03916899999996 55.95249200000006) (-79.03083799999996 55.96859699999993) (-79.027222 55.97693599999997) (-79.02223200000003 55.99638400000009) (-79.00935399999997 56.063614000000086) (-78.96000700000002 56.08305400000006) (-78.95750399999997 56.08360299999998) (-78.95278899999994 56.080826000000116) (-78.9491579999999 56.071663000000115) (-78.93971299999998 56.02526899999998) (-79.05444299999994 55.86554700000005) (-79.08999599999999 55.81693999999999) (-79.104446 55.80082700000014) (-79.11665299999999 55.79249600000003) (-79.12304699999993 55.78999300000004)) ((-60.943329000000006 56.00666000000001) (-61.040557999999976 56.005272000000105) (-61.0819469999999 56.01138299999997) (-61.14138799999995 56.02054599999997) (-61.17111199999988 56.028602999999976) (-61.18721800000003 56.03388200000012) (-61.215836000000024 56.04638700000004) (-61.22083299999997 56.05082700000008) (-61.22833300000002 56.06332400000008) (-61.23277299999995 56.07276900000011) (-61.233611999999994 56.08554800000002) (-61.23277299999995 56.09110300000009) (-61.226944 56.09804500000001) (-61.217498999999975 56.10054799999995) (-61.21167000000003 56.1013870000001) (-61.08916499999998 56.169991000000095) (-61.05916599999995 56.15971400000012) (-61.04583699999989 56.153877000000136) (-60.94444299999998 56.094993999999986) (-60.943610999999976 56.09027100000014) (-60.93444099999999 56.015830999999935) (-60.93472299999996 56.01138299999997) (-60.943329000000006 56.00666000000001)) ((-61.62361099999998 56.39999399999999) (-61.54666899999995 56.39083099999999) (-61.49305700000002 56.40499100000005) (-61.48277300000001 56.406654) (-61.474716 56.406654) (-61.46832999999992 56.40443399999998) (-61.41527599999995 56.376656000000025) (-61.41166700000002 56.372214999999926) (-61.41110999999995 56.36721000000006) (-61.412216 56.32665999999995) (-61.416106999999954 56.32222000000013) (-61.424171 56.32027400000004) (-61.48277300000001 56.30999000000003) (-61.569449999999904 56.320549000000085) (-61.57972699999999 56.32249499999995) (-61.599723999999924 56.32777399999992) (-61.68638599999986 56.35277600000006) (-61.719993999999986 56.36582900000002) (-61.788895000000025 56.405823) (-61.79333500000001 56.40888200000012) (-61.79611199999994 56.41304800000006) (-61.79055799999992 56.41582499999993) (-61.78388999999987 56.41582499999993) (-61.67777999999993 56.405548000000124) (-61.62361099999998 56.39999399999999)) ((-78.83999599999993 56.12999000000008) (-78.92749000000003 56.1138840000001) (-78.93331899999998 56.11554700000005) (-78.93055699999996 56.12860100000012) (-78.916946 56.172493000000145) (-78.9083399999999 56.18249500000013) (-78.90388499999995 56.18720999999999) (-78.883331 56.201935000000105) (-78.84638999999999 56.2347180000001) (-78.83029199999993 56.25332600000013) (-78.825287 56.2627720000001) (-78.81332399999997 56.30470999999994) (-78.80943299999996 56.338882000000126) (-78.81388899999996 56.343323000000055) (-78.83473200000003 56.34554300000002) (-78.83250399999991 56.35082999999997) (-78.76251200000002 56.42471300000011) (-78.75140399999992 56.432495000000074) (-78.73167399999994 56.4405440000001) (-78.69499200000001 56.4438780000001) (-78.68638599999991 56.44332099999997) (-78.66722099999998 56.4397130000001) (-78.66166699999997 56.43610400000006) (-78.66000399999996 56.430550000000096) (-78.65083299999992 56.289161999999976) (-78.65278599999994 56.24193600000007) (-78.65556300000003 56.22360200000014) (-78.67639200000002 56.181107) (-78.68859900000001 56.17276799999996) (-78.83999599999993 56.12999000000008)) ((-79.626938 56.26527399999998) (-79.63583399999999 56.26499899999999) (-79.63667299999997 56.266388000000006) (-79.63639799999987 56.26915700000012) (-79.60943600000002 56.31971699999997) (-79.53860500000002 56.433051999999975) (-79.53443900000002 56.43749199999996) (-79.52389499999998 56.44276400000007) (-79.51112399999994 56.44638100000003) (-79.49694799999997 56.44860100000005) (-79.49221799999992 56.44693799999993) (-79.49055499999992 56.44082600000013) (-79.51083399999993 56.397491) (-79.55776999999989 56.305267000000015) (-79.56111099999993 56.299164000000076) (-79.56555200000003 56.29388400000005) (-79.569458 56.28999299999998) (-79.61944599999987 56.26721199999997) (-79.626938 56.26527399999998)) ((-79.61999500000002 56.385268999999994) (-79.63806199999999 56.360550000000046) (-79.64944499999996 56.346382000000006) (-79.66332999999997 56.33387800000014) (-79.68249500000002 56.317496999999946) (-79.70111099999997 56.306381000000044) (-79.714447 56.29999500000008) (-79.90666199999993 56.227211000000125) (-79.92832899999996 56.219711000000075) (-79.98611499999998 56.19971500000008) (-80.01916499999993 56.19137600000005) (-80.06054699999999 56.18443300000007) (-80.08250399999991 56.18665300000009) (-80.09222399999999 56.18832400000014) (-80.10055499999999 56.19137600000005) (-80.10749799999991 56.19499200000013) (-80.10972600000002 56.197768999999994) (-80.110275 56.20332300000001) (-80.100281 56.23915899999997) (-80.09861799999987 56.24415600000009) (-80.05526700000001 56.30360400000012) (-80.04444899999993 56.310822000000144) (-80.04055800000003 56.31276700000012) (-80.02250699999996 56.31971699999997) (-79.86749299999997 56.357498000000135) (-79.79554699999994 56.366661000000136) (-79.75666799999999 56.36193799999995) (-79.72444200000001 56.36277000000007) (-79.69888299999991 56.36888099999999) (-79.679169 56.378326000000015) (-79.656387 56.3927690000001) (-79.64250199999998 56.40443399999998) (-79.61888099999993 56.426941000000056) (-79.614441 56.43166400000007) (-79.60417199999995 56.444153000000085) (-79.59805299999994 56.4544370000001) (-79.59138499999995 56.46915400000012) (-79.58833300000003 56.493881000000044) (-79.58528100000001 56.49916100000007) (-79.58250399999991 56.50166300000001) (-79.54972800000002 56.52526900000004) (-79.54333499999996 56.52777100000014) (-79.54277000000002 56.522217000000126) (-79.54943800000001 56.508049000000085) (-79.61389199999996 56.39527099999998) (-79.61999500000002 56.385268999999994)) ((-61.43582900000001 56.54138200000011) (-61.16805999999997 56.47470900000002) (-61.14999399999999 56.44554099999999) (-61.14888799999994 56.441101) (-61.15444200000002 56.43859900000007) (-61.163612 56.436653000000035) (-61.181945999999925 56.43526500000013) (-61.200278999999966 56.43526500000013) (-61.22083299999997 56.435546999999985) (-61.517501999999865 56.44693799999993) (-61.60916900000001 56.46166199999999) (-61.63055399999996 56.46527099999997) (-61.64222699999999 56.48638200000005) (-61.63722199999995 56.489716000000044) (-61.629997 56.49054700000005) (-61.54639400000002 56.48804499999994) (-61.538612 56.48582499999998) (-61.525832999999864 56.47887400000002) (-61.512778999999966 56.4749910000001) (-61.43804899999992 56.47637900000001) (-61.42305799999997 56.4791560000001) (-61.417778 56.48333000000014) (-61.41833500000001 56.48832700000003) (-61.42250100000001 56.49054700000005) (-61.455276000000026 56.49638399999998) (-61.496666000000005 56.50000000000006) (-61.52722199999994 56.50166300000001) (-61.624168 56.50388299999997) (-61.633331 56.506386000000134) (-61.63444500000003 56.51249700000005) (-61.63194299999998 56.51638800000012) (-61.602225999999916 56.55277300000006) (-61.59583299999997 56.55638099999999) (-61.58833299999998 56.55804400000005) (-61.576667999999984 56.55776999999995) (-61.56166799999994 56.554161000000136) (-61.558051999999975 56.55193300000002) (-61.52594799999997 56.550212999999985) (-61.45916699999992 56.54583000000008) (-61.43582900000001 56.54138200000011)) ((-79.02166699999992 56.426941000000056) (-79.00944500000003 56.426383999999985) (-78.98832699999997 56.426941000000056) (-78.9491579999999 56.43082400000003) (-78.94305400000002 56.430550000000096) (-78.93582200000003 56.428878999999995) (-78.92887899999994 56.42582700000008) (-78.92471299999994 56.419441000000006) (-78.922775 56.415268000000026) (-78.921112 56.409714000000065) (-78.92054699999994 56.40332000000001) (-78.92304999999993 56.386940000000095) (-78.93638599999997 56.317496999999946) (-78.94332899999995 56.284996000000035) (-78.94999699999994 56.282493999999986) (-78.95527600000003 56.27915999999999) (-78.96139499999987 56.27137800000003) (-79.02917499999995 56.172493000000145) (-79.06138599999997 56.124435000000005) (-79.07167099999998 56.104996000000085) (-79.08500700000002 56.07749200000012) (-79.09416199999998 56.05499300000014) (-79.12999000000002 55.98943299999996) (-79.17527799999993 55.92332499999992) (-79.19526699999994 55.8919370000001) (-79.20361300000002 55.89415700000012) (-79.166267 55.973881000000006) (-79.122116 56.046715000000006) (-79.061935 56.14860500000003) (-79.02278100000001 56.20249200000001) (-79.008896 56.22165699999994) (-78.99082900000002 56.261664999999994) (-78.98582499999998 56.27360500000009) (-78.97277799999995 56.30665600000003) (-78.97027599999996 56.31415600000008) (-78.96777299999991 56.323608000000036) (-78.9661099999999 56.33610500000003) (-78.97027599999996 56.37804399999999) (-78.97084000000001 56.3836060000001) (-78.97721899999999 56.38860299999999) (-78.98332199999999 56.38971699999996) (-78.99888599999991 56.384163) (-79.04333499999996 56.360550000000046) (-79.05526700000001 56.34443700000003) (-79.06221 56.32972000000001) (-79.08917200000002 56.267769000000044) (-79.09110999999996 56.26305400000001) (-79.09306299999997 56.25694300000009) (-79.09294899999998 56.231716000000006) (-79.09544399999999 56.2190480000001) (-79.09394800000001 56.21371799999997) (-79.092781 56.21155199999998) (-79.08911099999995 56.21188400000011) (-79.083328 56.17416400000002) (-79.212784 55.95416300000011) (-79.23611499999993 55.917496000000085) (-79.25944499999991 55.88610800000009) (-79.275284 55.87027000000006) (-79.28332499999999 55.864441000000056) (-79.28666699999985 55.86666100000008) (-79.28611799999999 55.869987000000094) (-79.27806099999992 55.88555100000002) (-79.26722699999993 55.90304600000002) (-79.22666899999996 55.96249399999999) (-79.18360899999993 56.03749799999997) (-79.13999899999993 56.115273000000116) (-79.133896 56.12665600000008) (-79.132721 56.17577000000006) (-79.13856499999986 56.2052690000001) (-79.139725 56.20776699999999) (-79.14356199999997 56.21126600000014) (-79.15055799999999 56.233047) (-79.160553 56.231377000000066) (-79.17027299999995 56.225548) (-79.20556599999998 56.190826000000015) (-79.24388099999999 56.15110000000004) (-79.256393 56.13110400000005) (-79.27084400000001 56.10471299999995) (-79.27749599999999 56.090828000000045) (-79.28416400000003 56.07804900000002) (-79.29972799999996 56.05165899999997) (-79.30915800000002 56.03638500000011) (-79.32362399999994 56.016936999999984) (-79.35861199999994 55.97443400000009) (-79.45249899999999 55.879990000000134) (-79.47999600000003 55.863883999999985) (-79.49305699999996 55.85888700000004) (-79.500565 55.85665900000009) (-79.510559 55.85555300000004) (-79.52027900000002 55.854713000000004) (-79.53250099999997 55.85499600000014) (-79.56777999999997 55.864716000000044) (-79.59388699999994 55.87443500000006) (-79.60499600000003 55.881660000000124) (-79.78195199999999 55.78804800000006) (-79.76306199999993 55.814156000000025) (-79.59805299999994 55.98165899999998) (-79.48693799999995 56.08721200000002) (-79.474716 56.09832799999998) (-79.47027599999996 56.10443900000001) (-79.470551 56.112770000000125) (-79.47250400000001 56.11693600000001) (-79.478882 56.12332200000009) (-79.49722299999996 56.133605999999986) (-79.51306199999999 56.13499500000012) (-79.523056 56.133880999999974) (-79.537216 56.12971500000009) (-79.55027799999993 56.12332200000009) (-79.56750499999998 56.112770000000125) (-79.59722899999997 56.09137700000002) (-79.64500399999997 56.050545) (-79.81945799999994 55.9011000000001) (-79.83168 55.88999200000012) (-79.84666399999998 55.87416100000013) (-79.858047 55.85999300000009) (-79.86389200000002 55.85083000000009) (-79.86582900000002 55.84721400000001) (-79.90916400000003 55.840546000000074) (-79.98582499999998 55.89804800000002) (-79.96194499999996 55.96027400000003) (-79.77444499999996 56.112213000000054) (-79.66805999999991 56.18998700000003) (-79.64862099999999 56.198326000000066) (-79.64222699999999 56.20138500000007) (-79.587784 56.23027000000013) (-79.53633099999996 56.295052000000055) (-79.52683999999999 56.304214000000115) (-79.51617399999998 56.319881000000066) (-79.49466699999999 56.36721400000005) (-79.48733500000003 56.40271400000012) (-79.45889299999988 56.464157) (-79.45861799999994 56.46832300000011) (-79.45861799999994 56.478600000000085) (-79.46610999999996 56.498878000000104) (-79.47444199999995 56.52110299999998) (-79.47138999999993 56.54444100000006) (-79.46610999999996 56.54833200000013) (-79.45666499999999 56.55332199999998) (-79.44888300000002 56.55443599999995) (-79.445267 56.553604000000064) (-79.44193999999987 56.55138400000004) (-79.43859900000001 56.54777500000006) (-79.41833499999996 56.490829000000076) (-79.41944899999987 56.44360399999994) (-79.44300099999998 56.39343600000001) (-79.47499800000003 56.32043800000014) (-79.531387 56.206940000000145) (-79.51445000000001 56.18637800000005) (-79.46167000000003 56.193321000000026) (-79.43888900000002 56.19721200000009) (-79.42721599999999 56.20304900000008) (-79.41639700000002 56.21221200000008) (-79.41305499999999 56.21666000000005) (-79.30999800000001 56.42416399999996) (-79.30110199999996 56.447212000000036) (-79.29804999999993 56.4594350000001) (-79.29333500000001 56.48804499999994) (-79.291672 56.498878000000104) (-79.28639199999992 56.57027399999998) (-79.13999899999993 56.54638699999998) (-79.13305700000001 56.54277000000002) (-79.12999000000002 56.53777300000007) (-79.12554899999998 56.51415999999995) (-79.12193299999996 56.49554399999994) (-79.11999500000002 56.48998999999998) (-79.11193800000001 56.47526600000009) (-79.09999099999999 56.46305100000001) (-79.09138499999989 56.4544370000001) (-79.07556199999993 56.444153000000085) (-79.05555700000002 56.43387600000011) (-79.03889500000002 56.428878999999995) (-79.02166699999992 56.426941000000056)) ((-79.14195299999994 56.61666100000008) (-79.15194699999995 56.61638600000009) (-79.26000999999997 56.6280440000001) (-79.26889 56.629158000000075) (-79.274719 56.632209999999986) (-79.27749599999999 56.637215000000026) (-79.27999899999998 56.64888000000013) (-79.28028899999998 56.654990999999995) (-79.27500900000001 56.667213000000004) (-79.27194199999997 56.67193600000013) (-79.25472999999988 56.67999300000014) (-79.24415599999992 56.68249500000002) (-79.21888699999994 56.68499000000003) (-79.20889299999999 56.683876000000055) (-79.19360399999994 56.67832900000013) (-79.16000400000001 56.65776800000009) (-79.15110800000002 56.649994000000106) (-79.14167800000001 56.635826000000066) (-79.13806199999999 56.626099000000124) (-79.13890100000003 56.619986999999924) (-79.14195299999994 56.61666100000008)) ((-61.1875 56.586104999999975) (-61.21167000000003 56.58166499999999) (-61.217498999999975 56.58277099999998) (-61.222770999999966 56.58888200000007) (-61.231667000000016 56.61166399999996) (-61.231941000000006 56.61971299999999) (-61.22610499999996 56.626656000000025) (-61.165832999999964 56.684433000000126) (-61.15916399999992 56.68832400000002) (-61.15027600000002 56.68943000000007) (-61.13194299999998 56.68721000000005) (-61.0819469999999 56.67887899999994) (-61.0777819999999 56.67499500000014) (-61.05777699999999 56.62887599999999) (-61.05944099999999 56.62638099999998) (-61.06361400000003 56.62416099999996) (-61.10388899999987 56.60665899999992) (-61.1875 56.586104999999975)) ((-79.56082199999997 56.61776700000013) (-79.56750499999998 56.615273) (-79.57333399999999 56.6188810000001) (-79.583618 56.64804800000002) (-79.58389299999993 56.65277100000003) (-79.58999599999999 56.768326) (-79.5875089999999 56.78888699999999) (-79.58167999999995 56.80721299999999) (-79.57833900000003 56.81249200000002) (-79.57417299999986 56.81582599999996) (-79.56750499999998 56.81777200000005) (-79.51666299999994 56.78555300000005) (-79.49638400000003 56.766936999999984) (-79.47694399999995 56.72165700000005) (-79.474716 56.68915600000014) (-79.48611499999998 56.658043000000134) (-79.48889199999996 56.65554800000007) (-79.56082199999997 56.61776700000013)) ((-79.88194299999998 56.743607000000054) (-79.88861099999997 56.741104000000064) (-79.90472399999999 56.741661000000136) (-79.92388900000003 56.75138900000002) (-79.93083199999995 56.75499700000012) (-79.941101 56.76361099999997) (-79.94444299999992 56.7677690000001) (-79.94749499999995 56.77332300000012) (-79.95722999999992 56.79916400000002) (-79.95889299999993 56.80526700000013) (-79.958618 56.81137799999999) (-79.95472699999993 56.82360799999992) (-79.945831 56.83360300000004) (-79.91915899999992 56.85833000000014) (-79.915009 56.86138200000005) (-79.86582900000002 56.86610400000012) (-79.858047 56.86582900000013) (-79.843887 56.85833000000014) (-79.83444199999991 56.85249299999998) (-79.81945799999994 56.84027100000003) (-79.81639100000001 56.83554800000002) (-79.81471299999993 56.829162999999994) (-79.81361400000003 56.81693999999999) (-79.83389299999999 56.79361) (-79.83805799999999 56.78888699999999) (-79.8722229999999 56.75222000000002) (-79.87666300000001 56.747772000000055) (-79.88194299999998 56.743607000000054)) ((-79.75056499999994 56.905823000000055) (-79.71749899999992 56.81360599999999) (-79.71833799999996 56.80721299999999) (-79.72111499999988 56.802773) (-79.72555499999999 56.79804999999999) (-79.73083499999996 56.79415899999992) (-79.74972500000001 56.78360700000013) (-79.75750700000003 56.78193699999997) (-79.781113 56.784721000000104) (-79.78832999999986 56.78582800000004) (-79.79355599999997 56.79579200000006) (-79.79437300000001 56.832947000000104) (-79.79314399999998 56.859890000000064) (-79.82376899999997 56.89500399999997) (-79.852753 56.885204000000044) (-79.89416499999987 56.88193500000011) (-79.89750699999996 56.884995) (-79.89805599999994 56.891106000000036) (-79.896118 56.897217000000126) (-79.89277600000003 56.90248900000006) (-79.85861199999994 56.93859900000001) (-79.85194399999995 56.940268999999944) (-79.80833399999995 56.94832600000012) (-79.79943800000001 56.949431999999945) (-79.79083300000002 56.94776900000005) (-79.78416400000003 56.94082600000007) (-79.75361599999997 56.91082) (-79.75056499999994 56.905823000000055)) ((-61.42921100000001 56.92970700000001) (-61.397204999999985 56.927715000000035) (-61.37261199999989 56.930972999999994) (-61.35488899999996 56.93639799999994) (-61.34331900000001 56.93422700000008) (-61.340785999999866 56.930248000000006) (-61.355278 56.91082) (-61.40027599999996 56.88472000000013) (-61.40471600000001 56.87971500000009) (-61.39944499999996 56.87582400000002) (-61.378052000000025 56.87165800000014) (-61.360282999999924 56.86610400000012) (-61.35222599999997 56.857773000000066) (-61.355834999999956 56.85277600000012) (-61.361670999999944 56.84804500000001) (-61.375831999999946 56.84054600000002) (-61.4431689999999 56.817719000000125) (-61.48966999999999 56.80754900000011) (-61.563331999999946 56.784721000000104) (-61.57028199999991 56.78166199999998) (-61.576949999999954 56.778046000000074) (-61.585556 56.76638800000006) (-61.58499899999998 56.76138300000002) (-61.58277899999996 56.75666000000001) (-61.57556199999999 56.75305200000008) (-61.56472000000002 56.75166300000012) (-61.55583199999995 56.752777000000094) (-61.540839999999946 56.75777399999998) (-61.526664999999866 56.76527400000009) (-61.51528200000001 56.77471200000008) (-61.497653999999955 56.78694200000001) (-61.48897599999992 56.78929500000004) (-61.476315 56.79019900000003) (-61.43400200000002 56.7836880000001) (-61.39331399999992 56.77898800000003) (-61.386626999999976 56.775913) (-61.38210700000002 56.7713930000001) (-61.373965999999996 56.74390800000009) (-61.36872499999998 56.695988) (-61.36863299999999 56.6857720000001) (-61.37080400000002 56.67528200000004) (-61.378399 56.63260700000001) (-61.37911999999994 56.626820000000066) (-61.39358900000002 56.61777900000004) (-61.40913799999993 56.61560800000001) (-61.44421799999998 56.61958700000008) (-61.48400099999998 56.64164700000009) (-61.52197599999994 56.66985700000009) (-61.56103499999995 56.68251399999997) (-61.588157999999964 56.70385399999998) (-61.60533499999997 56.713798999999995) (-61.63535300000001 56.73151800000005) (-61.64439399999998 56.734775999999954) (-61.64403199999987 56.73802900000004) (-61.634991000000014 56.770939) (-61.624866 56.82591200000013) (-61.63209899999998 56.85954700000008) (-61.58869899999996 56.89353900000009) (-61.534812999999986 56.901859) (-61.522517999999934 56.9148790000001) (-61.5261339999999 56.93332300000009) (-61.52396399999992 56.94019300000008) (-61.499371 56.952849999999955) (-61.47369400000002 56.95900000000006) (-61.46067399999998 56.955021000000045) (-61.446571000000006 56.935131000000126) (-61.42921100000001 56.92970700000001)) ((-76.62110899999993 57.075554000000125) (-76.64695699999999 57.073050999999964) (-76.660278 57.075829) (-76.67138699999992 57.083327999999995) (-76.67555199999993 57.087769000000094) (-76.681107 57.09777100000002) (-76.70973200000003 57.18221300000005) (-76.70861799999994 57.18832400000008) (-76.67832900000002 57.205269000000044) (-76.66999800000002 57.20249199999995) (-76.66749600000003 57.19554100000005) (-76.62609900000001 57.1427690000001) (-76.61888099999999 57.080276000000026) (-76.62110899999993 57.075554000000125)) ((-61.621666000000005 57.33554800000013) (-61.611114999999984 57.334991) (-61.60555999999991 57.33554800000013) (-61.59444399999995 57.33416) (-61.589995999999985 57.33027599999997) (-61.58943899999991 57.32527200000004) (-61.59194199999996 57.321380999999974) (-61.608337000000006 57.30832700000008) (-61.652221999999995 57.290549999999996) (-61.658051 57.29027600000006) (-61.73472599999997 57.29027600000006) (-61.739998000000014 57.29193900000001) (-61.75333399999994 57.30249000000009) (-61.76361799999995 57.31166100000007) (-61.76666299999994 57.315269) (-61.767776000000026 57.31971699999997) (-61.768607999999915 57.324996999999996) (-61.76750199999998 57.32833099999999) (-61.752228 57.360275) (-61.74888599999997 57.365546999999935) (-61.74500299999994 57.369155999999975) (-61.726944 57.37443500000012) (-61.70249899999999 57.37276500000013) (-61.693329000000006 57.368050000000096) (-61.67749799999996 57.35721600000005) (-61.63221699999991 57.33776900000004) (-61.621666000000005 57.33554800000013)) ((-76.715012 57.29277000000002) (-76.72972099999987 57.28971899999999) (-76.73472600000002 57.29138200000011) (-76.74027999999998 57.29444100000006) (-76.74444599999998 57.29943800000001) (-76.79305999999997 57.374709999999936) (-76.82194499999991 57.419715999999994) (-76.823624 57.42471300000011) (-76.82167099999998 57.42943600000007) (-76.81277499999993 57.42832900000013) (-76.78443900000002 57.41693900000007) (-76.76139799999999 57.40387700000008) (-76.73554999999999 57.38638300000014) (-76.73110999999994 57.381935) (-76.72555499999999 57.37276500000013) (-76.72111499999994 57.35665899999998) (-76.708054 57.29583000000008) (-76.715012 57.29277000000002)) ((-61.65527300000002 57.39138000000008) (-61.675003000000004 57.38999200000001) (-61.839721999999995 57.408043000000134) (-61.860000999999954 57.4124910000001) (-61.87749499999995 57.41860200000002) (-61.88999899999999 57.42610200000007) (-61.89444699999996 57.42971799999998) (-61.89778099999995 57.43332700000013) (-61.90027599999996 57.437492000000134) (-61.89749899999998 57.444153000000085) (-61.81300399999992 57.47370900000004) (-61.772738999999945 57.495097999999984) (-61.742774999999995 57.53499599999998) (-61.73722099999998 57.53694200000007) (-61.719993999999986 57.536384999999996) (-61.648056 57.530272999999966) (-61.64389 57.52276600000005) (-61.634727 57.509438000000046) (-61.61361699999998 57.41610000000014) (-61.615279999999984 57.40915700000011) (-61.634170999999924 57.39888000000013) (-61.64833799999997 57.39360800000003) (-61.65527300000002 57.39138000000008)) ((-61.878333999999995 57.46305099999995) (-61.92694899999998 57.45249200000012) (-61.93749999999994 57.45304900000002) (-61.94694500000003 57.454994) (-61.95583299999993 57.45804600000008) (-61.96277600000002 57.46221200000002) (-62.01250499999992 57.50833100000011) (-62.021942000000024 57.521102999999925) (-62.02305599999994 57.53416400000003) (-62.020279000000016 57.54027600000006) (-62.01445000000001 57.54943800000012) (-61.99250000000001 57.56916000000001) (-61.97499799999997 57.58138300000007) (-61.968886999999995 57.584434999999985) (-61.953056000000004 57.59027100000003) (-61.94444299999998 57.5908280000001) (-61.878052000000025 57.584991) (-61.855002999999954 57.58055100000013) (-61.833327999999995 57.57444000000004) (-61.817504999999926 57.56721500000003) (-61.78361499999994 57.55054500000006) (-61.781386999999995 57.548050000000046) (-61.778885 57.543883999999935) (-61.77694699999995 57.52388000000002) (-61.77777899999995 57.51832600000006) (-61.779441999999904 57.513611000000026) (-61.78305799999987 57.50833100000011) (-61.864165999999955 57.466385000000116) (-61.878333999999995 57.46305099999995)) ((-79.79750100000001 57.41888400000005) (-79.80166600000001 57.4158250000001) (-79.80555699999996 57.41805300000004) (-79.83583099999998 57.460274000000084) (-79.8269499999999 57.53804800000006) (-79.80888399999998 57.561661000000015) (-79.79276999999996 57.57888000000008) (-79.74916099999996 57.60971800000004) (-79.74082899999996 57.615547000000106) (-79.73416099999992 57.618881000000044) (-79.72778299999993 57.61721) (-79.723053 57.61277000000001) (-79.70611600000001 57.585548000000074) (-79.70666499999993 57.580826) (-79.70472699999999 57.57666000000006) (-79.69860799999998 57.56332400000014) (-79.695831 57.53166199999998) (-79.69860799999998 57.51998900000012) (-79.70500199999992 57.50860599999993) (-79.71250899999995 57.50054899999998) (-79.79750100000001 57.41888400000005)) ((-61.688605999999936 57.71305100000012) (-61.69610599999993 57.712212000000136) (-61.757506999999976 57.71554600000013) (-61.76889 57.71693400000004) (-61.89416499999999 57.754166000000055) (-61.896950000000004 57.758331000000055) (-61.89611099999996 57.76971400000008) (-61.891669999999976 57.77916000000005) (-61.865837 57.799721000000034) (-61.853614999999934 57.80832700000013) (-61.80889099999996 57.83693699999998) (-61.800551999999925 57.84137700000002) (-61.778885 57.84526800000009) (-61.773056 57.84554300000008) (-61.71111300000001 57.83416000000011) (-61.69860799999992 57.83027600000008) (-61.653610000000015 57.784721000000104) (-61.652221999999995 57.78249400000004) (-61.65166499999992 57.77943399999998) (-61.65249599999993 57.77582600000005) (-61.654166999999916 57.771103000000096) (-61.66860999999989 57.73888400000004) (-61.674171 57.72693600000002) (-61.684440999999936 57.7149960000001) (-61.688605999999936 57.71305100000012)) ((-61.94749499999995 57.787216000000114) (-61.957222 57.78694200000001) (-62.08916499999998 57.808043999999995) (-62.100280999999995 57.816101) (-62.108337000000006 57.824715000000026) (-62.109443999999996 57.8294370000001) (-62.10805499999992 57.837769000000094) (-62.099723999999924 57.84638200000006) (-62.09444399999995 57.85054799999995) (-62.065276999999924 57.87054400000011) (-62.028884999999946 57.89276899999999) (-62.009170999999924 57.90443400000004) (-61.995003 57.90915700000005) (-61.986114999999984 57.91027100000002) (-61.971663999999976 57.911377000000016) (-61.94110899999998 57.909988000000055) (-61.92833699999994 57.90859999999992) (-61.923332000000016 57.90609699999999) (-61.91889199999997 57.90248900000006) (-61.88444499999997 57.86693600000001) (-61.86777499999988 57.84276600000004) (-61.86777499999988 57.8386000000001) (-61.87943999999993 57.816666) (-61.88194299999992 57.81276700000001) (-61.88555899999989 57.80915799999997) (-61.88999899999999 57.8063810000001) (-61.94083399999994 57.78888699999999) (-61.94749499999995 57.787216000000114)) ((-77.67832899999996 58.23554999999993) (-77.68777499999993 58.235268000000076) (-77.702789 58.2388840000001) (-77.76112399999994 58.257499999999936) (-77.94638099999992 58.3211060000001) (-77.95083599999992 58.32416500000005) (-77.947495 58.32860599999998) (-77.94055199999997 58.330551000000014) (-77.93249500000002 58.33138300000007) (-77.91731299999992 58.32936900000004) (-77.82972699999993 58.31137800000005) (-77.80749499999996 58.305267000000015) (-77.80139200000002 58.30304699999999) (-77.702789 58.26027700000003) (-77.689438 58.25388299999997) (-77.67027300000001 58.24415600000003) (-77.66833499999996 58.24193600000007) (-77.66833499999996 58.24054700000005) (-77.67832899999996 58.23554999999993)) ((-67.596115 58.28416400000009) (-67.61639400000001 58.28416400000009) (-67.63778699999995 58.28472099999999) (-67.66610699999995 58.29277000000002) (-67.67388899999992 58.296104000000014) (-67.67666600000001 58.30138400000004) (-67.67582700000003 58.306099000000074) (-67.672775 58.31220999999999) (-67.624435 58.368050000000096) (-67.61999499999996 58.3722150000001) (-67.61082499999992 58.37387799999999) (-67.59916699999991 58.373046999999985) (-67.58056599999998 58.369986999999924) (-67.527222 58.34360500000008) (-67.52084400000001 58.339989) (-67.51750199999998 58.33526600000005) (-67.51916499999993 58.32971999999995) (-67.52444500000001 58.32416500000005) (-67.55110200000001 58.30221599999999) (-67.55722000000003 58.298050000000046) (-67.57167099999987 58.290833000000134) (-67.596115 58.28416400000009)) ((-78.453888 58.53999300000004) (-78.45556599999986 58.537215999999944) (-78.46333299999998 58.53749800000003) (-78.474716 58.541382000000056) (-78.64999399999994 58.60138699999999) (-78.67250100000001 58.61054999999999) (-78.68388400000003 58.62082700000013) (-78.697495 58.678329000000076) (-78.69860799999998 58.68859900000001) (-78.69694499999997 58.69054399999999) (-78.69276400000001 58.691933000000006) (-78.665009 58.67499500000008) (-78.65916399999998 58.669991000000095) (-78.63528400000001 58.61859899999996) (-78.63194299999998 58.616386000000034) (-78.62805199999997 58.61415899999997) (-78.56639100000001 58.58610499999992) (-78.51306199999993 58.56388099999998) (-78.45722999999998 58.54277000000013) (-78.453888 58.53999300000004)) ((-69.19444299999992 59.06471299999998) (-69.18638599999997 59.064437999999996) (-69.18083199999995 59.06721500000009) (-69.1783289999999 59.02971599999995) (-69.22721899999993 58.97193100000004) (-69.32028199999996 58.94638100000009) (-69.32749899999999 58.94499200000007) (-69.33889799999997 58.944435) (-69.350281 58.94638100000009) (-69.35555999999997 58.94971500000008) (-69.36000099999995 58.95860300000004) (-69.35722399999997 58.96471400000013) (-69.31834400000002 59.02555099999995) (-69.319458 59.09804500000013) (-69.35305799999998 59.1272130000001) (-69.35777300000001 59.13499500000006) (-69.35722399999997 59.13971700000013) (-69.34555099999994 59.14471400000008) (-69.339447 59.14610300000004) (-69.28222700000003 59.15443399999998) (-69.27528399999994 59.15499100000005) (-69.19860799999992 59.14527099999998) (-69.18638599999997 59.138329000000056) (-69.18249499999996 59.128601) (-69.19499199999996 59.09415400000006) (-69.199997 59.07721700000002) (-69.20056199999988 59.07249500000012) (-69.19860799999992 59.06721500000009) (-69.19444299999992 59.06471299999998)) ((-80.53443900000002 59.369438) (-80.54415899999998 59.365547000000106) (-80.55221599999987 59.36582900000013) (-80.55583200000001 59.369438) (-80.54943799999995 59.446938000000046) (-80.53750600000001 59.45526899999999) (-80.48805199999998 59.477486000000056) (-80.47555499999993 59.48110200000008) (-80.46501199999994 59.463882000000126) (-80.47138999999993 59.45499400000011) (-80.47721899999993 59.451103000000046) (-80.52084400000001 59.38276700000006) (-80.52528399999994 59.377486999999974) (-80.53443900000002 59.369438)) ((-80.27749599999999 59.61859900000013) (-80.31916799999999 59.612213000000054) (-80.32972699999999 59.61249500000014) (-80.34056099999992 59.61415899999997) (-80.343887 59.61915600000003) (-80.34083599999997 59.62526700000012) (-80.29527300000001 59.67832900000002) (-80.23277300000001 59.725265999999976) (-80.22222899999986 59.72360200000014) (-80.17138699999992 59.71527100000009) (-80.15417500000001 59.709991) (-80.14527899999996 59.70555099999996) (-80.15472399999993 59.68249500000013) (-80.15666199999998 59.67832900000002) (-80.170547 59.67388199999999) (-80.20584099999996 59.66526799999991) (-80.22277799999989 59.66027100000002) (-80.22972099999998 59.65638000000013) (-80.23306300000002 59.65110000000004) (-80.237213 59.63943499999999) (-80.24055499999986 59.63416300000006) (-80.24638400000003 59.62999000000008) (-80.26083399999999 59.623604) (-80.27749599999999 59.61859900000013)) ((-64.01972999999992 59.71471399999996) (-64.12416099999996 59.695267000000115) (-64.13417099999998 59.69554100000005) (-64.146118 59.69665500000002) (-64.15722699999998 59.69971500000008) (-64.16332999999986 59.70360599999998) (-64.20445299999994 59.73443600000002) (-64.19249000000002 59.76554900000002) (-64.12193300000001 59.849433999999974) (-64.11582899999996 59.85277600000006) (-64.10722399999997 59.854996000000085) (-64.06750499999993 59.86388400000004) (-64.06138599999991 59.86444099999994) (-64.05277999999998 59.859992999999974) (-64.04972799999996 59.85527000000002) (-64.04777499999994 59.849433999999974) (-64.05526699999996 59.835266000000104) (-64.05444299999999 59.82943700000004) (-64.0427699999999 59.78388200000006) (-64.0202789999999 59.78110499999997) (-64.00279199999994 59.77471200000002) (-63.95972399999994 59.75638600000002) (-63.95944199999997 59.752220000000136) (-63.99722300000002 59.72360200000014) (-64.01139799999987 59.71638500000006) (-64.01972999999992 59.71471399999996)) ((-80.08972199999994 59.75193800000005) (-80.166946 59.742493000000024) (-80.17777999999998 59.74415600000009) (-80.18415800000002 59.747772) (-80.18472299999996 59.75277700000004) (-80.12887599999999 59.82388300000008) (-80.11500499999994 59.83776900000004) (-80.10305799999998 59.8449940000001) (-80.015015 59.88499500000012) (-80.00778200000002 59.88610799999998) (-79.94694499999991 59.880272000000105) (-79.93777499999993 59.877768999999944) (-79.92999299999991 59.87360399999994) (-79.88417099999992 59.85833000000008) (-79.87887599999999 59.85471300000012) (-79.883621 59.849998000000085) (-79.90666199999993 59.828049000000135) (-79.92222600000002 59.815544000000045) (-79.92805499999997 59.81166100000007) (-80.02528399999994 59.76444200000009) (-80.08972199999994 59.75193800000005)) ((-64.42767300000003 60.37293200000005) (-64.452789 60.357215999999994) (-64.4427639999999 60.3097150000001) (-64.43832399999997 60.305550000000096) (-64.42361499999998 60.28249400000004) (-64.42944299999994 60.28193699999997) (-64.43804899999986 60.28249400000004) (-64.44860799999998 60.28416400000003) (-64.50111400000003 60.30193300000013) (-64.52171299999998 60.310730000000035) (-64.54110699999995 60.32444000000004) (-64.55721999999992 60.33138300000002) (-64.60194399999989 60.350273000000016) (-64.61000100000001 60.353606999999954) (-64.63221699999991 60.35749800000002) (-64.64388999999994 60.357773000000066) (-64.65556299999997 60.35749800000002) (-64.66610700000001 60.35694099999995) (-64.67555199999998 60.355270000000075) (-64.71000700000002 60.35833000000014) (-64.728882 60.36332700000008) (-64.79028299999993 60.39110600000009) (-64.81555200000003 60.40609699999999) (-64.83111600000001 60.419159000000036) (-64.86749299999991 60.45027200000004) (-64.868607 60.45332300000007) (-64.86805699999996 60.45888500000001) (-64.85611 60.473877000000016) (-64.84722899999997 60.47887400000013) (-64.837784 60.48249100000004) (-64.82305899999994 60.48526800000013) (-64.63999899999999 60.4847180000001) (-64.61860699999994 60.47721100000001) (-64.42694099999994 60.401381999999955) (-64.42388900000003 60.397216999999955) (-64.42250100000001 60.3919370000001) (-64.42388900000003 60.383049000000085) (-64.42767300000003 60.37293200000005)) ((-68.25140399999998 60.23082000000005) (-68.31054699999999 60.22304500000013) (-68.34028599999999 60.22332) (-68.36193799999995 60.22582200000005) (-68.376938 60.232491000000095) (-68.38722200000001 60.240829000000076) (-68.39306599999998 60.24916100000007) (-68.39472999999998 60.254440000000045) (-68.39500399999997 60.25999500000012) (-68.39306599999998 60.27610000000004) (-68.38417099999992 60.29972100000009) (-68.37777699999998 60.310272) (-68.314438 60.39027399999998) (-68.17527799999999 60.53443900000002) (-68.12943999999993 60.570549000000085) (-68.11915599999992 60.577217000000076) (-68.09222399999999 60.581665000000044) (-68.08167999999995 60.58249699999999) (-68.03527799999995 60.58110799999997) (-67.999435 60.57749200000012) (-67.95666499999999 60.56610099999995) (-67.94860799999992 60.56137799999999) (-67.88722199999995 60.50388300000009) (-67.862213 60.48804500000006) (-67.839722 60.47804300000007) (-67.83139 60.47499099999999) (-67.821396 60.472488) (-67.80804399999994 60.467209000000025) (-67.80305499999997 60.463051000000064) (-67.79861499999987 60.4574970000001) (-67.79499800000002 60.44776900000005) (-67.79554699999994 60.443877999999984) (-67.79861499999987 60.432213000000104) (-67.806107 60.417496000000085) (-67.81527699999992 60.40804300000008) (-67.83639499999992 60.3886030000001) (-67.841385 60.3844380000001) (-67.85333300000002 60.37526699999995) (-67.885559 60.353606999999954) (-67.898056 60.34526799999992) (-67.93443300000001 60.321662999999944) (-67.96528599999999 60.30832700000002) (-67.97222899999997 60.30582400000003) (-68.16749600000003 60.24554400000011) (-68.17721599999993 60.24304999999998) (-68.20527600000003 60.23804500000011) (-68.25140399999998 60.23082000000005)) ((-64.68998699999992 60.5844350000001) (-64.69722000000002 60.58221400000002) (-64.70445299999994 60.58249699999999) (-64.71278399999994 60.59027100000014) (-64.71389799999992 60.59526800000009) (-64.71305799999988 60.59887700000007) (-64.71083099999998 60.60277600000012) (-64.61555499999986 60.68166400000007) (-64.61027499999994 60.68526500000013) (-64.59916699999997 60.68943000000013) (-64.59277299999991 60.68554700000004) (-64.59083599999997 60.67665900000003) (-64.59249899999998 60.66693900000013) (-64.593887 60.6483310000001) (-64.59584000000001 60.64527100000004) (-64.620544 60.61666100000002) (-64.63166799999999 60.60833000000008) (-64.63806199999993 60.604996000000085) (-64.68998699999992 60.5844350000001)) ((-78.656387 60.70277400000003) (-78.66471899999999 60.70221700000013) (-78.67416399999996 60.70471199999997) (-78.68998699999997 60.71221200000008) (-78.69471699999991 60.71666000000005) (-78.69833399999999 60.72165699999994) (-78.69776899999994 60.72415900000004) (-78.61639399999996 60.7719350000001) (-78.573624 60.78416399999992) (-78.39999399999999 60.80999000000003) (-78.22389199999998 60.83082600000006) (-78.21945199999999 60.82388300000002) (-78.21916199999998 60.81749700000012) (-78.221115 60.81415600000008) (-78.22666900000002 60.80888399999998) (-78.277222 60.76915700000012) (-78.28500400000001 60.76610600000009) (-78.39723199999992 60.743881000000044) (-78.62332200000003 60.70555100000013) (-78.656387 60.70277400000003)) ((-69.97721899999999 60.933051999999975) (-69.98388699999998 60.93110699999994) (-69.99526999999995 60.9313810000001) (-70.00361599999997 60.93526500000007) (-70.00778199999996 60.93915599999997) (-70.02610799999997 60.99582700000008) (-70.02500899999995 61.001937999999996) (-70.02166699999987 61.008605999999986) (-70.016663 61.013611000000026) (-70.00917099999987 61.01776899999999) (-70.00334199999992 61.02082800000011) (-69.9827729999999 61.02832799999999) (-69.964722 61.03276800000003) (-69.95417799999996 61.033882000000006) (-69.943604 61.03138000000013) (-69.93138099999993 61.02027100000004) (-69.92999299999985 61.01666300000011) (-69.92971799999992 61.01082599999995) (-69.93083200000001 61.00471500000009) (-69.93388399999992 60.9980470000001) (-69.97721899999999 60.933051999999975)) ((-64.72389199999992 61.53833000000003) (-64.71665999999999 61.53582799999998) (-64.706955 61.536658999999986) (-64.68832399999991 61.53555299999999) (-64.68331899999987 61.531105000000025) (-64.67527799999999 61.50860600000004) (-64.67416400000002 61.50332599999996) (-64.686935 61.46582799999999) (-64.70527600000003 61.44415300000014) (-64.715012 61.43332700000008) (-64.82055700000001 61.355270000000075) (-64.86694299999999 61.324164999999994) (-64.87083399999995 61.32249500000006) (-64.87527499999999 61.32249500000006) (-64.88722200000001 61.324715000000026) (-64.97250399999996 61.34415400000012) (-64.97749299999992 61.34777100000008) (-64.98500099999995 61.36749300000014) (-65.17916899999994 61.46693399999998) (-65.18582200000003 61.47554800000006) (-65.18749999999994 61.48027000000013) (-65.19055200000003 61.494995000000074) (-65.195267 61.49916099999996) (-65.2952729999999 61.52887700000002) (-65.329453 61.531937000000084) (-65.35333300000002 61.53472100000005) (-65.37249799999995 61.53721600000006) (-65.381104 61.54055000000005) (-65.47444200000001 61.58693699999998) (-65.48110999999989 61.590828000000045) (-65.48777799999993 61.599433999999974) (-65.48693800000001 61.61082500000009) (-65.48500099999995 61.62193300000007) (-65.48222399999997 61.62860100000006) (-65.47222899999986 61.64027400000009) (-65.46640000000002 61.644997000000046) (-65.45944199999985 61.64916200000005) (-65.45306399999998 61.6519320000001) (-65.44915800000001 61.653602999999976) (-65.44137599999993 61.656654) (-65.43582200000003 61.65804300000002) (-65.33972199999994 61.670547000000056) (-65.24749800000001 61.68082400000003) (-65.17443800000001 61.68693500000012) (-65.06834399999997 61.69304700000009) (-65.03639199999992 61.69360399999999) (-65.01888999999989 61.69249000000002) (-65.01611299999996 61.692214999999976) (-64.99499499999996 61.68998700000003) (-64.73306299999996 61.659988) (-64.71916199999998 61.65804300000002) (-64.64639299999993 61.60388200000011) (-64.646118 61.599716) (-64.65083300000003 61.59443700000003) (-64.65972899999997 61.58804299999997) (-64.662781 61.58776900000004) (-64.71417200000002 61.556381000000044) (-64.72027599999996 61.55138399999993) (-64.72610499999996 61.54222099999993) (-64.72389199999992 61.53833000000003)) ((-65.69526699999989 61.776657) (-65.71945199999999 61.754166) (-65.80305499999992 61.755554000000075) (-65.82722499999994 61.758049000000085) (-65.891388 61.76638800000012) (-65.903885 61.76832600000006) (-65.931107 61.778328000000045) (-65.93916300000001 61.78221099999996) (-65.94444299999998 61.785828000000095) (-65.94804399999992 61.79027600000006) (-65.94749499999989 61.796104000000014) (-65.94387799999993 61.79972099999998) (-65.81834400000002 61.860825000000034) (-65.80943299999996 61.86332700000014) (-65.78999299999998 61.865547000000106) (-65.77806099999987 61.865547000000106) (-65.76750199999998 61.86277000000001) (-65.718613 61.841102999999976) (-65.71472199999994 61.83693700000009) (-65.71362299999998 61.82416500000011) (-65.69526699999989 61.776657)) ((-92.96389799999997 61.879158000000075) (-92.99527 61.85110500000013) (-93.00167799999997 61.847214000000065) (-93.05194099999994 61.82943700000004) (-93.07028200000002 61.82527200000004) (-93.07972699999999 61.826941999999974) (-93.08666999999991 61.82943700000004) (-93.11582899999996 61.860275) (-93.12027 61.86444100000011) (-93.12693799999988 61.868599000000074) (-93.13583399999999 61.872489999999914) (-93.14805599999994 61.87582400000008) (-93.17971799999992 61.87554900000009) (-93.189438 61.874161000000015) (-93.21112099999993 61.87526700000001) (-93.218887 61.87943300000012) (-93.22332799999998 61.888329000000056) (-93.22610500000002 61.90832500000005) (-93.22361799999993 61.913048) (-93.218887 61.91888400000005) (-93.20944199999991 61.92110400000007) (-93.07250999999991 61.92999300000014) (-93.06221 61.93055000000004) (-92.96945199999999 61.888329000000056) (-92.962784 61.884162999999944) (-92.96389799999997 61.879158000000075)) ((-64.91610699999995 61.719437000000084) (-64.92694099999994 61.71888000000001) (-64.95195000000001 61.72248800000011) (-65.14805599999994 61.78054800000007) (-65.15666199999993 61.78388200000006) (-65.21055599999988 61.816940000000045) (-65.21472199999988 61.821938000000046) (-65.25195300000001 61.86971300000005) (-65.25584399999997 61.88555100000008) (-65.25500499999993 61.90165700000006) (-65.249435 61.91027100000008) (-65.24527 61.914711000000125) (-65.18971299999998 61.94554099999999) (-65.17027300000001 61.94776900000011) (-65.15695199999988 61.9469380000001) (-65.08029199999993 61.93110700000011) (-65.07444800000002 61.92832900000013) (-65.06806899999998 61.92388200000005) (-65.03916900000002 61.89971900000012) (-64.98083499999996 61.885826000000066) (-64.89334100000002 61.82999400000011) (-64.88694800000002 61.82555400000007) (-64.82888799999989 61.766662999999994) (-64.82583599999998 61.76193999999998) (-64.825287 61.758331) (-64.82888799999989 61.75222000000008) (-64.83555599999994 61.74887799999999) (-64.85804699999994 61.73915899999997) (-64.88944999999995 61.72582200000011) (-64.90611299999995 61.721100000000035) (-64.91610699999995 61.719437000000084)) ((-65.85249299999992 62.08471700000001) (-65.86915599999992 62.07972000000012) (-65.88999899999999 62.08055100000013) (-65.91332999999997 62.084990999999945) (-66.00973499999998 62.11666100000008) (-66.016663 62.120543999999995) (-66.02027900000002 62.12443500000006) (-66.021118 62.12832600000013) (-66.02084399999995 62.131660000000124) (-66.01472499999994 62.136658000000125) (-65.99194299999994 62.14138000000003) (-65.92805499999997 62.151657) (-65.904449 62.15277100000014) (-65.85360700000001 62.13110400000011) (-65.84500099999991 62.124992000000134) (-65.83555599999994 62.115272999999945) (-65.83583099999993 62.099716000000114) (-65.843887 62.088599999999985) (-65.85249299999992 62.08471700000001)) ((-92.22361799999993 62.355552999999986) (-92.306107 62.35166199999992) (-92.339722 62.35471299999995) (-92.34973100000002 62.356659000000036) (-92.37193299999996 62.386939999999925) (-92.37249800000001 62.39193700000004) (-92.35444599999994 62.410820000000115) (-92.34777799999995 62.41443600000002) (-92.31945799999994 62.41526800000008) (-92.30833399999995 62.41443600000002) (-92.162216 62.402214000000015) (-92.139725 62.399719000000005) (-92.1411129999999 62.394714000000135) (-92.15834000000001 62.390549000000135) (-92.22361799999993 62.355552999999986)) ((-79.54055800000003 62.41110200000003) (-79.44999699999994 62.382767) (-79.44276400000001 62.37999000000008) (-79.43388399999998 62.371376000000055) (-79.42916899999994 62.361664000000076) (-79.42721599999999 62.356102000000135) (-79.42443800000001 62.34415400000012) (-79.42054699999994 62.33998900000012) (-79.35916099999997 62.29610400000007) (-79.34722899999991 62.28888699999999) (-79.32861300000002 62.28333299999997) (-79.27278099999995 62.26221500000008) (-79.26611299999996 62.25804899999997) (-79.26083399999999 62.25360899999998) (-79.256393 62.244438) (-79.25556899999992 62.23971599999993) (-79.26139799999993 62.16360500000002) (-79.26222200000001 62.15888200000006) (-79.32972699999999 62.01527400000009) (-79.353882 61.99971800000014) (-79.39639299999993 61.968879999999956) (-79.45722999999992 61.89388300000002) (-79.46194499999996 61.88166000000001) (-79.46556099999992 61.876099000000124) (-79.52444500000001 61.811378000000104) (-79.54132099999993 61.79978900000009) (-79.55277999999993 61.79638699999998) (-79.56834400000002 61.79027600000006) (-79.583618 61.783051) (-79.59666400000003 61.77443699999998) (-79.60526999999996 61.76527399999998) (-79.61111499999998 61.7544400000001) (-79.61277799999999 61.74276700000007) (-79.61193800000001 61.738045) (-79.60833699999995 61.732208000000014) (-79.60611 61.72665400000005) (-79.60555999999997 61.721100000000035) (-79.60749800000002 61.70888500000012) (-79.62887599999993 61.66915899999998) (-79.63221699999997 61.66499300000004) (-79.64222699999999 61.655823) (-79.65695199999999 61.64249400000011) (-79.74082899999996 61.5886000000001) (-79.75389100000001 61.580276000000026) (-79.76139799999993 61.57694200000003) (-79.779449 61.5719380000001) (-79.8058319999999 61.568054000000075) (-79.82778899999994 61.566666) (-79.84611499999994 61.56999200000001) (-79.87110899999999 61.60971799999999) (-79.95417800000001 61.683601000000124) (-80.06806899999998 61.74527000000006) (-80.079453 61.74777200000011) (-80.09222399999999 61.74804699999993) (-80.13861099999991 61.74860400000006) (-80.16194199999995 61.74860400000006) (-80.17332499999998 61.7502750000001) (-80.19166599999988 61.755554000000075) (-80.20527600000003 61.7627720000001) (-80.275284 61.80665600000003) (-80.27806099999998 61.810272000000055) (-80.27888499999995 61.81638299999997) (-80.29138199999994 61.92999300000014) (-80.29527300000001 61.983604000000014) (-80.26861600000001 62.107215999999994) (-80.266663 62.11138200000005) (-80.19860799999998 62.1988750000001) (-80.18028300000003 62.21749100000011) (-80.01750199999998 62.358604000000014) (-80.00944500000003 62.36249500000008) (-79.98138399999993 62.37416100000007) (-79.94722000000002 62.386108000000036) (-79.93804899999998 62.388603000000046) (-79.91972399999997 62.393051000000014) (-79.900284 62.39582800000011) (-79.84277299999991 62.40360300000003) (-79.83361799999994 62.404160000000104) (-79.73083499999996 62.3991620000001) (-79.60555999999997 62.41304800000006) (-79.58416699999998 62.41721300000006) (-79.56193499999989 62.41721300000006) (-79.54055800000003 62.41110200000003)) ((-92.41111799999993 62.39388300000013) (-92.42054699999994 62.39166300000011) (-92.43138099999999 62.39166300000011) (-92.44082599999996 62.393608000000086) (-92.52917500000001 62.37832600000007) (-92.53944399999995 62.37721299999998) (-92.56138599999991 62.37748699999992) (-92.58389299999999 62.37999000000008) (-92.59583999999995 62.38249199999996) (-92.60055499999999 62.386939999999925) (-92.600281 62.39249400000011) (-92.59695399999993 62.39777400000003) (-92.59277299999997 62.40248900000006) (-92.53999299999998 62.42832900000002) (-92.53111299999995 62.43138099999993) (-92.410278 62.408882000000006) (-92.40388499999995 62.404709000000025) (-92.40556300000003 62.39943699999992) (-92.41111799999993 62.39388300000013)) ((-64.65388499999995 62.54083300000002) (-64.58084099999996 62.538605000000075) (-64.55972299999996 62.55416100000002) (-64.55999800000001 62.55860100000001) (-64.55555699999996 62.560822000000144) (-64.54972799999996 62.56221000000005) (-64.39750699999996 62.53638500000005) (-64.389725 62.53388200000006) (-64.38528400000001 62.53110500000014) (-64.382767 62.525825999999995) (-64.382767 62.51138300000014) (-64.39416499999993 62.46137999999996) (-64.47721899999999 62.40804300000002) (-64.52860999999996 62.38665800000007) (-64.59056099999998 62.367210000000114) (-64.59889199999998 62.36638599999998) (-64.65361000000001 62.37249000000003) (-64.77278100000001 62.38638300000002) (-64.87110899999999 62.40638000000013) (-64.92666600000001 62.41832700000009) (-64.93721 62.42110399999996) (-64.945831 62.42443800000012) (-64.95249899999988 62.42832900000002) (-64.95388799999995 62.43138099999993) (-64.96583599999991 62.46582799999993) (-64.846115 62.555267000000015) (-64.81555200000003 62.55971499999998) (-64.79750099999995 62.561378000000104) (-64.766953 62.56276700000012) (-64.75306699999999 62.56249200000008) (-64.741669 62.560822000000144) (-64.65388499999995 62.54083300000002)) ((-78.00834700000001 62.59360500000008) (-77.86721799999998 62.589157000000114) (-77.85055499999999 62.58277100000004) (-77.84167499999995 62.56805400000002) (-77.837784 62.556938000000116) (-77.84083599999991 62.54999500000008) (-77.84472699999998 62.54471600000011) (-77.85278299999999 62.541664000000026) (-77.86221299999994 62.53943600000008) (-77.87304699999999 62.53777300000013) (-77.88500999999997 62.53749800000014) (-77.91305499999993 62.53943600000008) (-78.10333300000002 62.55915800000008) (-78.11305199999993 62.56221000000005) (-78.11444099999994 62.570549000000085) (-78.11166400000002 62.578049000000135) (-78.10777299999995 62.58277100000004) (-78.10583500000001 62.58332800000011) (-78.0475009999999 62.59193400000004) (-78.03083800000002 62.593323000000055) (-78.01916499999999 62.59193400000004) (-78.00834700000001 62.59360500000008)) ((-77.80526700000001 62.59249100000011) (-77.72721899999993 62.58582299999995) (-77.6658329999999 62.586655000000064) (-77.62805200000003 62.58832600000011) (-77.62138400000003 62.58443500000004) (-77.637787 62.57083100000011) (-77.65110800000002 62.563881000000094) (-77.65916400000003 62.560822000000144) (-77.73472599999997 62.53582799999998) (-77.74527 62.534163999999976) (-77.75862099999989 62.53555300000011) (-77.78028899999993 62.539161999999976) (-77.80860899999993 62.546660999999915) (-77.81361399999997 62.551102000000014) (-77.83111600000001 62.59027100000009) (-77.83167999999995 62.595825000000104) (-77.821121 62.59609999999992) (-77.80943300000001 62.59415400000006) (-77.80526700000001 62.59249100000011)) ((-64.98306300000002 62.52804600000002) (-65.00723299999993 62.52638200000001) (-65.09638999999999 62.534996000000035) (-65.11972000000003 62.53749800000014) (-65.13194299999998 62.53971900000005) (-65.13806199999999 62.542770000000075) (-65.14167799999996 62.54694400000011) (-65.137787 62.55054499999994) (-65.02250700000002 62.5949940000001) (-65.00306699999993 62.598877000000016) (-64.97250399999996 62.602493000000095) (-64.90916399999998 62.60443899999996) (-64.89250199999998 62.598877000000016) (-64.88473499999992 62.59415400000006) (-64.84388699999994 62.58277100000004) (-64.839447 62.57777399999992) (-64.86082499999986 62.561378000000104) (-64.866104 62.55804400000011) (-64.874435 62.55470999999994) (-64.96528599999988 62.53138000000001) (-64.972778 62.52971600000001) (-64.98306300000002 62.52804600000002)) ((-91.57278399999996 62.62748700000009) (-91.57861299999996 62.62193300000007) (-91.66805999999991 62.64916200000005) (-91.68305999999995 62.662209000000075) (-91.68554699999999 62.66693900000013) (-91.67582699999997 62.66915900000009) (-91.66332999999997 62.66554300000007) (-91.65527299999991 62.662209000000075) (-91.581955 62.64138000000008) (-91.57556199999993 62.63721500000008) (-91.571121 62.632767000000115) (-91.57278399999996 62.62748700000009)) ((-90.97999599999997 62.657767999999976) (-90.99027999999998 62.656654) (-91.00334199999992 62.657211000000075) (-91.09889199999992 62.65443399999998) (-91.24471999999997 62.66999100000004) (-91.256393 62.67193600000002) (-91.26695299999994 62.675552000000096) (-91.27111799999994 62.67999299999997) (-91.26722699999999 62.685546999999985) (-91.226944 62.691658000000075) (-91.17304999999999 62.69137599999999) (-91.08029199999999 62.68693500000006) (-91.056107 62.68166400000007) (-90.981674 62.66137699999996) (-90.97999599999997 62.657767999999976)) ((-74.347778 62.67943600000007) (-74.30999800000001 62.67916100000008) (-74.285553 62.67999299999997) (-74.25028999999995 62.682495000000074) (-74.21610999999996 62.684990000000084) (-74.181671 62.68888099999998) (-74.15888999999999 62.68888099999998) (-74.14584399999995 62.68776700000001) (-74.01583900000003 62.66499300000004) (-74.00917099999998 62.66249099999993) (-73.95973200000003 62.62082700000002) (-73.958054 62.616661000000136) (-73.958054 62.612495000000024) (-73.96250899999995 62.60777299999995) (-73.96972700000003 62.60416399999997) (-73.98860200000001 62.60221899999999) (-74.12887599999988 62.60082999999997) (-74.15444899999989 62.60110500000002) (-74.16915899999992 62.60221899999999) (-74.18360899999993 62.603882000000056) (-74.333618 62.62943300000012) (-74.54138199999994 62.66832700000003) (-74.55110200000001 62.67082999999997) (-74.58639499999992 62.683051999999975) (-74.61721799999992 62.69609800000006) (-74.639725 62.70638300000002) (-74.64973399999991 62.712769000000094) (-74.65139799999986 62.716934000000094) (-74.64584400000001 62.72082499999999) (-74.53721599999994 62.748878000000104) (-74.5266719999999 62.748878000000104) (-74.51916499999987 62.74777200000011) (-74.48277299999995 62.739716000000044) (-74.39222699999993 62.68721000000011) (-74.37998999999996 62.682495000000074) (-74.37416099999996 62.6813810000001) (-74.347778 62.67943600000007)) ((-70.71167000000003 62.81499500000001) (-70.65972899999991 62.79833200000013) (-70.587784 62.7741620000001) (-70.54750099999995 62.76527399999998) (-70.41555799999998 62.7291560000001) (-70.39695699999999 62.72304500000001) (-70.22610499999996 62.603049999999996) (-70.21777299999997 62.59443700000003) (-70.21221899999995 62.584160000000054) (-70.21112099999999 62.57916300000011) (-70.21194500000001 62.57777399999992) (-70.264725 62.55915800000008) (-70.28332499999999 62.55443600000001) (-70.37361099999993 62.533332999999914) (-70.39306599999998 62.53027300000008) (-70.414444 62.529434000000094) (-70.46665999999993 62.53166200000004) (-70.50111399999997 62.533607000000075) (-70.68638599999991 62.546104000000014) (-70.72389199999998 62.550270000000125) (-70.74638399999998 62.55470999999994) (-70.765015 62.5605470000001) (-70.77084400000001 62.56471299999998) (-70.81973299999999 62.60471300000012) (-70.82501199999996 62.61444100000011) (-70.85444599999994 62.71360800000008) (-70.84666399999998 62.766106000000036) (-70.94554099999993 62.798050000000046) (-71.01916499999993 62.81193499999995) (-71.03250099999997 62.81249200000002) (-71.04333499999996 62.81193499999995) (-71.05166599999995 62.81054700000004) (-71.10638399999993 62.80082700000014) (-71.14111300000002 62.794998000000135) (-71.14862099999993 62.794998000000135) (-71.15834000000001 62.79721799999999) (-71.17610199999996 62.80915800000008) (-71.24055499999997 62.87638099999998) (-71.241379 62.8813780000001) (-71.23638900000003 62.886658000000125) (-71.22944599999988 62.88804600000003) (-71.19110099999995 62.884720000000016) (-71.07389799999993 62.87193300000001) (-70.78805499999993 62.836104999999975) (-70.76028399999996 62.829994000000056) (-70.71167000000003 62.81499500000001)) ((-66.36833199999995 62.83526599999999) (-66.37388599999986 62.833603000000096) (-66.386124 62.834434999999985) (-66.49027999999998 62.85527000000013) (-66.50527999999997 62.861382000000106) (-66.60166900000002 62.90665400000012) (-66.59388699999994 62.91193400000003) (-66.57417299999997 62.913048) (-66.547775 62.91054500000001) (-66.54028299999993 62.907493999999986) (-66.44193999999999 62.871101000000124) (-66.37777699999992 62.843323) (-66.37027 62.83971399999996) (-66.36833199999995 62.83526599999999)) ((-81.87110899999999 62.92832900000013) (-81.86555499999997 62.92332499999998) (-81.86416599999995 62.91999099999998) (-81.90695199999999 62.86638600000009) (-81.92610199999996 62.74415600000003) (-81.924713 62.73915899999997) (-81.92388900000003 62.73304699999994) (-81.92416400000002 62.72832500000004) (-81.92610199999996 62.723602000000085) (-81.929169 62.719437000000084) (-81.93859899999995 62.709991000000116) (-81.95889299999999 62.69776899999994) (-81.973053 62.6897130000001) (-82.10221899999999 62.62915800000013) (-82.1875 62.59943399999992) (-82.27778599999994 62.584160000000054) (-82.2869419999999 62.58166499999999) (-82.31555200000003 62.57166300000006) (-82.36915599999992 62.54749300000003) (-82.38166799999999 62.53943600000008) (-82.38778699999995 62.53472100000005) (-82.40194699999995 62.52054600000014) (-82.40834000000001 62.509720000000016) (-82.40888999999993 62.49665799999997) (-82.414444 62.47804300000007) (-82.42581199999995 62.46998600000006) (-82.44221499999992 62.458603000000096) (-82.44972200000001 62.4552690000001) (-82.49943499999995 62.438599000000124) (-82.53388999999999 62.428604000000064) (-82.551941 62.42388199999999) (-82.58361799999994 62.41276600000003) (-82.62138400000003 62.39527100000004) (-82.64111300000002 62.38526900000005) (-82.64723200000003 62.38110400000005) (-82.67027300000001 62.35943600000013) (-82.68859900000001 62.34110300000009) (-82.71305799999993 62.32138100000003) (-82.73138399999993 62.309990000000084) (-82.743607 62.30248999999998) (-82.76916499999999 62.290276000000006) (-82.98554999999999 62.209717000000126) (-83.00195300000001 62.20443700000004) (-83.087784 62.17887900000011) (-83.12193299999996 62.1730500000001) (-83.13639799999999 62.1730500000001) (-83.14389 62.176659000000086) (-83.15083299999998 62.182770000000005) (-83.15943900000002 62.198601) (-83.16805999999991 62.2074970000001) (-83.17639200000002 62.213051000000064) (-83.19860799999998 62.222214000000065) (-83.249435 62.24082900000002) (-83.27583299999998 62.248604000000114) (-83.30804399999988 62.25277700000004) (-83.32278400000001 62.25305200000008) (-83.33778399999994 62.252219999999966) (-83.35972600000002 62.24971800000009) (-83.40556299999997 62.23888400000004) (-83.4719389999999 62.22276300000004) (-83.48083500000001 62.21998600000012) (-83.49888599999991 62.21332600000011) (-83.51333599999992 62.20638300000013) (-83.53999299999992 62.191933000000006) (-83.57417299999986 62.1763840000001) (-83.63917499999997 62.1511000000001) (-83.653885 62.145827999999995) (-83.67277499999994 62.14110600000009) (-83.68331899999998 62.139717000000076) (-83.70388799999995 62.141662999999994) (-83.70944199999997 62.14444000000009) (-83.71389799999997 62.147216999999955) (-83.71833799999996 62.15221400000007) (-83.722778 62.16027100000002) (-83.722778 62.16721300000012) (-83.71806300000003 62.17943600000001) (-83.71194500000001 62.217209000000025) (-83.71166999999991 62.235825000000034) (-83.72138999999999 62.2816620000001) (-83.722778 62.28638500000011) (-83.72582999999992 62.295273000000066) (-83.731674 62.30360400000001) (-83.73889200000002 62.306937999999946) (-83.75666799999999 62.312492000000134) (-83.78332499999999 62.31888600000002) (-83.80665599999998 62.326385000000016) (-83.82444800000002 62.33721200000002) (-83.90249599999987 62.38749700000005) (-83.91861 62.3991620000001) (-83.93360899999988 62.41220900000013) (-83.94248999999996 62.42166100000003) (-83.945267 62.42721599999993) (-83.94665499999996 62.434158000000025) (-83.94665499999996 62.440269000000114) (-83.945267 62.44721200000009) (-83.93916299999995 62.457497000000046) (-83.91416899999996 62.47860000000014) (-83.90833999999995 62.48276499999997) (-83.86944599999998 62.501105999999936) (-83.85305800000003 62.50804900000014) (-83.814438 62.52388000000008) (-83.741379 62.551658999999916) (-83.70417799999996 62.569443000000035) (-83.69804399999992 62.573051000000135) (-83.57000700000003 62.67527000000001) (-83.55943300000001 62.68415799999997) (-83.55027799999993 62.69999700000011) (-83.545547 62.71221200000002) (-83.545547 62.71776600000004) (-83.55139200000002 62.726653999999996) (-83.55583199999995 62.731659000000036) (-83.55888400000003 62.743881000000044) (-83.53361499999988 62.810272000000055) (-83.52749599999993 62.8211060000001) (-83.523056 62.825271999999984) (-83.516953 62.829994000000056) (-83.400284 62.897491000000116) (-83.37416099999996 62.906937000000084) (-83.31082200000003 62.924438000000066) (-83.29861499999998 62.92582700000003) (-83.21167000000003 62.913605000000075) (-83.20417799999996 62.91027100000008) (-83.19833399999999 62.90665400000012) (-83.19387799999998 62.901932000000045) (-83.18249500000002 62.8813780000001) (-83.17805499999992 62.87638099999998) (-83.15611299999995 62.86054999999999) (-83.14250199999998 62.85443900000013) (-83.12470999999994 62.84804500000007) (-83.108337 62.843323) (-83.08750900000001 62.84027100000009) (-83.061935 62.83749399999999) (-83.04110700000001 62.83721200000008) (-83.02139299999999 62.838599999999985) (-83.00167799999991 62.84249100000005) (-82.98222399999992 62.84777100000014) (-82.85749799999996 62.88999200000012) (-82.82556199999999 62.90277100000003) (-82.79333500000001 62.915543000000014) (-82.75973499999992 62.926941) (-82.7519529999999 62.92887899999994) (-82.69444299999998 62.93943000000007) (-82.652222 62.94387800000004) (-82.62470999999988 62.945540999999935) (-82.60665899999998 62.945540999999935) (-82.573624 62.94387800000004) (-82.54083300000002 62.93943000000007) (-82.50778199999996 62.93360100000007) (-82.46139499999998 62.92748999999998) (-82.43611099999998 62.925270000000125) (-82.420837 62.92499500000014) (-82.39805599999988 62.92748999999998) (-82.38137799999998 62.932770000000005) (-82.37805200000003 62.936377999999934) (-82.37638900000002 62.94110100000012) (-82.379166 62.946655000000135) (-82.38362099999995 62.95138500000013) (-82.37998999999996 62.9574970000001) (-82.37222300000002 62.96027400000003) (-82.29277000000002 62.98333000000008) (-82.26666299999994 62.989159000000086) (-82.239441 62.99027300000006) (-82.18582199999992 62.979988000000105) (-82.12193299999996 62.966660000000104) (-82.00805700000001 62.95499399999994) (-81.94027699999998 62.95387999999997) (-81.91166699999997 62.952217000000076) (-81.90583800000002 62.94999700000005) (-81.87110899999999 62.92832900000013)) ((-66.82556199999999 62.984161000000086) (-66.83139 62.98276500000003) (-66.87138400000003 62.98888400000004) (-66.88194299999998 62.991661000000136) (-66.88945000000001 62.99526999999995) (-67.069458 63.10749800000002) (-67.03277600000001 63.103882) (-66.96528599999999 63.08249699999999) (-66.952225 63.07804900000002) (-66.94610599999987 63.07499700000011) (-66.94444299999992 63.072768999999994) (-66.93055700000002 63.06693999999999) (-66.91749600000003 63.0597150000001) (-66.90750100000002 63.052773) (-66.83000199999992 62.99249300000008) (-66.82695000000001 62.98999000000009) (-66.82501199999996 62.985550000000046) (-66.82556199999999 62.984161000000086)) ((-67.76445000000001 63.162491000000045) (-67.77583300000003 63.1616590000001) (-67.78750599999995 63.16304800000012) (-67.79861499999987 63.16554300000013) (-67.80638099999999 63.168602000000135) (-67.85194399999995 63.191376000000105) (-67.86332700000003 63.19915800000001) (-67.87638899999996 63.21193700000009) (-67.876938 63.21693399999998) (-67.875 63.22304500000007) (-67.86639399999996 63.23249100000004) (-67.85221899999988 63.244438) (-67.84445199999999 63.2472150000001) (-67.839722 63.2472150000001) (-67.831955 63.24415599999992) (-67.82194500000003 63.23665600000004) (-67.82223499999992 63.233330000000024) (-67.816101 63.23054499999995) (-67.79167199999995 63.21499600000004) (-67.769455 63.19832600000012) (-67.74610899999993 63.17887900000011) (-67.74472000000003 63.1730500000001) (-67.74638400000003 63.16693900000001) (-67.76445000000001 63.162491000000045)) ((-67.925003 63.18332700000008) (-67.95611600000001 63.181107000000054) (-67.966949 63.183876) (-68.00083899999998 63.208046000000024) (-68.01722699999999 63.22054300000002) (-68.06138599999991 63.25777399999998) (-68.10583499999996 63.299438000000066) (-68.11166399999996 63.30915800000014) (-68.112213 63.31360600000011) (-68.10638399999999 63.31860400000011) (-68.09695399999993 63.318885999999964) (-68.085556 63.31610100000012) (-68.06916799999988 63.309432999999956) (-68.04888900000003 63.29749300000009) (-68.03222700000003 63.28499600000009) (-68.00028999999995 63.26027699999992) (-67.92582699999997 63.196098000000006) (-67.920547 63.191376000000105) (-67.91694599999994 63.18665300000009) (-67.925003 63.18332700000008)) ((-78.07972699999999 63.469436999999914) (-77.94610599999999 63.468048000000124) (-77.93777499999999 63.471100000000035) (-77.93055699999996 63.4749910000001) (-77.92416400000002 63.47693600000008) (-77.91194199999995 63.47637900000001) (-77.84500100000002 63.47221400000001) (-77.68055700000002 63.43443300000001) (-77.63667299999992 63.40277100000009) (-77.495834 63.274994000000106) (-77.49388099999999 63.269989000000066) (-77.49499499999996 63.265831000000105) (-77.50389100000001 63.25249499999995) (-77.57333399999993 63.200546000000145) (-77.641953 63.17193600000007) (-77.78527799999989 63.12165800000014) (-77.89889499999992 63.09276600000004) (-77.90666199999998 63.09165999999999) (-77.93138099999993 63.09054600000002) (-77.94665500000002 63.09110300000009) (-77.95834399999995 63.093048000000124) (-78.0250089999999 63.11721) (-78.12471 63.16582500000004) (-78.226944 63.22165699999999) (-78.295547 63.25999500000006) (-78.31138599999991 63.27221700000001) (-78.32223499999998 63.281105000000025) (-78.343613 63.29694400000011) (-78.354446 63.30360400000012) (-78.44665500000002 63.35027300000013) (-78.4869379999999 63.36499800000007) (-78.51972999999998 63.370270000000005) (-78.52389499999998 63.37248999999997) (-78.56249999999994 63.39582800000011) (-78.57223499999992 63.4347150000001) (-78.57278399999996 63.440269000000114) (-78.55166599999995 63.44499200000007) (-78.37998999999996 63.47637900000001) (-78.278885 63.489716000000044) (-78.214111 63.49653599999999) (-78.212784 63.49610100000007) (-78.15861499999988 63.482208000000014) (-78.09167500000001 63.470543000000134) (-78.07972699999999 63.469436999999914)) ((-90.65388499999995 63.441101) (-90.697495 63.4397130000001) (-90.70889299999993 63.4405440000001) (-90.71916199999998 63.44360399999999) (-90.72582999999986 63.44804399999998) (-90.75500499999998 63.489716000000044) (-90.75723299999999 63.494438000000116) (-90.74804699999993 63.49832900000001) (-90.73750299999995 63.49916100000013) (-90.64555399999995 63.48333000000014) (-90.62026999999995 63.47693600000008) (-90.60278299999999 63.46388200000001) (-90.598053 63.454436999999984) (-90.60221899999999 63.44915800000001) (-90.61193799999995 63.44609800000012) (-90.62193299999996 63.44415300000014) (-90.65388499999995 63.441101)) ((-78.55749499999996 63.457497000000046) (-78.60055499999993 63.45638300000002) (-78.60333300000002 63.45777099999998) (-78.56138599999997 63.502495000000124) (-78.54333499999996 63.51610600000009) (-78.51583900000003 63.53166200000004) (-78.50500499999987 63.53249399999993) (-78.49610899999993 63.529434000000094) (-78.47332799999998 63.51915700000012) (-78.46806300000003 63.51554900000002) (-78.46166999999997 63.50749999999999) (-78.45916699999998 63.47998800000005) (-78.46194500000001 63.47387700000013) (-78.46722399999999 63.469436999999914) (-78.47555499999999 63.46693399999998) (-78.531113 63.45860300000004) (-78.55749499999996 63.457497000000046)) ((-90.79360999999994 63.49415600000009) (-90.80444299999994 63.49332400000014) (-90.816956 63.49582700000013) (-90.87721299999998 63.514717000000076) (-90.93331899999998 63.53416400000009) (-90.96583599999997 63.54583000000008) (-90.96833799999996 63.550270000000125) (-90.95750399999997 63.5513840000001) (-90.77111799999994 63.55193300000002) (-90.74804699999993 63.550270000000125) (-90.72000100000002 63.543052999999986) (-90.70973199999997 63.539992999999924) (-90.70083599999998 63.53611000000001) (-90.68138099999999 63.52304799999996) (-90.67694099999989 63.51859999999999) (-90.674713 63.51388499999996) (-90.678604 63.508331) (-90.68888900000002 63.50638600000002) (-90.79360999999994 63.49415600000009)) ((-64.851944 63.38582600000012) (-64.85694899999999 63.38582600000012) (-64.88221699999997 63.395546000000024) (-64.90417500000001 63.40638000000007) (-64.91833500000001 63.413879000000065) (-64.94221500000003 63.43082400000003) (-64.95083599999992 63.439156000000025) (-65.02667200000002 63.51554900000002) (-65.035278 63.52443699999998) (-65.05305499999997 63.54833199999996) (-65.051941 63.55221599999999) (-64.97721899999999 63.56832900000006) (-64.96749899999992 63.56832900000006) (-64.95472699999999 63.55888399999998) (-64.95472699999999 63.55387900000011) (-64.93360899999999 63.54471600000011) (-64.912216 63.533333000000084) (-64.90916399999998 63.52860300000009) (-64.86749299999991 63.46166200000005) (-64.86082499999986 63.44721200000009) (-64.84750400000001 63.40749400000004) (-64.84472699999998 63.39694200000008) (-64.847778 63.387496999999996) (-64.851944 63.38582600000012)) ((-72.18249500000002 63.51998900000001) (-72.20750399999997 63.51998900000001) (-72.218887 63.52249100000006) (-72.22694399999995 63.525825999999995) (-72.2327729999999 63.53027300000002) (-72.28666699999991 63.58332800000011) (-72.27917499999995 63.58554800000013) (-72.23222399999992 63.586655000000064) (-72.23028599999998 63.587212000000136) (-72.20527600000003 63.583054000000004) (-72.18443299999996 63.57721700000002) (-72.135559 63.562767000000065) (-72.129166 63.55888399999998) (-72.12805200000003 63.55387900000011) (-72.14500399999997 63.53943600000002) (-72.16583300000002 63.526381999999955) (-72.17361499999998 63.522766000000104) (-72.18249500000002 63.51998900000001)) ((-91.32917799999996 63.55971499999998) (-91.401947 63.54943800000001) (-91.42443800000001 63.550270000000125) (-91.43638599999997 63.55193300000002) (-91.4619449999999 63.55832700000008) (-91.54028299999993 63.60166200000003) (-91.54055800000003 63.60665899999998) (-91.53416400000003 63.611381999999935) (-91.50111399999997 63.61193800000012) (-91.46389799999992 63.6097180000001) (-91.44082600000002 63.608047000000056) (-91.428604 63.606383999999935) (-91.41639699999996 63.60360700000007) (-91.362503 63.59027100000009) (-91.34944200000001 63.586655000000064) (-91.29972799999996 63.567771999999934) (-91.30888400000003 63.563881000000094) (-91.32917799999996 63.55971499999998)) ((-64.09249899999992 63.48165900000009) (-64.101944 63.47943099999992) (-64.10916099999992 63.483047) (-64.16944899999999 63.52360500000009) (-64.18055699999996 63.53305100000006) (-64.18415800000002 63.53721600000006) (-64.20916699999998 63.574996999999996) (-64.2161099999999 63.59526800000003) (-64.21694899999994 63.60110500000013) (-64.21528599999994 63.617493000000024) (-64.21278399999994 63.623604000000114) (-64.19972200000001 63.633331000000055) (-64.19193999999999 63.63721500000008) (-64.18249500000002 63.639435000000105) (-64.17193599999996 63.63360600000004) (-64.09333799999996 63.56832900000006) (-64.07833899999991 63.55054500000011) (-64.077225 63.54527300000001) (-64.07778899999988 63.53971899999999) (-64.08612099999993 63.49305000000004) (-64.08750899999995 63.48665599999998) (-64.09249899999992 63.48165900000009)) ((-68.65638699999994 63.62638100000004) (-68.71777299999991 63.624161000000015) (-68.73110999999994 63.62554900000009) (-68.81555200000003 63.64916200000005) (-68.82167099999998 63.652488999999946) (-68.82000700000003 63.65526600000004) (-68.79305999999997 63.66165900000004) (-68.71444699999995 63.67249300000009) (-68.69166599999994 63.67360700000006) (-68.676941 63.671379000000115) (-68.66888399999993 63.66832699999998) (-68.66639700000002 63.66387900000001) (-68.66625999999997 63.662581999999986) (-68.65527299999997 63.63443799999999) (-68.654449 63.630272000000105) (-68.65638699999994 63.62638100000004)) ((-64.06111099999998 63.27054600000014) (-64.07055699999995 63.268326000000116) (-64.07833899999991 63.26888300000002) (-64.18194599999998 63.29694400000011) (-64.25140399999998 63.320831) (-64.266953 63.32638499999996) (-64.34973099999996 63.39222000000001) (-64.35388199999989 63.39582800000011) (-64.42193600000002 63.47165700000011) (-64.49610899999988 63.6097180000001) (-64.49055499999997 63.62054400000005) (-64.47917199999995 63.63694000000004) (-64.47361799999987 63.64054900000008) (-64.38667299999997 63.67527000000001) (-64.37721299999993 63.67748999999998) (-64.36721799999992 63.67527000000001) (-64.36305199999993 63.67193600000002) (-64.328888 63.644440000000145) (-64.32556199999993 63.63749699999994) (-64.32556199999993 63.59804500000007) (-64.32444799999996 63.58804299999997) (-64.32167099999998 63.57749200000006) (-64.316101 63.56249200000008) (-64.26251199999996 63.42110400000013) (-64.23249800000002 63.38832900000011) (-64.22528099999994 63.384438000000046) (-64.20666499999993 63.384163) (-64.166946 63.36943800000006) (-64.14472999999992 63.355552999999986) (-64.09999099999993 63.32276900000011) (-64.05749500000002 63.27804600000002) (-64.05749500000002 63.27388000000013) (-64.06111099999998 63.27054600000014)) ((-71.79916400000002 63.615546999999935) (-71.80694599999987 63.61193800000012) (-71.84527599999996 63.613609) (-71.8552699999999 63.61582900000002) (-71.86332700000003 63.619438) (-71.86582900000002 63.62443500000012) (-71.86582900000002 63.63638300000014) (-71.86416600000001 63.66944099999995) (-71.83056599999992 63.69387800000004) (-71.82194500000003 63.69526700000006) (-71.789444 63.69137599999999) (-71.779449 63.68832400000008) (-71.775284 63.68305199999992) (-71.77722199999994 63.67083000000014) (-71.79110700000001 63.6272130000001) (-71.79916400000002 63.615546999999935)) ((-76.81054699999999 63.60110500000013) (-76.710556 63.56582600000007) (-76.67222599999997 63.52887700000002) (-76.67555199999993 63.49665800000014) (-76.68160999999998 63.48135400000007) (-76.61332699999997 63.473602000000085) (-76.56555199999991 63.46776600000004) (-76.546112 63.46471400000013) (-76.54194599999994 63.462494000000106) (-76.54388399999999 63.46110499999992) (-76.67500299999995 63.37470999999999) (-76.68221999999997 63.37082700000008) (-76.69221499999998 63.367767000000015) (-76.70333899999997 63.365829000000076) (-76.71278399999994 63.36554699999999) (-76.72610500000002 63.36693600000001) (-76.847778 63.38526900000005) (-76.98416099999992 63.40638000000007) (-77.03527799999995 63.423882000000106) (-77.03944399999995 63.42610200000013) (-77.046112 63.42971799999998) (-77.05139199999996 63.434158000000025) (-77.05360399999995 63.43693500000012) (-77.05555699999996 63.442764000000125) (-77.06138599999997 63.45054600000009) (-77.10583499999996 63.47665400000005) (-77.11166399999996 63.479713000000004) (-77.327789 63.57222000000013) (-77.36721799999998 63.583054000000004) (-77.391388 63.58554800000013) (-77.41166699999997 63.584991) (-77.42222600000002 63.586655000000064) (-77.42777999999998 63.589157000000114) (-77.43194599999998 63.59193400000004) (-77.44221500000003 63.608330000000024) (-77.45722999999998 63.643325999999945) (-77.45388799999995 63.65221400000013) (-77.44027699999998 63.665268000000026) (-77.41027799999995 63.68665299999998) (-77.40055799999999 63.68888099999998) (-77.37805199999997 63.69221499999992) (-77.34333800000002 63.69609800000006) (-77.11694299999994 63.68110700000011) (-77.10333299999996 63.67971799999998) (-77.06138599999997 63.672768000000076) (-77.02139299999993 63.66415400000005) (-76.81054699999999 63.60110500000013)) ((-72.59472700000003 63.642494000000056) (-72.60444599999994 63.64166300000005) (-72.78056300000003 63.65998799999994) (-72.78332499999988 63.66443600000008) (-72.77055399999995 63.669715999999994) (-72.75666799999988 63.672768000000076) (-72.723053 63.67860399999995) (-72.50666799999999 63.70721400000002) (-72.48388699999998 63.708885000000066) (-72.47416699999991 63.705826000000116) (-72.47083999999995 63.702217000000076) (-72.47138999999999 63.700829) (-72.46888699999994 63.699158000000125) (-72.46333300000003 63.68915600000014) (-72.45973199999997 63.67916100000008) (-72.46055599999994 63.672768000000076) (-72.46389799999997 63.66832699999998) (-72.58444199999997 63.644440000000145) (-72.59472700000003 63.642494000000056)) ((-64.03250100000002 63.68971300000004) (-64.16111799999999 63.674438000000066) (-64.181107 63.67582700000008) (-64.20028699999995 63.685546999999985) (-64.20834400000001 63.69748700000008) (-64.21166999999997 63.70638300000002) (-64.21250900000001 63.71221200000002) (-64.20889299999999 63.721930999999984) (-64.18028300000003 63.74221800000009) (-64.17471299999994 63.745270000000005) (-64.16665599999999 63.747772000000055) (-64.08306900000002 63.75833100000011) (-64.07806399999998 63.75833100000011) (-64.075287 63.75804900000003) (-64.07333399999993 63.756386000000134) (-64.05484000000001 63.73659500000008) (-64.04333500000001 63.734161000000086) (-64.03028899999998 63.72971300000012) (-64.02528399999994 63.70249200000012) (-64.02528399999994 63.69748700000008) (-64.02639799999992 63.69387800000004) (-64.03250100000002 63.68971300000004)) ((-72.66776999999996 63.69582400000013) (-72.6949919999999 63.69026900000006) (-72.70361300000002 63.692490000000134) (-72.73416099999997 63.710823000000005) (-72.73889199999991 63.714439000000084) (-72.741669 63.71971100000002) (-72.74388099999987 63.73027000000002) (-72.73998999999998 63.736107000000004) (-72.71972700000003 63.76388500000013) (-72.71556099999992 63.766106000000036) (-72.70584100000002 63.76749400000011) (-72.69387799999998 63.76583099999999) (-72.68249500000002 63.76221499999997) (-72.66471899999993 63.75555400000002) (-72.64222699999993 63.745270000000005) (-72.63583399999999 63.74137900000011) (-72.62666300000001 63.73220799999996) (-72.62582399999997 63.727486000000056) (-72.62638900000002 63.72109999999998) (-72.63417099999998 63.709160000000054) (-72.64999399999999 63.701385000000016) (-72.66776999999996 63.69582400000013)) ((-64.28443900000002 63.70860299999998) (-64.28639199999998 63.70804600000008) (-64.31111099999993 63.709991000000116) (-64.32917800000001 63.71665999999999) (-64.33639499999992 63.719986000000006) (-64.34861799999999 63.72804299999996) (-64.35694899999999 63.73693800000001) (-64.36361699999998 63.74638399999998) (-64.381104 63.80749500000013) (-64.35943599999996 63.80387900000005) (-64.33972199999994 63.796943999999996) (-64.331955 63.79166399999997) (-64.30277999999993 63.78054800000001) (-64.27861000000001 63.77082800000011) (-64.27500899999995 63.76666300000011) (-64.25527999999997 63.72971300000012) (-64.25500499999993 63.72526600000009) (-64.26083399999987 63.71971100000002) (-64.28443900000002 63.70860299999998)) ((-64.17027300000001 63.856384000000105) (-64.1808319999999 63.785270999999966) (-64.195267 63.77860300000003) (-64.20333899999997 63.776382000000126) (-64.2344359999999 63.77137800000014) (-64.245834 63.77137800000014) (-64.256958 63.7741620000001) (-64.32556199999993 63.80582400000003) (-64.398346 63.845543000000134) (-64.39916999999997 63.84943400000003) (-64.3977809999999 63.85138699999999) (-64.39611799999994 63.85193600000014) (-64.35388199999989 63.86110700000006) (-64.334091 63.852081000000055) (-64.32556199999993 63.850273000000016) (-64.31082200000003 63.84832800000004) (-64.26834099999991 63.846100000000035) (-64.215012 63.850273000000016) (-64.20834400000001 63.852776000000006) (-64.20028699999995 63.85971800000004) (-64.18666100000002 63.86721) (-64.17999299999991 63.865547000000106) (-64.17582700000003 63.861938000000066) (-64.17027300000001 63.856384000000105)) ((-92.95417800000001 63.87110100000007) (-92.96055599999994 63.866386000000034) (-92.972778 63.86776700000007) (-92.99861099999998 63.873046999999985) (-93.06861900000001 63.88804600000003) (-93.093887 63.89999400000005) (-93.09445199999993 63.904990999999995) (-93.087784 63.90888200000006) (-93.07000700000003 63.90971399999995) (-93.00279199999994 63.91137700000007) (-92.99082900000002 63.91082) (-92.97833300000002 63.90832499999999) (-92.97444200000001 63.901657) (-92.95527599999997 63.88082099999997) (-92.95249899999999 63.87609900000007) (-92.95417800000001 63.87110100000007)) ((-64.57611099999986 63.780823) (-64.52583299999998 63.77137800000014) (-64.46777299999997 63.77137800000014) (-64.46194500000001 63.774712000000136) (-64.45249899999999 63.777214000000015) (-64.43276999999995 63.77943400000004) (-64.42610200000001 63.77777100000009) (-64.39472999999998 63.74582700000008) (-64.38751199999996 63.73749500000008) (-64.38612399999994 63.73443600000013) (-64.38612399999994 63.701660000000004) (-64.38999899999993 63.69638100000003) (-64.40417500000001 63.687492000000134) (-64.41915899999998 63.67971799999998) (-64.43638599999991 63.67332499999998) (-64.45056199999993 63.67166099999997) (-64.45944199999997 63.672768000000076) (-64.47444200000001 63.67916100000008) (-64.49694799999992 63.69082600000013) (-64.66166699999991 63.75499700000012) (-64.80221599999999 63.76444200000003) (-64.81332399999997 63.76721200000003) (-64.89028899999994 63.78943599999997) (-64.90055799999999 63.793883999999935) (-64.906387 63.797493000000145) (-64.9163969999999 63.80638099999993) (-64.91833500000001 63.815269000000114) (-64.92027299999995 63.82471500000008) (-64.9177699999999 63.83110800000003) (-64.91027799999995 63.83721200000008) (-64.89639299999999 63.845267999999976) (-64.81166099999996 63.87721300000004) (-64.710556 63.90888200000006) (-64.6824949999999 63.91443600000008) (-64.660278 63.91638200000011) (-64.64723199999997 63.916100000000085) (-64.55721999999992 63.90998800000011) (-64.55305499999992 63.90638000000001) (-64.54943799999995 63.89527100000009) (-64.571121 63.87082700000013) (-64.585556 63.84499400000004) (-64.57611099999986 63.780823)) ((-77.74388099999993 63.926658999999916) (-77.75334199999998 63.92555199999998) (-77.94860799999998 63.95082900000011) (-77.95695499999994 63.95388000000014) (-77.96694899999989 63.959160000000054) (-77.978882 63.96915400000006) (-77.98249799999996 63.97554800000006) (-77.98249799999996 63.983047000000056) (-77.97610500000002 63.99027300000006) (-77.95750399999997 64.00471500000003) (-77.950287 64.00915500000002) (-77.943604 64.01110799999998) (-77.92388900000003 64.01499900000005) (-77.88999899999999 64.01998900000007) (-77.77444500000001 64.0316620000001) (-77.75389099999995 64.03276100000011) (-77.64862099999999 64.03248600000006) (-77.59111000000001 64.03027299999997) (-77.55721999999997 64.02804600000007) (-77.54972799999996 64.02554300000008) (-77.54444899999999 64.02192700000006) (-77.54527300000001 64.0186000000001) (-77.62361099999998 63.997214999999926) (-77.62388599999991 63.99582700000002) (-77.62805200000003 63.991104000000064) (-77.63945000000001 63.981934000000024) (-77.68638599999997 63.95443700000004) (-77.72860699999995 63.932213000000104) (-77.73721299999988 63.928329000000076) (-77.74388099999993 63.926658999999916)) ((-89.80888400000003 64.05636600000008) (-89.81722999999994 64.05470300000013) (-89.82888799999989 64.05581699999993) (-89.839447 64.05886800000013) (-89.847778 64.06303400000007) (-89.86111499999998 64.07165500000013) (-89.86999500000002 64.08082600000012) (-89.87193300000001 64.08554100000015) (-89.86776700000001 64.09582499999999) (-89.85749800000002 64.0977630000001) (-89.83167999999989 64.09109499999994) (-89.82806399999993 64.08831800000007) (-89.81973299999993 64.08027600000008) (-89.80471799999998 64.0619200000001) (-89.80888400000003 64.05636600000008)) ((-64.962784 64.11080900000007) (-64.94860799999998 64.10971099999995) (-64.9036099999999 64.11109900000008) (-64.87110899999999 64.09915200000012) (-64.86944599999998 64.09664900000013) (-64.86999500000002 64.09332300000011) (-64.87332200000003 64.09082000000012) (-64.88444500000003 64.08665500000012) (-64.90556300000003 64.08221400000002) (-64.94665500000002 64.07887299999999) (-64.98889200000002 64.08137500000004) (-65.002228 64.08387800000003) (-65.02305599999994 64.08943200000004) (-65.04554699999994 64.09942600000005) (-65.05555699999996 64.10859699999997) (-65.05749500000002 64.11303700000002) (-65.05638099999993 64.11720300000007) (-65.05221599999993 64.12109399999997) (-65.03971899999993 64.12498500000004) (-65.02500900000001 64.12747200000013) (-65.01556399999993 64.12692299999998) (-64.99527 64.12303199999991) (-64.98999000000003 64.11859099999998) (-64.98083499999996 64.11526500000014) (-64.962784 64.11080900000007)) ((-64.491104 64.10914600000012) (-64.49999999999994 64.10803199999998) (-64.51139799999993 64.10832199999999) (-64.58750899999995 64.14749100000006) (-64.59249899999998 64.15193199999999) (-64.59527600000001 64.15498400000007) (-64.59584000000001 64.15664700000002) (-64.56777999999997 64.16360500000002) (-64.554169 64.16693100000003) (-64.52444499999996 64.16720600000002) (-64.51811199999992 64.16621400000002) (-64.50111400000003 64.16331499999995) (-64.45333900000003 64.14694200000008) (-64.450287 64.13026400000001) (-64.491104 64.10914600000012)) ((-73.176941 64.20027199999998) (-73.28277600000001 64.14332600000006) (-73.29194599999994 64.14387499999998) (-73.38639799999987 64.15887499999997) (-73.39695699999999 64.16110200000003) (-73.40167200000002 64.16554300000013) (-73.39472999999992 64.18775900000009) (-73.39306599999992 64.19247400000012) (-73.385559 64.19636500000001) (-73.30943300000001 64.19497700000011) (-73.20666499999999 64.21388200000007) (-73.18998699999992 64.21220399999993) (-73.17805499999997 64.209991) (-73.17332499999992 64.20526100000012) (-73.176941 64.20027199999998)) ((-81.47138999999999 64.18887300000006) (-81.493607 64.18830900000012) (-81.51611299999996 64.19053600000001) (-81.52778599999999 64.19413799999995) (-81.53666699999985 64.2086030000001) (-81.53805499999993 64.21804800000012) (-81.53222699999992 64.22303800000003) (-81.47000099999991 64.2394260000001) (-81.458618 64.23887600000006) (-81.41332999999997 64.23332200000004) (-81.39028899999994 64.22915599999993) (-81.378601 64.22554000000008) (-81.37582399999991 64.22082500000005) (-81.37499999999994 64.21582000000001) (-81.37887599999993 64.21192900000011) (-81.38890100000003 64.20498700000002) (-81.40527299999991 64.19470200000012) (-81.47138999999999 64.18887300000006)) ((-64.52027899999996 64.22026100000011) (-64.57640100000003 64.21054100000003) (-64.60166899999996 64.21249399999999) (-64.61193800000001 64.21582000000001) (-64.61944599999993 64.21971100000007) (-64.64695699999999 64.24414100000013) (-64.64778100000001 64.25000000000011) (-64.64361600000001 64.25582900000012) (-64.63751200000002 64.259995) (-64.62971500000003 64.26165800000012) (-64.57167099999992 64.26499899999999) (-64.557526 64.26486200000005) (-64.55305499999992 64.26332100000008) (-64.55221599999993 64.26165800000012) (-64.55249000000003 64.25665300000009) (-64.46806299999997 64.24331699999993) (-64.46472199999994 64.240814) (-64.46221899999995 64.23748799999993) (-64.464447 64.234421) (-64.471115 64.23165900000009) (-64.52027899999996 64.22026100000011)) ((-75.55139200000002 64.30386399999998) (-75.69193999999999 64.30247500000013) (-75.702225 64.3058170000001) (-75.70889299999999 64.31526200000013) (-75.70584099999996 64.34193400000004) (-75.69665500000002 64.35108900000012) (-75.68638599999991 64.35331700000006) (-75.665009 64.35081500000001) (-75.57888799999995 64.34609999999998) (-75.57278400000001 64.34498599999995) (-75.50250199999994 64.31971699999997) (-75.493607 64.3163760000001) (-75.50111400000003 64.313309) (-75.51112399999994 64.31109600000008) (-75.55139200000002 64.30386399999998)) ((-64.93859899999995 64.23553500000003) (-64.98916599999995 64.20915200000002) (-65.00306699999993 64.21026599999999) (-65.04861499999998 64.218323) (-65.05277999999998 64.21943699999997) (-65.0599979999999 64.22331200000013) (-65.06555199999997 64.22747800000002) (-65.073059 64.24054000000007) (-65.10249299999998 64.29637100000014) (-65.10916099999997 64.31080600000007) (-65.11389200000002 64.32360800000004) (-65.11471599999999 64.32943700000004) (-65.11416600000001 64.33499100000006) (-65.112503 64.33970600000009) (-65.11000100000001 64.34359699999999) (-65.10166900000002 64.34637499999997) (-65.08944699999995 64.349716) (-65.02888499999989 64.36109900000002) (-65.02139299999993 64.36248799999998) (-65.01028399999996 64.36164900000006) (-65.006393 64.36053500000008) (-65.00195299999996 64.35693400000002) (-64.99888599999997 64.35443100000003) (-64.98222399999997 64.333054) (-64.88473499999992 64.28776600000009) (-64.88612399999994 64.28305100000006) (-64.89083899999997 64.27638200000001) (-64.92694099999994 64.24247700000006) (-64.93859899999995 64.23553500000003)) ((-73.87638900000002 64.301376) (-73.88362099999995 64.29887400000007) (-73.95167499999997 64.30497700000001) (-73.96556099999998 64.30664100000007) (-73.97250399999996 64.30970799999994) (-73.97444200000001 64.313309) (-73.96028100000001 64.36219799999998) (-73.95666499999993 64.36831700000005) (-73.95249899999993 64.3708190000001) (-73.94221499999992 64.37275700000004) (-73.93221999999992 64.37359600000002) (-73.91833500000001 64.37191800000005) (-73.90943899999996 64.36998000000011) (-73.88917500000002 64.35971100000012) (-73.87916599999994 64.35192899999998) (-73.87416099999996 64.34332300000005) (-73.87332200000003 64.30525200000005) (-73.87638900000002 64.301376)) ((-73.69776899999988 64.26998900000007) (-73.70472699999993 64.26887500000004) (-73.72084000000001 64.27276599999993) (-73.75389100000001 64.28276100000005) (-73.77667199999996 64.29470800000001) (-73.82333399999999 64.32470700000005) (-73.833618 64.33166500000004) (-73.781387 64.40554799999995) (-73.77610800000002 64.40748600000012) (-73.76556399999998 64.40942400000006) (-73.74916100000002 64.41026299999999) (-73.74444599999998 64.405823) (-73.73083500000001 64.38638300000002) (-73.729172 64.38610799999998) (-73.726944 64.38333100000006) (-73.72444199999995 64.37747200000007) (-73.70249899999999 64.32276900000011) (-73.69915799999995 64.31414799999999) (-73.69055200000003 64.27693200000004) (-73.691666 64.27360500000009) (-73.69444299999992 64.27110300000004) (-73.69776899999988 64.26998900000007)) ((-64.84973099999996 64.30748) (-64.86138899999997 64.30748) (-64.87721299999998 64.313309) (-64.88806199999999 64.32110599999999) (-64.93777499999999 64.36164900000006) (-64.94499200000001 64.37052900000009) (-64.95556599999998 64.38388099999992) (-64.95973200000003 64.39721700000007) (-64.958618 64.405823) (-64.95167499999991 64.41137699999996) (-64.94665500000002 64.41360500000013) (-64.93249500000002 64.41748000000013) (-64.92527799999999 64.4185940000001) (-64.91000400000001 64.41665599999999) (-64.90249599999999 64.41276600000015) (-64.89750700000002 64.40860000000009) (-64.82000700000003 64.37942500000003) (-64.77194199999997 64.34887700000002) (-64.77055399999995 64.3458250000001) (-64.773056 64.34248400000007) (-64.84973099999996 64.30748)) ((-74.27194199999991 64.41360500000013) (-74.28500400000001 64.41304000000008) (-74.35749799999996 64.42109700000009) (-74.37721299999998 64.4244230000001) (-74.42332499999998 64.44386300000008) (-74.43720999999994 64.45027199999993) (-74.439438 64.45332300000013) (-74.33860800000002 64.49470500000001) (-74.33167999999995 64.49693300000013) (-74.31040999999999 64.49884000000003) (-74.28527799999995 64.48165900000004) (-74.22860700000001 64.45109600000006) (-74.20584100000002 64.44747899999993) (-74.18306000000001 64.44303900000011) (-74.17332499999992 64.43914800000005) (-74.174713 64.43498199999999) (-74.17832899999996 64.43386799999996) (-74.27194199999991 64.41360500000013)) ((-73.74499500000002 64.42608600000005) (-73.75834699999996 64.42553700000008) (-73.77806099999998 64.428314) (-73.781387 64.43193100000013) (-73.78277600000001 64.43748499999992) (-73.78250099999997 64.44247400000006) (-73.77610800000002 64.49581899999998) (-73.77389499999998 64.501938) (-73.77333099999993 64.50332600000007) (-73.74691799999994 64.50851399999999) (-73.73666400000002 64.50721699999997) (-73.729172 64.50526400000007) (-73.72416699999985 64.50221300000004) (-73.67304999999999 64.46971100000002) (-73.66861 64.46443200000004) (-73.66833499999996 64.46026599999993) (-73.67193600000002 64.45582600000012) (-73.67971799999998 64.45220899999998) (-73.72721899999993 64.4310910000001) (-73.73500100000001 64.42804000000007) (-73.74499500000002 64.42608600000005)) ((-74.212784 64.483047) (-74.22332799999998 64.48027000000008) (-74.22917199999995 64.48136900000003) (-74.30749500000002 64.51609800000011) (-74.33111600000001 64.52665699999994) (-74.33750899999995 64.53109699999999) (-74.35777300000001 64.54693600000007) (-74.35777300000001 64.55108600000011) (-74.353882 64.55358900000004) (-74.34555099999994 64.555252) (-74.25306699999999 64.54803500000008) (-74.24055499999997 64.54637100000008) (-74.23611499999998 64.5455320000001) (-74.16972399999997 64.52388000000008) (-74.16944899999993 64.51971400000014) (-74.20666499999999 64.48637400000007) (-74.212784 64.483047)) ((-73.55749500000002 64.31275899999997) (-73.57778899999994 64.3099820000001) (-73.60166900000002 64.31025700000009) (-73.6263889999999 64.31275899999997) (-73.650284 64.31721500000009) (-73.65556300000003 64.320267) (-73.65833999999995 64.33499100000006) (-73.66953299999989 64.42684900000012) (-73.61044299999998 64.47048999999998) (-73.68249499999996 64.50972000000013) (-73.67999299999991 64.526093) (-73.67777999999993 64.53221100000013) (-73.66665599999988 64.53553800000009) (-73.577225 64.55998200000005) (-73.53721599999994 64.56776400000001) (-73.52778599999999 64.56694000000005) (-73.521118 64.56303400000013) (-73.50917099999998 64.55247500000007) (-73.50472999999994 64.54248000000001) (-73.50306699999993 64.53414900000007) (-73.48916599999995 64.46331800000007) (-73.48805199999998 64.453598) (-73.48832699999997 64.44386300000008) (-73.49027999999993 64.43914800000005) (-73.55526699999996 64.31469700000014) (-73.55749500000002 64.31275899999997)) ((-65.49276700000001 64.51776100000001) (-65.65833999999995 64.50972000000013) (-65.66944899999993 64.51026900000011) (-65.67971799999998 64.51220700000005) (-65.68611099999993 64.51527399999998) (-65.68971299999998 64.51998900000001) (-65.69027699999992 64.52415500000006) (-65.68971299999998 64.52998400000007) (-65.686935 64.53887900000012) (-65.67250099999995 64.56053200000008) (-65.660278 64.57388300000002) (-65.65110800000002 64.58055100000001) (-65.61582900000002 64.599152) (-65.56332399999991 64.61554000000007) (-65.55444299999999 64.6185910000001) (-65.54695100000004 64.62248199999999) (-65.44915800000001 64.67886399999998) (-65.44387799999993 64.684708) (-65.43582200000003 64.69636500000013) (-65.38194299999992 64.71693400000004) (-65.29249599999997 64.73553500000008) (-65.25695799999994 64.70999100000006) (-65.25250199999994 64.70637500000004) (-65.25805700000001 64.70082100000002) (-65.26640299999991 64.6933140000001) (-65.24999999999989 64.66360500000008) (-65.208054 64.63970899999998) (-65.208618 64.63136300000008) (-65.21389799999992 64.62608300000005) (-65.22805799999992 64.6202550000001) (-65.30943300000001 64.60054000000008) (-65.42027299999995 64.55442800000003) (-65.45278899999994 64.532761) (-65.45083599999992 64.52832000000006) (-65.45361300000002 64.524429) (-65.460556 64.52110299999998) (-65.468887 64.51915000000002) (-65.49276700000001 64.51776100000001)) ((-63.35333300000002 64.99498000000011) (-63.34916700000002 64.99165299999999) (-63.34722099999999 64.99192799999997) (-63.330558999999994 64.9869230000001) (-63.257506999999976 64.92942800000003) (-63.25639299999989 64.92637600000012) (-63.258895999999936 64.92109700000015) (-63.27305599999994 64.91804500000006) (-63.28138699999994 64.91832000000005) (-63.37777699999998 64.94081100000005) (-63.385276999999974 64.94413800000001) (-63.39388999999994 64.951096) (-63.417220999999984 64.97137499999991) (-63.420279999999934 64.97608900000006) (-63.420279999999934 64.978317) (-63.41889200000003 64.98248300000012) (-63.415549999999996 64.9869230000001) (-63.395279000000016 64.99552900000003) (-63.37610599999999 64.99887100000001) (-63.36361699999998 64.99720800000006) (-63.35333300000002 64.99498000000011)) ((-63.24361399999992 65.25499000000013) (-63.25139599999994 65.25387599999999) (-63.25666799999999 65.25610400000011) (-63.310554999999965 65.29054299999996) (-63.313331999999946 65.29386900000003) (-63.31166799999994 65.29803500000008) (-63.3066639999999 65.30247500000013) (-63.25778199999996 65.32083100000011) (-63.244445999999925 65.32276900000005) (-63.23666399999996 65.32165500000008) (-63.22721899999999 65.31387300000011) (-63.166388999999924 65.28610200000008) (-63.16583300000002 65.282486) (-63.16666399999997 65.27915999999999) (-63.23527499999989 65.25694300000009) (-63.24361399999992 65.25499000000013)) ((-66.92471299999994 65.28442400000012) (-66.93388399999998 65.28332499999999) (-66.96250900000001 65.28359999999998) (-66.97694399999995 65.28442400000012) (-66.98916600000001 65.28637700000007) (-66.99110399999995 65.28887899999995) (-67.01112399999994 65.31915300000003) (-67.01194800000002 65.3230440000001) (-67.010559 65.33332800000011) (-67.00500499999993 65.33970600000009) (-66.99221799999992 65.34610000000009) (-66.97444199999995 65.35054000000014) (-66.9324949999999 65.3580320000001) (-66.92027300000001 65.35859700000009) (-66.91082799999987 65.35693399999997) (-66.908615 65.355255) (-66.90805099999994 65.35108900000006) (-66.90943900000002 65.34610000000009) (-66.91194200000001 65.34220900000003) (-66.92027300000001 65.29443400000002) (-66.92138699999998 65.28970300000009) (-66.92471299999994 65.28442400000012)) ((-89.00556899999992 65.38554400000004) (-89.01750199999998 65.38554400000004) (-89.03028899999998 65.38749699999994) (-89.07611099999997 65.39471400000008) (-89.10028099999988 65.40081800000007) (-89.09999099999993 65.40582299999994) (-89.09167499999995 65.40832500000005) (-89.06806899999998 65.40832500000005) (-89.03195199999999 65.40721100000007) (-89.01861599999995 65.40332000000001) (-89.00944500000003 65.39915500000001) (-89.00527999999991 65.39553800000004) (-89.00306699999999 65.39054900000008) (-89.00556899999992 65.38554400000004)) ((-88.43028299999992 65.45526100000006) (-88.46501199999989 65.45359799999994) (-88.48999000000003 65.45665000000008) (-88.50361599999991 65.46054100000015) (-88.51028400000001 65.46499599999999) (-88.51222200000001 65.46971100000002) (-88.50750699999998 65.47499100000005) (-88.49638399999998 65.47692899999998) (-88.48500100000001 65.47776799999997) (-88.46112099999999 65.47747800000013) (-88.42416399999996 65.47442600000005) (-88.39862099999988 65.47026100000005) (-88.39416499999993 65.46582000000012) (-88.39973399999997 65.46138000000008) (-88.42138699999998 65.45694000000009) (-88.43028299999992 65.45526100000006)) ((-62.79500599999989 65.51998899999995) (-62.80444299999999 65.51915000000002) (-62.81945000000002 65.52415500000006) (-62.82695000000001 65.52804600000013) (-62.89388999999994 65.5811000000001) (-62.89555399999995 65.58554100000003) (-62.89555399999995 65.58998100000002) (-62.88972499999994 65.599152) (-62.88444499999997 65.60554500000012) (-62.87471800000003 65.61360200000007) (-62.8663939999999 65.61747700000006) (-62.85639200000003 65.61914100000007) (-62.84972399999998 65.61886600000008) (-62.84277300000002 65.616379) (-62.83805100000001 65.61360200000007) (-62.834998999999925 65.60664400000013) (-62.834998999999925 65.60470599999996) (-62.83000199999998 65.59304800000012) (-62.82444800000002 65.58526599999999) (-62.817504999999926 65.578598) (-62.81027999999998 65.57470699999993) (-62.78556099999997 65.5641480000001) (-62.76500699999997 65.55748000000011) (-62.750838999999985 65.55137600000006) (-62.78889499999997 65.52331500000003) (-62.79500599999989 65.51998899999995)) ((-83.88276699999994 65.66693100000009) (-83.89388999999994 65.66470300000015) (-83.90638699999994 65.66693100000009) (-83.93749999999994 65.67719999999991) (-83.94305400000002 65.68193100000008) (-83.94221499999998 65.68692000000004) (-83.93638599999997 65.69192500000008) (-83.92832899999996 65.69720500000011) (-83.896118 65.71026600000005) (-83.88473499999998 65.71276900000004) (-83.87277199999994 65.71220399999999) (-83.86444099999994 65.707764) (-83.86888099999999 65.69693000000012) (-83.87138400000003 65.68692000000004) (-83.87693799999994 65.67221099999995) (-83.88276699999994 65.66693100000009)) ((-67.47250400000001 65.70526100000001) (-67.55972300000002 65.7022090000001) (-67.58473199999997 65.70359800000011) (-67.64056399999993 65.69609100000014) (-67.69137599999993 65.68580600000001) (-67.70140100000003 65.68609600000008) (-67.70695499999994 65.68803400000002) (-67.71389799999986 65.69664000000012) (-67.71583599999997 65.70165999999995) (-67.71333299999992 65.70555100000001) (-67.69583099999988 65.7208250000001) (-67.658615 65.72526600000003) (-67.57749899999999 65.73165899999998) (-67.52917500000001 65.73498500000005) (-67.49999999999994 65.73498500000005) (-67.48971599999993 65.73498500000005) (-67.42443800000001 65.73526000000004) (-67.44694499999991 65.71859699999999) (-67.47250400000001 65.70526100000001)) ((-62.268332999999984 65.70165999999995) (-62.25944500000003 65.69970700000005) (-62.23805199999998 65.70248400000008) (-62.22110700000002 65.7080380000001) (-62.20416999999992 65.71165500000006) (-62.186385999999914 65.711929) (-62.16777799999994 65.70277399999992) (-62.131667999999934 65.67886399999998) (-62.12833399999994 65.67414900000011) (-62.13194299999998 65.65721100000002) (-62.135276999999974 65.65138200000001) (-62.14222699999999 65.64498900000001) (-62.19499999999999 65.61276200000003) (-62.20249899999999 65.61025999999998) (-62.21500400000002 65.60998499999994) (-62.22444200000001 65.61109899999997) (-62.29695099999998 65.6249850000001) (-62.45500199999998 65.65998800000011) (-62.46610999999996 65.66387900000001) (-62.483886999999925 65.72109999999992) (-62.48444399999994 65.72692899999998) (-62.483611999999994 65.73165899999998) (-62.48055299999987 65.73776199999992) (-62.47360999999995 65.74192800000003) (-62.46832999999998 65.74414099999996) (-62.46194499999996 65.74525499999999) (-62.28388999999993 65.74443100000002) (-62.27194199999991 65.74414099999996) (-62.260283999999956 65.74331699999999) (-62.25250199999999 65.74192800000003) (-62.251396 65.7391510000001) (-62.25861399999991 65.72859200000005) (-62.27027899999996 65.72303800000009) (-62.29750100000001 65.70860299999998) (-62.268332999999984 65.70165999999995)) ((-83.28388999999993 65.83415200000013) (-83.29222099999993 65.82887299999999) (-83.30360399999995 65.82638500000002) (-83.31555199999997 65.82609600000006) (-83.32749899999993 65.82748399999997) (-83.34777799999989 65.83248900000007) (-83.39527900000002 65.8316650000001) (-83.40666199999998 65.83027600000008) (-83.41805999999997 65.82777400000003) (-83.42916899999994 65.82443200000006) (-83.43998699999992 65.81915300000009) (-83.45639 65.80886799999996) (-83.47332799999998 65.80026200000003) (-83.48527499999994 65.80081200000006) (-83.49804699999993 65.80415299999993) (-83.52972399999999 65.81748999999996) (-83.55915799999997 65.83110000000005) (-83.57556199999993 65.83998099999997) (-83.58167999999989 65.84471100000002) (-83.58500700000002 65.84942600000005) (-83.58612099999999 65.8541560000001) (-83.58029199999999 65.85942099999994) (-83.57167099999998 65.86248800000004) (-83.56027199999994 65.86499000000015) (-83.52528399999989 65.8683170000001) (-83.47805800000003 65.87025500000004) (-83.44249000000002 65.87081899999998) (-83.36999499999996 65.86665300000004) (-83.345551 65.863876) (-83.33306900000002 65.8602600000001) (-83.29110699999995 65.84359700000005) (-83.28527799999995 65.83888200000001) (-83.28388999999993 65.83415200000013)) ((-65.64584399999995 65.81303400000007) (-65.656387 65.81275900000003) (-65.660278 65.81971700000003) (-65.65499899999992 65.86943100000008) (-65.65167199999996 65.87664799999999) (-65.64778100000001 65.879974) (-65.63612399999988 65.88638300000008) (-65.62388599999991 65.8913730000001) (-65.58306900000002 65.90277100000014) (-65.54276999999996 65.9080350000001) (-65.53167699999995 65.90887499999997) (-65.51611299999996 65.90637199999998) (-65.51139799999993 65.90304600000013) (-65.5122219999999 65.89444000000003) (-65.51333599999998 65.89054899999996) (-65.52806099999998 65.85942099999994) (-65.55943300000001 65.83471700000001) (-65.64584399999995 65.81303400000007)) ((-85.48055999999997 65.79193099999998) (-85.46806299999997 65.790817) (-85.45638999999994 65.79136700000004) (-85.44526699999994 65.79386900000009) (-85.42416400000002 65.8019260000001) (-85.41389500000002 65.80748000000006) (-85.40834000000001 65.8124850000001) (-85.40499899999998 65.81748999999996) (-85.40417500000001 65.822495) (-85.39306599999986 65.83276400000005) (-85.38194299999998 65.83526599999993) (-85.36999500000002 65.83499100000012) (-85.333328 65.83221400000002) (-85.31361399999992 65.83027600000008) (-85.28860500000002 65.82666) (-85.26306199999999 65.82110600000004) (-85.21362299999998 65.80802900000003) (-85.20278899999994 65.80358899999999) (-85.18582200000003 65.79470800000007) (-85.1625059999999 65.78137200000009) (-85.15638699999994 65.77665700000006) (-85.04916400000002 65.621643) (-85.04777499999994 65.61692800000014) (-85.04861499999998 65.6119230000001) (-85.05166600000001 65.60693400000014) (-85.06750499999993 65.59637500000008) (-85.08805799999999 65.58554100000003) (-85.12027 65.574997) (-85.14222699999993 65.56999200000013) (-85.17582700000003 65.56330900000012) (-85.23222399999992 65.55470300000002) (-85.24360699999994 65.55386400000009) (-85.26777600000003 65.555542) (-85.28056300000003 65.55802900000009) (-85.29194599999988 65.55720500000012) (-85.30249000000003 65.55276500000008) (-85.30777 65.54776000000004) (-85.31111099999993 65.54247999999995) (-85.311935 65.53776600000003) (-85.308044 65.533051) (-85.29583699999995 65.52388000000002) (-85.271118 65.51165800000007) (-85.24082900000002 65.49832200000009) (-85.20417800000001 65.48580900000002) (-85.16555799999998 65.47499100000005) (-85.12777699999992 65.46609500000011) (-85.08860800000002 65.45359799999994) (-85.04360999999994 65.43637100000012) (-85.02694699999995 65.42747500000002) (-85.015015 65.41831999999994) (-85.01112399999994 65.41360500000008) (-85.00279199999994 65.40138200000007) (-85.00140399999992 65.39665200000002) (-85.00500499999998 65.37692300000009) (-85.01167299999997 65.35220300000003) (-84.93055700000002 65.21415700000006) (-84.924713 65.20971700000001) (-84.912216 65.2063750000001) (-84.90028399999994 65.2061000000001) (-84.83250399999997 65.2124940000001) (-84.82139599999988 65.21388200000001) (-84.810272 65.216385) (-84.80027799999999 65.22164900000001) (-84.79249600000003 65.22692900000004) (-84.74804699999999 65.29275500000006) (-84.74694799999997 65.29748500000005) (-84.7497249999999 65.30720499999995) (-84.75500499999987 65.31666600000011) (-84.76222199999995 65.326096) (-84.761124 65.33109999999999) (-84.75805699999995 65.33610500000003) (-84.75472999999994 65.34109500000005) (-84.745834 65.35137900000007) (-84.74027999999998 65.35636899999997) (-84.59583999999995 65.47554000000002) (-84.58555599999994 65.48109399999998) (-84.573624 65.48165900000004) (-84.56193499999995 65.48109399999998) (-84.54943799999995 65.47886699999998) (-84.44027699999992 65.45665000000008) (-84.43222000000003 65.45332300000013) (-84.42639200000002 65.44859300000007) (-84.424713 65.44386300000008) (-84.42582699999997 65.438873) (-84.314438 65.38165300000014) (-84.291946 65.37692300000009) (-84.16139199999992 65.34193400000004) (-84.15110799999991 65.338593) (-84.14750700000002 65.33387800000014) (-84.15306099999992 65.32859800000006) (-84.19415300000003 65.29748500000005) (-84.20195000000001 65.29220600000008) (-84.22083999999995 65.28471399999995) (-84.228882 65.2794340000001) (-84.23083499999996 65.26944000000009) (-84.22972099999998 65.26470899999998) (-84.141388 65.21998600000006) (-84.08833300000003 65.20387300000004) (-83.89999399999999 65.16554300000007) (-83.87609899999995 65.16276600000003) (-83.85278299999993 65.161652) (-83.66694599999994 65.16081199999996) (-83.62054399999994 65.16081199999996) (-83.54028299999993 65.16415400000011) (-83.52806099999998 65.16192599999994) (-83.408615 65.1355440000001) (-83.38806199999993 65.12664799999993) (-83.37887599999999 65.11720300000007) (-83.33805799999999 65.07470700000005) (-83.33473200000003 65.06999200000001) (-83.33583099999993 65.06498699999997) (-83.339447 65.0599820000001) (-83.34306300000003 65.04525800000005) (-83.34083599999997 65.03553799999997) (-83.33084099999996 65.02137800000008) (-83.31945799999994 65.0122070000001) (-83.20805399999995 64.94552600000009) (-83.19804399999987 64.9410860000001) (-83.19055200000003 64.93942300000015) (-83.156387 64.93997200000007) (-83.00500499999993 64.91303999999997) (-82.9927669999999 64.90971400000012) (-82.86582899999996 64.87359600000008) (-82.85583499999996 64.86914100000007) (-82.848053 64.86442600000004) (-82.84249899999992 64.85998500000011) (-82.82972699999999 64.84081999999995) (-82.82861300000002 64.83610499999992) (-82.825287 64.8313750000001) (-82.81639099999995 64.82193000000001) (-82.80027799999999 64.80886800000002) (-82.77000399999997 64.79553200000004) (-82.75778200000002 64.79109200000005) (-82.70916699999998 64.77638200000007) (-82.69722000000002 64.77388000000002) (-82.56973299999993 64.76388500000007) (-82.36138899999997 64.76361099999997) (-82.34944200000001 64.76026900000005) (-82.21194499999996 64.71832300000005) (-82.20222499999988 64.71360800000002) (-82.20333900000003 64.70860299999998) (-82.20916699999998 64.70359800000011) (-82.21749899999998 64.69859300000007) (-82.20361299999996 64.684418) (-82.064438 64.64860500000009) (-81.93249500000002 64.58442700000006) (-81.76306199999999 64.50109900000007) (-81.75389099999995 64.48692300000005) (-81.75140399999998 64.47248800000011) (-81.75306699999999 64.35582000000005) (-81.76417499999997 64.34109500000011) (-81.77000399999997 64.33610500000003) (-81.777222 64.326096) (-81.778885 64.32110599999999) (-81.777222 64.31164600000011) (-81.77416999999997 64.30664100000007) (-81.74888599999997 64.27360500000009) (-81.72721899999993 64.258331) (-81.712784 64.25000000000011) (-81.702789 64.2452550000001) (-81.66972399999997 64.2327580000001) (-81.646118 64.22554000000008) (-81.62249800000001 64.21666000000005) (-81.61305199999998 64.21220399999993) (-81.60028099999994 64.20277400000009) (-81.59445199999993 64.19331399999999) (-81.59083599999997 64.18359400000008) (-81.58999599999993 64.17886400000009) (-81.60249299999998 64.129974) (-81.61082499999998 64.125809) (-81.71777299999997 64.09942600000005) (-81.758621 64.08943200000004) (-81.76916499999993 64.08804300000003) (-81.82444799999996 64.08638000000008) (-81.87916599999994 64.08082600000012) (-81.95584099999996 64.0619200000001) (-81.96417199999996 64.0577550000001) (-81.97000099999997 64.05276500000002) (-81.97361799999993 64.04775999999998) (-81.99916099999996 64.00332600000002) (-81.99638400000003 63.998604000000114) (-81.98693800000001 63.994155999999975) (-81.97500599999995 63.99054699999999) (-81.96389799999997 63.98888400000004) (-81.95249899999993 63.98832700000014) (-81.93055699999996 63.98804500000006) (-81.89750700000002 63.98999000000009) (-81.87582399999991 63.991661000000136) (-81.56082200000003 64.02943399999998) (-81.44027699999998 64.06776400000007) (-81.38362099999995 64.09054600000002) (-81.28778099999988 64.08027600000008) (-81.27639799999997 64.07748399999997) (-81.27000399999991 64.072495) (-81.26417499999997 64.06275900000003) (-81.256958 64.059143) (-81.245544 64.05554200000012) (-80.96472199999994 63.99193600000012) (-80.94248999999996 63.99054699999999) (-80.931671 63.99193600000012) (-80.920837 63.99499500000013) (-80.91027799999989 63.999161000000015) (-80.90666199999993 64.00416600000005) (-80.90333599999997 64.01388500000007) (-80.90916399999998 64.02331500000014) (-80.91416899999996 64.02804600000007) (-80.92582699999997 64.03276100000011) (-80.94860799999998 64.03887900000007) (-80.96749899999992 64.04803499999997) (-80.972778 64.05276500000002) (-80.97555499999999 64.0577550000001) (-80.97389199999998 64.0624850000001) (-80.93582199999997 64.11192300000005) (-80.89083899999997 64.11554000000001) (-80.81221 64.09109499999994) (-80.77749599999987 64.0794370000001) (-80.73472600000002 64.0541530000001) (-80.56610099999995 63.994155999999975) (-80.54333500000001 63.98777000000007) (-80.531677 63.983330000000024) (-80.52250700000002 63.97860000000003) (-80.51750199999998 63.973877000000016) (-80.48832700000003 63.91054500000001) (-80.49221799999998 63.90554800000007) (-80.50306699999999 63.90248900000012) (-80.56750499999993 63.88943500000005) (-80.45306399999993 63.85943600000002) (-80.36305199999993 63.841102999999976) (-80.21722399999999 63.80998999999997) (-80.194481 63.804474000000084) (-80.18998699999997 63.799995000000024) (-80.17471299999988 63.780823) (-80.17222599999997 63.77610000000004) (-80.17166099999997 63.771102999999925) (-80.17887899999988 63.75666000000007) (-80.18499800000001 63.75166300000012) (-80.19583099999988 63.748604) (-80.34695399999998 63.72804299999996) (-80.35777299999995 63.728600000000085) (-80.36915599999998 63.73333000000008) (-80.38027999999997 63.73499300000003) (-80.39138799999995 63.73499300000003) (-80.402222 63.73471799999999) (-80.43443300000001 63.731102000000135) (-80.45417800000001 63.72776799999997) (-80.485275 63.71554600000002) (-80.493607 63.710274000000084) (-80.50473 63.69082600000013) (-80.506393 63.685822000000144) (-80.51000999999997 63.68110700000011) (-80.52194199999991 63.67110400000007) (-80.587784 63.635826000000066) (-80.60888699999998 63.628326000000015) (-80.77444500000001 63.57332600000012) (-80.912216 63.526381999999955) (-80.92250100000001 63.52137800000003) (-80.93055700000002 63.51610600000009) (-80.93638599999991 63.51110800000009) (-80.93804899999986 63.50638600000002) (-80.9375 63.501389000000074) (-80.93443300000001 63.49665800000014) (-80.93055700000002 63.482208000000014) (-80.93028299999997 63.47748600000011) (-80.9375 63.46749100000005) (-80.95805399999995 63.45832800000005) (-80.968613 63.455269000000044) (-80.989441 63.450829000000056) (-81.011124 63.44915800000001) (-81.03277599999996 63.44860100000011) (-81.05444299999999 63.44915800000001) (-81.07640100000003 63.451385000000016) (-81.11000099999995 63.45832800000005) (-81.38612399999994 63.526381999999955) (-81.69415300000003 63.607498000000135) (-81.73416099999997 63.62554900000009) (-81.75723299999999 63.63472000000007) (-81.76889 63.63804600000009) (-81.77999899999998 63.63971700000013) (-81.80194099999994 63.64110599999998) (-81.823624 63.639435000000105) (-81.85527000000002 63.63249200000007) (-81.87666299999995 63.62999000000002) (-81.88751200000002 63.62943300000012) (-81.90972899999991 63.631935) (-81.99527 63.66110200000014) (-82.01167299999986 63.667213000000004) (-82.02639799999997 63.676383999999985) (-82.03138699999994 63.68110700000011) (-82.04110700000001 63.685822000000144) (-82.05249000000003 63.68915600000014) (-82.06361400000003 63.69082600000013) (-82.10777299999995 63.69221499999992) (-82.12943999999999 63.69165800000002) (-82.21417200000002 63.68776699999995) (-82.22471599999989 63.68637799999999) (-82.285553 63.67804700000005) (-82.29611199999994 63.67471300000011) (-82.29943799999995 63.669715999999994) (-82.29888900000003 63.66499299999998) (-82.30221599999999 63.65998799999994) (-82.30776999999995 63.65499100000005) (-82.31834400000002 63.65165700000006) (-82.32888799999995 63.65026899999998) (-82.33999599999987 63.65082600000005) (-82.35139500000002 63.65332000000001) (-82.47222899999991 63.68027500000005) (-82.48388699999998 63.68471500000004) (-82.4911039999999 63.68915600000014) (-82.535278 63.72637899999995) (-82.54583699999995 63.7355500000001) (-82.54972800000002 63.745270000000005) (-82.55082700000003 63.75000000000006) (-82.54695100000004 63.76471700000002) (-82.54333499999996 63.769714000000135) (-82.53222699999998 63.77999100000011) (-82.51445000000001 63.79027600000006) (-82.504456 63.795547000000056) (-82.48416099999997 63.804993000000024) (-82.47361799999993 63.80832700000002) (-82.43194599999998 63.82027399999998) (-82.420837 63.820831000000055) (-82.40972899999997 63.81916000000001) (-82.39805599999988 63.815826000000015) (-82.38667299999997 63.814156000000025) (-82.37638900000002 63.81749700000006) (-82.372772 63.82249500000006) (-82.35388199999994 63.852219000000105) (-82.35139500000002 63.861938000000066) (-82.35833699999995 63.90054300000003) (-82.36138899999997 63.90526599999998) (-82.36888099999999 63.90998800000011) (-82.37832599999996 63.91443600000008) (-82.41389499999997 63.926941) (-82.52583300000003 63.96610300000003) (-82.54888899999997 63.96915400000006) (-82.82861300000002 63.979431000000034) (-82.96722399999999 63.96554600000013) (-82.97805800000003 63.96305100000012) (-83.06416299999995 63.95193499999999) (-83.08694499999996 63.95499400000011) (-83.09889199999992 63.959160000000054) (-83.12388599999997 63.97276300000004) (-83.12916599999994 63.977486000000056) (-83.14527900000002 64.00109900000012) (-83.139725 64.006104) (-83.09555099999989 64.02832000000001) (-83.029449 64.0747070000001) (-83.01611300000002 64.08499100000012) (-82.99694799999997 64.10026600000009) (-82.98028599999998 64.11554000000001) (-82.97084000000001 64.12553400000002) (-82.9619449999999 64.13581800000003) (-82.960556 64.14054899999996) (-82.96166999999997 64.1455380000001) (-82.964722 64.15026900000004) (-83.00834699999996 64.18748499999998) (-83.01972999999998 64.18887300000006) (-83.07278399999996 64.18664600000005) (-83.10526999999996 64.18165599999998) (-83.12638899999996 64.17581199999995) (-83.15722700000003 64.16304000000014) (-83.339447 64.13472000000013) (-83.48832700000003 64.12248200000005) (-83.51972999999998 64.11442599999998) (-83.53028899999993 64.11109900000008) (-83.54834 64.10247800000013) (-83.67332499999998 64.01721200000003) (-83.68222000000003 64.00721700000008) (-83.68331899999998 64.00221299999993) (-83.67666600000001 63.99276699999996) (-83.66583300000002 63.98360399999996) (-83.64250199999998 63.96998600000012) (-83.62609900000001 63.95609999999999) (-83.608612 63.93749200000008) (-83.60555999999997 63.932770000000005) (-83.60417199999995 63.92804700000005) (-83.5958399999999 63.825829000000056) (-83.59666400000003 63.820831000000055) (-83.62304699999993 63.78166199999998) (-83.63194299999986 63.77166) (-83.63722200000001 63.76638800000006) (-83.64750700000002 63.763054000000125) (-83.65861499999994 63.763611000000026) (-83.67027299999995 63.76693700000004) (-83.69444299999998 63.77582600000011) (-83.718613 63.77999100000011) (-83.74055499999997 63.77999100000011) (-83.75083899999998 63.776657000000114) (-83.82417299999997 63.74749000000003) (-84.00723299999999 63.66805300000004) (-84.01278699999989 63.662765999999976) (-84.02111799999994 63.65277100000003) (-84.02749599999993 63.642769000000044) (-84.05027799999993 63.62693800000011) (-84.069458 63.61638600000009) (-84.079453 63.61193800000012) (-84.089447 63.60777300000012) (-84.09973100000002 63.60527000000013) (-84.11000099999995 63.60360700000007) (-84.12138399999998 63.60416399999997) (-84.132767 63.60665899999998) (-84.14472999999992 63.610825000000034) (-84.162216 63.61971300000005) (-84.17416400000002 63.62304700000004) (-84.19638099999992 63.62499200000002) (-84.261124 63.62082700000002) (-84.28611799999999 63.615546999999935) (-84.38806199999999 63.55915800000008) (-84.39527900000002 63.55387900000011) (-84.40055799999999 63.548607000000004) (-84.44638099999997 63.488045) (-84.44943199999989 63.483047) (-84.45222499999994 63.47248800000011) (-84.44722000000002 63.45332300000001) (-84.44915799999995 63.44360399999999) (-84.47749299999998 63.3836060000001) (-84.56332399999997 63.33749400000005) (-84.754456 63.26416000000006) (-84.77417000000003 63.25721700000008) (-84.79388399999999 63.25027499999999) (-84.823059 63.23721300000011) (-84.841949 63.22721100000001) (-84.870834 63.214157000000114) (-84.89056399999998 63.20721400000008) (-85.14334100000002 63.13999200000006) (-85.22416699999997 63.12082700000013) (-85.24499500000002 63.11859899999996) (-85.26640299999997 63.11749300000014) (-85.28805499999999 63.11832400000014) (-85.34333800000002 63.12276500000007) (-85.37582399999991 63.123877999999934) (-85.39695699999993 63.12276500000007) (-85.44915800000001 63.11666100000002) (-85.48222399999997 63.11859899999996) (-85.49333199999995 63.119987000000094) (-85.50500499999998 63.12304699999993) (-85.53639199999992 63.134995) (-85.54388399999993 63.138329) (-85.57778899999994 63.16554300000013) (-85.58917199999996 63.174713) (-85.59249899999998 63.17943600000001) (-85.63806199999993 63.244995000000074) (-85.63917500000002 63.24971800000009) (-85.64834599999995 63.33554799999996) (-85.65388499999995 63.408882000000006) (-85.65083300000003 63.42860400000001) (-85.644455 63.44360399999999) (-85.63583399999999 63.45860300000004) (-85.6260989999999 63.46888000000001) (-85.61805700000002 63.4791560000001) (-85.60722399999986 63.494438000000116) (-85.60499599999997 63.50916300000006) (-85.59111000000001 63.617493000000024) (-85.59333799999996 63.631935) (-85.59611499999994 63.64138000000008) (-85.60749799999996 63.665268000000026) (-85.61332699999997 63.669715999999994) (-85.71749899999998 63.71610300000009) (-85.87943999999999 63.704711999999915) (-85.98582499999992 63.69332099999997) (-86.01722699999993 63.68832400000008) (-86.18360899999993 63.653046000000074) (-86.22444199999995 63.642769000000044) (-86.24499500000002 63.639435000000105) (-86.26695299999994 63.63804600000009) (-86.30027799999993 63.63971700000013) (-86.346115 63.64554600000014) (-86.38137799999998 63.65221400000013) (-86.45028699999989 63.66054500000001) (-86.55277999999987 63.670273000000066) (-86.56361400000003 63.670547) (-86.59611499999994 63.66860200000002) (-86.626938 63.66165900000004) (-86.66639700000002 63.64833100000004) (-86.69444299999992 63.63360600000004) (-86.73388699999998 63.60665899999998) (-86.75917099999998 63.59027100000009) (-86.77806099999992 63.581108000000086) (-86.80749500000002 63.571380999999974) (-86.837784 63.563323999999966) (-86.847778 63.56082200000009) (-86.879166 63.55554999999998) (-86.92222599999997 63.55277300000006) (-87.05055199999998 63.54972099999998) (-87.083618 63.550270000000125) (-87.09527599999996 63.5513840000001) (-87.118607 63.55582400000009) (-87.141388 63.563881000000094) (-87.14973399999991 63.56832900000006) (-87.18804899999986 63.589989) (-87.21722399999999 63.6222150000001) (-87.222778 63.63166000000001) (-87.22639499999997 63.64110599999998) (-87.225281 63.651099999999985) (-87.22193900000002 63.6658250000001) (-87.21888699999994 63.67582700000008) (-87.21083099999998 63.69110099999995) (-87.20083599999987 63.70665700000012) (-87.18666100000002 63.72221399999995) (-87.16111799999993 63.743607000000054) (-86.94387799999993 63.90054300000003) (-86.93443299999996 63.906097000000045) (-86.91528299999999 63.91443600000008) (-86.87582399999997 63.92860400000012) (-86.78416399999998 63.95694000000003) (-86.76362599999999 63.962212000000136) (-86.700287 63.97221400000012) (-86.66860999999989 63.978324999999984) (-86.5038909999999 64.018326) (-86.41361999999998 64.04859899999997) (-86.25500499999993 64.07609600000006) (-86.233612 64.0794370000001) (-86.22332799999998 64.08194000000009) (-86.21333300000003 64.08554100000015) (-86.203888 64.09109499999994) (-86.18943799999988 64.101654) (-86.17832899999996 64.12191800000011) (-86.178879 64.13165300000003) (-86.18222000000003 64.1413730000001) (-86.212219 64.17858900000004) (-86.25306699999999 64.20054600000009) (-86.27389499999998 64.20887800000008) (-86.30055199999998 64.22192400000006) (-86.30888400000003 64.22637900000007) (-86.3125 64.23082) (-86.35472099999998 64.28997800000013) (-86.38417099999998 64.36442599999998) (-86.40167200000002 64.436646) (-86.40110799999997 64.44164999999992) (-86.38362099999995 64.56498700000009) (-86.36888099999999 64.62942499999997) (-86.31555200000003 64.70109600000006) (-86.27250699999996 64.76805100000001) (-86.24888599999997 64.79386899999992) (-86.23889199999996 64.80415299999999) (-86.23138399999993 64.80941800000005) (-86.221115 64.81303400000007) (-86.21028099999995 64.81469700000002) (-86.19860799999992 64.81442300000009) (-86.18721 64.81526200000002) (-86.17666599999995 64.81776400000012) (-86.17166099999992 64.82304399999998) (-86.15249599999993 64.91804500000006) (-86.151947 64.92303500000008) (-86.15333599999991 64.92776500000014) (-86.15722699999998 64.93248) (-86.181107 64.95555100000001) (-86.18721 64.959991) (-86.21250900000001 64.96638500000006) (-86.22084000000001 64.97053500000004) (-86.22639499999997 64.97998000000013) (-86.22778299999999 64.98387100000002) (-86.22582999999997 64.99859600000013) (-86.22500600000001 65.003601) (-86.212219 65.03387500000008) (-86.20638999999989 65.04386900000009) (-86.19833399999999 65.0541530000001) (-86.18998699999992 65.06442300000003) (-86.18472300000002 65.06971700000003) (-86.16528299999993 65.08055100000007) (-86.14472999999998 65.08859300000006) (-86.13833599999992 65.09443700000003) (-86.13806199999999 65.099426) (-86.13555899999994 65.1827550000001) (-86.13722199999995 65.19775399999997) (-86.141953 65.2122040000001) (-86.146118 65.21666000000005) (-86.15139799999997 65.22637900000001) (-86.16416899999996 65.25000000000011) (-86.17054699999994 65.26915000000008) (-86.17166099999992 65.27886999999998) (-86.15333599999991 65.38472000000007) (-86.14973399999997 65.39471400000008) (-86.11193799999995 65.49414100000001) (-86.09777799999995 65.5291600000001) (-86.01390099999998 65.70915200000007) (-86.01000999999991 65.7149960000001) (-85.99388099999999 65.730545) (-85.98277300000001 65.74081400000006) (-85.97528099999988 65.74609400000008) (-85.88833599999998 65.79998799999993) (-85.83250399999991 65.83248900000007) (-85.791382 65.85331700000012) (-85.770554 65.86219800000003) (-85.72833300000002 65.87942500000008) (-85.69665499999991 65.89193700000004) (-85.62110899999993 65.91748000000001) (-85.56527699999998 65.93026700000001) (-85.54249600000003 65.9333190000001) (-85.50666799999999 65.93441800000005) (-85.49388099999999 65.93220500000012) (-85.49101300000001 65.93106099999994) (-85.48277300000001 65.92776500000008) (-85.476944 65.92330900000002) (-85.46888699999994 65.91387900000012) (-85.46972699999998 65.90887499999997) (-85.47389199999998 65.89888000000008) (-85.48889200000002 65.8785860000001) (-85.511124 65.85775800000005) (-85.520554 65.84275800000006) (-85.52362099999999 65.82304399999998) (-85.520554 65.81330900000006) (-85.516663 65.80859400000003) (-85.510559 65.80415299999993) (-85.49333199999995 65.7952580000001) (-85.48055999999997 65.79193099999998)) ((-62.13666499999994 65.85137900000001) (-62.141669999999976 65.84971600000006) (-62.15444200000002 65.85081500000007) (-62.162216 65.8541560000001) (-62.210830999999985 65.88053900000006) (-62.29695099999998 65.92776500000008) (-62.29666900000001 65.93858300000005) (-62.281386999999995 65.94636500000001) (-62.26500699999997 65.94693000000007) (-62.230552999999986 65.94386299999996) (-62.167220999999984 65.93275499999999) (-62.13777900000002 65.92581199999995) (-62.139725 65.91304000000014) (-62.118607 65.88108799999998) (-62.12999699999989 65.85914600000012) (-62.13666499999994 65.85137900000001)) ((-67.13833599999998 65.92692599999998) (-67.14584400000001 65.92637600000012) (-67.15444899999994 65.92886400000009) (-67.16111799999999 65.93220500000012) (-67.18527199999994 65.94831799999997) (-67.20916699999992 65.97886700000004) (-67.21194500000001 65.9827580000001) (-67.20889299999999 65.98442100000005) (-67.19915800000001 65.98637399999996) (-67.18138099999987 65.98719800000009) (-67.16694599999994 65.984985) (-67.153885 65.97859199999999) (-67.15278599999999 65.97499099999999) (-67.15260299999989 65.970734) (-67.13444500000003 65.93304400000005) (-67.13473499999992 65.93026700000001) (-67.13833599999998 65.92692599999998)) ((-83.57695000000001 65.98304700000006) (-83.58860799999997 65.98165899999992) (-83.60082999999986 65.98332200000004) (-83.604446 65.98776200000009) (-83.60082999999986 65.99304200000012) (-83.58889799999997 66.00305200000003) (-83.57000700000003 66.01361100000008) (-83.54750099999995 66.01944000000009) (-83.51139799999999 66.01998900000007) (-83.49888599999991 66.01748699999996) (-83.49305699999996 66.01277199999993) (-83.50140399999998 66.00749200000007) (-83.51000999999997 66.00332599999996) (-83.55444299999994 65.98887600000006) (-83.57695000000001 65.98304700000006)) ((-84.72277799999995 65.54609700000009) (-84.73388699999998 65.54470800000013) (-84.74610899999993 65.5458220000001) (-84.78472899999997 65.55664099999996) (-84.803604 65.56553600000001) (-84.82861299999996 65.57887300000004) (-84.84083599999997 65.58804300000008) (-84.84805299999988 65.597488) (-84.85333300000002 65.60693400000014) (-84.85221899999993 65.6119230000001) (-84.85777299999995 65.645828) (-84.85888699999992 65.65081800000007) (-84.86639399999996 65.65998800000011) (-84.878601 65.66914400000007) (-84.90028399999994 65.67804000000001) (-85.02860999999996 65.71165500000006) (-85.06304899999992 65.72331200000002) (-85.07389799999999 65.72776800000008) (-85.08222999999998 65.73220800000013) (-85.10694899999993 65.75054899999992) (-85.11805700000002 65.76470900000004) (-85.18194599999998 65.94552600000009) (-85.17304999999993 65.99470500000007) (-85.14388999999994 66.02110300000004) (-85.13722200000001 66.02331500000008) (-85.08167999999995 66.026657) (-85.05749500000002 66.02609300000006) (-84.9375 66.01054399999998) (-84.924713 66.00804099999999) (-84.91027799999989 66.00000000000011) (-84.88722199999995 65.94552600000009) (-84.88333099999988 65.94081100000005) (-84.80777 65.89582800000011) (-84.75500499999987 65.85331700000012) (-84.71611000000001 65.81721500000015) (-84.71417199999996 65.80720500000007) (-84.71278399999994 65.80220000000003) (-84.70777900000002 65.79275500000011) (-84.63722200000001 65.71220399999999) (-84.59750399999996 65.69664000000012) (-84.58667000000003 65.69220000000007) (-84.57417299999992 65.63916) (-84.57611099999997 65.6291500000001) (-84.58500699999996 65.61914100000007) (-84.59861799999993 65.60859700000003) (-84.66776999999996 65.56053200000002) (-84.72277799999995 65.54609700000009)) ((-83.608612 66.04414400000007) (-83.64222699999999 66.03498800000011) (-83.652222 66.03665200000012) (-83.6536099999999 66.04136699999998) (-83.64750700000002 66.04664600000012) (-83.64416499999999 66.05165099999999) (-83.62609900000001 66.0669400000001) (-83.61805699999996 66.07222000000013) (-83.60722399999997 66.07748400000014) (-83.597778 66.0788730000001) (-83.583618 66.07054099999993) (-83.577789 66.06581100000011) (-83.57084700000001 66.05636600000003) (-83.57444799999996 66.051376) (-83.58555599999994 66.04803500000014) (-83.59722899999997 66.04664600000012) (-83.608612 66.04414400000007)) ((-85.01916499999999 66.05720500000001) (-85.13555899999994 66.04443400000008) (-85.14778100000001 66.04582199999999) (-85.14917000000003 66.05053700000002) (-85.10777300000001 66.08442700000012) (-85.09973100000002 66.08970600000009) (-85.06332399999997 66.08776900000004) (-85.03860499999996 66.08610500000003) (-85.0161129999999 66.07971200000009) (-85.00862099999995 66.07054099999993) (-85.00695799999994 66.06553600000007) (-85.01028399999996 66.06053199999997) (-85.01916499999999 66.05720500000001)) ((-83.6494449999999 66.08360299999998) (-83.66111799999999 66.08194000000003) (-83.67361499999998 66.08332799999994) (-83.69249000000002 66.0913700000001) (-83.69610599999999 66.09609999999998) (-83.68998699999997 66.11109900000002) (-83.68527199999994 66.12109399999991) (-83.678879 66.12525900000014) (-83.60665899999998 66.12414600000005) (-83.59388699999994 66.12164300000006) (-83.587784 66.11720300000007) (-83.5916749999999 66.11219799999998) (-83.604446 66.10582000000005) (-83.61054999999993 66.10165399999994) (-83.63806199999999 66.086929) (-83.6494449999999 66.08360299999998)) ((-83.92138699999998 66.00972000000002) (-83.73083499999996 65.94775400000003) (-83.70584099999996 65.93414300000006) (-83.69415299999997 65.92469799999998) (-83.68331899999998 65.91053800000009) (-83.68083200000001 65.901093) (-83.68916300000001 65.86665300000004) (-83.69972199999995 65.85137900000001) (-83.71389799999997 65.84109499999994) (-83.72471599999994 65.83692900000005) (-83.73582499999992 65.83360300000004) (-83.72749299999992 65.79971300000011) (-83.52500899999995 65.73776199999992) (-83.36000100000001 65.72747800000008) (-83.348053 65.72692899999998) (-83.25111400000003 65.71693400000004) (-83.226944 65.71415700000011) (-83.214447 65.71054100000009) (-83.21083099999987 65.70582600000006) (-83.25111400000003 65.65470900000014) (-83.25944500000003 65.64942900000005) (-83.28889499999997 65.63275099999998) (-83.29972799999996 65.62942499999997) (-83.31111099999998 65.62719699999997) (-83.34500099999997 65.62081900000004) (-83.379166 65.61554000000007) (-83.39138799999995 65.61720300000013) (-83.39917000000003 65.62081900000004) (-83.406113 65.63026400000007) (-83.41194200000001 65.63472000000002) (-83.41999800000002 65.63943500000005) (-83.43055700000002 65.64387500000004) (-83.44332899999995 65.64804100000015) (-83.46861299999995 65.65498400000013) (-83.49305699999996 65.65776100000005) (-83.50500499999993 65.65832499999999) (-83.52861000000001 65.65832499999999) (-83.59889199999998 65.65637200000003) (-83.66027799999995 65.64721700000001) (-83.82972699999999 65.64498900000001) (-83.84277299999991 65.64915500000012) (-83.84611499999994 65.65386999999998) (-83.84973100000002 65.66832000000011) (-83.84638999999999 65.67330900000007) (-83.84056099999987 65.6785890000001) (-83.79415899999998 65.71943700000003) (-83.78582799999998 65.72470099999998) (-83.77500900000001 65.72804300000013) (-83.74082899999996 65.7333220000001) (-83.69526699999994 65.74108900000004) (-83.68415800000002 65.74443100000002) (-83.68276999999995 65.74941999999999) (-83.68888899999996 65.75416600000005) (-83.785278 65.78887900000007) (-83.79750100000001 65.7894290000001) (-83.80888399999998 65.78804000000008) (-83.84973100000002 65.78054800000012) (-83.90583799999996 65.76748700000002) (-83.92749000000003 65.75972000000007) (-83.93804899999998 65.74443100000002) (-83.94860799999992 65.74026500000008) (-83.96000700000002 65.73776199999992) (-83.97166400000003 65.73719800000015) (-83.98388699999992 65.73858600000005) (-84.071121 65.75) (-84.12054399999994 65.75833100000006) (-84.13333099999994 65.76081799999997) (-84.14361599999995 65.76416000000006) (-84.14500399999997 65.76914999999997) (-84.141388 65.77415500000001) (-84.11721799999998 65.78970300000003) (-84.11138899999997 65.79498300000006) (-84.10333300000002 65.80998199999993) (-84.10110500000002 65.81971700000003) (-84.12361099999993 65.90026900000004) (-84.189438 65.968323) (-84.19804399999992 65.97303800000003) (-84.20861799999989 65.97720300000003) (-84.28639199999998 65.999146) (-84.29943800000001 66.00248700000003) (-84.31138599999997 66.00305200000003) (-84.32333399999999 66.00248700000003) (-84.358047 65.99775699999998) (-84.36999500000002 65.99720800000006) (-84.38276699999994 66.00054900000009) (-84.42416399999996 66.02804600000002) (-84.43611099999993 66.0372010000001) (-84.464447 66.06025700000009) (-84.46806299999997 66.06498699999997) (-84.46916199999998 66.06999200000001) (-84.47000100000002 66.08943199999999) (-84.471115 66.12831100000005) (-84.47027599999996 66.13333100000011) (-84.464447 66.13832100000013) (-84.45584100000002 66.14166300000005) (-84.43306000000001 66.13888500000007) (-84.381104 66.12914999999998) (-84.36805699999991 66.12580899999995) (-84.24027999999993 66.0983280000001) (-84.14639299999988 66.08109999999999) (-84.03944399999995 66.07693499999999) (-84.00167799999997 66.03360000000004) (-83.92138699999998 66.00972000000002)) ((-84.57972699999999 66.14137300000004) (-84.62748699999992 66.13916000000012) (-84.63999899999999 66.14054900000008) (-84.648346 66.14498900000012) (-84.654449 66.14942900000011) (-84.67582700000003 66.17303500000003) (-84.678604 66.18248000000006) (-84.66722099999993 66.18498199999999) (-84.61888099999999 66.17665100000005) (-84.59333799999996 66.17109700000009) (-84.589447 66.16638200000006) (-84.57444800000002 66.147491) (-84.57972699999999 66.14137300000004)) ((-84.265289 66.17776500000002) (-84.276947 66.17526200000009) (-84.28916900000002 66.17553700000008) (-84.30139199999996 66.1769260000001) (-84.31388900000002 66.17942800000014) (-84.35333300000002 66.19026200000002) (-84.36193799999995 66.19470200000006) (-84.36444099999994 66.20443699999993) (-84.36361699999998 66.209427) (-84.36000100000001 66.21443200000004) (-84.348343 66.21582000000012) (-84.33583099999998 66.21443200000004) (-84.30972300000002 66.20776400000005) (-84.29916400000002 66.20332299999995) (-84.27305599999994 66.19664) (-84.26445000000001 66.19219999999996) (-84.25834700000001 66.18775900000009) (-84.256958 66.1827550000001) (-84.265289 66.17776500000002)) ((-62.183883999999864 66.23719800000009) (-62.199164999999994 66.21693399999992) (-62.40499899999986 66.21859700000005) (-62.415276000000006 66.21914700000008) (-62.42166899999995 66.22221400000001) (-62.42999999999995 66.2291560000001) (-62.4266659999999 66.233047) (-62.419167000000016 66.23776200000003) (-62.31945000000002 66.26944000000003) (-62.301941 66.27499400000005) (-62.287223999999924 66.27804600000013) (-62.278336000000024 66.27970900000008) (-62.26167299999997 66.28027300000002) (-62.24888599999997 66.27859500000011) (-62.24305700000002 66.27693199999999) (-62.231383999999935 66.26944000000003) (-62.183883999999864 66.23719800000009)) ((-83.06722999999988 66.25555400000007) (-83.05499299999991 66.25499000000013) (-83.04305999999997 66.25526400000007) (-83.031113 66.25665300000003) (-83.019455 66.25915500000013) (-82.99694799999997 66.26582300000007) (-82.96083099999998 66.27249100000006) (-82.93720999999994 66.27526900000004) (-82.91332999999986 66.276093) (-82.90249599999999 66.27165200000013) (-82.90417500000001 66.26666299999994) (-82.910278 66.26165800000007) (-82.91861 66.25749200000001) (-82.92971799999998 66.25221300000004) (-82.93554699999993 66.25138900000007) (-82.99027999999998 66.203598) (-82.99638400000003 66.19859300000013) (-83.00778200000002 66.19525099999998) (-83.01972999999998 66.19497700000005) (-83.08029199999999 66.19664) (-83.09306299999997 66.19886800000012) (-83.26333599999998 66.247208) (-83.287216 66.25610400000011) (-83.29333500000001 66.2605440000001) (-83.29666099999997 66.26527399999998) (-83.297775 66.270264) (-83.29833999999988 66.31387300000011) (-83.28500400000001 66.32916300000011) (-83.273056 66.3394320000001) (-83.26417500000002 66.3435970000001) (-83.252228 66.34498600000012) (-83.226944 66.33998100000008) (-83.21611000000001 66.33554100000003) (-83.20472699999993 66.31666600000011) (-83.17388900000003 66.28858900000012) (-83.16805999999991 66.28387499999997) (-83.06722999999988 66.25555400000007)) ((-66.62332200000003 66.28082300000005) (-66.64195299999994 66.27943400000004) (-66.65695199999993 66.28027300000002) (-66.66749599999997 66.282761) (-66.678879 66.286926) (-66.70140099999998 66.29776000000004) (-66.74194299999988 66.3163760000001) (-66.84306300000003 66.36248799999998) (-66.9058379999999 66.37664800000005) (-66.91610700000001 66.37997400000012) (-66.94471699999997 66.39498900000007) (-66.95611599999995 66.40193200000004) (-66.95861799999994 66.40637200000009) (-66.95834400000001 66.41192600000005) (-66.95527600000003 66.41360500000008) (-66.94444299999992 66.41387900000001) (-66.85194399999995 66.40220599999998) (-66.82972699999999 66.39833099999998) (-66.823059 66.39276100000012) (-66.82084699999996 66.38804600000009) (-66.80110199999996 66.37553400000007) (-66.78222700000003 66.36914100000013) (-66.726944 66.35498000000013) (-66.70556599999998 66.34971599999994) (-66.67832900000002 66.34553500000004) (-66.662216 66.3435970000001) (-66.65028399999994 66.34304800000001) (-66.639725 66.34054600000007) (-66.62388599999997 66.33526600000005) (-66.58444199999997 66.3205410000001) (-66.57501200000002 66.31387300000011) (-66.573624 66.31080600000001) (-66.59167500000001 66.29359399999998) (-66.60526999999996 66.28665200000006) (-66.62332200000003 66.28082300000005)) ((-66.99833699999994 66.493042) (-66.99027999999998 66.48915099999994) (-66.97610499999996 66.48915099999994) (-66.96333299999998 66.48719800000003) (-66.87332199999997 66.46859699999999) (-66.86888099999999 66.46443199999999) (-66.87138400000003 66.46054100000009) (-66.87805200000003 66.458328) (-66.93611099999993 66.44552599999997) (-66.94888300000002 66.444702) (-66.987213 66.44525099999993) (-67.03028899999993 66.45248400000014) (-67.03666699999997 66.45609999999999) (-67.03832999999997 66.47248800000006) (-67.03805499999999 66.47804300000013) (-67.035278 66.48471100000012) (-67.02500899999995 66.48997500000013) (-67.00695799999988 66.493042) (-66.99833699999994 66.493042)) ((-107.92304999999993 66.85054000000002) (-107.9349979999999 66.84915200000012) (-107.94611399999991 66.85108900000012) (-107.94554099999993 66.85693400000002) (-107.837784 67.00387599999999) (-107.83029199999993 67.00860600000004) (-107.81696299999993 67.00915500000013) (-107.80666400000001 67.00582900000012) (-107.79499800000002 66.997208) (-107.79110699999995 66.98831200000006) (-107.78971899999999 66.98525999999998) (-107.79055800000003 66.97970599999996) (-107.82389799999999 66.901093) (-107.83000199999992 66.8955380000001) (-107.89499699999999 66.86080900000002) (-107.90360999999996 66.85693400000002) (-107.92304999999993 66.85054000000002)) ((-108.01445000000001 66.89776600000005) (-108.025284 66.8955380000001) (-108.03859699999998 66.89721700000013) (-108.04444899999993 66.90138200000013) (-108.09638999999993 66.96748400000001) (-108.097778 66.97276299999999) (-108.10659799999996 67.02600100000006) (-108.06360599999988 67.00109900000007) (-107.93831599999999 66.94693000000007) (-107.95944199999991 66.93165599999998) (-107.96665999999993 66.9266510000001) (-108.00583599999987 66.90193199999993) (-108.01445000000001 66.89776600000005)) ((-63.059166000000005 66.95776400000011) (-63.083327999999995 66.95498700000002) (-63.09555099999994 66.955826) (-63.11694299999999 66.96304300000008) (-63.136391 66.9747010000001) (-63.16305499999993 66.99525500000004) (-63.165549999999996 66.99914599999994) (-63.166106999999954 67.00499000000013) (-63.159163999999976 67.01554900000002) (-63.15416699999997 67.02137800000003) (-63.14444699999996 67.02886999999998) (-63.12749499999995 67.03359999999998) (-63.12305500000002 67.03471399999995) (-63.1108319999999 67.03387500000002) (-63.1016689999999 67.02970900000008) (-63.098052999999936 67.02720599999998) (-63.097778000000005 67.02331500000008) (-63.02111100000002 66.996643) (-63.01167299999997 66.99247700000006) (-63.00389099999995 66.988586) (-62.999999999999886 66.984421) (-62.999442999999985 66.97859199999999) (-63.002228 66.97554000000008) (-63.020835999999974 66.966385) (-63.04000099999996 66.96081500000014) (-63.059166000000005 66.95776400000011)) ((-62.918334999999956 67.00972000000002) (-62.93804899999998 67.00582900000012) (-62.97777599999995 67.00665300000009) (-63.009727 67.009995) (-63.03778099999994 67.01582300000013) (-63.06833599999999 67.02554300000003) (-63.092772999999966 67.03581200000008) (-63.12388599999997 67.04914900000011) (-63.135559 67.05470300000007) (-63.138892999999996 67.05941800000011) (-63.13805400000001 67.06526200000013) (-63.13583399999999 67.06971699999997) (-63.130279999999914 67.07415800000007) (-63.11721799999998 67.0788730000001) (-63.11055799999997 67.08027600000003) (-63.10008199999993 67.07971200000009) (-63.002228 67.06944300000004) (-62.97833300000002 67.06275900000014) (-62.961112999999955 67.05470300000007) (-62.941108999999926 67.04359399999998) (-62.922500999999954 67.03109700000005) (-62.914444 67.02304100000015) (-62.912215999999944 67.01470899999998) (-62.918334999999956 67.00972000000002)) ((-62.64416499999993 67.05748) (-62.64694999999995 67.04998800000004) (-62.65166499999998 67.04693600000013) (-62.75250199999999 67.01054399999998) (-62.764449999999954 67.00915500000013) (-62.782775999999956 67.00943000000001) (-62.81305699999996 67.0169370000001) (-62.832222 67.02442900000005) (-62.899445000000014 67.05831899999998) (-62.89459999999997 67.05911300000008) (-62.865005 67.05748) (-62.82028200000002 67.05581700000005) (-62.81027999999998 67.05693100000002) (-62.80666400000001 67.05914300000012) (-62.70286900000002 67.12868500000008) (-62.652221999999995 67.16609199999999) (-62.64194500000002 67.174149) (-62.631942999999865 67.17692600000004) (-62.547782999999924 67.18609600000013) (-62.533889999999985 67.18719500000009) (-62.42527799999999 67.19108599999998) (-62.41805999999997 67.19081099999994) (-62.37888299999986 67.16970800000007) (-62.37527499999993 67.165817) (-62.376105999999936 67.1644290000001) (-62.38805400000001 67.15748600000006) (-62.44361099999992 67.13581799999997) (-62.45194200000003 67.13275100000004) (-62.47249599999998 67.12608300000005) (-62.50417299999992 67.11943099999996) (-62.538612 67.11387600000006) (-62.56944999999996 67.10582) (-62.58000199999998 67.10220300000009) (-62.59610699999996 67.09220900000003) (-62.631667999999934 67.06999199999996) (-62.63861099999991 67.06387300000011) (-62.64416499999993 67.05748)) ((-107.40778399999999 67.083054) (-107.49054699999999 67.07138099999997) (-107.50639299999995 67.07249500000012) (-107.51750199999987 67.07470699999999) (-107.52778599999999 67.07804899999996) (-107.54972800000002 67.08998100000008) (-107.56500199999999 67.10331700000006) (-107.57444799999996 67.11219800000015) (-107.58389299999988 67.12136800000002) (-107.59110999999996 67.13081399999999) (-107.62917299999992 67.18331900000004) (-107.63054699999992 67.188583) (-107.62970699999988 67.19413800000007) (-107.62666300000001 67.2002720000001) (-107.62053700000001 67.20610000000005) (-107.608337 67.20748900000001) (-107.59777799999995 67.204163) (-107.58168 67.19636500000013) (-107.57584400000002 67.19220000000013) (-107.56194299999987 67.18386800000013) (-107.51000999999991 67.15637200000009) (-107.47778299999993 67.14082300000001) (-107.46193700000003 67.13333100000006) (-107.443604 67.12608300000005) (-107.412781 67.11581400000006) (-107.40055799999993 67.11303700000013) (-107.40778399999999 67.083054)) ((-95.36166399999996 67.19775400000015) (-95.37361099999993 67.19636500000013) (-95.40055799999993 67.197205) (-95.41528299999999 67.1997070000001) (-95.4308319999999 67.20277399999998) (-95.52749599999993 67.22303799999997) (-95.54333499999996 67.22637900000001) (-95.55139200000002 67.23027000000008) (-95.55277999999993 67.2352600000001) (-95.54222099999998 67.23858599999994) (-95.39111299999996 67.26304600000014) (-95.37777699999992 67.26277200000004) (-95.31723 67.25555400000002) (-95.30722000000003 67.25248699999992) (-95.30583200000001 67.24775700000009) (-95.30943299999996 67.24220300000007) (-95.31471299999993 67.23858599999994) (-95.33666999999991 67.2127690000001) (-95.34277299999997 67.20694000000009) (-95.36166399999996 67.19775400000015)) ((-107.66278099999994 67.22026100000005) (-107.675003 67.21887200000003) (-107.73029300000002 67.28997800000008) (-107.73306300000002 67.30026199999992) (-107.73029300000002 67.30636600000014) (-107.72501399999993 67.31303400000013) (-107.71083099999998 67.31915300000014) (-107.67777999999993 67.31191999999999) (-107.66944899999993 67.30802900000009) (-107.66000399999996 67.29887400000001) (-107.64472999999998 67.26915000000002) (-107.64028899999994 67.25360100000012) (-107.63945000000001 67.24275200000005) (-107.64250199999992 67.23664900000011) (-107.64778100000001 67.22998000000001) (-107.65416699999997 67.22442600000005) (-107.66278099999994 67.22026100000005)) ((-63.36639399999996 67.28776600000003) (-63.39611100000002 67.26998899999995) (-63.417778 67.26638800000012) (-63.45610799999997 67.26443499999999) (-63.507506999999976 67.26944000000003) (-63.54194599999994 67.27249100000006) (-63.55972300000002 67.27304100000009) (-63.57833900000003 67.27331500000003) (-63.62027699999993 67.26915000000002) (-63.76361800000001 67.27249100000006) (-63.81361400000003 67.2791600000001) (-63.82972699999988 67.28414900000007) (-63.81944999999996 67.28997800000008) (-63.79666899999995 67.29998799999998) (-63.68833199999989 67.34166000000005) (-63.66666399999997 67.34553500000004) (-63.64611099999996 67.34803800000003) (-63.60555999999997 67.35220300000003) (-63.58583099999987 67.353317) (-63.48500100000001 67.341095) (-63.36916400000001 67.30247500000007) (-63.35777999999999 67.29386899999997) (-63.36639399999996 67.28776600000003)) ((-107.91082799999998 67.31053200000002) (-107.93443300000001 67.30664099999996) (-107.94803599999995 67.3083190000001) (-108.08444199999997 67.38136300000008) (-108.076683 67.42469800000003) (-108.07389799999993 67.4308170000001) (-108.06861899999996 67.43748500000004) (-108.06111099999993 67.44220000000007) (-107.94748700000002 67.47998000000001) (-107.91776999999996 67.48942599999998) (-107.90306099999992 67.4891510000001) (-107.89472999999992 67.48553500000008) (-107.88722200000001 67.47608900000012) (-107.88276699999989 67.46249400000005) (-107.89806399999998 67.31971700000008) (-107.90110799999997 67.31359899999995) (-107.91082799999998 67.31053200000002)) ((-108.36833200000001 67.46720900000008) (-108.38194299999998 67.4666600000001) (-108.39806399999998 67.467758) (-108.43388399999998 67.47665400000011) (-108.44444299999992 67.47998000000001) (-108.45278899999994 67.48387100000008) (-108.45889299999988 67.48803700000013) (-108.49249299999997 67.51971400000008) (-108.49638400000003 67.52442900000011) (-108.49582700000002 67.52998400000001) (-108.491379 67.56303400000007) (-108.48137700000001 67.56637599999999) (-108.45777899999996 67.56805400000013) (-108.33583099999993 67.565811) (-108.29750100000001 67.55720500000007) (-108.28582799999998 67.54304500000012) (-108.28443899999996 67.53776600000015) (-108.29527299999995 67.49693300000007) (-108.30166600000001 67.49108900000004) (-108.35722399999986 67.46943700000003) (-108.36833200000001 67.46720900000008)) ((-108.14111300000002 67.44999700000005) (-108.16944899999993 67.44970700000005) (-108.23665599999993 67.45665000000002) (-108.25167799999997 67.45887800000014) (-108.26222200000001 67.46220400000004) (-108.26806599999992 67.4666600000001) (-108.27194199999991 67.47137499999997) (-108.275284 67.48165899999998) (-108.22556299999997 67.56553600000012) (-108.21916199999987 67.57110600000004) (-108.20638999999994 67.57054099999999) (-108.19833399999999 67.566666) (-108.17360699999995 67.55247500000002) (-108.1661069999999 67.54304500000012) (-108.13137799999993 67.48193400000002) (-108.12970699999994 67.47665400000011) (-108.12888299999997 67.46582000000006) (-108.12943999999999 67.46026600000005) (-108.13249200000001 67.45416300000011) (-108.14111300000002 67.44999700000005)) ((-108.32277699999997 67.58998099999997) (-108.32362399999994 67.58665500000012) (-108.339447 67.5877690000001) (-108.42027300000001 67.59942600000005) (-108.48222399999992 67.63136300000002) (-108.48388699999992 67.63665800000007) (-108.475281 67.64054899999996) (-108.46389799999992 67.64305100000007) (-108.44803599999995 67.64193700000004) (-108.41832699999992 67.63638300000008) (-108.40334299999995 67.63415500000013) (-108.390289 67.63108800000003) (-108.379707 67.62776200000013) (-108.37138400000003 67.62414600000011) (-108.33416699999992 67.6041560000001) (-108.32277699999997 67.58998099999997)) ((-63.88194299999998 67.50332600000002) (-63.93555500000002 67.50193800000011) (-63.97916399999991 67.50305200000008) (-63.99500299999994 67.50416600000005) (-64.00527999999991 67.50526399999995) (-64.02528399999994 67.51054400000004) (-64.02972399999987 67.51388500000007) (-64.031677 67.5186000000001) (-64.03472899999991 67.52887000000004) (-64.03805499999987 67.54275500000011) (-64.0344389999999 67.55859400000003) (-63.98111 67.64415000000002) (-63.976944 67.649429) (-63.969993999999986 67.65359500000011) (-63.96277599999996 67.65554800000001) (-63.95249899999999 67.65443400000004) (-63.94554900000003 67.65138200000013) (-63.93721800000003 67.645264) (-63.92639200000002 67.63333099999994) (-63.92222600000002 67.62498500000004) (-63.915549999999996 67.61720300000013) (-63.90444200000002 67.60803199999998) (-63.87555699999996 67.59304800000007) (-63.853888999999924 67.58554100000015) (-63.815276999999924 67.566666) (-63.78722399999998 67.55053700000008) (-63.76999699999999 67.53776600000015) (-63.76361800000001 67.52970900000003) (-63.75805699999995 67.52053800000004) (-63.76083399999999 67.51527400000009) (-63.769447000000014 67.51332100000013) (-63.81833599999999 67.5086060000001) (-63.84222399999993 67.50637799999998) (-63.88194299999998 67.50332600000002)) ((-108.05999799999995 67.47526600000003) (-108.08972199999994 67.46554600000013) (-108.10333300000002 67.46720900000008) (-108.109444 67.47137499999997) (-108.11332700000003 67.47608900000012) (-108.14389 67.53054799999995) (-108.14277600000003 67.54165599999999) (-108.13362099999989 67.62803600000007) (-108.13221699999997 67.63943499999999) (-108.11776699999996 67.66998299999995) (-108.11361699999998 67.67526199999998) (-108.10109699999992 67.6766510000001) (-108.087219 67.67498800000004) (-108.01418299999995 67.66249100000005) (-108.00361599999997 67.65914900000007) (-107.99553700000001 67.655258) (-107.98944099999994 67.651093) (-107.98332199999999 67.64471400000014) (-107.92832900000002 67.561646) (-107.92304999999993 67.55165100000005) (-107.92138699999992 67.54664600000001) (-107.922234 67.540817) (-107.92749000000003 67.53442400000006) (-108.05999799999995 67.47526600000003)) ((-97.50279199999994 67.62442000000004) (-97.51556399999993 67.62387100000007) (-97.53028899999998 67.62498500000004) (-97.541382 67.62886000000003) (-97.54943799999995 67.63804599999997) (-97.55139199999996 67.64276100000001) (-97.55305499999992 67.6477660000001) (-97.56054699999993 67.69274899999999) (-97.40055799999999 67.73165899999992) (-97.38778699999989 67.73220800000007) (-97.36000100000001 67.73165899999992) (-97.34638999999993 67.728317) (-97.337784 67.724152) (-97.337784 67.72110000000009) (-97.33277899999996 67.70637499999998) (-97.327225 67.68165599999998) (-97.33277899999996 67.67581200000001) (-97.34167500000001 67.6705320000001) (-97.37054399999988 67.657761) (-97.43360899999993 67.63749700000005) (-97.47888199999994 67.62747200000013) (-97.50279199999994 67.62442000000004)) ((-109.11221299999994 67.76332100000008) (-109.12581599999987 67.76249700000011) (-109.14111299999996 67.76499899999999) (-109.195267 67.77554300000003) (-109.20612299999993 67.77886999999998) (-109.20777900000002 67.78387500000002) (-109.16944899999999 67.79775999999993) (-109.15943899999996 67.801086) (-109.135559 67.80276499999997) (-109.0933379999999 67.80386399999998) (-109.07584400000002 67.80219999999997) (-109.06054699999999 67.79971300000005) (-109.03916899999996 67.79332000000011) (-109.04083299999996 67.78831500000007) (-109.05277999999993 67.78248600000006) (-109.08000199999987 67.77110300000004) (-109.08972199999994 67.76805100000013) (-109.11221299999994 67.76332100000008)) ((-96.170547 67.77304100000015) (-96.18276999999995 67.77165199999996) (-96.19249000000002 67.77360500000009) (-96.19638099999992 67.77804600000002) (-96.18582199999997 67.79470800000001) (-96.17999299999997 67.80026200000003) (-96.17138699999992 67.80636600000003) (-96.09861799999999 67.83221399999996) (-96.07722499999994 67.83888200000013) (-96.06555200000003 67.84109500000011) (-96.05332899999996 67.842758) (-96.04028299999993 67.84332300000005) (-96.02806099999998 67.84165999999993) (-95.99749800000001 67.820831) (-95.99638400000003 67.81581100000011) (-96.00473 67.809708) (-96.01611300000002 67.80748) (-96.04083299999996 67.80442800000009) (-96.170547 67.77304100000015)) ((-114.11501299999998 67.88388099999997) (-114.08222999999998 67.8830410000001) (-114.02223200000003 67.88415500000008) (-114.00583599999999 67.8836060000001) (-113.95500199999998 67.88136299999996) (-113.92138699999998 67.87803600000001) (-113.925003 67.87469499999997) (-113.94138299999986 67.87525900000014) (-113.98638899999997 67.87441999999999) (-113.99999999999994 67.87330600000001) (-114.01027699999992 67.87136800000007) (-114.05166600000001 67.87025499999999) (-114.08306900000002 67.87052900000009) (-114.195267 67.87248200000005) (-114.22972099999987 67.87414600000005) (-114.25250199999999 67.879974) (-114.29638699999998 67.89221200000003) (-114.29695100000004 67.89526399999994) (-114.27555799999999 67.90054299999991) (-114.25110599999994 67.90443399999998) (-114.21972700000003 67.90416000000005) (-114.20612299999993 67.9019320000001) (-114.17388899999997 67.89248700000007) (-114.14862099999999 67.88720699999999) (-114.13305700000001 67.88526900000005) (-114.11501299999998 67.88388099999997)) ((-97.85638399999993 67.85053999999997) (-97.86694299999999 67.84693900000013) (-97.92416400000002 67.84999100000005) (-97.954453 67.85636899999997) (-97.96333300000003 67.86026000000004) (-97.97000100000002 67.86442599999998) (-97.97416699999991 67.86914100000001) (-97.97332799999992 67.87414600000005) (-97.976944 67.88415500000008) (-97.97444200000001 67.90498400000001) (-97.96112099999999 67.90554800000001) (-97.93331899999998 67.89888000000002) (-97.92027299999995 67.8936000000001) (-97.91361999999998 67.88916000000012) (-97.895554 67.88136299999996) (-97.86221299999994 67.85998500000005) (-97.85804699999994 67.855255) (-97.85638399999993 67.85053999999997)) ((-108.64695699999999 67.86943100000002) (-108.66082799999998 67.86886599999997) (-108.66915899999998 67.87248200000005) (-108.64666699999998 67.88720699999999) (-108.58500700000002 67.91554300000007) (-108.56610099999989 67.92275999999998) (-108.54472399999997 67.928314) (-108.531113 67.92886400000003) (-108.38027999999997 67.922485) (-108.37082699999996 67.91970800000007) (-108.36444099999994 67.91554300000007) (-108.36110699999989 67.90525799999995) (-108.35944399999994 67.89999399999999) (-108.41221599999994 67.88581799999997) (-108.64695699999999 67.86943100000002)) ((-113.390289 67.89776600000005) (-113.46389799999997 67.89582800000011) (-113.52694699999995 67.89637800000014) (-113.55972300000002 67.897491) (-113.59416199999993 67.89942899999994) (-113.6033329999999 67.90304600000007) (-113.59750399999996 67.90664700000013) (-113.58528100000001 67.90860000000009) (-113.41972399999997 67.92526200000009) (-113.39111300000002 67.92665100000005) (-113.34750400000001 67.92804000000007) (-113.27390299999996 67.92997700000012) (-113.25723299999993 67.92942800000014) (-113.25029 67.92526200000009) (-113.24694799999997 67.9144290000001) (-113.25361599999997 67.90942400000006) (-113.27778599999999 67.905823) (-113.297234 67.90443399999998) (-113.33444199999991 67.90109299999995) (-113.390289 67.89776600000005)) ((-112.93055700000002 67.91665599999999) (-112.983612 67.91526800000008) (-112.99999999999989 67.91609200000005) (-113.06027199999994 67.91526800000008) (-113.131104 67.911652) (-113.14750700000002 67.91220099999998) (-113.14750700000002 67.915817) (-113.13806199999999 67.91914400000013) (-112.94304699999998 67.9310910000001) (-112.89639299999999 67.93081699999999) (-112.88722199999995 67.92720000000003) (-112.890289 67.92192100000005) (-112.90110800000002 67.91914400000013) (-112.93055700000002 67.91665599999999)) ((-111.07167099999998 67.84748800000006) (-111.08666999999997 67.84748800000006) (-111.0911099999999 67.85220300000009) (-111.08693700000003 67.85887100000008) (-111.07028200000002 67.86720300000007) (-110.84889199999998 67.95471199999997) (-110.83917200000002 67.95803799999999) (-110.82668299999995 67.95971700000001) (-110.81388900000002 67.95915200000002) (-110.80722000000003 67.95498700000002) (-110.80943300000001 67.94886799999995) (-110.81696299999999 67.94026200000002) (-110.86221299999994 67.89498900000012) (-110.86945300000002 67.88998400000008) (-110.88027999999991 67.887497) (-111.05943300000001 67.84915200000006) (-111.07167099999998 67.84748800000006)) ((-114.21916199999998 67.94525099999998) (-114.29583699999995 67.94470200000006) (-114.30999799999995 67.94581600000004) (-114.31722999999988 67.9497070000001) (-114.31082200000003 67.95471199999997) (-114.30027799999988 67.95748900000007) (-114.25446299999987 67.96331800000007) (-114.17138699999992 67.96914700000008) (-114.13999899999999 67.96887200000009) (-114.12416099999996 67.96720900000014) (-114.12110899999993 67.96192900000005) (-114.12332199999992 67.95803799999999) (-114.16332999999986 67.94914200000005) (-114.203888 67.94581600000004) (-114.21916199999998 67.94525099999998)) ((-108.13806199999999 67.87248200000005) (-108.15167199999996 67.87191800000011) (-108.24553699999996 67.87803600000001) (-108.25418100000002 67.88192700000008) (-108.25556899999992 67.88720699999999) (-108.23916599999995 67.9202580000001) (-108.236107 67.92637600000006) (-108.23111 67.93304400000005) (-108.22471599999994 67.93887300000006) (-108.198036 67.95082100000008) (-108.14723200000003 67.96665999999999) (-108.12581599999999 67.97221400000001) (-108.114441 67.97442600000005) (-108.10056299999997 67.9749910000001) (-108.08416699999998 67.97387700000013) (-108.07140399999992 67.97110000000004) (-108.06054699999999 67.96775800000012) (-108.05444299999988 67.96331800000007) (-108.05055199999998 67.95860300000004) (-108.048607 67.94914200000005) (-108.05139200000002 67.92665100000005) (-108.06331599999993 67.90220600000004) (-108.06833599999999 67.89553800000004) (-108.07501200000002 67.88970900000004) (-108.08249699999999 67.88499500000012) (-108.09137699999985 67.88081400000004) (-108.11277799999999 67.87553400000013) (-108.13806199999999 67.87248200000005)) ((-113.72000099999997 67.97331200000008) (-113.72778299999993 67.96914700000008) (-113.73998999999998 67.96720900000014) (-113.75361599999997 67.966095) (-113.79750099999995 67.96470599999998) (-113.99305699999996 67.96110499999992) (-113.99109599999997 67.96499599999999) (-113.98249800000002 67.96720900000014) (-113.97250400000001 67.96859700000005) (-113.91639700000002 67.97221400000001) (-113.88639799999999 67.97276299999999) (-113.83833299999998 67.971924) (-113.81111099999993 67.97387700000013) (-113.785278 67.97692900000004) (-113.77223199999997 67.98027000000008) (-113.74082899999996 67.97998000000007) (-113.72501399999999 67.97804300000001) (-113.72000099999997 67.97331200000008)) ((-109.195267 67.98997499999996) (-109.04998799999993 67.95832800000005) (-109.03028899999993 67.96693399999992) (-108.99082900000002 67.97637900000001) (-108.97693599999997 67.97692900000004) (-108.95111099999991 67.97331200000008) (-108.89723199999997 67.95694000000009) (-108.88445300000001 67.94859300000013) (-108.86554699999999 67.905823) (-108.86609599999991 67.90026899999998) (-108.87943999999999 67.87525900000014) (-108.88806199999999 67.87109399999997) (-108.90055799999999 67.86970500000012) (-108.916946 67.87052900000009) (-109.04888900000003 67.90387000000004) (-109.10305799999998 67.9202580000001) (-109.135559 67.93026700000013) (-109.16972399999992 67.94525099999998) (-109.18888899999996 67.95776400000005) (-109.195267 67.9622040000001) (-109.19888299999997 67.97248800000011) (-109.198036 67.98387100000014) (-109.195267 67.98997499999996)) ((-110.33444199999997 68.01165800000012) (-110.39362299999993 68.01110800000009) (-110.41000400000001 68.01193200000006) (-110.42111199999994 68.01499899999993) (-110.420837 68.020828) (-110.410553 68.02470400000004) (-110.32640099999992 68.0477600000001) (-110.317497 68.049713) (-110.31082199999992 68.0455320000001) (-110.30888400000003 68.03749100000005) (-110.316101 68.01915000000002) (-110.32333399999999 68.01416) (-110.33444199999997 68.01165800000012)) ((-98.95140100000003 67.97998000000007) (-98.96362299999993 67.97831700000012) (-98.97944599999994 67.98027000000008) (-99.00500499999998 67.98719800000009) (-99.01445000000001 67.99108899999999) (-99.02833599999991 67.99942000000004) (-99.0786129999999 68.045593) (-99.05139200000002 68.05581700000005) (-98.99055499999986 68.07832300000007) (-98.97555499999999 68.07720900000004) (-98.968887 68.07304400000004) (-98.964722 68.06498700000009) (-98.93443299999996 67.99664300000012) (-98.93499800000001 67.99136399999998) (-98.94276399999995 67.98525999999993) (-98.95140100000003 67.97998000000007)) ((-65.39723200000003 68.03997800000013) (-65.40916399999998 68.03942899999998) (-65.50029 68.04609700000015) (-65.51083399999999 68.04942299999999) (-65.516663 68.05442800000003) (-65.51972999999998 68.06749000000008) (-65.51806599999998 68.07222000000007) (-65.50527999999997 68.07638500000007) (-65.43582200000003 68.08804299999997) (-65.394455 68.08998100000008) (-65.38639799999993 68.08831800000013) (-65.390289 68.07832300000007) (-65.38305700000001 68.05331400000006) (-65.38333099999994 68.04859900000002) (-65.38722200000001 68.04332000000005) (-65.39723200000003 68.03997800000013)) ((-108.50611900000001 68.03471400000012) (-108.51862299999993 68.03332499999993) (-108.53388999999999 68.03553800000009) (-108.54028299999993 68.03997800000013) (-108.53751399999999 68.04609700000015) (-108.45472699999999 68.09054600000007) (-108.44748700000002 68.08776900000004) (-108.44583099999994 68.08248900000012) (-108.44611399999991 68.07470699999999) (-108.45140100000003 68.06805400000002) (-108.46665999999999 68.0583190000001) (-108.49722299999996 68.03887900000012) (-108.50611900000001 68.03471400000012)) ((-109.32167099999998 67.98109400000004) (-109.33556399999992 67.98027000000008) (-109.35193600000002 67.98136900000009) (-109.37805199999991 67.98692300000005) (-109.432503 68.00305200000003) (-109.49804699999993 68.0227660000001) (-109.50666799999993 68.02638200000013) (-109.53888699999999 68.04748500000005) (-109.54305999999991 68.05220000000008) (-109.50473 68.08888200000007) (-109.4974979999999 68.0935970000001) (-109.484734 68.09526099999994) (-109.44722000000002 68.09220900000003) (-109.410553 68.07193000000007) (-109.32167099999998 68.03997800000013) (-109.31527699999987 68.03581200000002) (-109.3116609999999 68.02554300000003) (-109.31111099999987 67.99775699999992) (-109.3116609999999 67.99192800000009) (-109.31416299999995 67.98580900000007) (-109.32167099999998 67.98109400000004)) ((-108.36054999999999 68.049713) (-108.37444299999993 68.04887400000007) (-108.38751200000002 68.05192599999998) (-108.40638699999994 68.06469700000008) (-108.40805099999994 68.06971699999997) (-108.40167200000002 68.07554600000014) (-108.38221699999991 68.092758) (-108.37444299999993 68.09553500000004) (-108.36193800000001 68.09693900000008) (-108.32000699999992 68.09887700000002) (-108.306107 68.09942599999994) (-108.29444899999999 68.09721400000006) (-108.297234 68.09109500000005) (-108.29778299999998 68.08554100000003) (-108.30082700000003 68.07943700000004) (-108.30860899999999 68.07470699999999) (-108.34916699999997 68.05192599999998) (-108.36054999999999 68.049713)) ((-110.21362299999998 68.03803999999997) (-110.23998999999998 68.03581200000002) (-110.25639299999995 68.03665200000006) (-110.258621 68.04193100000003) (-110.25 68.04609700000015) (-110.22165699999994 68.05664100000001) (-110.18195300000002 68.06971699999997) (-109.93276999999989 68.13192700000008) (-109.92166099999997 68.13415500000002) (-109.89639299999999 68.13749700000011) (-109.88583399999993 68.13638300000014) (-109.87721299999993 68.12692300000009) (-109.87748699999997 68.12136800000002) (-109.882767 68.1141510000001) (-109.88527699999997 68.10803200000004) (-109.88999899999993 68.10137900000007) (-109.89584399999995 68.09553500000004) (-109.903343 68.09054600000007) (-109.92111199999994 68.08166499999999) (-109.93222000000003 68.07916300000011) (-110.08721899999995 68.05331400000006) (-110.21362299999998 68.03803999999997)) ((-112.78056299999997 68.13108800000009) (-112.79276999999996 68.12942499999997) (-112.88999899999999 68.1372070000001) (-112.9058379999999 68.13916000000006) (-112.91722099999998 68.14221199999997) (-112.922234 68.14665200000002) (-112.91832699999992 68.153595) (-112.91306299999997 68.159424) (-112.90638699999994 68.16442900000004) (-112.89835399999998 68.16886900000009) (-112.88861099999997 68.172211) (-112.87638900000002 68.17387400000013) (-112.86110699999995 68.17414900000011) (-112.76722699999993 68.1666560000001) (-112.75167799999997 68.16470300000015) (-112.74973299999994 68.15803499999998) (-112.74472000000003 68.153595) (-112.74638399999998 68.14749099999995) (-112.75334199999998 68.14221199999997) (-112.76139799999993 68.13804600000009) (-112.78056299999997 68.13108800000009)) ((-74.21556099999998 68.11775199999994) (-74.16471899999999 68.06553600000007) (-73.974716 68.0410920000001) (-73.73638899999997 68.01361100000003) (-73.65547199999997 68.00770599999998) (-73.64334099999991 68.01220700000005) (-73.61999500000002 68.01499899999993) (-73.60888699999987 68.01554899999996) (-73.57806399999998 68.01443499999999) (-73.56750499999998 68.01304600000003) (-73.54388399999993 68.008331) (-73.43998699999997 67.98553500000014) (-73.42832900000002 67.98220800000001) (-73.41888399999999 67.97886699999998) (-73.41166699999997 67.9749910000001) (-73.40972899999991 67.97053499999998) (-73.34861799999999 67.82804899999996) (-73.36166400000002 67.81025700000009) (-73.37777699999987 67.79386900000003) (-73.38333099999994 67.78942900000004) (-73.40417500000001 67.7749940000001) (-73.41139199999992 67.77053799999999) (-73.41860999999994 67.766388) (-73.42944299999999 67.76277199999993) (-73.44943199999994 67.76249700000011) (-73.66416899999996 67.7747040000001) (-73.93221999999992 67.78637700000013) (-73.99305700000002 67.78804000000002) (-74.03832999999992 67.788589) (-74.08389299999988 67.78831500000007) (-74.11332700000003 67.7872010000001) (-74.16805999999985 67.78276100000005) (-74.22888199999994 67.77526899999992) (-74.2519529999999 67.77249100000012) (-74.26306199999999 67.77165199999996) (-74.30583200000001 67.76860000000005) (-74.32028200000002 67.7688750000001) (-74.38861099999997 67.77526899999992) (-74.40083300000003 67.77665700000006) (-74.48110999999994 67.78942900000004) (-74.535278 67.80470300000013) (-74.56416299999995 67.81442300000003) (-74.58168 67.82138100000003) (-74.59722899999997 67.82859800000011) (-74.64083899999997 67.85220300000009) (-74.65972899999991 67.86470000000008) (-74.68443300000001 67.88192700000008) (-74.758896 67.95027199999998) (-74.77223200000003 67.96331800000007) (-74.77555799999988 67.96914700000008) (-74.777222 67.97387700000013) (-74.77806099999992 68.00610400000011) (-74.77749599999999 68.01776100000006) (-74.773056 68.02998400000013) (-74.76000999999997 68.05442800000003) (-74.75418100000002 68.06053200000008) (-74.74861099999993 68.06553600000007) (-74.73194899999987 68.07083100000011) (-74.718613 68.07222000000007) (-74.62999000000002 68.07859800000006) (-74.61527999999998 68.07832300000007) (-74.43666100000002 68.097488) (-74.36389200000002 68.166382) (-74.35583499999996 68.17275999999998) (-74.34695399999993 68.176376) (-74.339447 68.17719999999997) (-74.32250999999991 68.17303500000014) (-74.26889 68.15498400000001) (-74.239441 68.14498900000007) (-74.23167399999994 68.14193699999998) (-74.21639999999996 68.13415500000002) (-74.21250900000001 68.13053899999994) (-74.21083099999998 68.12498499999998) (-74.21556099999998 68.11775199999994)) ((-65.64222699999999 68.159424) (-65.56639100000001 68.15220599999998) (-65.512787 68.15277100000003) (-65.502792 68.15109300000012) (-65.49777199999994 68.14776599999999) (-65.49444599999993 68.14248700000002) (-65.495544 68.128311) (-65.50083899999998 68.12191800000005) (-65.516953 68.11303700000008) (-65.525284 68.10971100000006) (-65.67555199999998 68.09610000000009) (-65.686935 68.0958250000001) (-65.69610599999993 68.09887700000002) (-65.70973199999997 68.1060940000001) (-65.71389799999997 68.11276200000009) (-65.72193899999996 68.16442900000004) (-65.716949 68.17581200000006) (-65.71167000000003 68.18026700000007) (-65.70140099999998 68.18136600000008) (-65.67582699999997 68.17997700000006) (-65.65666199999993 68.17526200000003) (-65.64834599999995 68.16859400000004) (-65.64666699999992 68.16360500000008) (-65.64222699999999 68.159424)) ((-107.47361799999993 68.14471400000008) (-107.48500100000001 68.14248700000002) (-107.50140399999998 68.14360000000005) (-107.55499299999991 68.16053799999997) (-107.55416899999994 68.16609199999999) (-107.54499800000002 68.16998300000006) (-107.5038909999999 68.18248000000006) (-107.49472000000003 68.18664600000011) (-107.48444399999994 68.18969700000014) (-107.46806300000003 68.188583) (-107.46193700000003 68.18414299999995) (-107.46028100000001 68.1791530000001) (-107.45935800000001 68.17562900000001) (-107.45667299999997 68.17442300000005) (-107.45527600000003 68.16914400000007) (-107.45584099999996 68.16360500000008) (-107.46694899999994 68.15026899999998) (-107.47361799999993 68.14471400000008)) ((-104.453056 68.10220300000003) (-104.48277299999995 68.07971200000003) (-104.497772 68.08027599999997) (-104.50334199999992 68.08471700000007) (-104.55304699999999 68.14027400000003) (-104.55610699999994 68.14526400000011) (-104.55695299999996 68.15026899999998) (-104.553879 68.16165199999995) (-104.54666099999997 68.16499299999998) (-104.42639200000002 68.19999700000005) (-104.41555799999998 68.20277399999998) (-104.391953 68.20694000000009) (-104.37721299999998 68.19970700000005) (-104.36860699999994 68.19053600000012) (-104.370003 68.1849820000001) (-104.37416100000002 68.17886399999998) (-104.40499899999992 68.13943500000005) (-104.453056 68.10220300000003)) ((-107.38890100000003 68.172211) (-107.40278599999999 68.17164599999995) (-107.41111799999999 68.17553700000002) (-107.44167299999992 68.19692999999995) (-107.445267 68.20166) (-107.43998699999997 68.208328) (-107.42944299999999 68.21138000000008) (-107.41443599999997 68.21110500000009) (-107.30972300000002 68.20915200000013) (-107.295547 68.20748900000001) (-107.291672 68.20277399999998) (-107.31054699999999 68.19609100000002) (-107.38890100000003 68.172211)) ((-111.833328 68.18193100000008) (-111.84722899999997 68.1808170000001) (-111.860817 68.18359400000003) (-111.86554699999999 68.18803400000002) (-111.83222999999998 68.20498700000013) (-111.81416300000001 68.21249400000005) (-111.79194599999994 68.21775800000006) (-111.77944899999994 68.21943700000003) (-111.764183 68.21943700000003) (-111.75499699999995 68.21582000000012) (-111.75945299999995 68.20915200000013) (-111.76666299999994 68.20637500000004) (-111.79194599999994 68.19358800000003) (-111.81111099999998 68.18692000000004) (-111.833328 68.18193100000008)) ((-98.650284 68.18026700000007) (-98.67443800000001 68.17387400000013) (-98.704453 68.176086) (-98.702789 68.1916500000001) (-98.69332899999995 68.21360800000002) (-98.68443300000001 68.21887200000003) (-98.67222600000002 68.22053499999993) (-98.65722699999998 68.21943700000003) (-98.64306599999998 68.21609500000011) (-98.63861099999997 68.21165500000012) (-98.63667299999992 68.20665000000002) (-98.64306599999998 68.20166) (-98.650284 68.18026700000007)) ((-74.06277499999999 68.15165700000006) (-74.07362399999994 68.15081800000007) (-74.13833599999992 68.17025800000005) (-74.16972399999997 68.19552599999997) (-74.17639200000002 68.204163) (-74.17138699999998 68.20860299999998) (-74.15583799999996 68.21748400000013) (-74.13806199999999 68.22581500000001) (-74.11721799999992 68.23220799999996) (-74.10583500000001 68.2352600000001) (-74.09722899999991 68.23664900000006) (-74.08694499999996 68.2352600000001) (-74.07972699999999 68.232483) (-74.07528699999995 68.22776799999997) (-74.073059 68.22387700000007) (-74.06332399999991 68.20304900000002) (-74.05555700000002 68.17248500000011) (-74.05444299999999 68.15998800000011) (-74.05721999999997 68.15498400000001) (-74.06277499999999 68.15165700000006)) ((-108.59028599999999 68.21443199999999) (-108.63944999999995 68.15138200000001) (-108.6499859999999 68.15248100000002) (-108.65862299999998 68.15609700000005) (-108.67748999999998 68.16886900000009) (-108.67360699999995 68.18637100000012) (-108.67194399999994 68.19108599999998) (-108.63500999999997 68.2285920000001) (-108.62748699999992 68.23359700000015) (-108.60555999999997 68.23692299999999) (-108.56610099999989 68.24054000000012) (-108.55972300000002 68.23609900000002) (-108.59028599999999 68.21443199999999)) ((-109.78388999999999 68.13749700000011) (-109.81166099999996 68.13610799999998) (-109.828056 68.13693200000012) (-109.84137699999997 68.13970899999998) (-109.84999099999999 68.14332599999994) (-109.85665899999998 68.14776599999999) (-109.854172 68.15386999999998) (-109.845551 68.15803499999998) (-109.77194199999997 68.18830900000006) (-109.676941 68.22415200000006) (-109.64417300000002 68.23220799999996) (-109.58889799999997 68.24525499999999) (-109.57749899999988 68.24748200000005) (-109.56806899999998 68.24720800000011) (-109.57055699999995 68.2410890000001) (-109.57695000000001 68.232483) (-109.58194700000001 68.22581500000001) (-109.59416199999993 68.21443199999999) (-109.67388899999997 68.17330900000007) (-109.7625119999999 68.14332599999994) (-109.7725069999999 68.13998400000003) (-109.78388999999999 68.13749700000011)) ((-66.31361400000003 68.14776599999999) (-66.32695000000001 68.14749099999995) (-66.35499599999997 68.15331999999995) (-66.38110399999994 68.15860000000004) (-66.39639299999993 68.16110200000008) (-66.46861299999995 68.17109700000003) (-66.52778599999988 68.17776500000002) (-66.57084700000001 68.18136600000008) (-66.601944 68.18248000000006) (-66.60722399999997 68.21720900000008) (-66.5 68.23970000000008) (-66.29943799999995 68.25444000000005) (-66.22193899999996 68.2410890000001) (-66.25666799999999 68.16360500000008) (-66.26972999999992 68.15860000000004) (-66.30139199999996 68.14915499999995) (-66.31361400000003 68.14776599999999)) ((-96.38417099999992 68.20082100000002) (-96.422775 68.19831800000009) (-96.436935 68.19859300000007) (-96.44860799999992 68.20248400000014) (-96.45472699999993 68.20665000000002) (-96.462784 68.21609500000011) (-96.45666499999999 68.22164900000013) (-96.375 68.25471500000003) (-96.36416600000001 68.2580410000001) (-96.35082999999997 68.25860599999993) (-96.34445199999993 68.25416600000011) (-96.31750499999993 68.23193400000002) (-96.32444800000002 68.22109999999998) (-96.33889799999992 68.21220400000004) (-96.34889199999986 68.20803799999999) (-96.36000100000001 68.20471200000009) (-96.38417099999992 68.20082100000002)) ((-78.57167099999998 68.2002720000001) (-78.65556300000003 68.18775900000003) (-78.662216 68.18914799999999) (-78.66027799999989 68.19636500000013) (-78.64306599999998 68.21832300000005) (-78.60722399999992 68.24832200000009) (-78.59388699999988 68.25555400000002) (-78.58111599999995 68.25888099999997) (-78.55027799999999 68.26361099999997) (-78.54804999999999 68.26304600000014) (-78.54527300000001 68.25) (-78.525284 68.23359700000015) (-78.51722699999993 68.22331200000002) (-78.5225069999999 68.21775800000006) (-78.53222699999998 68.21304300000003) (-78.55888399999998 68.20304900000002) (-78.57167099999998 68.2002720000001)) ((-86.42639199999996 68.06915299999997) (-86.39750700000002 68.02165200000013) (-86.37832599999996 67.9933170000001) (-86.37666299999995 67.988586) (-86.368607 67.95471199999997) (-86.37083399999995 67.93997200000001) (-86.39611799999994 67.85971100000012) (-86.40360999999996 67.84887700000007) (-86.465012 67.78665200000012) (-86.47084000000001 67.78137200000009) (-86.48998999999998 67.77053799999999) (-86.57194500000003 67.72886700000004) (-86.58361799999994 67.72526600000015) (-86.59666399999998 67.72554000000008) (-86.67666599999995 67.73165899999992) (-86.69055200000003 67.73387100000002) (-86.85833699999995 67.79693599999996) (-86.87943999999993 67.81025700000009) (-86.88389599999994 67.81498699999997) (-86.910278 67.8477630000001) (-86.91861 67.86192299999999) (-86.926941 67.87637300000011) (-86.94583099999994 67.90942400000006) (-86.9519499999999 67.92387400000001) (-86.94860799999998 67.92886400000003) (-86.94055199999997 67.93441800000005) (-86.92610199999996 67.93136600000008) (-86.91332999999997 67.93193100000013) (-86.85444599999988 67.95416300000005) (-86.84333799999996 67.95860300000004) (-86.83889799999997 67.98637400000013) (-86.83694500000001 68.00109900000007) (-86.84083599999991 68.01081800000003) (-86.84750399999996 68.020264) (-86.851944 68.02499400000005) (-86.86389200000002 68.02915999999993) (-86.87832599999996 68.03221099999996) (-86.90417500000001 68.03054800000007) (-86.93249500000002 68.03581200000002) (-86.94221499999998 68.04026799999997) (-86.98666400000002 68.06164600000005) (-86.9927669999999 68.06666600000011) (-86.99194299999994 68.07165500000008) (-86.98832699999997 68.08166499999999) (-86.978882 68.09693900000008) (-86.90638699999994 68.18026700000007) (-86.89805599999994 68.18553199999997) (-86.74249299999991 68.28276099999994) (-86.71194499999996 68.299149) (-86.70056199999993 68.30358900000004) (-86.675003 68.3060910000001) (-86.64666699999992 68.3016510000001) (-86.60278299999999 68.29136700000004) (-86.53860500000002 68.2705380000001) (-86.487503 68.24859600000002) (-86.45861799999989 68.23553500000008) (-86.41111799999999 68.20887800000003) (-86.40666199999998 68.204163) (-86.40278599999999 68.19442700000002) (-86.43499800000001 68.1624910000001) (-86.43388400000003 68.09860199999997) (-86.43249500000002 68.08888200000007) (-86.42639199999996 68.06915299999997)) ((-111.71028100000001 68.22053499999993) (-111.72556299999997 68.220261) (-111.74221799999998 68.22109999999998) (-111.75583599999993 68.22360200000003) (-111.76500699999997 68.22720300000009) (-111.77194199999991 68.23136900000003) (-111.77639799999992 68.23609900000002) (-111.77887699999997 68.2410890000001) (-111.77916699999997 68.24693300000013) (-111.777222 68.25305200000014) (-111.77166699999998 68.25888099999997) (-111.71501199999994 68.29693600000007) (-111.70388799999989 68.29942299999993) (-111.52887699999991 68.31080600000013) (-111.51363400000002 68.31109600000013) (-111.49944299999993 68.29693600000007) (-111.50446299999999 68.29248000000013) (-111.52861000000001 68.29054300000007) (-111.55777 68.2894290000001) (-111.58277899999996 68.28610199999997) (-111.60526999999996 68.28109699999993) (-111.61361699999998 68.27665700000011) (-111.62777699999998 68.26666300000011) (-111.633331 68.26081800000003) (-111.63305699999995 68.24971) (-111.63054699999992 68.24443100000002) (-111.63249200000001 68.23831200000001) (-111.63945000000001 68.23332199999993) (-111.64943700000003 68.22998000000001) (-111.67166099999997 68.22470100000004) (-111.696663 68.22137500000002) (-111.71028100000001 68.22053499999993)) ((-75.58277900000002 68.30026200000009) (-75.5625 68.29443399999997) (-75.453888 68.26666300000011) (-75.42971799999998 68.26220699999999) (-75.38667299999992 68.2580410000001) (-75.26306199999993 68.24720800000011) (-75.22888199999994 68.24552900000009) (-75.19915800000001 68.24552900000009) (-75.18305999999995 68.24386600000003) (-75.15861499999994 68.23997500000013) (-75.13473499999986 68.23471100000012) (-75.12193300000001 68.22915600000005) (-75.03056300000003 68.16720599999996) (-75.01194800000002 68.14776599999999) (-75.00306699999999 68.13220200000006) (-75 68.1196900000001) (-75.00222799999995 68.1144260000001) (-75.04916399999996 68.0413670000001) (-75.05249000000003 68.03665200000006) (-75.06332399999997 68.02720600000009) (-75.09167500000001 68.009995) (-75.148056 67.97442600000005) (-75.1536099999999 67.96943700000008) (-75.16444399999995 67.95416300000005) (-75.16444399999995 67.9494170000001) (-75.16278099999994 67.94386300000008) (-75.11389199999996 67.86192299999999) (-75.104446 67.84748800000006) (-75.06416299999995 67.78248600000006) (-75.02500899999995 67.62553400000002) (-75.025284 67.61943100000008) (-75.06889299999989 67.54275500000011) (-75.07194499999997 67.53887900000007) (-75.13362099999995 67.48165899999998) (-75.16111799999999 67.46388200000013) (-75.19860799999998 67.44331400000004) (-75.38806199999993 67.35470599999996) (-75.39584399999995 67.35304300000007) (-75.5536039999999 67.3336030000001) (-75.66250600000001 67.305252) (-75.84445199999999 67.26415999999995) (-75.94610599999993 67.251938) (-76.11665299999993 67.25555400000002) (-76.22694399999995 67.26081800000003) (-76.30860899999999 67.25360100000012) (-76.49082900000002 67.23637400000007) (-76.66361999999998 67.219986) (-76.69305399999996 67.22109999999998) (-76.97805799999998 67.24552900000015) (-77.02667200000002 67.25499000000008) (-77.04472399999992 67.2605440000001) (-77.05721999999992 67.26721200000009) (-77.07444800000002 67.28082300000005) (-77.10139500000002 67.30581699999999) (-77.24694799999997 67.45193499999999) (-77.24722299999996 67.45721400000014) (-77.23693799999995 67.49525499999999) (-77.22444199999995 67.53553800000003) (-77.22582999999997 67.54386900000009) (-77.23028599999998 67.55442800000014) (-77.24221799999992 67.56915300000009) (-77.27500899999995 67.61469999999997) (-77.31221 67.67637600000012) (-77.32084700000001 67.69164999999998) (-77.32250999999991 67.69802900000008) (-77.31916799999999 67.71138000000002) (-77.25834699999996 67.81637599999993) (-77.25195300000001 67.82638500000013) (-77.24333200000001 67.83749400000005) (-77.23306299999996 67.84887700000007) (-77.22833300000002 67.8538670000001) (-77.220551 67.86192299999999) (-77.203888 67.87637300000011) (-76.86555499999997 68.15776100000005) (-76.85888699999992 68.16165199999995) (-76.72610500000002 68.23887600000012) (-76.70249899999993 68.24859600000002) (-76.67388899999997 68.25915500000008) (-76.63500999999991 68.27192700000006) (-76.60694899999993 68.27943400000004) (-76.28195199999999 68.33276400000011) (-76.26722699999993 68.33276400000011) (-76.2583469999999 68.3316650000001) (-76.25195300000001 68.328598) (-76.25 68.32304400000004) (-76.25306699999993 68.31359900000012) (-76.24916100000002 68.30748000000011) (-76.23582499999998 68.303314) (-76.22166399999998 68.30137600000006) (-76.116104 68.29664600000007) (-76.083328 68.29525799999993) (-76.06054699999999 68.29693600000007) (-76.05277999999998 68.29859899999997) (-76.03222700000003 68.30470300000002) (-76.000565 68.31693999999999) (-75.98500100000001 68.32443200000012) (-75.96639999999996 68.3311000000001) (-75.95417800000001 68.33387800000008) (-75.93083199999995 68.33692900000011) (-75.91749599999991 68.33831800000007) (-75.88751199999996 68.33970599999998) (-75.81806899999987 68.33665500000001) (-75.75666799999999 68.33248900000007) (-75.72610500000002 68.33027600000014) (-75.69554099999988 68.3269350000001) (-75.66749600000003 68.322769) (-75.62249799999995 68.31303400000007) (-75.60249299999987 68.30748000000011) (-75.58277900000002 68.30026200000009)) ((-79.02055399999995 68.16914400000007) (-79.03250099999991 68.16526800000003) (-79.07501200000002 68.16832000000011) (-79.08972199999994 68.17025800000005) (-79.10166900000002 68.17526200000003) (-79.17138699999987 68.20526100000006) (-79.17694099999994 68.20942700000012) (-79.17999299999997 68.21554599999996) (-79.18832399999997 68.24720800000011) (-79.19110099999995 68.31944299999998) (-79.15167199999996 68.34664900000001) (-79.14195299999994 68.34887700000013) (-79.12554899999998 68.35026600000015) (-79.09944199999995 68.34860200000014) (-79.04499799999996 68.34332299999994) (-78.92999299999991 68.33888200000001) (-78.82611099999997 68.29553200000004) (-78.80999800000001 68.28749099999999) (-78.80471799999992 68.283051) (-78.80166600000001 68.2791600000001) (-78.80221599999993 68.272491) (-78.80526699999996 68.26666300000011) (-78.81555199999991 68.25555400000002) (-78.82333399999993 68.25054899999998) (-78.84194899999989 68.24054000000012) (-79.02055399999995 68.16914400000007)) ((-100.07472200000001 68.34971600000011) (-100.08640299999996 68.29609700000009) (-100.09166700000003 68.284988) (-100.09944200000001 68.27859500000005) (-100.11221299999994 68.27638200000007) (-100.12832600000002 68.27832000000006) (-100.14028899999994 68.28166199999998) (-100.16443600000002 68.28858900000006) (-100.20056199999999 68.299149) (-100.22693600000002 68.31608600000004) (-100.23082699999992 68.31971700000008) (-100.21556099999998 68.318604) (-100.20249899999988 68.31971700000008) (-100.19110099999995 68.32222000000007) (-100.1183319999999 68.34721400000001) (-100.11000100000001 68.35247800000002) (-100.08583099999998 68.36886600000008) (-100.07668299999989 68.359711) (-100.07444799999996 68.35498000000007) (-100.07472200000001 68.34971600000011)) ((-82.05999799999995 68.3060910000001) (-82.07250999999997 68.30304000000007) (-82.27111799999994 68.33859300000012) (-82.31277499999999 68.34915199999995) (-82.32667500000002 68.35359199999999) (-82.33805799999999 68.35832200000004) (-82.34445199999988 68.36276200000003) (-82.34555099999994 68.36775200000011) (-82.333328 68.371918) (-82.23055999999997 68.38554399999998) (-82.216949 68.38415500000013) (-82.13555899999994 68.37275699999998) (-82.01251200000002 68.35081500000007) (-82.00111399999997 68.34637500000008) (-81.99722300000002 68.34137000000004) (-82.01000999999991 68.33276400000011) (-82.05999799999995 68.3060910000001)) ((-111.11444099999994 68.40582300000005) (-111.12832600000002 68.40498400000013) (-111.13751199999996 68.40859999999998) (-111.141953 68.41331500000001) (-111.14890300000002 68.42886399999992) (-111.14917000000003 68.43997200000013) (-111.141953 68.444977) (-111.13054699999992 68.44747900000004) (-111.11527999999998 68.44775400000009) (-111.09861799999999 68.44693000000012) (-111.08249699999993 68.44470200000012) (-111.07611099999991 68.43691999999999) (-111.08416699999998 68.42498800000004) (-111.10582699999998 68.40998800000006) (-111.11444099999994 68.40582300000005)) ((-99.04527300000001 68.42387400000007) (-99.05499299999991 68.40832499999999) (-99.14778100000001 68.44220000000007) (-99.15472399999999 68.44636500000007) (-99.15916399999992 68.451096) (-99.14973399999985 68.45526100000001) (-99.12110899999999 68.45498700000007) (-99.10526999999996 68.45304899999996) (-99.087219 68.44941699999998) (-99.04527300000001 68.42387400000007)) ((-74.162216 68.24609399999997) (-74.19055200000003 68.24247700000001) (-74.20777899999996 68.24331700000005) (-74.221115 68.24720800000011) (-74.22888199999994 68.25082399999997) (-74.24415599999986 68.26138300000002) (-74.260559 68.27331499999997) (-74.38861099999997 68.39833099999998) (-74.39973399999997 68.42025799999999) (-74.40222199999994 68.42776500000014) (-74.400284 68.43414300000012) (-74.39306599999992 68.4452510000001) (-74.37693799999988 68.45971700000013) (-74.360275 68.46388200000013) (-74.34083599999991 68.46249399999999) (-74.30776999999995 68.46165500000006) (-74.29388399999999 68.46054100000009) (-74.27944899999994 68.45832800000011) (-74.26972999999987 68.45471200000003) (-74.21749899999986 68.42608600000011) (-74.19804399999998 68.41499299999992) (-74.07945299999994 68.33859300000012) (-74.07472200000001 68.33082599999994) (-74.07749899999999 68.32554600000009) (-74.14445499999994 68.25444000000005) (-74.14973399999985 68.25) (-74.162216 68.24609399999997)) ((-100.71056399999998 68.40248099999997) (-100.72416699999997 68.401657) (-100.78943599999997 68.40998800000006) (-100.88971699999996 68.45277400000009) (-100.88027999999997 68.45721400000014) (-100.84889199999992 68.4649960000001) (-100.83029199999999 68.46859699999993) (-100.79332699999986 68.46887200000015) (-100.78611799999999 68.46470600000009) (-100.71806300000003 68.41192600000005) (-100.71305799999999 68.407486) (-100.71056399999998 68.40248099999997)) ((-110.86250299999995 68.47415200000006) (-110.92610199999996 68.46582000000006) (-111.05444299999999 68.46971100000013) (-111.08833299999998 68.47331199999996) (-111.09750400000001 68.47720300000003) (-111.09750400000001 68.48275799999993) (-111.09249899999998 68.48719800000015) (-111.08528099999995 68.49220300000002) (-111.07528699999995 68.49552900000003) (-110.984734 68.51554900000008) (-110.82167099999998 68.54803499999997) (-110.80332899999996 68.54637100000014) (-110.79222099999998 68.54331999999994) (-110.76390100000003 68.53360000000004) (-110.74582700000002 68.52638200000007) (-110.69833399999999 68.49136400000003) (-110.69611399999991 68.48637400000001) (-110.70889299999988 68.48471100000006) (-110.72833300000002 68.48442100000005) (-110.79499799999996 68.47998000000013) (-110.86250299999995 68.47415200000006)) ((-110.58693700000003 68.52415500000001) (-110.625 68.51944000000015) (-110.6600039999999 68.521927) (-110.72112299999998 68.5310970000001) (-110.73249800000002 68.53414900000001) (-110.74610899999999 68.54248000000007) (-110.75974300000001 68.55664100000007) (-110.76194800000002 68.56164599999994) (-110.75473 68.566666) (-110.63861099999997 68.56944300000009) (-110.62832600000002 68.559143) (-110.52971600000001 68.54803499999997) (-110.520554 68.54414400000007) (-110.51834100000002 68.53915400000005) (-110.52722199999988 68.53498799999994) (-110.53859699999992 68.53248600000006) (-110.58693700000003 68.52415500000001)) ((-104.54527300000001 68.39610299999998) (-104.58667000000003 68.39444000000009) (-104.64666699999998 68.395828) (-104.693329 68.40248099999997) (-104.708618 68.40525800000006) (-104.75974299999996 68.41804500000006) (-104.88305699999995 68.449997) (-104.91915899999992 68.45999100000006) (-104.9375 68.46748400000007) (-105.08167999999995 68.54637100000014) (-105.04415899999998 68.56275900000003) (-105.024719 68.57054099999999) (-105.01390100000003 68.57331800000009) (-104.98999000000003 68.57748400000014) (-104.93859900000001 68.583328) (-104.91000399999996 68.58387800000003) (-104.76167299999997 68.58276400000005) (-104.74610899999993 68.58221400000002) (-104.71193699999998 68.57859799999994) (-104.682503 68.57388300000008) (-104.55332899999996 68.5372010000001) (-104.52999899999992 68.53054800000012) (-104.50917099999992 68.52331500000014) (-104.48277299999995 68.51165800000001) (-104.46916199999998 68.50332600000002) (-104.46362299999998 68.49887100000001) (-104.44915799999995 68.48526000000004) (-104.44055200000003 68.47608900000006) (-104.42777999999987 68.45694000000003) (-104.42527799999999 68.44136000000003) (-104.426941 68.43580600000001) (-104.43083199999995 68.42970300000007) (-104.43499799999995 68.42359900000002) (-104.44138299999997 68.41720600000008) (-104.45111099999991 68.41331500000001) (-104.48332199999999 68.40470900000008) (-104.51917299999997 68.39833099999998) (-104.54527300000001 68.39610299999998)) ((-105.139183 68.53637700000013) (-105.12609900000001 68.53332500000005) (-105.11305199999998 68.534424) (-105.10109699999998 68.536652) (-105.08693699999998 68.53692600000011) (-105.07861300000002 68.53305100000011) (-105.06639099999995 68.51914999999997) (-105.05972300000002 68.50943000000007) (-105.05888400000003 68.50416600000005) (-105.06833599999999 68.50027499999999) (-105.08612099999999 68.50277700000004) (-105.11193800000001 68.50888100000009) (-105.23361199999994 68.54109199999999) (-105.24416400000001 68.54470800000007) (-105.29110700000001 68.57693500000005) (-105.29222099999998 68.58221400000002) (-105.28138699999994 68.58499100000012) (-105.25611900000001 68.58831800000002) (-105.24305700000002 68.58970599999998) (-105.228882 68.58998099999997) (-105.21112099999993 68.5877690000001) (-105.18582200000003 68.58082600000012) (-105.18611099999998 68.57666) (-105.18167099999994 68.566666) (-105.17832900000002 68.56164599999994) (-105.139183 68.53637700000013)) ((-113.78611799999999 68.58276400000005) (-113.80166599999995 68.58248900000001) (-113.85249299999998 68.58415200000013) (-113.88945000000001 68.58692900000005) (-113.93138099999999 68.59387200000003) (-113.95259099999987 68.59738900000008) (-113.95966299999998 68.60319500000014) (-113.96611000000001 68.61109900000008) (-113.95667300000002 68.61469999999991) (-113.94248999999996 68.61581400000011) (-113.91388699999999 68.61581400000011) (-113.89972699999998 68.61692800000009) (-113.83693700000003 68.60887100000008) (-113.80027799999999 68.60609399999998) (-113.78611799999999 68.60386699999998) (-113.77667200000002 68.60026600000009) (-113.76194800000002 68.59220900000008) (-113.761124 68.58665500000012) (-113.77223199999997 68.58387800000003) (-113.78611799999999 68.58276400000005)) ((-100.74054699999999 68.59637500000002) (-100.78388999999993 68.59443700000008) (-100.86805699999991 68.60304300000001) (-100.88249200000001 68.61137400000007) (-100.87666300000001 68.61637900000011) (-100.86527999999998 68.61914100000001) (-100.85305800000003 68.62081899999998) (-100.839722 68.62164300000012) (-100.81388900000002 68.61914100000001) (-100.75556899999992 68.60775800000005) (-100.74082899999996 68.60470600000008) (-100.73361199999994 68.60054000000002) (-100.74054699999999 68.59637500000002)) ((-78.468887 68.563873) (-78.4744419999999 68.55831900000004) (-78.48222399999992 68.55331399999994) (-78.50306699999999 68.54553200000004) (-78.5308379999999 68.54109199999999) (-78.54583699999995 68.540817) (-78.56221 68.54193099999998) (-78.59922799999993 68.55064400000003) (-78.61455499999994 68.55365000000006) (-78.63890100000003 68.55802899999998) (-78.65472399999999 68.55859400000003) (-78.66888399999999 68.5541530000001) (-78.72471599999994 68.521927) (-78.71583599999991 68.51582300000001) (-78.69137599999999 68.50915500000002) (-78.67443800000001 68.50972000000007) (-78.65333599999997 68.51249699999994) (-78.63612399999994 68.51304600000009) (-78.62194799999997 68.50972000000007) (-78.617615 68.50721700000008) (-78.610275 68.5022130000001) (-78.61082499999998 68.49803200000002) (-78.61805699999996 68.49220300000002) (-78.70556599999998 68.45166000000012) (-78.71611000000001 68.44775400000009) (-78.74305700000002 68.44274899999999) (-78.77667200000002 68.43914799999999) (-78.79527299999995 68.43858300000011) (-78.81304899999992 68.43887300000011) (-78.82806399999998 68.44081100000005) (-78.86166399999996 68.44636500000007) (-78.87638900000002 68.45054600000014) (-78.95973200000003 68.47470099999998) (-78.94610599999999 68.50804100000005) (-78.94332899999995 68.51193200000012) (-78.936935 68.516388) (-78.82278400000001 68.54775999999998) (-78.80943299999996 68.55053700000008) (-78.791672 68.55026200000003) (-78.75917099999998 68.54803499999997) (-78.74388099999999 68.54609700000003) (-78.72389199999998 68.54748499999994) (-78.7041779999999 68.55470300000013) (-78.69888300000002 68.55802899999998) (-78.68888900000002 68.56469700000014) (-78.670837 68.57887299999999) (-78.66860999999994 68.583328) (-78.67277499999994 68.58859300000006) (-78.68055700000002 68.59332300000011) (-78.69305400000002 68.59693900000013) (-78.70584100000002 68.60054000000002) (-78.78416399999998 68.61859099999998) (-78.85139500000002 68.63415500000008) (-78.894455 68.64637800000014) (-78.89805599999994 68.64888000000002) (-78.88972499999994 68.65277100000009) (-78.86389200000002 68.65971400000012) (-78.83778399999989 68.66110200000003) (-78.72000100000002 68.65721100000013) (-78.68943799999994 68.65332000000006) (-78.495834 68.62776200000013) (-78.48194899999993 68.62498500000004) (-78.46945199999993 68.62109399999997) (-78.460556 68.61720300000007) (-78.46722399999999 68.56915300000009) (-78.468887 68.563873)) ((-74.76889 68.67387400000001) (-74.75666799999999 68.67276000000004) (-74.65583799999996 68.65498400000007) (-74.648346 68.65220600000009) (-74.52223199999997 68.56526200000002) (-74.51834099999991 68.55859400000003) (-74.53195199999988 68.55276500000002) (-74.55139200000002 68.55053700000008) (-74.58694499999996 68.54887400000013) (-74.7266689999999 68.55609100000004) (-74.74276700000001 68.55748000000006) (-74.80721999999992 68.56359900000007) (-74.82194500000003 68.56581099999994) (-74.83389299999999 68.56971700000003) (-74.84333799999996 68.57582100000008) (-74.870544 68.59887700000007) (-74.8830569999999 68.61303700000002) (-74.890289 68.62498500000004) (-74.80583200000001 68.66886899999997) (-74.796112 68.67164600000007) (-74.787216 68.67303500000003) (-74.77999899999998 68.67387400000001) (-74.77194199999991 68.67303500000003) (-74.76889 68.67387400000001)) ((-114.04723399999995 68.61360200000001) (-114.06139399999995 68.61248800000004) (-114.075287 68.61469999999991) (-114.10193600000002 68.625809) (-114.12666299999995 68.63720699999999) (-114.14890299999996 68.649429) (-114.16166699999991 68.6580350000001) (-114.18998699999986 68.68026699999996) (-114.186394 68.68359400000008) (-114.15387699999991 68.67970300000002) (-114.141953 68.67692599999992) (-114.14111299999996 68.67109700000009) (-114.05638099999987 68.63581800000003) (-114.04888900000003 68.63192700000013) (-114.041672 68.62776200000013) (-114.03778099999994 68.61692800000009) (-114.04723399999995 68.61360200000001)) ((-74.81138599999991 68.32054100000005) (-74.81750499999993 68.318604) (-75 68.33334400000012) (-75.00222799999995 68.33360300000004) (-75.00834699999996 68.3372040000001) (-75.01028400000001 68.34664900000001) (-75.00500499999993 68.35359199999999) (-75.002792 68.35914600000001) (-75.00140399999998 68.366379) (-75.01501499999995 68.37970000000013) (-75.02917499999995 68.39054900000002) (-75.03750599999995 68.39471400000002) (-75.08167999999989 68.40498400000013) (-75.10943599999996 68.40693700000008) (-75.13806199999999 68.40998800000006) (-75.15306099999987 68.41304000000002) (-75.241379 68.43637100000007) (-75.26390099999992 68.444977) (-75.29472399999997 68.457764) (-75.36999500000002 68.48970000000003) (-75.396118 68.503601) (-75.41639700000002 68.51805100000013) (-75.41639700000002 68.52442900000011) (-75.39695699999987 68.61109900000008) (-75.38917500000002 68.62303200000008) (-75.30777 68.69470200000006) (-75.29972799999996 68.70054600000009) (-75.28056299999997 68.70971700000007) (-75.25472999999988 68.71748400000001) (-75.239441 68.71804800000012) (-75.01445000000001 68.67720000000003) (-75 68.6722410000001) (-74.94276400000001 68.57609600000006) (-74.93832399999991 68.57165500000013) (-74.93138099999993 68.566666) (-74.83694500000001 68.51165800000001) (-74.801941 68.50109900000012) (-74.78500400000001 68.49470500000007) (-74.78028899999998 68.49026500000008) (-74.77223200000003 68.47998000000013) (-74.76834100000002 68.47331199999996) (-74.77639799999992 68.41053799999992) (-74.81138599999991 68.32054100000005)) ((-84.80804399999994 68.76388500000002) (-84.82139599999988 68.76361100000008) (-84.83583099999998 68.766663) (-84.93916300000001 68.79359400000004) (-84.90777600000001 68.8035890000001) (-84.89527900000002 68.80720500000001) (-84.88249200000001 68.80970799999994) (-84.85583500000001 68.81080600000001) (-84.841385 68.80748) (-84.837219 68.80276500000014) (-84.837784 68.79693600000013) (-84.80166599999995 68.76915000000008) (-84.80804399999994 68.76388500000002)) ((-68.110275 68.78276100000005) (-67.8074949999999 68.73359700000003) (-67.78167699999995 68.72915599999993) (-67.679169 68.71137999999996) (-67.66833500000001 68.70721400000008) (-67.66139199999992 68.7019350000001) (-67.662216 68.69831799999997) (-67.67666600000001 68.6958160000001) (-67.85055499999993 68.69775400000003) (-67.86972000000003 68.69859299999996) (-67.89778100000001 68.70498700000002) (-67.91860999999989 68.71249399999994) (-67.95140099999998 68.72164900000001) (-68.03916900000002 68.73803700000008) (-68.18832399999991 68.76388500000002) (-68.306107 68.7794340000001) (-68.323624 68.77998400000013) (-68.33999599999999 68.77859499999994) (-68.35249299999998 68.77554300000003) (-68.36749299999985 68.7749940000001) (-68.43360899999993 68.78109700000005) (-68.45140099999998 68.78387500000002) (-68.45777900000002 68.78581200000008) (-68.45944199999997 68.7910920000001) (-68.45527599999997 68.80219999999991) (-68.45083599999987 68.80720500000001) (-68.43916300000001 68.81248500000004) (-68.42832899999996 68.81303400000002) (-68.4188999999999 68.81025700000009) (-68.37554899999992 68.80802900000015) (-68.24194299999994 68.79887400000007) (-68.224716 68.79748500000011) (-68.110275 68.78276100000005)) ((-101.83112299999999 68.5669400000001) (-101.84555099999989 68.566666) (-101.86028299999998 68.56971700000003) (-101.88527699999986 68.57638500000002) (-101.90527299999991 68.58387800000003) (-102.00583599999999 68.61387599999995) (-102.112213 68.62359600000002) (-102.23000300000001 68.64027399999992) (-102.254997 68.64694200000008) (-102.31639100000001 68.67221100000006) (-102.3125 68.68858300000005) (-102.21665999999999 68.718323) (-102.14862099999999 68.73498499999994) (-102.13639799999993 68.7369230000001) (-102.11389200000002 68.74247700000006) (-102.09249899999998 68.74887100000012) (-102.073059 68.75694300000009) (-102.05638099999993 68.76805100000007) (-102.05166600000001 68.77388000000008) (-102.04943799999995 68.7794340000001) (-102.04972799999996 68.78471400000001) (-102.05555699999996 68.79443400000008) (-102.05555699999996 68.79971300000005) (-102.05082700000003 68.80554200000006) (-102.04276999999996 68.81109600000008) (-102.02306399999992 68.81944300000004) (-101.99833699999999 68.8230440000001) (-101.98500099999995 68.82415800000007) (-101.95612299999999 68.82415800000007) (-101.93943799999994 68.82249499999995) (-101.9119419999999 68.8160860000001) (-101.77861000000001 68.78387500000002) (-101.69387799999993 68.76805100000007) (-101.69999699999994 68.73776200000003) (-101.68055699999996 68.672485) (-101.68250299999994 68.66165200000006) (-101.701683 68.63777200000004) (-101.83112299999999 68.5669400000001)) ((-102.60082999999997 68.813309) (-102.60749799999996 68.80914300000012) (-102.69695299999995 68.81303400000002) (-102.70722999999992 68.81666600000011) (-102.68888900000002 68.83332800000011) (-102.67859599999997 68.836929) (-102.64055599999995 68.84193400000004) (-102.61277799999993 68.84304800000001) (-102.59889199999986 68.84109500000005) (-102.60221899999999 68.83415200000007) (-102.60082999999997 68.813309)) ((-89.94444299999998 68.66220099999998) (-89.95638999999994 68.66165200000006) (-89.97416699999997 68.705826) (-89.99916099999996 68.73081999999994) (-90.01722699999993 68.74054000000007) (-90.02250700000002 68.74581900000004) (-90.02749599999999 68.75248699999997) (-90.02778599999999 68.75860600000004) (-90.02555799999993 68.771927) (-90.00306699999993 68.80664100000001) (-89.958618 68.83804299999997) (-89.94444299999998 68.84748800000006) (-89.93194599999998 68.85220300000009) (-89.9219359999999 68.8538670000001) (-89.91444399999995 68.85304300000013) (-89.781677 68.766663) (-89.78416399999992 68.76081800000009) (-89.791382 68.75248699999997) (-89.80888400000003 68.73332200000004) (-89.85749800000002 68.70054600000009) (-89.87748699999992 68.690811) (-89.94444299999998 68.66220099999998)) ((-114.35082999999997 68.87164300000006) (-114.37917299999992 68.86943100000002) (-114.39639299999999 68.86970500000012) (-114.429169 68.87359600000002) (-114.45333900000003 68.87942500000003) (-114.46305799999999 68.88275100000004) (-114.468613 68.88720699999999) (-114.471657 68.89248700000002) (-114.46056399999998 68.89526400000011) (-114.44444299999998 68.8961030000001) (-114.424713 68.89694200000002) (-114.37609899999995 68.8936000000001) (-114.340843 68.89054900000008) (-114.328888 68.887497) (-114.32333399999999 68.88304100000005) (-114.32861299999996 68.87692300000009) (-114.33805799999993 68.87359600000002) (-114.35082999999997 68.87164300000006)) ((-67.84777799999995 68.85192899999998) (-67.86389199999996 68.849426) (-67.88305699999995 68.84999099999999) (-67.89723200000003 68.85304300000013) (-67.908051 68.85720800000013) (-67.95638999999994 68.91526800000003) (-67.96055599999994 68.922485) (-67.96055599999994 68.92997700000006) (-67.95472699999993 68.93580600000013) (-67.94665499999996 68.940811) (-67.93804899999998 68.94442700000002) (-67.92388900000003 68.94859300000013) (-67.89222699999999 68.95166) (-67.87638899999996 68.9494170000001) (-67.86944599999998 68.94413800000007) (-67.83944699999995 68.91192600000011) (-67.83139 68.87580900000012) (-67.83306899999991 68.86137400000001) (-67.83750900000001 68.85636899999997) (-67.84777799999995 68.85192899999998)) ((-85.34167500000001 68.98359699999997) (-85.35166900000002 68.98109400000004) (-85.37916599999994 68.98193400000008) (-85.40722700000003 68.98442099999994) (-85.43721 68.99192800000009) (-85.44694499999997 68.99636800000007) (-85.45140099999998 69.00109900000001) (-85.45306399999998 69.00582900000006) (-85.44387799999987 69.01026900000011) (-85.41888399999999 69.00943000000012) (-85.36999500000002 69.001938) (-85.35472099999993 68.99775700000009) (-85.34222399999993 68.9933170000001) (-85.337784 68.98858599999994) (-85.34167500000001 68.98359699999997)) ((-89.90834000000001 68.91775500000011) (-89.915009 68.91331500000013) (-89.95249899999988 68.92637600000006) (-89.97833299999996 68.93386799999996) (-90 68.93757599999998) (-90.03195199999999 68.94303900000011) (-90.07556199999999 68.94802899999996) (-90.07055700000001 68.98193400000008) (-89.94638099999992 69.01026900000011) (-89.93360899999999 69.01165800000007) (-89.920837 69.01026900000011) (-89.91416900000002 69.00694300000004) (-89.91027799999995 69.00305200000014) (-89.90666199999998 68.922485) (-89.90834000000001 68.91775500000011)) ((-100.17555199999987 68.79470800000001) (-100.22083999999995 68.76443500000005) (-100.25446299999999 68.76915000000008) (-100.26917300000002 68.77221700000001) (-100.28555299999994 68.77415500000012) (-100.29915599999998 68.77331500000008) (-100.30860899999999 68.76887500000004) (-100.31639100000001 68.76249700000011) (-100.35749799999996 68.71527100000003) (-100.36694299999994 68.71054100000003) (-100.40722699999998 68.70803800000004) (-100.423607 68.709991) (-100.61332700000003 68.75804099999999) (-100.62304699999999 68.76193200000006) (-100.62805199999997 68.766388) (-100.632767 68.77609300000006) (-100.62581599999999 68.91249099999993) (-100.59999099999999 69.00054899999998) (-100.56111099999993 69.02581800000002) (-100.54360999999994 69.03665200000006) (-100.52916699999997 69.03665200000006) (-100.497772 69.03471400000012) (-100.41610700000001 69.02638200000013) (-100.38110399999994 69.02082800000011) (-100.35082999999997 69.0147090000001) (-100.34111000000001 69.01081800000003) (-100.33361799999994 69.00665300000003) (-100.32861300000002 69.00221300000004) (-100.32362399999994 68.99609399999997) (-100.328888 68.98997500000013) (-100.33168 68.98442099999994) (-100.33168 68.97943100000009) (-100.326683 68.97470100000004) (-100.31276700000001 68.96582000000012) (-100.23889200000002 68.924149) (-100.22888199999994 68.9202580000001) (-100.21665999999988 68.91693099999998) (-100.20361300000002 68.91554300000007) (-100.16027799999995 68.91526800000003) (-100.14362299999993 68.91331500000013) (-100.131104 68.909988) (-100.12638899999996 68.90554800000012) (-100.17194399999994 68.79942300000005) (-100.17555199999987 68.79470800000001)) ((-85.11944599999993 69.0147090000001) (-85.13221699999986 69.01304599999997) (-85.16610700000001 69.03109699999999) (-85.17027300000001 69.03581200000002) (-85.15556299999997 69.05609099999998) (-85.14555399999989 69.0583190000001) (-85.095551 69.04803500000008) (-85.06834399999997 69.0413670000001) (-85.06138599999991 69.03665200000006) (-85.07583599999992 69.03109699999999) (-85.11944599999993 69.0147090000001)) ((-85.265289 69.07249500000012) (-85.34388699999994 69.06303400000013) (-85.35777300000001 69.06359899999995) (-85.37304699999993 69.06776399999995) (-85.39277600000003 69.07666000000012) (-85.39723200000003 69.08137499999992) (-85.39889499999998 69.08610499999998) (-85.39250199999998 69.09137000000004) (-85.38027999999991 69.09582500000005) (-85.30139200000002 69.10415599999999) (-85.28778099999988 69.10470600000002) (-85.258896 69.10026600000015) (-85.24888599999991 69.09582500000005) (-85.24194299999999 69.09137000000004) (-85.245544 69.08610499999998) (-85.24665800000002 69.08137499999992) (-85.25306699999999 69.07609599999995) (-85.265289 69.07249500000012)) ((-99.99943499999995 68.94358800000003) (-100.006958 68.93942300000003) (-100.021118 68.93969699999997) (-100.03778099999988 68.94136000000009) (-100.12000299999994 68.95082100000008) (-100.16166699999997 68.96138000000013) (-100.18138099999999 68.96887200000003) (-100.19860799999998 68.97692900000004) (-100.20612299999988 68.98109400000004) (-100.23693800000001 69.00860599999999) (-100.25666799999999 69.02665699999994) (-100.25890399999992 69.03166199999998) (-100.25862099999995 69.04193100000003) (-100.23693800000001 69.08137499999992) (-100.23194899999993 69.08720399999999) (-100.21333300000003 69.09721400000006) (-100.12970699999994 69.13026400000012) (-100.09555099999994 69.11747700000012) (-100.05304699999999 69.10247800000002) (-100.03333299999991 69.09471100000007) (-100.02834299999995 69.09027100000009) (-99.978882 69.01388500000013) (-99.97694399999995 69.0038760000001) (-99.99943499999995 68.94358800000003)) ((-90.12471 69.04942299999999) (-90.12721299999987 69.04498299999995) (-90.13806199999999 69.04525799999999) (-90.23194899999999 69.06553600000001) (-90.24749800000001 69.07026700000011) (-90.27917500000001 69.09832800000004) (-90.27639799999986 69.12580900000006) (-90.26333599999992 69.14193699999993) (-90.26251199999996 69.14276100000006) (-90.25389099999995 69.14276100000006) (-90.14723199999997 69.10359199999999) (-90.125 69.055542) (-90.12471 69.04942299999999)) ((-101.66416900000002 69.0836030000001) (-101.67749000000003 69.08276400000011) (-101.69027699999998 69.08610499999998) (-101.69554099999993 69.09054600000007) (-101.69833399999993 69.09526100000011) (-101.71806300000003 69.17858899999993) (-101.715843 69.18914799999999) (-101.71112099999993 69.1952510000001) (-101.70361300000002 69.20166) (-101.695267 69.20694000000003) (-101.68443300000001 69.21081500000003) (-101.65834000000001 69.21360800000002) (-101.60166899999996 69.21554600000013) (-101.55860899999999 69.2166600000001) (-101.53527799999995 69.20942700000012) (-101.5202789999999 69.1974790000001) (-101.497772 69.17025800000005) (-101.49500299999994 69.16554300000001) (-101.49500299999994 69.16026299999993) (-101.49999999999994 69.1544340000001) (-101.55555699999991 69.10525500000011) (-101.563606 69.09999099999999) (-101.65139799999997 69.08554100000003) (-101.66416900000002 69.0836030000001)) ((-90.51251200000002 69.20248400000014) (-90.57556199999999 69.19859300000007) (-90.61332700000003 69.207764) (-90.777222 69.272491) (-90.7786099999999 69.31721500000015) (-90.77583299999998 69.32998699999996) (-90.76251200000002 69.34553499999998) (-90.75723299999999 69.34942600000005) (-90.74082900000002 69.35748300000006) (-90.69221500000003 69.37164300000012) (-90.67332499999992 69.37387100000007) (-90.65527299999997 69.37469500000003) (-90.63861099999997 69.37387100000007) (-90.608047 69.36970500000001) (-90.59500100000002 69.36526499999997) (-90.58250399999997 69.359711) (-90.55943300000001 69.34721400000001) (-90.54861499999998 69.33998100000002) (-90.47193900000002 69.2810970000001) (-90.46083099999993 69.26748700000002) (-90.45556599999998 69.23471100000012) (-90.45445299999989 69.22637900000012) (-90.45750399999997 69.22276300000004) (-90.51251200000002 69.20248400000014)) ((-78.41221599999989 69.37970000000013) (-78.39639299999993 69.37776199999996) (-78.33860800000002 69.3808140000001) (-78.30583200000001 69.37776199999996) (-78.291382 69.3749850000001) (-78.27972399999999 69.37025500000004) (-78.27084400000001 69.36415099999999) (-78.21139499999992 69.29998799999998) (-78.21083099999998 69.29443400000014) (-78.214447 69.28831500000013) (-78.31834400000002 69.23831200000001) (-78.396118 69.21054100000009) (-78.47250400000001 69.19136000000003) (-78.55139200000002 69.08915700000006) (-78.55665599999992 69.0836030000001) (-78.57223499999992 69.07331799999997) (-78.60194399999995 69.06608600000004) (-78.62777699999998 69.05859399999991) (-78.70722999999998 69.0147090000001) (-78.71501199999994 69.00972000000013) (-78.71806299999997 69.00360100000012) (-78.71665999999999 68.99664300000012) (-78.712784 68.98498500000011) (-78.71611000000001 68.9791560000001) (-78.725281 68.96887200000003) (-78.73500099999995 68.96360800000008) (-78.83029199999993 68.91304000000008) (-78.84028599999994 68.90860000000009) (-78.86749299999997 68.90054300000008) (-78.93443300000001 68.88859600000012) (-78.978882 68.88247700000011) (-79.033615 68.87719700000002) (-79.09527599999996 68.87275700000004) (-79.18527199999994 68.85331700000006) (-79.19415299999997 68.849426) (-79.1972199999999 68.83915700000011) (-79.20472699999999 68.83387800000014) (-79.216949 68.82998700000007) (-79.23889200000002 68.82748400000008) (-79.287216 68.83137499999998) (-79.35333299999996 68.84414700000002) (-79.3661039999999 68.84776300000004) (-79.38694800000002 68.85609399999998) (-79.39250199999987 68.86053500000008) (-79.39639299999993 68.86499000000009) (-79.400284 68.87191800000005) (-79.40222199999994 68.92359899999997) (-79.37943999999993 68.93165600000009) (-79.353882 68.94386300000008) (-79.33056599999998 68.958328) (-79.30943299999996 68.97360200000008) (-79.30387899999994 68.97831700000012) (-79.29276999999996 68.99581899999998) (-79.28306599999996 69.01277200000004) (-79.23889200000002 69.06637600000005) (-79.22721899999999 69.07638500000007) (-79.216949 69.0811000000001) (-79.14611799999994 69.0935970000001) (-79.04943800000001 69.10220300000003) (-78.98582499999998 69.09999099999999) (-78.97444199999995 69.10026600000015) (-78.96028099999995 69.10247800000002) (-78.86416599999995 69.141098) (-78.85583499999996 69.14553799999999) (-78.7491609999999 69.26110799999998) (-78.72193899999996 69.31053200000002) (-78.7266689999999 69.318604) (-78.72471599999994 69.33110000000005) (-78.722778 69.33610500000009) (-78.71611000000001 69.34027100000003) (-78.60694899999999 69.37136800000013) (-78.57749899999999 69.37719700000014) (-78.56861899999996 69.37886000000003) (-78.48998999999998 69.39109800000011) (-78.47084000000001 69.39221200000009) (-78.45861799999994 69.38998400000014) (-78.41221599999989 69.37970000000013)) ((-135.28890999999993 69.30941800000005) (-135.29751599999997 69.30497700000012) (-135.33138999999989 69.322769) (-135.34805299999994 69.33055100000013) (-135.38613899999996 69.34498600000006) (-135.39779699999997 69.34803799999997) (-135.440002 69.35582000000011) (-135.486938 69.36219800000009) (-135.515015 69.36747700000006) (-135.52694699999995 69.37052900000015) (-135.559998 69.38026400000007) (-135.56527700000004 69.384995) (-135.56555199999997 69.39054899999996) (-135.559998 69.39665200000013) (-135.54998799999998 69.39999400000005) (-135.52444499999996 69.40359500000011) (-135.50723300000004 69.40304600000013) (-135.42028799999997 69.39749100000006) (-135.365814 69.39359999999999) (-135.33776899999992 69.38859600000006) (-135.32806400000004 69.384995) (-135.27224699999988 69.35832199999999) (-135.271393 69.34693899999996) (-135.277222 69.32832299999995) (-135.28332499999988 69.31526200000002) (-135.28890999999993 69.30941800000005)) ((-76.95083599999987 69.395264) (-76.92361499999998 69.39359999999999) (-76.902222 69.39471399999996) (-76.80416899999994 69.40026900000004) (-76.787781 69.40248099999997) (-76.77917499999995 69.4038700000001) (-76.76083399999987 69.40914900000007) (-76.75140399999998 69.41276600000003) (-76.74444599999998 69.41693100000003) (-76.73277299999995 69.42276000000004) (-76.72332799999998 69.42359900000002) (-76.71640000000002 69.42221100000012) (-76.70584099999996 69.41886899999997) (-76.65222199999994 69.38638300000008) (-76.64472999999992 69.38136300000002) (-76.64388999999994 69.37442000000004) (-76.64666699999998 69.33692900000005) (-76.64889499999992 69.33194000000009) (-76.67639199999996 69.3060910000001) (-76.70639 69.30358899999999) (-76.718887 69.30165100000005) (-76.73693799999995 69.29637100000002) (-76.79943800000001 69.272491) (-76.92639200000002 69.21748400000007) (-76.93360899999993 69.21388200000013) (-76.93998699999997 69.20915200000007) (-76.945831 69.20359800000011) (-76.94943199999994 69.1974790000001) (-76.95056199999993 69.1933140000001) (-76.95889299999999 69.14248699999996) (-77.11805700000002 69.11943100000013) (-77.137787 69.11665299999993) (-77.17166099999992 69.11720299999996) (-77.21362299999998 69.12580900000006) (-77.23860199999996 69.13275099999998) (-77.25778200000002 69.13998400000003) (-77.28582799999992 69.153595) (-77.30139200000002 69.164154) (-77.32028199999996 69.18136600000003) (-77.38194299999986 69.24748200000005) (-77.38417099999998 69.26361099999997) (-77.38333099999994 69.27053800000004) (-77.35972599999997 69.39276100000006) (-77.35638399999993 69.39665200000013) (-77.34834299999994 69.401657) (-77.28832999999992 69.417755) (-77.25917099999992 69.42469800000003) (-77.18916299999995 69.438309) (-77.15361000000001 69.44442700000008) (-77.12998999999996 69.44525100000004) (-77.11361699999998 69.44165000000004) (-77.07556199999999 69.42831400000006) (-77.04333500000001 69.41720600000008) (-77.006958 69.40637200000003) (-76.9783329999999 69.39999400000005) (-76.95083599999987 69.395264)) ((-90.329453 69.23580900000002) (-90.34722899999997 69.23471100000012) (-90.36138899999997 69.23831200000001) (-90.50639299999995 69.329163) (-90.51000999999991 69.33471700000001) (-90.51445000000001 69.363876) (-90.50111399999997 69.3724820000001) (-90.491669 69.37664799999999) (-90.30194099999994 69.43441800000011) (-90.20527599999991 69.4458160000001) (-90.20083599999998 69.44442700000008) (-90.19972200000001 69.4391480000001) (-90.195267 69.41693100000003) (-90.178604 69.40998800000006) (-90.14973399999997 69.37553400000002) (-90.14834599999995 69.37025500000004) (-90.15472399999999 69.35081500000007) (-90.15972899999997 69.34526100000005) (-90.27166699999992 69.25555400000002) (-90.28860500000002 69.24941999999999) (-90.329453 69.23580900000002)) ((-135.592224 69.48220800000007) (-135.574432 69.44664000000006) (-135.61999499999996 69.4685970000001) (-135.6294249999999 69.47221400000006) (-135.665283 69.48136899999992) (-135.693604 69.486649) (-135.74081399999994 69.49304199999995) (-135.778351 69.49609400000008) (-135.81054700000004 69.49775699999998) (-135.81555200000003 69.50248700000003) (-135.8125 69.50804100000005) (-135.79528799999997 69.51666300000005) (-135.785553 69.51998900000007) (-135.77389500000004 69.52276599999999) (-135.76113899999996 69.52442900000005) (-135.74526999999995 69.5247040000001) (-135.666107 69.50582899999995) (-135.599426 69.48609899999997) (-135.592224 69.48220800000007)) ((-101.05304699999999 69.50443999999999) (-101.00611900000001 69.4869230000001) (-101.00862099999995 69.45027200000004) (-101.12526700000001 69.40138200000013) (-101.21861299999989 69.37136800000013) (-101.23029299999996 69.36859100000004) (-101.24305700000002 69.371918) (-101.26888999999994 69.37886000000003) (-101.27916700000003 69.382477) (-101.271118 69.38581800000003) (-101.256958 69.38665800000007) (-101.24526999999995 69.38943499999999) (-101.2369379999999 69.39471399999996) (-101.23166699999996 69.40081800000002) (-101.18888899999996 69.46971100000007) (-101.186394 69.47526599999998) (-101.22749299999992 69.49552900000003) (-101.23805199999998 69.499146) (-101.2538909999999 69.50027499999999) (-101.266953 69.49832200000003) (-101.31749699999995 69.51110799999992) (-101.38445300000001 69.53276100000005) (-101.38722199999995 69.53776600000009) (-101.358337 69.5669400000001) (-101.34973099999996 69.572495) (-101.34056099999992 69.57470700000005) (-101.27555799999993 69.58082600000006) (-101.26167299999992 69.58166500000004) (-101.07305899999994 69.53498800000011) (-101.06276699999995 69.53137200000009) (-101.05999800000001 69.52638200000001) (-101.05304699999999 69.50443999999999)) ((-96.66305499999993 69.56971700000003) (-96.56332399999997 69.56414799999999) (-96.46112099999999 69.56414799999999) (-96.4016719999999 69.56275900000003) (-96.37361099999998 69.56080600000007) (-96.35888699999987 69.55720500000001) (-96.35194399999995 69.55304000000001) (-96.3452759999999 69.54859900000008) (-96.343887 69.54359400000004) (-96.335556 69.534424) (-96.32861300000002 69.52998399999996) (-96.31639100000001 69.52638200000001) (-96.29167199999989 69.53109700000005) (-96.21806300000003 69.54637100000014) (-96.20722999999998 69.55053700000002) (-96.19833399999987 69.55664100000007) (-96.19444299999998 69.56192000000004) (-96.18443299999996 69.56721500000009) (-96.16972399999992 69.5669400000001) (-96.152222 69.56359900000007) (-96.13999899999993 69.5599820000001) (-96.13333099999994 69.55554200000006) (-96.13444500000003 69.55026200000003) (-96.13639799999999 69.54609700000003) (-96.10417199999995 69.49832200000003) (-96.10110499999996 69.49304199999995) (-96.097778 69.48332200000004) (-96.096115 69.46804800000001) (-96.09861799999999 69.45776399999994) (-96.14306599999992 69.35137900000001) (-96.14666699999998 69.34582499999999) (-96.16332999999997 69.34803799999997) (-96.23388699999998 69.359711) (-96.24861099999993 69.36303700000002) (-96.27000399999997 69.37081899999998) (-96.28860499999996 69.37886000000003) (-96.30499299999991 69.38749700000005) (-96.32528699999995 69.40026900000004) (-96.33361799999994 69.40971400000012) (-96.348343 69.42303500000008) (-96.38221699999991 69.44470200000012) (-96.40110800000002 69.45304899999991) (-96.43055700000002 69.45971700000007) (-96.46194499999996 69.46249399999999) (-96.50723299999999 69.4644320000001) (-96.524719 69.46748400000001) (-96.54888900000003 69.47499099999999) (-96.63082899999995 69.5122070000001) (-96.65417500000001 69.5249940000001) (-96.73666399999996 69.57666) (-96.73554999999999 69.58194000000003) (-96.72166399999992 69.58248900000001) (-96.69166599999988 69.58194000000003) (-96.676941 69.57832300000013) (-96.66305499999993 69.56971700000003)) ((-67.31054699999993 69.54914900000011) (-67.32417299999997 69.53387500000002) (-67.33168 69.53137200000009) (-67.35110500000002 69.53082300000011) (-67.38861099999997 69.53305100000006) (-67.47305299999994 69.53387500000002) (-67.49276699999996 69.53305100000006) (-67.53083799999996 69.52915999999999) (-67.5452729999999 69.52581800000007) (-67.55248999999998 69.52304100000015) (-67.5494379999999 69.51971400000002) (-67.50723299999999 69.51499899999999) (-67.49999999999994 69.51283300000006) (-67.49888599999997 69.51249700000011) (-67.48999000000003 69.50860600000004) (-67.48167399999994 69.50000000000011) (-67.49249299999985 69.49552900000003) (-67.50778200000002 69.49498000000011) (-67.573624 69.50665300000009) (-67.58555599999994 69.50749200000007) (-67.59889199999998 69.5063780000001) (-67.62666299999995 69.50054900000009) (-67.64222699999988 69.50027499999999) (-67.73194899999993 69.51361100000008) (-67.74444599999993 69.51582299999995) (-67.74972500000001 69.52110300000004) (-67.73944099999994 69.54081700000012) (-67.73083499999996 69.54443400000008) (-67.723053 69.54525800000005) (-67.70722999999998 69.54443400000008) (-67.68666100000002 69.54109199999999) (-67.67471299999988 69.54026800000003) (-67.66332999999997 69.54193099999992) (-67.57806399999998 69.559708) (-67.55027799999993 69.56553600000012) (-67.541382 69.56915300000003) (-67.531387 69.57638499999996) (-67.527222 69.58194000000003) (-67.48443599999996 69.59027100000014) (-67.42500299999995 69.58888200000013) (-67.394455 69.58499100000006) (-67.36721799999992 69.57832300000013) (-67.321396 69.56053199999997) (-67.314438 69.55664100000007) (-67.30943300000001 69.55276500000002) (-67.31054699999993 69.54914900000011)) ((-96.76055899999994 69.54553199999998) (-96.77000399999991 69.54359400000004) (-96.78666699999991 69.54553199999998) (-96.86888099999987 69.5558170000001) (-96.883896 69.55914300000012) (-96.88806199999999 69.563873) (-96.902222 69.5977630000001) (-96.900284 69.60220300000009) (-96.870544 69.60137900000012) (-96.85139500000002 69.599426) (-96.84083599999997 69.59748800000006) (-96.81639100000001 69.59027100000014) (-96.80943300000001 69.58581500000003) (-96.76640299999997 69.55497700000006) (-96.76194799999996 69.55053700000002) (-96.76055899999994 69.54553199999998)) ((-91.11000100000001 69.54942300000005) (-91.11915599999998 69.54832499999998) (-91.14028899999994 69.56080600000007) (-91.14250199999992 69.56498699999997) (-91.13639799999999 69.57554600000003) (-91.12138400000003 69.59304800000007) (-91.10888699999992 69.60220300000009) (-91.03721599999994 69.61499000000009) (-90.96916199999993 69.61831700000005) (-90.95973200000003 69.61943100000002) (-90.93749999999994 69.61637900000011) (-90.92304999999993 69.61137400000007) (-90.92027299999995 69.6080320000001) (-90.91915899999998 69.60609399999998) (-90.93083200000001 69.59915200000006) (-91.11000100000001 69.54942300000005)) ((-133.93222000000003 69.56025699999992) (-133.948059 69.56025699999992) (-133.96304299999997 69.56137100000012) (-133.98611499999998 69.56553600000012) (-134.01196299999992 69.57138100000003) (-134.01666299999994 69.57609600000006) (-134.01419099999998 69.58248900000001) (-134.010284 69.58554100000009) (-133.94528199999996 69.61331200000001) (-133.93362399999995 69.6160890000001) (-133.89446999999996 69.62109399999997) (-133.87997399999995 69.62191800000011) (-133.86581399999994 69.61914100000001) (-133.84472700000003 69.60081500000001) (-133.84695399999998 69.58888200000013) (-133.868042 69.56721500000009) (-133.87719699999997 69.56526199999996) (-133.93222000000003 69.56025699999992)) ((-95.48889200000002 69.56553600000012) (-95.45249899999993 69.55026200000003) (-95.37554899999998 69.51776100000012) (-95.366104 69.51361100000008) (-95.35972600000002 69.50915500000002) (-95.362213 69.49887099999995) (-95.40249599999999 69.383331) (-95.51583900000003 69.33082600000012) (-95.527222 69.32748400000003) (-95.53971899999999 69.32527199999993) (-95.60638399999993 69.31915300000009) (-95.62027 69.318604) (-95.63417099999992 69.31832900000012) (-95.69248999999996 69.31915300000009) (-95.706955 69.31944299999992) (-95.722778 69.32083100000006) (-95.73693800000001 69.32443200000006) (-95.741104 69.329163) (-95.74166899999994 69.33471700000001) (-95.73167399999994 69.37303199999997) (-95.72778299999987 69.37858599999993) (-95.716949 69.38275099999993) (-95.69387799999998 69.38943499999999) (-95.66915899999998 69.39415000000002) (-95.65777600000001 69.39721700000013) (-95.648346 69.40332000000006) (-95.66639700000002 69.49775699999998) (-95.66915899999998 69.50749200000007) (-95.69444299999998 69.54026800000003) (-95.70805399999995 69.54887400000013) (-95.72000100000002 69.55276500000002) (-95.7366639999999 69.55497700000006) (-95.81582600000002 69.56275900000003) (-95.82749899999993 69.559708) (-95.83168 69.5541530000001) (-95.82278400000001 69.51443500000005) (-95.81750499999993 69.50499000000002) (-95.80943299999996 69.49552900000003) (-95.79722599999997 69.48165899999998) (-95.862213 69.34803799999997) (-95.87222300000002 69.34275800000006) (-95.89944500000001 69.34082000000012) (-95.96167000000003 69.34637500000002) (-95.978882 69.34942600000005) (-95.99082900000002 69.35331700000012) (-96.01112399999988 69.47804300000007) (-96.00973499999998 69.48304700000006) (-95.91999800000002 69.595261) (-95.90916400000003 69.599426) (-95.78944399999995 69.63415500000008) (-95.77389499999992 69.6327510000001) (-95.62554899999992 69.6160890000001) (-95.61221299999994 69.61442599999998) (-95.48889200000002 69.56553600000012)) ((-138.86721799999992 69.58831800000002) (-138.87332200000003 69.58305400000006) (-138.88305699999995 69.5794370000001) (-138.91000399999996 69.57609600000006) (-138.945831 69.57887299999993) (-138.97720300000003 69.58305400000006) (-138.99609399999997 69.58415200000013) (-139.02307099999996 69.58082600000006) (-139.03418 69.57804899999996) (-139.05307 69.57054099999999) (-139.12109399999997 69.52915999999999) (-139.137787 69.53082300000011) (-139.33248899999995 69.56608599999993) (-139.32998699999996 69.57165500000013) (-139.32223499999992 69.57609600000006) (-139.26779199999993 69.60582000000005) (-139.24221799999992 69.61831700000005) (-139.232758 69.62191800000011) (-139.19973800000002 69.630539) (-139.144165 69.64498900000012) (-139.133057 69.64776600000005) (-139.12027 69.64999399999999) (-139.10333299999996 69.64804100000003) (-139.02029399999998 69.63333100000011) (-138.956116 69.61970500000012) (-138.92111199999994 69.61053500000008) (-138.88055399999996 69.59693900000013) (-138.872772 69.59275800000006) (-138.86721799999992 69.58831800000002)) ((-135.51724199999995 69.56915300000003) (-135.54305999999997 69.56553600000012) (-135.55721999999997 69.56805400000007) (-135.57138099999997 69.57693499999999) (-135.581116 69.58055100000007) (-135.5883179999999 69.58471700000013) (-135.591095 69.58998099999997) (-135.5894469999999 69.59609999999998) (-135.58612099999993 69.601654) (-135.578888 69.60664400000002) (-135.55471799999992 69.62025499999999) (-135.51196299999998 69.64166300000011) (-135.50030500000003 69.64443999999997) (-135.43972799999995 69.65248100000008) (-135.42388900000003 69.65248100000008) (-135.4097289999999 69.64999399999999) (-135.39779699999997 69.64694200000008) (-135.40918 69.63499500000012) (-135.4655459999999 69.58554100000009) (-135.474152 69.58137500000004) (-135.505585 69.57165500000013) (-135.51724199999995 69.56915300000003)) ((-67.92027300000001 69.521927) (-67.93527199999994 69.5188750000001) (-68.002228 69.52665700000006) (-68.04943799999995 69.53387500000002) (-68.23889200000002 69.57026700000006) (-68.24888599999991 69.59664900000013) (-68.07833900000003 69.66526800000008) (-67.9708399999999 69.70193500000005) (-67.95973199999997 69.70498700000002) (-67.94638099999997 69.7063750000001) (-67.89555399999995 69.70860300000004) (-67.889725 69.70832800000005) (-67.86972000000003 69.70082100000008) (-67.82112099999995 69.67637600000006) (-67.83168 69.60192899999998) (-67.910278 69.52665700000006) (-67.92027300000001 69.521927)) ((-134.26058999999987 68.73353599999996) (-134.2324829999999 68.7061000000001) (-134.22778299999993 68.70138500000007) (-134.227264 68.69642600000009) (-134.23580900000002 68.69497700000011) (-134.267792 68.6958160000001) (-134.35693400000002 68.70304900000008) (-134.38861099999997 68.70721400000008) (-134.436127 68.71360800000014) (-134.45748899999995 68.71914700000013) (-134.46194499999996 68.72387700000013) (-134.49554399999994 68.75221300000004) (-134.53640699999994 68.78692600000005) (-134.6694639999999 68.89444000000015) (-134.741669 68.93553199999997) (-134.75500499999987 68.94442700000002) (-134.7669679999999 68.95332300000013) (-134.78306599999996 68.96535500000005) (-134.82583599999998 68.97886699999998) (-134.852783 68.97637900000001) (-134.892242 68.971924) (-134.904724 68.969986) (-134.914734 68.96665999999999) (-134.92028799999997 68.96081500000008) (-134.91973899999994 68.9494170000001) (-134.91723599999995 68.94413800000007) (-134.91641199999998 68.9269260000001) (-134.92028799999997 68.91470300000003) (-134.925842 68.90860000000009) (-134.93307499999997 68.903595) (-134.941376 68.89942900000011) (-134.961121 68.89248700000002) (-134.97500599999995 68.89166300000005) (-134.99999999999994 68.89208200000007) (-135.00750699999998 68.89221200000003) (-135.126099 68.89942900000011) (-135.14196800000002 68.90138200000007) (-135.167236 68.90721100000007) (-135.17083699999995 68.91110200000014) (-135.17807 68.92082200000004) (-135.18084699999997 68.926086) (-135.20165999999995 68.9327550000001) (-135.2333069999999 68.934708) (-135.262787 68.93359400000003) (-135.36111500000004 68.92665100000005) (-135.39196799999996 68.92665100000005) (-135.42138699999987 68.92886400000003) (-135.444458 68.93498199999993) (-135.45388799999995 68.938583) (-135.46081499999997 68.9427490000001) (-135.76916499999993 68.89637800000008) (-135.808044 68.89526400000011) (-135.843323 68.89721700000007) (-135.882477 68.90525800000012) (-135.90585299999992 68.91137699999996) (-135.94805899999994 68.92469800000009) (-135.99527 68.94247400000006) (-136.002502 68.94664) (-136.00527999999997 68.95193500000005) (-135.98916599999995 69.0291600000001) (-135.98525999999998 69.03581200000002) (-135.97833299999996 69.04081700000006) (-135.968597 69.04443400000002) (-135.95443699999998 69.0455320000001) (-135.8886109999999 69.026093) (-135.85012800000004 69.00740100000013) (-135.83389299999993 68.99832200000014) (-135.8288879999999 68.99359100000004) (-135.80248999999992 68.98942600000004) (-135.77002 68.98915099999999) (-135.64889499999998 68.99192800000009) (-135.63473499999998 68.99304200000006) (-135.57861300000002 69.00610400000011) (-135.52557399999995 69.02110299999998) (-135.517792 69.02388000000008) (-135.529449 69.02693199999999) (-135.720825 69.04609700000015) (-135.91583300000002 69.08831800000013) (-135.92748999999998 69.09137000000004) (-135.93472299999996 69.09553500000004) (-135.95138499999996 69.14276100000006) (-135.96582 69.19775400000009) (-135.967224 69.21470600000009) (-135.95944199999997 69.22831700000006) (-135.94695999999993 69.23942599999998) (-135.92611699999998 69.25471500000003) (-135.915009 69.25749200000013) (-135.898621 69.25555400000002) (-135.891388 69.25138900000002) (-135.82138099999986 69.21527100000014) (-135.75140399999998 69.17942800000009) (-135.741943 69.17581200000006) (-135.666107 69.14694199999997) (-135.65667699999995 69.14360000000005) (-135.56750499999993 69.11775200000011) (-135.5527949999999 69.11665299999993) (-135.486938 69.11331200000012) (-135.49581899999993 69.124146) (-135.60720799999996 69.14526400000005) (-135.6305539999999 69.15138200000001) (-135.64001499999995 69.15498400000013) (-135.81082199999997 69.242752) (-135.83999600000004 69.25943000000007) (-135.85220300000003 69.26805100000001) (-135.85498 69.27331500000014) (-135.8558349999999 69.28471400000006) (-135.854156 69.290817) (-135.84860199999997 69.29693600000002) (-135.8416749999999 69.3019260000001) (-135.83331299999998 69.30636600000008) (-135.803894 69.31666600000005) (-135.792511 69.31944299999992) (-135.57192999999995 69.33859300000006) (-135.5561219999999 69.33888200000001) (-135.48580900000002 69.33526599999999) (-135.44860799999998 69.33221400000002) (-135.41332999999997 69.32304399999998) (-135.39196799999996 69.30998199999999) (-135.38723800000002 69.30525200000011) (-135.379974 69.30108600000005) (-135.37027 69.297485) (-135.323334 69.28526299999999) (-135.25778200000002 69.27137800000008) (-135.24386599999997 69.2686000000001) (-135.22970599999996 69.26609800000006) (-135.18554699999993 69.25888099999992) (-135.17056300000002 69.25776699999994) (-135.16223099999996 69.26193199999994) (-135.15805099999994 69.2686000000001) (-135.15835599999997 69.27442900000011) (-135.16500899999994 69.27916000000005) (-135.174438 69.28305100000011) (-135.23971599999987 69.3316650000001) (-135.28695699999992 69.41360500000002) (-135.28723100000002 69.41914400000002) (-135.285278 69.42553700000013) (-135.278076 69.430542) (-135.26834099999996 69.43414300000006) (-135.16082800000004 69.47360200000014) (-135.15084799999994 69.4769290000001) (-135.137787 69.47859200000005) (-134.996643 69.48414600000001) (-134.91528299999993 69.48525999999998) (-134.69473300000004 69.48165899999998) (-134.67749000000003 69.48082) (-134.64251699999988 69.47720300000003) (-134.62832599999996 69.47442600000011) (-134.60861199999988 69.4685970000001) (-134.570831 69.45387300000004) (-134.55917399999987 69.45082100000013) (-134.53112799999997 69.44552600000009) (-134.49609399999997 69.44192500000003) (-134.48165900000004 69.44274899999999) (-134.46859699999993 69.44442700000008) (-134.43832399999997 69.45471200000003) (-134.42083699999995 69.46304299999991) (-134.413635 69.468323) (-134.407776 69.474152) (-134.40557899999993 69.48027000000013) (-134.40835600000003 69.49136400000003) (-134.41778599999992 69.50054900000009) (-134.43667600000003 69.50804100000005) (-134.448334 69.51110799999992) (-134.46887200000003 69.54275500000006) (-134.40167199999996 69.63832100000013) (-134.40249600000004 69.649719) (-134.406677 69.65443400000004) (-134.44277999999997 69.68081699999999) (-134.48580899999996 69.70610000000005) (-134.49054 69.71081500000008) (-134.49304199999995 69.71581999999995) (-134.49108899999993 69.72221400000001) (-134.476379 69.72303799999997) (-134.30972299999996 69.71581999999995) (-134.20388799999995 69.66886899999997) (-134.17748999999998 69.64027400000009) (-134.19638099999992 69.62109399999997) (-134.20388799999995 69.6160890000001) (-134.24026500000002 69.58581500000003) (-134.24472000000003 69.579163) (-134.24472000000003 69.57331800000003) (-134.24221799999998 69.56805400000007) (-134.113312 69.53887900000001) (-134.09860199999997 69.53997800000002) (-134.081116 69.54832499999998) (-134.06195099999997 69.5558170000001) (-134.037506 69.56025699999992) (-134.02002 69.559418) (-134.00836200000003 69.55609100000004) (-134.00140399999998 69.55192600000004) (-133.977783 69.528595) (-133.961121 69.50915500000002) (-133.94723499999992 69.5063780000001) (-133.91833499999996 69.50833100000006) (-133.87914999999998 69.51332100000008) (-133.86749299999997 69.51582299999995) (-133.86026000000004 69.52082800000005) (-133.82250999999997 69.55525200000005) (-133.823151 69.5600740000001) (-133.81973300000004 69.56498699999997) (-133.801941 69.57360800000009) (-133.79168699999997 69.57693499999999) (-133.77835099999993 69.57638499999996) (-133.75057999999996 69.54748500000011) (-133.74832199999992 69.54220599999996) (-133.79861500000004 69.4810940000001) (-133.81805399999996 69.46415700000011) (-133.85055499999999 69.4458160000001) (-133.87692300000003 69.43304400000011) (-133.92083699999995 69.41220100000004) (-133.941376 69.405258) (-133.96444699999995 69.40026900000004) (-134.08554100000003 69.34054600000002) (-134.21112099999993 69.27609299999995) (-134.21832299999988 69.2711030000001) (-134.275574 69.22608900000012) (-134.27999899999986 69.21943700000003) (-134.28222699999998 69.21331800000002) (-134.281952 69.20748900000001) (-134.27722199999994 69.20277399999998) (-134.27471899999995 69.19775400000009) (-134.27444500000001 69.18609600000008) (-134.28030399999994 69.18026700000007) (-134.287781 69.17526200000003) (-134.38363599999997 69.11831699999999) (-134.39779699999997 69.11747700000012) (-134.44888300000002 69.11970500000007) (-134.47720300000003 69.11804200000012) (-134.53112799999997 69.11276200000009) (-134.5680539999999 69.10664400000013) (-134.585266 69.09803800000003) (-134.67361500000004 69.01776100000001) (-134.67584199999993 69.01138300000008) (-134.675568 69.00582900000006) (-134.669739 68.9727630000001) (-134.67166099999997 68.966385) (-134.666656 68.95610000000005) (-134.652802 68.94775400000015) (-134.60665900000004 68.93525699999998) (-134.58831799999996 68.92804000000007) (-134.51419099999987 68.887497) (-134.50723300000004 68.88304100000005) (-134.48858599999994 68.87025499999999) (-134.47470099999998 68.85609399999998) (-134.4641719999999 68.84248400000007) (-134.45693999999997 68.82693499999999) (-134.4475099999999 68.81192000000004) (-134.44027700000004 68.80192599999998) (-134.43112199999996 68.79275500000006) (-134.417236 68.78442399999994) (-134.39889499999998 68.77720599999998) (-134.37609899999995 68.770828) (-134.3511049999999 68.76499899999999) (-134.29666099999992 68.7544400000001) (-134.28750599999995 68.75082400000008) (-134.280579 68.746643) (-134.26058999999987 68.73353599999996)) ((-102.14527900000002 69.64860499999998) (-102.160278 69.64833100000004) (-102.17832900000002 69.651093) (-102.21028099999995 69.66220099999998) (-102.22609699999992 69.6702580000001) (-102.23166700000002 69.67469800000015) (-102.24305699999996 69.69413800000012) (-102.243607 69.70443699999998) (-102.241379 69.71026599999999) (-102.23416099999997 69.71666000000005) (-102.22556299999991 69.721924) (-102.215843 69.72665400000005) (-102.15778399999999 69.73609900000008) (-102.13474300000001 69.7247010000001) (-102.12943999999993 69.72026100000005) (-102.12332199999997 69.71276899999998) (-102.12026999999989 69.70803800000004) (-102.11721799999998 69.69775399999997) (-102.11554699999999 69.66665599999999) (-102.11805700000002 69.66081200000013) (-102.12277199999994 69.65498400000007) (-102.13221699999991 69.65054299999997) (-102.14527900000002 69.64860499999998)) ((-77.94665500000002 69.64665200000007) (-77.94499200000001 69.63970900000004) (-77.94610599999999 69.63333100000011) (-77.96583599999997 69.62498500000004) (-78.07028200000002 69.59275800000006) (-78.16999799999996 69.57054099999999) (-78.31193499999995 69.54304500000012) (-78.39778099999995 69.52082800000005) (-78.50500499999987 69.48887600000006) (-78.57640100000003 69.50166300000006) (-78.58805799999993 69.506104) (-78.61138899999992 69.50943000000001) (-78.62609899999995 69.50999500000006) (-78.64611799999989 69.50999500000006) (-78.66444399999989 69.50749200000007) (-78.68527199999994 69.49832200000003) (-78.69804399999998 69.48915100000005) (-78.71888699999994 69.47998000000013) (-78.75695799999994 69.46748400000001) (-78.80194099999994 69.455826) (-78.81750499999993 69.45277400000009) (-78.83860800000002 69.45138500000007) (-78.85305800000003 69.45416300000011) (-78.86193800000001 69.45748900000012) (-78.86833199999995 69.46054100000003) (-78.87388599999986 69.46470600000004) (-78.88027999999997 69.4769290000001) (-78.87860099999989 69.47998000000013) (-78.87416099999996 69.4869230000001) (-78.865005 69.49498000000011) (-78.841385 69.50804100000005) (-78.82611099999997 69.51165799999995) (-78.80972299999996 69.51416000000006) (-78.78332499999999 69.52110300000004) (-78.76417500000002 69.52720599999998) (-78.71777299999997 69.54470800000001) (-78.69526699999994 69.55693100000008) (-78.67443800000001 69.56832900000006) (-78.65278599999994 69.58194000000003) (-78.62805199999997 69.60859700000015) (-78.61555499999992 69.61747700000001) (-78.58639499999992 69.63192700000013) (-78.57583599999998 69.63638300000002) (-78.5225069999999 69.64833100000004) (-78.4997249999999 69.65054299999997) (-78.4827729999999 69.64942899999994) (-78.400284 69.643326) (-78.26083399999993 69.659988) (-78.24527 69.66360500000013) (-78.229446 69.67164600000001) (-78.22805799999998 69.67747500000007) (-78.23693800000001 69.68858300000005) (-78.24499500000002 69.69331399999999) (-78.25695799999994 69.70582599999994) (-78.26362599999993 69.71360800000008) (-78.26916499999993 69.72804300000001) (-78.26861599999995 69.73220800000001) (-78.26583899999997 69.73387100000014) (-78.18055700000002 69.75221300000004) (-78.16416899999996 69.75248699999997) (-78.15417499999995 69.75054900000003) (-78.141953 69.74247700000006) (-78.08000199999998 69.72943099999992) (-78.01834100000002 69.70832800000005) (-77.99276700000001 69.6994170000001) (-77.98277300000001 69.69470200000006) (-77.97389199999998 69.68858300000005) (-77.96611000000001 69.68165599999998) (-77.95556599999998 69.66832) (-77.94665500000002 69.64665200000007)) ((-82.50778199999996 69.70498700000002) (-82.54277000000002 69.70416300000005) (-82.678879 69.72637900000001) (-82.72000100000002 69.73332199999999) (-82.865005 69.770828) (-82.87777699999992 69.77499400000005) (-82.87943999999993 69.77859500000011) (-82.85638399999999 69.80026199999998) (-82.84666400000003 69.80304000000012) (-82.83917199999996 69.80386400000009) (-82.81166100000002 69.80609099999998) (-82.80305499999992 69.80581700000005) (-82.796112 69.805252) (-82.77610800000002 69.80415300000004) (-82.67777999999993 69.79470799999996) (-82.62999000000002 69.789154) (-82.56388900000002 69.77859500000011) (-82.46028100000001 69.76165800000012) (-82.45306399999998 69.72053499999998) (-82.45500199999992 69.71443200000004) (-82.46722399999999 69.70999099999995) (-82.50778199999996 69.70498700000002)) ((-79.42304999999999 69.78498800000006) (-79.33168 69.71331800000007) (-79.32833899999997 69.70721400000008) (-79.32945299999994 69.70138500000002) (-79.33389299999999 69.69747899999999) (-79.35472099999998 69.68803400000007) (-79.48222399999992 69.6461030000001) (-79.54499799999996 69.62664799999993) (-79.57167099999998 69.61943100000002) (-79.600281 69.61276199999998) (-79.63166799999993 69.60887100000008) (-79.95750399999997 69.61998) (-79.96333300000003 69.62637300000011) (-79.97416699999985 69.63165299999997) (-79.99499500000002 69.638596) (-80.02194199999991 69.64359999999994) (-80.03805499999999 69.64526399999994) (-80.0594329999999 69.64387499999998) (-80.06555200000003 69.64166300000011) (-80.081955 69.630539) (-80.08277900000002 69.62692300000015) (-80.07888799999995 69.62220800000011) (-80.03277600000001 69.58720400000004) (-79.99137899999994 69.56887800000004) (-79.93777499999993 69.53193700000008) (-79.93554699999999 69.52720599999998) (-79.93638599999997 69.52360499999992) (-79.94027699999992 69.5188750000001) (-79.97444199999995 69.5022130000001) (-79.99388099999993 69.49443100000013) (-80.01194800000002 69.49165299999999) (-80.02111799999994 69.49275200000011) (-80.04611199999994 69.49775699999998) (-80.20056199999999 69.53082300000011) (-80.214722 69.58665500000006) (-80.35360699999995 69.61470000000008) (-80.46194499999996 69.65637200000015) (-80.49276700000001 69.66499300000004) (-80.577789 69.66748000000013) (-80.74360699999994 69.66609200000005) (-80.761124 69.66693099999998) (-80.79333499999996 69.6702580000001) (-80.80444299999988 69.67553700000008) (-80.80943300000001 69.68304400000005) (-80.80943300000001 69.68942300000009) (-80.80139200000002 69.70109600000012) (-80.73083500000001 69.74636800000013) (-80.72500600000001 69.74914600000011) (-80.7202759999999 69.75054900000003) (-80.64973399999997 69.74859600000008) (-80.52000399999997 69.72082500000005) (-80.49861099999998 69.75971999999996) (-80.50111400000003 69.76249700000005) (-80.50279199999994 69.76638800000012) (-80.50445599999995 69.77499400000005) (-80.50306699999999 69.77998400000013) (-80.49999999999994 69.78332499999999) (-80.49055499999997 69.78858900000012) (-80.46665999999999 69.79193100000009) (-80.38890100000003 69.79998800000004) (-80.37138400000003 69.79914900000006) (-80.34028599999999 69.79470799999996) (-80.33860799999991 69.79054299999996) (-80.34306300000003 69.78414900000013) (-80.34445199999999 69.77693199999999) (-80.32972699999999 69.77415500000012) (-80.31471299999998 69.77804599999996) (-80.289444 69.78665200000006) (-80.26417500000002 69.79525799999999) (-80.24665799999997 69.79859900000002) (-80.23277300000001 69.79942299999999) (-80.20666499999993 69.79803500000008) (-80.19166599999988 69.79525799999999) (-80.18276999999995 69.79275500000006) (-80.12916599999994 69.76554900000002) (-80.07305899999994 69.74971000000005) (-79.972778 69.72331200000008) (-79.86277799999993 69.74108899999999) (-79.76806599999998 69.75277699999998) (-79.75639299999989 69.77886999999993) (-79.75250199999999 69.78359999999998) (-79.74472000000003 69.78858900000012) (-79.68721 69.81469700000008) (-79.67832900000002 69.81442300000015) (-79.512787 69.80693100000002) (-79.47694399999995 69.8035890000001) (-79.453888 69.79887400000007) (-79.4424899999999 69.794983) (-79.43167099999994 69.78970300000009) (-79.42304999999999 69.78498800000006)) ((-83.67443799999995 69.71998600000006) (-83.68859899999995 69.71943699999991) (-83.71777299999997 69.72331200000008) (-83.776947 69.73275800000005) (-83.80694599999998 69.73942600000004) (-83.89889499999998 69.76443499999999) (-83.908615 69.76915000000002) (-83.91722099999998 69.77859500000011) (-83.91305499999999 69.79332000000005) (-83.90083300000003 69.80831899999993) (-83.88694800000002 69.81860400000005) (-83.87388599999991 69.8230440000001) (-83.86027499999994 69.824432) (-83.83250399999997 69.82527200000004) (-83.57749899999999 69.7977600000001) (-83.53332499999993 69.79136699999992) (-83.52917499999995 69.78665200000006) (-83.54222099999998 69.78332499999999) (-83.57667500000002 69.78082300000005) (-83.601944 69.77998400000013) (-83.695831 69.76388499999996) (-83.708618 69.75942999999995) (-83.712784 69.7544400000001) (-83.70584099999996 69.75000000000006) (-83.693329 69.74552900000015) (-83.66250600000001 69.73692300000005) (-83.65583800000002 69.73220800000001) (-83.65417500000001 69.72720300000015) (-83.66111799999999 69.72221400000001) (-83.67443799999995 69.71998600000006)) ((-82.42944299999999 69.78221099999996) (-82.44415300000003 69.77832000000012) (-82.470551 69.78137200000003) (-82.51333599999987 69.78831500000001) (-82.52610799999997 69.79054299999996) (-82.55139200000002 69.79664600000012) (-82.564438 69.80081200000001) (-82.68859900000001 69.85081500000013) (-82.67443800000001 69.87498499999998) (-82.67304999999999 69.87580900000012) (-82.660553 69.87608300000005) (-82.63639799999999 69.87109400000008) (-82.55583199999995 69.86080900000013) (-82.51722699999993 69.85415599999999) (-82.44610599999999 69.82222000000013) (-82.43666100000002 69.81749000000008) (-82.42887899999994 69.81219500000003) (-82.42666600000001 69.79998800000004) (-82.42582700000003 69.79304500000006) (-82.42610199999996 69.786926) (-82.42944299999999 69.78221099999996)) ((-91.52000399999991 69.73136900000009) (-91.535278 69.72692900000004) (-91.54943800000001 69.72720300000015) (-91.56027199999988 69.72831699999995) (-91.725281 69.78414900000013) (-91.73554999999999 69.789154) (-91.73332199999987 69.79193100000009) (-91.47582999999997 69.87553400000007) (-91.449432 69.87914999999998) (-91.43388399999998 69.88053899999994) (-91.41944899999999 69.87997400000012) (-91.40916400000003 69.87498499999998) (-91.45666499999999 69.77499400000005) (-91.46333299999998 69.76361100000003) (-91.470551 69.75555400000007) (-91.52000399999991 69.73136900000009)) ((-91.81916799999993 69.82165500000008) (-91.83389299999999 69.82110599999993) (-91.84472700000003 69.82222000000013) (-91.86000100000001 69.838593) (-91.86416600000001 69.84414699999996) (-91.86054999999999 69.84887700000002) (-91.84944200000001 69.85887100000002) (-91.82112099999989 69.868042) (-91.78250100000002 69.87776200000008) (-91.76390100000003 69.88026400000012) (-91.745544 69.88165300000014) (-91.72860700000001 69.88081399999999) (-91.71305799999999 69.878311) (-91.70111099999997 69.87525900000009) (-91.64445499999994 69.85942100000005) (-91.639725 69.85498000000013) (-91.65167199999996 69.85108900000006) (-91.66639700000002 69.847488) (-91.81916799999993 69.82165500000008)) ((-97.39778100000001 69.68553200000002) (-97.41194200000001 69.68470800000006) (-97.44193999999993 69.68553200000002) (-97.45584100000002 69.68470800000006) (-97.46833800000002 69.68248000000011) (-97.47972099999998 69.67886400000003) (-97.489441 69.67387400000001) (-97.49027999999987 69.6685940000001) (-97.476944 69.65470900000003) (-97.398346 69.59748800000006) (-97.391388 69.59332300000005) (-97.37887599999993 69.59248400000013) (-97.372772 69.5983280000001) (-97.35194399999995 69.63136299999996) (-97.35082999999997 69.63665800000007) (-97.34750400000001 69.64221200000003) (-97.32972699999988 69.66970800000007) (-97.31639100000001 69.686646) (-97.30387899999994 69.69831799999992) (-97.28916899999996 69.69802900000002) (-97.27389499999998 69.69470200000006) (-97.22639500000002 69.67553700000008) (-97.20695499999994 69.66748000000013) (-97.11389200000002 69.62220800000011) (-97.10694899999993 69.617752) (-97.10360700000001 69.61415099999994) (-97.101944 69.60914600000007) (-97.10278299999993 69.6038670000001) (-97.09944200000001 69.59414700000002) (-97.09056099999998 69.58499100000006) (-97.06443799999994 69.57276900000011) (-96.95556599999998 69.52331500000008) (-96.879166 69.49136400000003) (-96.86694299999999 69.48776200000009) (-96.63778699999995 69.43719499999997) (-96.50250199999994 69.40971400000012) (-96.32028200000002 69.35470599999996) (-96.30139199999996 69.34664899999996) (-96.20889299999999 69.30693100000013) (-96.20222499999994 69.30276500000002) (-96.18998699999997 69.28887900000007) (-96.17222600000002 69.26527400000009) (-96.170547 69.26054400000004) (-96.1719359999999 69.25526400000001) (-96.17555199999993 69.24971) (-96.193329 69.23748800000004) (-96.20333900000003 69.23248299999995) (-96.20973200000003 69.22665399999994) (-96.21305799999999 69.21110500000003) (-96.22361799999993 69.14193699999993) (-96.23500099999995 69.0641480000001) (-96.23361199999988 69.05941800000005) (-96.22972099999998 69.05470300000002) (-96.22555499999999 69.04998799999998) (-96.218887 69.0458220000001) (-96.19526699999994 69.03831500000001) (-96.1663969999999 69.03137199999998) (-96.1324919999999 69.02499400000005) (-96.11888099999993 69.02554299999997) (-96.11527999999998 69.03082300000005) (-96.11389199999996 69.03610200000003) (-96.12999000000002 69.05470300000002) (-96.152222 69.10304300000007) (-96.15695199999999 69.16331500000007) (-96.15583800000002 69.16859400000004) (-96.1494449999999 69.17442300000005) (-96.073624 69.23165899999998) (-96.05972300000002 69.23220800000013) (-96.04777499999989 69.22831700000006) (-96.04110700000001 69.22387700000007) (-95.95556599999992 69.14193699999993) (-95.95167500000002 69.13749700000011) (-95.92443800000001 69.0894320000001) (-95.92582700000003 69.08442700000006) (-95.93472300000002 69.07832300000001) (-95.9536129999999 69.06721500000003) (-95.97138999999993 69.05497699999995) (-95.97778299999999 69.04914900000006) (-95.978882 69.04386899999997) (-95.97084000000001 69.03471400000012) (-95.93859900000001 69.0038760000001) (-95.92555199999998 68.99525500000004) (-95.843887 68.92303500000003) (-95.82028200000002 68.87025499999999) (-95.770554 68.89109800000006) (-95.756958 68.89137300000004) (-95.74583399999995 68.88859600000012) (-95.67416399999996 68.86998000000011) (-95.6702729999999 68.86554000000012) (-95.66860999999994 68.86053500000008) (-95.66749599999997 68.855545) (-95.67138699999998 68.85026600000003) (-95.66722099999998 68.83526600000005) (-95.66332999999997 68.83082600000006) (-95.65417500000001 68.82665999999995) (-95.62609899999995 68.82665999999995) (-95.57583599999998 68.83027600000003) (-95.55027799999988 68.833054) (-95.52833599999991 68.84027100000009) (-95.51028400000001 68.85247800000008) (-95.48998999999998 68.86164900000006) (-95.44665500000002 68.87914999999998) (-95.42471299999994 68.88665800000001) (-95.38999899999999 68.89526400000011) (-95.37805200000003 68.89776599999999) (-95.365005 68.89915500000001) (-95.35139500000002 68.89942900000011) (-95.335556 68.89721700000007) (-95.321396 68.8936000000001) (-95.24027999999998 68.86692800000003) (-95.22888199999994 68.86303700000013) (-95.21055599999994 68.85470600000002) (-95.206955 68.85026600000003) (-95.21083099999998 68.84471100000013) (-95.26306199999999 68.80276500000014) (-95.273056 68.79748500000011) (-95.47639500000002 68.71192900000011) (-95.54361 68.70248400000003) (-95.53999299999992 68.70803800000004) (-95.53889500000002 68.71331800000013) (-95.53889500000002 68.72331200000013) (-95.54638699999998 68.73248300000006) (-95.55943300000001 68.74136400000003) (-95.56834400000002 68.74552900000003) (-95.59388699999994 68.75277700000004) (-95.60804699999989 68.75332600000013) (-95.62193299999996 68.75277700000004) (-95.79055800000003 68.73719800000009) (-95.80166600000001 68.73387099999997) (-95.848343 68.66998300000012) (-95.85972600000002 68.65332000000006) (-95.98889199999996 68.62164300000012) (-96.00083899999993 68.61943100000002) (-96.14973399999991 68.55720500000001) (-96.256393 68.50332600000002) (-96.26251200000002 68.49748199999999) (-96.26472499999988 68.48719800000015) (-96.27084400000001 68.48136899999997) (-96.29138199999994 68.47303800000003) (-96.30221599999993 68.46971100000013) (-96.31388899999996 68.46720900000003) (-96.50361599999991 68.44609100000014) (-96.53056300000003 68.444977) (-96.71749899999992 68.47499099999999) (-96.76834100000002 68.48526000000004) (-96.91389500000002 68.51805100000013) (-96.92832899999996 68.52137800000008) (-97.09445199999988 68.53915400000005) (-97.09555099999994 68.53414900000001) (-97.09889199999998 68.528595) (-97.11999499999996 68.52082800000005) (-97.13082899999995 68.51748700000002) (-97.14250199999998 68.51499900000005) (-97.15417500000001 68.51277199999998) (-97.181107 68.51138299999997) (-97.46000700000002 68.53414900000001) (-97.47500599999995 68.53553799999997) (-97.50611899999996 68.54193099999998) (-97.55332900000002 68.55664100000007) (-97.57417299999992 68.56414800000005) (-97.583618 68.56805400000007) (-97.66722099999993 68.60386699999998) (-97.72721899999999 68.63220199999995) (-97.91860999999994 68.67553700000013) (-98.020554 68.69358800000009) (-98.03555299999994 68.69470200000006) (-98.04998799999998 68.69497700000011) (-98.06277499999999 68.69358800000009) (-98.07833899999997 68.6833190000001) (-98.08389299999999 68.67747500000007) (-98.09333799999996 68.67221100000006) (-98.10499599999997 68.66970800000013) (-98.11999499999996 68.6708220000001) (-98.12971500000003 68.67469800000015) (-98.24027999999998 68.72082500000005) (-98.26112399999994 68.73359700000003) (-98.281677 68.74636800000013) (-98.29055800000003 68.75555400000007) (-98.29249599999997 68.76054399999998) (-98.29194599999994 68.76582300000013) (-98.28611799999993 68.77165200000013) (-98.26972999999998 68.78387500000002) (-98.26083399999993 68.789154) (-98.24916100000002 68.80081200000001) (-98.24305699999996 68.81192000000004) (-98.24415599999998 68.82222000000013) (-98.26306199999999 68.82998700000007) (-98.27528399999989 68.83360299999998) (-98.36971999999997 68.85748300000012) (-98.38333099999994 68.85998500000005) (-98.408051 68.85582000000005) (-98.41860999999994 68.85247800000008) (-98.425003 68.8413700000001) (-98.41528299999999 68.81526200000013) (-98.40194699999995 68.80165099999999) (-98.39361599999995 68.78720100000004) (-98.39472999999992 68.77693200000004) (-98.40028399999994 68.770828) (-98.40861499999994 68.76470899999998) (-98.41860999999994 68.76054399999998) (-98.45111099999997 68.75000000000011) (-98.47639500000002 68.74693300000001) (-98.48999000000003 68.74609400000003) (-98.519455 68.74748199999993) (-98.72471599999989 68.7910920000001) (-98.84722899999997 68.82554600000014) (-98.85943600000002 68.82916300000011) (-98.86639400000001 68.83332800000011) (-98.87554899999998 68.84248400000007) (-98.87971499999998 68.85220300000009) (-98.87916599999994 68.85748300000012) (-98.86999499999996 68.87414600000005) (-98.864441 68.87997400000012) (-98.85638399999999 68.88638300000002) (-98.84750399999996 68.89166300000005) (-98.82667500000002 68.89942900000011) (-98.81750499999987 68.90470900000003) (-98.81193499999995 68.91053800000003) (-98.81138599999991 68.915817) (-98.82055699999995 68.92498799999993) (-98.82749899999999 68.92915299999993) (-98.84944200000001 68.93359400000003) (-98.96583599999997 68.9494170000001) (-98.98110999999994 68.95054600000003) (-98.99305700000002 68.94775400000015) (-99.07749899999999 68.91832) (-99.09584000000001 68.89942900000011) (-99.07640100000003 68.89166300000005) (-99.06220999999994 68.88304100000005) (-99.04388399999993 68.86499000000009) (-99.04415899999987 68.85971100000012) (-99.17610200000001 68.82582100000002) (-99.18859900000001 68.82415800000007) (-99.21055599999994 68.83166499999999) (-99.23666400000002 68.84887700000002) (-99.24610899999999 68.85276800000008) (-99.26722699999999 68.85914600000007) (-99.31138599999991 68.86886600000014) (-99.41332999999997 68.88415500000002) (-99.42805499999997 68.88720699999999) (-99.43777499999999 68.89109800000006) (-99.44499200000001 68.89553800000004) (-99.44972200000001 68.89999399999999) (-99.45417800000001 68.90971400000006) (-99.45111099999991 68.91526800000003) (-99.447769 68.926086) (-99.44888299999997 68.936646) (-99.45083599999998 68.9416500000001) (-99.460556 68.95082100000008) (-99.48916600000001 68.96748400000013) (-99.52333099999987 68.98359699999997) (-99.56249999999994 68.99914600000011) (-99.58972199999988 69.01110800000004) (-99.59416199999998 69.01582300000007) (-99.59638999999993 69.0205380000001) (-99.596115 69.02581800000002) (-99.59333800000002 69.03137199999998) (-99.57988 69.04393000000005) (-99.51362599999987 69.1019290000001) (-99.49221799999987 69.1202550000001) (-99.48582499999998 69.12525900000003) (-99.47694399999995 69.13081399999993) (-99.46665999999993 69.13499500000006) (-99.31138599999991 69.15887500000002) (-99.29666099999997 69.15860000000004) (-99.23805199999998 69.14971900000006) (-99.16833499999996 69.13832100000008) (-99.035278 69.13581800000009) (-99.006958 69.13638300000014) (-98.79804999999999 69.17053199999998) (-98.77444500000001 69.17553700000002) (-98.73055999999997 69.18942300000003) (-98.72027599999996 69.19386300000002) (-98.71112099999999 69.199142) (-98.702789 69.20526100000001) (-98.69972200000001 69.21081500000003) (-98.70111099999997 69.2208250000001) (-98.70527599999997 69.23082000000005) (-98.61555499999992 69.29470800000007) (-98.53388999999993 69.29136700000004) (-98.44137599999988 69.29803500000003) (-98.41555800000003 69.30108600000005) (-98.40333599999997 69.30358899999999) (-98.39334100000002 69.30802900000003) (-98.38751200000002 69.31387300000006) (-98.38417099999998 69.31944299999992) (-98.38806199999999 69.329163) (-98.39723200000003 69.33831800000007) (-98.44027699999998 69.363876) (-98.45722999999998 69.371918) (-98.476944 69.37997400000006) (-98.48889200000002 69.38360599999999) (-98.52333099999998 69.38832100000002) (-98.53555299999994 69.3919370000001) (-98.55555699999996 69.39999400000005) (-98.56249999999994 69.40415999999993) (-98.598053 69.430542) (-98.61193799999995 69.44413800000001) (-98.60888699999987 69.44970699999999) (-98.59167500000001 69.46748400000001) (-98.585556 69.47331200000013) (-98.577225 69.47943099999998) (-98.56332399999991 69.47720300000003) (-98.55332900000002 69.47331200000013) (-98.54083300000002 69.46971100000007) (-98.50834700000001 69.46331800000013) (-98.47749299999992 69.46192899999994) (-98.447769 69.46165500000001) (-98.42250100000001 69.46582000000001) (-98.41944899999999 69.47137499999991) (-98.42416400000002 69.47581500000013) (-98.44888299999991 69.48304700000006) (-98.46389799999997 69.48637400000001) (-98.54943800000001 69.50138900000013) (-98.56471299999993 69.50471500000015) (-98.577225 69.50833100000006) (-98.5869449999999 69.5122070000001) (-98.60166900000002 69.52082800000005) (-98.60555999999991 69.53054800000012) (-98.60499599999997 69.53581200000008) (-98.60194399999995 69.54109199999999) (-98.59277299999991 69.55276500000002) (-98.57556199999999 69.57026700000006) (-98.56695599999995 69.57638499999996) (-98.55665599999986 69.58082600000006) (-98.53138699999994 69.58499100000006) (-98.50140399999992 69.58442700000012) (-98.48554999999999 69.583328) (-98.43331899999998 69.57554600000003) (-98.385559 69.56608599999993) (-98.35777300000001 69.55914300000012) (-98.35055499999993 69.55470300000013) (-98.33889799999997 69.54609700000003) (-98.33416699999998 69.54136699999998) (-98.32250999999991 69.53248600000006) (-98.31082199999997 69.52388000000013) (-98.28443900000002 69.5063780000001) (-98.24861099999998 69.484985) (-98.09249899999998 69.42498800000004) (-98.07861300000002 69.42276000000004) (-98.04972799999996 69.42303500000008) (-98.03666699999985 69.42469800000003) (-98.024719 69.42720000000008) (-98.00389100000001 69.43580600000001) (-97.997772 69.44165000000004) (-97.99722300000002 69.44693000000007) (-98.006958 69.45082100000013) (-98.071396 69.46887200000015) (-98.15722699999998 69.4994200000001) (-98.166946 69.50332600000002) (-98.18859900000001 69.516098) (-98.21139499999992 69.53887900000001) (-98.25584399999997 69.57470700000005) (-98.26306199999999 69.57887299999993) (-98.295837 69.5852660000001) (-98.33029199999999 69.59027100000014) (-98.36054999999993 69.59664900000013) (-98.36776700000001 69.60108900000012) (-98.32167099999998 69.71360800000008) (-98.31416300000001 69.72221400000001) (-98.28195199999993 69.75166300000001) (-98.23028599999998 69.78887900000012) (-98.21112099999999 69.79942299999999) (-98.19972200000001 69.80276500000014) (-98.18720999999994 69.805252) (-98.14388999999994 69.80636600000003) (-98.11805700000002 69.81053200000008) (-98.1077729999999 69.81469700000008) (-98.08860800000002 69.82527200000004) (-98.07972699999999 69.83137499999998) (-98.06166100000002 69.84887700000002) (-98.05833399999989 69.85443100000003) (-98.04916400000002 69.865814) (-98.04305999999997 69.871643) (-98.03416400000003 69.87803600000001) (-98.01222200000001 69.88581799999997) (-97.99972500000001 69.88804600000009) (-97.97416699999991 69.89221199999997) (-97.94554099999999 69.8936000000001) (-97.93055700000002 69.89332599999994) (-97.91332999999997 69.891098) (-97.88027999999991 69.88499500000006) (-97.75500499999993 69.85137900000007) (-97.691101 69.81999200000013) (-97.68916299999995 69.81526200000013) (-97.68221999999997 69.81080600000001) (-97.66000400000001 69.80331400000006) (-97.61000099999995 69.78858900000012) (-97.57972699999999 69.78193700000003) (-97.44915800000001 69.76026900000011) (-97.34110999999996 69.7063750000001) (-97.33944699999995 69.70138500000002) (-97.34805299999988 69.69525100000004) (-97.358612 69.690811) (-97.37110899999999 69.68858300000005) (-97.39778100000001 69.68553200000002)) ((-97.32501200000002 69.88916000000006) (-97.31527699999992 69.88804600000009) (-97.30166599999995 69.88970900000004) (-97.28999299999992 69.89305100000013) (-97.276947 69.89444000000015) (-97.26777599999997 69.89444000000015) (-97.25 69.89137300000004) (-97.237503 69.88777199999998) (-97.23055999999991 69.88333100000006) (-97.22694399999995 69.87359600000013) (-97.23055999999991 69.868042) (-97.2369379999999 69.86219800000015) (-97.24388099999999 69.85748300000012) (-97.26916499999999 69.85247800000008) (-97.28388999999999 69.85276800000008) (-97.2991639999999 69.8560940000001) (-97.30888399999998 69.86026000000004) (-97.31777999999991 69.86943100000013) (-97.41833499999996 69.8936000000001) (-97.44888300000002 69.89414999999991) (-97.46583599999991 69.89637800000008) (-97.48028599999992 69.89888000000013) (-97.48889200000002 69.90803500000004) (-97.49276700000001 69.91775500000011) (-97.48860200000001 69.94386300000008) (-97.48500099999995 69.94941700000004) (-97.47610500000002 69.95555100000007) (-97.46639999999996 69.96081500000008) (-97.45361299999996 69.96304300000003) (-97.4375 69.96192900000005) (-97.35082999999997 69.94941700000004) (-97.335556 69.94609100000002) (-97.32833900000003 69.9416500000001) (-97.32749899999999 69.93165600000009) (-97.346115 69.91720599999996) (-97.34973099999996 69.91165199999995) (-97.35166900000002 69.90138200000001) (-97.34722899999991 69.89665200000002) (-97.33750900000001 69.89276100000012) (-97.32501200000002 69.88916000000006)) ((-100.8497309999999 69.92553700000008) (-100.86389199999991 69.92469800000009) (-100.87444299999999 69.92858899999999) (-100.87999000000002 69.933044) (-100.87999000000002 69.93830900000006) (-100.85861199999994 69.97776799999997) (-100.85333300000002 69.98359700000015) (-100.84333800000002 69.98803700000002) (-100.83112299999993 69.99081400000006) (-100.81500199999994 69.98970000000008) (-100.80695300000002 69.98580900000002) (-100.80526700000001 69.98027000000002) (-100.80721999999997 69.97526600000009) (-100.80721999999997 69.969986) (-100.81249999999994 69.95887800000003) (-100.83112299999993 69.93553199999997) (-100.83999599999999 69.92997700000006) (-100.8497309999999 69.92553700000008)) ((-87.091385 70.1502690000001) (-87.06361400000003 70.1477660000001) (-87.05166599999995 70.1419370000001) (-87.02555799999999 70.13554399999998) (-87.02084399999995 70.13192700000002) (-87.02389499999998 70.12776200000002) (-87.02194199999997 70.12109400000003) (-87.00917099999992 70.116379) (-86.99415599999998 70.11360200000007) (-86.92250100000001 70.1041560000001) (-86.90556299999997 70.10304300000007) (-86.87388599999997 70.09887700000013) (-86.85665899999992 70.09776299999999) (-86.82583599999992 70.09275800000012) (-86.79888900000003 70.0872040000001) (-86.77806099999992 70.08970600000004) (-86.76112399999994 70.0935970000001) (-86.68859900000001 70.11526500000002) (-86.67027300000001 70.11804200000012) (-86.639725 70.1166530000001) (-86.61166400000002 70.1119230000001) (-86.59861799999999 70.10859700000003) (-86.58667000000003 70.10443099999998) (-86.54554699999994 70.0813750000001) (-86.54972800000002 70.07249500000006) (-86.55055199999998 70.06637600000005) (-86.53666699999991 70.06248499999998) (-86.511124 70.05304000000007) (-86.50500499999998 70.04803500000003) (-86.50361599999997 70.036926) (-86.50584400000002 70.02859500000005) (-86.50556899999998 70.02331500000003) (-86.50250199999999 70.02082800000011) (-86.487503 70.01776100000001) (-86.47193900000002 70.01582300000007) (-86.460556 70.01220699999999) (-86.45666499999993 70.00749199999996) (-86.46000699999996 70.00471500000009) (-86.468887 69.99971) (-86.48971599999999 69.98387100000008) (-86.502792 69.98054500000006) (-86.52362099999999 69.97804299999996) (-86.54249600000003 69.97747800000013) (-86.662216 69.96748400000013) (-86.714447 69.9669340000001) (-86.747772 69.96943700000008) (-86.76556399999987 69.96971100000002) (-86.83306900000002 69.97442600000005) (-86.864441 69.9785920000001) (-86.88137799999998 69.97970600000008) (-86.89805599999994 69.98220799999996) (-86.92639199999996 69.98915099999999) (-86.93859900000001 69.99331700000005) (-86.962219 70.00471500000009) (-86.98527499999994 70.01388500000013) (-87.00222799999995 70.0149990000001) (-87.01611300000002 70.0105440000001) (-87.02194199999997 70.00526400000001) (-87.029449 70.00082400000002) (-87.03721599999994 69.99664300000012) (-87.05027799999988 69.99165300000004) (-87.066666 69.98915099999999) (-87.08639499999992 69.98776199999998) (-87.104172 69.98776199999998) (-87.13500999999997 69.99275200000005) (-87.148056 69.99748200000005) (-87.16888399999999 70.00860599999993) (-87.18276999999995 70.01388500000013) (-87.195831 70.01721200000003) (-87.21362299999987 70.01748700000007) (-87.229446 70.01944000000003) (-87.2408289999999 70.02137800000014) (-87.25500499999998 70.02526900000004) (-87.27444499999996 70.034988) (-87.27749599999999 70.03887900000007) (-87.27694699999995 70.04498300000012) (-87.27362099999999 70.05081200000012) (-87.27250700000002 70.05470300000002) (-87.27278099999995 70.05998199999999) (-87.27833599999997 70.06749000000002) (-87.28832999999997 70.07331799999997) (-87.295837 70.07748400000003) (-87.30749500000002 70.080826) (-87.31945799999988 70.08332800000005) (-87.335556 70.08554100000003) (-87.34973100000002 70.08610499999998) (-87.36389200000002 70.08859300000012) (-87.37693799999994 70.09332299999994) (-87.37832599999996 70.09610000000004) (-87.37609900000001 70.09942600000011) (-87.37138400000003 70.10386700000004) (-87.35583499999996 70.10720800000007) (-87.34194899999989 70.10859700000003) (-87.30749500000002 70.10720800000007) (-87.27778599999999 70.11469999999997) (-87.26722699999988 70.11331200000006) (-87.26560999999992 70.11355600000002) (-87.25473 70.11219800000009) (-87.2225039999999 70.11137400000013) (-87.18777499999993 70.10832200000004) (-87.18055700000002 70.109421) (-87.17304999999999 70.11219800000009) (-87.16444399999995 70.11720300000013) (-87.15611299999989 70.11914100000007) (-87.130829 70.12025500000004) (-87.11833200000001 70.11914100000007) (-87.10278299999999 70.12081900000004) (-87.09973099999996 70.12359600000008) (-87.10055499999993 70.12553400000007) (-87.14306599999998 70.13943500000005) (-87.14527900000002 70.14276100000006) (-87.141388 70.14637800000003) (-87.12832600000002 70.14971900000006) (-87.11389199999996 70.14888000000008) (-87.091385 70.1502690000001)) ((-125.05695299999996 70.1183170000001) (-125.08500700000002 70.11633300000011) (-125.10221899999993 70.11807299999998) (-125.11971999999997 70.124954) (-125.122772 70.13006600000006) (-125.12332200000003 70.13546800000006) (-125.12110899999999 70.14137299999999) (-125.11277799999999 70.14697300000006) (-125.10333300000002 70.15168800000009) (-125.083328 70.1599730000001) (-125.07055700000001 70.16187999999994) (-125 70.16293300000007) (-124.97693600000002 70.16720600000008) (-124.96305799999999 70.16832000000005) (-124.95500199999998 70.164154) (-124.98832700000003 70.13443000000001) (-124.99777199999994 70.12997400000006) (-125.04415899999992 70.12031599999995) (-125.05695299999996 70.1183170000001)) ((-124.67944299999994 70.16165200000012) (-124.69444299999998 70.16137700000007) (-124.73750299999995 70.17414900000011) (-124.75361599999991 70.18248) (-124.75917099999998 70.18691999999999) (-124.76194799999996 70.19192500000008) (-124.75890400000003 70.19664000000012) (-124.74471999999997 70.19775400000009) (-124.55110200000001 70.20860299999993) (-124.53611799999987 70.20860299999993) (-124.51888999999994 70.20694000000003) (-124.51055899999994 70.20277399999992) (-124.50527999999997 70.19831800000003) (-124.50750700000003 70.19274900000005) (-124.53694200000001 70.18193100000002) (-124.67944299999994 70.16165200000012)) ((-112.65527299999991 70.266098) (-112.67223399999995 70.266098) (-112.69193999999999 70.26748700000002) (-112.72193900000002 70.272491) (-112.74722300000002 70.278595) (-112.75499699999995 70.28276100000011) (-112.76027699999992 70.2872010000001) (-112.76306199999993 70.29248000000007) (-112.76139799999993 70.29859899999997) (-112.75389100000001 70.30358899999999) (-112.73111 70.309708) (-112.71611000000001 70.31053199999997) (-112.699997 70.309418) (-112.6875 70.30636600000008) (-112.67971799999992 70.30247500000002) (-112.67859599999991 70.30081200000006) (-112.64334099999996 70.28137200000009) (-112.64277600000003 70.27581800000013) (-112.64472999999987 70.26971400000008) (-112.65527299999991 70.266098)) ((-112.96972700000003 70.28137200000009) (-113.00306699999999 70.2810970000001) (-113.104446 70.28193699999997) (-113.14083899999997 70.28332500000005) (-113.15834000000001 70.28526299999999) (-113.20361300000002 70.29248000000007) (-113.16972399999992 70.30693100000013) (-113.15750100000002 70.309708) (-113.12888299999997 70.3124850000001) (-113.11054999999993 70.3119200000001) (-112.993607 70.2994230000001) (-112.97609699999992 70.29748499999994) (-112.96362299999998 70.29443400000014) (-112.95333900000003 70.290817) (-112.94554099999999 70.286652) (-112.95612299999999 70.28332500000005) (-112.96972700000003 70.28137200000009)) ((-100.765289 70.25) (-100.78083800000002 70.25) (-100.7938769999999 70.25332600000002) (-100.84166699999997 70.27832000000001) (-100.86305199999993 70.29109199999999) (-100.86833200000001 70.29553200000004) (-100.85193600000002 70.32388300000014) (-100.83889799999992 70.32554600000003) (-100.80943300000001 70.32415800000012) (-100.77639799999997 70.322495) (-100.75890399999997 70.32054099999999) (-100.74804699999999 70.3169400000001) (-100.74082899999996 70.31053199999997) (-100.75890399999997 70.25499000000002) (-100.765289 70.25)) ((-116.80526699999996 70.50943000000001) (-116.78971899999993 70.50721700000003) (-116.75418100000002 70.50749200000007) (-116.63390400000003 70.4935910000001) (-116.60722399999997 70.48803700000008) (-116.59638999999993 70.484985) (-116.56833599999999 70.47387699999996) (-116.57305899999989 70.46775800000012) (-116.70111099999997 70.4685970000001) (-116.71916199999993 70.47026100000011) (-116.787781 70.48359700000003) (-116.814438 70.48887600000006) (-116.82055700000001 70.4935910000001) (-116.82861300000002 70.503601) (-116.82224300000001 70.50888100000003) (-116.80526699999996 70.50943000000001)) ((-116.287781 70.55331400000011) (-116.26027699999992 70.54998800000004) (-116.24333199999995 70.55026199999998) (-116.18943799999994 70.54553199999998) (-116.140556 70.538589) (-116.12748699999997 70.53581200000008) (-116.131104 70.532486) (-116.29110699999995 70.51554900000002) (-116.32333399999993 70.51361100000008) (-116.44611399999991 70.50888100000003) (-116.464722 70.50915499999996) (-116.47778299999999 70.51193200000006) (-116.495003 70.51998900000007) (-116.49582700000002 70.52276599999993) (-116.47000099999997 70.53804000000002) (-116.30304699999988 70.55219999999997) (-116.287781 70.55331400000011)) ((-116.56304899999998 70.534424) (-116.57833900000003 70.53305100000006) (-116.596947 70.53332499999999) (-116.75028999999995 70.539154) (-116.76363400000002 70.54193100000009) (-116.77443700000003 70.54525800000005) (-116.766953 70.54832499999998) (-116.75527999999991 70.55108599999994) (-116.72361799999987 70.55636600000003) (-116.71193699999998 70.55941799999994) (-116.681671 70.56192000000004) (-116.66471899999999 70.56248500000004) (-116.64611799999994 70.56219500000003) (-116.54305999999997 70.55970799999994) (-116.52278100000001 70.55859399999997) (-116.50945300000001 70.55609100000004) (-116.50778200000002 70.55026199999998) (-116.51806599999998 70.54664600000012) (-116.56304899999998 70.534424)) ((-115.92054699999989 70.54136699999998) (-115.95445299999994 70.54026799999997) (-115.99333200000001 70.5416560000001) (-116.051941 70.54553199999998) (-116.06111099999993 70.54832499999998) (-116.04250299999995 70.55219999999997) (-115.98388699999998 70.56080600000007) (-115.97222899999991 70.56359900000001) (-115.91972399999997 70.57249499999995) (-115.87917299999998 70.57859800000011) (-115.86389200000002 70.57998700000007) (-115.82501199999996 70.57832300000007) (-115.81416300000001 70.57499700000005) (-115.80803700000001 70.5705410000001) (-115.81082199999997 70.56498699999997) (-115.81916799999999 70.56080600000007) (-115.84111000000001 70.55415300000004) (-115.86638599999998 70.54942300000005) (-115.92054699999989 70.54136699999998)) ((-116.87943999999993 70.54748500000011) (-116.88945000000001 70.54386900000003) (-116.923317 70.54275500000006) (-117.03611799999993 70.54637100000014) (-117.18331899999998 70.5374910000001) (-117.20195000000001 70.53776600000009) (-117.22000099999997 70.539154) (-117.27555799999993 70.55026199999998) (-117.28888699999993 70.55304000000001) (-117.29778299999998 70.55693100000008) (-117.30166600000001 70.56192000000004) (-117.29778299999998 70.57138099999997) (-117.26083399999999 70.58471700000013) (-117.25140399999992 70.58720400000004) (-117.23805199999998 70.58915699999994) (-117.21640000000002 70.59109500000011) (-117.19943199999994 70.5916600000001) (-117.16332999999997 70.588593) (-116.89444700000001 70.55609100000004) (-116.883621 70.55276500000014) (-116.87943999999993 70.54748500000011)) ((-128.086121 70.605545) (-128.104156 70.5958250000001) (-128.1201779999999 70.59721400000012) (-128.11444099999994 70.59193400000004) (-128.11721799999992 70.58055100000001) (-128.123871 70.57388300000008) (-128.13275099999993 70.56915300000003) (-128.34054599999996 70.539154) (-128.34167499999995 70.54220599999991) (-128.252228 70.64637800000008) (-128.24581899999998 70.65304600000007) (-128.23416099999986 70.6560970000001) (-128.21639999999996 70.65470900000003) (-128.18832399999997 70.64860499999998) (-128.11498999999998 70.62803600000001) (-128.10360699999995 70.62441999999999) (-128.09472700000003 70.62052900000009) (-128.0883179999999 70.61608900000004) (-128.08499099999995 70.61109900000002) (-128.086121 70.605545)) ((-100.23082699999992 70.45166000000006) (-100.24333199999995 70.44914200000011) (-100.26000999999985 70.449997) (-100.27610799999997 70.45304900000008) (-100.47250400000001 70.49636799999996) (-100.49916100000002 70.50332600000013) (-100.63054699999998 70.54332000000011) (-100.662781 70.55470300000007) (-100.670837 70.55886800000007) (-100.67639199999996 70.563309) (-100.68138099999993 70.5730440000001) (-100.68138099999993 70.58360299999998) (-100.67832900000002 70.59414700000002) (-100.66443599999991 70.63777199999998) (-100.65194699999995 70.66970800000007) (-100.51194800000002 70.67637600000006) (-100.49500299999988 70.67526200000009) (-100.48000300000001 70.67330900000013) (-100.46916199999998 70.66943400000014) (-100.46112099999999 70.659988) (-100.451683 70.6519320000001) (-100.443604 70.64776599999999) (-100.34722899999991 70.6080320000001) (-100.33640300000002 70.60443100000003) (-100.31945799999994 70.60331700000006) (-100.21833799999996 70.56442299999998) (-100.22444200000001 70.45664999999997) (-100.23082699999992 70.45166000000006)) ((-103.17777999999993 70.62248200000005) (-103.19360399999994 70.62220800000011) (-103.24833699999994 70.62275700000004) (-103.26640299999991 70.62414600000005) (-103.27500900000001 70.62831100000005) (-103.28111299999995 70.63275100000004) (-103.281387 70.63804600000009) (-103.26834099999996 70.66638200000006) (-103.22582999999986 70.67637600000006) (-103.21000700000002 70.67665100000005) (-103.19415299999997 70.67303500000003) (-103.173607 70.6336060000001) (-103.17304999999999 70.62858600000004) (-103.17777999999993 70.62248200000005)) ((-103.35082999999992 70.68719500000009) (-103.36416599999995 70.68525699999998) (-103.38110399999988 70.68580600000013) (-103.39499699999999 70.68914800000005) (-103.42887899999994 70.69999700000011) (-103.43776700000001 70.70387299999999) (-103.44638099999997 70.70803799999999) (-103.45249899999993 70.7124940000001) (-103.45889299999999 70.72221400000001) (-103.46278399999994 70.73220800000001) (-103.45694700000001 70.73719800000003) (-103.443604 70.73915099999999) (-103.42777999999998 70.73942600000004) (-103.39917000000003 70.73719800000003) (-103.36361699999992 70.72776799999997) (-103.34111000000001 70.72026100000005) (-103.33500699999996 70.716095) (-103.33444199999997 70.71081500000008) (-103.33860800000002 70.6994170000001) (-103.34333799999996 70.69358800000009) (-103.35082999999992 70.68719500000009)) ((-71.47166400000003 71.01277200000004) (-71.428879 71.01220699999999) (-71.38917500000002 71.01388500000007) (-71.37110899999993 71.01193199999994) (-71.35749799999996 71.00972000000007) (-71.34472700000003 71.00555400000002) (-71.33917199999996 70.99832200000009) (-71.339722 70.99136400000009) (-71.34306300000003 70.98498500000005) (-71.38667299999992 70.92248500000011) (-71.39222699999999 70.9166560000001) (-71.40249599999987 70.91192600000005) (-71.41555799999998 70.90776100000005) (-71.43306000000001 70.90470900000014) (-71.45111099999991 70.90304600000002) (-71.47444199999995 70.90248100000002) (-71.49554399999994 70.90277100000003) (-71.65444899999994 70.89082299999995) (-71.73306300000002 70.87498499999992) (-71.93388400000003 70.83332800000005) (-71.93777499999993 70.82470699999999) (-71.94638099999997 70.82083100000011) (-71.95556599999998 70.818329) (-71.99166899999994 70.81469700000008) (-72.03860500000002 70.81137100000001) (-72.081955 70.80970800000011) (-72.09666400000003 70.80970800000011) (-72.112213 70.81137100000001) (-72.19860799999998 70.88275099999998) (-72.22332799999998 70.91693100000009) (-72.22528099999994 70.92442300000005) (-72.22639500000002 70.93054200000006) (-72.21389799999992 70.934708) (-72.202225 70.93664600000011) (-72.16665599999999 70.93803400000002) (-72.14889499999992 70.93637100000007) (-72.13667299999997 70.93359400000003) (-72.13362099999995 70.93165600000003) (-72.145554 70.926086) (-72.14917000000003 70.92109700000003) (-72.136124 70.91693100000009) (-72.11749299999991 70.91720599999996) (-72.097778 70.91970800000001) (-72.07833900000003 70.92359900000008) (-72.05776999999995 70.933044) (-72.04472399999992 70.94442699999996) (-72.03944399999995 70.9502720000001) (-72.03332499999993 70.96304299999997) (-72.02667200000002 70.98275799999999) (-72.01972999999987 71.03442400000006) (-72.02139299999999 71.04193099999998) (-72.00862099999995 71.04971300000011) (-71.91610700000001 71.06442300000009) (-71.88417099999992 71.0688780000001) (-71.85166900000002 71.07222000000002) (-71.83168 71.07110600000004) (-71.79472399999997 71.05304000000007) (-71.73083499999996 71.04553200000004) (-71.644455 71.034988) (-71.54695099999998 71.0186000000001) (-71.47166400000003 71.01277200000004)) ((-96.56332399999997 71.29220599999996) (-96.54695099999998 71.28915400000005) (-96.535553 71.28276100000005) (-96.47250400000001 71.23220800000007) (-96.47027599999996 71.22608900000006) (-96.48083500000001 71.20887800000014) (-96.487503 71.20359800000006) (-96.56111099999998 71.20832800000011) (-96.57806399999998 71.21054100000003) (-96.628601 71.22026099999994) (-96.63861099999991 71.22608900000006) (-96.64167800000001 71.23136899999997) (-96.64277600000003 71.23442100000005) (-96.65249599999999 71.2872010000001) (-96.64917000000003 71.29304500000012) (-96.61054999999999 71.29054300000001) (-96.58111600000001 71.29359400000004) (-96.56332399999997 71.29220599999996)) ((-98.895554 71.27777100000003) (-98.90834000000001 71.27304099999998) (-98.97444200000001 71.28471400000001) (-98.98971599999999 71.29054300000001) (-99.00029 71.297211) (-99.00556899999998 71.30192600000004) (-99.008621 71.30802900000015) (-99.00889599999994 71.313873) (-99.00306699999993 71.31944300000009) (-98.96362299999993 71.35220300000009) (-98.95584099999996 71.35220300000009) (-98.93028300000003 71.34220900000008) (-98.92332499999998 71.3377690000001) (-98.91444399999995 71.33166500000004) (-98.895554 71.27777100000003)) ((-73.120544 71.47970599999996) (-73.12943999999993 71.45082100000008) (-73.07749899999993 71.466385) (-73.04333500000001 71.47886699999998) (-73.03555299999994 71.48414600000001) (-73.01640299999997 71.50000000000011) (-73.00584400000002 71.51165800000012) (-72.99804699999999 71.51721199999992) (-72.985275 71.52137800000003) (-72.97222899999997 71.52137800000003) (-72.96250899999995 71.51998900000001) (-72.93415799999997 71.50915500000013) (-72.82749899999999 71.45498700000002) (-72.82028199999996 71.4497070000001) (-72.81750499999998 71.44497700000011) (-72.82333399999999 71.43969700000002) (-72.831955 71.43580600000013) (-72.84973099999996 71.4327550000001) (-72.8724979999999 71.43081699999999) (-72.92166099999997 71.428314) (-72.99276700000001 71.41943399999997) (-73.01000999999997 71.41554300000007) (-73.02278099999995 71.41110199999997) (-73.03111299999995 71.40664699999996) (-73.028885 71.39915500000006) (-73.00750700000003 71.35220300000009) (-72.97888199999994 71.32971200000009) (-72.97416699999991 71.32499700000005) (-72.97193900000002 71.31749000000013) (-72.97361799999987 71.31330900000006) (-72.98388699999998 71.30859400000003) (-72.99665799999991 71.3041530000001) (-73.025284 71.29748500000011) (-73.06054699999993 71.29470800000001) (-73.0894469999999 71.313873) (-73.16332999999992 71.33248900000001) (-73.19860799999992 71.33638000000008) (-73.24499500000002 71.34887700000007) (-73.26528899999994 71.357483) (-73.27250699999996 71.36192299999999) (-73.27500899999995 71.36581400000006) (-73.27639799999997 71.37915000000004) (-73.265015 71.39637800000014) (-73.25500499999993 71.40887499999997) (-73.25473 71.41526800000008) (-73.29360999999989 71.45471199999997) (-73.30139200000002 71.45971700000001) (-73.3205569999999 71.46971100000007) (-73.34750400000001 71.47776800000003) (-73.36250299999995 71.48109400000004) (-73.3741609999999 71.48580900000007) (-73.37999000000002 71.51971400000002) (-73.37721299999998 71.5227660000001) (-73.36694299999999 71.52748099999997) (-73.18998699999992 71.56553600000007) (-73.176941 71.5663760000001) (-73.14750700000002 71.56442300000015) (-73.13221699999991 71.56137100000007) (-73.09028599999994 71.54637100000008) (-73.08111600000001 71.54220600000008) (-73.07362399999994 71.53692600000005) (-73.07472200000001 71.53137200000003) (-73.11332699999997 71.48580900000007) (-73.120544 71.47970599999996)) ((-72.76083399999987 71.53193700000008) (-72.78639199999998 71.53027300000002) (-72.83084100000002 71.53109699999999) (-72.84889199999992 71.53221100000002) (-72.86749299999991 71.53387500000002) (-72.949997 71.54721100000012) (-72.98249799999991 71.5535890000001) (-73.00889599999988 71.56109600000002) (-73.020554 71.56581100000005) (-73.03056299999992 71.57165500000008) (-73.03527799999995 71.57554600000014) (-73.03999299999998 71.57998700000007) (-73.03750600000001 71.58720399999999) (-73.03416400000003 71.59220900000003) (-72.96806299999997 71.63665800000001) (-72.94860799999998 71.64471400000008) (-72.924713 71.64942900000011) (-72.80665599999992 71.65914900000001) (-72.781113 71.66081200000013) (-72.74526999999995 71.65998799999994) (-72.72666900000002 71.65832500000005) (-72.70916699999998 71.65525800000012) (-72.69583099999994 71.65109300000012) (-72.68443300000001 71.64276100000012) (-72.66221599999994 71.60443100000003) (-72.66055299999994 71.59803800000003) (-72.671112 71.58581500000003) (-72.68249500000002 71.57470699999999) (-72.70111099999991 71.55748) (-72.71278399999994 71.54721100000012) (-72.718887 71.54275500000006) (-72.72749299999998 71.53858900000012) (-72.74249299999997 71.53414900000013) (-72.76083399999987 71.53193700000008)) ((-73.37027 71.55442800000009) (-73.39445499999994 71.55442800000009) (-73.40666199999998 71.55636600000003) (-73.41833500000001 71.56109600000002) (-73.42860399999995 71.56694000000005) (-73.43693499999995 71.57331800000003) (-73.45056199999999 71.58415200000007) (-73.44972199999995 71.58998100000008) (-73.44804399999992 71.59414699999996) (-73.44193999999999 71.59887700000002) (-73.38861099999991 71.63415500000002) (-73.34834299999994 71.65832500000005) (-73.27610800000002 71.69192499999991) (-73.24333200000001 71.69663999999995) (-73.21333299999998 71.69859300000007) (-73.20916699999998 71.69886800000012) (-73.19055200000003 71.697205) (-73.16749600000003 71.69220000000013) (-73.15556299999997 71.68719500000009) (-73.14889499999998 71.67997700000006) (-73.14999399999999 71.6744230000001) (-73.17054699999994 71.66831999999994) (-73.221115 71.66026299999999) (-73.24943499999995 71.65248100000002) (-73.26251199999996 71.64804100000003) (-73.28277600000001 71.63777199999998) (-73.303604 71.62191800000005) (-73.32028199999996 71.605545) (-73.32501200000002 71.59915200000006) (-73.33167999999995 71.58804299999997) (-73.33860799999997 71.57110599999993) (-73.33972199999994 71.56526200000013) (-73.35249299999998 71.55748) (-73.37027 71.55442800000009)) ((-96.95889299999993 71.7044370000001) (-96.99888599999997 71.70109600000006) (-97.03639199999992 71.70138500000002) (-97.05027799999993 71.704163) (-97.0497279999999 71.70999100000012) (-97.04028299999999 71.72026100000005) (-97.02416999999997 71.73109399999998) (-96.99888599999997 71.74136399999992) (-96.99166899999994 71.74304200000006) (-96.99082900000002 71.74386600000003) (-96.96945199999999 71.74859600000002) (-96.96389799999997 71.75221299999998) (-96.92416399999996 71.75555400000002) (-96.88639799999999 71.75526400000001) (-96.86694299999999 71.75360100000012) (-96.85055499999987 71.74941999999999) (-96.84445199999999 71.74414100000001) (-96.8511049999999 71.73887599999995) (-96.86860699999994 71.7285920000001) (-96.88137799999993 71.72331200000008) (-96.89695699999993 71.71832300000011) (-96.91583299999996 71.71360800000008) (-96.95889299999993 71.7044370000001)) ((-95.33999599999993 71.73136900000003) (-95.39805599999994 71.72943100000009) (-95.43582200000003 71.72998000000001) (-95.47111499999994 71.73359700000015) (-95.4830629999999 71.73692300000005) (-95.48832699999997 71.74081400000011) (-95.48805199999987 71.74552900000015) (-95.45028699999995 71.81887799999993) (-95.44027699999998 71.82415800000001) (-95.42083699999989 71.82887300000004) (-95.38417099999998 71.83610499999998) (-95.34889199999998 71.84054600000007) (-95.32861300000002 71.84220899999997) (-95.30166600000001 71.84414700000013) (-95.28666699999997 71.84304800000012) (-95.27583299999998 71.84027100000003) (-95.26583899999997 71.83665500000001) (-95.26167299999997 71.83332800000005) (-95.25973499999992 71.82748400000003) (-95.31054699999993 71.73719800000003) (-95.32472199999995 71.73275800000005) (-95.33999599999993 71.73136900000003)) ((-134.49554399999994 68.75221300000004) (-134.4880369999999 68.736649) (-134.4880369999999 68.7310940000001) (-134.48306299999996 68.72053500000004) (-134.47387700000002 68.71137999999996) (-134.46472199999994 68.70748900000007) (-134.44638099999997 68.70027199999998) (-134.40112299999993 68.68775900000009) (-134.373871 68.68248000000011) (-134.33999599999999 68.67886400000009) (-134.30804399999994 68.67804000000012) (-134.282776 68.68136600000014) (-134.24636799999996 68.68748499999998) (-134.23071299999998 68.6928410000001) (-134.22692899999998 68.69413800000012) (-134.22332800000004 68.69970699999993) (-134.26058999999987 68.73353599999996) (-134.26251200000002 68.73637400000013) (-134.28750599999995 68.753601) (-134.30835000000002 68.76609799999994) (-134.32638499999996 68.77360500000009) (-134.423065 68.83166499999999) (-134.54168700000002 68.91970800000007) (-134.558044 68.933044) (-134.614441 68.98332199999999) (-134.62387099999995 68.99275200000005) (-134.628876 69.00305200000014) (-134.62914999999992 69.00888099999997) (-134.62469499999992 69.01554899999996) (-134.56222499999996 69.08276400000011) (-134.55499299999997 69.08776899999998) (-134.537506 69.09387200000009) (-134.491943 69.10415599999999) (-134.46362299999998 69.1060940000001) (-134.4480589999999 69.1060940000001) (-134.36303699999996 69.10220300000003) (-134.34887700000002 69.10304300000007) (-134.33889799999992 69.10636900000009) (-134.22747800000002 69.1749880000001) (-134.223053 69.18165600000003) (-134.22082499999993 69.18803400000002) (-134.22137499999997 69.21638500000012) (-134.2169489999999 69.22303800000009) (-134.162781 69.25471500000003) (-134.15389999999996 69.25888099999992) (-134.142517 69.26138300000002) (-134.12832599999996 69.26220699999999) (-134.06915299999997 69.26277199999998) (-134.05471799999998 69.26361099999997) (-134.029175 69.26693699999998) (-133.9286189999999 69.28221100000007) (-133.90557899999988 69.28749099999999) (-133.89529400000004 69.290817) (-133.886688 69.29498300000012) (-133.87914999999998 69.29998799999998) (-133.87332199999997 69.30581699999999) (-133.86859100000004 69.31248499999992) (-133.86886599999997 69.31832900000012) (-133.87332199999997 69.32304399999998) (-133.87582399999997 69.32832299999995) (-133.86972000000003 69.33415199999996) (-133.67028799999997 69.38665800000007) (-133.65863000000002 69.38916) (-133.55056799999994 69.40582300000005) (-133.407776 69.41470300000009) (-133.3722229999999 69.41220100000004) (-133.35583499999996 69.40998800000006) (-133.32806400000004 69.40470900000008) (-133.30972299999996 69.40277100000014) (-133.23443599999996 69.39721700000013) (-133.21749899999992 69.39637799999997) (-133.2058409999999 69.39888000000008) (-133.073059 69.43498200000005) (-132.99942 69.48193400000014) (-132.966095 69.51165799999995) (-132.95220899999998 69.56330900000006) (-132.951935 69.56915300000003) (-132.95666499999993 69.57388300000008) (-132.96581999999995 69.57748400000014) (-132.98638900000003 69.59027100000014) (-132.988586 69.595261) (-132.98361199999994 69.60220300000009) (-132.97747800000002 69.6080320000001) (-132.92251599999997 69.64221200000003) (-132.904449 69.65054299999997) (-132.89388999999994 69.65387000000004) (-132.864716 69.6583250000001) (-132.821106 69.66053800000003) (-132.78778099999994 69.65971400000006) (-132.66229199999998 69.651207) (-132.628784 69.64804800000007) (-132.62028499999997 69.64637800000014) (-132.6147919999999 69.64404300000001) (-132.606628 69.63904600000012) (-132.55279499999995 69.63136299999996) (-132.535278 69.63026400000001) (-132.41751099999993 69.63554400000004) (-132.39389 69.64027400000009) (-132.372772 69.64694200000008) (-132.345276 69.65942400000006) (-132.332489 69.67109700000009) (-132.32748399999997 69.67776500000008) (-132.333618 69.68248000000011) (-132.441101 69.70248400000003) (-132.457489 69.70471199999997) (-132.4677729999999 69.70138500000002) (-132.517792 69.68331900000004) (-132.54823299999998 69.68531000000013) (-132.55523700000003 69.68382300000002) (-132.57455400000003 69.68398300000013) (-132.582718 69.685654) (-132.586884 69.68814800000013) (-132.58673099999993 69.69164999999998) (-132.54833999999994 69.73580900000007) (-132.54055799999998 69.74081400000011) (-132.52749600000004 69.74247700000006) (-132.473053 69.74775699999992) (-132.39974999999998 69.75166300000001) (-132.28918499999992 69.7249910000001) (-132.21304299999997 69.690811) (-132.19888300000002 69.68803400000007) (-132.16305499999999 69.68525699999998) (-132.14697299999995 69.68525699999998) (-132.12304700000004 69.71360800000008) (-132.1166379999999 69.71943699999991) (-132.107208 69.72360200000008) (-132.08331299999992 69.72859199999999) (-131.95443699999998 69.75471500000009) (-131.87469499999992 69.76388499999996) (-131.858612 69.76361100000003) (-131.845276 69.76527399999998) (-131.8347169999999 69.76859999999999) (-131.76556400000004 69.79470799999996) (-131.758911 69.80053699999996) (-131.75836200000003 69.80636600000003) (-131.760284 69.81164600000005) (-131.7647399999999 69.8163760000001) (-131.76666299999994 69.82165500000008) (-131.76000999999997 69.82748400000008) (-131.75058 69.83137499999998) (-131.64502 69.86499000000003) (-131.62359600000002 69.87136800000002) (-131.447784 69.91859400000004) (-131.4263919999999 69.9474790000001) (-131.42111199999994 69.954163) (-131.41027799999995 69.95721400000002) (-131.34887700000002 69.95248400000014) (-131.26916499999993 69.93775900000003) (-131.2460939999999 69.93109100000004) (-131.237213 69.92719999999997) (-131.2305599999999 69.92303500000014) (-131.20916699999998 69.89915500000001) (-131.20333899999997 69.88916000000006) (-131.20138499999996 69.88388100000009) (-131.201935 69.87803600000001) (-131.2049869999999 69.87191800000005) (-131.21054099999998 69.86526500000008) (-131.21722399999987 69.85942100000005) (-131.22164899999996 69.85415599999999) (-131.2222289999999 69.84832800000004) (-131.220551 69.84304800000001) (-131.21194499999996 69.8336030000001) (-131.205261 69.82943700000004) (-131.19638099999997 69.82554600000014) (-131.18499799999995 69.82415800000007) (-131.08056599999998 69.88499500000006) (-131.07501199999996 69.89166300000005) (-131.03140299999995 69.94941700000004) (-131.01028399999996 69.98692299999999) (-131.01278699999995 70.02331500000003) (-131.01947 70.02777100000009) (-130.930298 70.08305400000012) (-130.892242 70.099152) (-130.74832199999997 70.08194000000015) (-130.6561279999999 70.10859700000003) (-130.554169 70.16526799999997) (-130.5430599999999 70.16832000000005) (-130.48721299999994 70.17330900000002) (-130.47222899999997 70.17387400000007) (-130.467712 70.17008999999996) (-130.47271699999993 70.16709900000012) (-130.48388699999998 70.16499299999998) (-130.51141399999995 70.16220100000004) (-130.52224699999994 70.15887500000002) (-130.54724099999999 70.12747200000001) (-130.54806499999995 70.121643) (-130.54638699999992 70.116379) (-130.54223599999995 70.11164899999994) (-130.535553 70.10748300000006) (-130.52416999999997 70.10386700000004) (-130.5102839999999 70.101089) (-130.49527 70.10165400000005) (-130.48416099999992 70.10470599999996) (-130.43237299999998 70.12587000000013) (-130.40722700000003 70.14053300000012) (-130.35360699999995 70.132202) (-130.33084099999996 70.11080900000007) (-130.32250999999997 70.10137900000001) (-130.18472299999996 70.05358900000004) (-130.16861 70.053314) (-129.97555499999993 70.06944299999998) (-129.96304299999997 70.07165500000002) (-129.92611699999992 70.078598) (-129.89083900000003 70.09275800000012) (-129.86444099999994 70.12692300000003) (-129.84609999999986 70.15498400000013) (-129.8324889999999 70.19552599999992) (-129.79000899999994 70.21998600000012) (-129.731384 70.25305200000008) (-129.697784 70.262497) (-129.68667600000003 70.26554900000008) (-129.67306499999995 70.26693699999998) (-129.647247 70.25166300000006) (-129.60916099999992 70.21304299999997) (-129.45916699999998 70.14749100000012) (-129.404724 70.12303199999997) (-129.403351 70.11775200000011) (-129.40527299999997 70.10636900000009) (-129.406403 70.10054000000008) (-129.4100039999999 70.09443699999997) (-129.433899 70.06805400000013) (-129.497498 70.0205380000001) (-129.57360799999998 69.99775700000009) (-129.59555099999994 69.99136399999992) (-129.88946499999992 69.91720599999996) (-129.9930419999999 69.89248700000002) (-130.22805800000003 69.84054600000013) (-130.49581899999998 69.78166200000004) (-130.559998 69.73719800000009) (-130.561401 69.72581500000007) (-130.56472799999995 69.71971100000002) (-130.57028200000002 69.71304300000008) (-130.57833900000003 69.70803800000004) (-130.62136799999996 69.69525100000004) (-130.6469729999999 69.69136000000015) (-130.70416299999994 69.68830900000012) (-130.75750700000003 69.68248000000011) (-130.78030399999994 69.6769260000001) (-130.789734 69.67276000000004) (-130.83639500000004 69.6336060000001) (-130.83944699999995 69.62747200000007) (-130.84081999999995 69.6160890000001) (-130.83667000000003 69.61109900000002) (-130.837494 69.60554500000006) (-130.84414699999996 69.599716) (-130.91915899999998 69.56721500000009) (-130.92861899999997 69.56330900000006) (-130.94473299999999 69.56553600000012) (-131.02667199999996 69.59304800000007) (-131.03973399999995 69.601654) (-131.04168699999997 69.60693400000002) (-131.04083300000002 69.61276199999998) (-131.05307 69.63720699999999) (-131.16332999999992 69.62776200000013) (-131.188599 69.62387100000007) (-131.32861299999996 69.57998700000013) (-131.40750099999997 69.58665500000006) (-131.58694500000001 69.56749000000013) (-131.69168100000002 69.55165099999999) (-131.70498699999996 69.56025699999992) (-131.71389799999992 69.563873) (-131.727783 69.5669400000001) (-131.74108899999993 69.56749000000013) (-131.755859 69.5669400000001) (-131.9972229999999 69.53137200000009) (-132.00640899999996 69.52720599999998) (-132.03891 69.50833100000006) (-132.04666099999992 69.50332600000002) (-132.0799869999999 69.48082) (-132.14169300000003 69.41276600000003) (-132.13305699999995 69.40332000000006) (-132.12164299999995 69.39999400000005) (-132.09750399999996 69.3960570000001) (-132.085266 69.39082300000007) (-132.08084099999996 69.38610800000004) (-132.078888 69.3808140000001) (-132.081665 69.37469500000003) (-132.09472700000003 69.36276200000003) (-132.1166379999999 69.35720800000001) (-132.329163 69.31442300000009) (-132.52417000000003 69.27777100000009) (-132.531952 69.28054799999995) (-132.54556300000002 69.28332500000005) (-132.56167599999998 69.28581200000013) (-132.57998699999996 69.28749099999999) (-132.59222399999993 69.28720099999998) (-132.706116 69.26887499999998) (-132.71777299999997 69.26638800000006) (-132.739441 69.26081799999997) (-132.76028399999996 69.25416600000011) (-132.767792 69.24914600000005) (-132.90722699999998 69.1244200000001) (-132.90722699999998 69.11886600000008) (-132.90527299999997 69.042755) (-132.946106 69.03749100000005) (-133.050842 69.05470300000002) (-133.10638399999993 69.05053700000013) (-133.1719359999999 69.04332000000005) (-133.18331899999998 69.04081700000006) (-133.193329 69.03749100000005) (-133.20083599999987 69.03248599999995) (-133.20556599999998 69.02581800000002) (-133.21499600000004 69.00665300000003) (-133.21664399999997 69.001938) (-133.214447 68.99664300000012) (-133.209991 68.99192800000009) (-133.20333900000003 68.98776199999998) (-133.19860799999998 68.98304699999994) (-133.19888300000002 68.97720300000015) (-133.2130429999999 68.93803400000007) (-133.22610499999996 68.91360500000013) (-133.233612 68.90860000000009) (-133.31332399999985 68.87191800000005) (-133.32333399999993 68.86859099999992) (-133.33471699999996 68.86608900000004) (-133.34887699999996 68.86526500000008) (-133.363312 68.86665299999999) (-133.37692300000003 68.86914099999996) (-133.385834 68.87303200000002) (-133.39944500000001 68.88136299999996) (-133.4016719999999 68.88665800000001) (-133.39529400000004 68.89027400000009) (-133.37969999999996 68.89027400000009) (-133.36694299999994 68.89193699999998) (-133.359711 68.89694200000002) (-133.353607 68.90277100000003) (-133.35803199999992 68.90748600000006) (-133.36944599999993 68.91053800000003) (-133.38275099999998 68.91110200000014) (-133.39556899999997 68.90942400000006) (-133.461121 68.89276100000012) (-133.466095 68.88832100000013) (-133.484711 68.85026600000003) (-133.493042 68.82665999999995) (-133.49081399999994 68.82165500000008) (-133.48416099999997 68.81164600000011) (-133.470825 68.79748500000011) (-133.46389799999992 68.79332000000011) (-133.4549869999999 68.78970300000015) (-133.405579 68.77221700000001) (-133.32138099999992 68.74636800000013) (-133.16418499999992 68.70721400000008) (-133.08999599999999 68.69497700000011) (-133.05416899999994 68.69136000000015) (-133.03750599999995 68.69053600000001) (-133.02334599999995 68.69136000000015) (-133.01083399999987 68.693039) (-132.98803699999996 68.69775400000003) (-132.95861799999994 68.69859299999996) (-132.94305399999996 68.69636500000001) (-132.918335 68.69026200000008) (-132.92056299999996 68.69552600000003) (-132.9336239999999 68.70971700000007) (-132.94250499999998 68.71331800000013) (-132.95471199999997 68.71527100000003) (-133.00723299999999 68.71971100000007) (-133.02252199999998 68.71971100000007) (-133.035278 68.71804800000012) (-133.04583699999995 68.71137999999996) (-133.11248799999998 68.71499600000004) (-133.142517 68.7185970000001) (-133.15249599999993 68.72082500000005) (-133.25500499999998 68.75860600000004) (-133.25946 68.76332100000008) (-133.26611299999996 68.77886999999998) (-133.26141399999995 68.78553799999997) (-133.24999999999994 68.78804000000002) (-133.23416099999992 68.78581200000008) (-133.225281 68.78221100000002) (-133.220825 68.77748099999997) (-133.220825 68.77165200000013) (-133.21664399999997 68.7669370000001) (-133.20306399999998 68.76416) (-133.16168200000004 68.75749200000007) (-133.14752199999998 68.758331) (-133.13891599999994 68.76249700000011) (-133.1397399999999 68.7669370000001) (-133.21139499999998 68.79081700000012) (-133.234985 68.79582199999999) (-133.250854 68.79803500000014) (-133.28178399999996 68.7944260000001) (-133.28863499999989 68.79309799999999) (-133.30145300000004 68.78942900000004) (-133.325562 68.78749100000005) (-133.33554099999992 68.78970300000015) (-133.34445199999993 68.79359400000004) (-133.35665899999992 68.80108599999994) (-133.35888699999998 68.80636600000003) (-133.35415599999993 68.83221400000014) (-133.332764 68.84387200000015) (-133.27722199999988 68.85693400000002) (-133.26583900000003 68.85942100000005) (-133.23776199999998 68.86109900000002) (-133.22192399999994 68.85887100000002) (-133.18804899999986 68.84915200000006) (-133.16778599999998 68.83665500000006) (-133.15918 68.8272090000001) (-133.152222 68.8230440000001) (-133.12191799999994 68.80581700000005) (-133.108337 68.80304000000001) (-133.091675 68.80219999999991) (-133.062225 68.80276500000014) (-133.00527999999997 68.81526200000013) (-132.95803799999993 68.83554100000009) (-132.962219 68.84609999999992) (-132.9619449999999 68.85165400000011) (-132.951935 68.85497999999995) (-132.93667599999998 68.85497999999995) (-132.86749299999997 68.84609999999992) (-132.85611 68.842758) (-132.78594999999996 68.8184280000001) (-132.75363199999998 68.80276500000014) (-132.49194299999994 68.80108599999994) (-132.4805599999999 68.8035890000001) (-132.470276 68.80693100000008) (-132.405579 68.842758) (-132.40029900000002 68.84721400000012) (-132.39529400000004 68.8538670000001) (-132.392792 68.85998500000005) (-132.396973 68.86470000000008) (-132.49249299999997 68.90637200000009) (-132.50363200000004 68.90971400000006) (-132.55334499999998 68.91609199999999) (-132.56750499999998 68.91526800000003) (-132.57638499999996 68.91110200000014) (-132.574432 68.9060970000001) (-132.5677799999999 68.90165700000006) (-132.54055799999998 68.8961030000001) (-132.55557299999992 68.87831100000005) (-132.66528299999993 68.84193400000004) (-132.67806999999993 68.84027100000009) (-132.69360399999994 68.84054600000013) (-132.76229899999998 68.8574910000001) (-132.77094999999997 68.85814700000003) (-132.777786 68.86015300000008) (-132.7802729999999 68.86298399999998) (-132.833618 68.91775500000011) (-132.85998499999988 68.98915099999999) (-132.868042 69.02137800000014) (-132.871918 69.05664100000001) (-132.86944600000004 69.06275900000009) (-132.86553999999995 69.068329) (-132.81527699999998 69.08638000000002) (-132.80526699999996 69.0894320000001) (-132.77111799999994 69.08554100000003) (-132.75418100000002 69.08471700000007) (-132.6891779999999 69.08248900000012) (-132.67501800000002 69.08332800000005) (-132.66332999999997 69.08581500000014) (-132.54083300000002 69.135269) (-132.46081500000003 69.12469500000009) (-132.464722 69.11914100000013) (-132.46749899999998 69.10720800000007) (-132.45916699999992 69.10803200000004) (-132.42861900000003 69.11775200000011) (-132.40777599999996 69.1244200000001) (-132.38500999999997 69.13916000000006) (-132.378876 69.14526400000005) (-132.36886600000003 69.15860000000004) (-132.36138899999997 69.17137100000014) (-132.343323 69.20332300000007) (-132.34249899999992 69.220261) (-132.33972199999994 69.22665399999994) (-132.33056599999998 69.23082000000005) (-132.32055699999995 69.23387100000008) (-132.30612199999996 69.23471100000012) (-132.22360199999997 69.21360800000002) (-132.2225039999999 69.141663) (-132.16805999999997 69.21388200000013) (-132.116943 69.24220300000007) (-132.05804399999994 69.24220300000007) (-131.99600199999998 69.25163299999991) (-131.96389799999997 69.25694299999998) (-131.875275 69.27970900000003) (-131.86499000000003 69.28305100000011) (-131.8052669999999 69.31637599999999) (-131.79751599999986 69.32138100000009) (-131.791107 69.32720899999998) (-131.71444699999995 69.3977660000001) (-131.72555499999993 69.401093) (-131.73416099999997 69.40054299999997) (-131.806671 69.39137299999993) (-131.950287 69.39582799999994) (-131.96499600000004 69.39721700000013) (-131.972778 69.40026900000004) (-131.97000099999997 69.40637200000003) (-131.65222199999994 69.47192400000006) (-131.63919099999998 69.47360200000014) (-131.60748299999995 69.47331200000013) (-131.59136999999993 69.47082500000005) (-131.458893 69.44914199999994) (-131.44528200000002 69.44636500000007) (-131.432953 69.43719499999997) (-131.42910799999993 69.43470000000013) (-131.43160999999998 69.43136599999997) (-131.43710299999992 69.42903100000007) (-131.451935 69.4205320000001) (-131.46221899999995 69.41720600000008) (-131.471649 69.41303999999997) (-131.47943099999998 69.4080350000001) (-131.48611500000004 69.40220600000009) (-131.53472899999997 69.333328) (-131.52584799999994 69.32943699999993) (-131.49942 69.33248900000007) (-131.420837 69.36164900000011) (-131.41278099999994 69.3666530000001) (-131.40750099999997 69.37330600000007) (-131.38989300000003 69.40415999999993) (-131.377228 69.42748300000005) (-131.32193 69.49331699999999) (-131.27166699999992 69.50109900000012) (-131.25723299999999 69.50166300000006) (-131.24581899999998 69.49832200000003) (-131.2333069999999 69.48414600000001) (-131.22387700000002 69.46360800000014) (-131.22027599999996 69.45332300000001) (-131.21664399999992 69.44274899999999) (-131.21276899999992 69.42220299999997) (-131.21093799999989 69.4125370000001) (-131.210266 69.40604400000007) (-131.21304299999997 69.38749700000005) (-131.22360200000003 69.38443000000012) (-131.2333069999999 69.38472000000013) (-131.24526999999995 69.382202) (-131.26641799999993 69.37580900000006) (-131.31777999999997 69.35887100000014) (-131.39529399999998 69.318604) (-131.40307599999994 69.31387300000006) (-131.415009 69.30137600000006) (-131.41445899999997 69.29693600000002) (-131.33526599999993 69.31666600000005) (-131.324707 69.31999200000007) (-131.19332899999995 69.36526499999997) (-131.188599 69.3683170000001) (-131.16650400000003 69.40493000000009) (-131.16223099999996 69.49054000000007) (-131.16418499999997 69.49552900000003) (-131.23123199999992 69.54389200000003) (-131.25385999999997 69.57184600000011) (-131.225464 69.5807190000001) (-131.20681799999994 69.55720500000001) (-131.15046699999994 69.51860000000005) (-131.13006599999994 69.516388) (-131.11053499999997 69.48532900000004) (-131.130157 69.4293750000001) (-131.14851399999992 69.40353400000004) (-131.1458439999999 69.37469500000003) (-131.135834 69.35998500000011) (-131.12832599999996 69.36192300000005) (-131.101227 69.39392100000009) (-131.08525099999991 69.44051400000001) (-131.06085199999995 69.47068800000011) (-131.06617699999993 69.49109600000008) (-131.06394999999998 69.51238999999998) (-131.08924899999994 69.53191400000014) (-131.10920699999997 69.54344900000012) (-131.127838 69.55454300000002) (-131.14781199999993 69.56119500000011) (-131.16599999999988 69.567856) (-131.1883239999999 69.57470700000005) (-131.19473300000004 69.57887299999993) (-131.1966549999999 69.58415200000013) (-131.196106 69.58998099999997) (-131.19055199999997 69.59664900000013) (-131.183899 69.60247800000013) (-131.17471299999994 69.60636900000003) (-131.13833599999998 69.61415099999994) (-131.12359600000002 69.61470000000008) (-131.1074829999999 69.61248800000004) (-131.093597 69.60942100000011) (-131.087219 69.605255) (-131.08306900000002 69.60053999999997) (-131.045776 69.52442900000005) (-131.02999899999998 69.48580900000013) (-131.027802 69.46388200000007) (-131.03390499999995 69.42915300000004) (-131.03695700000003 69.42303500000008) (-131.07028200000002 69.36747700000006) (-131.10803199999992 69.33526599999999) (-131.113312 69.328598) (-131.116394 69.32249500000006) (-131.10888699999998 69.32165500000002) (-131.09973100000002 69.32582100000008) (-131.05084199999993 69.35443100000009) (-131.02667199999996 69.38386500000013) (-130.98999000000003 69.44914199999994) (-130.99121099999996 69.50104500000009) (-130.9922029999999 69.50420399999996) (-130.99026500000002 69.53942900000004) (-130.98083499999996 69.54359400000004) (-130.96887200000003 69.54582199999999) (-130.952789 69.54332000000011) (-130.94638099999992 69.53915400000005) (-130.94222999999994 69.53414899999996) (-130.94055200000003 69.52915999999999) (-130.9244379999999 69.44859300000002) (-130.93971299999998 69.42148600000002) (-130.94154400000002 69.41781600000007) (-130.94555699999995 69.41431400000005) (-130.95039399999996 69.41132400000009) (-130.98580900000002 69.38304099999993) (-131.02583299999998 69.34787800000004) (-131.02984600000002 69.34436800000009) (-131.03317300000003 69.34037799999999) (-131.031998 69.33721200000002) (-131.03668200000004 69.31053200000002) (-131.027802 69.30664100000013) (-131.01696800000002 69.30748000000006) (-131.01419099999993 69.31387300000006) (-131.01333599999998 69.31944299999992) (-131.010559 69.32554600000009) (-131.00500499999998 69.33221400000002) (-130.99832200000003 69.33804300000003) (-130.95693999999997 69.371918) (-130.93194599999998 69.38348400000001) (-130.92710899999992 69.38649000000004) (-130.91844200000003 69.386818) (-130.91177400000004 69.384819) (-130.90928599999995 69.381981) (-130.89611799999994 69.38053900000006) (-130.89889500000004 69.35276800000003) (-130.90249600000004 69.34082000000012) (-130.906403 69.32887299999999) (-130.91427599999992 69.31831399999999) (-130.93194599999998 69.30497700000012) (-130.93972799999995 69.29998799999998) (-130.96362299999987 69.28526299999999) (-131.00057999999996 69.25665300000014) (-131.024719 69.20971700000013) (-131.01806599999992 69.14193699999993) (-131.01419099999993 69.13693200000006) (-130.99832200000003 69.13472000000002) (-130.9372249999999 69.13443000000001) (-130.92861899999997 69.14526400000005) (-130.93112199999996 69.22248800000006) (-130.93276999999995 69.22776799999991) (-130.9391779999999 69.23220800000013) (-130.9513849999999 69.24636800000007) (-130.950287 69.25776699999994) (-130.94723499999998 69.26416000000012) (-130.94168100000002 69.27053800000004) (-130.934998 69.27638200000007) (-130.82110599999993 69.37469500000003) (-130.81304899999998 69.37970000000013) (-130.771393 69.39888000000008) (-130.76055899999994 69.40220600000009) (-130.73165899999998 69.40332000000006) (-130.714722 69.40220600000009) (-130.70028699999995 69.40277100000014) (-130.689728 69.40609699999999) (-130.660278 69.42942800000003) (-130.65472399999993 69.43609600000002) (-130.64529400000004 69.45471200000003) (-130.652802 69.45776399999994) (-130.667236 69.45721400000008) (-130.74777199999994 69.44914199999994) (-130.71499599999993 69.46220399999999) (-130.52502400000003 69.54359400000004) (-130.50723300000004 69.55247499999996) (-130.478607 69.57470700000005) (-130.392517 69.64582800000011) (-130.385559 69.65165700000011) (-130.36248799999998 69.67387400000001) (-130.36608899999987 69.68637100000001) (-130.2811279999999 69.70027199999998) (-130.03308099999998 69.73193400000008) (-129.691956 69.78442400000012) (-129.67251599999992 69.79248000000001) (-129.65307599999994 69.80053699999996) (-129.624146 69.81248500000004) (-129.60220300000003 69.81887799999998) (-129.41332999999992 69.83804299999997) (-129.31555199999997 69.84664900000007) (-129.24276699999984 69.84999099999999) (-129.17999299999997 69.849152) (-129.14862099999993 69.84999099999999) (-129.09942599999994 69.85887100000002) (-129.05889899999988 69.87387100000001) (-129.04196199999996 69.88360600000004) (-129.027222 69.89526400000011) (-129.01501499999995 69.90832500000005) (-129.00058 69.933044) (-128.98831199999995 69.94609100000002) (-128.97360200000003 69.95748900000001) (-128.96527100000003 69.96249400000005) (-128.955261 69.96638500000012) (-128.94415300000003 69.96943700000008) (-128.93194600000004 69.97164900000013) (-128.90084799999994 69.97192400000012) (-128.88723799999997 69.96887200000003) (-128.864716 69.96165500000012) (-128.8561099999999 69.95776400000005) (-128.85470599999996 69.95471199999992) (-128.93444799999992 69.84414699999996) (-128.9466549999999 69.84193400000004) (-128.96417199999996 69.843323) (-129.03805499999999 69.8519290000001) (-129.08248899999995 69.85054000000014) (-129.1097109999999 69.84776300000004) (-129.134186 69.843323) (-129.14529399999998 69.84027100000009) (-129.15612799999997 69.836929) (-129.163635 69.83137499999998) (-129.169464 69.82470699999999) (-129.16027799999995 69.71581999999995) (-129.15390000000002 69.70027199999998) (-129.14999399999994 69.69552600000003) (-129.141388 69.69164999999998) (-129.1302799999999 69.68803400000007) (-128.97747800000002 69.67469800000015) (-128.96304299999997 69.67526200000009) (-128.92501799999997 69.68081699999999) (-128.786133 69.76081800000009) (-128.640015 69.84304800000001) (-128.544739 69.885269) (-128.4419559999999 69.921921) (-128.324158 69.94831800000009) (-128.31054700000004 69.958328) (-128.308624 70.0080410000001) (-128.31222499999996 70.01277200000004) (-128.349152 70.03915400000011) (-128.356384 70.04887400000001) (-128.36138900000003 70.05886800000002) (-128.36972000000003 70.09582500000005) (-128.36831699999988 70.10165400000005) (-128.361938 70.10832200000004) (-128.35333299999996 70.11303700000008) (-128.34304799999995 70.11692800000014) (-128.31054700000004 70.12692300000003) (-128.24414099999996 70.14637800000003) (-128.10916099999997 70.18220499999995) (-128.09414700000002 70.18248) (-128.05667099999994 70.17803999999995) (-128.01055899999994 70.17831400000011) (-127.99472000000003 70.17942800000009) (-127.96833799999996 70.18275499999999) (-127.84861799999999 70.20887800000014) (-127.61501299999992 70.2288670000001) (-127.58500699999996 70.22943100000003) (-127.54998799999998 70.22665400000011) (-127.51500699999985 70.22164900000007) (-127.51750199999998 70.22554000000014) (-127.55082700000003 70.23637400000001) (-127.578056 70.242752) (-127.61305199999987 70.24775700000004) (-127.71665999999999 70.25972000000007) (-127.73166700000002 70.26138299999997) (-127.79194599999994 70.25999500000006) (-127.85833699999995 70.26304600000009) (-127.87581599999987 70.2644350000001) (-128.02835099999993 70.28637700000013) (-128.03695700000003 70.29054300000007) (-128.06664999999987 70.30720500000007) (-128.0761109999999 70.34359700000005) (-128.07843000000003 70.3464360000001) (-128.07144199999988 70.34826700000008) (-128.0616149999999 70.34792300000004) (-128.05343599999998 70.34609200000006) (-128.04661599999986 70.3439330000001) (-128.02711499999998 70.34076699999997) (-127.98889200000002 70.34582499999999) (-127.97250399999996 70.34526100000005) (-127.96000699999996 70.34748800000011) (-127.94860799999998 70.35054000000002) (-127.94082600000002 70.35609400000004) (-127.90194699999995 70.39332600000006) (-127.91555800000003 70.39665200000007) (-127.93195300000002 70.39694200000008) (-127.95417799999996 70.39387499999998) (-127.97693600000002 70.38777200000004) (-127.987213 70.38388099999997) (-128.02166699999998 70.37469500000003) (-128.06500199999994 70.37731200000002) (-128.13833599999992 70.37598400000013) (-128.15183999999994 70.38031000000012) (-128.15933199999995 70.38548300000002) (-128.19665499999996 70.39193700000004) (-128.19888300000002 70.40248100000008) (-128.19055200000003 70.43664600000005) (-128.17749000000003 70.46081500000014) (-128.160553 70.49136400000003) (-128.15249600000004 70.503601) (-128.13583399999993 70.52304100000015) (-128.006958 70.588593) (-127.99665799999997 70.59054600000013) (-127.97138999999999 70.58387800000014) (-127.90360999999996 70.56248500000004) (-127.83556399999998 70.54081700000012) (-127.68028300000003 70.48609899999997) (-127.51583900000003 70.42608600000005) (-127.42859599999991 70.39332600000006) (-127.27471899999995 70.32609600000006) (-127.24889399999995 70.31414800000005) (-127.18831599999999 70.28054800000012) (-127.173607 70.27221700000007) (-127.125 70.23719800000015) (-127.07640100000003 70.19636500000007) (-127.05499299999997 70.17803999999995) (-127.03443899999996 70.14888000000008) (-126.89334099999996 70.00888099999997) (-126.87888299999997 70.00054899999998) (-126.81276700000001 69.91053799999997) (-126.81194299999993 69.90525800000012) (-126.80526700000001 69.89553800000004) (-126.74388099999999 69.81387300000011) (-126.714722 69.7752690000001) (-126.70584099999996 69.76609800000011) (-126.69999699999994 69.76138300000008) (-126.6808319999999 69.74803199999997) (-126.67250100000001 69.74386600000008) (-126.62053699999996 69.71998600000006) (-126.60166899999996 69.71247900000014) (-126.45944199999997 69.64414999999997) (-126.29055799999998 69.55859400000003) (-126.26777599999997 69.54081700000012) (-126.26722699999993 69.53553799999997) (-126.25583599999999 69.52665700000006) (-126.11221299999994 69.46943699999997) (-126.08860800000002 69.46249399999999) (-126.0497279999999 69.45277400000009) (-126.03666699999997 69.44970699999999) (-125.98889199999996 69.430542) (-125.96806299999997 69.42303500000008) (-125.95749699999999 69.41943400000002) (-125.910553 69.40554800000007) (-125.88474300000001 69.39915500000006) (-125.839722 69.38916) (-125.55110200000001 69.33718900000008) (-125.42639200000002 69.31218000000013) (-125.41528299999987 69.31301900000005) (-125.37249800000001 69.33580000000012) (-125.36554699999999 69.34246800000005) (-125.39083900000003 69.37051399999996) (-125.40110800000002 69.37413000000004) (-125.37748699999997 69.39608799999996) (-125.21000699999996 69.381912) (-125.16528299999999 69.38163800000007) (-125.14167800000001 69.38638300000008) (-125.13249200000001 69.39109800000011) (-125.12554899999998 69.39749100000006) (-125.11193800000001 69.41581700000006) (-125.089447 69.44970699999999) (-125.11277799999999 69.46415700000011) (-125.12304699999993 69.46803299999999) (-125.462784 69.45246900000006) (-125.53056300000003 69.43524200000007) (-125.609444 69.41525300000012) (-125.62249799999995 69.41859399999998) (-125.61805700000002 69.42442299999999) (-125.57805599999995 69.47164900000001) (-125.48832700000003 69.50749200000007) (-125.47721899999993 69.510269) (-125.46472199999988 69.5122070000001) (-125.449997 69.51249700000011) (-125.30695300000002 69.49998499999998) (-125.14723200000003 69.48551900000012) (-125.13166799999993 69.48469499999999) (-125.11805699999996 69.48579399999994) (-125.12082700000002 69.49079899999998) (-125.13137799999993 69.49441500000006) (-125.18554699999987 69.50720200000006) (-125.21640000000002 69.51303100000007) (-125.25499699999995 69.52302600000002) (-125.265556 69.52691700000008) (-125.41000399999996 69.62803600000007) (-125.41306299999997 69.6330410000001) (-125.41361999999992 69.63832100000013) (-125.41166699999991 69.64387499999998) (-125.37805200000003 69.67858900000004) (-125.36554699999999 69.69026200000008) (-125.35527000000002 69.69413800000012) (-125.079453 69.74275200000005) (-125.06555200000003 69.74359100000004) (-125.04972800000002 69.74304200000012) (-125.016953 69.74052400000011) (-125 69.73819000000009) (-124.98581699999994 69.734711) (-124.97528099999994 69.73082000000011) (-124.96749899999998 69.72692900000004) (-124.93554699999999 69.678314) (-124.92500299999995 69.64471400000014) (-124.90638699999994 69.65387000000004) (-124.88166799999999 69.67053200000004) (-124.82195300000001 69.71499599999999) (-124.82972699999999 69.71914700000008) (-124.86165599999993 69.73580900000007) (-124.88555899999994 69.74803199999997) (-124.89750700000002 69.75054900000003) (-125.01418299999995 69.75053400000002) (-125.22805799999998 69.75914000000012) (-125.241379 69.76025400000009) (-125.25890399999992 69.78410300000002) (-125.27639799999997 69.80824300000006) (-125.225281 69.83967600000005) (-125.20638999999994 69.84912099999997) (-125.19611399999997 69.853027) (-125.18443299999996 69.85580400000009) (-125.16750300000001 69.85414099999997) (-125.16194199999995 69.84970099999998) (-125.15722700000003 69.82356300000004) (-125.15666199999998 69.81828300000012) (-125.170837 69.80549600000012) (-125.170547 69.80021699999998) (-125.165009 69.79550200000011) (-125.15055799999999 69.793564) (-125.05666399999996 69.79524200000009) (-125.03222700000003 69.81720000000007) (-125.00945300000001 69.84552000000008) (-124.94748700000002 69.91053799999997) (-124.94027699999987 69.91693099999998) (-124.89334100000002 69.94026200000002) (-124.76444999999995 69.97082499999999) (-124.79527299999995 70.00888099999997) (-124.82695000000001 70.012497) (-124.88694799999996 70.011932) (-124.99027999999998 70.00610400000005) (-125.025284 69.99800099999999) (-125.04695100000004 69.98999000000009) (-125.08640299999996 69.96853599999992) (-125.10722399999997 69.95352200000008) (-125.10759699999994 69.9479750000001) (-125.11138899999997 69.9419400000001) (-125.123894 69.93995699999999) (-125.19082600000002 69.93243399999994) (-125.20667299999991 69.9332280000001) (-125.21721599999995 69.93690500000008) (-125.21777299999997 69.94233700000007) (-125.2022169999999 69.99858100000006) (-125.19748700000002 70.00450100000012) (-125.18831599999999 70.0090330000001) (-125.016953 70.0762180000001) (-125 70.07998700000002) (-124.98972300000003 70.078598) (-124.98166700000002 70.07443200000012) (-124.97556299999991 70.06469700000002) (-124.97528099999994 70.05941800000005) (-124.98194899999999 70.04776000000004) (-124.98665599999998 70.04165599999999) (-124.99610899999999 70.036926) (-124.99768799999998 70.036926) (-125 70.036926) (-125.03999299999992 70.02906800000011) (-125.04804999999999 70.02304100000009) (-125.04527300000001 70.01799000000011) (-125.03443900000002 70.01393100000001) (-125.01999699999993 70.01199300000007) (-124.90139799999997 70.02137800000014) (-124.86332699999997 70.02720600000009) (-124.85527000000002 70.03054800000001) (-124.86972000000003 70.032761) (-124.93916299999995 70.02748100000008) (-124.95500199999998 70.02832000000006) (-124.95694699999996 70.03221100000013) (-124.93916299999995 70.04248000000013) (-124.92859599999997 70.04609700000009) (-124.81416300000001 70.061646) (-124.714447 70.06915300000014) (-124.67527799999993 70.07193000000007) (-124.64527900000002 70.07193000000007) (-124.63474300000001 70.068329) (-124.63417099999992 70.05775499999993) (-124.60333300000002 70.01971400000014) (-124.59777799999995 70.01527400000009) (-124.58473199999992 70.011932) (-124.56861899999996 70.01110800000004) (-124.55583199999995 70.01304600000014) (-124.45754999999997 70.03570600000012) (-124.45172100000002 70.03837600000003) (-124.44672400000002 70.0417020000001) (-124.423607 70.05636600000014) (-124.44138299999997 70.07609600000012) (-124.449432 70.08027600000014) (-124.506958 70.10026600000015) (-124.51999699999999 70.10386700000004) (-124.54888899999997 70.10998499999994) (-124.58556399999992 70.11526500000002) (-124.59944199999995 70.11415100000005) (-124.62053700000001 70.10664400000007) (-124.63221699999997 70.10386700000004) (-124.68138099999999 70.09443699999997) (-124.71972699999998 70.08859300000012) (-124.735817 70.0894320000001) (-124.73889200000002 70.09443699999997) (-124.75195299999996 70.116379) (-124.75250199999999 70.121643) (-124.74388099999999 70.12719700000014) (-124.734444 70.13192700000002) (-124.70472699999993 70.14498900000001) (-124.69415299999997 70.14860500000009) (-124.68028299999997 70.14971900000006) (-124.43611099999998 70.15109300000006) (-124.391388 70.13415500000013) (-124.35861199999988 70.068604) (-124.36945299999996 70.034988) (-124.37193300000001 70.02943400000004) (-124.38394199999993 70.01776100000001) (-124.41776999999996 69.98942599999998) (-124.42610199999996 69.98387100000008) (-124.45944199999991 69.95637500000004) (-124.42971799999992 69.84942599999994) (-124.44249000000002 69.832764) (-124.45722999999998 69.81971699999997) (-124.47972099999998 69.8035890000001) (-124.50167799999991 69.78442400000012) (-124.50361599999997 69.73082000000011) (-124.5005569999999 69.72581500000007) (-124.49526999999995 69.72137500000008) (-124.487503 69.71720900000014) (-124.45916699999998 69.71081500000008) (-124.36138900000003 69.70109600000012) (-124.29499800000002 69.69525100000004) (-124.28111299999995 69.69609100000008) (-124.26862299999993 69.69802900000002) (-124.2433319999999 69.71470599999998) (-124.23388699999998 69.71914700000008) (-124.21305799999993 69.72665400000005) (-124.20140099999998 69.72943099999992) (-124.1875 69.73054500000012) (-124.06973299999987 69.72360200000008) (-124.04083300000002 69.70138500000002) (-124.05526700000001 69.67053200000004) (-124.21193699999998 69.58638000000008) (-124.24054699999994 69.55026200000003) (-124.24999999999994 69.54553199999998) (-124.28028899999998 69.53360000000004) (-124.33444199999997 69.51693699999998) (-124.37777699999992 69.49693300000001) (-124.39527899999996 69.4869230000001) (-124.51888999999994 69.40415999999993) (-124.51390099999998 69.399429) (-124.48000300000001 69.37803600000007) (-124.47222899999991 69.37414600000011) (-124.44666299999994 69.36720300000013) (-124.32584399999996 69.35192900000004) (-124.26363399999997 69.34860200000008) (-124.21888699999994 69.34776299999993) (-124.16194200000001 69.34915200000012) (-124.12026999999995 69.35137900000001) (-124.09528399999999 69.35498000000007) (-124.01640299999997 69.3791500000001) (-123.962219 69.38304099999993) (-123.83138999999994 69.38888500000013) (-123.81696299999999 69.38888500000013) (-123.73055999999997 69.37747200000013) (-123.702789 69.37109400000003) (-123.69776899999988 69.366379) (-123.69748699999997 69.36109900000008) (-123.69248999999996 69.35664400000007) (-123.67999299999991 69.35331700000012) (-123.66639700000002 69.3541560000001) (-123.502792 69.37719700000014) (-123.47778299999993 69.38108800000003) (-123.46611000000001 69.38388100000003) (-123.41915899999998 69.40443400000004) (-123.40750100000002 69.4160920000001) (-123.43276999999995 69.42303500000008) (-123.44027699999998 69.42720000000008) (-123.45084399999996 69.44693000000007) (-123.45084399999996 69.45220900000004) (-123.44833399999993 69.45776399999994) (-123.443329 69.46388200000007) (-123.43611099999998 69.47026100000011) (-123.42859599999991 69.47637900000007) (-123.39998599999996 69.49026500000008) (-123.36527999999998 69.49832200000003) (-123.33999599999999 69.5022130000001) (-123.30110200000001 69.50665300000009) (-123.27306399999998 69.50776700000011) (-123.26139799999999 69.50499000000002) (-123.26287799999994 69.50026700000001) (-123.25723299999999 69.49609400000008) (-123.19275699999997 69.490814) (-123.17999299999991 69.49247700000012) (-123.16861 69.4952550000001) (-123.16332999999992 69.50138900000013) (-123.13166799999999 69.559708) (-123.12666300000001 69.57110599999999) (-123.09638999999999 69.67053200000004) (-123.09612299999998 69.68637100000001) (-123.10637700000001 69.74304200000012) (-123.10888699999998 69.74775699999992) (-123.11665299999993 69.75221300000004) (-123.10527000000002 69.77915999999999) (-123.01583900000003 69.81832900000006) (-122.97083999999995 69.830826) (-122.95916699999992 69.8336030000001) (-122.943329 69.832764) (-122.90499899999998 69.82222000000013) (-122.876938 69.81025700000009) (-122.85388199999994 69.80304000000012) (-122.82584400000002 69.79637100000008) (-122.80803699999996 69.79359399999998) (-122.79332699999992 69.79359399999998) (-122.779449 69.79470799999996) (-122.766663 69.79637100000008) (-122.754997 69.79914900000006) (-122.74610899999999 69.80442800000003) (-122.66443599999997 69.81805400000002) (-122.61554699999999 69.81219500000003) (-122.58833300000003 69.80748) (-122.47778299999999 69.80276500000014) (-122.45805399999995 69.80247500000013) (-122.24333200000001 69.80220000000008) (-122.12777699999992 69.80247500000013) (-122.06221 69.813309) (-122.04415899999998 69.81359900000001) (-121.89639299999999 69.80554200000006) (-121.71916199999993 69.79582199999993) (-121.68388400000003 69.79359399999998) (-121.44304699999998 69.76554900000002) (-121.41639700000002 69.76081800000009) (-121.38054699999992 69.75221300000004) (-121.33332799999994 69.74081400000011) (-121.28611799999999 69.7291560000001) (-121.18305999999995 69.70248400000003) (-121.12027 69.6827550000001) (-121.08667000000003 69.67359899999997) (-121.035553 69.66331500000013) (-121.00890400000003 69.6583250000001) (-120.93415800000002 69.64860499999998) (-120.88110399999994 69.63888500000007) (-120.82556199999999 69.62359600000002) (-120.79638699999992 69.61303699999996) (-120.760559 69.5983280000001) (-120.73999000000003 69.5852660000001) (-120.73528299999992 69.58027600000003) (-120.72860700000001 69.57582100000002) (-120.70111099999997 69.55859400000003) (-120.67859599999991 69.54609700000003) (-120.61609599999997 69.52026400000005) (-120.39334100000002 69.43969700000008) (-120.27528399999994 69.40415999999993) (-120.23166700000002 69.39166299999994) (-119.98222399999986 69.34471100000002) (-119.93499800000001 69.33970599999998) (-119.91776999999996 69.33831800000007) (-119.63527699999997 69.315811) (-119.46140300000002 69.303314) (-119.33500700000002 69.3019260000001) (-119.31582599999996 69.30108600000005) (-119.23000300000001 69.29443400000014) (-118.94082600000002 69.25943000000007) (-118.85555999999997 69.25248700000009) (-118.84056099999992 69.25054899999998) (-118.79998799999993 69.24331700000005) (-118.693604 69.22360200000003) (-118.65527299999997 69.21582000000006) (-118.64472999999998 69.21249400000005) (-118.63639799999993 69.20887799999997) (-118.58168 69.18026700000007) (-118.55248999999998 69.16360500000008) (-118.53999299999998 69.15498400000013) (-118.502228 69.13472000000002) (-118.48554999999999 69.12692300000009) (-118.45777900000002 69.11747700000012) (-118.432503 69.11219800000009) (-118.18611099999998 69.06387300000011) (-118.08167999999995 69.03137199999998) (-118.035553 69.01971400000014) (-118.010559 69.01443499999999) (-117.87053700000001 68.98553500000014) (-117.83693700000003 68.982483) (-117.74221799999998 68.97804300000001) (-117.63390400000003 68.97360200000008) (-117.59612300000003 68.97164900000013) (-117.5625 68.96859700000005) (-117.41583299999996 68.953598) (-117.26917300000002 68.91526800000003) (-117.19110099999995 68.89387499999992) (-117.15387699999997 68.88554400000004) (-117.13667299999997 68.88554400000004) (-116.978882 68.89999399999999) (-116.96639999999996 68.90220600000004) (-116.96056399999992 68.90721100000007) (-116.93907899999994 68.91100300000011) (-116.88667299999992 68.90887500000008) (-116.74445299999996 68.880539) (-116.515289 68.8580320000001) (-116.50029 68.85720800000013) (-116.43611099999998 68.85859700000009) (-116.42054699999994 68.85914600000007) (-116.41111799999999 68.86276199999992) (-116.40666199999998 68.86859099999992) (-116.40943899999996 68.87997400000012) (-116.39862099999999 68.88275100000004) (-116.38137799999998 68.88247700000011) (-116.36472300000003 68.88081399999999) (-116.34028599999994 68.87525900000009) (-116.285553 68.85971100000012) (-116.22721899999993 68.83915700000011) (-116.22138999999999 68.83442700000012) (-116.21362299999998 68.83055100000001) (-116.12304699999993 68.81832900000006) (-116.10637700000001 68.81666600000011) (-115.99388099999999 68.80664100000001) (-115.96000699999996 68.80470300000007) (-115.94915800000001 68.80748) (-115.94138299999997 68.81192000000004) (-115.94471699999997 68.81694000000005) (-115.95249899999993 68.82083100000011) (-116.12193299999996 68.87248199999999) (-116.31639099999995 68.94747899999993) (-116.32417299999992 68.95166) (-116.33000199999992 68.95610000000005) (-116.325287 68.96192900000005) (-116.31610099999995 68.96554600000002) (-116.30526699999996 68.96859700000005) (-116.26139799999987 68.97998000000007) (-116.239441 68.98553500000014) (-116.20500199999987 68.98498500000011) (-116.19027699999998 68.98275800000005) (-116.068893 68.96054100000015) (-116.00750700000003 68.94636500000013) (-115.96833799999996 68.938583) (-115.88417099999998 68.92469800000009) (-115.86749299999991 68.92275999999998) (-115.77806099999987 68.93637100000012) (-115.76695299999994 68.93914800000005) (-115.77500900000001 68.94303900000011) (-115.80943299999996 68.95220899999998) (-115.833328 68.99247700000001) (-115.59306300000003 68.97164900000013) (-115.44638099999992 68.93775900000003) (-115.06471299999993 68.86747699999995) (-115.05055199999993 68.86886600000014) (-115.03500400000001 68.86914099999996) (-115.01640299999997 68.868042) (-114.98999000000003 68.86276199999992) (-114.97805800000003 68.85914600000007) (-114.82167099999998 68.80970799999994) (-114.79194599999994 68.79942300000005) (-114.77916699999992 68.77915999999999) (-114.77055399999995 68.76944000000009) (-114.74916100000002 68.75138900000007) (-114.729446 68.74443100000013) (-114.71528599999999 68.74220300000013) (-114.69666299999994 68.740814) (-114.66555799999998 68.7416530000001) (-114.57833899999997 68.72804300000007) (-114.54250300000001 68.71943699999997) (-114.44833399999999 68.68969700000002) (-114.44055200000003 68.68580599999996) (-114.46028100000001 68.6705320000001) (-114.46528599999999 68.66442899999993) (-114.46221899999995 68.65942400000006) (-114.45667300000002 68.65470900000003) (-114.40471600000001 68.61499000000015) (-114.39499699999993 68.61137400000007) (-114.30444299999988 68.58692900000005) (-114.23361199999994 68.56944300000009) (-114.12165799999997 68.51748700000002) (-114.10665899999992 68.50943000000007) (-114.08889799999997 68.49636800000002) (-114.07055699999995 68.47747800000008) (-114.064438 68.46720900000003) (-114.06054699999993 68.45665000000002) (-114.01112399999994 68.25027500000004) (-114.01390100000003 68.24498) (-114.02333099999998 68.24136400000009) (-114.03582799999998 68.23942599999998) (-114.28806299999997 68.22886699999992) (-114.32000700000003 68.22915600000005) (-114.33805799999993 68.23054500000006) (-114.35166900000002 68.23359700000015) (-114.37053700000001 68.24054000000012) (-114.37805199999997 68.24443100000002) (-114.38305700000001 68.24887100000007) (-114.390556 68.25305200000014) (-114.41166699999997 68.25943000000007) (-114.42555199999998 68.261932) (-114.44167299999987 68.26361099999997) (-114.47361799999987 68.26388500000013) (-114.70249899999999 68.25027500000004) (-114.75527999999997 68.18969700000014) (-114.76471699999996 68.18609600000008) (-114.861107 68.153595) (-114.87193300000001 68.15109300000012) (-114.89639299999999 68.14694200000002) (-114.92971799999992 68.14776599999999) (-114.97749299999992 68.15331999999995) (-115.00750700000003 68.15721100000002) (-115.076683 68.16886900000009) (-115.17054699999994 68.18054200000012) (-115.22501399999993 68.18414299999995) (-115.23721299999988 68.18220500000001) (-115.24194299999999 68.176376) (-115.24388099999993 68.0413670000001) (-115.24054699999994 68.03637700000007) (-115.23528299999998 68.03166200000004) (-115.220551 68.02388000000008) (-115.204453 68.02192700000012) (-115.17138699999998 68.02110299999998) (-115.15638699999994 68.02165200000013) (-115.12526699999995 68.020264) (-115.11389200000002 68.01748700000013) (-115.11054999999999 68.01220700000005) (-115.11665299999999 68.00721700000003) (-115.12581599999999 68.00360100000012) (-115.20472699999993 67.97804300000001) (-115.216949 67.976089) (-115.34221599999995 67.95803799999999) (-115.50334199999986 67.93441800000005) (-115.52749599999999 67.93026700000013) (-115.53639199999998 67.92665100000005) (-115.5425029999999 67.92164600000001) (-115.53694200000001 67.90525799999995) (-115.53388999999993 67.89999399999999) (-115.52834299999995 67.89553800000004) (-115.521118 67.89166300000011) (-115.50723299999993 67.8894350000001) (-115.281387 67.86637900000011) (-115.27610800000002 67.86164900000006) (-115.20028699999995 67.82193000000012) (-115.19082599999996 67.81832900000006) (-115.11361699999998 67.79859900000008) (-115.1036069999999 67.79664600000012) (-115.02887699999985 67.78665200000012) (-115.01251200000002 67.78637700000013) (-114.99916099999996 67.7874910000001) (-114.93611099999998 67.79553199999998) (-114.88667299999997 67.80276499999997) (-114.84916699999991 67.80775500000004) (-114.80999800000001 67.81219500000003) (-114.78307299999989 67.81442300000003) (-114.75334199999992 67.81498699999997) (-114.73693799999995 67.81469700000014) (-114.718887 67.81330900000006) (-114.70749699999999 67.81053199999997) (-114.6866609999999 67.8041530000001) (-114.67722299999997 67.80081200000006) (-114.65527299999997 67.78887900000001) (-114.64499699999999 67.77970900000014) (-114.637787 67.77554300000003) (-114.29778299999992 67.7185970000001) (-114.28362300000003 67.71748400000001) (-114.27139299999999 67.71943699999997) (-114.25029 67.72470099999998) (-114.24109599999991 67.728317) (-114.22000099999997 67.73387100000002) (-114.19583099999994 67.73776200000009) (-114.1808319999999 67.73803700000008) (-114.14835399999993 67.7369230000001) (-114.11472300000003 67.73387100000002) (-113.99694799999992 67.72303800000003) (-113.98332199999999 67.72053500000004) (-113.94943199999994 67.71165500000001) (-113.89250199999992 67.69693000000007) (-113.84584000000001 67.69135999999997) (-113.76862299999999 67.69108600000004) (-113.70889299999999 67.69192500000003) (-113.55082699999997 67.69802900000008) (-113.25583599999999 67.70443699999998) (-113.24082899999996 67.70443699999998) (-113.20694700000001 67.70248400000008) (-113.17804699999988 67.69802900000008) (-113.15556300000003 67.69220000000001) (-113.11916399999996 67.67804000000012) (-113.10777300000001 67.67498800000004) (-113.06777999999997 67.66748000000001) (-113.04998799999993 67.6660920000001) (-112.965012 67.66970800000013) (-112.73972300000003 67.66943400000002) (-112.3958439999999 67.67915300000004) (-112.370003 67.68193100000002) (-112.348343 67.68719499999997) (-112.34056099999998 67.69135999999997) (-112.33361799999989 67.69636500000001) (-112.18331899999993 67.72776800000008) (-111.912781 67.75416600000005) (-111.88305700000001 67.75443999999999) (-111.79972799999996 67.75082400000008) (-111.66000399999996 67.73332200000004) (-111.57277699999992 67.74443100000013) (-111.45861799999989 67.76304600000009) (-111.3708269999999 67.78109700000005) (-111.32250999999991 67.80693100000008) (-111.31276699999995 67.81053199999997) (-111.29083299999996 67.81553600000007) (-111.200287 67.83415200000013) (-111.17582699999991 67.83749400000005) (-111.15943900000002 67.83665500000006) (-111.14835399999998 67.83360299999998) (-111.14388999999994 67.82887299999993) (-111.146118 67.82276900000011) (-111.12082700000002 67.78082300000011) (-111.03443899999996 67.76416000000006) (-111.01834100000002 67.76332100000008) (-111.00583599999999 67.76499899999999) (-110.84056099999998 67.80026200000003) (-110.83222999999998 67.80442800000009) (-110.80972300000002 67.81860400000011) (-110.78859699999998 67.83360299999998) (-110.78278399999994 67.83943199999999) (-110.75890400000003 67.85276799999997) (-110.74221799999992 67.86109900000002) (-110.73249800000002 67.86442599999998) (-110.41443600000002 67.94775400000015) (-110.33999599999999 67.96554600000002) (-110.1991579999999 67.97221400000001) (-110.17999299999991 67.99443100000008) (-110.1725009999999 67.99942000000004) (-110.162781 68.00277699999998) (-110.15167200000002 68.00526400000007) (-110.13054699999998 68.00804099999999) (-110.11694299999994 68.00888100000003) (-110.08389299999999 68.00694300000009) (-110.07084699999996 68.004166) (-110.04888900000003 67.99775699999992) (-110.001106 67.97970599999996) (-109.979446 67.96748399999996) (-109.97083999999995 67.95803799999999) (-109.96888699999994 67.95304900000002) (-109.96749899999992 67.94136000000015) (-109.97028399999999 67.92970300000002) (-109.97749299999987 67.91137700000002) (-109.99166899999994 67.89137300000004) (-110.001106 67.87248200000005) (-110.00361599999991 67.86637900000011) (-110.00361599999991 67.86053500000008) (-109.99749799999995 67.85081500000001) (-109.98889200000002 67.8413700000001) (-109.98249800000002 67.83720400000004) (-109.97389199999998 67.83360299999998) (-109.96305799999993 67.83027600000003) (-109.948036 67.83027600000003) (-109.93554699999999 67.83194000000003) (-109.92582699999997 67.8352660000001) (-109.91722099999998 67.839157) (-109.91251399999999 67.84582499999993) (-109.912216 67.85165399999994) (-109.91639700000002 67.85609399999998) (-109.94888300000002 67.87719700000008) (-109.95305599999995 67.88192700000008) (-109.94193999999993 67.88443000000007) (-109.89028899999994 67.879974) (-109.86193799999995 67.87498500000004) (-109.823059 67.8660890000001) (-109.81416299999995 67.86219800000003) (-109.80777 67.8580320000001) (-109.76722699999993 67.82777399999998) (-109.73082699999998 67.79193100000009) (-109.729172 67.76776100000012) (-109.73581699999994 67.74275200000011) (-109.74553700000001 67.7394260000001) (-109.75167799999991 67.73359700000009) (-109.74973299999994 67.72859200000005) (-109.7369379999999 67.72026100000011) (-109.72609699999998 67.71693399999998) (-109.55222300000003 67.68775900000014) (-109.53472899999991 67.68580600000001) (-109.52250700000002 67.68748499999998) (-109.51139799999999 67.68969700000008) (-109.50279199999994 67.69386299999996) (-109.48805199999993 67.70387300000004) (-109.37026999999995 67.72915599999999) (-109.25361599999997 67.73193400000014) (-109.21028100000001 67.73220800000007) (-109.159157 67.72747800000002) (-109.06582600000002 67.71415700000011) (-109.05972300000002 67.709991) (-109.01471699999996 67.6766510000001) (-109.00279199999994 67.66249100000005) (-108.91915899999992 67.53581200000013) (-108.921944 67.52970900000003) (-108.953888 67.51193200000012) (-108.96362299999998 67.5086060000001) (-108.99665800000002 67.50138900000002) (-109.00119000000001 67.5) (-109.00666799999993 67.49832200000009) (-109.01528899999994 67.49414100000001) (-109.02139299999999 67.48831199999995) (-109.02528399999994 67.4833220000001) (-109.01806599999998 67.46249400000005) (-109.002228 67.44358799999998) (-108.98554999999993 67.43609600000008) (-108.84999099999993 67.38859600000006) (-108.83112299999993 67.35359199999999) (-108.82501200000002 67.34942600000011) (-108.81276700000001 67.34887699999996) (-108.80416899999994 67.35276800000003) (-108.79666099999986 67.3577580000001) (-108.79055799999998 67.36360200000013) (-108.76611299999996 67.39637800000003) (-108.75834700000001 67.40914900000013) (-108.75583599999999 67.41526799999997) (-108.74445299999996 67.44552599999997) (-108.74109599999997 67.45721400000014) (-108.73638900000003 67.48109399999998) (-108.735817 67.48664900000006) (-108.734734 67.54775999999998) (-108.735817 67.55859400000003) (-108.73777799999993 67.56387300000006) (-108.73889200000002 67.5747070000001) (-108.73916599999995 67.59693899999996) (-108.73638900000003 67.60304300000001) (-108.73000299999995 67.60859700000003) (-108.714722 67.61914100000007) (-108.70612299999988 67.62330600000007) (-108.69611399999997 67.626373) (-108.67027299999995 67.6285860000001) (-108.65527299999991 67.62831100000011) (-108.62053700000001 67.62469500000003) (-108.6100009999999 67.62109399999997) (-108.58500700000002 67.60998500000011) (-108.57888799999989 67.60554500000006) (-108.516953 67.49748200000005) (-108.51139799999999 67.48748799999998) (-108.510559 67.47665400000011) (-108.51334399999996 67.4705350000001) (-108.52333099999993 67.45748900000001) (-108.52390300000002 67.45165999999995) (-108.52278100000001 67.44081100000011) (-108.49804699999993 67.36303700000008) (-108.49027999999998 67.35359199999999) (-108.48416099999997 67.34942600000011) (-108.47138999999993 67.34664900000001) (-108.458054 67.34721400000006) (-108.43720999999994 67.35276800000003) (-108.42971799999998 67.35748300000006) (-108.42471299999994 67.36415100000005) (-108.421944 67.3702550000001) (-108.42944299999999 67.37970000000013) (-108.43554699999999 67.38388100000003) (-108.439438 67.38859600000006) (-108.44275699999997 67.39915500000012) (-108.43998699999992 67.42747500000013) (-108.43472300000002 67.43165600000003) (-108.39388999999994 67.44358799999998) (-108.38166799999999 67.4452510000001) (-108.36694299999994 67.444977) (-108.34361299999989 67.43858299999994) (-108.33556399999998 67.4349820000001) (-108.321121 67.42692600000004) (-108.30750299999988 67.41304000000002) (-108.301941 67.40332000000012) (-108.30027799999999 67.39804100000015) (-108.29666099999997 67.39332600000012) (-108.28832999999997 67.38943500000005) (-108.13417099999992 67.32916300000005) (-108.06360599999988 67.305252) (-108.02583300000003 67.29637100000002) (-108.015289 67.293045) (-107.98554999999999 67.27192700000012) (-107.94471699999997 67.23637400000007) (-107.94082600000002 67.23165900000004) (-107.875 67.14082300000001) (-107.87526700000001 67.05276500000014) (-107.88054699999998 67.04832499999992) (-107.89362299999999 67.0477600000001) (-107.90499899999998 67.04971300000005) (-107.95028699999995 67.06219500000003) (-108.00834699999996 67.07748400000008) (-108.02084399999995 67.08055100000001) (-108.03666699999991 67.08166499999999) (-108.14862099999993 67.07666000000012) (-108.15722700000003 67.07276900000005) (-108.18916300000001 67.05497700000001) (-108.19304699999986 67.04971300000005) (-108.192207 67.03887899999995) (-108.19082600000002 67.03359999999998) (-108.19138299999992 67.02804600000002) (-108.19526699999994 67.0227660000001) (-108.20388799999995 67.01887500000004) (-108.21611000000001 67.01721199999992) (-108.23277300000001 67.01915000000008) (-108.24527 67.02221700000001) (-108.45028699999995 67.08332800000011) (-108.46056399999992 67.086929) (-108.495003 67.10220300000009) (-108.51722699999999 67.11387600000006) (-108.541382 67.13081399999999) (-108.55555700000002 67.13888500000007) (-108.58029199999999 67.15026899999998) (-108.59056099999998 67.153595) (-108.6063769999999 67.15470899999997) (-108.61971999999997 67.15387000000004) (-108.622772 67.14999399999994) (-108.53028899999993 67.04248000000001) (-108.52416999999997 67.03831500000001) (-108.51611300000002 67.03442399999994) (-108.50140399999998 67.03221100000002) (-108.491669 67.0352630000001) (-108.48554999999988 67.0410920000001) (-108.48500100000001 67.04664600000012) (-108.48665599999998 67.05192599999998) (-108.49054699999988 67.05664100000001) (-108.48944099999994 67.06776400000001) (-108.48194899999999 67.07276900000005) (-108.468887 67.07331800000003) (-108.45612299999999 67.0705410000001) (-108.44193999999999 67.06248500000004) (-108.39222699999993 67.02886999999998) (-108.35637700000001 67.00332600000013) (-108.34665699999994 66.99443100000008) (-108.33056599999998 66.9869230000001) (-108.31806899999998 66.98387100000014) (-108.28971899999993 66.97998000000007) (-108.25862099999995 66.97776800000003) (-108.22860700000001 66.97665400000005) (-108.19695300000001 66.97221400000001) (-108.16639700000002 66.9622040000001) (-108.14998600000001 66.95443699999998) (-108.11472299999997 66.92886400000003) (-107.98528299999998 66.82859800000011) (-107.94138299999997 66.78831500000007) (-107.93831599999999 66.77804600000007) (-107.93971299999993 66.76666300000005) (-107.94193999999999 66.74970999999994) (-107.94471699999997 66.7435910000001) (-107.94803599999995 66.73193399999997) (-107.949432 66.7205350000001) (-107.94583099999994 66.71582000000006) (-107.89444699999996 66.67164600000012) (-107.88276699999989 66.66331500000001) (-107.87082699999996 66.66249100000005) (-107.86444099999989 66.66832000000005) (-107.86389200000002 66.67387400000007) (-107.86776700000001 66.71138000000002) (-107.88474299999996 66.75082399999991) (-107.88834400000002 66.75555400000013) (-107.88194299999992 66.75915500000002) (-107.86776700000001 66.75888100000009) (-107.85333299999996 66.7563780000001) (-107.829453 66.74498000000011) (-107.81777999999997 66.73637400000001) (-107.76500699999997 66.68691999999999) (-107.72416699999991 66.62970000000013) (-107.64750699999996 66.5747070000001) (-107.62805199999997 66.56219499999997) (-107.60082999999997 66.54609700000009) (-107.56945799999994 66.53054800000001) (-107.55721999999997 66.52777100000009) (-107.43305999999995 66.45359800000011) (-107.2911069999999 66.36831699999999) (-107.26027699999986 66.35304300000007) (-107.24804699999993 66.34999099999999) (-107.23500100000001 66.34860200000014) (-107.22222899999997 66.349152) (-107.21140299999996 66.35137900000007) (-107.203056 66.35525499999994) (-107.196663 66.36080900000013) (-107.195831 66.36637900000005) (-107.19722000000002 66.371643) (-107.20056199999993 66.37637300000006) (-107.23554999999993 66.40748600000006) (-107.34221599999995 66.46165500000006) (-107.43888899999996 66.51304600000014) (-107.56220999999994 66.59136999999998) (-107.56582599999996 66.59610000000004) (-107.56861899999996 66.60664400000007) (-107.56777999999991 66.61219800000009) (-107.56916799999999 66.61747700000006) (-107.57055700000001 66.6224820000001) (-107.57417299999997 66.62747199999995) (-107.62416100000002 66.66081200000002) (-107.64943700000003 66.69386299999996) (-107.69387799999998 66.755829) (-107.74665800000002 66.92276000000004) (-107.68861399999997 66.97709700000013) (-107.63806199999999 67.02442900000005) (-107.66665599999993 67.06303400000002) (-107.66805999999985 67.06832900000006) (-107.66166699999997 67.07388300000002) (-107.65083299999992 67.076096) (-107.63612399999994 67.07388300000002) (-107.60777299999995 67.063309) (-107.58361799999994 67.05165099999999) (-107.52390300000002 67.02026400000005) (-107.516663 67.01054399999998) (-107.48388699999998 66.924149) (-107.48473399999995 66.91859399999993) (-107.49694799999997 66.91720600000002) (-107.57972699999988 66.91638200000006) (-107.59445199999999 66.91886899999997) (-107.60221899999988 66.92276000000004) (-107.608047 66.9269260000001) (-107.62332200000003 66.94026200000008) (-107.626938 66.94497700000011) (-107.632767 66.9494170000001) (-107.64083899999997 66.95304900000008) (-107.647064 66.94271100000003) (-107.65521999999999 66.94371000000007) (-107.66238399999997 66.94287900000006) (-107.66754900000001 66.94037600000007) (-107.67138699999998 66.93703500000004) (-107.670387 66.93386800000002) (-107.63527699999997 66.89221200000003) (-107.5702819999999 66.8377690000001) (-107.564438 66.83360299999998) (-107.51306199999993 66.82222000000002) (-107.42832900000002 66.80470300000013) (-107.41610699999995 66.80609100000004) (-107.40888999999993 66.81109600000008) (-107.39111299999996 66.8913730000001) (-107.39584400000001 66.90138200000013) (-107.422234 66.93969700000002) (-107.42944299999999 66.94914200000011) (-107.43888899999996 66.95832800000005) (-107.44471699999997 66.96249399999994) (-107.44387799999993 66.96804800000012) (-107.435272 66.97221400000001) (-107.421944 66.97276299999999) (-107.40611299999995 66.97137500000008) (-107.37943999999993 66.966095) (-107.35916099999992 66.959427) (-107.23388699999992 66.90220600000009) (-107.21806299999997 66.89471400000014) (-107.21028099999995 66.89082300000007) (-107.1875 66.87359600000002) (-107.15750099999991 66.84693900000013) (-107.15055799999999 66.83749400000005) (-107.14916999999991 66.83221400000002) (-107.137787 66.82360800000009) (-107.12554899999992 66.82054099999999) (-107.09472700000003 66.81832900000012) (-107.08361799999994 66.82054099999999) (-107.15527299999997 66.899719) (-107.203888 66.94470200000006) (-107.22666900000002 66.96165500000001) (-107.24027999999998 66.96998600000006) (-107.29750100000001 67.00193800000005) (-107.3052669999999 67.00582900000012) (-107.31139399999995 67.12719700000002) (-107.38806199999993 67.14444000000015) (-107.43083200000001 67.15832500000005) (-107.44915800000001 67.16554300000007) (-107.47332799999992 67.17692600000004) (-107.48137700000001 67.18081699999993) (-107.50306699999993 67.1927490000001) (-107.53250100000002 67.214157) (-107.64862099999993 67.359985) (-107.57694999999995 67.47554000000014) (-107.57389799999993 67.48165899999998) (-107.57528699999995 67.48692299999999) (-107.578888 67.49165299999999) (-107.58277899999996 67.49636800000002) (-107.58860799999991 67.50082399999997) (-107.71833800000002 67.57331800000009) (-107.74054699999994 67.58526599999993) (-107.77362099999999 67.60054000000002) (-107.81331599999999 67.61442600000004) (-107.84472700000003 67.62442000000004) (-107.89055599999989 67.64248700000007) (-107.96916199999998 67.6766510000001) (-107.98972300000003 67.68887300000011) (-107.99944299999999 67.69802900000008) (-108.006958 67.70748900000012) (-108.01334399999996 67.728317) (-108.01445000000001 67.73414600000001) (-108.015289 67.74498000000006) (-108.01390099999998 67.756104) (-108.00805699999995 67.76832600000012) (-107.99249299999997 67.78804000000002) (-107.94833399999993 67.84109500000011) (-107.94193999999999 67.84693900000013) (-107.93415800000002 67.85165399999994) (-107.92278299999998 67.8538670000001) (-107.890289 67.85165399999994) (-107.87777699999992 67.85331700000006) (-107.85527000000002 67.85775799999999) (-107.75666799999993 67.88081400000004) (-107.71472199999994 67.89248700000007) (-107.70472699999993 67.89582800000011) (-107.674713 67.91609200000005) (-107.66166699999997 67.92747500000002) (-107.65110800000002 67.94053599999995) (-107.65499899999992 67.94525099999998) (-107.66555800000003 67.94859300000013) (-107.770508 67.96526300000005) (-107.81133999999992 67.97159600000003) (-107.910278 67.988586) (-107.91639699999996 67.99304200000006) (-107.91999800000002 67.99775699999992) (-107.89055599999989 68.08166499999999) (-107.88527699999997 68.08831800000013) (-107.87888299999997 68.09387200000015) (-107.86332699999997 68.10359200000005) (-107.85166899999996 68.1060940000001) (-107.837784 68.10443099999998) (-107.72112300000003 68.08276399999994) (-107.69943199999994 68.07582100000013) (-107.69360399999994 68.07165500000008) (-107.69776899999994 68.0663760000001) (-107.70667300000002 68.06248500000004) (-107.72721899999993 68.05609099999998) (-107.73860200000001 68.05386400000009) (-107.77250700000002 68.05693100000002) (-107.78778099999994 68.05720500000012) (-107.80027799999999 68.05581700000005) (-107.80943299999996 68.05165099999994) (-107.83332799999988 68.01304600000003) (-107.83389299999999 68.00721700000003) (-107.82778899999988 68.00305200000003) (-107.8038479999999 68.00426499999998) (-107.78733799999998 67.99759700000004) (-107.77900699999998 67.9967650000001) (-107.763847 67.99842800000005) (-107.75699599999996 67.99977100000012) (-107.75426500000003 68.00681299999997) (-107.73306300000002 68.020828) (-107.72501399999993 68.02581800000002) (-107.69027699999992 68.04248000000001) (-107.67999299999997 68.04582199999993) (-107.61028299999998 68.05859399999997) (-107.58583099999998 68.05998200000005) (-107.57084700000001 68.05970800000011) (-107.53806299999997 68.05748) (-107.45028699999989 68.04721100000012) (-107.38890100000003 68.04525799999999) (-107.36221299999994 68.04693600000013) (-107.34944200000001 68.04859900000002) (-107.32640099999998 68.05304000000012) (-107.28778099999994 68.06498700000009) (-107.25140399999998 68.080826) (-107.22638699999993 68.09443699999997) (-107.154449 68.12692300000009) (-107.141953 68.128311) (-107.11028299999998 68.12692300000009) (-107.10665899999998 68.12220800000006) (-107.11888099999987 68.08471700000007) (-106.96556099999998 68.11331200000012) (-106.95278899999988 68.11470000000003) (-106.85611 68.11692799999997) (-106.84111000000001 68.11637900000005) (-106.80194099999994 68.1974790000001) (-106.80943300000001 68.20721400000002) (-106.80610699999994 68.21304300000003) (-106.80027799999993 68.21748400000013) (-106.79110700000001 68.22137500000002) (-106.62748699999997 68.24664300000006) (-106.61444099999994 68.24803200000008) (-106.5994419999999 68.24748200000005) (-106.58860800000002 68.24414100000001) (-106.468613 68.19053600000012) (-106.45777900000002 68.176376) (-106.45417799999996 68.16081200000008) (-106.45056199999999 68.15582300000011) (-106.44471699999991 68.15165700000006) (-106.43195300000002 68.15304600000002) (-106.42138699999987 68.15609700000005) (-106.35056299999997 68.1791530000001) (-106.34472699999998 68.18331899999998) (-106.35056299999997 68.18775900000003) (-106.35888699999992 68.1916500000001) (-106.39277600000003 68.20166) (-106.420837 68.20721400000002) (-106.468887 68.21443199999999) (-106.48194899999993 68.21748400000013) (-106.48999000000003 68.22137500000002) (-106.49582699999996 68.22554000000002) (-106.49722300000002 68.23082000000005) (-106.46833799999996 68.32971199999997) (-106.46501199999994 68.33581500000014) (-106.45667299999991 68.34082000000001) (-106.44748700000002 68.34471100000007) (-106.42639200000002 68.35081500000007) (-106.25611900000001 68.3877720000001) (-106.24416400000001 68.38998400000014) (-106.21833800000002 68.39248700000013) (-106.203056 68.39221199999992) (-106.185272 68.38998400000014) (-106.17471299999994 68.38665800000012) (-106.16665599999999 68.38275099999998) (-106.1547159999999 68.37387100000012) (-105.79638699999998 68.42221100000012) (-105.79055799999998 68.41804500000006) (-105.78222699999998 68.41387899999995) (-105.76583900000003 68.41276600000009) (-105.75167799999991 68.41304000000002) (-105.73972300000003 68.41526799999997) (-105.73029300000002 68.41914400000002) (-105.723053 68.42469800000003) (-105.70111099999991 68.46971100000013) (-105.69721999999996 68.486649) (-105.69833399999993 68.49192800000003) (-105.70278899999994 68.50193800000011) (-105.71444699999995 68.51054400000004) (-105.74305700000002 68.56469700000014) (-105.724716 68.57415800000012) (-105.64499699999999 68.63388099999997) (-105.65083300000003 68.63804600000014) (-105.66639699999996 68.638596) (-105.902222 68.63526900000005) (-105.92832899999996 68.632477) (-106.02944899999994 68.61970499999995) (-106.041382 68.61747700000001) (-106.04972799999996 68.61276199999998) (-106.04750100000001 68.60220300000015) (-106.05332900000002 68.59582499999999) (-106.06416300000001 68.59275800000006) (-106.2077789999999 68.56776400000007) (-106.23638900000003 68.566666) (-106.37027 68.5452580000001) (-106.51083399999999 68.518326) (-106.54387700000001 68.51193200000012) (-106.62471 68.46748400000007) (-106.63166799999999 68.461929) (-106.62888299999992 68.45138500000013) (-106.62165799999997 68.44192500000003) (-106.61582899999996 68.43775900000014) (-106.59528399999994 68.42526199999998) (-106.58473200000003 68.42164600000012) (-106.57167099999992 68.41859399999998) (-106.55387899999994 68.41665600000005) (-106.52194199999997 68.41499299999992) (-106.50446299999999 68.41276600000009) (-106.493607 68.40942400000012) (-106.48777799999988 68.40498400000013) (-106.48055999999997 68.39553799999999) (-106.52722199999994 68.30081200000012) (-106.534157 68.29525799999993) (-106.54332699999998 68.29136700000004) (-106.556107 68.28997800000008) (-106.57277699999986 68.29109200000005) (-106.58444199999991 68.29332) (-106.59500099999997 68.29664600000007) (-106.60109699999998 68.30108600000005) (-106.6119379999999 68.31526200000008) (-106.6383439999999 68.34304800000012) (-106.64444700000001 68.34748799999994) (-106.77887699999997 68.40803499999998) (-106.78971899999999 68.41165200000012) (-106.80277999999993 68.41442899999998) (-107.01363400000002 68.36943100000008) (-107.02166699999998 68.36469999999997) (-107.02027899999996 68.359421) (-107.016663 68.35470599999996) (-107.01750199999998 68.34915199999995) (-107.03138699999994 68.33776899999998) (-107.13221699999991 68.2833250000001) (-107.24610899999999 68.26138300000002) (-107.25890400000003 68.25999500000012) (-107.26500699999997 68.26416000000012) (-107.274719 68.27331499999997) (-107.28611799999993 68.28749099999999) (-107.29611199999994 68.29664600000007) (-107.30194099999994 68.30081200000012) (-107.3272169999999 68.31248499999998) (-107.33805799999999 68.315811) (-107.54666099999992 68.34748799999994) (-107.56082200000003 68.34915199999995) (-107.81331599999999 68.34248400000001) (-107.82611099999997 68.341095) (-107.83640300000002 68.33804300000008) (-107.84973100000002 68.32638500000007) (-107.85500299999995 68.31999200000007) (-107.88527699999997 68.26887499999998) (-107.883621 68.26361099999997) (-107.879707 68.25888099999997) (-107.85417199999995 68.24748200000005) (-107.83029199999993 68.2410890000001) (-107.74194299999999 68.2169340000001) (-107.61332700000003 68.17858899999999) (-107.60249299999998 68.17526200000003) (-107.59861799999999 68.17053199999998) (-107.60305800000003 68.16526800000003) (-107.61582900000002 68.16387900000001) (-107.63221699999997 68.16499299999998) (-107.68998699999997 68.17442300000005) (-107.78639199999992 68.18386800000013) (-107.80027799999999 68.18331899999998) (-107.82584399999996 68.18054200000012) (-107.87193300000001 68.17137100000014) (-108.03388999999999 68.16859400000004) (-108.16139199999986 68.17275999999998) (-108.18694299999999 68.16998300000006) (-108.19695300000001 68.1666560000001) (-108.22028399999999 68.15220599999998) (-108.24944299999993 68.14166300000005) (-108.30055199999993 68.12580900000012) (-108.33222999999998 68.11720300000002) (-108.37026999999989 68.11276200000009) (-108.38555899999994 68.11303700000008) (-108.40306099999998 68.11499000000003) (-108.41388699999993 68.11831699999999) (-108.42250099999995 68.12220800000006) (-108.43277 68.13108800000009) (-108.43611099999987 68.14137300000004) (-108.43306000000001 68.14749099999995) (-108.42804699999994 68.15416000000005) (-108.40888999999999 68.16137700000013) (-108.39750700000002 68.16360500000008) (-108.36694299999994 68.16110200000008) (-108.36277799999993 68.15637200000009) (-108.36582899999996 68.15026899999998) (-108.37361099999993 68.14526400000011) (-108.37998999999996 68.13970899999998) (-108.37832599999996 68.13443000000001) (-108.36527999999993 68.13360600000004) (-108.34612299999998 68.14082300000001) (-108.33860800000002 68.14582800000005) (-108.33332799999994 68.15220599999998) (-108.33056599999998 68.15860000000004) (-108.32695000000001 68.17025800000005) (-108.32444800000002 68.19274900000005) (-108.32945299999989 68.208328) (-108.3958439999999 68.28997800000008) (-108.40222199999994 68.29414400000013) (-108.443604 68.30802900000003) (-108.46000700000002 68.309143) (-108.484444 68.30525199999994) (-108.504997 68.29887400000001) (-108.55999800000001 68.27554299999997) (-108.56500199999999 68.26887499999998) (-108.56806899999992 68.26277200000004) (-108.57444799999996 68.25721699999997) (-108.58444199999997 68.2538760000001) (-108.71556099999998 68.23136900000003) (-108.72944599999988 68.23082000000005) (-108.74610899999993 68.23193400000002) (-108.756958 68.2352600000001) (-108.765556 68.23887600000012) (-108.81527699999998 68.26220699999999) (-108.81916799999993 68.26666300000011) (-108.8141629999999 68.27331499999997) (-108.748894 68.33776899999998) (-108.74109599999997 68.34275800000012) (-108.71417199999996 68.35470599999996) (-108.70417799999996 68.35803199999998) (-108.69387799999993 68.36109899999991) (-108.670837 68.36581399999994) (-108.63999899999993 68.37553400000002) (-108.62082700000002 68.38275099999998) (-108.61193800000001 68.38665800000012) (-108.58112299999999 68.40637200000003) (-108.56667299999998 68.41693100000009) (-108.53443900000002 68.44552600000009) (-108.52916699999992 68.4522090000001) (-108.52278100000001 68.4580380000001) (-108.43167099999994 68.53831500000007) (-108.40416700000003 68.56025699999998) (-108.383331 68.57666) (-108.36888099999999 68.58720400000004) (-108.34528399999994 68.60192899999998) (-108.31416300000001 68.61137400000007) (-108.27916700000003 68.61831700000005) (-108.25195299999996 68.62052900000015) (-108.1702729999999 68.62664799999999) (-107.93331899999998 68.64027399999992) (-107.80499299999997 68.6455380000001) (-107.63834399999996 68.66554300000013) (-107.43167099999994 68.69053600000001) (-107.23137700000001 68.71887200000009) (-107.108337 68.74859600000013) (-106.96140300000002 68.78305100000006) (-106.93859899999995 68.78831500000001) (-106.82084700000001 68.81137100000007) (-106.79444899999993 68.81387299999994) (-106.765556 68.81498699999992) (-106.63500999999991 68.81832900000006) (-106.31555200000003 68.89276100000012) (-106.27250699999996 68.90470900000003) (-106.262787 68.90887500000008) (-106.25446299999993 68.91360500000013) (-106.24833699999988 68.91998300000006) (-106.24472000000003 68.926086) (-106.24360699999994 68.93165600000009) (-106.23998999999998 68.93775900000003) (-106.229172 68.940811) (-106.214722 68.94136000000009) (-106.20140100000003 68.94053600000012) (-106.14943699999998 68.93359400000003) (-106.08084099999996 68.91886900000009) (-105.81360599999988 68.88192700000008) (-105.79804999999999 68.87942500000003) (-105.77639799999997 68.87248199999999) (-105.71806300000003 68.84498599999995) (-105.48693800000001 68.72943099999998) (-105.475281 68.72053500000004) (-105.471657 68.71582000000001) (-105.47833300000002 68.69859299999996) (-105.48194899999999 68.69247400000012) (-105.4891659999999 68.68691999999993) (-105.498894 68.68304400000005) (-105.49944299999999 68.62136800000007) (-105.41443600000002 68.528595) (-105.380829 68.486649) (-105.40888999999999 68.49247700000012) (-105.42304999999999 68.49192800000003) (-105.43388400000003 68.4891510000001) (-105.44360399999994 68.48526000000004) (-105.52944899999994 68.45027200000004) (-105.53806299999991 68.44552600000009) (-105.54387700000001 68.43914799999999) (-105.54778299999998 68.43304400000011) (-105.54888900000003 68.42747500000013) (-105.54804999999999 68.42221100000012) (-105.54110699999995 68.41276600000009) (-105.53307299999994 68.40859999999998) (-105.51777600000003 68.40609699999999) (-105.41639700000002 68.40693700000008) (-105.39028899999988 68.40942400000012) (-105.34528399999999 68.38415500000013) (-105.34889199999992 68.37803600000012) (-105.350281 68.3724820000001) (-105.34472700000003 68.36804200000012) (-105.29499800000002 68.33915700000006) (-105.28694200000001 68.33526599999999) (-105.10082999999992 68.26609800000006) (-105.07305899999994 68.26026900000005) (-105.05555700000002 68.2580410000001) (-105.02639799999992 68.257767) (-105.00894900000003 68.26493800000003) (-105.00661500000001 68.26859999999994) (-105.00578300000001 68.27209499999992) (-105.00666799999993 68.27859500000005) (-105.01695299999994 68.28221100000013) (-105.02610800000002 68.30941800000005) (-104.88474300000001 68.33970599999998) (-104.86416600000001 68.33248900000007) (-104.848053 68.3247070000001) (-104.83917200000002 68.31553600000001) (-104.83583099999998 68.31080600000013) (-104.83416699999998 68.30026200000009) (-104.83944699999995 68.28858900000006) (-104.84584000000001 68.28221100000013) (-104.85305800000003 68.27665700000011) (-104.86277799999993 68.27276600000005) (-104.87332199999997 68.26971400000014) (-104.94554099999999 68.2580410000001) (-104.952789 68.25248700000009) (-104.95194999999995 68.24748200000005) (-104.94055200000003 68.23858600000011) (-104.924713 68.23054500000006) (-104.91443600000002 68.22720300000009) (-104.900284 68.22526600000009) (-104.88639799999999 68.22554000000002) (-104.87332199999997 68.22692899999998) (-104.79750100000001 68.24443100000002) (-104.73111 68.25027500000004) (-104.68776699999995 68.25027500000004) (-104.63999899999999 68.24693300000013) (-104.609734 68.24136400000009) (-104.59889199999998 68.232483) (-104.59722899999997 68.22221400000012) (-104.61277799999999 68.19802900000013) (-104.61888099999993 68.1916500000001) (-104.6324919999999 68.17942800000009) (-104.65471600000001 68.16276600000015) (-104.66722099999993 68.1499940000001) (-104.67027299999995 68.13859600000012) (-104.5922159999999 68.0836030000001) (-104.50778200000002 68.03581200000002) (-104.5 68.03193700000003) (-104.48638900000003 68.02998400000013) (-104.45722999999992 68.02970900000008) (-104.36694299999994 68.03414900000013) (-104.21472199999994 68.02415500000006) (-104.199997 68.02137800000003) (-104.16665599999993 68.01748700000013) (-104.12470999999994 68.01832600000006) (-104.11193800000001 68.01944000000003) (-104.06471299999998 68.02748099999997) (-104.01139799999999 68.04220600000008) (-103.99944299999999 68.04414400000002) (-103.98554999999999 68.04443400000002) (-103.97084000000001 68.04386900000003) (-103.94082600000002 68.03831500000001) (-103.92832900000002 68.03498800000006) (-103.89806399999998 68.02415500000006) (-103.883621 68.02137800000003) (-103.87082699999996 68.020264) (-103.84306300000003 68.020828) (-103.791382 68.0252690000001) (-103.76695299999994 68.02832000000006) (-103.55526700000001 68.05720500000012) (-103.54444899999987 68.05998200000005) (-103.53694200000001 68.06553600000007) (-103.53278399999999 68.07165500000008) (-103.53333299999991 68.07666000000012) (-103.53639199999998 68.08166499999999) (-103.54472399999997 68.09082000000001) (-103.55526700000001 68.09971599999994) (-103.55803699999996 68.10443099999998) (-103.55304699999999 68.10971100000006) (-103.52139299999999 68.13081399999999) (-103.50389099999995 68.14027400000003) (-103.49526999999995 68.14471400000008) (-103.46694899999994 68.15693699999991) (-103.45722999999998 68.16053799999997) (-103.42166099999997 68.1666560000001) (-103.40416700000003 68.16415400000005) (-103.38971700000002 68.16137700000013) (-103.38194299999992 68.15721100000002) (-103.36888099999999 68.14888000000013) (-103.34416199999993 68.12109400000008) (-103.34137699999991 68.11608900000004) (-103.34028599999988 68.10582) (-103.341949 68.10026599999998) (-103.37249799999995 68.06860400000005) (-103.36916399999996 68.01081800000003) (-103.36609599999997 68.00582900000006) (-103.25418100000002 67.966385) (-103.22084000000001 67.9622040000001) (-103.20612299999999 67.96138000000013) (-103.17832899999996 67.96192900000005) (-103.14943699999998 67.96138000000013) (-103.13694800000002 67.95803799999999) (-103.12943999999999 67.95387299999999) (-103.12416100000002 67.9497070000001) (-103.11277799999999 67.93026700000013) (-103.1052699999999 67.92608600000005) (-103.09306300000003 67.92303500000003) (-103.01471700000002 67.91360500000013) (-103.00083899999998 67.91387900000007) (-102.99082899999996 67.91748000000013) (-102.98222399999997 67.92221100000006) (-102.97250399999996 67.92581200000012) (-102.95944199999985 67.9269260000001) (-102.94972199999995 67.92330900000013) (-102.94444299999998 67.91886899999992) (-102.939438 67.9144290000001) (-102.921112 67.89637800000014) (-102.82972699999993 67.83194000000003) (-102.80027799999993 67.820831) (-102.686394 67.80470300000013) (-102.67054699999994 67.80304000000001) (-102.53611799999999 67.79525800000005) (-102.50446299999999 67.79193100000009) (-102.47083999999995 67.78692600000005) (-102.446663 67.78027300000008) (-102.39306599999992 67.76249700000011) (-102.33972199999994 67.74470500000007) (-102.251106 67.72526600000015) (-102.22444199999995 67.73387100000002) (-102.21556099999992 67.73831200000012) (-102.15139799999997 67.76554900000002) (-102.1416779999999 67.76915000000008) (-101.92610200000001 67.760269) (-101.7647169999999 67.72331200000013) (-101.671944 67.69164999999998) (-101.54250300000001 67.67942800000003) (-101.51500699999997 67.67942800000003) (-101.446663 67.73248300000012) (-101.43388400000003 67.73332200000004) (-101.10582699999992 67.74192800000014) (-101.09889199999998 67.73776200000009) (-101.01278699999995 67.74247700000012) (-100.99973299999999 67.74331699999999) (-100.92749000000003 67.75332599999996) (-100.90387699999991 67.75694299999992) (-100.89277600000003 67.75972000000002) (-100.811394 67.79470800000001) (-100.72028399999994 67.83442700000012) (-100.58167999999995 67.83415200000013) (-100.39555399999995 67.84748800000006) (-100.18415799999997 67.84304800000007) (-100.16832699999998 67.84109500000011) (-100.156387 67.83776900000004) (-100.14723200000003 67.82859800000011) (-100.135559 67.8252720000001) (-100.083618 67.81498699999997) (-99.82000699999992 67.79582199999999) (-99.618607 67.789154) (-99.60777299999995 67.79193100000009) (-99.58917200000002 67.80081200000006) (-99.577789 67.80331400000011) (-99.50056499999994 67.79971300000005) (-99.41221599999989 67.78831500000007) (-99.40306099999992 67.784424) (-99.39862099999999 67.77998399999996) (-99.39666699999998 67.7749940000001) (-99.387787 67.76582299999995) (-99.37832599999996 67.76193200000006) (-99.23611499999998 67.71360800000014) (-99.21055599999994 67.70694000000015) (-98.98693800000001 67.718323) (-98.81361399999997 67.74192800000014) (-98.52888499999989 67.77748100000002) (-98.38583399999999 67.78581200000008) (-98.36332700000003 67.79081700000012) (-98.354446 67.79609700000003) (-98.35804699999994 67.8058170000001) (-98.44249000000002 67.86137400000007) (-98.44943199999994 67.86581400000006) (-98.46333300000003 67.86886599999997) (-98.47555499999999 67.86720300000007) (-98.48611499999993 67.86387600000012) (-98.49888599999997 67.86331200000001) (-98.51472499999994 67.86526500000014) (-98.54028299999999 67.87220800000011) (-98.65583799999996 67.91638200000006) (-98.665009 67.9202580000001) (-98.69694499999991 67.936646) (-98.71972699999992 67.94886799999995) (-98.72416699999985 67.953598) (-98.74694799999997 68.0477600000001) (-98.73277299999995 68.070267) (-98.61555499999992 68.07470699999999) (-98.54499800000002 68.06137100000007) (-98.33694500000001 67.96026599999999) (-98.321121 67.95220899999998) (-98.26695299999989 67.92330900000013) (-98.23332199999999 67.9019320000001) (-98.171112 67.84332300000005) (-98.16915899999992 67.838593) (-98.12277199999994 67.78804000000002) (-98.09445199999993 67.766098) (-97.95666499999987 67.72776800000008) (-97.79943800000001 67.68553200000008) (-97.66194200000001 67.64305100000007) (-97.650284 67.63943499999999) (-97.63751200000002 67.6308140000001) (-97.62609900000001 67.61804200000006) (-97.61305199999998 67.609421) (-97.603882 67.60525500000006) (-97.59277299999985 67.601654) (-97.57667499999997 67.59860200000008) (-97.56138599999991 67.59664900000013) (-97.54750100000001 67.59637500000002) (-97.50973499999992 67.59915200000012) (-97.48582499999992 67.60220300000015) (-97.415009 67.61331200000006) (-97.39222699999999 67.61804200000006) (-97.38194299999998 67.62136800000013) (-97.35305800000003 67.63443000000012) (-97.33444199999991 67.64387500000004) (-97.31666599999994 67.65443400000004) (-97.29554699999994 67.66110200000003) (-97.28332499999999 67.66249100000005) (-97.16722099999993 67.67553700000013) (-97.13890099999992 67.67414900000006) (-97.11694299999988 67.77748100000002) (-97.11582899999996 67.78276100000005) (-97.11915599999992 67.79248000000007) (-97.12721299999998 67.80165099999999) (-97.24027999999998 67.92608600000005) (-97.2541809999999 67.92942800000014) (-97.26306199999993 67.924149) (-97.26888999999994 67.91832) (-97.27305599999994 67.90776100000011) (-97.27362099999999 67.90248100000008) (-97.27722199999994 67.89694200000008) (-97.28277600000001 67.89109800000006) (-97.29110700000001 67.88499500000012) (-97.30139200000002 67.88165299999997) (-97.32444799999996 67.8766480000001) (-97.33667000000003 67.87525900000014) (-97.362503 67.87387100000001) (-97.37638899999996 67.87414600000005) (-97.39222699999999 67.87637300000011) (-97.40333599999997 67.879974) (-97.412216 67.88415500000008) (-97.41639700000002 67.888596) (-97.41972399999986 67.89833100000004) (-97.42805499999986 67.90776100000011) (-97.43443300000001 67.91192600000011) (-97.449997 67.9202580000001) (-97.64361600000001 68.008331) (-97.65249599999999 68.01220700000005) (-97.68306000000001 68.01859999999999) (-97.695267 68.01721200000009) (-97.70500199999998 68.0127720000001) (-97.70834400000001 68.00721700000003) (-97.710556 67.9916530000001) (-97.87777699999998 67.96360800000008) (-97.99665799999991 67.95027199999998) (-98.00973499999992 67.9497070000001) (-98.02999899999998 67.94192499999997) (-98.045837 67.92942800000014) (-98.05139199999996 67.92359899999997) (-98.05749500000002 67.91249099999999) (-98.060272 67.89166300000011) (-98.06388899999996 67.82916299999994) (-98.07861300000002 67.83027600000003) (-98.09527600000001 67.83332799999994) (-98.10665899999998 67.836929) (-98.11582899999996 67.84082000000006) (-98.17639200000002 67.87387100000001) (-98.189438 67.88247699999994) (-98.19471699999997 67.89721700000007) (-98.20083599999998 67.90664700000013) (-98.21362299999998 67.92053200000004) (-98.224716 67.92942800000014) (-98.25140399999998 67.94636500000001) (-98.28332499999993 67.96276899999992) (-98.31973299999993 67.97859199999999) (-98.34056099999998 67.98609900000008) (-98.37805199999997 67.99636800000013) (-98.39862099999999 68.004166) (-98.412216 68.01249700000005) (-98.58111599999995 68.13998400000003) (-98.58750900000001 68.14942900000011) (-98.58444199999991 68.15498400000001) (-98.485275 68.184418) (-98.47389199999998 68.18692000000004) (-98.45973200000003 68.18359400000003) (-98.45056199999999 68.17970300000013) (-98.43249500000002 68.1666560000001) (-98.42805499999992 68.1622010000001) (-98.42443799999995 68.15220599999998) (-98.42555199999993 68.14193699999998) (-98.42832900000002 68.13638300000014) (-98.43415800000002 68.13053899999994) (-98.44027699999998 68.11943100000013) (-98.44110099999995 68.10914600000001) (-98.439438 68.10415599999999) (-98.43055699999991 68.09498600000012) (-98.41722099999993 68.08638000000002) (-98.408051 68.08248900000012) (-98.39389 68.07916300000011) (-98.37999000000002 68.07916300000011) (-98.36776700000001 68.08055100000001) (-98.35888699999998 68.08581499999997) (-98.35082999999992 68.09220900000003) (-98.33972199999994 68.10386700000004) (-98.32167099999998 68.13693200000012) (-98.31777999999997 68.14776599999999) (-98.31722999999994 68.15304600000002) (-98.31750499999998 68.1622010000001) (-98.32611099999997 68.17137100000014) (-98.33306899999997 68.17553700000002) (-98.34222399999993 68.17942800000009) (-98.37748699999992 68.19026200000002) (-98.40834000000001 68.19664000000012) (-98.43971299999993 68.20082100000002) (-98.46972700000003 68.20304900000002) (-98.485275 68.20498700000013) (-98.50111399999997 68.20860299999998) (-98.531113 68.22526600000009) (-98.537781 68.22943100000009) (-98.54222099999993 68.23414600000012) (-98.56111099999998 68.27388000000002) (-98.60777299999995 68.29332) (-98.70417800000001 68.35276800000003) (-98.71083099999998 68.35693400000008) (-98.71528599999999 68.36164899999994) (-98.71722399999993 68.366379) (-98.71444699999995 68.372208) (-98.70472699999993 68.376373) (-98.68055700000002 68.38053900000011) (-98.66749600000003 68.38136300000008) (-98.63722199999995 68.3791500000001) (-98.60638399999999 68.37275699999998) (-98.59416199999998 68.36914100000007) (-98.58056599999992 68.36080900000007) (-98.57167099999998 68.35165400000005) (-98.54861499999998 68.33915700000006) (-98.53250100000002 68.3311000000001) (-98.52139299999993 68.32832300000001) (-98.51139799999993 68.32971199999997) (-98.47083999999995 68.34832799999998) (-98.46221899999995 68.35359199999999) (-98.46139499999998 68.35887100000014) (-98.47138999999999 68.37359600000008) (-98.49194299999994 68.38638300000008) (-98.50361599999997 68.38998400000014) (-98.49499499999996 68.40942400000012) (-98.319458 68.35887100000014) (-98.30972300000002 68.35498000000007) (-98.29888900000003 68.34610000000004) (-98.29444899999993 68.34137000000004) (-98.29249599999997 68.33665500000001) (-98.28832999999997 68.33194000000015) (-98.281387 68.32777400000003) (-98.22555499999993 68.30415299999999) (-98.21389799999992 68.30053700000013) (-98.19972200000001 68.30026200000009) (-98.18749999999994 68.3019260000001) (-98.09666399999998 68.31776400000012) (-98.07389799999999 68.33499099999995) (-97.90583800000002 68.38415500000013) (-97.89411899999993 68.386459) (-97.86471599999993 68.384995) (-97.84916699999991 68.38304099999999) (-97.77778599999988 68.366379) (-97.761124 68.36331200000006) (-97.74888599999991 68.36469999999997) (-97.74305699999991 68.37052899999998) (-97.75140399999998 68.37970000000013) (-97.76417499999991 68.39360000000005) (-97.76861600000001 68.39804100000015) (-97.78195199999993 68.40664700000002) (-97.79611199999988 68.40998800000006) (-97.81138599999997 68.41137700000007) (-97.86971999999997 68.414154) (-97.885559 68.41638200000011) (-97.89999399999994 68.41970799999996) (-97.906387 68.42387400000007) (-98.00973499999992 68.49803200000002) (-98.01139799999993 68.50305200000008) (-98.01083399999999 68.50804100000005) (-97.99972500000001 68.53526299999999) (-97.99415599999992 68.54109199999999) (-97.85249299999998 68.54248000000007) (-97.83639499999992 68.54026800000003) (-97.72389199999992 68.52304100000003) (-97.69276400000001 68.51666300000005) (-97.66500899999994 68.50471500000003) (-97.6583399999999 68.50054900000009) (-97.6541749999999 68.49609400000008) (-97.65055799999993 68.48609899999997) (-97.65388499999995 68.480545) (-97.65527299999997 68.470261) (-97.650284 68.45555100000001) (-97.646118 68.45082099999996) (-97.63917500000002 68.44664000000006) (-97.61166399999996 68.43470800000011) (-97.537781 68.41832000000005) (-97.523056 68.41693100000009) (-97.51112399999994 68.41943400000002) (-97.502228 68.42469800000003) (-97.49888599999997 68.43026700000001) (-97.500565 68.43498200000005) (-97.50917099999998 68.44442700000013) (-97.520554 68.44802900000008) (-97.535553 68.449142) (-97.54750100000001 68.44664000000006) (-97.57333399999993 68.44442700000013) (-97.58917199999996 68.44664000000006) (-97.60333299999996 68.449997) (-97.615005 68.45359800000006) (-97.61915599999992 68.45832800000011) (-97.61776700000001 68.46249399999999) (-97.597778 68.48359700000009) (-97.57861300000002 68.493042) (-97.56777999999997 68.49636800000002) (-97.54444899999999 68.50138900000013) (-97.53111299999995 68.50193800000011) (-97.51695299999994 68.50166300000006) (-97.385559 68.49525499999993) (-97.35360699999995 68.49108900000004) (-97.28277600000001 68.47415200000006) (-97.25917099999987 68.4666600000001) (-97.160278 68.38943500000005) (-97.05332900000002 68.35331699999995) (-97.058334 68.30276500000008) (-97.07000700000003 68.30026200000009) (-97.07583599999992 68.29443399999997) (-97.09111000000001 68.26805100000001) (-97.089447 68.26332099999996) (-97.08029199999993 68.25915500000008) (-96.93916299999995 68.23970000000008) (-96.925003 68.23915099999999) (-96.91250599999995 68.24081400000006) (-96.81777999999991 68.25833100000011) (-96.80638099999993 68.26081800000003) (-96.79943800000001 68.26554899999996) (-96.76777599999997 68.270264) (-96.69387799999993 68.28027299999997) (-96.68055699999996 68.280823) (-96.66915899999998 68.27693199999993) (-96.62527499999987 68.25166300000012) (-96.55332899999996 68.27360500000003) (-96.53306600000002 68.28193699999997) (-96.47084000000001 68.305542) (-96.44888300000002 68.31219499999997) (-96.43721 68.31469700000002) (-96.42471299999994 68.31608600000004) (-96.410553 68.31553600000001) (-96.40417499999995 68.31137100000001) (-96.49694799999997 68.20776400000005) (-96.508896 68.19636500000013) (-96.52583299999998 68.18414299999995) (-96.62304699999999 68.11554000000007) (-96.69055199999997 68.07998700000007) (-96.702225 68.07748400000008) (-96.73028599999992 68.07832300000007) (-96.74305700000002 68.07777400000009) (-96.75556899999998 68.076096) (-96.77888499999995 68.07138099999997) (-96.79722599999997 68.06109600000002) (-96.80888399999998 68.04942299999999) (-96.81220999999994 68.04386900000003) (-96.81332399999991 68.03858900000012) (-96.8116609999999 68.03359999999998) (-96.801941 68.02581800000002) (-96.78916900000002 68.01721200000009) (-96.77305599999994 68.01388499999996) (-96.722778 68.00971999999996) (-96.70834399999995 68.00860599999999) (-96.67610199999996 68.01859999999999) (-96.55665599999998 68.03332499999993) (-96.54028299999993 68.03027300000002) (-96.52806099999998 68.03166200000004) (-96.46639999999996 68.03887900000012) (-96.45083599999998 68.05304000000012) (-96.47999600000003 68.09027100000009) (-96.49110399999995 68.09414700000013) (-96.50500499999993 68.09443699999997) (-96.51611300000002 68.09109500000005) (-96.53443900000002 68.080826) (-96.54695099999998 68.07943700000004) (-96.54834 68.08415200000007) (-96.54750100000001 68.0894320000001) (-96.53527799999989 68.10108900000006) (-96.51000999999997 68.11943100000013) (-96.48249800000002 68.13472000000002) (-96.46305799999993 68.14414999999991) (-96.43222000000003 68.15609700000005) (-96.31082200000003 68.19220000000013) (-96.28832999999997 68.19775400000009) (-96.17138699999992 68.22164900000013) (-96.13612399999994 68.2285920000001) (-95.98028599999998 68.25471500000003) (-95.96833800000002 68.23082000000005) (-96.04333499999996 68.17942800000009) (-96.06916799999999 68.16137700000013) (-96.07501200000002 68.15554800000012) (-96.07861299999996 68.1499940000001) (-96.07749899999999 68.14498900000007) (-96.073624 68.14027400000003) (-96.045837 68.13333100000006) (-96.03443900000002 68.12970000000001) (-96.02806099999998 68.12525900000009) (-96.02055399999995 68.11608900000004) (-96.01916499999993 68.11109899999997) (-96.02027900000002 68.1060940000001) (-96.083618 68.00221300000004) (-96.14416499999999 67.92359899999997) (-96.21166999999991 67.82916299999994) (-96.21528599999988 67.82360800000004) (-96.21722399999999 67.81330900000006) (-96.22138999999999 67.69775400000003) (-96.22000099999991 67.693039) (-96.21250899999995 67.68386800000007) (-96.20611600000001 67.67942800000003) (-96.19554099999999 67.68275499999999) (-96.18693499999995 67.68887300000011) (-96.17971799999992 67.69274899999999) (-96.16833500000001 67.69497700000011) (-96.16665599999999 67.69026200000008) (-96.174713 67.64305100000007) (-96.18527199999994 67.626373) (-96.19193999999999 67.62164300000012) (-96.20333900000003 67.61914100000007) (-96.21640000000002 67.61859100000004) (-96.23083499999996 67.61998) (-96.24665799999997 67.62330600000007) (-96.25778199999996 67.62692300000003) (-96.26640299999997 67.63108800000003) (-96.32972699999999 67.6102600000001) (-96.43777499999993 67.54136700000004) (-96.46139499999992 67.50888099999992) (-96.46472199999988 67.50332600000002) (-96.46916199999998 67.492752) (-96.46472199999988 67.47804300000013) (-96.46112099999999 67.47331200000002) (-96.45167500000002 67.47137499999997) (-96.44193999999993 67.47554000000014) (-96.36389200000002 67.47804300000013) (-96.29415899999998 67.444702) (-96.222778 67.42192099999994) (-96.21000699999996 67.41914400000007) (-96.19638099999992 67.41886900000003) (-96.18582199999997 67.422211) (-96.158051 67.43664600000011) (-96.141388 67.44886800000006) (-96.135559 67.45471200000009) (-96.11888099999993 67.4666600000001) (-96.10749800000002 67.46914700000002) (-96.09722899999997 67.46470600000009) (-96.069458 67.43359399999997) (-96.07028199999996 67.42831400000011) (-96.12416100000002 67.37719699999997) (-96.16665599999999 67.34166000000005) (-96.17721599999987 67.33692900000011) (-96.208618 67.3269350000001) (-96.218613 67.322769) (-96.226944 67.31666600000005) (-96.25111399999992 67.25277699999998) (-96.252228 67.24748200000005) (-96.24360699999988 67.24331700000005) (-96.12999000000002 67.21665999999999) (-96.114441 67.21331800000007) (-96.10249299999998 67.21470599999998) (-96.09138499999995 67.21720900000014) (-95.921112 67.27859500000005) (-95.81750499999993 67.33194000000015) (-95.756393 67.36747700000006) (-95.73999000000003 67.37664800000005) (-95.60305799999992 67.383331) (-95.58944699999995 67.38304099999999) (-95.57694999999995 67.38026400000007) (-95.56582599999996 67.37664800000005) (-95.54916399999996 67.36831699999993) (-95.53472899999997 67.359985) (-95.52861000000001 67.35554500000012) (-95.52500899999995 67.35108900000006) (-95.55332899999996 67.31330900000012) (-95.56166099999996 67.30720500000012) (-95.61805699999996 67.27832000000006) (-95.63806199999999 67.27082800000011) (-95.67748999999998 67.25416600000011) (-95.69665499999996 67.24498) (-95.76306199999988 67.2127690000001) (-95.80749500000002 67.18609600000013) (-95.82389799999999 67.174149) (-95.82972699999999 67.16831999999994) (-95.83332799999994 67.16276600000015) (-95.82167099999992 67.16110200000014) (-95.79695100000004 67.16304000000008) (-95.774719 67.16775500000011) (-95.74221799999998 67.17665100000005) (-95.71221899999995 67.18830900000006) (-95.65139799999992 67.19886800000012) (-95.568893 67.21054100000015) (-95.54415899999992 67.2124940000001) (-95.51583900000003 67.20971700000001) (-95.50111399999997 67.20748900000001) (-95.43554699999993 67.19386300000008) (-95.37943999999993 67.15470899999997) (-95.32611099999997 67.02720599999998) (-95.32861300000002 67.0169370000001) (-95.33721899999995 66.99054000000001) (-95.34333799999996 66.9747010000001) (-95.35028099999988 66.96388200000007) (-95.35777300000001 66.959991) (-95.41639699999996 66.9519350000001) (-95.53472899999997 66.94108600000004) (-95.597778 66.948868) (-95.61416600000001 66.97026100000011) (-95.721115 66.96470600000004) (-95.74333199999995 66.959991) (-95.83917199999996 66.94802900000002) (-95.87609900000001 66.94581600000004) (-95.90249599999999 66.94664) (-95.92805499999997 66.95248400000003) (-95.93638599999997 66.95664999999997) (-95.99027999999998 67.00499000000013) (-95.99388099999993 67.00972000000002) (-95.99055499999992 67.01499899999999) (-95.978882 67.026657) (-95.96112099999999 67.04386900000003) (-95.93638599999997 67.06526200000013) (-95.93221999999997 67.06971699999997) (-95.94694500000003 67.07222000000013) (-95.95834400000001 67.06971699999997) (-95.96777299999991 67.06553600000007) (-96.004456 67.04582199999999) (-96.04611199999994 67.01638799999995) (-96.05166599999995 67.01081800000009) (-96.053879 67.0002750000001) (-96.04666099999997 66.99108899999999) (-96.04055800000003 66.98664899999994) (-96.02362099999993 66.97859199999999) (-96.02500899999995 66.97331200000013) (-96.03306600000002 66.96748400000001) (-96.04277000000002 66.96304300000008) (-96.11054999999993 66.95082100000013) (-96.12332200000003 66.95027199999998) (-96.13861099999991 66.953598) (-96.24082899999996 66.98359700000003) (-96.26251200000002 66.99108899999999) (-96.27917500000001 66.99914599999994) (-96.285278 67.00360099999995) (-96.28694199999995 67.00860600000004) (-96.28582799999998 67.01361100000008) (-96.27417000000003 67.0252690000001) (-96.265289 67.03054800000007) (-96.26194799999996 67.03581200000008) (-96.261124 67.0410920000001) (-96.26362599999999 67.05108600000011) (-96.26888999999989 67.06053200000008) (-96.28805499999993 67.06832900000006) (-96.37721299999987 67.08471700000013) (-96.39222699999999 67.086929) (-96.40388499999995 67.08554100000009) (-96.45249899999999 67.06832900000006) (-96.46055599999988 67.06219500000003) (-96.45666499999999 67.05775499999999) (-96.40388499999995 67.008331) (-96.27362099999999 66.95027199999998) (-96.14639299999999 66.89471400000014) (-96.12805199999997 66.88165300000003) (-96.11721799999998 66.86775200000005) (-96.11582900000002 66.86276199999998) (-96.11721799999998 66.857483) (-96.11665299999999 66.84748800000006) (-96.11555499999997 66.84248400000013) (-96.1141659999999 66.83749400000005) (-96.10888699999998 66.83276400000005) (-96.10055499999993 66.82859800000011) (-96.00666799999993 66.79443400000008) (-95.98055999999991 66.7874910000001) (-95.95611599999995 66.78221100000007) (-95.91221599999994 66.77554300000008) (-95.883621 66.7688750000001) (-95.862213 66.76110799999998) (-95.848053 66.75277700000004) (-95.84194899999994 66.74832200000003) (-95.78472899999991 66.67414900000006) (-95.77749599999999 66.65498400000013) (-95.77722199999988 66.64471400000002) (-95.78083800000002 66.6291500000001) (-95.74137899999994 66.63804600000003) (-95.656387 66.6602630000001) (-95.64666699999998 66.66442899999998) (-95.62971499999998 66.67553699999996) (-95.62748699999997 66.68609600000002) (-95.64889499999998 66.724152) (-95.652222 66.72859200000005) (-95.660553 66.73275799999993) (-95.6744379999999 66.73414600000007) (-95.78472899999991 66.73719800000015) (-95.99305699999996 66.84275800000006) (-96.087784 66.90748600000012) (-96.0916749999999 66.911926) (-96.09277299999997 66.91693100000003) (-96.0916749999999 66.92221100000006) (-96.08555599999994 66.9269260000001) (-96.066956 66.93637100000001) (-96.04750099999995 66.94470200000006) (-96.037216 66.94802900000002) (-96.02610800000002 66.95027199999998) (-96.00029 66.95054600000009) (-95.90249599999999 66.94664) (-95.814438 66.94136000000015) (-95.78500400000001 66.93691999999993) (-95.77278099999995 66.93275499999993) (-95.766663 66.928314) (-95.76306199999988 66.92387400000001) (-95.760559 66.91387900000007) (-95.756958 66.90914900000007) (-95.75111400000003 66.90498400000007) (-95.73805199999998 66.90138200000013) (-95.72471599999994 66.90081799999996) (-95.516663 66.90220600000009) (-95.49305700000002 66.90498400000007) (-95.47222899999991 66.91165200000006) (-95.38917500000002 66.91110200000003) (-95.33666999999991 66.89305100000001) (-95.32362399999988 66.88943499999999) (-95.31138599999991 66.88998400000008) (-95.30082700000003 66.89332600000006) (-95.291672 66.8983310000001) (-95.26750199999998 66.91415400000011) (-95.25917099999998 66.92025799999993) (-95.2208399999999 66.96832299999994) (-95.21945199999999 66.97360200000014) (-95.22639499999997 66.9827580000001) (-95.23222399999997 66.98719800000009) (-95.28944399999995 67.02499400000005) (-95.34500099999997 67.08442700000012) (-95.35221899999999 67.14833100000004) (-95.34638999999999 67.15387000000004) (-95.2661129999999 67.2127690000001) (-95.16610700000001 67.27693199999999) (-95.162216 67.28221100000013) (-95.16332999999997 67.28720099999998) (-95.17193600000002 67.2913670000001) (-95.18249499999996 67.29525799999999) (-95.21722399999993 67.30636600000014) (-95.27972399999987 67.31944299999998) (-95.30638099999987 67.32666000000006) (-95.31471299999993 67.33055099999996) (-95.33277900000002 67.34387200000009) (-95.33639499999998 67.34832800000004) (-95.38417099999998 67.44413800000001) (-95.33999599999993 67.49971) (-95.33167999999995 67.505829) (-95.32417299999992 67.51666300000005) (-95.32167099999992 67.52720600000004) (-95.32305899999994 67.53193699999997) (-95.33000199999992 67.54136700000004) (-95.343613 67.55497700000012) (-95.34973100000002 67.559418) (-95.46640000000002 67.63720700000005) (-95.49249299999997 67.64332600000006) (-95.53500399999996 67.64665200000007) (-95.54834 67.64999400000005) (-95.69305400000002 67.70443699999998) (-95.70777900000002 67.72303800000003) (-95.70916699999992 67.72776800000008) (-95.70805399999995 67.73304700000006) (-95.704453 67.73858600000005) (-95.69833399999999 67.74443100000013) (-95.68110699999994 67.7563780000001) (-95.67193600000002 67.76165799999995) (-95.64973399999991 67.76721199999997) (-95.63751199999996 67.76860000000005) (-95.62638899999996 67.771927) (-95.57749899999999 67.7874910000001) (-95.55888399999998 67.79775999999993) (-95.55027799999988 67.80386399999998) (-95.54415899999992 67.809708) (-95.53443900000002 67.820831) (-95.52583300000003 67.836929) (-95.52223199999997 67.85276799999997) (-95.527222 67.87220800000011) (-95.452225 67.98109400000004) (-95.416946 68.02777100000014) (-95.42721599999993 68.032486) (-95.47193900000002 68.05497700000001) (-95.47528099999994 68.0583190000001) (-95.47277799999995 68.06053200000008) (-95.46139499999987 68.06387300000011) (-95.40417500000001 68.06944300000004) (-95.34973100000002 68.074432) (-95.34306300000003 68.074432) (-95.07556199999988 68.06887799999998) (-95.07112099999995 68.06359900000001) (-95.06527699999992 68.06025700000004) (-95.05499299999991 68.055252) (-95.04388399999993 68.05137600000012) (-95.02362099999999 68.04582199999993) (-95.00889599999994 68.04443400000002) (-94.86721799999998 68.03414900000013) (-94.83972199999994 68.03414900000013) (-94.78805499999999 68.04054300000013) (-94.72222899999997 68.05497700000001) (-94.71417200000002 68.05941800000011) (-94.70750399999997 68.06581100000005) (-94.69665499999996 68.07859800000006) (-94.69387799999998 68.08332800000011) (-94.60499599999997 68.13970899999998) (-94.37249799999995 68.22137500000002) (-94.210556 68.26277200000004) (-94.19915799999995 68.26776100000001) (-94.193604 68.27221700000007) (-94.19221499999998 68.27638200000007) (-94.19166599999994 68.28137200000015) (-94.1924899999999 68.29220600000002) (-94.193604 68.29832500000003) (-94.20527599999991 68.31330900000012) (-94.20916699999998 68.32360799999998) (-94.21028099999995 68.32804900000008) (-94.21083099999998 68.36137400000013) (-94.208054 68.36608899999999) (-94.203888 68.37025500000004) (-94.12304699999999 68.41693100000009) (-94.10472099999998 68.42414900000006) (-94.00028999999995 68.46081500000003) (-93.96806300000003 68.46859699999993) (-93.95361300000002 68.47192400000006) (-93.93666100000002 68.47470099999998) (-93.92277499999994 68.47554000000014) (-93.89361599999995 68.47470099999998) (-93.87582399999991 68.47720300000003) (-93.81138599999997 68.48803700000013) (-93.66139199999998 68.52082800000005) (-93.65666199999998 68.52331500000014) (-93.61915599999998 68.54414400000007) (-93.55332900000002 68.58638000000008) (-93.55972299999996 68.61164900000011) (-93.62193300000001 68.62441999999999) (-93.64750700000002 68.62692300000015) (-93.65306099999998 68.62637300000011) (-93.70527600000003 68.65721100000013) (-93.69722000000002 68.74914599999994) (-93.695267 68.75193800000005) (-93.63945000000001 68.78054800000007) (-93.57167099999992 68.83415200000007) (-93.56750499999993 68.83970600000009) (-93.56610099999995 68.849426) (-93.63444499999997 68.95915200000013) (-93.64222699999993 68.96388200000001) (-93.666946 68.97221400000001) (-93.73138399999999 68.9749910000001) (-93.92555199999987 68.97470100000004) (-94.03083800000002 68.9185940000001) (-94.03916900000002 68.91415400000005) (-94.05583200000001 68.9019320000001) (-94.068893 68.89109800000006) (-94.07972699999999 68.84748800000006) (-94.07112099999989 68.84359699999999) (-94.03416400000003 68.83332800000011) (-94.021118 68.83610500000003) (-93.93388400000003 68.855255) (-93.85249299999998 68.87914999999998) (-93.83860799999997 68.885269) (-93.837784 68.88638300000002) (-93.82472200000001 68.89137300000004) (-93.81388900000002 68.89305099999996) (-93.80999799999995 68.89054900000008) (-93.81388900000002 68.88499500000006) (-93.82972699999993 68.87608300000005) (-93.93415799999997 68.82499700000005) (-94.08500699999996 68.76110800000009) (-94.09527600000001 68.75804099999999) (-94.108047 68.75526400000007) (-94.15972899999997 68.74775699999998) (-94.385559 68.72915599999993) (-94.49082899999996 68.72886700000004) (-94.625 68.76138300000014) (-94.60888699999992 68.81944300000004) (-94.58889799999992 68.8413700000001) (-94.58332799999994 68.8458250000001) (-94.57084700000001 68.85026600000003) (-94.56166100000002 68.855255) (-94.556107 68.85998500000005) (-94.55305499999997 68.86442599999992) (-94.54527300000001 68.88472000000007) (-94.54804999999993 68.88888500000007) (-94.55749500000002 68.89305099999996) (-94.56945799999994 68.8936000000001) (-94.577225 68.89665200000002) (-94.585556 68.90304600000007) (-94.58999599999999 68.90832500000005) (-94.60583500000001 68.95109600000006) (-94.604172 68.96192900000005) (-94.59916699999997 68.96554600000002) (-94.587219 68.96887200000003) (-94.55332900000002 68.97387700000007) (-94.37388599999997 69.00305200000014) (-94.22416699999997 69.02777100000014) (-94.16305499999999 69.05220000000008) (-94.15139799999997 69.05720500000012) (-94.07278400000001 69.12664800000005) (-94.07250999999997 69.14498900000007) (-94.1375119999999 69.13192700000002) (-94.22084000000001 69.1202550000001) (-94.23500100000001 69.11943100000013) (-94.24833699999994 69.12052900000003) (-94.31221 69.14498900000007) (-94.32305899999994 69.1499940000001) (-94.32749899999999 69.15525800000006) (-94.3291779999999 69.16137700000013) (-94.30943300000001 69.29414400000013) (-94.30665599999998 69.30026200000009) (-94.30332899999996 69.30497700000012) (-94.291672 69.31387300000006) (-94.28416399999998 69.3188780000001) (-94.25917099999992 69.32666000000006) (-94.16665599999999 69.34248399999996) (-94.04333500000001 69.35748300000006) (-94.02500900000001 69.359711) (-93.95527600000003 69.36276200000003) (-93.73666400000002 69.39999400000005) (-93.62693799999994 69.43247999999994) (-93.57472199999995 69.44165000000004) (-93.56277499999999 69.44274899999999) (-93.52639799999992 69.438309) (-93.53250100000002 69.42997700000001) (-93.54777499999994 69.4205320000001) (-93.67971799999998 69.34776299999993) (-93.69166599999994 69.34275800000006) (-93.741379 69.32443200000006) (-93.75306699999999 69.32054099999999) (-93.76417499999997 69.32054099999999) (-93.82861299999996 69.26554900000008) (-93.85611 69.17692600000004) (-93.85665899999998 69.172211) (-93.84500100000002 69.16499299999998) (-93.83721899999989 69.16442900000004) (-93.63473499999998 69.25166300000012) (-93.46749899999992 69.31749000000002) (-93.45666499999999 69.32304399999998) (-93.36277799999999 69.37164300000012) (-93.36527999999998 69.376083) (-93.37943999999999 69.376373) (-93.45916699999987 69.359711) (-93.47000100000002 69.35664400000007) (-93.47805799999998 69.35331700000012) (-93.49804699999999 69.34915200000012) (-93.51194799999996 69.34942600000005) (-93.56500199999994 69.36775200000005) (-93.56054699999993 69.38388100000003) (-93.53805499999993 69.41053800000009) (-93.527222 69.42164600000007) (-93.51583900000003 69.42553700000013) (-93.50306699999987 69.42747500000007) (-93.48889200000002 69.43498200000005) (-93.43943799999994 69.47526599999998) (-93.44137599999999 69.48054499999995) (-93.48777799999999 69.50277700000004) (-93.50973499999992 69.51304600000009) (-93.53250100000002 69.52110300000004) (-93.54083300000002 69.52331500000008) (-93.587219 69.52804600000002) (-93.62193300000001 69.52720599999998) (-93.68388399999998 69.52221700000001) (-93.70973200000003 69.516098) (-93.80888400000003 69.48887600000006) (-93.86971999999997 69.45166000000012) (-94.04527299999995 69.4391480000001) (-94.27917500000001 69.44026200000008) (-94.29972800000002 69.443039) (-94.31304899999998 69.44664000000006) (-94.34388699999994 69.45915200000007) (-94.45167499999997 69.51860000000005) (-94.50250199999999 69.55636600000003) (-94.59194899999994 69.63720699999999) (-94.62943999999999 69.68304400000005) (-94.67027300000001 69.67747500000007) (-94.712784 69.67164600000001) (-94.749435 69.66360500000013) (-94.75500499999993 69.661652) (-94.76417499999997 69.65498400000007) (-94.76666299999994 69.651093) (-94.76222200000001 69.64471400000014) (-94.74221799999992 69.62831100000005) (-94.72444199999995 69.61442599999998) (-94.72555499999993 69.60859700000015) (-94.73083500000001 69.60276799999997) (-94.74027999999998 69.59748800000006) (-94.76972999999998 69.58305400000006) (-94.8011019999999 69.57221999999996) (-94.82000700000003 69.56721500000009) (-94.83111600000001 69.56581100000011) (-94.84666400000003 69.56553600000012) (-94.86277799999988 69.5669400000001) (-94.95195000000001 69.58442700000012) (-95.01055899999994 69.60304300000013) (-95 69.61886599999997) (-95.00944499999997 69.62164300000006) (-95.021118 69.62164300000006) (-95.07861299999996 69.61637900000011) (-95.16860999999989 69.630539) (-95.396118 69.67886400000003) (-95.40834000000001 69.68193100000013) (-95.42304999999993 69.68609600000013) (-95.54499799999996 69.72692900000004) (-95.648056 69.78027300000002) (-95.71556099999998 69.79136699999992) (-95.72471599999994 69.78997800000013) (-95.7283329999999 69.789154) (-95.73889200000002 69.78610200000003) (-95.75723299999993 69.77720599999992) (-95.75862099999995 69.7727660000001) (-95.86332699999997 69.77221699999996) (-95.96083099999998 69.77804599999996) (-95.97555499999993 69.78193700000003) (-96.02027900000002 69.80442800000003) (-96.03582799999992 69.81387300000011) (-96.07444799999996 69.84193400000004) (-96.087784 69.86914100000013) (-96.08222999999992 69.87359600000013) (-96.08500700000002 69.91137700000013) (-96.097778 69.94663999999995) (-96.116104 69.95387299999999) (-96.17721599999987 69.96470599999992) (-96.19554099999999 69.96554600000002) (-96.19860799999998 69.96499599999999) (-96.20944199999997 69.96165500000012) (-96.21722399999999 69.958328) (-96.22055099999994 69.95748900000001) (-96.23500099999995 69.95748900000001) (-96.24694799999992 69.95887800000003) (-96.25723299999993 69.96304300000003) (-96.27278099999995 69.97109999999998) (-96.38137799999987 70.02748100000008) (-96.40249599999987 70.03997800000008) (-96.45944199999997 70.07554600000009) (-96.50029 70.10137900000001) (-96.50917099999992 70.10859700000003) (-96.52528399999994 70.12275699999998) (-96.531677 70.13108800000003) (-96.55610699999994 70.19192500000008) (-96.56889299999995 70.224426) (-96.57167099999987 70.23442100000005) (-96.57028199999996 70.25109900000012) (-96.56861900000001 70.2686000000001) (-96.56277499999993 70.30026200000003) (-96.55860899999993 70.3119200000001) (-96.55555700000002 70.31749000000013) (-96.54834 70.32887299999999) (-96.53500399999996 70.34414700000008) (-96.29472399999997 70.52249100000012) (-96.23277300000001 70.56219500000003) (-96.07888799999989 70.58749400000005) (-96.06973299999993 70.58776900000004) (-96.04527300000001 70.58415200000007) (-96.04110700000001 70.57693499999999) (-96.03332499999993 70.57276900000011) (-95.99526999999995 70.55970799999994) (-95.93499799999995 70.54748500000011) (-95.92332499999992 70.54525800000005) (-95.806107 70.52886999999998) (-95.79722599999997 70.5294340000001) (-95.78944399999995 70.53665200000012) (-95.791382 70.54275500000006) (-95.79916400000002 70.54914900000011) (-95.85583499999996 70.55331400000011) (-95.9141689999999 70.55941799999994) (-95.93167099999994 70.56219500000003) (-95.96444699999995 70.56887800000004) (-96.000565 70.57998700000007) (-96.04998799999993 70.60026600000003) (-96.058334 70.60582000000005) (-96.06138599999986 70.61720300000002) (-96.05555700000002 70.64305099999996) (-96.04834 70.64694200000002) (-95.95249899999999 70.67970299999996) (-95.848343 70.70694000000009) (-95.81555199999997 70.70915199999996) (-95.81777999999997 70.71026599999993) (-95.901947 70.70776400000005) (-95.93277 70.70109600000006) (-96.11555499999997 70.6560970000001) (-96.13806199999999 70.64637800000008) (-96.14999399999994 70.63720699999999) (-96.15278599999994 70.63247700000011) (-96.15472399999999 70.62469499999997) (-96.153885 70.62164300000006) (-96.158051 70.61747699999995) (-96.16027799999995 70.61637900000005) (-96.16361999999998 70.61554000000012) (-96.202789 70.62164300000006) (-96.37609899999995 70.67303500000003) (-96.38528400000001 70.67776500000002) (-96.39472999999998 70.68359400000003) (-96.40110800000002 70.69053600000012) (-96.41000399999996 70.70248400000003) (-96.41555799999998 70.71527100000003) (-96.42250099999995 70.726089) (-96.43472300000002 70.73719800000003) (-96.44665499999996 70.74192800000009) (-96.53694200000001 70.76332100000002) (-96.58056599999998 70.77748099999991) (-96.60388199999994 70.78804000000014) (-96.61193800000001 70.79443400000002) (-96.61500499999994 70.80442800000003) (-96.61361699999992 70.8211060000001) (-96.601944 70.84999099999999) (-96.59167499999995 70.86692800000014) (-96.57861300000002 70.87803599999995) (-96.571121 70.88304099999999) (-96.5452729999999 70.90498399999996) (-96.53083799999996 70.92137100000014) (-96.52416999999997 70.93165600000003) (-96.51306199999999 70.94970700000005) (-96.51083399999993 70.95582600000006) (-96.50306699999999 70.99693300000007) (-96.49583399999989 71.04026800000008) (-96.48167399999988 71.04332) (-96.45028699999995 71.04498300000012) (-96.414444 71.05358900000004) (-96.40666199999993 71.05859400000008) (-96.36999500000002 71.08998100000002) (-96.37110899999993 71.09304800000012) (-96.37582399999997 71.09803799999997) (-96.40943900000002 71.11943100000008) (-96.41777000000002 71.11360200000007) (-96.42027300000001 71.10720800000001) (-96.41221599999994 71.09582499999999) (-96.41000399999996 71.08970599999998) (-96.41361999999992 71.08415200000002) (-96.421112 71.0816650000001) (-96.44082599999996 71.07916300000005) (-96.46139499999992 71.08055100000013) (-96.47666900000002 71.08526599999999) (-96.50556899999998 71.09721400000001) (-96.53832999999997 71.11303700000002) (-96.55221599999999 71.11998000000006) (-96.56054699999999 71.126373) (-96.55943300000001 71.1308140000001) (-96.553879 71.13693200000006) (-96.54861499999993 71.14054899999996) (-96.46722399999993 71.16526799999997) (-96.45799299999999 71.19556400000005) (-96.46220399999999 71.25550100000004) (-96.50445599999989 71.27609300000012) (-96.50389099999995 71.27720599999998) (-96.48889199999996 71.28610200000008) (-96.27806099999992 71.32638499999996) (-96.24499499999996 71.35386699999992) (-96.21833799999996 71.375809) (-96.193329 71.38998400000008) (-96.16833500000001 71.39999399999999) (-96.13417099999998 71.40971400000006) (-96.04638699999998 71.418045) (-96.02778599999994 71.417755) (-95.92639200000002 71.40054299999997) (-95.89388999999994 71.39082300000007) (-95.88276699999994 71.38415500000008) (-95.87887599999999 71.3785860000001) (-95.87805200000003 71.37303200000008) (-95.87887599999999 71.36720300000007) (-95.85916099999997 71.35498000000001) (-95.83000199999992 71.34304800000007) (-95.79222099999993 71.32804900000002) (-95.67304999999999 71.2874910000001) (-95.65888999999999 71.28553799999997) (-95.55110200000001 71.28997800000002) (-95.535278 71.29081699999995) (-95.45527600000003 71.367752) (-95.45140100000003 71.375809) (-95.547775 71.48776200000003) (-95.77999899999998 71.50387599999999) (-95.83277900000002 71.51582300000013) (-95.9366609999999 71.54664600000012) (-95.94305400000002 71.5535890000001) (-95.90833999999995 71.60054000000014) (-95.89500399999991 71.61053500000003) (-95.88999899999999 71.61331200000012) (-95.87721299999998 71.61831699999999) (-95.86389200000002 71.61943099999996) (-95.81220999999994 71.62191800000005) (-95.74471999999997 71.624146) (-95.678879 71.64637800000008) (-95.53971899999999 71.70359799999994) (-95.39973399999997 71.71859700000005) (-95.30162000000001 71.72109999999998) (-95.28944399999995 71.75360100000012) (-95.28944399999995 71.75749199999996) (-95.28805499999987 71.761932) (-95.28582799999998 71.76721200000009) (-95.239441 71.82249500000006) (-95.226944 71.82666000000006) (-95.073059 71.84137000000004) (-94.890289 71.84471100000007) (-94.85638399999999 71.843323) (-94.83889799999997 71.841095) (-94.79527299999995 71.83332800000005) (-94.74415599999998 71.82304400000004) (-94.73443599999996 71.82331799999997) (-94.71639999999996 71.82609600000012) (-94.65388499999995 71.84526100000011) (-94.612503 71.859711) (-94.60665899999998 71.86331200000006) (-94.60777299999995 71.866379) (-94.61527999999998 71.86886600000008) (-94.62971500000003 71.86692800000014) (-94.65583799999996 71.8619230000001) (-94.70611599999995 71.84803800000003) (-94.74305699999996 71.8394320000001) (-94.75695799999994 71.83749399999994) (-94.77528399999994 71.83888200000007) (-94.78306600000002 71.84137000000004) (-94.82611099999997 71.847488) (-94.85360700000001 71.84942600000011) (-94.903885 71.85026600000015) (-95.10249299999998 71.851089) (-95.11915599999998 71.85026600000015) (-95.15722700000003 71.84582500000005) (-95.17999299999997 71.84304800000012) (-95.18055700000002 71.84220899999997) (-95.19248999999996 71.84137000000004) (-95.21333300000003 71.84304800000012) (-95.23111 71.849152) (-95.24082900000002 71.85386700000004) (-95.25167799999997 71.86053499999997) (-95.25666799999993 71.86692800000014) (-95.25500499999998 71.89553799999999) (-95.222778 71.94220000000007) (-95.21749899999986 71.944977) (-95.20140099999998 71.94720500000011) (-94.97193900000002 71.97581499999995) (-94.741104 71.99192800000003) (-94.69804399999998 71.99359099999992) (-94.66166699999997 71.99498000000011) (-94.57972699999999 71.99693300000007) (-94.56361400000003 71.99693300000007) (-94.53028899999998 71.99443100000002) (-94.499435 71.98803700000013) (-94.487213 71.9833220000001) (-94.39361599999995 71.938309) (-94.38722200000001 71.93386800000007) (-94.38861099999991 71.92414900000011) (-94.460556 71.84942600000011) (-94.47222899999997 71.84721400000006) (-94.50666799999999 71.84776299999999) (-94.521118 71.84999099999993) (-94.539444 71.85137900000007) (-94.56249999999994 71.84999099999993) (-94.57444800000002 71.84693900000002) (-94.64416499999993 71.818329) (-94.61860699999994 71.75332600000007) (-94.61193799999995 71.74971000000005) (-94.5997309999999 71.74470499999995) (-94.59416199999998 71.74331700000005) (-94.56945799999994 71.74498) (-94.5558319999999 71.75000000000006) (-94.53860499999996 71.75833100000011) (-94.53639199999998 71.76110800000004) (-94.52860999999996 71.77137800000014) (-94.51972999999992 71.78915400000011) (-94.49749800000001 71.818329) (-94.48832699999997 71.82415800000001) (-94.48472600000002 71.82470699999993) (-94.39222699999999 71.81442300000009) (-94.366104 71.80247500000007) (-94.35665899999987 71.79637100000002) (-94.35472099999998 71.79247999999995) (-94.38999899999999 71.71775800000006) (-94.41944899999999 71.66720599999996) (-94.42388900000003 71.66137700000013) (-94.41833500000001 71.65998799999994) (-94.40695199999999 71.66081200000013) (-94.36888099999999 71.67526200000003) (-94.26722699999999 71.73082000000005) (-94.258896 71.74192800000009) (-94.25584399999997 71.7538760000001) (-94.24276699999996 71.77082800000011) (-94.22805800000003 71.78166199999998) (-94.20722999999992 71.78942899999993) (-94.19444299999992 71.79193100000003) (-94.181671 71.79193100000003) (-94.03694199999995 71.78720099999998) (-94.02362099999999 71.78581200000002) (-94.01472499999988 71.78109699999999) (-94.00834700000001 71.77499399999999) (-94.006393 71.76332100000002) (-93.99388099999999 71.75305200000014) (-93.97250399999996 71.74581899999998) (-93.94249000000002 71.74359099999998) (-93.90972899999991 71.74498) (-93.88806199999999 71.74832200000009) (-93.87138399999998 71.75305200000014) (-93.850281 71.76332100000002) (-93.83084100000002 71.77165200000007) (-93.81889299999989 71.77470399999999) (-93.80221599999999 71.77554299999997) (-93.78416400000003 71.77415500000006) (-93.74194299999999 71.76915000000002) (-93.72666900000002 71.76638800000012) (-93.71166999999997 71.76138300000002) (-93.70722999999992 71.75499000000008) (-93.69415300000003 71.71609500000011) (-93.69665500000002 71.71081500000008) (-93.70445299999994 71.70526100000006) (-93.73777799999999 71.68942300000003) (-93.764725 71.67970300000013) (-93.81111099999993 71.65748600000006) (-93.81861899999996 71.6519320000001) (-93.81138599999997 71.64553800000004) (-93.79722600000002 71.6394350000001) (-93.6583399999999 71.58194000000003) (-93.61805700000002 71.56860400000005) (-93.589447 71.56137100000007) (-93.51306199999988 71.54470799999996) (-93.4949949999999 71.54165600000005) (-93.476944 71.54026799999997) (-93.42832899999996 71.53414900000013) (-93.412216 71.53082300000005) (-93.23083500000001 71.47360200000014) (-93.21417199999996 71.46720900000014) (-93.20140100000003 71.46138000000013) (-93.18638599999997 71.43580600000013) (-93.18638599999997 71.43026700000013) (-93.18998699999986 71.42387400000001) (-93.19387799999993 71.41943399999997) (-93.19554099999993 71.41360500000013) (-93.19055199999997 71.4080350000001) (-93.18055699999996 71.401093) (-93.14250199999998 71.37498500000004) (-93.12887599999999 71.36886600000003) (-93.101944 71.36747700000001) (-93.06277499999999 71.36943100000002) (-93.04527299999995 71.367752) (-93.02917500000001 71.36442599999998) (-92.99722299999996 71.35386699999992) (-92.98582499999986 71.34887700000007) (-92.97721899999993 71.34387200000003) (-92.97389199999998 71.34082000000012) (-92.94193999999993 71.28887900000001) (-92.93859900000001 71.27053800000004) (-92.93611099999993 71.24748199999999) (-92.93194599999993 71.22053500000004) (-92.93083199999995 71.2144320000001) (-92.92388900000003 71.20776399999994) (-92.854446 71.15138200000013) (-92.86277799999999 71.13943499999999) (-92.86915599999998 71.12803600000012) (-92.88861099999997 71.0747070000001) (-92.88999899999993 71.065811) (-92.90695199999993 70.9124910000001) (-93.03083800000002 70.87886000000009) (-93.04083300000002 70.87776200000002) (-93.04834 70.87387099999995) (-93.04611199999994 70.86720300000002) (-93.0427699999999 70.86387600000006) (-93.02749599999999 70.85276800000008) (-92.98249800000002 70.82554600000014) (-92.958618 70.81749000000008) (-92.92832899999996 70.81137100000001) (-92.91139199999998 70.80998200000005) (-92.81304899999998 70.80581700000005) (-92.68859899999995 70.77554299999997) (-92.67666600000001 70.77165200000007) (-92.64111299999996 70.71527100000003) (-92.63944999999995 70.70999100000012) (-92.64250199999998 70.7063750000001) (-92.62193300000001 70.68359400000003) (-92.59277299999997 70.68580600000013) (-92.43055700000002 70.66609199999999) (-92.41805999999997 70.66304000000008) (-92.20805399999995 70.61026000000004) (-92.19915800000001 70.60664400000002) (-92.16915899999998 70.59027100000014) (-92.15916399999998 70.58415200000007) (-92.15750100000002 70.57916300000011) (-92.15666199999998 70.5730440000001) (-92.16833500000001 70.56999200000001) (-92.19610599999999 70.57110599999999) (-92.22860700000001 70.57360800000004) (-92.245544 70.57138099999997) (-92.25 70.56971699999997) (-92.26501499999989 70.55192600000004) (-92.26501499999989 70.54803500000014) (-92.25 70.50138900000013) (-92.23805199999998 70.48719800000009) (-92.11665299999999 70.47082500000005) (-92.1100009999999 70.468323) (-91.99694799999997 70.39082300000007) (-91.98777799999999 70.35582000000011) (-91.99249299999997 70.32054099999999) (-91.99526999999995 70.316666) (-91.98554999999993 70.28970300000003) (-91.95973200000003 70.2586060000001) (-91.952225 70.25526400000012) (-91.94694500000003 70.25804100000005) (-91.94221499999998 70.26361099999997) (-91.92027300000001 70.29637099999997) (-91.900284 70.33082600000012) (-91.90361000000001 70.33720400000004) (-91.904449 70.34332300000011) (-91.89805599999994 70.34915200000012) (-91.890289 70.35443100000009) (-91.87805200000003 70.35832199999999) (-91.86749299999997 70.3602600000001) (-91.85305800000003 70.36137400000007) (-91.73721299999994 70.35859699999997) (-91.72972099999998 70.35693400000008) (-91.70388799999995 70.34526100000005) (-91.69888300000002 70.34248400000013) (-91.69387799999987 70.33638000000008) (-91.63612399999994 70.23165899999998) (-91.56527699999992 70.20054600000014) (-91.52416999999991 70.17915300000004) (-91.51362599999993 70.16720600000008) (-91.51194800000002 70.15887500000002) (-91.51139799999999 70.15277100000014) (-91.516953 70.14637800000003) (-91.52917499999995 70.14248700000013) (-91.54249599999991 70.14082300000013) (-91.57806399999993 70.13749700000011) (-91.91665599999999 70.11998000000006) (-91.95333900000003 70.1183170000001) (-91.97222899999991 70.11859100000004) (-92.00389099999995 70.12136800000013) (-92.02139299999999 70.12359600000008) (-92.03611799999993 70.12692300000003) (-92.04943800000001 70.132202) (-92.05749499999996 70.13693200000006) (-92.23443600000002 70.21220399999999) (-92.26834100000002 70.20887800000014) (-92.39306599999998 70.15054300000003) (-92.450287 70.0711060000001) (-92.43222000000003 70.07554600000009) (-92.285278 70.08970600000004) (-92.26834100000002 70.09054600000007) (-92.17748999999998 70.08831800000007) (-92.12999000000002 70.084991) (-92.0875089999999 70.07971199999997) (-92.02639799999997 70.06637600000005) (-91.99305699999996 70.05859400000008) (-91.98527499999994 70.05386400000003) (-91.93971299999998 70.020264) (-91.94665499999991 70.01582300000007) (-92.114441 69.95637500000004) (-92.14889499999992 69.94663999999995) (-92.20388799999995 69.92053199999998) (-92.36944599999998 69.84776300000004) (-92.54333500000001 69.78054800000007) (-92.658615 69.76110800000009) (-92.77861000000001 69.72221400000001) (-92.775284 69.7063750000001) (-92.56555200000003 69.71276899999998) (-92.55139200000002 69.7124940000001) (-92.53500400000001 69.709427) (-92.53527799999995 69.70526100000012) (-92.70973200000003 69.67387400000001) (-92.728882 69.67164600000001) (-92.74380500000001 69.67195100000004) (-92.77722199999994 69.67608600000005) (-92.858047 69.6827550000001) (-92.87138400000003 69.68248000000011) (-92.90888999999999 69.68054199999995) (-92.92277499999989 69.67942799999997) (-92.92361499999993 69.678314) (-92.92027300000001 69.66970800000007) (-92.89750699999996 69.66554300000007) (-92.83612099999999 69.655823) (-92.82749899999999 69.655823) (-92.69444299999998 69.65637200000015) (-92.634727 69.67108899999994) (-92.62937899999997 69.6735920000001) (-92.619057 69.67575800000009) (-92.5625 69.68748499999998) (-92.52362099999993 69.6927490000001) (-92.50695799999994 69.69358800000009) (-92.34083599999997 69.69413800000012) (-92.3058319999999 69.665817) (-92.20527600000003 69.6455380000001) (-92.09111000000001 69.62469500000003) (-92.08833300000003 69.62303200000008) (-92.08860799999997 69.61886599999997) (-92.09083599999991 69.6160890000001) (-92.11054999999993 69.61303699999996) (-92.122772 69.61219800000003) (-92.13417099999998 69.61248800000004) (-92.24360699999988 69.63026400000001) (-92.28195199999999 69.63998400000008) (-92.29110700000001 69.6413730000001) (-92.30055199999993 69.64166300000011) (-92.29750100000001 69.636932) (-92.12470999999994 69.55497700000006) (-92.08416699999998 69.54470800000001) (-91.93832399999991 69.51776100000012) (-91.80332900000002 69.49887099999995) (-91.80416899999989 69.50499000000002) (-91.79833999999994 69.51388500000002) (-91.49749800000001 69.65860000000009) (-91.48500100000001 69.66331500000013) (-91.47528099999994 69.6644290000001) (-91.45083599999998 69.65887499999991) (-91.41888399999993 69.65554800000001) (-91.31416300000001 69.65277100000009) (-91.221115 69.65332000000001) (-91.20222499999994 69.655258) (-91.18859900000001 69.65387000000004) (-91.09777799999995 69.63832100000013) (-91.09416199999998 69.63610800000004) (-91.091949 69.63165299999997) (-91.09527599999996 69.62664799999993) (-91.10194399999995 69.6208190000001) (-91.10583500000001 69.61914100000001) (-91.33444199999997 69.55276500000002) (-91.36082499999992 69.54553199999998) (-91.38055400000002 69.54248000000007) (-91.396118 69.54109199999999) (-91.460556 69.53970300000015) (-91.49472000000003 69.5372010000001) (-91.51445000000001 69.53414899999996) (-91.56277499999993 69.52249100000012) (-91.57028199999996 69.52026400000005) (-91.56639100000001 69.51470899999998) (-91.55777 69.50804100000005) (-91.553879 69.50555400000013) (-91.40222199999994 69.52221700000001) (-91.333618 69.53498800000011) (-91.32167099999992 69.53887900000001) (-91.19221500000003 69.56275900000003) (-91.17971799999998 69.55886800000013) (-91.16027799999989 69.54609700000003) (-91.15055799999999 69.5372010000001) (-91.14666699999992 69.5316620000001) (-91.14361600000001 69.52526899999992) (-91.13861099999986 69.51915000000008) (-91.12832600000002 69.51416000000006) (-91.11416600000001 69.51081799999992) (-91.10278299999999 69.50888100000009) (-90.96972700000003 69.51138300000014) (-90.83000199999992 69.484985) (-90.75862099999995 69.4827580000001) (-90.75195300000001 69.48719800000015) (-90.75140399999987 69.49275200000011) (-90.75805700000001 69.50138900000013) (-90.75584399999997 69.50721700000008) (-90.75418100000002 69.50915500000002) (-90.71610999999996 69.53942900000004) (-90.69860799999992 69.53942900000004) (-90.65110800000002 69.534424) (-90.53666699999991 69.51388500000002) (-90.49333200000001 69.50416600000005) (-90.43666100000002 69.48970000000003) (-90.31861900000001 69.45443700000004) (-90.30776999999995 69.45027200000004) (-90.30776999999995 69.44720500000011) (-90.319458 69.44053600000001) (-90.34445199999999 69.43220500000012) (-90.35804699999994 69.42970300000007) (-90.39639299999988 69.4285890000001) (-90.41139199999992 69.43136599999997) (-90.42748999999998 69.44081100000005) (-90.43360899999999 69.44497699999994) (-90.43832399999997 69.44802900000008) (-90.45056199999999 69.45027200000004) (-90.46333299999992 69.44859300000002) (-90.49333200000001 69.44081100000005) (-90.55555699999996 69.42248500000005) (-90.61389199999991 69.451096) (-90.62193299999996 69.45332300000001) (-90.70361299999996 69.45359800000006) (-90.704453 69.45138500000007) (-90.69860799999992 69.44609100000014) (-90.63694800000002 69.42970300000007) (-90.58583099999998 69.41914400000002) (-90.58222999999992 69.41693100000003) (-90.58473200000003 69.41415399999994) (-90.60082999999997 69.40859999999998) (-90.69499199999996 69.3897090000001) (-90.70527599999997 69.3877720000001) (-90.718613 69.3877720000001) (-90.74137899999994 69.38275099999993) (-90.79028299999999 69.36276200000003) (-90.80943299999996 69.34220900000014) (-90.81304899999992 69.33831800000007) (-90.81582600000002 69.333328) (-90.81861900000001 69.29859899999997) (-90.81500199999999 69.29332) (-90.80860899999999 69.28749099999999) (-90.80555700000002 69.28276100000011) (-90.803879 69.25972000000007) (-90.80471799999992 69.255829) (-90.80943299999996 69.25332600000002) (-90.82223499999998 69.25166300000012) (-90.903885 69.24636800000007) (-90.920837 69.24636800000007) (-90.93138099999993 69.24748200000005) (-91.08111599999995 69.26693699999998) (-91.21472199999994 69.29026800000008) (-91.29638699999992 69.3119200000001) (-91.34527600000001 69.32804900000002) (-91.35583499999996 69.33221400000002) (-91.42639199999996 69.35054000000002) (-91.43859900000001 69.35276800000003) (-91.44722000000002 69.35276800000003) (-91.44665500000002 69.34971600000006) (-91.43194599999998 69.33859300000006) (-91.33528100000001 69.30442800000014) (-91.13055399999996 69.24192800000003) (-91.03138699999994 69.21832300000005) (-90.91888399999993 69.16081200000008) (-90.89500399999997 69.15081800000007) (-90.81500199999999 69.13360600000004) (-90.66471899999999 69.08332800000005) (-90.65499899999992 69.07804900000008) (-90.65417499999995 69.07609599999995) (-90.654449 69.07054100000005) (-90.660553 69.05998200000005) (-90.66944899999993 69.04998799999998) (-90.58389299999999 68.92886400000003) (-90.54499800000002 68.91110200000014) (-90.52888499999995 68.90860000000009) (-90.47444200000001 68.89054900000008) (-90.43638599999991 68.87441999999999) (-90.41944899999999 68.84082000000006) (-90.44610599999999 68.77970900000014) (-90.44915800000001 68.77609300000006) (-90.45417799999996 68.77360500000009) (-90.464722 68.770828) (-90.47833299999996 68.76832600000012) (-90.49249299999997 68.76776100000006) (-90.49749800000001 68.76832600000012) (-90.50111399999997 68.770828) (-90.51390099999998 68.75915500000013) (-90.52667200000002 68.74443100000013) (-90.52778599999999 68.736649) (-90.52250700000002 68.72998000000007) (-90.506958 68.72499099999993) (-90.48028599999992 68.70776400000011) (-90.479172 68.705826) (-90.47444200000001 68.53082299999994) (-90.50973499999998 68.49525499999993) (-90.519455 68.48748799999998) (-90.52833599999991 68.4833220000001) (-90.55777 68.47470099999998) (-90.58473200000003 68.46554600000013) (-90.603882 68.45582600000006) (-90.60777299999995 68.451096) (-90.60665899999998 68.44609100000014) (-90.603882 68.43969700000008) (-90.60139500000002 68.43637100000007) (-90.55999799999995 68.42359900000002) (-90.52389499999998 68.41442899999998) (-90.46694899999989 68.40386999999998) (-90.36193800000001 68.38415500000013) (-90.33277900000002 68.37803600000012) (-90.31750499999998 68.37330600000007) (-90.31500199999999 68.36998000000006) (-90.31916799999999 68.3683170000001) (-90.34388699999994 68.36526500000002) (-90.36749299999991 68.34526100000011) (-90.27139299999999 68.23887600000012) (-90.25500499999993 68.23275799999999) (-90.23277299999995 68.23027000000002) (-90.20722999999992 68.23109399999998) (-90.178604 68.23580900000002) (-90.144455 68.24386600000003) (-90.13221699999991 68.24859600000002) (-90.12277199999994 68.25360100000006) (-90.11972000000003 68.25721699999997) (-90.11805700000002 68.26220699999999) (-90.03860499999996 68.35220299999997) (-89.985275 68.39610299999998) (-89.912216 68.46720900000003) (-89.89306599999992 68.54331999999994) (-89.91166699999997 68.54748499999994) (-89.91999800000002 68.55358899999999) (-89.92777999999998 68.56359900000007) (-89.94860799999998 68.59942600000005) (-89.95056199999999 68.60386699999998) (-89.94972199999995 68.60775800000005) (-89.89472999999987 68.65248100000008) (-89.80972300000002 68.71026599999999) (-89.80248999999992 68.71220399999993) (-89.78916899999996 68.71026599999999) (-89.78056300000003 68.705826) (-89.76333599999992 68.69053600000001) (-89.75750700000003 68.68470800000006) (-89.74694799999997 68.66970800000013) (-89.729172 68.69914200000011) (-89.69332899999995 68.76388500000002) (-89.68472300000002 68.81025700000009) (-89.68749999999994 68.81971699999997) (-89.68998699999992 68.82470700000005) (-89.714722 68.84693900000008) (-89.73388699999992 68.88165300000014) (-89.73916600000001 68.89276100000012) (-89.75695799999988 68.93997200000001) (-89.75556899999998 68.954163) (-89.75306699999999 68.958328) (-89.71665999999999 69.00610400000011) (-89.70722999999992 69.0147090000001) (-89.70056199999999 69.01915000000002) (-89.68443300000001 69.0288700000001) (-89.66610700000001 69.03831500000001) (-89.64416499999999 69.04832500000009) (-89.58277900000002 69.06860400000005) (-89.56082200000003 69.07720900000004) (-89.52935799999995 69.09060699999998) (-89.48999000000003 69.11053500000003) (-89.48249799999991 69.11554000000007) (-89.458618 69.13360600000004) (-89.402222 69.17886399999998) (-89.39862099999993 69.18248) (-89.39445499999994 69.19303900000006) (-89.39445499999994 69.199142) (-89.39695699999993 69.20860299999998) (-89.39445499999994 69.21443199999999) (-89.38999899999993 69.21914700000002) (-89.32223499999992 69.24720800000011) (-89.30665599999992 69.25138900000002) (-89.258621 69.25999500000012) (-89.220551 69.26666300000005) (-89.17416400000002 69.27331500000014) (-89.13417099999998 69.27554299999991) (-89.11444099999989 69.27526899999998) (-89.09056099999998 69.27192700000006) (-89.04998799999998 69.2644350000001) (-89.03805499999987 69.26193199999994) (-88.999435 69.25138900000002) (-88.96888699999994 69.24136400000009) (-88.94248999999996 69.22998000000001) (-88.93804899999998 69.22692899999998) (-88.93554699999999 69.22221400000012) (-88.93472300000002 69.219986) (-88.9375 69.21415699999994) (-88.93666099999996 69.20915200000007) (-88.92999299999997 69.19802900000013) (-88.87026999999995 69.14860500000009) (-88.85943599999996 69.14221199999997) (-88.78250100000002 69.10304300000007) (-88.77250700000002 69.09887699999996) (-88.62388599999997 69.042755) (-88.48028599999998 68.99887100000007) (-88.45722999999992 68.99275200000005) (-88.406113 68.98275800000005) (-88.27084400000001 68.93498199999993) (-88.208618 68.911652) (-88.197769 68.90664700000013) (-88.11582900000002 68.86053500000008) (-88.08222999999998 68.8413700000001) (-88.05221599999999 68.8230440000001) (-88.03832999999997 68.81414799999999) (-87.97166400000003 68.76609799999994) (-87.96444699999995 68.76054399999998) (-87.947769 68.73165900000009) (-87.92166099999992 68.67303500000003) (-87.91665599999999 68.65637200000015) (-87.91749600000003 68.64749100000006) (-87.92500299999995 68.632477) (-87.93499799999995 68.61943100000002) (-87.9424899999999 68.61080900000002) (-87.947769 68.60525500000006) (-87.93388399999998 68.57693500000005) (-87.9241639999999 68.559708) (-87.883621 68.49443099999996) (-87.88137799999998 68.49108900000004) (-87.84167500000001 68.43248) (-87.835556 68.42442299999999) (-87.81750499999993 68.41720600000008) (-87.79861499999998 68.40525800000006) (-87.791672 68.39833099999998) (-87.78971899999993 68.3919370000001) (-87.789444 68.38665800000012) (-87.79222099999993 68.334427) (-87.80055199999993 68.3119200000001) (-87.84527600000001 68.24775700000009) (-87.84889199999986 68.24414100000001) (-87.92916899999994 68.197205) (-87.93582200000003 68.19581599999998) (-87.94694500000003 68.19859300000007) (-88.10665899999987 68.242752) (-88.22193900000002 68.36554000000001) (-88.38444500000003 68.29109200000005) (-88.39222699999999 68.28749099999999) (-88.39555399999995 68.28526300000004) (-88.40167199999996 68.28027299999997) (-88.40333599999991 68.27554299999997) (-88.40278599999988 68.270264) (-88.39834599999995 68.2605440000001) (-88.380829 68.24552900000009) (-88.36193799999995 68.23387100000008) (-88.34249899999998 68.22360200000003) (-88.33473200000003 68.21748400000013) (-88.33084100000002 68.21304300000003) (-88.27972399999993 68.11804199999995) (-88.27749599999999 68.111649) (-88.27778599999999 68.105545) (-88.28306599999996 68.09999099999999) (-88.31555199999997 68.08610499999998) (-88.33168 68.07638500000007) (-88.33833299999998 68.0705410000001) (-88.3411099999999 68.06498700000009) (-88.34777799999995 68.03720100000004) (-88.36694299999999 68.03166200000004) (-88.381104 68.0252690000001) (-88.37277199999994 67.96887200000009) (-88.370834 67.95915200000002) (-88.36860699999994 67.95443699999998) (-88.285278 67.81721500000009) (-88.27639799999997 67.80304000000001) (-88.26916499999999 67.79359400000004) (-88.160553 67.68247999999994) (-88.15110799999991 67.67330900000002) (-88.13944999999995 67.66442899999998) (-88.12499999999994 67.65554800000001) (-88.09583999999995 67.64248700000007) (-88.06610099999995 67.63472000000013) (-88.00917099999992 67.62275700000009) (-87.97999600000003 67.61581400000011) (-87.96528599999999 67.61164900000011) (-87.95584100000002 67.607483) (-87.88137799999998 67.56805400000013) (-87.841385 67.53610200000014) (-87.827225 67.52720600000004) (-87.78916900000002 67.50526399999995) (-87.62304699999993 67.4124910000001) (-87.60638399999993 67.40386999999998) (-87.58500700000002 67.39526400000005) (-87.53694200000001 67.37886000000009) (-87.46083099999998 67.34414700000013) (-87.35777300000001 67.26220700000005) (-87.35916099999997 67.24748200000005) (-87.36193800000001 67.24220300000007) (-87.42916899999994 67.20860300000004) (-87.44055199999997 67.20498700000013) (-87.48666400000002 67.19413800000007) (-87.49777199999994 67.19053600000012) (-87.50556899999998 67.18525699999998) (-87.51139799999999 67.1749880000001) (-87.51194800000002 67.16998300000006) (-87.516953 67.11554000000012) (-87.51028400000001 67.11219800000015) (-87.49749800000001 67.11526500000008) (-87.32278400000001 67.16276600000015) (-87.2408289999999 67.21609499999994) (-87.11776699999996 67.2127690000001) (-87.06973299999993 67.21943700000008) (-86.96861299999995 67.24525500000004) (-86.96305799999999 67.25054899999998) (-86.96749899999998 67.25526400000001) (-87.00889599999994 67.28221100000013) (-87.07556199999993 67.32720900000004) (-87.08667000000003 67.33637999999996) (-87.09056099999992 67.34582500000005) (-87.08999599999999 67.35081500000013) (-87.08139 67.35443099999998) (-86.874435 67.40498400000013) (-86.804169 67.42082199999999) (-86.79222099999987 67.42248500000011) (-86.77917500000001 67.422211) (-86.76528899999994 67.41914400000007) (-86.70973199999997 67.38804600000003) (-86.68916300000001 67.3744200000001) (-86.68472300000002 67.36998000000006) (-86.67555199999998 67.36554000000007) (-86.64723200000003 67.35832200000004) (-86.59249899999998 67.34526100000011) (-86.57972699999999 67.34498600000006) (-86.54388399999993 67.34498600000006) (-86.53195199999999 67.34664900000001) (-86.52362099999999 67.35220300000003) (-86.51806599999998 67.35720800000007) (-86.50917099999998 67.36775200000011) (-86.50306699999993 67.37776200000002) (-86.47389199999998 67.46859699999999) (-86.47277799999989 67.47859200000005) (-86.47444200000001 67.4833220000001) (-86.49499499999996 67.49693300000007) (-86.48500100000001 67.51693699999998) (-86.452225 67.59248400000013) (-86.45140100000003 67.59748800000011) (-86.45584099999996 67.60192900000004) (-86.46528599999994 67.60636900000003) (-86.47972099999998 67.61053500000014) (-86.48889200000002 67.61469999999997) (-86.52139299999993 67.67192100000011) (-86.525284 67.68136600000014) (-86.5080569999999 67.69720500000011) (-86.35916099999992 67.82777399999998) (-86.35055499999999 67.83332799999994) (-86.2869419999999 67.86997999999994) (-86.098053 67.97804300000001) (-86.04138199999994 68.00054900000003) (-86.02972399999993 68.00499000000013) (-86.00500499999998 68.008331) (-85.99221799999998 68.00915500000013) (-85.97999599999991 68.01165800000012) (-85.898346 68.04609700000015) (-85.89250199999998 68.05137600000012) (-85.89083899999997 68.06137100000007) (-85.91250600000001 68.08471700000007) (-85.91639699999996 68.09414700000013) (-85.91444399999995 68.10415599999999) (-85.88806199999999 68.18969700000014) (-85.84277299999997 68.31721499999998) (-85.83917200000002 68.32138100000009) (-85.71278399999994 68.41165200000012) (-85.72694399999995 68.48637400000001) (-85.73332199999999 68.59860200000008) (-85.67527799999999 68.71110499999998) (-85.66361999999992 68.7269290000001) (-85.64584399999995 68.7374880000001) (-85.63389599999994 68.74192800000014) (-85.62026999999995 68.7416530000001) (-85.60638399999999 68.74026500000002) (-85.59167500000001 68.73719800000009) (-85.56945799999994 68.728317) (-85.55804399999994 68.726089) (-85.49444599999993 68.7369230000001) (-85.48194899999993 68.73942600000004) (-85.46617100000003 68.74999200000013) (-85.46416499999992 68.75299100000012) (-85.46472199999994 68.75972000000002) (-85.50778199999996 68.766663) (-85.55082700000003 68.77331500000008) (-85.56277499999999 68.776657) (-85.55360399999995 68.78109700000005) (-85.54083300000002 68.78276100000005) (-85.51417500000002 68.78387500000002) (-85.45805399999995 68.77777099999997) (-85.415009 68.770828) (-85.37138399999998 68.7622070000001) (-85.36166400000002 68.75776700000006) (-85.36805699999996 68.75248699999997) (-85.37943999999999 68.747208) (-85.38833599999998 68.74192800000014) (-85.38417099999998 68.73719800000009) (-85.32861299999996 68.72499099999993) (-85.31416299999995 68.72276299999999) (-85.228882 68.71026599999999) (-85.21583599999997 68.71081500000014) (-85.20916699999998 68.71499600000004) (-85.21083099999998 68.71971100000007) (-85.21945199999999 68.72915599999993) (-85.22666900000002 68.73359700000003) (-85.14834599999995 68.75000000000011) (-85.06750499999993 68.7497100000001) (-84.91278099999994 68.74693300000001) (-84.898056 68.74247700000006) (-84.883896 68.74026500000002) (-84.80110200000001 68.73414600000001) (-84.78721599999994 68.73359700000003) (-84.775284 68.73719800000009) (-84.76750199999992 68.747208) (-84.76000999999991 68.75721700000003) (-84.752792 68.76748700000013) (-84.7541809999999 68.77221700000001) (-84.761124 68.77693200000004) (-84.83473200000003 68.8205410000001) (-84.84666400000003 68.82388300000008) (-84.86082499999998 68.82527200000004) (-84.89999399999994 68.8205410000001) (-84.912216 68.81805400000002) (-84.976944 68.80941800000011) (-85.00361599999991 68.80831899999998) (-85.031677 68.81080600000001) (-85.13194299999992 68.82693499999999) (-85.14388999999994 68.83027600000003) (-85.16305499999993 68.83915700000011) (-85.17721599999993 68.8483280000001) (-85.18415800000002 68.85304300000013) (-85.19276400000001 68.86219800000015) (-85.19444299999986 68.86720300000002) (-85.19082600000002 68.87220800000006) (-85.17777999999998 68.87359600000002) (-85.15306099999998 68.87303200000002) (-85.125 68.87025499999999) (-85.05332900000002 68.85887100000002) (-85.03999299999998 68.85942100000005) (-85.00556899999992 68.87747200000007) (-85.00195299999996 68.88247700000011) (-84.99749799999995 68.92581200000006) (-85.00723299999987 68.93026700000013) (-85.02111799999994 68.93165600000009) (-85.04666099999997 68.92665100000005) (-85.05999800000001 68.92581200000006) (-85.08805799999999 68.92858899999999) (-85.11694299999994 68.93331900000004) (-85.12943999999993 68.9374850000001) (-85.136124 68.94220000000013) (-85.14056399999993 68.94664) (-85.13694799999996 68.95193500000005) (-85.12777699999992 68.95610000000005) (-85.115005 68.95860300000004) (-85.08750899999995 68.95803799999999) (-84.97378500000002 68.9468690000001) (-84.91471899999999 68.93803400000007) (-84.818893 68.92776500000002) (-84.80583199999995 68.92915299999993) (-84.79638699999998 68.93359400000003) (-84.79138199999994 68.94331399999993) (-84.79333499999996 68.94831800000009) (-84.79998799999987 68.95277400000003) (-84.80943300000001 68.95721400000002) (-84.82194500000003 68.96165500000012) (-84.837219 68.96582000000012) (-84.85139499999997 68.96832300000011) (-84.86555499999992 68.96971100000002) (-84.90695199999993 68.97164900000013) (-84.92138699999998 68.97387700000007) (-84.93611099999993 68.97720300000015) (-84.98692299999993 68.99951199999998) (-84.98167399999994 69.00749200000001) (-84.95777900000002 69.01748700000007) (-84.94444299999998 69.01805100000001) (-84.83639499999992 69.01277200000004) (-84.72000099999997 69.00694300000004) (-84.59167499999995 68.99443100000008) (-84.57806399999998 68.99386600000003) (-84.56555200000003 68.9974820000001) (-84.541382 69.00721699999997) (-84.53222700000003 69.01249700000005) (-84.52833599999997 69.01748700000007) (-84.53527799999995 69.02221700000013) (-84.56361399999997 69.02581800000002) (-84.745544 69.03970300000009) (-84.95388799999995 69.08581500000014) (-85.108337 69.11331200000012) (-85.020554 69.16026299999993) (-85.00695799999994 69.16081200000008) (-84.99415599999992 69.16331500000007) (-84.98750299999995 69.16859400000004) (-84.99471999999997 69.17303500000014) (-85.008896 69.17442300000005) (-85.06471299999993 69.17692600000004) (-85.14377599999995 69.16709100000003) (-85.15177899999998 69.16609199999994) (-85.159111 69.16410100000007) (-85.163277 69.16159800000008) (-85.15527299999997 69.15310700000009) (-85.1766659999999 69.14360000000005) (-85.19749499999995 69.13275099999998) (-85.210556 69.13026400000012) (-85.22361799999999 69.12886000000009) (-85.23693799999995 69.12803600000012) (-85.25140399999998 69.13026400000012) (-85.266663 69.13360600000004) (-85.308334 69.14360000000005) (-85.31555200000003 69.14804100000015) (-85.31750499999998 69.15277100000003) (-85.308044 69.15803499999998) (-85.29611199999988 69.1624910000001) (-85.28332499999988 69.16526799999997) (-85.23500100000001 69.17469800000003) (-85.22750100000002 69.176872) (-85.22683699999999 69.17987099999999) (-85.23116299999998 69.18254100000007) (-85.24082900000002 69.192474) (-85.25473 69.19274900000005) (-85.337784 69.19386300000002) (-85.38305700000001 69.20555100000007) (-85.39277600000003 69.20999100000006) (-85.47332799999992 69.27192700000006) (-85.47778299999987 69.27638200000007) (-85.50306699999993 69.31442300000009) (-85.50805700000001 69.395264) (-85.506958 69.40026900000004) (-85.50334199999998 69.405258) (-85.49415599999992 69.41081200000002) (-85.48194899999993 69.41526799999997) (-85.46749899999992 69.41720600000008) (-85.45333900000003 69.41693100000003) (-85.42443799999995 69.41331500000001) (-85.39611799999994 69.41165200000006) (-85.38333099999994 69.41526799999997) (-85.33917200000002 69.43887300000011) (-85.343613 69.44358799999998) (-85.35360699999995 69.44802900000008) (-85.37887599999993 69.45664999999997) (-85.39416499999993 69.46081500000014) (-85.42277499999994 69.46249399999999) (-85.43638599999991 69.46081500000014) (-85.445831 69.45637499999998) (-85.46501199999994 69.44081100000005) (-85.47721899999999 69.43637100000001) (-85.491379 69.43664600000005) (-85.50083899999998 69.4391480000001) (-85.51083399999999 69.44358799999998) (-85.525284 69.45277400000009) (-85.53889499999997 69.46693399999998) (-85.54249600000003 69.47637900000007) (-85.547775 69.64721700000007) (-85.54695100000004 69.65220600000004) (-85.514725 69.76805100000007) (-85.450287 69.78471400000012) (-85.42332499999998 69.78887900000012) (-85.40916399999998 69.78858900000012) (-85.39389 69.7852630000001) (-85.38917499999997 69.78054800000007) (-85.38999899999993 69.77581800000002) (-85.39416499999993 69.77053799999999) (-85.40695199999993 69.76026900000011) (-85.41082799999998 69.75526400000007) (-85.406387 69.75054900000003) (-85.39195299999994 69.7502750000001) (-85.37916599999994 69.75360100000012) (-85.36665299999999 69.75804099999999) (-85.34249899999998 69.76887500000004) (-85.33306899999997 69.77415500000012) (-85.331955 69.77915999999999) (-85.34445199999999 69.81303399999996) (-85.34916699999991 69.81749000000008) (-85.36193800000001 69.82193000000007) (-85.37721299999993 69.82415800000007) (-85.43360899999993 69.82360800000004) (-85.46139499999998 69.82249500000012) (-85.48999000000003 69.8230440000001) (-85.51861599999995 69.82360800000004) (-85.56138599999997 69.82470699999999) (-85.58639499999998 69.82693499999993) (-85.58222999999998 69.8458250000001) (-85.57861300000002 69.85081500000013) (-85.57194500000003 69.8560940000001) (-85.561935 69.85942100000005) (-85.54804999999993 69.859985) (-85.37721299999993 69.85108900000006) (-85.36193800000001 69.84887700000002) (-85.31555200000003 69.83804299999997) (-85.27416999999991 69.82527200000004) (-85.22250400000001 69.80802900000009) (-85.21250900000001 69.8035890000001) (-85.199432 69.79914900000006) (-85.17083699999995 69.79054299999996) (-85.093887 69.77331500000003) (-85.07917799999996 69.77110299999998) (-85.064438 69.76998900000001) (-84.87165800000002 69.8160860000001) (-84.86471599999993 69.82110599999993) (-84.854172 69.83137499999998) (-84.57417299999992 69.85748300000012) (-84.54638699999987 69.85942100000005) (-84.47666900000002 69.86219800000015) (-84.43360899999993 69.86109899999997) (-84.37582399999997 69.85748300000012) (-84.34666399999998 69.85470600000002) (-84.33168 69.85220300000003) (-84.16944899999999 69.82222000000013) (-84.12582399999991 69.80941800000011) (-84.118607 69.80470300000007) (-84.11416599999995 69.79998800000004) (-84.11222099999998 69.79359399999998) (-84.10417199999995 69.78581200000002) (-84.09167499999995 69.78137200000003) (-83.97193899999996 69.74971000000005) (-83.941666 69.74304200000012) (-83.74861099999993 69.70887800000008) (-83.73388699999998 69.70664999999991) (-83.70500199999992 69.703598) (-83.60388199999994 69.69358800000009) (-83.589447 69.69220000000001) (-83.36054999999999 69.67637600000006) (-83.34638999999999 69.67608600000005) (-83.33306900000002 69.678314) (-83.30638099999993 69.69386299999991) (-83.29361 69.69914200000011) (-83.28056299999992 69.70248400000003) (-83.25334199999998 69.70526100000012) (-83.23889200000002 69.70471199999997) (-83.18055700000002 69.69497700000011) (-83.122772 69.68914800000005) (-83.02194199999997 69.67970300000002) (-83.00805699999995 69.67915299999999) (-82.82695000000001 69.68887300000006) (-82.69665499999996 69.69581600000004) (-82.54100799999998 69.67447700000014) (-82.53967299999994 69.67159300000009) (-82.53616299999987 69.66882300000003) (-82.52732800000001 69.66615300000012) (-82.50950599999987 69.66197999999997) (-82.50067100000001 69.66049199999998) (-82.48332999999997 69.6579900000001) (-82.45750399999997 69.655327) (-82.291672 69.63998400000008) (-82.26333599999998 69.63804600000014) (-82.25473 69.63638300000002) (-82.30749500000002 69.62220800000011) (-82.33473199999997 69.61943100000002) (-82.390289 69.61886599999997) (-82.47066499999994 69.62303200000008) (-82.47633399999995 69.62587000000008) (-82.48366499999997 69.62853999999999) (-82.4925 69.630043) (-82.55233799999996 69.63537600000001) (-82.56083699999999 69.63570400000015) (-82.56899999999996 69.63487200000009) (-82.57700299999999 69.63287400000013) (-82.653885 69.62303200000008) (-82.65472399999999 69.56860400000011) (-82.612503 69.5669400000001) (-82.600281 69.5624850000001) (-82.535278 69.53498800000011) (-82.48998999999998 69.50721700000008) (-82.47666899999996 69.49775699999998) (-82.4869379999999 69.4935910000001) (-82.50056499999994 69.49220300000002) (-82.52888499999995 69.4952550000001) (-82.74221799999998 69.50999500000006) (-82.89750700000002 69.5188750000001) (-82.93971299999993 69.52137800000008) (-82.98222399999992 69.52415499999995) (-83.06777999999991 69.53305100000006) (-83.12554899999992 69.53997800000002) (-83.15417500000001 69.54386900000009) (-83.22805799999998 69.538589) (-83.08250399999997 69.51416000000006) (-83.025284 69.50804100000005) (-82.95472699999999 69.503601) (-82.87027 69.50027499999999) (-82.85665899999992 69.50082400000008) (-82.84249899999992 69.50027499999999) (-82.78527799999995 69.49414100000013) (-82.68472300000002 69.47970600000002) (-82.32417299999992 69.41886899999997) (-82.29527299999995 69.41387900000012) (-82.23721299999994 69.40081800000002) (-82.225281 69.39637799999997) (-82.22138999999993 69.39166299999994) (-82.23167399999994 69.38749700000005) (-82.28971899999999 69.25166300000012) (-82.291382 69.24664300000006) (-82.273056 69.23748800000004) (-82.25862099999995 69.23387100000008) (-82.24499500000002 69.2333220000001) (-82.21722399999993 69.23304700000011) (-82.20361299999996 69.23359700000015) (-82.05444299999999 69.24136400000009) (-82.04110700000001 69.242752) (-82.02778599999999 69.24497999999994) (-81.99129499999998 69.25470700000011) (-81.91471899999988 69.26944000000015) (-81.70777899999996 69.26470900000004) (-81.69387799999998 69.26304600000014) (-81.67971799999998 69.26054400000004) (-81.650284 69.25166300000012) (-81.51222200000001 69.20138500000013) (-81.4163969999999 69.2080380000001) (-81.402222 69.20721400000014) (-81.38833599999998 69.20471200000009) (-81.35972599999997 69.19664000000012) (-81.347778 69.19192500000008) (-81.33889799999997 69.18748500000004) (-81.33250399999986 69.18248) (-81.29943800000001 69.1202550000001) (-81.33084100000002 69.09526100000011) (-81.57028200000002 68.99247700000001) (-81.59584000000001 68.98414600000012) (-81.71665999999999 68.94914200000005) (-81.75556899999998 68.94136000000009) (-81.80943300000001 68.9327550000001) (-81.88806199999999 68.91914400000013) (-81.91416900000002 68.9144290000001) (-81.96611000000001 68.90443399999998) (-82.00500499999998 68.89553800000004) (-82.04305999999997 68.88388100000009) (-82.05555699999996 68.87858600000004) (-82.05721999999997 68.87387100000001) (-82.04333500000001 68.87220800000006) (-82.00306699999993 68.87414600000005) (-81.97721899999999 68.87970000000001) (-81.83306899999997 68.90721100000007) (-81.819458 68.90860000000009) (-81.68638599999997 68.90525800000012) (-81.67304999999999 68.90443399999998) (-81.66194200000001 68.90277100000003) (-81.650284 68.89915500000001) (-81.58805799999999 68.86970500000012) (-81.58195499999994 68.86499000000009) (-81.43832399999997 68.87498499999998) (-81.424713 68.87553400000013) (-81.382767 68.86665299999999) (-81.35417199999989 68.85748300000012) (-81.23805199999993 68.77470400000004) (-81.23443599999996 68.76998900000001) (-81.23277299999995 68.76026899999994) (-81.25222799999995 68.65304600000013) (-81.25584399999991 68.64305100000001) (-81.26055899999994 68.63804600000014) (-81.26750199999992 68.6330410000001) (-81.35777300000001 68.59915200000012) (-81.560272 68.5416560000001) (-81.68721 68.50943000000007) (-81.79888900000003 68.48970000000003) (-81.8163909999999 68.46971100000013) (-81.83029199999999 68.45971700000013) (-81.84249899999992 68.45555100000001) (-81.95805399999995 68.42330900000002) (-81.97083999999995 68.42109700000015) (-81.99777199999994 68.42303500000008) (-82.01194799999996 68.42776500000014) (-82.02444499999996 68.43691999999999) (-82.02778599999999 68.44165000000004) (-82.02888499999995 68.44664000000006) (-82.03332499999999 68.45609999999999) (-82.03805499999993 68.46582000000006) (-82.04167199999995 68.4705350000001) (-82.06220999999994 68.49443099999996) (-82.0686189999999 68.499146) (-82.07749899999993 68.503601) (-82.09167500000001 68.50721700000008) (-82.229446 68.5316620000001) (-82.256393 68.53360000000004) (-82.26945499999994 68.53248600000006) (-82.27111799999994 68.52748100000002) (-82.26722699999999 68.52276599999999) (-82.25473 68.51332100000013) (-82.24305699999996 68.50888100000009) (-82.22917199999989 68.50526400000012) (-82.1875 68.4958190000001) (-82.17582699999991 68.49136400000003) (-82.17332499999992 68.48580899999996) (-82.17500299999995 68.48109399999993) (-82.179169 68.47608900000006) (-82.18360899999993 68.47110000000009) (-82.19055200000003 68.46609500000005) (-82.20249899999999 68.46081500000003) (-82.21501199999989 68.45748900000012) (-82.22805799999998 68.45526100000001) (-82.25418099999996 68.45443700000004) (-82.382767 68.46693400000004) (-82.39389 68.468323) (-82.44888299999997 68.47859200000005) (-82.47694399999995 68.48553500000003) (-82.50029 68.49443099999996) (-82.53250100000002 68.50804100000005) (-82.54527300000001 68.51748700000002) (-82.5491639999999 68.52221700000007) (-82.55777 68.5269320000001) (-82.571396 68.52638200000007) (-82.58389299999988 68.52415500000001) (-82.60888699999992 68.51748700000002) (-82.62110899999999 68.51220699999993) (-82.63473499999998 68.5022130000001) (-82.63890100000003 68.49720800000006) (-82.63528400000001 68.49220300000002) (-82.4911039999999 68.4538730000001) (-82.49055499999992 68.40220599999992) (-82.36305199999998 68.35054000000008) (-82.35665899999992 68.34582500000005) (-82.35305799999998 68.341095) (-82.35110500000002 68.3313750000001) (-82.35249299999992 68.32666000000006) (-82.35665899999992 68.32165500000002) (-82.36944599999993 68.318329) (-82.38194299999992 68.31693999999999) (-82.39527899999996 68.31666600000005) (-82.42222599999997 68.318604) (-82.44860799999998 68.32083100000006) (-82.47500600000001 68.32110600000004) (-82.50083899999998 68.31749000000002) (-82.50778199999996 68.31330900000012) (-82.50140399999998 68.30859400000008) (-82.48361199999994 68.29942299999993) (-82.42610199999996 68.27665700000011) (-82.40055799999993 68.26887499999998) (-82.38694799999996 68.26638800000006) (-82.37388599999997 68.26554899999996) (-82.36082499999992 68.26693700000004) (-82.31166100000002 68.283051) (-82.2869419999999 68.28970300000003) (-82.27333099999993 68.28887900000007) (-82.264725 68.28442400000006) (-82.26000999999997 68.27499399999999) (-82.25917099999998 68.26998900000012) (-82.25862099999995 68.25555400000002) (-82.2644499999999 68.24552900000009) (-82.27027900000002 68.23553500000008) (-82.27861000000001 68.22554000000002) (-82.28944399999995 68.21554599999996) (-82.30055199999987 68.20555100000007) (-82.321121 68.19026200000002) (-82.33029199999987 68.18525699999992) (-82.33721899999995 68.18026700000007) (-82.34555099999994 68.17025800000005) (-82.34722899999997 68.16526800000003) (-82.34583999999995 68.16053799999997) (-82.33721899999995 68.15582300000011) (-82.31443799999994 68.14665200000002) (-82.27250699999996 68.13333100000006) (-82.23083500000001 68.12191800000005) (-82.20611599999995 68.115814) (-82.19248999999996 68.11248799999998) (-82.179169 68.111649) (-82.16639700000002 68.1141510000001) (-82.145782 68.12548800000002) (-82.09916699999997 68.15498400000001) (-82.08056599999992 68.17970300000013) (-82.06361400000003 68.19970700000005) (-82.05694599999998 68.20471200000009) (-82.0475009999999 68.20971699999996) (-82.0375059999999 68.21388199999996) (-82.02500900000001 68.21609500000011) (-82.01167299999986 68.21470599999992) (-81.99777199999994 68.21110500000009) (-81.98889200000002 68.20665000000002) (-81.98554999999999 68.20166) (-81.98472600000002 68.19692999999995) (-81.99305700000002 68.17248500000011) (-82.00889599999994 68.14776599999999) (-82.01916499999999 68.13275100000004) (-82.02722199999994 68.12275699999998) (-82.03416400000003 68.11775199999994) (-82.04361 68.11276200000009) (-82.056107 68.10942100000005) (-82.11450200000002 68.08287000000001) (-82.17388900000003 68.00248699999997) (-82.17555199999998 67.9974820000001) (-82.10278299999999 67.90721100000007) (-82.09666399999998 67.90248100000008) (-82.07945299999994 67.893326) (-82.07055700000001 67.888596) (-81.837784 67.78387500000002) (-81.72721899999993 67.740814) (-81.70750399999997 67.73165899999992) (-81.69055200000003 67.722488) (-81.6783289999999 67.71304299999991) (-81.66639700000002 67.70359800000006) (-81.65972899999997 67.69413800000001) (-81.65388499999995 67.68942300000015) (-81.63667299999992 67.67997700000001) (-81.59249899999998 67.66165200000006) (-81.53832999999997 67.64359999999999) (-81.49804699999999 67.63192700000013) (-81.45777900000002 67.62052900000015) (-81.43305999999995 67.61137400000007) (-81.4163969999999 67.60192900000004) (-81.24888599999991 67.47970600000008) (-81.24305699999991 67.47499100000005) (-81.23971599999987 67.470261) (-81.237213 67.45555100000001) (-81.237503 67.4410860000001) (-81.23916600000001 67.43609600000008) (-81.24526999999995 67.426376) (-81.25639299999995 67.41638199999994) (-81.29361 67.39610300000004) (-81.30055199999998 67.391098) (-81.30471799999998 67.38610800000009) (-81.347778 67.292755) (-81.36639400000001 67.23887599999995) (-81.37361099999998 67.20471199999997) (-81.37609900000001 67.18997200000001) (-81.37527499999999 67.18525699999998) (-81.38027999999991 67.17053200000004) (-81.41389500000002 67.0913700000001) (-81.43222000000003 67.06666600000011) (-81.49665799999991 67.00471500000015) (-81.50306699999993 66.9997100000001) (-81.51251200000002 66.99470500000001) (-81.52417000000003 66.99054000000001) (-81.53611799999999 66.98831200000006) (-81.69972200000001 66.97026100000011) (-81.71194499999996 66.96998600000006) (-81.75083899999993 66.97859199999999) (-81.76390100000003 66.983047) (-81.77223200000003 66.98776200000003) (-81.78306600000002 66.99247700000006) (-81.79611199999994 66.99693300000001) (-81.80915799999997 66.99832199999997) (-81.833618 66.99775699999998) (-81.92971799999992 66.97859199999999) (-81.95249899999993 66.96804800000012) (-81.98889200000002 66.94970699999993) (-82.026947 66.92608600000005) (-82.17999299999997 66.7688750000001) (-82.18388400000003 66.76416000000006) (-82.36972000000003 66.72581500000013) (-82.48110999999994 66.66970799999996) (-82.55638099999999 66.62387100000012) (-82.56277499999987 66.61886600000008) (-82.56666599999994 66.613876) (-82.57167099999998 66.60386699999998) (-82.57749899999999 66.584427) (-82.57667500000002 66.57943699999998) (-82.57945299999994 66.56971700000008) (-82.585556 66.56469700000002) (-82.59695399999998 66.56025699999998) (-82.69444299999998 66.55802900000003) (-82.78195199999999 66.56666600000005) (-82.86999499999996 66.56749000000002) (-83.01806599999998 66.53997800000008) (-83.012787 66.51582300000007) (-83.015289 66.50610400000005) (-83.01916499999987 66.50109900000001) (-83.025284 66.4958190000001) (-83.04998799999993 66.47553999999997) (-83.05860899999993 66.470261) (-83.35749799999996 66.35304300000007) (-83.36833200000001 66.34887700000002) (-83.40222199999994 66.347488) (-83.45056199999999 66.34664900000001) (-83.51528899999988 66.35386700000004) (-83.56750499999998 66.36747700000012) (-83.65278599999994 66.40776100000005) (-83.65417500000001 66.4124910000001) (-83.63944999999995 66.43719500000009) (-83.63082899999995 66.44220000000013) (-83.6183319999999 66.44081100000011) (-83.60777300000001 66.43637100000012) (-83.597778 66.42692600000004) (-83.60166900000002 66.4122010000001) (-83.597778 66.40748600000006) (-83.54527300000001 66.38136300000008) (-83.53472899999997 66.37803599999995) (-83.57972699999993 66.43165600000009) (-83.67250100000001 66.5205380000001) (-83.68110699999994 66.52499399999999) (-83.70695499999988 66.530823) (-83.73249799999996 66.53471400000006) (-83.79527300000001 66.54193099999998) (-83.82028200000002 66.54275499999994) (-83.83222999999998 66.54220600000002) (-83.85749799999996 66.54414400000013) (-83.96888699999988 66.57748400000003) (-83.97749299999998 66.58221400000008) (-83.98500100000001 66.59166000000005) (-84.01139799999999 66.66360500000002) (-84.01417499999997 66.67330900000002) (-84.01556399999998 66.68775900000014) (-84.01445000000001 66.69274899999999) (-84.00611900000001 66.69802900000008) (-83.99471999999997 66.70138500000013) (-83.98277299999995 66.70277400000009) (-83.94554099999999 66.70248400000008) (-83.89111300000002 66.8041530000001) (-83.886124 66.813873) (-83.88389599999994 66.82388300000008) (-83.88417099999992 66.83360299999998) (-83.890289 66.85775799999999) (-83.9016719999999 66.87191800000011) (-83.90777600000001 66.87664799999999) (-83.91639700000002 66.88108799999998) (-83.928879 66.86303700000002) (-83.93832399999991 66.82360800000009) (-83.94554099999999 66.81359900000007) (-84.10499600000003 66.70832800000011) (-84.11639400000001 66.70498700000007) (-84.140289 66.70193499999993) (-84.15278599999999 66.70248400000008) (-84.16555800000003 66.7038730000001) (-84.26028400000001 66.71638500000006) (-84.27305599999994 66.71859699999993) (-84.28666699999991 66.72303800000003) (-84.29527300000001 66.72747800000008) (-84.43638599999997 66.81832900000012) (-84.42777999999993 66.96110499999998) (-84.415009 66.96081500000014) (-84.39028899999988 66.96192900000011) (-84.37860099999995 66.96415700000006) (-84.36749299999997 66.9685970000001) (-84.370834 66.97137500000008) (-84.43611099999993 66.98136900000009) (-84.48805199999993 66.988876) (-84.61805700000002 67.00637800000004) (-84.69415300000003 67.00972000000002) (-84.73306300000002 67.01470899999998) (-84.837784 67.0294340000001) (-84.85082999999997 67.03166200000004) (-84.87332200000003 67.03942899999998) (-84.88194299999998 67.04386900000003) (-84.88612399999994 67.04859900000008) (-84.89250199999992 67.05331400000011) (-84.90139799999986 67.05775499999999) (-84.915009 67.06080600000001) (-84.92694099999994 67.05941800000011) (-84.93611099999993 67.05609099999998) (-84.88027999999997 66.98942600000004) (-84.87165800000002 66.98498499999994) (-84.85777299999995 66.98165900000009) (-84.84584000000001 66.98220800000007) (-84.83389299999993 66.984711) (-84.81111099999993 66.9916530000001) (-84.789444 67.00248699999997) (-84.77833599999991 67.00665300000009) (-84.76556399999998 67.00637800000004) (-84.69999699999994 66.99581900000004) (-84.64584400000001 66.98165900000009) (-84.63972499999988 66.97804300000007) (-84.65139799999997 66.97554000000008) (-84.71278399999994 66.97276299999999) (-84.88583399999993 66.96666000000005) (-84.96000700000002 66.96415700000006) (-85.01000999999997 66.96470600000004) (-85.04834 66.96331800000007) (-85.05972299999996 66.95971700000007) (-85.14277599999997 66.93026700000013) (-85.22833300000002 66.87831100000005) (-85.228882 66.87330600000001) (-85.22277799999995 66.86886600000003) (-85.19610599999999 66.85525500000006) (-85.18443300000001 66.85108900000012) (-85.146118 66.83943199999999) (-85.13305700000001 66.83692900000005) (-85.11999499999996 66.83554100000015) (-84.94860799999998 66.85859700000015) (-84.94027699999998 66.86387600000012) (-84.90455600000001 66.8972020000001) (-84.90105399999999 66.90037500000011) (-84.90489200000002 66.90303799999998) (-84.91288800000001 66.90504499999997) (-84.920547 66.90537300000011) (-84.93522599999989 66.904541) (-84.94306199999994 66.90537300000011) (-84.95105000000001 66.90737899999999) (-84.95788600000003 66.909874) (-84.96173099999999 66.91270400000002) (-84.95638999999994 66.91536700000012) (-84.86233500000003 66.93983500000007) (-84.855164 66.94066600000008) (-84.76777599999997 66.95220900000004) (-84.75527999999997 66.95166000000006) (-84.60221899999999 66.93580600000013) (-84.56221 66.90138200000013) (-84.57389799999999 66.89888000000002) (-84.61082499999992 66.89387499999998) (-84.62332200000003 66.89332600000006) (-84.650284 66.90081799999996) (-84.67582700000003 66.90277100000009) (-84.68832399999991 66.90304600000013) (-84.74638400000003 66.89749100000006) (-84.70639 66.888596) (-84.58555599999994 66.85887100000008) (-84.558334 66.85054000000002) (-84.52333099999998 66.83692900000005) (-84.50584399999997 66.82777399999998) (-84.50473 66.82304399999998) (-84.51611300000002 66.82054099999999) (-84.541382 66.82138100000003) (-84.58056599999998 66.82832300000013) (-84.63417099999998 66.84165999999999) (-84.660278 66.84637500000002) (-84.67250100000001 66.84582499999999) (-84.68443299999996 66.84414700000002) (-84.69055199999997 66.83998099999997) (-84.68443299999996 66.8352660000001) (-84.67555199999993 66.83082600000012) (-84.664444 66.82748400000014) (-84.65110799999997 66.82415800000012) (-84.466949 66.78776600000015) (-84.43443300000001 66.72554000000014) (-84.44526699999989 66.72026099999994) (-84.44860799999992 66.71527100000009) (-84.44248999999996 66.71081499999997) (-84.42944299999994 66.70832800000011) (-84.40417499999995 66.70555100000001) (-84.34306300000003 66.69941699999998) (-84.20388799999995 66.69136000000003) (-84.15306099999992 66.68580600000001) (-84.144455 66.68136600000003) (-84.13667299999997 66.66220100000004) (-84.13806199999988 66.65721099999996) (-84.14250199999998 66.64721699999996) (-84.14611799999994 66.64221200000009) (-84.18055699999996 66.60664400000007) (-84.18638599999991 66.60137900000001) (-84.12832599999996 66.55470300000002) (-83.96722399999993 66.47387700000007) (-83.91639700000002 66.44664000000012) (-83.89805599999994 66.43275500000004) (-83.88806199999999 66.42359900000008) (-83.87110899999993 66.39498900000007) (-83.86749299999997 66.38053900000011) (-83.80471799999992 66.30720500000012) (-83.77362099999999 66.28970300000009) (-83.774719 66.27526900000004) (-83.77223199999997 66.26554899999996) (-83.76861599999995 66.26081800000003) (-83.762787 66.25610400000011) (-83.728882 66.23803700000002) (-83.71833799999996 66.23359700000003) (-83.6847229999999 66.21554600000002) (-83.68110699999994 66.21081500000008) (-83.67860399999995 66.20109600000012) (-83.68443299999996 66.19609100000002) (-83.69305399999996 66.190811) (-83.76789899999994 66.16863999999998) (-83.78971899999993 66.16331500000013) (-83.83583099999993 66.15470900000003) (-83.84777799999995 66.15332000000001) (-83.85555999999991 66.155823) (-83.97778299999999 66.1994170000001) (-84.11805700000002 66.25471500000009) (-84.13528399999996 66.26388500000013) (-84.14111299999996 66.26832600000006) (-84.14862099999999 66.27777100000014) (-84.14999399999999 66.282761) (-84.15028399999994 66.29248000000001) (-84.14889499999992 66.29748500000005) (-84.15249599999999 66.30220000000008) (-84.158615 66.30664100000001) (-84.16722099999993 66.31109600000002) (-84.17832900000002 66.31553600000001) (-84.19082600000002 66.31805400000002) (-84.21640000000002 66.32165500000008) (-84.22833299999996 66.3211060000001) (-84.31723 66.299713) (-84.42694099999989 66.36303700000008) (-84.44193999999993 66.37220800000006) (-84.506393 66.40220599999998) (-84.51695299999994 66.40470900000014) (-84.528885 66.40415999999999) (-84.55055199999987 66.39444000000009) (-84.55888400000003 66.38916000000006) (-84.61915599999992 66.34971599999994) (-84.62693799999988 66.3435970000001) (-84.635559 66.334991) (-84.636124 66.32887300000004) (-84.625 66.31915299999997) (-84.527222 66.27859500000011) (-84.42443800000001 66.2247010000001) (-84.40750099999997 66.21554600000002) (-84.40139799999997 66.21110500000009) (-84.38999899999993 66.19693000000001) (-84.38639799999999 66.19219999999996) (-84.37777699999998 66.17804000000007) (-84.37249800000001 66.16832) (-84.37471 66.15860000000009) (-84.44860799999992 66.15860000000009) (-84.46055599999994 66.15914900000001) (-84.47332799999998 66.16137700000002) (-84.48388699999992 66.16470300000003) (-84.50944500000003 66.178314) (-84.64111299999996 66.216095) (-84.86915599999998 66.26666299999994) (-84.88194299999998 66.26805100000007) (-84.90583799999996 66.2669370000001) (-84.92748999999998 66.25888100000003) (-84.94387799999998 66.24832200000014) (-84.95472699999993 66.24386600000003) (-84.96665999999999 66.24443100000008) (-84.97972099999998 66.24664300000012) (-85.00167799999997 66.25526400000007) (-85.13194299999992 66.29193100000003) (-85.17832900000002 66.26220700000005) (-85.19027699999987 66.2605440000001) (-85.20249899999993 66.26081800000003) (-85.214722 66.26220700000005) (-85.22778299999999 66.26443499999999) (-85.25222799999995 66.27304100000009) (-85.26972999999998 66.28193700000003) (-85.30139200000002 66.30470300000007) (-85.30665599999992 66.3141480000001) (-85.33972199999994 66.39915499999995) (-85.34555099999989 66.44775400000009) (-85.346115 66.45748900000001) (-85.34167500000001 66.48220800000013) (-85.34333800000002 66.48692299999999) (-85.35139499999997 66.49609399999997) (-85.45750399999991 66.57388300000014) (-85.46640000000002 66.57832300000001) (-85.47972099999998 66.5813750000001) (-85.49194299999988 66.58194000000015) (-85.55221599999993 66.57777400000003) (-85.57556199999999 66.5747070000001) (-85.59861799999993 66.56944299999998) (-85.710556 66.53610199999997) (-85.84527600000001 66.49941999999999) (-85.85777300000001 66.49971) (-85.86888099999993 66.50416600000011) (-85.87554899999998 66.5086060000001) (-85.88890100000003 66.511932) (-85.995544 66.5080410000001) (-86.00750700000003 66.50721699999997) (-86.078888 66.49693300000007) (-86.10333300000002 66.49664300000006) (-86.12832600000002 66.49803200000008) (-86.14111300000002 66.49941999999999) (-86.25666799999993 66.51332100000013) (-86.28332499999993 66.51859999999994) (-86.578888 66.53027299999997) (-86.58000199999998 66.5205380000001) (-86.58778399999994 66.51527400000009) (-86.59973099999996 66.51110800000004) (-86.61138900000003 66.50833100000011) (-86.622772 66.50665299999997) (-86.63500999999997 66.50610400000005) (-86.65972899999997 66.50637799999998) (-86.67250099999995 66.507767) (-86.68554699999999 66.50972000000007) (-86.69888300000002 66.51304600000014) (-86.726944 66.5211030000001) (-86.73805199999998 66.52526900000004) (-86.75167799999997 66.52832000000001) (-86.76417499999997 66.52859500000005) (-86.77528399999994 66.526093) (-86.78083800000002 66.52082800000011) (-86.781387 66.51582300000007) (-86.777222 66.51110800000004) (-86.74388099999993 66.48858600000011) (-86.70111099999997 66.46665999999993) (-86.66278099999994 66.44941700000004) (-86.63999899999993 66.44108599999993) (-86.633621 66.43637100000012) (-86.64167799999996 66.43193100000008) (-86.678604 66.43275500000004) (-86.73055999999997 66.43692000000004) (-86.75695799999994 66.44136000000009) (-86.78361499999994 66.4474790000001) (-86.79638699999992 66.44859300000007) (-86.80749500000002 66.44609100000002) (-86.81111099999998 66.44192500000008) (-86.80915800000002 66.43719500000009) (-86.80499299999997 66.43248000000006) (-86.65167199999996 66.32415800000001) (-86.63833599999992 66.31526200000008) (-86.61277799999999 66.31164600000005) (-86.49722300000002 66.29942299999999) (-86.39611799999994 66.28970300000009) (-86.30610699999994 66.27638200000013) (-86.14222699999999 66.23969999999997) (-86.07611099999991 66.22387700000013) (-85.92748999999998 66.18637099999995) (-85.91389500000002 66.18220500000007) (-85.90110800000002 66.17303500000003) (-85.89723200000003 66.16832) (-85.97749299999992 66.07777399999998) (-85.97582999999992 66.0730440000001) (-85.97389199999998 66.03887900000001) (-85.974716 66.03387500000002) (-85.97999599999991 66.028595) (-85.99055499999997 66.02415500000012) (-86.077225 65.99581900000004) (-86.12138400000003 65.98442100000005) (-86.21749899999998 65.95748900000012) (-86.22084000000001 65.95220900000004) (-86.23138399999993 65.94192500000003) (-86.23916600000001 65.93664600000005) (-86.249435 65.93193100000002) (-86.32640099999998 65.90498400000007) (-86.34861799999987 65.899719) (-86.360275 65.89915500000006) (-86.42027299999995 65.89248700000007) (-86.47222899999986 65.83998099999997) (-86.49694799999997 65.80802900000003) (-86.49499499999996 65.803314) (-86.48638900000003 65.799149) (-86.46417199999996 65.79054300000007) (-86.45527600000003 65.78610200000014) (-86.453888 65.78137200000009) (-86.45111099999986 65.74720800000006) (-86.45417799999996 65.74220300000002) (-86.53028899999987 65.69552599999992) (-86.71610999999996 65.61747700000006) (-86.819458 65.56053200000002) (-86.82972699999999 65.55581699999999) (-86.84056099999998 65.55331400000006) (-86.85278299999993 65.55442800000003) (-86.86582899999996 65.55748000000011) (-86.87805200000003 65.55775499999993) (-86.88861099999997 65.555252) (-86.953888 65.53915400000011) (-86.97277799999995 65.520264) (-87.01722699999999 65.48692300000005) (-87.02444500000001 65.48165900000004) (-87.035278 65.47915600000005) (-87.05471799999998 65.48664900000011) (-87.06750499999998 65.48887599999995) (-87.077789 65.48498500000005) (-87.087784 65.47943100000009) (-87.09500100000002 65.47415200000012) (-87.110275 65.45860299999998) (-87.118607 65.4433140000001) (-87.11915599999998 65.43830900000006) (-87.11500499999994 65.43359400000003) (-87.101944 65.42970300000013) (-87.11166400000002 65.39027400000003) (-87.35110500000002 65.3272090000001) (-87.36193800000001 65.324432) (-87.37277199999994 65.32276900000005) (-87.3958439999999 65.32138099999997) (-87.43083199999995 65.32083100000011) (-87.83332799999994 65.32388300000002) (-87.86915599999998 65.32527200000004) (-87.89306599999998 65.32666000000012) (-87.94193999999987 65.33082600000006) (-87.96665999999999 65.333054) (-88.004456 65.33915700000011) (-88.03028899999993 65.345261) (-88.07028199999996 65.35609399999993) (-88.09445199999999 65.36331200000012) (-88.21278399999989 65.40277100000003) (-88.22138999999999 65.40721100000007) (-88.23472600000002 65.41609199999999) (-88.24333199999995 65.42526200000003) (-88.24527 65.42997700000006) (-88.25389100000001 65.43914800000005) (-88.31361400000003 65.47915600000005) (-88.33361799999994 65.49247700000001) (-88.54861499999998 65.58276400000011) (-88.55972300000002 65.58692900000011) (-88.57305899999994 65.58970600000004) (-88.58555599999994 65.59082000000001) (-88.633331 65.591095) (-88.645554 65.59220899999997) (-88.65888999999993 65.59498600000006) (-88.68582200000003 65.6019290000001) (-88.82972699999988 65.64137299999999) (-88.828888 65.64415000000008) (-88.75666799999999 65.64276100000006) (-88.62249799999995 65.6372070000001) (-88.49888599999997 65.62692300000003) (-88.51333599999998 65.64444000000009) (-88.77972399999999 65.67608599999994) (-88.9497219999999 65.68664600000011) (-88.962784 65.68858300000011) (-89.00083899999998 65.69859300000002) (-89.09944200000001 65.72526600000003) (-89.124435 65.7333220000001) (-89.13389599999994 65.73748799999998) (-89.14056399999993 65.74192800000003) (-89.14527899999996 65.74636800000002) (-89.14750700000002 65.75138899999996) (-89.14723199999997 65.76110799999998) (-89.14944499999996 65.76582300000001) (-89.15638699999994 65.77026400000011) (-89.17443800000001 65.778595) (-89.37999000000002 65.84637500000002) (-89.525284 65.886932) (-89.59722899999986 65.91081200000002) (-89.66471899999993 65.93498200000005) (-89.67166099999992 65.93942300000015) (-89.70944199999991 65.94220000000001) (-89.96722399999999 65.94859300000002) (-89.991104 65.94747899999999) (-90 65.94435900000013) (-89.96417199999996 65.93691999999999) (-89.93916300000001 65.93609600000002) (-89.92639199999991 65.93414300000006) (-89.89916999999997 65.92858900000004) (-89.87110899999999 65.92109700000015) (-89.83416699999998 65.91026300000004) (-89.79943800000001 65.8983310000001) (-89.74082900000002 65.87330600000007) (-89.731674 65.86914100000007) (-89.72694399999995 65.83998099999997) (-89.729172 65.83471700000001) (-89.73638900000003 65.829163) (-89.74694799999997 65.82638500000002) (-89.76916499999993 65.822495) (-89.79333499999996 65.822495) (-89.81889299999989 65.82554600000003) (-89.83222999999992 65.82832300000013) (-89.84388699999994 65.83221400000002) (-89.89056399999987 65.85304300000001) (-89.902222 65.85720800000001) (-90.04861499999998 65.88832100000002) (-90.07362399999994 65.89027399999998) (-90.085556 65.88915999999995) (-90.11999500000002 65.88388099999997) (-90.162781 65.87220799999994) (-90.20722999999992 65.86442600000004) (-90.24194299999999 65.86137400000007) (-90.26583899999997 65.86053500000014) (-90.31500199999999 65.86219800000003) (-90.40444899999994 65.87109399999997) (-90.41833500000001 65.87414600000011) (-90.42748999999998 65.87803600000007) (-90.43249500000002 65.8827510000001) (-90.42555199999993 65.88832100000002) (-90.39306599999992 65.89610299999998) (-90.35777300000001 65.89804100000009) (-90.333328 65.89721700000013) (-90.27278100000001 65.89749100000006) (-90.22555499999993 65.90054299999997) (-90.21556099999992 65.90443400000004) (-90.21333300000003 65.90942400000012) (-90.21333300000003 65.91442899999998) (-90.220551 65.91886899999997) (-90.23472599999997 65.92248500000005) (-90.258896 65.92248500000005) (-90.29333500000001 65.91859399999998) (-90.360275 65.907761) (-90.41888399999988 65.901093) (-90.57417299999997 65.89665200000007) (-90.59611499999994 65.89665200000007) (-90.708618 65.90248099999991) (-90.73388699999992 65.9041600000001) (-90.850281 65.91526799999991) (-91.06834400000002 65.94026200000008) (-91.31639099999995 65.96998600000012) (-91.32861300000002 65.96998600000012) (-91.34028599999994 65.96887200000009) (-91.42916899999994 65.95109599999995) (-91.44444299999986 65.93081700000005) (-91.36277799999993 65.89359999999999) (-91.35333299999996 65.88943499999999) (-91.341385 65.88581800000003) (-91.32806399999998 65.88388099999997) (-91.18943799999994 65.85304300000001) (-91.06082200000003 65.81330900000006) (-91.04666099999992 65.809418) (-91.02055399999995 65.8060910000001) (-91.008621 65.8060910000001) (-91.0041809999999 65.81137100000012) (-91.01390099999998 65.82054099999999) (-91.05471799999998 65.84664900000013) (-91.108337 65.8913730000001) (-91.12304699999993 65.90470900000008) (-91.12582399999985 65.90971400000012) (-91.12138400000003 65.9149930000001) (-91.09973099999996 65.91998299999995) (-91.08805799999993 65.92109700000015) (-91.06388900000002 65.92109700000015) (-90.99027999999998 65.91998299999995) (-90.97694399999995 65.918045) (-90.94860799999998 65.91081200000002) (-90.92138699999992 65.905258) (-90.90834000000001 65.90359500000011) (-90.74194299999999 65.88777200000004) (-90.69248999999996 65.88610800000004) (-90.53167699999995 65.88053900000006) (-90.07806399999998 65.8124850000001) (-90.01390099999992 65.80026200000003) (-90 65.79740099999992) (-89.98693800000001 65.79470800000007) (-89.96000699999996 65.78887900000007) (-89.93222000000003 65.78137200000009) (-89.74499500000002 65.72470099999998) (-89.72027599999996 65.71304299999997) (-89.660278 65.68331899999998) (-89.65333599999991 65.67886399999998) (-89.42832899999996 65.52943400000004) (-89.30888399999998 65.46943700000008) (-89.146118 65.40054300000008) (-89.06555199999991 65.333054) (-89.05444299999999 65.3288730000001) (-89.04444899999999 65.32777400000009) (-88.771118 65.30775499999999) (-88.73388699999998 65.30609099999998) (-88.71028100000001 65.30609099999998) (-88.69860799999998 65.30693100000002) (-88.676941 65.31053200000008) (-88.60694899999993 65.30693100000002) (-88.49027999999998 65.29332000000005) (-88.38917499999991 65.27720599999992) (-88.36471599999987 65.27499400000005) (-88.215012 65.27720599999992) (-88.13333099999994 65.27832000000012) (-88.10972599999997 65.27804600000002) (-88.09666400000003 65.27499400000005) (-88.06166099999996 65.25888100000003) (-88.02111799999989 65.27470400000004) (-88.01112399999994 65.27832000000012) (-87.97805800000003 65.28359999999998) (-87.943604 65.28610200000008) (-87.73138399999999 65.29026799999997) (-87.67304999999999 65.29136699999992) (-87.60221899999993 65.29054299999996) (-87.35777300000001 65.270828) (-87.21055599999994 65.254166) (-87.07501200000002 65.23664899999994) (-86.95777900000002 65.165817) (-86.94499200000001 65.15693699999997) (-86.936935 65.14776600000005) (-86.93331899999998 65.13804600000014) (-86.96749899999998 65.059418) (-86.9702759999999 65.05442800000009) (-86.97749299999998 65.04887400000013) (-86.99777199999994 65.04081699999995) (-87.04055799999998 65.03109700000005) (-87.11000100000001 64.999146) (-87.43028300000003 64.711929) (-87.52166699999992 64.62109400000008) (-87.57194499999997 64.57360799999998) (-87.57917800000001 64.56805400000002) (-87.58612099999999 64.56275900000014) (-87.59555099999994 64.55720500000012) (-87.69804399999992 64.52720600000009) (-87.76441999999997 64.52090499999991) (-87.78639199999992 64.51998900000001) (-87.79722599999997 64.51805100000007) (-87.80721999999997 64.51443499999999) (-87.85527000000002 64.43942300000009) (-87.85583500000001 64.42942800000014) (-87.86361699999998 64.37970000000001) (-87.8663939999999 64.36970500000012) (-87.98388699999992 64.19108600000004) (-87.99082900000002 64.18580599999996) (-88.11332700000003 64.13610800000004) (-88.12332200000003 64.13360599999999) (-88.28555299999994 64.10636900000003) (-88.55166600000001 64.02554300000008) (-88.553879 64.02053800000004) (-88.67443799999995 63.98026999999996) (-88.68443299999996 63.977486000000056) (-88.73666399999996 63.968323000000055) (-88.75944499999997 63.96943700000003) (-88.99388099999993 63.998604000000114) (-89.07778899999988 64.02609300000012) (-89.11000099999995 64.03804000000008) (-89.12721299999998 64.04664600000001) (-89.15083300000003 64.059418) (-89.18277 64.08137500000004) (-89.19804399999998 64.09471100000002) (-89.202225 64.09942600000005) (-89.20861799999994 64.10887100000008) (-89.210556 64.11831700000005) (-89.210556 64.12330600000001) (-89.21278399999994 64.12803600000007) (-89.22084000000001 64.13720700000005) (-89.24472000000003 64.15498400000007) (-89.25111399999997 64.15942400000012) (-89.26083399999987 64.16053800000009) (-89.28416400000003 64.14193700000004) (-89.28639199999998 64.13665800000007) (-89.18249500000002 64.036652) (-89.09666400000003 63.973877000000016) (-89.06166100000002 63.96082300000012) (-89.05110199999996 63.96193699999992) (-89.04083300000002 63.958602999999925) (-89.02362099999999 63.95027200000004) (-89.02860999999996 63.946098000000006) (-89.03944399999995 63.94499199999996) (-89.05055199999993 63.94499199999996) (-89.24665799999997 63.959717000000126) (-89.25472999999994 63.96305100000012) (-89.32139599999994 63.996658000000025) (-89.39611799999994 64.038589) (-89.50723299999993 64.07054099999999) (-89.55110199999996 64.07748399999997) (-89.55860899999999 64.07388300000014) (-89.56082200000003 64.06887800000004) (-89.56527699999998 64.01914999999997) (-89.56332399999985 64.00943000000007) (-89.55444299999999 64.00027499999999) (-89.54804999999993 63.996101000000124) (-89.53083800000002 63.98777000000007) (-89.51777599999991 63.97887400000013) (-89.48999000000003 63.956657000000064) (-89.48554999999999 63.95193499999999) (-89.48332199999987 63.94721199999998) (-89.48554999999999 63.94221500000009) (-89.49722300000002 63.94304699999998) (-89.52111799999994 63.95582600000006) (-89.52749599999999 63.96027400000003) (-89.577225 63.99554400000005) (-89.585556 64.00443999999999) (-89.58999599999993 64.01416000000006) (-89.59416199999993 64.0186000000001) (-89.637787 64.0494230000001) (-89.64416499999999 64.05386400000003) (-89.69972200000001 64.07638500000002) (-89.712219 64.0794370000001) (-89.71916199999998 64.0747070000001) (-89.72694399999995 64.04748499999994) (-89.785553 64.07693500000005) (-89.81806899999992 64.09860200000008) (-89.82250999999991 64.10331700000012) (-89.82278399999996 64.10803199999998) (-89.82055700000001 64.11331200000001) (-89.80972300000002 64.12886000000003) (-89.80221599999999 64.132477) (-89.78056300000003 64.13443000000012) (-89.75750700000003 64.13360599999999) (-89.74694799999997 64.1355440000001) (-89.73805199999993 64.14027399999992) (-89.73582499999998 64.145264) (-89.75111400000003 64.21804800000012) (-89.75556899999998 64.22747800000002) (-89.76000999999997 64.23220800000007) (-89.773056 64.240814) (-89.78416399999992 64.24470500000007) (-89.79415899999992 64.24192800000014) (-89.80110200000001 64.23748799999993) (-89.80555700000002 64.22720300000003) (-89.80332899999996 64.222488) (-89.80305499999997 64.20277400000009) (-89.81639100000001 64.14804100000009) (-89.823624 64.14444000000003) (-89.84555099999994 64.14276100000001) (-89.87943999999999 64.14248700000007) (-89.89222699999999 64.1455380000001) (-89.90972899999991 64.15859999999992) (-89.92250100000001 64.16137700000002) (-89.96749899999992 64.16137700000002) (-89.98693800000001 64.15971400000012) (-90.12416100000002 64.1285860000001) (-90.11805700000002 64.12525900000014) (-90.10499599999997 64.12136800000007) (-90.05860899999999 64.10971099999995) (-89.95056199999999 64.08692900000005) (-89.94610599999999 64.05748000000006) (-89.90417500000001 64.01582300000001) (-89.86694299999999 63.98971599999993) (-89.8416749999999 63.983879) (-89.83111600000001 63.979988000000105) (-89.82444799999996 63.97554800000006) (-89.82028199999996 63.97109999999992) (-89.81361399999997 63.946938000000046) (-89.81361399999997 63.93721000000005) (-89.81555200000003 63.931938000000116) (-89.82194499999997 63.9263840000001) (-89.82861299999996 63.921104000000014) (-89.83805799999993 63.91721299999995) (-89.93888899999996 63.90971399999995) (-89.95140099999998 63.912491000000045) (-89.989441 63.92193600000013) (-89.99833699999999 63.926102000000014) (-89.99527 63.92916100000002) (-89.97471599999994 63.93305200000009) (-89.964722 63.93582200000009) (-89.95527600000003 63.93971299999998) (-89.94860799999998 63.945267) (-89.94665500000002 63.950546000000145) (-89.94665500000002 63.96027400000003) (-89.94665500000002 63.96527100000009) (-89.94888299999991 63.96998600000012) (-89.95556599999998 63.9741590000001) (-89.968613 63.97804300000013) (-90 63.98404300000004) (-90.18249499999996 64.0086060000001) (-90.19415300000003 64.00943000000007) (-90.249435 64.00749200000013) (-90.27139299999999 64.00637799999993) (-90.27917500000001 64.00360100000006) (-90.27500900000001 63.999161000000015) (-90.26278699999989 63.997214999999926) (-90.22749299999998 63.99443800000006) (-90.21472199999988 63.99082900000002) (-90.19694499999991 63.982491000000095) (-90.11389200000002 63.93082400000009) (-89.97500599999995 63.825829000000056) (-89.96640000000002 63.81693999999999) (-89.96417199999996 63.81193500000012) (-89.96417199999996 63.80221599999993) (-89.96611000000001 63.79222100000004) (-89.96833799999996 63.78221100000013) (-89.97250399999996 63.776657000000114) (-89.981674 63.77304800000013) (-90.05777 63.74443800000006) (-90.08999599999993 63.69887499999999) (-90.14889499999998 63.629158000000075) (-90.15638699999994 63.626656000000025) (-90.20527599999991 63.61221299999994) (-90.23638899999992 63.60721600000005) (-90.25862099999989 63.60721600000005) (-90.42944299999999 63.61582900000002) (-90.46139499999998 63.64054900000008) (-90.468613 63.652309) (-90.48805199999998 63.67249300000009) (-90.50111399999997 63.676383999999985) (-90.61193799999995 63.70249200000012) (-90.62388599999991 63.704162999999994) (-90.63444500000003 63.70304900000002) (-90.64416499999993 63.7002720000001) (-90.70140099999998 63.662209000000075) (-90.69915799999995 63.65749400000004) (-90.68666099999996 63.65470900000014) (-90.67777999999993 63.65443399999998) (-90.65556300000003 63.65470900000014) (-90.62361099999998 63.657767999999976) (-90.61389199999991 63.66054500000001) (-90.60972599999991 63.6658250000001) (-90.61000100000001 63.67582700000008) (-90.60278299999999 63.67943600000007) (-90.59028599999999 63.67665899999997) (-90.55972300000002 63.65971400000001) (-90.55555699999996 63.65526600000004) (-90.55332900000002 63.650543000000084) (-90.54138199999994 63.61721000000006) (-90.54138199999994 63.61221299999994) (-90.54527300000001 63.606941000000006) (-90.55139199999996 63.601387000000045) (-90.56082200000003 63.597488) (-90.57112099999995 63.59554300000002) (-90.73388699999992 63.57388300000002) (-90.82806399999998 63.56166100000007) (-90.84944200000001 63.55971499999998) (-90.93055699999996 63.56415600000008) (-90.94276399999995 63.56666600000011) (-90.978882 63.576103000000046) (-90.98944099999994 63.57999400000011) (-91.03500399999996 63.5991590000001) (-91.13778699999989 63.630821000000026) (-91.158051 63.63555100000008) (-91.18859900000001 63.62943300000012) (-91.19888300000002 63.628601) (-91.21028100000001 63.628326000000015) (-91.23332199999999 63.62999000000002) (-91.37582399999997 63.65915700000011) (-91.39973399999997 63.66666400000008) (-91.40638699999994 63.67110400000007) (-91.40666199999998 63.67610200000007) (-91.40278599999999 63.681381000000044) (-91.39361600000001 63.68526500000007) (-91.37138400000003 63.685546999999985) (-91.34973100000002 63.677772999999945) (-91.33694500000001 63.67527000000001) (-91.329453 63.677772999999945) (-91.33389299999999 63.68249500000002) (-91.34056099999998 63.68665299999998) (-91.34944200000001 63.69082600000013) (-91.362503 63.69443500000011) (-91.41166699999991 63.70721400000002) (-91.52917499999995 63.72998799999999) (-91.54055800000003 63.73082000000005) (-91.55139200000002 63.72971300000012) (-91.56082199999992 63.726653999999996) (-91.569458 63.721930999999984) (-91.57556199999993 63.716385000000116) (-91.58416699999998 63.71138000000008) (-91.59555099999989 63.71138000000008) (-91.91055299999994 63.74054699999999) (-92.06639100000001 63.74193600000001) (-92.13612399999994 63.74554400000011) (-92.14862099999999 63.7480470000001) (-92.175003 63.75527199999999) (-92.18611099999998 63.75888800000001) (-92.43443300000001 63.804993000000024) (-92.48277299999995 63.81193500000012) (-92.47166400000003 63.80832700000002) (-92.43777499999993 63.79222100000004) (-92.42832899999996 63.783051) (-92.42555199999998 63.77860300000003) (-92.42250099999995 63.748878000000104) (-92.41583299999996 63.744713000000104) (-92.40666199999993 63.74054699999999) (-92.39555399999995 63.73693800000001) (-92.38276699999994 63.734161000000086) (-92.34889199999992 63.73387900000006) (-92.30638099999993 63.738602000000014) (-92.26306199999993 63.74137900000011) (-92.25111399999997 63.74054699999999) (-92.148056 63.716934000000094) (-92.10388199999994 63.701660000000004) (-92.10166900000002 63.6969380000001) (-92.10555999999997 63.69165800000002) (-92.20417799999996 63.63804600000009) (-92.25250199999999 63.62387800000005) (-92.26251200000002 63.62193300000007) (-92.38500999999991 63.59249100000011) (-92.48971599999993 63.56721500000003) (-92.49305699999996 63.540832999999964) (-92.48083500000001 63.52721400000007) (-92.42916899999994 63.54694400000005) (-92.33639499999987 63.55693800000006) (-92.27999899999998 63.55609900000013) (-92.20666499999993 63.60610200000008) (-92.20278899999988 63.611381999999935) (-92.19387799999993 63.615273) (-92.16528299999999 63.62443500000012) (-91.971115 63.67999300000014) (-91.83029199999993 63.71221200000002) (-91.82000699999998 63.714157) (-91.80943299999996 63.71527100000014) (-91.77610799999997 63.715828000000045) (-91.76333599999998 63.713325999999995) (-91.69526699999994 63.690544000000045) (-91.670837 63.67804700000005) (-91.61749299999991 63.64888000000013) (-91.61305199999993 63.644440000000145) (-91.61138899999997 63.63916000000006) (-91.61250299999989 63.629158000000075) (-91.61805699999996 63.613609) (-91.61721799999992 63.603882000000056) (-91.60749800000002 63.584991) (-91.60082999999997 63.580551000000014) (-91.39805599999994 63.52499400000005) (-91.27417000000003 63.502495000000124) (-91.13305699999995 63.478043000000014) (-90.94554099999993 63.440269000000114) (-90.85472099999998 63.40860000000009) (-90.91555799999992 63.41054500000007) (-90.93277 63.41860200000008) (-90.94554099999993 63.422493000000145) (-90.95695499999994 63.423325000000034) (-90.96833799999996 63.423050000000046) (-90.97500600000001 63.419441000000006) (-90.97277799999995 63.41471100000001) (-90.95750399999997 63.40138200000007) (-90.94221499999998 63.393051000000014) (-90.93138099999993 63.38916000000012) (-90.91888399999993 63.38638300000002) (-90.816666 63.36915600000003) (-90.74194299999999 63.36082500000009) (-90.69082599999996 63.228324999999984) (-90.62748699999997 63.05943300000001) (-90.64916999999991 63.03638500000011) (-90.73999000000003 62.962212000000136) (-90.77583299999998 62.941933000000006) (-90.78500400000001 62.93804199999994) (-90.79499800000002 62.936104) (-90.82583599999992 62.93305200000009) (-90.847778 62.932770000000005) (-90.87027 62.934433000000126) (-90.92944299999999 62.94443500000011) (-90.94055199999997 62.945267) (-91.01722699999993 62.946380999999974) (-91.03832999999992 62.94415300000003) (-91.04804999999999 62.94221500000009) (-91.17304999999999 62.908600000000035) (-91.18249499999996 62.90582300000011) (-91.19082599999996 62.900825999999995) (-91.19665499999996 62.89527100000009) (-91.20056199999993 62.88999200000012) (-91.1997219999999 62.87027000000006) (-91.20722999999998 62.8597180000001) (-91.21333300000003 62.85416400000008) (-91.35638399999999 62.78860500000002) (-91.36665299999993 62.787498000000085) (-91.44027699999987 62.78276800000003) (-91.46166999999997 62.7824940000001) (-91.57917800000001 62.79999500000008) (-91.84028599999994 62.82638500000007) (-91.99027999999998 62.84693900000002) (-92.0875089999999 62.81888600000008) (-92.214722 62.82471500000008) (-92.223053 62.82888000000008) (-92.23611499999993 62.83221400000008) (-92.33999599999999 62.843605000000025) (-92.36193799999995 62.844154) (-92.38276699999994 62.84166000000005) (-92.39250199999992 62.83971399999996) (-92.402222 62.83749399999999) (-92.42083699999995 62.83138300000007) (-92.43832399999997 62.82360799999998) (-92.45527599999997 62.81471299999998) (-92.45944199999997 62.810272000000055) (-92.458618 62.80027000000007) (-92.45584100000002 62.79583000000008) (-92.45140099999992 62.79110700000007) (-92.33361799999994 62.709991000000116) (-92.23277300000001 62.67304999999999) (-92.18859899999995 62.65915699999999) (-92.17832900000002 62.65638000000007) (-92.06777999999997 62.65165700000006) (-92.03472899999986 62.65026899999998) (-91.97138999999993 62.65332000000001) (-91.94888300000002 62.6519320000001) (-91.92582700000003 62.644440000000145) (-91.908615 62.63638300000002) (-91.88276699999994 62.624161000000015) (-91.88055400000002 62.61943800000006) (-91.883331 62.60443899999996) (-91.88500999999991 62.5991590000001) (-91.890289 62.58860000000004) (-91.94137599999999 62.534996000000035) (-91.94804399999998 62.53138000000001) (-92.05332899999996 62.526657) (-92.15306099999992 62.59804500000013) (-92.16332999999997 62.60082999999997) (-92.18611099999998 62.603324999999984) (-92.19665500000002 62.603049999999996) (-92.26611299999996 62.59526800000003) (-92.27500900000001 62.591377000000136) (-92.27139999999997 62.578049000000135) (-92.27555799999993 62.56027200000011) (-92.32556199999999 62.54083300000002) (-92.365005 62.533332999999914) (-92.38473499999998 62.529990999999995) (-92.396118 62.53082300000011) (-92.43083199999995 62.53582799999998) (-92.46806299999997 62.54444100000012) (-92.53916900000002 62.532493999999986) (-92.60611 62.46499600000004) (-92.61776700000001 62.46666000000005) (-92.71000699999996 62.46582799999993) (-92.72610500000002 62.44415300000014) (-92.72972099999998 62.438599000000124) (-92.73110999999994 62.433601000000124) (-92.73083499999996 62.428604000000064) (-92.724716 62.358604000000014) (-92.714722 62.34388000000001) (-92.66583300000002 62.33277100000009) (-92.62805200000003 62.322220000000016) (-92.60665899999992 62.31471300000004) (-92.59805299999994 62.31082199999997) (-92.5850069999999 62.302216000000044) (-92.58444199999997 62.29749300000009) (-92.58583099999987 62.292220999999984) (-92.60166899999996 62.26554900000008) (-92.610275 62.26138299999997) (-92.60399599999994 62.23632400000014) (-92.57305899999994 62.196098000000006) (-92.56861900000001 62.19165799999996) (-92.56193499999995 62.18749200000008) (-92.53666699999997 62.17555199999998) (-92.48638899999997 62.16137700000007) (-92.47805799999992 62.157493999999986) (-92.47001599999993 62.146614) (-92.47778299999999 62.14388300000002) (-92.48721299999994 62.14415700000012) (-92.59222399999999 62.154990999999995) (-92.60388199999994 62.156379999999956) (-92.62582399999991 62.19165799999996) (-92.64044199999995 62.209098999999924) (-92.63843500000002 62.21227300000004) (-92.63827500000002 62.215103000000056) (-92.63993800000003 62.21777000000009) (-92.70056199999999 62.26554900000008) (-92.7411039999999 62.28694200000001) (-92.74749800000001 62.28999300000004) (-92.845551 62.30943300000001) (-93.07556199999999 62.33221400000002) (-93.12222300000002 62.334991000000116) (-92.90417499999995 62.26221500000008) (-92.89222699999999 62.25972000000007) (-92.86639399999996 62.26305400000007) (-92.83999599999999 62.260276999999974) (-92.8286129999999 62.25721700000008) (-92.78028899999987 62.23693800000012) (-92.765289 62.22443400000009) (-92.76472499999994 62.21943700000003) (-92.79028299999999 62.17748999999992) (-92.79583699999995 62.17276800000002) (-92.80096399999996 62.172905000000014) (-92.84028599999999 62.17443800000001) (-92.85194399999995 62.17582700000003) (-92.862503 62.17943600000001) (-92.954453 62.19276400000001) (-93.06806899999998 62.17499500000008) (-93.07667499999991 62.17193600000013) (-93.11000099999995 62.15665400000012) (-93.114441 62.15415999999999) (-93.11972000000003 62.148330999999985) (-93.12693799999988 62.13249200000001) (-93.12416099999996 62.128044000000045) (-93.11944599999993 62.12360400000006) (-93.08138999999994 62.10443900000007) (-93.06916799999988 62.10360700000001) (-93.0597229999999 62.10582699999998) (-93.03750600000001 62.12165800000014) (-93.028885 62.12471000000005) (-93.01916499999999 62.12609900000007) (-93.00805700000001 62.125549000000035) (-92.94055200000003 62.11554700000005) (-92.93306000000001 62.11360900000011) (-92.93055700000002 62.10916099999997) (-92.93138099999999 62.10416400000008) (-92.936935 62.09915900000004) (-92.96833800000002 62.07721700000013) (-92.991104 62.067772000000105) (-93.14083900000003 62.00972000000013) (-93.237213 62.02693899999997) (-93.24638400000003 62.03333300000003) (-93.27749599999987 62.04277000000013) (-93.30277999999993 62.04943800000012) (-93.32528699999995 62.05138400000004) (-93.41139199999998 62.03138000000007) (-93.41305499999999 62.025551000000064) (-93.39416499999993 62.01361099999997) (-93.385559 62.00999500000012) (-93.37361099999998 62.00750000000011) (-93.36193799999995 62.00610400000005) (-93.34222399999993 62.00499700000012) (-93.318893 61.9980470000001) (-93.24444599999998 61.96943700000003) (-93.23554999999999 61.96554599999996) (-93.22222899999991 61.95749699999999) (-93.21833800000002 61.95249200000012) (-93.21722399999999 61.94776900000011) (-93.28195199999988 61.89138000000008) (-93.29972800000002 61.885826000000066) (-93.30915799999991 61.88360600000004) (-93.33056599999992 61.88638300000014) (-93.44248999999996 61.915268000000026) (-93.46167000000003 61.92249300000009) (-93.616104 61.939986999999974) (-93.60028099999994 61.879158000000075) (-93.61721799999998 61.86193800000012) (-93.55694599999998 61.84777100000014) (-93.43582199999997 61.80888399999998) (-93.28277600000001 61.7888870000001) (-93.24861099999998 61.78472099999999) (-93.23777799999993 61.77721400000007) (-93.24249299999997 61.767494) (-93.25556899999998 61.74249300000014) (-93.35694899999999 61.70721400000002) (-93.44943199999994 61.68221300000005) (-93.54276999999996 61.663321999999994) (-93.59416199999993 61.648048000000074) (-93.65499899999986 61.62915800000013) (-93.85665899999998 61.54916400000013) (-93.98472600000002 61.456100000000106) (-93.985275 61.45416300000005) (-93.968613 61.396660000000054) (-93.93249500000002 61.38721499999997) (-93.9219359999999 61.38526900000011) (-93.91166699999997 61.38582600000001) (-93.906387 61.38749700000005) (-93.89500399999997 61.389160000000004) (-93.88473499999986 61.389717000000076) (-93.86805699999996 61.389160000000004) (-93.85749800000002 61.385551000000135) (-93.82028199999996 61.35582699999998) (-93.81750499999998 61.35138699999993) (-93.81916799999999 61.34721400000001) (-93.839447 61.31944300000009) (-93.84445199999999 61.316101) (-93.85804699999994 61.31276700000001) (-93.93222000000003 61.29666100000003) (-93.94055200000003 61.29499800000008) (-94.05721999999997 61.178329000000076) (-94.14805599999994 61.04361000000006) (-94.22694399999995 60.94276400000007) (-94.34916699999991 60.85860399999996) (-94.35333300000002 60.85360700000007) (-94.3911129999999 60.79888200000005) (-94.41528299999999 60.762215000000026) (-94.415009 60.756660000000124) (-94.45167499999997 60.67110400000013) (-94.50500499999998 60.54999500000014) (-94.50944499999997 60.54415900000009) (-94.56304899999998 60.52221700000001) (-94.57583599999998 60.52027099999998) (-94.61138900000003 60.52777100000003) (-94.67332499999992 60.522490999999945) (-94.67166099999992 60.46610300000003) (-94.62943999999999 60.41832700000009) (-94.62638899999996 60.41360500000002) (-94.61471599999987 60.38999200000012) (-94.61389199999991 60.380547000000035) (-94.615005 60.37526699999995) (-94.620834 60.363883999999985) (-94.68194599999993 60.22415899999993) (-94.67361499999993 60.19110100000012) (-94.70472699999993 60.09193399999998) (-94.70750399999997 60.083603000000096) (-94.71139499999992 60.07833099999999) (-94.71472199999994 60.07527200000004) (-94.72833300000002 60.071380999999974) (-94.74665800000002 60.06999200000013) (-94.75279199999994 60.06860400000005) (-94.76640299999991 60.061378000000104) (-94.77111799999994 60.05554999999998) (-94.803879 60.008331) (-94.803879 60.0036090000001) (-94.80043 59.99956500000013) (-94.81916799999999 59.96471400000013) (-94.82167099999992 59.95916000000011) (-94.82250999999991 59.954162999999994) (-94.82055699999995 59.944435) (-94.80332900000002 59.877768999999944) (-94.80332900000002 59.711104999999975) (-94.81916799999999 59.63638300000008) (-94.78860500000002 59.51527400000009) (-94.735275 59.4263840000001) (-94.68055700000002 59.357215999999994) (-94.71528599999999 59.323326000000066) (-94.77000399999997 59.29833200000013) (-94.77500900000001 59.29332700000009) (-94.781387 59.263611000000026) (-94.78222700000003 59.25833100000011) (-94.78971899999999 59.092216000000064) (-94.681671 58.97582200000011) (-94.67999299999997 58.97137500000008) (-94.67639200000002 58.93443300000007) (-94.59777799999995 58.87832600000007) (-94.58639499999987 58.87499200000008) (-94.48693800000001 58.81526900000006) (-94.48222399999997 58.81110400000006) (-94.47778299999993 58.80665600000009) (-94.474716 58.802216000000044) (-94.45750399999991 58.77416200000005) (-94.45333899999991 58.76527400000003) (-94.45278899999988 58.759720000000016) (-94.45333899999991 58.75054900000009) (-94.44860799999998 58.736382000000106) (-94.44610599999999 58.73165899999998) (-94.43720999999988 58.72304500000007) (-94.42166099999997 58.71638500000006) (-94.410553 58.714157000000114) (-94.36138899999997 58.71276900000004) (-94.343613 58.715546000000074) (-94.32695000000001 58.72165699999999) (-94.29110700000001 58.743607) (-94.27917500000001 58.77110300000004) (-94.228882 58.78499600000009) (-94.23472599999997 58.714714000000015) (-94.252228 58.64999400000005) (-94.28527799999989 58.512496999999996) (-94.287216 58.438041999999996) (-94.28916899999996 58.427773000000116) (-94.291672 58.42221800000004) (-94.29666099999997 58.4158250000001) (-94.32640099999998 58.34915900000004) (-94.34861799999999 58.2866590000001) (-94.3516689999999 58.27665699999994) (-94.36389200000002 58.22387700000013) (-94.36332700000003 58.21888000000001) (-94.360275 58.220543000000134) (-94.3558349999999 58.226097000000095) (-94.25944500000003 58.35138699999999) (-94.23111 58.39054900000002) (-94.22860699999995 58.39610300000004) (-94.22694399999995 58.40638000000001) (-94.23111 58.43082400000014) (-94.23889199999996 58.494155999999975) (-94.24610899999999 58.576385000000016) (-94.24610899999999 58.58665499999995) (-94.24526999999995 58.59165999999999) (-94.24276699999996 58.59721400000001) (-94.14388999999994 58.76361099999991) (-94.11389200000002 58.76221500000008) (-93.99583399999995 58.760826000000066) (-93.94915800000001 58.76249700000011) (-93.84388699999994 58.767769000000044) (-93.79861499999993 58.77360499999992) (-93.72805800000003 58.78388200000012) (-93.70973200000003 58.78582799999998) (-93.67304999999993 58.78082300000011) (-93.57556199999999 58.763885000000016) (-93.47555499999999 58.73249100000004) (-93.35055499999993 58.74582700000002) (-93.34388699999988 58.75083200000006) (-93.327789 58.75721700000008) (-93.31916799999999 58.75860600000004) (-93.23666400000002 58.766936999999984) (-93.21665999999993 58.76416000000006) (-93.19638099999997 58.758331000000055) (-93.15556299999997 58.740273) (-93.15222199999994 58.73777000000001) (-93.14111299999996 58.691933000000006) (-93.13972499999988 58.653876999999966) (-93.12693799999988 58.53249400000004) (-93.12609900000001 58.52777100000009) (-93.11805700000002 58.50888800000001) (-93.09527600000001 58.46720900000008) (-93.03527799999995 58.37082700000002) (-92.96472199999994 58.261108000000036) (-92.93110699999994 58.21166199999999) (-92.86888099999993 58.14305099999996) (-92.8116609999999 58.07166300000006) (-92.80332900000002 58.057213000000104) (-92.79998799999998 58.0422210000001) (-92.80555700000002 58.01194000000004) (-92.80555700000002 58.00638600000002) (-92.80471799999998 57.997490000000084) (-92.79527300000001 57.96888000000007) (-92.75361599999997 57.85083000000003) (-92.724716 57.801383999999985) (-92.67250100000001 57.733047000000056) (-92.62110899999988 57.67054700000011) (-92.45083599999998 57.442490000000134) (-92.44638099999997 57.43305199999992) (-92.41888399999999 57.33749399999999) (-92.41833499999996 57.3324970000001) (-92.41888399999999 57.32332600000012) (-92.42721599999999 57.263053999999954) (-92.43028300000003 57.25222000000008) (-92.441101 57.23054500000012) (-92.5494379999999 57.08554799999996) (-92.56388900000002 57.068885999999964) (-92.57640099999998 57.056938000000116) (-92.695267 56.96166200000005) (-92.70861799999989 56.95166000000012) (-92.71583599999997 56.94748700000014) (-92.72332799999992 56.944435000000055) (-92.73832699999997 56.94110100000006) (-92.77139299999993 56.93804200000011) (-92.837219 56.92443800000001) (-92.86805699999996 56.91415399999994) (-92.87721299999993 56.90915700000005) (-92.87609899999995 56.9074940000001) (-92.86833200000001 56.90665400000006) (-92.85055499999993 56.90721100000013) (-92.83168 56.90859999999998) (-92.79055799999998 56.91387900000012) (-92.756958 56.918602000000135) (-92.73138399999999 56.922492999999974) (-92.691101 56.93360100000001) (-92.66027799999995 56.945266999999944) (-92.65222199999988 56.94915800000001) (-92.61721799999998 56.96888000000007) (-92.61000099999995 56.974709000000075) (-92.5891719999999 56.986382000000106) (-92.55277999999998 57.004714999999976) (-92.51445000000001 57.02360499999992) (-92.49221799999992 57.032493999999986) (-92.475281 57.03749800000014) (-92.44305400000002 57.044715999999994) (-92.40055799999999 57.052216000000044) (-92.37609899999995 57.056381000000044) (-92.25361599999997 57.065544000000045) (-92.23554999999999 57.06610100000012) (-92.22610500000002 57.065544000000045) (-92.21722399999999 57.063049000000035) (-92.21221899999995 57.058043999999995) (-92.21893299999999 57.052779999999984) (-92.33750900000001 56.981377000000066) (-92.34472700000003 56.977486) (-92.35221899999999 56.97415900000004) (-92.36833200000001 56.969711000000075) (-92.38555899999994 56.967209000000025) (-92.394455 56.96693399999998) (-92.41861 56.96193700000009) (-92.43222000000003 56.955826) (-92.46945199999999 56.93498999999997) (-92.46639999999996 56.93249500000013) (-92.375 56.94971499999991) (-92.30305499999997 56.96749100000011) (-92.28721599999994 56.97443400000009) (-92.281113 56.978874000000076) (-92.26861600000001 56.99082900000002) (-92.26194799999996 56.99582700000002) (-92.235275 57.012771999999984) (-92.22027600000001 57.01888300000002) (-92.204453 57.02416199999999) (-92.18028299999997 57.03082300000011) (-92.15527299999991 57.036658999999986) (-92.14666699999998 57.03777299999996) (-92.12916599999994 57.03943600000008) (-92.09306299999997 57.04083300000002) (-92.05776999999989 57.04388400000005) (-92.031677 57.04666099999997) (-91.987503 57.05248999999998) (-91.952225 57.05721299999999) (-91.828888 57.087211999999965) (-91.77999899999998 57.10027300000013) (-91.241104 57.22221400000001) (-91.15583799999996 57.23998999999998) (-91.08944699999995 57.25110600000011) (-91.05471799999998 57.25610400000011) (-91.03639199999998 57.258049000000085) (-91.00167799999991 57.26138300000008) (-90.99276700000001 57.26138300000008) (-90.83416699999992 57.257217000000026) (-90.81527699999998 57.25582900000012) (-90.795547 57.24971800000003) (-90.77917500000001 57.24332400000014) (-90.758896 57.237769999999955) (-90.73805199999993 57.23249099999998) (-90.71945199999999 57.228043000000014) (-90.70944199999997 57.22637900000001) (-90.56332399999991 57.21221200000008) (-90.45111099999997 57.1938780000001) (-90.408615 57.18166400000007) (-90.39167800000001 57.17610200000013) (-90.38778699999995 57.171378999999945) (-90.31082199999997 57.13499500000012) (-90.22555499999993 57.10443900000001) (-90.02500900000001 57.03138000000001) (-90.00500499999998 57.01915699999995) (-90 57.016369000000054) (-89.99055499999997 57.01110799999992) (-89.97027600000001 57.004166000000055) (-89.83306899999997 56.978324999999984) (-89.71528599999999 56.95721400000008) (-89.52139299999993 56.92943600000001) (-89.43916300000001 56.92388199999999) (-89.13294199999996 56.86485299999998) (-89.06806899999998 56.85221900000005) (-89.01528899999994 56.84777100000008) (-88.950287 56.843048000000124) (-88.94261199999994 56.844269000000054) (-88.81500199999999 56.82444000000004) (-88.74276700000001 56.764442000000145) (-88.67193599999996 56.70943500000004) (-88.65472399999993 56.696380999999974) (-88.63999899999999 56.68859900000007) (-88.63137799999998 56.68471500000004) (-88.58416699999992 56.670547) (-88.44055200000003 56.60360700000001) (-88.415009 56.58638000000002) (-88.36582900000002 56.561661000000015) (-88.32417299999997 56.54277000000002) (-88.218887 56.504440000000045) (-88.14944499999996 56.48693800000001) (-88.10305799999998 56.476097000000095) (-88.06973299999993 56.46888000000001) (-88.04888900000003 56.46554600000002) (-88.028885 56.459991000000116) (-88.01861600000001 56.45610000000005) (-87.98277299999995 56.441658000000075) (-87.97555499999993 56.43749199999996) (-87.84111000000001 56.315269) (-87.72389199999998 56.20388000000008) (-87.71916199999993 56.198875000000044) (-87.71501199999994 56.18998700000003) (-87.71556099999998 56.16971600000005) (-87.71389799999997 56.164993000000095) (-87.70805399999995 56.15609699999999) (-87.702789 56.15193199999999) (-87.54861499999993 56.04999500000014) (-87.478882 56.02916000000005) (-87.36888099999999 56.00083200000006) (-87.35194399999989 55.99276700000013) (-87.34527600000001 55.98860200000013) (-87.343613 55.983879) (-87.348343 55.973320000000115) (-87.35527000000002 55.96276900000004) (-87.19833399999999 55.940269) (-87.11000100000001 55.92943600000001) (-87.09167500000001 55.92748999999992) (-87.05722000000003 55.926941) (-87.03167699999995 55.92971800000009) (-86.99694799999997 55.931663999999955) (-86.97944599999994 55.931663999999955) (-86.97000099999997 55.92971800000009) (-86.88194299999992 55.90721100000002) (-86.837784 55.89138000000003) (-86.61694299999999 55.83888200000001) (-86.57278399999996 55.83027600000014) (-86.54444899999999 55.82444000000004) (-86.48666399999996 55.81137800000005) (-86.47778299999993 55.80888400000009) (-86.44860799999998 55.799995000000024) (-86.39862099999999 55.78416400000003) (-86.372772 55.77499399999999) (-86.346115 55.76305400000007) (-86.33277900000002 55.75471500000003) (-86.32194499999997 55.74554400000011) (-86.31527699999998 55.741104000000064) (-86.277222 55.72887399999996) (-86.26777600000003 55.72693600000002) (-85.86721799999998 55.657493999999986) (-85.74082900000002 55.63804600000009) (-85.731674 55.63694000000004) (-85.71444699999995 55.63166000000001) (-85.56945799999994 55.55860100000001) (-85.55665599999998 55.55027000000007) (-85.53222700000003 55.52804599999996) (-85.52583300000003 55.51888299999996) (-85.516663 55.50000000000006) (-85.515015 55.49527000000006) (-85.515289 55.490273000000116) (-85.50917099999998 55.48110200000002) (-85.499435 55.47221400000001) (-85.47416699999991 55.45471199999997) (-85.39334099999996 55.40888199999995) (-85.38362099999995 55.40499100000011) (-85.27223200000003 55.37470999999999) (-85.23472600000002 55.36471599999999) (-85.224716 55.364159000000086) (-85.20861799999994 55.36527300000006) (-85.18221999999997 55.36527300000006) (-85.164444 55.361664000000076) (-85.146118 55.354996000000085) (-85.12887599999999 55.346382000000006) (-85.12388599999986 55.34193400000004) (-85.12193300000001 55.33776900000004) (-85.11665299999993 55.323050999999964) (-85.11639400000001 55.31360600000011) (-85.11833199999995 55.30860100000007) (-85.12193300000001 55.303322000000094) (-85.129166 55.297775000000115) (-85.14416499999999 55.29027600000012) (-85.21528599999994 55.26860000000005) (-85.275284 55.21666000000005) (-85.398056 55.10083000000003) (-85.39999399999994 55.09582499999999) (-85.39750699999996 55.09054600000002) (-85.38362099999995 55.06749700000006) (-85.398056 55.0472180000001) (-85.41944899999999 55.01082600000012) (-85.425003 55.00027499999999) (-85.425003 54.99554400000005) (-85.42388900000003 54.99054699999999) (-85.41444399999995 54.991104000000064) (-85.40750099999997 54.99332400000009) (-85.40028399999994 54.997772000000055) (-85.38612399999994 55.00804900000003) (-85.37054399999994 55.02443700000009) (-85.36694299999999 55.029716000000064) (-85.36250299999989 55.04055000000011) (-85.347778 55.080826000000116) (-85.33555599999994 55.101661999999976) (-85.31834400000002 55.127486999999974) (-85.31304899999998 55.132767) (-85.22027599999996 55.22443400000009) (-85.19415300000003 55.24415599999992) (-85.17971799999998 55.253608999999926) (-85.156113 55.26416000000006) (-85.13999899999999 55.27027099999992) (-85.11665299999993 55.27665700000006) (-85.06806899999998 55.28749800000014) (-85.04388399999988 55.292770000000075) (-85.00195299999996 55.29666099999997) (-84.97471599999994 55.29583000000014) (-84.86944599999998 55.27971600000001) (-84.75140399999998 55.25610399999999) (-84.72361799999993 55.24971800000009) (-84.71278399999994 55.247772) (-84.68804899999992 55.24527000000012) (-84.635559 55.24221799999998) (-84.59916699999991 55.24166100000008) (-84.56639099999995 55.24415599999992) (-84.541382 55.247490000000084) (-84.44471699999986 55.267769000000044) (-84.428879 55.27304800000002) (-84.38861099999997 55.282493999999986) (-84.32278399999996 55.28999299999998) (-84.20695499999994 55.295547) (-84.19860799999998 55.295273000000066) (-84.189438 55.29415900000009) (-84.170837 55.28305100000006) (-84.15943899999996 55.2783280000001) (-84.14917000000003 55.27555100000001) (-84.12222300000002 55.27221700000001) (-84.11389200000002 55.27193499999993) (-84.09222399999999 55.27166000000011) (-84.07611099999997 55.27609999999993) (-84.04998799999993 55.286110000000065) (-84.006393 55.30138399999993) (-83.96888699999988 55.313881000000094) (-83.95167500000002 55.317497) (-83.93249499999996 55.319443000000035) (-83.92027300000001 55.31916000000007) (-83.8975069999999 55.3169400000001) (-83.65838600000001 55.23732400000006) (-83.65439600000002 55.235493000000076) (-83.65173299999992 55.23298599999998) (-83.57028199999996 55.18804200000011) (-83.56722999999994 55.18305200000003) (-83.57000700000003 55.17777300000006) (-83.58555599999994 55.16610000000003) (-83.5916749999999 55.15443400000004) (-83.58972199999994 55.149719000000005) (-83.57444799999996 55.138045999999974) (-83.561935 55.13082099999997) (-83.55665599999992 55.13416300000006) (-83.55665599999992 55.17943600000001) (-83.55860899999993 55.18498999999997) (-83.57950599999987 55.221157000000005) (-83.58805799999993 55.233330000000024) (-83.59388699999994 55.23693800000012) (-83.60082999999986 55.239990000000034) (-83.62083399999995 55.24276700000013) (-83.64389 55.24276700000013) (-83.65444899999994 55.2438810000001) (-83.670837 55.24860400000006) (-83.68443299999996 55.25443999999999) (-83.69610599999999 55.261664999999994) (-83.70611600000001 55.26971400000002) (-83.70889299999999 55.274437000000034) (-83.70611600000001 55.279990999999995) (-83.69860799999998 55.28305100000006) (-83.68888899999996 55.281937000000084) (-83.57417299999986 55.262215000000026) (-83.53332499999993 55.25054900000009) (-83.51945499999994 55.2438810000001) (-83.49888599999991 55.23554999999999) (-83.48944099999994 55.233879000000115) (-83.17971799999987 55.19721199999998) (-83.16860999999994 55.19748700000014) (-83.15028399999994 55.200271999999984) (-83.12805199999997 55.207497000000046) (-83.12027 55.21082300000012) (-83.08972199999994 55.22665400000005) (-83.07444799999996 55.23165899999992) (-83.03750599999995 55.23832700000008) (-83.02917499999995 55.238883999999985) (-83.00639299999995 55.23860200000013) (-82.98500100000001 55.236382000000106) (-82.964722 55.23360400000013) (-82.94860799999987 55.228874000000076) (-82.94166599999994 55.225821999999994) (-82.93055699999996 55.218323) (-82.91332999999986 55.20138500000007) (-82.906113 55.19193299999995) (-82.89695699999999 55.17721599999999) (-82.874435 55.15443400000004) (-82.83833300000003 55.146660000000054) (-82.80999800000001 55.14222000000001) (-82.78611799999999 55.141106000000036) (-82.77528399999994 55.14137999999997) (-82.76556399999987 55.14249399999994) (-82.73971599999993 55.14749100000006) (-82.708618 55.15638000000013) (-82.70083599999998 55.15971400000012) (-82.66972399999997 55.168052999999986) (-82.66111799999993 55.16971600000011) (-82.65028399999989 55.16971600000011) (-82.5083469999999 55.15277100000014) (-82.449432 55.133049000000085) (-82.41250600000001 55.112770000000125) (-82.40972899999997 55.108047) (-82.40083300000003 55.08277100000009) (-82.33555599999994 55.07101400000005) (-82.30749500000002 55.11582900000013) (-82.308044 55.121933000000126) (-82.3094329999999 55.127486999999974) (-82.3125 55.13249200000001) (-82.323624 55.13999200000006) (-82.33721899999995 55.14610299999998) (-82.34527600000001 55.1483310000001) (-82.35555999999997 55.162491000000045) (-82.34999099999987 55.16638200000011) (-82.34056099999998 55.16471100000001) (-82.333618 55.1616590000001) (-82.30776999999995 55.14888000000008) (-82.25418099999996 55.11138200000005) (-82.24583399999995 55.10277600000012) (-82.24499500000002 55.09027100000003) (-82.24694799999986 55.08416000000011) (-82.25334199999998 55.07360800000009) (-82.25778200000002 55.06888600000002) (-82.27362099999993 55.05721299999999) (-82.28222700000003 55.04804999999999) (-82.28527799999995 55.04277000000013) (-82.287216 55.03665900000004) (-82.287216 55.030273000000136) (-82.27084400000001 54.931381000000044) (-82.26722699999999 54.92027300000001) (-82.25527999999991 54.89415700000012) (-82.24694799999986 54.87943300000006) (-82.24137899999994 54.87499199999996) (-82.23194899999999 54.87387799999999) (-82.221115 54.787498000000085) (-82.32084699999996 54.571380999999974) (-82.403885 54.410820000000115) (-82.41915899999998 54.38416300000006) (-82.43167099999994 54.370270000000005) (-82.436935 54.36638599999998) (-82.441101 54.361664000000076) (-82.44166599999994 54.330826000000116) (-82.43415800000002 54.20943500000004) (-82.42166099999997 54.19721199999998) (-82.38999899999999 54.16832700000009) (-82.36277799999988 54.14360799999997) (-82.30139200000002 54.10305000000005) (-82.28388999999999 54.09249100000005) (-82.25334199999998 54.07610299999999) (-82.24804699999993 54.072220000000016) (-82.24388099999993 54.06805400000013) (-82.23832700000003 54.057495000000074) (-82.160278 53.89888000000013) (-82.13194299999998 53.817772000000105) (-82.13055399999996 53.793052999999986) (-82.12971500000003 53.77443699999998) (-82.13055399999996 53.767494) (-82.13667299999992 53.74916100000013) (-82.14889499999998 53.727768000000026) (-82.18998699999992 53.67416400000002) (-82.19415299999991 53.669441000000006) (-82.20306399999993 53.65332000000001) (-82.20834400000001 53.641936999999984) (-82.212784 53.622765000000015) (-82.21665999999999 53.60388200000011) (-82.21194499999996 53.536110000000065) (-82.208618 53.524994000000106) (-82.19888300000002 53.504714999999976) (-82.19055200000003 53.4897160000001) (-82.17250099999995 53.460548000000074) (-82.16555800000003 53.45138500000007) (-82.158615 53.44221500000003) (-82.14778100000001 53.421661000000086) (-82.13806199999999 53.38888500000013) (-82.12582399999997 53.34415400000012) (-82.11944599999998 53.31582600000013) (-82.11582900000002 53.29833200000007) (-82.11389199999991 53.28665900000004) (-82.11389199999991 53.280273000000136) (-82.11471599999987 53.273604999999975) (-82.11776699999996 53.26805099999996) (-82.12193299999996 53.26361099999997) (-82.14138799999995 53.25471500000003) (-82.21055599999994 53.22026800000003) (-82.24833699999994 53.193877999999984) (-82.26945499999994 53.16387900000001) (-82.27555799999999 53.15332000000012) (-82.27944899999994 53.14110600000009) (-82.30027799999993 53.060272) (-82.30139200000002 53.05332199999998) (-82.30166600000001 53.04166399999997) (-82.29666099999997 53.01859999999999) (-82.27389499999998 52.95638300000002) (-82.26139799999999 52.93721000000011) (-82.25750699999998 52.93277000000006) (-82.23582499999998 52.92416400000013) (-82.19638099999997 52.91332199999994) (-82.136124 52.89471400000008) (-82.120544 52.88971700000013) (-82.10166900000002 52.87999000000002) (-82.05055199999998 52.84304800000001) (-82.02583300000003 52.82388300000002) (-82.00111399999997 52.804710000000114) (-81.97778299999993 52.784996000000035) (-81.97361799999993 52.78054800000007) (-81.95140100000003 52.736938000000066) (-81.733612 52.54999500000014) (-81.71916199999998 52.53833000000009) (-81.71417200000002 52.53472100000005) (-81.69749499999995 52.52416200000005) (-81.63917500000002 52.490547000000106) (-81.62138400000003 52.480819999999994) (-81.60749799999996 52.475265999999976) (-81.577225 52.46527100000009) (-81.56945799999994 52.462212000000136) (-81.55804399999994 52.456099999999935) (-81.55416899999989 52.45166000000012) (-81.55139199999996 52.44665500000008) (-81.54998799999998 52.44110100000006) (-81.54249600000003 52.33888200000001) (-81.56138599999997 52.31638300000009) (-81.66305499999999 52.292220999999984) (-81.82250999999991 52.254440000000045) (-81.85082999999992 52.24499500000013) (-81.86305199999998 52.23888400000004) (-81.86582900000002 52.23333000000008) (-81.88362099999995 52.187492000000134) (-81.8741609999999 52.18832400000002) (-81.841949 52.19499200000001) (-81.82695000000001 52.19887499999993) (-81.80555700000002 52.20609999999999) (-81.795547 52.213882000000126) (-81.79249599999997 52.21915400000006) (-81.78860500000002 52.22387700000007) (-81.77944899999994 52.23220800000013) (-81.765015 52.23777000000007) (-81.75834699999996 52.23943300000002) (-81.74888599999997 52.24027300000006) (-81.71888699999988 52.240829000000076) (-81.55499299999985 52.23749500000008) (-81.52139299999993 52.23582500000009) (-81.50167799999997 52.23333000000008) (-81.47888199999994 52.22582200000005) (-81.472778 52.221930999999984) (-81.46000699999996 52.21027400000003) (-81.44360399999994 52.19276400000007) (-81.44055200000003 52.18859900000007) (-81.43443299999996 52.17916100000002) (-81.431671 52.17416400000013) (-81.43055700000002 52.16805300000004) (-81.41833500000001 52.149437000000034) (-81.41444399999995 52.14499699999999) (-81.40583800000002 52.13694000000004) (-81.36527999999998 52.10721600000005) (-81.35278299999999 52.10110500000013) (-81.337784 52.09610000000009) (-81.31054699999999 52.091102999999976) (-81.29083299999996 52.088599999999985) (-81.264725 52.08277099999998) (-81.21250900000001 52.06554399999999) (-81.18611099999987 52.053604000000064) (-81.16749600000003 52.04415899999998) (-81.11805700000002 52.04554700000011) (-80.99444599999993 52.01138300000008) (-80.98832700000003 52.008049000000085) (-80.97833300000002 52.000832) (-80.97444200000001 51.996384000000035) (-80.97305299999994 51.99082900000013) (-80.972778 51.9783250000001) (-80.92999299999997 51.92416399999996) (-80.91860999999994 51.91027100000014) (-80.89999399999994 51.89527099999998) (-80.89472999999998 51.89166300000005) (-80.80972300000002 51.857498000000135) (-80.69860799999998 51.79471599999994) (-80.61527999999993 51.73027000000013) (-80.610275 51.726379000000065) (-80.58917199999996 51.69971500000008) (-80.58917199999996 51.693321000000026) (-80.59028599999988 51.68665300000009) (-80.58999599999993 51.67416400000002) (-80.58612099999988 51.66360500000002) (-80.57888799999995 51.64860500000003) (-80.571396 51.633605999999986) (-80.515015 51.524437000000034) (-80.50750699999998 51.515830999999935) (-80.497772 51.508331000000055) (-80.46221899999989 51.48860199999996) (-80.45722999999992 51.484993000000145) (-80.44248999999996 51.47360200000003) (-80.43888900000002 51.46915400000006) (-80.43638599999986 51.464157000000114) (-80.43499800000001 51.458602999999925) (-80.42443800000001 51.36360899999994) (-80.42639200000002 51.35888700000004) (-80.43055700000002 51.35416400000008) (-80.44248999999996 51.34804500000007) (-80.47166400000003 51.33971400000013) (-80.50279199999994 51.331940000000145) (-80.54055800000003 51.323326000000066) (-80.56861900000001 51.314156000000025) (-80.65249599999999 51.27832799999999) (-80.69193999999999 51.24749000000003) (-80.70695499999994 51.2355500000001) (-80.83168 51.15582299999994) (-80.95249899999999 51.07972000000001) (-80.95944199999997 51.07749200000006) (-80.96528599999999 51.074440000000095) (-80.98111 51.06360600000005) (-80.9949949999999 51.0513840000001) (-81.00418100000002 51.043052999999986) (-81.01222200000001 51.03388200000006) (-81.015015 51.028328000000045) (-81.00527999999991 51.02860300000009) (-80.92805499999992 51.04583000000008) (-80.88833599999992 51.08277100000004) (-80.87527499999999 51.103324999999984) (-80.86221299999988 51.11610400000001) (-80.850281 51.12248999999997) (-80.83528099999995 51.12693800000011) (-80.82055700000001 51.130272000000105) (-80.79361 51.132767000000115) (-80.76501499999995 51.13360600000004) (-80.74804699999999 51.13665800000001) (-80.74082900000002 51.13888500000007) (-80.69444299999998 51.156097000000045) (-80.68859900000001 51.15915700000011) (-80.61000099999995 51.214157) (-80.56777999999997 51.25833100000011) (-80.56277499999999 51.26221499999997) (-80.541382 51.276657000000114) (-80.53056300000003 51.28360699999996) (-80.51251200000002 51.29276999999996) (-80.48028599999986 51.30721300000005) (-80.414444 51.332497000000046) (-80.40028399999989 51.33721200000008) (-80.39222699999999 51.338599999999985) (-80.37165800000002 51.33665500000001) (-80.33029199999999 51.32638500000007) (-80.21972700000003 51.30165900000003) (-80.19055199999997 51.297493000000145) (-80.1299899999999 51.297775) (-80.12027 51.296387000000095) (-80.01695299999994 51.263054000000125) (-79.99638399999992 51.25471500000009) (-79.80027799999999 51.156097000000045) (-79.78805499999993 51.14971900000012) (-79.741104 51.123604000000114) (-79.73638900000003 51.11971300000005) (-79.72917199999995 51.110825000000034) (-79.71651500000002 51.08171500000003) (-79.68510399999997 51.045361000000014) (-79.61277799999999 51.008049000000085) (-79.53761299999991 50.95839700000005) (-79.51972999999998 50.929993000000024) (-79.51611300000002 50.92638400000004) (-79.46610999999996 50.889434999999935) (-79.45056199999988 50.87860100000006) (-79.43859900000001 50.87221499999998) (-79.41500899999994 50.846939000000134) (-79.41139199999998 50.842490999999995) (-79.35278299999993 50.74832900000007) (-79.35028099999994 50.73693800000012) (-79.348053 50.73193400000014) (-79.34361299999989 50.728324999999984) (-79.33750900000001 50.72499099999999) (-79.33222999999998 50.723877000000016) (-79.33000199999992 50.758331000000055) (-79.33000199999992 50.76444200000009) (-79.33222999999998 50.77582600000005) (-79.42083699999995 50.87971500000003) (-79.43998699999992 50.8949970000001) (-79.464722 50.913321999999994) (-79.515015 50.95665699999995) (-79.537354 50.98376500000006) (-79.571121 51.00277699999998) (-79.66000400000001 51.04527300000001) (-79.67304999999988 51.05082700000003) (-79.67805499999992 51.054710000000114) (-79.69833399999993 51.07555400000007) (-79.70527600000003 51.08443500000004) (-79.749435 51.16832699999998) (-79.75195299999996 51.178878999999995) (-79.75222799999989 51.18443300000001) (-79.75111399999997 51.19748700000008) (-79.745544 51.208885000000066) (-79.74249299999997 51.214157) (-79.720551 51.243607000000054) (-79.70388799999995 51.26166500000011) (-79.69943199999994 51.26693700000004) (-79.68888899999996 51.28193700000003) (-79.68249500000002 51.29249600000003) (-79.68055699999991 51.298050000000046) (-79.67944299999999 51.30471000000006) (-79.66860999999994 51.39860500000009) (-79.59388699999994 51.44915800000007) (-79.58167999999995 51.45526899999999) (-79.5747219999999 51.4574970000001) (-79.54710399999988 51.46012900000011) (-79.53361499999994 51.50499700000006) (-79.47416699999997 51.579162999999994) (-79.37638900000002 51.64249400000011) (-79.353882 51.65609699999999) (-79.33168 51.66193399999992) (-79.32223499999998 51.66276600000003) (-79.23971599999999 51.63499499999995) (-79.23611499999993 51.63082099999991) (-79.23500099999995 51.62499200000008) (-79.23721299999994 51.61915600000003) (-79.25195299999996 51.60694100000012) (-79.275284 51.57777399999998) (-79.28527799999995 51.562492000000134) (-79.28527799999995 51.5563810000001) (-79.274719 51.530548000000124) (-79.271118 51.525551000000064) (-79.26722699999993 51.52166) (-79.20249899999999 51.51888300000007) (-79.18331899999998 51.51971400000008) (-79.17527799999993 51.521103000000096) (-79.16111799999993 51.525551000000064) (-79.15499899999998 51.528602999999976) (-79.14445499999994 51.536110000000065) (-79.13751200000002 51.53833000000009) (-79.12748699999986 51.538048) (-79.12027 51.53555299999999) (-79.02444500000001 51.47637900000012) (-79.02055399999995 51.473320000000115) (-79.01222199999995 51.4649960000001) (-79.00500499999993 51.44999700000005) (-78.96333299999998 51.3533250000001) (-78.95028699999995 51.29222100000004) (-78.95527600000003 51.25666000000007) (-78.95944199999991 51.25222000000002) (-78.96278399999994 51.24694100000005) (-78.96278399999994 51.24054699999999) (-78.95834400000001 51.23054500000006) (-78.95140100000003 51.21554600000002) (-78.93720999999994 51.19776900000011) (-78.92887899999994 51.18971300000004) (-78.92416400000002 51.185822000000144) (-78.91221599999994 51.17943600000007) (-78.906113 51.17665899999997) (-78.85333299999996 51.165543000000014) (-78.91471899999993 51.22165700000005) (-78.91833500000001 51.226097000000095) (-78.92054699999994 51.231102000000135) (-78.92166099999992 51.23749500000008) (-78.92027300000001 51.24971800000014) (-78.89056399999993 51.39054900000002) (-78.88833599999998 51.39666000000011) (-78.88305700000001 51.4011000000001) (-78.83222999999998 51.43859900000001) (-78.77917500000001 51.47499099999999) (-78.82028200000002 51.51305400000007) (-78.82389799999999 51.517494000000056) (-78.82611099999997 51.522491) (-78.82444800000002 51.54166400000008) (-78.82084699999996 51.55443600000007) (-78.80860899999999 51.576385000000016) (-78.791672 51.60388199999994) (-78.79638699999992 51.608604000000014) (-78.85916099999997 51.63416300000006) (-78.94415300000003 51.670547000000056) (-79.03472899999997 51.76471700000013) (-79.035553 51.77027100000009) (-79.03332499999988 51.77638200000001) (-79.02917499999995 51.78138000000001) (-79.00834699999996 51.79583000000014) (-78.995834 51.80165899999997) (-78.98582499999998 51.80165899999997) (-78.9761049999999 51.79972099999998) (-78.96139499999987 51.79499800000002) (-78.94444299999986 51.79083300000002) (-78.91805999999997 51.79444100000012) (-78.91082799999998 51.79666099999997) (-78.90360999999996 51.79943800000001) (-78.87998999999996 51.811378000000104) (-78.851944 51.828606000000036) (-78.84638999999999 51.8324970000001) (-78.83694500000001 51.841377000000136) (-78.833618 51.845825000000104) (-78.83222999999998 51.85277600000006) (-78.83444199999997 51.85777299999995) (-78.84167499999995 51.866661000000136) (-78.84638999999999 51.87026999999995) (-78.85861199999994 51.87693800000011) (-78.86361699999992 51.88082100000008) (-78.89555399999989 51.92665900000003) (-78.89639299999993 51.932495000000074) (-78.89416499999999 51.93832400000008) (-78.88194299999992 51.944435) (-78.86027499999989 51.95110299999993) (-78.851944 51.95249200000012) (-78.81054699999993 51.958885000000066) (-78.769455 51.96610300000009) (-78.747772 51.97332) (-78.73666400000002 51.97943100000009) (-78.695831 52.008049000000085) (-78.57945299999994 52.111382000000106) (-78.53750599999995 52.18082400000014) (-78.50111399999997 52.255829000000006) (-78.52444500000001 52.311104000000114) (-78.516953 52.36776700000007) (-78.50723299999999 52.45443700000004) (-78.506958 52.460548000000074) (-78.54527300000001 52.51471700000013) (-78.56471299999998 52.53027300000008) (-78.577225 52.536658999999986) (-78.585556 52.538605000000075) (-78.59584000000001 52.53888699999999) (-78.65444899999994 52.54694400000011) (-78.68443300000001 52.551383999999985) (-78.76333599999998 52.56443800000005) (-78.76112399999994 52.570549000000085) (-78.75556899999992 52.574164999999994) (-78.721115 52.58665500000012) (-78.69193999999993 52.59609999999998) (-78.71333300000003 52.628876000000105) (-78.75306699999987 52.68387599999994) (-78.79083300000002 52.73749500000014) (-78.79695099999998 52.77388000000008) (-78.765015 52.77748900000012) (-78.73194899999999 52.783333000000084) (-78.72471599999994 52.78555300000011) (-78.7225039999999 52.791664000000026) (-78.72555499999999 52.819443000000035) (-78.73832700000003 52.8722150000001) (-78.79444899999999 52.861381999999935) (-78.85610999999989 52.877769000000114) (-78.880829 52.896942000000024) (-78.88194299999992 52.90277100000003) (-78.87860099999989 52.908043000000134) (-78.86471599999999 52.96360800000008) (-78.91583300000002 53.00000000000006) (-78.92304999999993 53.06888600000008) (-78.88806199999993 53.22470900000013) (-78.894455 53.25972000000007) (-78.89584400000001 53.26527400000009) (-78.94249000000002 53.38499499999995) (-78.94972200000001 53.39999400000005) (-78.99172199999992 53.43404800000002) (-78.99472000000003 53.43637800000005) (-79.00455499999993 53.43921699999993) (-79.00955199999993 53.43821300000002) (-79.04472399999997 53.439430000000016) (-79.05305499999997 53.43804200000005) (-79.06332399999997 53.439430000000016) (-79.06806899999992 53.44332100000008) (-79.09028599999999 53.47054300000002) (-79.09306299999997 53.474709000000075) (-79.10777300000001 53.4972150000001) (-79.110275 53.502495000000124) (-79.10360699999995 53.51305400000001) (-79.08416699999998 53.522491000000116) (-79.05444299999994 53.53138000000001) (-79.035553 53.53276800000009) (-79.012787 53.53110499999997) (-79.031387 53.52971600000001) (-79.03805499999999 53.526657) (-79.04333499999996 53.52304800000002) (-79.04249599999991 53.51110800000009) (-79.041382 53.50555400000013) (-79.03639199999998 53.501663000000065) (-79.01483899999994 53.498940000000005) (-79.01100200000002 53.496937) (-79.00567599999994 53.49577000000005) (-79.00067899999993 53.496609000000035) (-78.96278399999994 53.50888800000013) (-78.91915899999998 53.55526700000007) (-78.91583300000002 53.5605470000001) (-78.91833500000001 53.565544000000045) (-78.92193599999996 53.56999200000001) (-78.95056199999999 53.599716) (-79.00334199999992 53.64166300000005) (-79.08972199999994 53.691658000000075) (-79.14500399999997 53.70166000000006) (-79.15139799999992 53.704994000000056) (-79.152222 53.71054800000002) (-79.05249000000003 53.831939999999975) (-79.04695100000004 53.835548000000074) (-79.039444 53.83776899999998) (-79.02972399999999 53.839157000000114) (-79.011124 53.839989) (-78.98889199999991 53.83888200000007) (-78.97999599999997 53.836104999999975) (-78.9661099999999 53.83027600000014) (-78.94833399999993 53.82083100000011) (-78.93277 53.81554399999999) (-78.91082799999998 53.81443799999994) (-78.90139799999997 53.815268999999944) (-78.90222199999994 53.821380999999974) (-78.90638699999994 53.82527200000004) (-78.91776999999996 53.83221400000008) (-78.92416400000002 53.835548000000074) (-78.96972700000003 53.851387000000045) (-78.98889199999991 53.85471300000006) (-79.01194800000002 53.85665899999998) (-79.05665599999992 53.873046999999985) (-79.10110499999996 53.90165700000006) (-79.10611 53.905548000000124) (-79.07250999999985 53.99916100000007) (-79.066956 54.002777000000094) (-79.05110200000001 54.00666000000007) (-79.041382 54.00777400000004) (-79.03167699999995 54.00777400000004) (-79.02139299999999 54.006386000000134) (-79.00109899999995 53.99999200000008) (-78.96495099999993 53.99716200000006) (-78.96162399999997 53.99999200000008) (-78.96028099999995 54.00138900000002) (-78.96278399999994 54.006386000000134) (-78.96665999999993 54.01082600000012) (-78.97666900000002 54.018326) (-78.98416099999997 54.02166) (-79.11944599999998 54.07860599999998) (-79.11639399999996 54.10305000000005) (-79.10638399999993 54.11138200000005) (-79.04638699999998 54.178329000000076) (-79.04888900000003 54.18332700000008) (-79.06054699999999 54.18415800000008) (-79.17332499999998 54.17499500000008) (-79.191666 54.17276800000002) (-79.19804399999987 54.16971600000011) (-79.19694499999997 54.16360500000002) (-79.19833399999999 54.15721099999996) (-79.20584099999991 54.154990999999995) (-79.23805199999998 54.15888200000006) (-79.27639799999992 54.16693900000001) (-79.34527600000001 54.199432) (-79.41999800000002 54.274437000000034) (-79.43055700000002 54.29027599999995) (-79.47666900000002 54.36859900000013) (-79.50500499999993 54.42582700000014) (-79.48805199999993 54.45221700000013) (-79.48805199999993 54.45860300000004) (-79.52139299999999 54.587212000000136) (-79.52528399999989 54.591377000000136) (-79.531677 54.59471100000013) (-79.56555200000003 54.609993000000145) (-79.61888099999993 54.62387800000005) (-79.67555199999993 54.62582400000014) (-79.68611099999998 54.62721299999993) (-79.76083399999999 54.648048000000074) (-79.76444999999995 54.65221400000013) (-79.761124 54.65832500000005) (-79.63166799999993 54.70277399999998) (-79.49415599999998 54.744713000000104) (-79.46362299999998 54.75360900000004) (-79.45722999999992 54.750275000000045) (-79.44749499999995 54.75110600000005) (-79.33778399999994 54.77249100000006) (-79.31582600000002 54.77999100000011) (-79.10110499999996 54.82721699999996) (-78.97666900000002 54.843048000000124) (-78.968887 54.845267999999976) (-78.95666499999999 54.85193600000014) (-78.94554099999993 54.85943600000002) (-78.9125059999999 54.884163000000115) (-78.83860800000002 54.91443600000008) (-78.73277300000001 54.93110700000011) (-78.56111099999993 54.97776799999991) (-78.37388599999997 55.030273000000136) (-78.2561189999999 55.08221400000002) (-78.207672 55.11165599999998) (-78.18222000000003 55.12526700000012) (-78.11944599999998 55.14999400000005) (-77.972778 55.20499400000011) (-77.87249799999995 55.243607) (-77.74861099999998 55.30082700000003) (-77.62222300000002 55.382766999999944) (-77.41665599999999 55.48610700000006) (-77.22582999999997 55.58832600000011) (-77.214722 55.595267999999976) (-77.1372219999999 55.65416000000005) (-77.11527999999993 55.67416400000013) (-77.10472099999998 55.683876000000055) (-77.08833299999992 55.69943200000006) (-77.08612099999993 55.70555100000007) (-77.085556 55.70804600000008) (-77.08778399999994 55.709716999999955) (-77.06834399999997 55.75471500000003) (-77.01306199999988 55.803046999999935) (-76.81138599999997 55.97110000000009) (-76.75195300000001 55.997772) (-76.737503 56.001663000000065) (-76.718887 56.00804899999997) (-76.70249899999993 56.017494000000056) (-76.6891629999999 56.027489) (-76.68194599999998 56.03388200000012) (-76.67721599999993 56.038605000000075) (-76.67083699999989 56.04583000000014) (-76.65805099999994 56.06082199999997) (-76.65083300000003 56.0719380000001) (-76.62666299999995 56.11804999999998) (-76.53832999999997 56.297775000000115) (-76.53222700000003 56.315269) (-76.53111299999995 56.32222000000013) (-76.51889 56.4060970000001) (-76.51750199999998 56.423325000000034) (-76.51750199999998 56.43582200000003) (-76.51916499999999 56.46471400000007) (-76.52583299999998 56.49276700000007) (-76.527222 56.50305200000014) (-76.52639799999992 56.60582700000003) (-76.50695799999994 56.710823000000005) (-76.50500499999998 56.733879) (-76.50445599999995 56.771934999999985) (-76.50556899999992 56.78499599999992) (-76.50527999999991 56.791382000000056) (-76.50556899999992 56.803047000000106) (-76.50944500000003 56.819717000000026) (-76.53083800000002 56.90665400000006) (-76.55444299999999 57.00582899999995) (-76.55471799999992 57.010826000000066) (-76.55583200000001 57.03499600000009) (-76.55332900000002 57.053322000000094) (-76.54916400000002 57.06221000000005) (-76.54527299999995 57.068885999999964) (-76.535553 57.07777399999998) (-76.53111299999995 57.087211999999965) (-76.52917500000001 57.09665700000005) (-76.52972399999987 57.10582700000009) (-76.564438 57.20721400000008) (-76.59138499999995 57.27443699999998) (-76.59999099999993 57.29361000000006) (-76.60444599999988 57.30277300000006) (-76.65306099999992 57.40138200000001) (-76.65834000000001 57.406653999999946) (-76.68804899999998 57.43055000000004) (-76.73222399999992 57.49027300000006) (-76.74082900000002 57.50332600000007) (-76.81138599999997 57.62471000000011) (-76.80943300000001 57.634720000000016) (-76.80777 57.641662999999994) (-76.80555700000002 57.647774000000084) (-76.86193799999995 57.71915400000006) (-76.92304999999999 57.786110000000065) (-77.14723199999997 58.02276599999993) (-77.24665800000002 58.07388300000008) (-77.27972399999999 58.08443500000004) (-77.31750499999998 58.09193400000004) (-77.34944200000001 58.10193600000002) (-77.44444299999998 58.152489) (-77.45111099999997 58.171379000000115) (-77.44665500000002 58.173882000000106) (-77.44110099999995 58.18277000000006) (-77.44415299999997 58.18776700000001) (-77.454453 58.19638100000003) (-77.46722399999999 58.203323000000125) (-77.48777799999993 58.212769000000094) (-77.57167099999998 58.2480470000001) (-77.64584399999995 58.27860300000003) (-77.81527699999998 58.32721700000002) (-77.851944 58.334991) (-77.883896 58.339989) (-77.91444399999995 58.34554300000002) (-77.93916300000001 58.35305000000011) (-77.95527600000003 58.35860400000013) (-78.01251200000002 58.378601) (-78.02444500000001 58.384163000000115) (-78.02806099999998 58.38694000000004) (-78.03138699999994 58.39138000000003) (-78.06268299999999 58.4173090000001) (-78.13055399999996 58.46276900000004) (-78.35555999999997 58.601661999999976) (-78.39723199999992 58.62082700000013) (-78.41999800000002 58.62721300000004) (-78.42527799999999 58.62609900000007) (-78.42832900000002 58.62360400000006) (-78.42777999999998 58.61110700000006) (-78.42610199999996 58.60610200000002) (-78.347778 58.53665900000004) (-78.38972499999988 58.54471600000005) (-78.5491639999999 58.603882) (-78.56388900000002 58.60999300000009) (-78.56861899999996 58.614441000000056) (-78.57389799999993 58.630547000000035) (-78.57472200000001 58.63526900000011) (-78.57000699999998 58.6730500000001) (-78.56388900000002 58.676941) (-78.55583199999995 58.67777300000006) (-78.54388399999999 58.67804699999999) (-78.51472499999994 58.67943600000001) (-78.46972700000003 58.695541000000105) (-78.46722399999999 58.70166000000012) (-78.48832699999997 58.78638500000005) (-78.50556899999998 58.835266000000104) (-78.51167299999992 58.839157) (-78.51640299999997 58.843323000000055) (-78.53860500000002 58.886940000000095) (-78.57139599999988 58.95721400000008) (-78.57055700000001 58.96138000000013) (-78.561935 58.9658280000001) (-78.55221599999999 58.968048000000124) (-78.39639299999993 58.96471400000013) (-78.36166399999996 58.95860300000004) (-78.35249299999992 58.95665700000001) (-78.34638999999999 58.95360599999998) (-78.34445199999988 58.949432000000115) (-78.34472699999998 58.94665500000002) (-78.34527600000001 58.94471000000004) (-78.34834299999994 58.942214999999976) (-78.36639400000001 58.92027300000012) (-78.36389200000002 58.91249099999999) (-78.35777300000001 58.910270999999966) (-78.34583999999995 58.909714000000065) (-78.33833300000003 58.91276600000003) (-78.31082199999997 58.9272160000001) (-78.30471799999992 58.931107) (-78.20556599999998 59.05054500000011) (-78.12748699999997 59.108330000000024) (-78.08666999999997 59.156654) (-78.093887 59.193047000000035) (-78.09861799999999 59.196655000000135) (-78.10194399999995 59.200829) (-78.103882 59.205826000000116) (-78.09277299999991 59.214995999999985) (-77.96112099999993 59.25833100000011) (-77.94972199999995 59.261939999999925) (-77.93028300000003 59.26527399999992) (-77.88444500000003 59.27193500000004) (-77.86000099999995 59.272217000000126) (-77.843613 59.27555100000012) (-77.82888799999995 59.28110500000008) (-77.82444800000002 59.28360699999996) (-77.68499799999995 59.393326000000116) (-77.67721599999999 59.399994000000106) (-77.67832899999996 59.401932000000045) (-77.77917500000001 59.426102000000014) (-77.787216 59.426658999999916) (-77.79804999999999 59.4263840000001) (-77.83138999999994 59.41471100000007) (-77.88027999999991 59.39916199999999) (-77.88751200000002 59.397491000000116) (-77.89695699999999 59.39721700000001) (-77.902222 59.39888000000008) (-77.90583800000002 59.4011000000001) (-77.91027799999995 59.40554800000007) (-77.91250600000001 59.41526799999997) (-77.91055299999988 59.42555199999998) (-77.872772 59.49193599999995) (-77.86749299999991 59.5) (-77.86111499999987 59.50388300000009) (-77.84056099999998 59.51305400000007) (-77.79888900000003 59.52499399999999) (-77.77917500000001 59.52887700000008) (-77.76945499999994 59.52916000000005) (-77.74999999999989 59.532211000000075) (-77.72138999999993 59.539719000000105) (-77.724716 59.59388000000001) (-77.75500499999993 59.62832600000007) (-77.76278699999989 59.63137800000004) (-77.76750199999992 59.63499499999995) (-77.79777499999994 59.67027299999995) (-77.80110200000001 59.67527000000007) (-77.79861499999993 59.67999300000008) (-77.77389499999998 59.70971700000007) (-77.76167299999997 59.709991) (-77.73194899999999 59.70777099999998) (-77.71055599999988 59.70471200000003) (-77.58522800000003 59.66921200000013) (-77.53988599999991 59.65338100000014) (-77.53539299999994 59.65137900000008) (-77.52439099999992 59.644714000000135) (-77.51888999999989 59.63938100000013) (-77.51322900000002 59.63054699999998) (-77.51372500000002 59.62021599999997) (-77.51489300000003 59.614044000000035) (-77.464722 59.58721200000002) (-77.46000699999996 59.58277100000009) (-77.45417799999996 59.579162999999994) (-77.44499200000001 59.576385000000016) (-77.42694099999994 59.57138100000003) (-77.35360700000001 59.563605999999936) (-77.32250999999991 59.56276700000001) (-77.31388900000002 59.564995000000124) (-77.311935 59.56693999999993) (-77.316956 59.56999200000007) (-77.34416199999998 59.57694200000009) (-77.42799400000001 59.619049000000075) (-77.433334 59.62054399999994) (-77.441666 59.62471799999997) (-77.50233500000002 59.67821500000002) (-77.54249600000003 59.747490000000084) (-77.541946 59.75027499999993) (-77.53306599999996 59.754714999999976) (-77.43276999999995 59.784163999999976) (-77.41278099999994 59.78777300000013) (-77.38944999999995 59.78888699999993) (-77.333618 59.78527100000008) (-77.31166099999996 59.785552999999936) (-77.30471799999998 59.78721600000006) (-77.29888900000003 59.78971900000005) (-77.29360999999989 59.793610000000115) (-77.29611199999994 59.801933000000076) (-77.30139200000002 59.811104) (-77.36361699999986 59.89083099999999) (-77.36805699999996 59.89471400000008) (-77.37805199999997 59.90138200000007) (-77.385559 59.90443399999998) (-77.42748999999998 59.914710999999954) (-77.206955 60.04277000000002) (-77.07000699999992 60.06415600000008) (-76.84805299999994 60.09915900000004) (-76.77583300000003 60.131659999999954) (-76.77084399999995 60.13638300000014) (-76.758896 60.15915700000011) (-76.80860899999993 60.15971400000001) (-76.82833900000003 60.157493999999986) (-76.846115 60.15221400000013) (-76.85249299999998 60.148330999999985) (-76.85777299999995 60.14388300000002) (-76.86054999999993 60.137771999999984) (-76.85749800000002 60.132767000000115) (-76.854172 60.121658000000025) (-76.85943599999996 60.11693600000012) (-76.86694299999999 60.113883999999985) (-76.889725 60.112495000000024) (-76.9244379999999 60.11166400000002) (-76.95056199999993 60.11221300000011) (-76.962784 60.113609) (-77.00389100000001 60.12193300000001) (-77.03138699999988 60.129714999999976) (-77.05555699999996 60.13860299999999) (-77.07417299999997 60.142769000000044) (-77.11193800000001 60.146942000000024) (-77.17388899999997 60.15026899999992) (-77.18749999999994 60.15082600000005) (-77.19999699999994 60.15082600000005) (-77.19972200000001 60.14527099999992) (-77.19471699999997 60.129158000000075) (-77.23249800000002 60.05387900000011) (-77.27278100000001 60.039993000000095) (-77.31582599999996 60.03054800000007) (-77.51916499999999 60.044159000000036) (-77.54028299999999 60.0480500000001) (-77.55721999999997 60.05277300000006) (-77.59222399999999 60.06415600000008) (-77.60028099999994 60.10860400000013) (-77.5952759999999 60.112495000000024) (-77.58168 60.1188810000001) (-77.55804399999994 60.126656000000025) (-77.54916400000002 60.129158000000075) (-77.49694799999992 60.156097000000045) (-77.47027600000001 60.213325999999995) (-77.47361799999993 60.216934000000094) (-77.60278299999993 60.329994000000056) (-77.63972499999994 60.362213000000054) (-77.6475069999999 60.365273000000116) (-77.65833999999995 60.36805000000004) (-77.68306000000001 60.36776700000007) (-77.69248999999996 60.369438000000116) (-77.70834400000001 60.37582400000002) (-77.743607 60.39332600000006) (-77.74722299999996 60.39694200000014) (-77.74775699999992 60.40813400000013) (-77.74082900000002 60.423607000000004) (-77.73693799999995 60.42887900000011) (-77.71945199999999 60.44721199999998) (-77.69193999999993 60.466660000000104) (-77.56750499999993 60.52971600000001) (-77.47999599999991 60.54055000000011) (-77.43083200000001 60.54027599999995) (-77.41972399999992 60.54110700000001) (-77.41332999999997 60.54415900000009) (-77.43638599999991 60.55443600000007) (-77.464447 60.56193500000006) (-77.48611499999993 60.56638300000003) (-77.52166699999998 60.5702740000001) (-77.54943800000001 60.57138100000003) (-77.57362399999994 60.570549000000085) (-77.59861799999993 60.56360600000011) (-77.63194299999998 60.551933000000076) (-77.64056399999998 60.55027000000001) (-77.65055799999999 60.54888200000005) (-77.67027300000001 60.549721000000034) (-77.68083199999995 60.552216000000044) (-77.704453 60.56166100000013) (-77.787216 60.59665700000005) (-77.829453 60.63360599999993) (-77.83389299999993 60.63943499999999) (-77.83167999999995 60.644714000000135) (-77.82167099999987 60.65193199999993) (-77.77583299999998 60.67110400000013) (-77.72250400000001 60.69193300000012) (-77.71639999999996 60.694435) (-77.61000100000001 60.755554000000075) (-77.51583900000003 60.830551000000014) (-77.51251200000002 60.833602999999925) (-77.51167299999997 60.83638000000002) (-77.53195199999999 60.83526600000005) (-77.57167099999998 60.82833099999999) (-77.708054 60.79554700000011) (-77.85638399999993 60.76444200000009) (-77.920547 60.79138200000011) (-77.903885 60.81249200000008) (-77.88999899999999 60.818886000000134) (-77.88333099999994 60.82332599999995) (-77.88722200000001 60.82582900000011) (-77.89639299999988 60.828049000000135) (-77.90916399999998 60.82888000000014) (-77.97528099999994 60.82276900000005) (-78.0786129999999 60.80609900000013) (-78.11694299999999 60.7980500000001) (-78.12582399999997 60.79554700000011) (-78.17250099999995 60.78721600000006) (-78.17971799999998 60.786942000000124) (-78.18638599999997 60.78804799999995) (-78.19055200000003 60.7888870000001) (-78.19276400000001 60.79083300000002) (-78.17166099999992 60.85471300000006) (-78.15943900000002 60.86721000000006) (-77.95472699999999 61.000831999999946) (-77.92555199999993 61.01888300000013) (-77.88917500000002 61.03804800000012) (-77.87361099999993 61.045547000000056) (-77.85804699999994 61.05110199999996) (-77.85388199999994 61.05221599999999) (-77.84666400000003 61.05249000000009) (-77.70167500000002 61.21749100000011) (-77.72444199999995 61.25443999999999) (-77.73999000000003 61.29860700000006) (-77.74665800000002 61.337494000000106) (-77.76112399999994 61.41027100000002) (-77.678879 61.461104999999975) (-77.620834 61.46249399999999) (-77.56361400000003 61.46666000000005) (-77.56054699999993 61.46804799999995) (-77.54249600000003 61.47943099999998) (-77.54333500000001 61.483047000000056) (-77.54833999999994 61.48610700000012) (-77.61389200000002 61.504166000000055) (-77.59611499999994 61.55582400000014) (-77.57278400000001 61.54999500000014) (-77.51722699999993 61.53971900000005) (-77.47860700000001 61.53638500000005) (-77.47500599999995 61.539161999999976) (-77.47471599999994 61.541664000000026) (-77.48028599999992 61.54888200000005) (-77.58139 61.60054800000012) (-77.58917199999996 61.60443900000001) (-77.61650099999997 61.60632700000008) (-77.62799799999999 61.60599500000012) (-77.66749600000003 61.603049999999996) (-77.69082599999996 61.60221899999999) (-77.70249899999999 61.60277600000006) (-77.71055599999988 61.60582700000009) (-77.74415599999998 61.64027400000009) (-77.816666 61.684989999999914) (-77.88444500000003 61.68582200000003) (-77.89889499999992 61.68637800000005) (-77.93138099999993 61.69193300000012) (-77.97582999999997 61.70277400000003) (-77.98222399999997 61.70665699999995) (-77.99249299999997 61.71471400000013) (-78.00306699999993 61.7283250000001) (-78.00611900000001 61.733047) (-78.01194799999996 61.74860400000006) (-78.0744479999999 61.917213000000004) (-78.07749899999999 61.940544000000045) (-78.08139 61.9511030000001) (-78.09167500000001 61.96527100000014) (-78.11000100000001 61.984161000000086) (-78.12026999999995 61.99193600000001) (-78.137787 62.009163) (-78.14138799999995 62.020546000000024) (-78.14361600000001 62.03138000000007) (-78.15943900000002 62.14999400000005) (-78.16166699999997 62.169159000000036) (-78.15777600000001 62.267494000000056) (-78.15583799999996 62.2783280000001) (-78.14973399999997 62.287216000000114) (-78.10305800000003 62.33749400000005) (-78.08500700000002 62.35332500000004) (-78.02389499999998 62.39332600000006) (-78.01640299999997 62.39388300000013) (-78.0080569999999 62.390549000000135) (-77.99665799999997 62.388046000000145) (-77.98306300000002 62.38832900000011) (-77.96305799999999 62.39276899999999) (-77.71139499999992 62.468048000000124) (-77.68721 62.47665400000005) (-77.55555699999996 62.53611000000001) (-77.535278 62.54694400000011) (-77.50834700000001 62.56166100000007) (-77.35499600000003 62.55804400000011) (-77.07362399999994 62.534163999999976) (-76.92582699999997 62.52638200000001) (-76.756958 62.50694300000009) (-76.74694799999997 62.504997) (-76.65556299999997 62.46998600000006) (-76.49861099999987 62.44110100000006) (-76.401947 62.42749000000009) (-76.31777999999991 62.41220900000013) (-76.14306599999992 62.37915800000002) (-75.70973200000003 62.29638700000004) (-75.71921499999996 62.242493000000024) (-75.73956299999992 62.23616000000004) (-75.819885 62.20565799999997) (-75.87887599999999 62.168602000000135) (-75.89111300000002 62.161933999999974) (-75.89500399999991 62.15859999999998) (-75.89083900000003 62.156937000000084) (-75.83583099999998 62.15804300000008) (-75.82694999999995 62.15888200000006) (-75.77239999999995 62.17721599999999) (-75.77072099999992 62.180049999999994) (-75.76505299999991 62.18471899999997) (-75.76088700000003 62.18705000000011) (-75.75605799999988 62.18871300000001) (-75.705063 62.203216999999995) (-75.656883 62.216544999999996) (-75.5791779999999 62.24221800000004) (-75.57389799999993 62.244155999999975) (-75.55694599999993 62.25277700000004) (-75.55277999999993 62.25666000000001) (-75.55027799999993 62.260826000000066) (-75.53944399999989 62.268326) (-75.493607 62.29332699999998) (-75.48693799999995 62.29638700000004) (-75.478882 62.29860700000006) (-75.47277799999995 62.299438000000066) (-75.40222199999994 62.306381000000044) (-75.35638399999999 62.310546999999985) (-75.32194500000003 62.31110400000006) (-75.30749500000002 62.31027199999994) (-75.18443299999996 62.292220999999984) (-75.01556399999998 62.264999000000046) (-75 62.262245000000064) (-74.93832399999991 62.25027499999999) (-74.91861 62.24554400000005) (-74.89805599999994 62.240273) (-74.88999899999999 62.237495000000024) (-74.88221699999991 62.23360400000013) (-74.87388599999986 62.22609700000004) (-74.76722699999988 62.161102000000085) (-74.70083599999987 62.13110400000011) (-74.69305400000002 62.12776900000006) (-74.66888399999999 62.11915600000009) (-74.62083399999989 62.107215999999994) (-74.59805299999994 62.10416400000008) (-74.57167099999998 62.10305000000011) (-74.55638099999999 62.104713000000004) (-74.55305499999997 62.10610200000002) (-74.553879 62.108047) (-74.55860899999988 62.111938000000066) (-74.61888099999993 62.13249200000001) (-74.662216 62.146660000000054) (-74.68611099999998 62.155823000000055) (-74.700287 62.16276600000009) (-74.75111400000003 62.19110100000006) (-74.758896 62.19915800000007) (-74.75973499999992 62.20138500000013) (-74.75973499999992 62.20638300000013) (-74.756393 62.212212000000136) (-74.72582999999992 62.24499500000013) (-74.71749899999992 62.247772) (-74.700287 62.25083200000006) (-74.67832899999996 62.25360899999998) (-74.64584400000001 62.25360899999998) (-74.579453 62.25193800000011) (-74.52583300000003 62.24694099999999) (-74.47361799999993 62.24332400000003) (-74.46139499999998 62.24388099999993) (-74.42887899999994 62.247772) (-74.41000400000001 62.25138900000013) (-74.38389599999994 62.2586060000001) (-74.14167799999996 62.326660000000004) (-73.98138399999999 62.377769) (-73.97444200000001 62.386108000000036) (-73.96972700000003 62.39083099999999) (-73.94027699999998 62.41220900000013) (-73.88890100000003 62.44054399999993) (-73.83805799999999 62.457497000000046) (-73.68804899999998 62.47998800000005) (-73.678879 62.47998800000005) (-73.65972899999997 62.475265999999976) (-73.64834599999995 62.468323) (-73.64250199999992 62.463608000000136) (-73.502792 62.38665800000007) (-73.36999500000002 62.363609000000054) (-73.22721899999988 62.318054000000075) (-73.21139499999992 62.31276700000001) (-73.20666499999999 62.308884000000035) (-73.20417800000001 62.303878999999995) (-73.202789 62.298882000000106) (-73.20722999999992 62.28582800000004) (-73.21028099999995 62.28193699999997) (-73.21083099999998 62.27582600000005) (-73.20973200000003 62.27082800000005) (-73.20417800000001 62.26138299999997) (-73.19193999999987 62.25360899999998) (-73.17805499999997 62.246101000000124) (-73.13194299999998 62.22526600000003) (-73.07000699999998 62.197487000000024) (-72.89944500000001 62.138329) (-72.72389199999992 62.142220000000066) (-72.62666300000001 62.11554700000005) (-72.61721799999998 62.10860400000007) (-72.59611499999988 62.04916400000002) (-72.61871300000001 61.97421299999996) (-72.619888 61.97087899999997) (-72.66571799999991 61.928383) (-72.68998699999992 61.891936999999984) (-72.74861099999998 61.856384000000105) (-72.724716 61.845267999999976) (-72.612503 61.80499300000008) (-72.60278299999993 61.804160999999965) (-72.59611499999988 61.80554999999998) (-72.59167499999995 61.80998999999997) (-72.58778399999989 61.82027400000004) (-72.62277199999994 61.861382000000106) (-72.62887599999999 61.87304700000004) (-72.60955799999999 61.88771400000013) (-72.61089300000003 61.893714999999986) (-72.61139700000001 61.900047000000086) (-72.61022200000002 61.90538000000009) (-72.607552 61.910049000000015) (-72.59754899999996 61.92021199999999) (-72.593887 61.92321400000003) (-72.58722699999998 61.92437699999999) (-72.58122299999997 61.92337800000013) (-72.51972999999992 61.920547) (-72.44860799999998 61.90138200000001) (-72.39666699999992 61.88943500000005) (-72.38694800000002 61.887771999999984) (-72.345551 61.88443799999999) (-72.32194500000003 61.88388100000009) (-72.256958 61.87693800000011) (-72.23500100000001 61.8722150000001) (-72.20584099999996 61.86332700000014) (-72.20083599999992 61.860275) (-72.041382 61.72248800000011) (-72.01005600000002 61.67527000000001) (-72.03805499999999 61.62470999999999) (-72.08056599999998 61.60193600000002) (-72.087784 61.59887700000007) (-72.09583999999995 61.59609999999998) (-72.11389200000002 61.59554300000008) (-72.12388599999997 61.596382000000006) (-72.16000400000001 61.60527000000002) (-72.19415300000003 61.615829000000076) (-72.22749299999998 61.61998700000004) (-72.23666399999996 61.61943800000006) (-72.254456 61.61554699999999) (-72.271118 61.609161000000086) (-72.3033289999999 61.570831) (-72.30387899999994 61.568885999999964) (-72.3033289999999 61.56721500000009) (-72.083618 61.58249699999993) (-72.05722000000003 61.586655000000064) (-71.98028599999998 61.599998000000085) (-71.97833300000002 61.6013870000001) (-71.96777299999997 61.60943600000007) (-71.94082599999996 61.64833100000004) (-71.93666099999996 61.65554800000001) (-71.93360899999993 61.66360500000013) (-71.93306000000001 61.66860200000008) (-71.93388400000003 61.67416400000002) (-71.93666099999996 61.677773) (-71.94137599999999 61.681107) (-71.94688400000001 61.68838099999999) (-71.95038599999987 61.68871300000012) (-71.953888 61.69071600000012) (-71.95655799999992 61.69304700000009) (-71.95688599999988 61.69421399999999) (-71.95605499999994 61.69888300000014) (-71.95054600000003 61.7012180000001) (-71.94888300000002 61.70155) (-71.945221 61.701714000000095) (-71.928879 61.705826000000116) (-71.81945799999994 61.688599000000124) (-71.79527300000001 61.68221300000005) (-71.64472999999992 61.639435000000105) (-71.5750119999999 61.608604000000014) (-71.57167099999987 61.605552999999986) (-71.545547 61.5719380000001) (-71.54611199999994 61.5669400000001) (-71.5494379999999 61.558884000000035) (-71.56027199999994 61.55721299999993) (-71.62971499999998 61.54860700000006) (-71.63500999999997 61.54583000000014) (-71.652222 61.54305300000004) (-71.66305499999993 61.54193900000007) (-71.75111399999997 61.538048) (-71.789444 61.52193499999993) (-71.74638400000003 61.47137500000008) (-71.74694799999997 61.46582799999999) (-71.80277999999998 61.446938000000046) (-71.81750499999998 61.44276400000001) (-71.87554899999992 61.43610399999994) (-71.88555899999994 61.43276999999995) (-71.887787 61.43082400000009) (-71.88751199999996 61.42804699999999) (-71.87943999999999 61.422492999999974) (-71.87304699999993 61.41971600000011) (-71.85333300000002 61.41443600000002) (-71.70056199999999 61.405823000000055) (-71.68472299999996 61.40499099999994) (-71.67610199999996 61.37221500000004) (-71.67193599999996 61.33055100000013) (-71.59889199999998 61.254166000000055) (-71.53083799999996 61.21360800000002) (-71.38999899999999 61.1377720000001) (-71.29583699999989 61.14860500000009) (-71.28666699999991 61.14971900000006) (-71.27917500000001 61.1511000000001) (-71.174713 61.13999200000012) (-71.01139799999999 61.12165799999997) (-70.96694899999994 61.113883999999985) (-70.94583099999994 61.108887000000095) (-70.92832900000002 61.10249300000004) (-70.92193600000002 61.09693900000002) (-70.92138699999998 61.09137700000008) (-70.77333099999998 61.08166499999993) (-70.656387 61.05054500000006) (-70.55305499999997 61.02499400000005) (-70.53971899999999 61.05582400000009) (-70.535278 61.05943300000007) (-70.41999800000002 61.08526599999999) (-70.41361999999998 61.08665500000001) (-70.31555199999991 61.09499400000004) (-70.165009 61.088043000000084) (-70.14611799999989 61.08471700000007) (-70.14138799999995 61.08277099999998) (-70.10722399999992 61.06443800000011) (-70.08583099999998 60.954994) (-70.08805799999988 60.89777400000014) (-69.92749000000003 60.807770000000005) (-69.914444 60.80860100000001) (-69.90110799999997 60.81221000000005) (-69.88806199999993 60.81916000000007) (-69.85638399999999 60.83832600000011) (-69.85055499999999 60.84193400000004) (-69.84973100000002 60.84665699999999) (-69.85139500000002 60.849716) (-69.85888699999998 60.85193600000002) (-69.86944599999993 60.85082999999997) (-69.88362099999995 60.84526800000003) (-69.89472999999992 60.85555299999993) (-69.833328 60.88999200000001) (-69.82611099999997 60.893326) (-69.778885 60.91137700000013) (-69.75695799999994 60.918884000000105) (-69.75083899999993 60.919715999999994) (-69.741104 60.9180530000001) (-69.73805199999993 60.91554300000007) (-69.74333200000001 60.90693699999997) (-69.75140399999998 60.89887999999996) (-69.750565 60.894440000000145) (-69.74610899999999 60.88472000000007) (-69.74055499999997 60.88137799999993) (-69.71055599999994 60.87387800000005) (-69.68859900000001 60.871658000000025) (-69.67721599999999 60.871101000000124) (-69.658615 60.87693800000011) (-69.64999399999988 60.8836060000001) (-69.64584399999995 60.89305100000013) (-69.64388999999994 60.90332000000001) (-69.64916999999991 60.913879000000065) (-69.65556300000003 60.9222180000001) (-69.67166099999992 60.93443300000001) (-69.68083199999995 60.943047000000035) (-69.68859900000001 60.951660000000004) (-69.68943799999988 60.95610000000005) (-69.68971299999998 60.96166199999999) (-69.68055700000002 61.01415999999995) (-69.67944299999994 61.01944000000003) (-69.67666599999995 61.02555100000012) (-69.65666199999993 61.053604000000064) (-69.65388499999995 61.05693800000006) (-69.61305199999993 61.07916300000005) (-69.59999099999999 61.081940000000145) (-69.55416899999994 61.08055099999996) (-69.52860999999996 61.07638500000007) (-69.51972999999992 61.07332600000012) (-69.51445000000001 61.06944299999998) (-69.51139799999993 61.06610100000006) (-69.50834700000001 61.06082200000009) (-69.49276700000001 61.03193700000003) (-69.468887 60.99499500000002) (-69.46528599999994 60.990273000000116) (-69.45361300000002 60.974991000000045) (-69.36805700000002 60.903046000000074) (-69.368607 60.811104) (-69.37193300000001 60.80443600000001) (-69.38055400000002 60.79471600000011) (-69.38667299999997 60.79055000000005) (-69.40444899999994 60.783332999999914) (-69.42138699999992 60.77804600000002) (-69.43859899999995 60.77499400000005) (-69.49665799999997 60.76444200000009) (-69.53306599999996 60.757217000000026) (-69.59167500000001 60.73915899999997) (-69.61582900000002 60.730270000000075) (-69.708618 60.68693500000012) (-69.71610999999996 60.68277000000012) (-69.71055599999994 60.67527000000007) (-69.70500199999998 60.67193600000007) (-69.695831 60.663879000000065) (-69.656387 60.59554300000008) (-69.65417499999995 60.584991000000116) (-69.65417499999995 60.58138300000002) (-69.65695199999993 60.574715000000026) (-69.6875 60.551383999999985) (-69.69360399999994 60.54694400000011) (-69.70222499999988 60.54444099999995) (-69.74861099999998 60.53971900000005) (-69.79777499999994 60.53443900000002) (-69.8138889999999 60.530548000000124) (-69.82223499999998 60.52777100000003) (-69.82611099999997 60.52555100000001) (-69.82444800000002 60.522490999999945) (-69.78750600000001 60.480545000000006) (-69.78443900000002 60.47804300000007) (-69.77833599999997 60.47526600000003) (-69.76222200000001 60.47026800000003) (-69.74888599999997 60.4616620000001) (-69.72166400000003 60.368881000000044) (-69.72250400000001 60.36415899999997) (-69.72778299999999 60.35193600000008) (-69.74444599999998 60.34054600000002) (-69.75195300000001 60.33638000000013) (-69.75666799999993 60.331940000000145) (-69.764725 60.32360799999998) (-69.76695299999994 60.31832899999995) (-69.76806599999986 60.31221000000011) (-69.764725 60.307495000000074) (-69.758896 60.30471000000006) (-69.69638099999997 60.278877000000136) (-69.60638399999999 60.23276500000003) (-69.6052699999999 60.2227630000001) (-69.60583500000001 60.21859699999999) (-69.61000100000001 60.208327999999995) (-69.61416600000001 60.20249200000006) (-69.636978 60.179047000000025) (-69.60194399999995 60.18305200000009) (-69.59416199999998 60.18082400000014) (-69.593887 60.17582700000003) (-69.60360699999995 60.10305000000011) (-69.62471 60.06749700000012) (-69.63694800000002 60.065268999999944) (-69.70666499999999 60.05749500000013) (-69.83721899999995 60.019713999999965) (-69.89222699999993 59.99971800000003) (-70.21722399999993 60.00721699999997) (-70.2963939999999 60.01119600000004) (-70.33612099999993 60.0044400000001) (-70.48805199999987 59.99360700000011) (-70.50500499999993 59.99249300000014) (-70.53472899999997 59.99193600000007) (-70.55694599999993 59.99276700000007) (-70.57972699999993 59.99471299999993) (-70.59306299999997 59.99665800000014) (-70.77084400000001 60.02804600000013) (-70.94583099999994 60.06304899999998) (-70.900284 60.04027600000006) (-70.631104 59.98582499999998) (-70.61054999999993 59.98082000000011) (-70.58500700000002 59.97193100000004) (-70.56695599999995 59.968597000000045) (-70.50723299999999 59.96665999999999) (-70.47582999999997 59.96832300000011) (-70.33805799999999 59.97637900000001) (-70.23693800000001 59.986938000000066) (-70.22721899999993 59.98665599999998) (-70.218613 59.98416099999997) (-70.197495 59.974158999999986) (-70.16471899999999 59.962494000000106) (-70.112503 59.949715000000026) (-70.08612099999999 59.94638100000009) (-70.06138599999997 59.94499200000007) (-70.04998799999987 59.94526700000006) (-70.0308379999999 59.94804399999998) (-69.947769 59.95888500000012) (-69.758896 59.96776600000004) (-69.726944 59.96360800000008) (-69.71888699999994 59.95971700000001) (-69.60055499999987 59.833054000000004) (-69.60555999999991 59.77721400000013) (-69.61000100000001 59.72860000000014) (-69.54083300000002 59.671104000000014) (-69.60499599999997 59.588325999999995) (-69.61332699999997 59.588325999999995) (-69.62777699999998 59.58387800000003) (-69.65888999999999 59.572495) (-69.67944299999994 59.563605999999936) (-69.69804399999998 59.553047000000106) (-69.718613 59.537773000000016) (-69.72972099999993 59.52777100000003) (-69.74833699999994 59.50999500000006) (-69.75944500000003 59.49388099999999) (-69.76112399999994 59.484161000000086) (-69.75944500000003 59.48110200000008) (-69.756393 59.47860000000003) (-69.72833300000002 59.47971300000012) (-69.703888 59.481934000000024) (-69.69860799999992 59.48137700000012) (-69.697495 59.480545000000006) (-69.66944899999993 59.455551000000014) (-69.66583299999996 59.45165999999995) (-69.64944500000001 59.42887900000011) (-69.64527900000002 59.419159000000036) (-69.63166799999988 59.37776900000006) (-69.63137799999993 59.374992000000134) (-69.63999899999988 59.36110700000006) (-69.64639299999999 59.35888700000004) (-69.67777999999993 59.356941000000006) (-69.73666400000002 59.345267999999976) (-69.74415599999998 59.343323) (-69.75778200000002 59.330826) (-69.75834700000001 59.32027399999998) (-69.75111400000003 59.311104000000114) (-69.74694799999986 59.30777000000012) (-69.73860199999996 59.30526699999996) (-69.64500399999991 59.29833200000013) (-69.631104 59.29888199999999) (-69.62666300000001 59.29972100000009) (-69.61639399999996 59.30443600000012) (-69.55027799999999 59.32972000000012) (-69.445831 59.35443900000007) (-69.43582200000003 59.3555530000001) (-69.41250600000001 59.35499599999997) (-69.25944500000003 59.32666000000006) (-69.24972499999996 59.32360799999998) (-69.23832700000003 59.25972000000013) (-69.23500100000001 59.23943300000002) (-69.23472599999997 59.23387900000006) (-69.23805199999993 59.22943100000009) (-69.24444599999998 59.224433999999974) (-69.28582799999992 59.208327999999995) (-69.36639400000001 59.19082600000013) (-69.37388599999997 59.18943000000007) (-69.40499899999998 59.19026900000006) (-69.41915899999998 59.192490000000134) (-69.42027299999995 59.19609800000006) (-69.41749600000003 59.202217000000076) (-69.41444399999995 59.21249400000005) (-69.41665599999999 59.21971100000002) (-69.420837 59.22304500000001) (-69.42971799999992 59.22470900000002) (-69.439438 59.224433999999974) (-69.44860799999998 59.2227630000001) (-69.47027600000001 59.21388200000001) (-69.51222200000001 59.19276400000007) (-69.53056299999997 59.18221299999999) (-69.5375059999999 59.17249300000009) (-69.54028299999999 59.166382) (-69.54110700000001 59.16165900000004) (-69.53721599999994 59.12304700000004) (-69.53306599999996 59.110825000000034) (-69.52778599999999 59.10665899999998) (-69.52055399999989 59.10443900000013) (-69.51139799999993 59.103324999999984) (-69.50556899999992 59.10416399999997) (-69.49499499999996 59.109993000000145) (-69.48443600000002 59.121376) (-69.474716 59.12804399999993) (-69.46305799999999 59.12943300000012) (-69.45388799999995 59.128326000000015) (-69.38417099999998 59.11888099999993) (-69.36749299999991 59.11638600000009) (-69.35972599999997 59.11277000000007) (-69.34916699999991 59.10499600000003) (-69.34527600000001 59.09554300000002) (-69.34416199999998 59.09110300000003) (-69.35278299999999 59.08082600000006) (-69.43194599999998 59.025269000000094) (-69.46611000000001 59.044159000000036) (-69.49333199999995 59.037498000000085) (-69.47528099999994 58.97193100000004) (-69.45750399999991 58.915824999999984) (-69.45472699999999 58.90638000000007) (-69.45388799999995 58.89582800000011) (-69.45417799999996 58.89222000000001) (-69.45639 58.884163) (-69.46000699999996 58.878876000000105) (-69.5475009999999 58.808043999999995) (-69.55749500000002 58.80360399999995) (-69.58778399999994 58.79666099999997) (-69.61111499999998 58.792220999999984) (-69.656387 58.787773000000016) (-69.67083699999995 58.792220999999984) (-69.68083199999995 58.800269999999955) (-69.71194499999996 58.84887700000007) (-69.71472199999994 58.85833000000008) (-69.71610999999996 58.86471599999999) (-69.702789 58.876381000000094) (-69.67222600000002 58.89138000000014) (-69.66861 58.89943700000009) (-69.66833499999996 58.90277100000009) (-69.66833499999996 58.92582700000014) (-69.67166099999992 58.930550000000096) (-69.70944199999997 58.972762999999986) (-69.84834299999994 59.04721799999999) (-69.86527999999993 59.05277300000006) (-69.86915599999992 59.05304699999999) (-69.872772 59.05082700000003) (-69.87388599999997 59.041107000000125) (-69.87416099999996 59.03416399999992) (-69.87388599999997 59.02915999999999) (-69.86555499999997 58.977768000000026) (-69.83277900000002 58.95166000000006) (-69.81582600000002 58.82388300000008) (-69.97277799999989 58.80860100000007) (-70.15361000000001 58.777488999999946) (-70.15888999999999 58.76110799999998) (-70.04972800000002 58.743607) (-69.974716 58.75555400000013) (-69.931107 58.733047000000056) (-69.91055299999994 58.68804200000011) (-69.864441 58.61749300000014) (-69.86166399999996 58.61499800000013) (-69.81889299999995 58.588599999999985) (-69.81304899999992 58.58915700000006) (-69.79943799999995 58.59887700000013) (-69.79333500000001 58.603882) (-69.72444199999995 58.66888399999999) (-69.625 58.7438810000001) (-69.608047 58.754714999999976) (-69.58168 58.765831000000105) (-69.57084700000001 58.769440000000145) (-69.54472399999997 58.77332300000006) (-69.50750700000003 58.77471200000008) (-69.49888599999986 58.77860299999992) (-69.44554099999988 58.80832700000013) (-69.41888399999988 58.825553999999954) (-69.41166699999997 58.830276000000026) (-69.41027799999995 58.83998900000006) (-69.40583800000002 58.85027300000013) (-69.39472999999992 58.856659000000036) (-69.38194299999992 58.86138199999999) (-69.34889199999998 58.87165800000008) (-69.27917500000001 58.888046000000145) (-69.15388499999995 58.89999399999999) (-69.12998999999996 58.901657000000114) (-69.098343 58.8991620000001) (-69.03167699999989 58.893326) (-68.99221799999998 58.883880999999974) (-68.84167500000001 58.891106000000036) (-68.756958 58.91249099999999) (-68.65638699999994 58.90026900000004) (-68.63751200000002 58.89666) (-68.60166899999996 58.88582600000012) (-68.39639299999999 58.81610100000012) (-68.39068600000002 58.81170700000001) (-68.36054999999993 58.781936999999914) (-68.35583500000001 58.774437000000034) (-68.35777299999995 58.76471700000013) (-68.360275 58.75943799999999) (-68.36639399999996 58.68749200000008) (-68.34584000000001 58.626937999999996) (-68.323059 58.58526599999999) (-68.2908329999999 58.54110700000001) (-68.21665999999993 58.490829000000076) (-68.20973200000003 58.46249400000005) (-68.20472699999999 58.45332300000007) (-68.20306399999998 58.44165800000002) (-68.20417800000001 58.43693500000006) (-68.22694399999995 58.37638099999998) (-68.24472000000003 58.33776899999998) (-68.25666799999999 58.32360799999998) (-68.28582799999992 58.294998000000135) (-68.28999299999992 58.28916200000009) (-68.30915799999991 58.25332600000007) (-68.32250999999997 58.22693600000008) (-68.34584000000001 58.16999100000004) (-68.34805299999994 58.159714000000065) (-68.34777799999995 58.15387700000008) (-68.34416199999998 58.14166300000005) (-68.341385 58.133331000000055) (-68.34416199999998 58.12748700000009) (-68.35055499999993 58.12193300000007) (-68.46665999999999 58.04554699999994) (-68.47721899999993 58.03999299999998) (-68.50361599999991 58.03138000000001) (-68.52860999999996 58.029434000000094) (-68.72988900000001 57.99971800000003) (-68.87416100000002 57.969154) (-69.12721299999998 57.89943699999992) (-69.13500999999991 57.89694200000008) (-69.18138099999999 57.878044000000045) (-69.20249899999999 57.86859900000013) (-69.22138999999993 57.85888699999998) (-69.26251199999996 57.83360300000004) (-69.35777300000001 57.77416200000005) (-69.36904899999996 57.76525100000009) (-69.36389200000002 57.765830999999935) (-69.33972199999994 57.77332300000006) (-69.30499299999997 57.78665900000004) (-69.29834 57.78943600000014) (-69.21028099999995 57.8294370000001) (-69.19082599999996 57.84054600000002) (-69.172775 57.851661999999976) (-69.1119379999999 57.88582599999995) (-68.96528599999988 57.933876) (-68.90417500000001 57.94971500000008) (-68.69572399999998 57.9877130000001) (-68.67889400000001 57.9897160000001) (-68.66738899999996 57.99038300000001) (-68.63472000000002 57.988879999999995) (-68.62239099999988 57.98937999999998) (-68.54527299999995 58.000549000000035) (-68.49583399999995 58.013329) (-68.41694599999994 58.034439000000134) (-68.40417500000001 58.03971900000005) (-68.31361400000003 58.103049999999996) (-68.30888399999998 58.10804700000011) (-68.30499299999991 58.11388400000004) (-68.30249000000003 58.119155999999975) (-68.29998799999993 58.12748700000009) (-68.30027799999988 58.13249200000013) (-68.30471799999998 58.14638499999995) (-68.30555700000002 58.14999399999999) (-68.30722000000003 58.16443600000014) (-68.306107 58.181107) (-68.30526700000001 58.18610400000006) (-68.30110200000001 58.19804399999998) (-68.29527300000001 58.209991000000116) (-68.28416400000003 58.21998600000006) (-68.23083500000001 58.26888300000013) (-68.18582200000003 58.36054999999999) (-68.16833500000001 58.414711000000125) (-68.16665599999999 58.424438000000066) (-68.166946 58.435822000000144) (-68.16999800000002 58.446655000000135) (-68.172775 58.454994) (-68.17805499999997 58.46971100000013) (-68.17832900000002 58.48027000000002) (-68.17138699999992 58.48999000000009) (-68.13917500000002 58.521103000000096) (-68.13500999999985 58.52416200000005) (-68.01306199999999 58.57360799999992) (-68.00334199999998 58.576385000000016) (-67.98332199999999 58.57305100000002) (-67.96916199999998 58.565826000000015) (-67.95916699999998 58.55804400000005) (-67.896118 58.50054899999998) (-67.89389 58.49665800000008) (-67.89222699999999 58.49137900000011) (-67.891953 58.483604000000014) (-67.89500399999991 58.47693600000002) (-67.90110800000002 58.46720900000008) (-67.908051 58.45804600000008) (-67.914444 58.45332300000007) (-67.91944899999993 58.445540999999935) (-67.920837 58.43943000000007) (-67.92416399999996 58.41276600000009) (-67.92332499999992 58.40304600000002) (-67.90833999999995 58.360825000000034) (-67.906113 58.356941000000006) (-67.90361000000001 58.35360700000001) (-67.89334099999996 58.34665699999999) (-67.86805699999996 58.33221400000008) (-67.86416600000001 58.32888000000008) (-67.85749800000002 58.32027399999998) (-67.89450099999993 58.28716300000008) (-67.89665999999988 58.28115800000006) (-67.90449499999994 58.26766200000003) (-67.91332999999992 58.25616100000002) (-67.91934199999997 58.250159999999994) (-67.92633099999995 58.245491000000015) (-67.93482999999998 58.241161000000034) (-67.946999 58.235992000000124) (-67.97499099999999 58.22099300000002) (-68.04750100000001 58.170547000000056) (-68.06582600000002 58.1594310000001) (-68.09583999999995 58.13860299999999) (-68.10110500000002 58.13304900000003) (-68.12748699999992 58.084717000000126) (-68.12998999999996 58.07888000000014) (-68.12832599999996 58.073608000000036) (-68.12554899999998 58.071105999999986) (-68.11582899999996 58.071938000000046) (-68.10110500000002 58.07777399999998) (-68.00666799999993 58.131935000000055) (-67.99166899999994 58.146103000000096) (-67.97833300000002 58.16360500000013) (-67.87694499999998 58.24305000000004) (-67.80139200000002 58.296661000000086) (-67.81555199999997 58.30888399999998) (-67.82389799999987 58.31721500000003) (-67.82917800000001 58.32638500000007) (-67.83056599999992 58.33138300000007) (-67.828888 58.349716000000114) (-67.81973299999987 58.39360800000003) (-67.81723 58.40526600000004) (-67.81332399999991 58.416100000000085) (-67.78750599999995 58.46443900000003) (-67.78306600000002 58.46804800000007) (-67.7750089999999 58.47109999999998) (-67.76445000000001 58.47054300000008) (-67.72389199999998 58.458885000000066) (-67.66944899999999 58.431938000000116) (-67.66749600000003 58.42748999999998) (-67.66999800000002 58.42193599999996) (-67.67999299999997 58.41276600000009) (-67.69193999999999 58.404433999999924) (-67.69694500000003 58.399437000000034) (-67.70472699999999 58.38916000000006) (-67.737213 58.326942000000145) (-67.73889200000002 58.32083100000011) (-67.737213 58.31554399999999) (-67.73249799999996 58.311661000000015) (-67.69804399999992 58.28499599999998) (-67.66082799999998 58.26444200000003) (-67.64611799999994 58.25332600000007) (-67.64277599999991 58.248604) (-67.65249599999999 58.21471400000013) (-67.65417500000001 58.21054800000002) (-67.72860700000001 57.97665400000005) (-67.71389799999986 57.923050000000046) (-67.71028100000001 57.97554800000006) (-67.70834399999995 57.98249100000004) (-67.65943899999996 58.11027500000006) (-67.65360999999996 58.122765000000015) (-67.64527899999996 58.13443799999999) (-67.591949 58.200829) (-67.57833900000003 58.21527100000003) (-67.56610099999995 58.223602000000085) (-67.48138399999993 58.27388000000008) (-67.46665999999999 58.27971600000012) (-67.33277900000002 58.31610100000006) (-67.17222599999991 58.37638099999998) (-67.16860999999994 58.3780440000001) (-67.15194699999995 58.376656000000025) (-67.13751200000002 58.373046999999985) (-67.11665299999999 58.36332700000008) (-67.10694899999999 58.3555530000001) (-67.09555099999994 58.348877000000016) (-67.09056099999998 58.35054800000006) (-66.995834 58.43943000000007) (-66.991669 58.445267) (-66.98998999999998 58.45138500000013) (-66.98666400000002 58.45804600000008) (-66.978882 58.468323000000055) (-66.95140100000003 58.49860399999994) (-66.94415300000003 58.50193799999994) (-66.92805499999997 58.50166300000012) (-66.88722199999995 58.4855500000001) (-66.87693799999994 58.479156000000046) (-66.87554899999986 58.47387700000007) (-66.87805200000003 58.46859699999999) (-66.80110199999996 58.47360200000003) (-66.62971499999998 58.50360900000004) (-66.65167199999996 58.54277000000013) (-66.551941 58.71138000000002) (-66.46972700000003 58.81638300000003) (-66.465012 58.81999200000001) (-66.38861099999997 58.85054800000012) (-66.36665299999993 58.848044999999956) (-66.35777300000001 58.84609999999998) (-66.34999099999993 58.84304800000007) (-66.35028099999994 58.83721200000002) (-66.34889199999998 58.83194000000009) (-66.34416199999993 58.82777399999998) (-66.11471599999993 58.69971499999997) (-66.10611 58.68498999999997) (-66.077225 58.654434000000094) (-66.07223499999992 58.650825999999995) (-66.06777999999991 58.64888000000008) (-66.05416899999994 58.64610299999998) (-65.94554099999993 58.61693600000007) (-65.93888899999996 58.61388399999993) (-65.93582200000003 58.60971800000004) (-65.93582200000003 58.604713000000004) (-65.93859899999995 58.594437000000084) (-65.94193999999999 58.58277099999992) (-66.02194199999997 58.48693800000001) (-66.08944699999995 58.365273) (-66.091385 58.358887000000095) (-66.091385 58.35416400000008) (-66.073059 58.32721700000002) (-66.06555200000003 58.32027399999998) (-66.05888399999998 58.32027399999998) (-66.05277999999993 58.34693900000002) (-66.05139200000002 58.35249300000004) (-66.04554699999994 58.363052000000096) (-66.04167199999995 58.368050000000096) (-66.03056299999997 58.37638099999998) (-66.02305599999994 58.379714999999976) (-66.01501499999995 58.381935) (-65.98805199999998 58.38443799999999) (-65.979172 58.38610799999992) (-65.97277799999995 58.38804600000009) (-65.965012 58.39193699999993) (-65.9602809999999 58.39610300000004) (-65.92027299999995 58.44582400000013) (-65.920837 58.449432) (-65.92666600000001 58.45609999999999) (-65.93221999999997 58.458885000000066) (-65.94027699999998 58.46166199999993) (-65.96166999999997 58.46471400000007) (-65.98055999999991 58.47026800000003) (-65.98249799999996 58.4741590000001) (-65.98194899999993 58.480545000000006) (-65.98055999999991 58.48304700000011) (-65.88751200000002 58.57777400000003) (-65.88417099999998 58.580826000000116) (-65.87693799999988 58.58194000000009) (-65.87998999999996 58.62721300000004) (-65.94554099999993 58.66526799999997) (-66.03222699999998 58.710548000000074) (-66.10139499999997 58.77110300000004) (-66.103882 58.77360499999992) (-66.081955 58.80971500000004) (-66.03721599999994 58.85166200000009) (-65.99011199999995 58.85266100000001) (-65.98495499999996 58.85149400000006) (-65.95227799999986 58.83682299999998) (-65.84583999999995 58.826660000000004) (-65.839722 58.827217000000076) (-65.79750100000001 58.847488000000055) (-65.79277000000002 58.85332500000004) (-65.79028299999999 58.85777300000001) (-65.78944399999995 58.86193800000001) (-65.791382 58.865829000000076) (-65.79499800000002 58.86693600000001) (-65.80610699999994 58.866660999999965) (-65.833328 58.86471599999999) (-65.86193800000001 58.86332700000003) (-65.88027999999991 58.864441) (-65.94044500000001 58.87910500000004) (-65.952606 58.88126799999992) (-65.95811500000002 58.88293500000003) (-65.96477500000003 58.88744000000008) (-65.96827699999989 58.893440000000055) (-65.98860200000001 58.90360300000003) (-65.885559 59.00193800000005) (-65.77749599999999 59.029990999999995) (-65.69526699999989 59.04361000000006) (-65.67304999999999 59.046104000000014) (-65.660278 59.044159000000036) (-65.65417499999995 59.042496000000085) (-65.6346739999999 59.03321799999998) (-65.63249200000001 59.031216000000086) (-65.61416600000001 59.01944000000009) (-65.56500199999994 58.99360700000011) (-65.51445000000001 58.98471800000004) (-65.5 58.98333000000014) (-65.49499499999996 58.98471800000004) (-65.49333200000001 58.98749500000014) (-65.49499499999996 58.99193600000007) (-65.50944499999997 59.008331) (-65.51640299999997 59.01082600000001) (-65.533615 59.014717000000076) (-65.54305999999997 59.01554900000002) (-65.55305499999997 59.017494) (-65.56082200000003 59.020827999999995) (-65.57138800000001 59.03910800000011) (-65.57289100000003 59.04410600000011) (-65.570221 59.045773) (-65.56805400000002 59.04677600000002) (-65.53277600000001 59.063881000000094) (-65.51861600000001 59.06666600000011) (-65.51028400000001 59.066940000000045) (-65.50639299999995 59.06638299999997) (-65.49249299999997 59.061378000000104) (-65.45472699999999 59.0422210000001) (-65.34028599999999 59.03833000000003) (-65.33056599999998 59.03804800000012) (-65.32472199999995 59.0388870000001) (-65.31750499999998 59.04138200000011) (-65.31973299999999 59.04721799999999) (-65.333618 59.05999000000003) (-65.34472699999998 59.06471299999998) (-65.35417199999995 59.06749700000012) (-65.53355399999992 59.07766300000014) (-65.53687999999994 59.074665000000095) (-65.54672199999999 59.07183100000009) (-65.56438399999996 59.07016399999998) (-65.57705699999997 59.06999600000012) (-65.58406100000002 59.07099900000014) (-65.58656300000001 59.072159000000056) (-65.651947 59.07916300000011) (-65.71501199999994 59.14833100000004) (-65.71806299999997 59.153046000000074) (-65.74082900000002 59.21471400000007) (-65.74249299999991 59.219437000000084) (-65.74305699999996 59.228043000000014) (-65.74499500000002 59.25972000000013) (-65.74471999999997 59.263054000000125) (-65.74305699999996 59.26583099999999) (-65.73194899999999 59.26906600000001) (-65.70666499999999 59.26832600000006) (-65.68527199999988 59.26444200000003) (-65.67610200000001 59.261108000000036) (-65.646118 59.244713000000104) (-65.58750900000001 59.20249200000012) (-65.612503 59.23749500000008) (-65.61471599999987 59.243607000000054) (-65.61416600000001 59.24694100000005) (-65.58168 59.37721300000004) (-65.57250999999997 59.378601) (-65.57000699999998 59.37832600000013) (-65.551941 59.37276500000007) (-65.49916099999996 59.352219000000105) (-65.48332199999993 59.345542999999964) (-65.47610500000002 59.33888200000007) (-65.47111499999994 59.32749200000001) (-65.45333899999997 59.31693999999999) (-65.383896 59.28166199999998) (-65.372772 59.276657000000114) (-65.36665299999987 59.27499399999999) (-65.36111499999987 59.274712000000136) (-65.35722399999997 59.277214000000015) (-65.35665899999992 59.28276800000003) (-65.43777499999999 59.39388300000002) (-65.49526999999989 59.433876000000055) (-65.55943300000001 59.48165899999998) (-65.56138599999997 59.48610700000012) (-65.55749500000002 59.48777000000007) (-65.54943800000001 59.48943300000002) (-65.54222099999998 59.48999000000009) (-65.36000099999995 59.48165899999998) (-65.347778 59.48082000000005) (-65.260559 59.466385000000116) (-65.19766199999998 59.45049300000005) (-65.195831 59.447659000000044) (-65.176941 59.440269) (-65.17027300000001 59.434433000000126) (-65.141953 59.41582500000004) (-65.12666300000001 59.40776800000009) (-65.11999500000002 59.40526600000004) (-65.060272 59.3844380000001) (-65.04138199999994 59.378601) (-65.01777599999997 59.373046999999985) (-65.00584400000002 59.37193300000001) (-64.995544 59.372490000000084) (-64.98332199999993 59.37638099999998) (-65.03138699999994 59.392769000000044) (-65.07583599999998 59.40804300000008) (-65.11111499999998 59.42054699999994) (-65.11888099999999 59.42388200000005) (-65.14111300000002 59.434433000000126) (-65.14723199999997 59.43804200000011) (-65.15139799999997 59.44304699999998) (-65.15638699999994 59.45165999999995) (-65.15899699999989 59.46082700000011) (-65.16194200000001 59.466660000000104) (-65.16805999999997 59.47054300000002) (-65.22084000000001 59.48832700000014) (-65.29083299999996 59.50666000000001) (-65.30860899999993 59.50999500000006) (-65.33000199999987 59.50943799999999) (-65.38890100000003 59.50750000000005) (-65.41166699999997 59.50943799999999) (-65.41999800000002 59.516936999999984) (-65.46278399999989 59.57804900000002) (-65.49415599999998 59.626937999999996) (-65.50167799999991 59.63888500000013) (-65.52778599999999 59.71693399999998) (-65.50195299999996 59.7472150000001) (-65.43331899999998 59.79804999999993) (-65.37499999999994 59.828049000000135) (-65.33555599999994 59.84665700000005) (-65.33389299999993 59.84721400000012) (-65.323624 59.84554300000008) (-65.23611499999998 59.81938199999996) (-65.21945199999999 59.81437700000009) (-65.20594799999998 59.80854800000009) (-65.20344499999993 59.80688100000003) (-65.19877599999995 59.80287900000002) (-65.19528199999996 59.79721800000004) (-65.158615 59.78221100000002) (-65.15278599999999 59.779990999999995) (-65.136124 59.776657) (-65.05305499999997 59.76361100000008) (-65.03306599999996 59.76138300000014) (-65.00666799999999 59.76027700000009) (-64.98860200000001 59.76194000000004) (-64.98388699999998 59.76277199999993) (-64.98306300000002 59.76416000000006) (-64.98916599999995 59.765831000000105) (-65.05555699999996 59.7783280000001) (-65.13276699999994 59.79694400000011) (-65.16139199999998 59.817490000000134) (-65.19939399999993 59.83565900000008) (-65.20271300000002 59.83732600000002) (-65.20605499999999 59.8404920000001) (-65.23083500000001 59.88054699999998) (-65.23194899999999 59.88582600000012) (-65.22610499999996 59.888603000000046) (-65.20639 59.888603000000046) (-65.14334099999991 59.94999700000011) (-65.12609899999995 60.011108000000036) (-65.11000100000001 60.043052999999986) (-65.02972399999993 60.07721700000002) (-64.92111199999994 60.19499200000001) (-64.83416699999998 60.32305100000008) (-64.83222999999992 60.32860599999998) (-64.83444199999997 60.334434999999985) (-64.84638999999993 60.345543000000134) (-64.85833699999995 60.35249299999998) (-64.85722399999997 60.35943600000002) (-64.854446 60.36110700000006) (-64.846115 60.362769999999955) (-64.83555599999994 60.36332700000008) (-64.65306099999998 60.34693900000002) (-64.6416779999999 60.34471100000002) (-64.61027499999994 60.33638000000013) (-64.57667499999997 60.322768999999994) (-64.53324900000001 60.302498000000014) (-64.47560099999998 60.281609) (-64.46691900000002 60.278602999999976) (-64.43109099999998 60.25810599999994) (-64.432594 60.25560800000005) (-64.43460099999993 60.255108000000064) (-64.44609100000002 60.254771999999946) (-64.45309399999991 60.25627100000003) (-64.46242499999994 60.25927399999995) (-64.47759199999996 60.26560999999998) (-64.47721899999999 60.260551000000135) (-64.55749500000002 60.28110500000008) (-64.58029199999993 60.28611000000012) (-64.61305199999998 60.28943600000014) (-64.64306599999998 60.28749800000003) (-64.72111499999994 60.261108000000036) (-64.72582999999997 60.25833100000011) (-64.75805699999995 60.23582500000009) (-64.75944500000003 60.231102000000135) (-64.75250199999988 60.22860000000003) (-64.74526999999995 60.22832500000004) (-64.73693799999995 60.23054500000006) (-64.68554699999999 60.250832000000116) (-64.646118 60.26583099999999) (-64.63417099999998 60.26888300000007) (-64.59638999999999 60.26693700000004) (-64.57444800000002 60.2649990000001) (-64.554169 60.26277200000004) (-64.53639199999992 60.2586060000001) (-64.42167699999999 60.215656000000024) (-64.41950199999997 60.213661) (-64.376938 60.16054500000001) (-64.46501199999994 60.084991) (-64.46916199999987 60.08277099999998) (-64.476944 60.07972000000001) (-64.49137899999994 60.07471499999991) (-64.50445599999995 60.07249500000012) (-64.515015 60.071938000000046) (-64.65499899999992 60.053604000000064) (-64.80471799999998 60.00721699999997) (-64.8125 60.004166) (-64.82333399999999 59.99777200000011) (-64.82667500000002 59.99471299999993) (-64.82749899999999 59.98638200000005) (-64.82000700000003 59.97943100000009) (-64.811935 59.9783250000001) (-64.79666099999997 59.980270000000075) (-64.73527499999994 60.00110600000011) (-64.4908289999999 60.05943300000007) (-64.41027799999995 60.11110700000012) (-64.39639299999999 60.12193300000001) (-64.39222699999999 60.124161000000015) (-64.38583399999993 60.12526700000001) (-64.37999000000002 60.12526700000001) (-64.37388599999997 60.123604000000114) (-64.36776699999996 60.11971300000005) (-64.366104 60.117493000000024) (-64.36500499999994 60.109993000000145) (-64.37461100000002 60.03382900000008) (-64.37528199999986 60.028324000000055) (-64.39472999999998 59.941658000000075) (-64.39695699999993 59.93776700000001) (-64.40888999999999 59.932495000000074) (-64.45056199999993 59.92527000000001) (-64.46221899999995 59.92249300000009) (-64.49194299999999 59.91360500000013) (-64.506958 59.907211000000075) (-64.514725 59.9019320000001) (-64.51390100000003 59.896103000000096) (-64.506393 59.891936999999984) (-64.499435 59.89166300000005) (-64.48194899999987 59.89471400000008) (-64.37609899999995 59.9180530000001) (-64.36776699999996 59.92027300000012) (-64.36332700000003 59.92249300000009) (-64.36054999999993 59.924995000000024) (-64.32028199999996 60.004107999999974) (-64.32211299999994 60.006439000000114) (-64.32412 60.01160400000009) (-64.32428699999997 60.014107000000024) (-64.32211299999994 60.02460500000001) (-64.32044999999994 60.027270999999985) (-64.31744399999991 60.028103000000044) (-64.26501499999995 60.0480500000001) (-64.21665999999993 60.039993000000095) (-64.17361499999998 60.028328000000045) (-64.166946 60.02499400000005) (-64.16082799999998 60.01638800000012) (-64.150284 59.985268000000076) (-64.150284 59.982208000000014) (-64.16583300000002 59.85054800000012) (-64.17721599999993 59.785552999999936) (-64.1808319999999 59.7816620000001) (-64.19305399999996 59.775825999999995) (-64.20249899999993 59.77416199999999) (-64.22000099999997 59.77416199999999) (-64.23666400000002 59.77971600000001) (-64.24472000000003 59.784996000000035) (-64.25140399999998 59.78749800000014) (-64.25750700000003 59.78943600000008) (-64.26194800000002 59.789161999999976) (-64.26445000000001 59.78749800000014) (-64.266663 59.77915999999999) (-64.261124 59.76471700000013) (-64.25500499999993 59.756660000000124) (-64.21305799999999 59.7177660000001) (-64.197769 59.7052690000001) (-64.17388899999997 59.688598999999954) (-64.16389499999997 59.68415800000008) (-64.15167200000002 59.68082400000009) (-64.12998999999996 59.676659000000086) (-64.05776999999995 59.62526700000012) (-64.11694299999994 59.517494000000056) (-64.04750100000001 59.549721000000034) (-64.04083300000002 59.55360400000001) (-64.03332499999999 59.56388099999998) (-64.0344389999999 59.57360800000009) (-64.0344389999999 59.58277100000009) (-64.02972399999987 59.599433999999974) (-64.024719 59.60999300000003) (-64.01945499999994 59.61859900000013) (-64.01112399999994 59.62499200000008) (-64.00473 59.626381000000094) (-63.99722300000002 59.62665600000014) (-63.90055099999995 59.61998700000004) (-63.885559 59.618881000000044) (-63.87610599999999 59.615829000000076) (-63.865554999999915 59.60999300000003) (-63.73166699999996 59.526099999999985) (-63.724166999999966 59.5177690000001) (-63.72249599999998 59.51388500000007) (-63.723884999999996 59.50666000000001) (-63.785278000000005 59.426102000000014) (-63.80783799999995 59.420437000000106) (-63.81017299999996 59.41944100000012) (-63.814502999999945 59.418101999999976) (-63.86639399999996 59.421104000000014) (-63.90694400000001 59.421660999999915) (-63.947776999999974 59.41971600000011) (-64.000565 59.41443600000008) (-64.01834100000002 59.41054500000001) (-64.03332499999999 59.40665400000012) (-64.05027799999999 59.399994000000106) (-64.06111099999998 59.39388300000002) (-64.06582600000002 59.38804600000003) (-64.06221 59.38249200000007) (-64.05277999999998 59.37943300000006) (-63.805167999999924 59.36816400000009) (-63.79014599999999 59.370293000000004) (-63.786652000000004 59.371792000000084) (-63.78264999999999 59.3741260000001) (-63.75139599999994 59.37582400000008) (-63.748111999999935 59.333878000000084) (-63.75644699999998 59.30838) (-63.768280000000004 59.28788000000003) (-63.77044699999999 59.284381999999994) (-63.77344499999998 59.28221500000012) (-63.780944999999974 59.27821399999999) (-63.81416299999995 59.249435000000005) (-63.82472200000001 59.24610100000001) (-63.82549999999998 59.24437700000004) (-63.82527899999991 59.24332400000009) (-63.81388900000002 59.240829000000076) (-63.77794299999999 59.26393899999999) (-63.76677699999999 59.264275000000055) (-63.760940999999946 59.26543400000003) (-63.755942999999945 59.266773) (-63.739112999999975 59.27360500000003) (-63.730441999999925 59.28076900000002) (-63.723777999999925 59.287436999999954) (-63.71877699999993 59.293941000000075) (-63.71611399999989 59.3009340000001) (-63.71527900000001 59.303768000000105) (-63.71527900000001 59.30643800000007) (-63.71594199999987 59.30943700000006) (-63.713775999999996 59.315605000000005) (-63.71060899999986 59.318107999999995) (-63.65833299999997 59.358047) (-63.64999399999999 59.36249499999997) (-63.54305999999991 59.34804500000007) (-63.53527799999995 59.34443699999997) (-63.39333299999993 59.2649990000001) (-63.357506 59.20804600000008) (-63.35639200000003 59.204994) (-63.35805499999992 59.19804399999998) (-63.36666100000002 59.18637799999999) (-63.412773000000016 59.135826000000066) (-63.42556000000002 59.12638100000004) (-63.441108999999926 59.119438) (-63.476944 59.10443900000013) (-63.56361399999997 59.07332600000012) (-63.58000199999992 59.06749700000012) (-63.58972199999994 59.06554399999999) (-63.73139200000003 59.05627099999998) (-63.74105500000002 59.05577099999999) (-63.74872199999993 59.056934000000126) (-63.753890999999896 59.058266) (-63.76022299999994 59.06276700000012) (-63.81221799999997 59.06582600000007) (-63.934440999999936 59.081108000000086) (-63.94833399999999 59.07888000000014) (-63.966110000000015 59.07471499999997) (-63.98833499999995 59.06832900000006) (-64.045547 59.02416199999999) (-64.04722599999991 59.01944000000009) (-64.04388399999999 59.01527399999998) (-64.03944399999995 59.013885000000016) (-63.912216 59.000549000000035) (-63.80171999999999 59.013992000000144) (-63.798388999999986 59.01132999999999) (-63.766395999999986 59.0127720000001) (-63.75944499999997 59.01249700000005) (-63.73444399999994 59.01499899999999) (-63.50805700000001 59.05277300000006) (-63.38166799999988 59.09804500000013) (-63.37277199999994 59.10110499999996) (-63.365554999999915 59.10110499999996) (-63.30944099999999 59.09415400000006) (-63.29333500000001 59.091377000000136) (-63.13417099999998 59.05832700000008) (-63.12499999999994 59.055267000000015) (-63.12194099999999 59.0513840000001) (-63.122772 59.04554700000011) (-63.12694499999992 59.04138200000011) (-63.13333099999994 59.03804800000012) (-63.15943899999991 59.029990999999995) (-63.17527799999999 59.026939000000084) (-63.185272 59.026381999999955) (-63.21694200000002 59.02748900000012) (-63.23889200000002 59.03054800000007) (-63.32333399999993 59.02777100000014) (-63.336112999999955 59.02499400000005) (-63.335556 59.0219350000001) (-63.26445000000001 58.98554999999999) (-63.21388999999999 58.977211000000125) (-63.19527399999998 58.979713000000004) (-63.185272 58.980270000000075) (-63.17305799999991 58.979713000000004) (-63.16750300000001 58.97082500000005) (-63.16055299999999 58.92638400000004) (-63.16305499999993 58.92027300000012) (-63.23638900000003 58.876937999999996) (-63.313331999999946 58.861107000000004) (-63.325004999999976 58.85582700000009) (-63.31277499999999 58.853049999999996) (-63.294723999999974 58.85083000000003) (-63.19027699999998 58.854996000000085) (-63.11277799999999 58.87804399999999) (-63.03333299999997 58.873878000000104) (-62.924170999999944 58.82138100000003) (-62.918334999999956 58.817497) (-62.90694400000001 58.80471) (-62.90416700000003 58.79999500000014) (-62.84749599999998 58.69054399999999) (-62.84527600000001 58.68498999999997) (-62.84222399999999 58.669991000000095) (-62.84361299999995 58.659430999999984) (-62.84777799999995 58.65304599999996) (-62.91583299999991 58.60027299999996) (-62.97499800000003 58.57666000000006) (-63.169167000000016 58.50305200000014) (-63.334109999999896 58.455768999999975) (-63.33460999999994 58.45227100000011) (-63.33710899999994 58.448437000000126) (-63.373444000000006 58.41743500000007) (-63.38528100000002 58.41027100000008) (-63.39910900000001 58.40527300000008) (-63.486388999999974 58.37082700000002) (-63.52249899999998 58.36110700000012) (-63.53750600000001 58.35416400000008) (-63.58306099999999 58.31137800000005) (-63.58777600000002 58.30554999999998) (-63.58943899999997 58.30082700000014) (-63.584998999999925 58.29888199999999) (-63.57972699999999 58.29860699999995) (-63.571670999999924 58.29999500000008) (-63.55527499999994 58.305267000000015) (-63.53305799999998 58.31443800000011) (-63.428223 58.36904900000013) (-63.39238699999993 58.38838199999998) (-63.37855899999994 58.399044) (-63.36421999999993 58.410049000000015) (-63.35155500000002 58.41871600000002) (-63.28639199999998 58.456657000000064) (-63.28082999999998 58.459160000000054) (-63.26472499999994 58.46305100000012) (-63.241669 58.466385000000116) (-63.213615000000004 58.46943700000003) (-63.148612999999955 58.47637900000012) (-63.13277399999987 58.47721100000007) (-63.12444299999987 58.47526600000003) (-63.096947 58.46193699999998) (-63.08972199999994 58.45832799999994) (-63.08611300000001 58.454994) (-63.03750600000001 58.453048999999965) (-62.76333599999998 58.48082000000005) (-62.63666499999994 58.50138900000002) (-62.620551999999975 58.50499700000012) (-62.61000100000001 58.50388299999997) (-62.58943899999997 58.49971800000014) (-62.57361599999996 58.49388099999999) (-62.566108999999926 58.49054699999999) (-62.56138599999997 58.48749500000008) (-62.557503 58.482491000000095) (-62.556389000000024 58.47804300000013) (-62.61971999999997 58.37693800000005) (-62.61944599999998 58.310272000000055) (-62.623054999999965 58.30443600000001) (-62.63417099999998 58.29777500000006) (-62.70861100000002 58.27610000000004) (-62.77666499999998 58.26859999999999) (-62.828056000000004 58.25222000000008) (-62.661666999999966 58.26998900000001) (-62.65860700000002 58.27027100000004) (-62.65444200000002 58.27027100000004) (-62.60972599999997 58.25666000000007) (-62.597778000000005 58.25166300000001) (-62.592772999999966 58.248604) (-62.58250399999986 58.23443600000013) (-62.58111600000001 58.22193100000004) (-62.58277899999996 58.216934000000094) (-62.58444199999997 58.214439000000084) (-62.631942999999865 58.18526500000013) (-62.63805400000001 58.181938) (-62.653053 58.17527000000001) (-62.661384999999996 58.17304999999999) (-62.68916300000001 58.16999100000004) (-62.71971899999994 58.169715999999994) (-62.74027999999993 58.17193600000002) (-62.773887999999886 58.176941000000056) (-62.78388999999993 58.17665900000003) (-62.822227 58.17471300000011) (-62.84166699999997 58.1722180000001) (-62.96500400000002 58.15387700000008) (-63.01222199999995 58.13555100000008) (-63.01666299999994 58.126098999999954) (-63.023888 58.11888099999999) (-63.045279999999934 58.10888699999998) (-63.12694499999992 58.08693699999998) (-63.205558999999994 58.06582600000007) (-63.21166999999997 58.06249200000008) (-63.211388 58.06027200000011) (-63.20889299999999 58.057770000000005) (-63.19027699999998 58.05304700000005) (-63.14083899999997 58.04888200000005) (-63.146998999999994 58.03683100000001) (-63.15582999999998 58.026939000000084) (-63.16777799999994 58.02110300000004) (-63.193329000000006 58.01471700000013) (-63.26722000000001 58.007217000000026) (-63.27527599999996 58.00555400000013) (-63.30471799999998 57.996940999999936) (-63.34166699999997 57.98110200000002) (-63.34083599999997 57.97998800000005) (-63.32972699999999 57.98027000000013) (-63.15166499999998 57.993607) (-63.12888299999997 57.997772) (-63.10777999999999 58.0077740000001) (-63.101944 58.01249700000011) (-63.09888499999994 58.017769000000044) (-63.097778000000005 58.01971400000002) (-63.09833500000002 58.026939000000084) (-63.09999800000003 58.03305100000006) (-63.101944 58.036942000000124) (-63.1016689999999 58.044159000000036) (-63.097778000000005 58.052216000000044) (-63.09471899999994 58.05749500000002) (-63.089164999999866 58.06221000000005) (-62.946662999999944 58.124161000000015) (-62.940276999999924 58.12582400000014) (-62.886390999999946 58.137496999999996) (-62.83805100000001 58.144997000000046) (-62.832222 58.14527099999998) (-62.82944500000002 58.143326) (-62.77277399999997 58.12915800000013) (-62.652221999999995 58.118599000000074) (-62.64611100000002 58.119155999999975) (-62.643058999999994 58.11998699999998) (-62.61250299999995 58.137771999999984) (-62.59944200000001 58.145546000000024) (-62.560828999999956 58.156654) (-62.515838999999914 58.16915899999992) (-62.49194299999999 58.17416399999996) (-62.46665999999999 58.175552000000096) (-62.45278199999996 58.17527000000001) (-62.44805100000002 58.1722180000001) (-62.44638800000001 58.16832700000003) (-62.44777699999992 58.16415400000005) (-62.46300099999996 58.15104700000006) (-62.46966600000002 58.145718000000045) (-62.47833300000002 58.14121200000005) (-62.48616800000002 58.136547000000064) (-62.50389099999995 58.123604000000114) (-62.519447000000014 58.11193799999995) (-62.529166999999916 58.10277600000006) (-62.531386999999995 58.09526800000003) (-62.51445000000001 58.05749500000002) (-62.506392999999946 58.05526700000007) (-62.49805499999991 58.057213000000104) (-62.49138599999992 58.061378000000104) (-62.48666400000002 58.066940000000045) (-62.48444399999994 58.07222000000013) (-62.48555799999991 58.081107999999915) (-62.488051999999925 58.08610500000003) (-62.48889199999991 58.09110300000003) (-62.488051999999925 58.09665700000005) (-62.48277299999995 58.10027300000007) (-62.444827999999916 58.10672000000005) (-62.41305499999993 58.11082500000009) (-62.375 58.11277000000007) (-62.368889000000024 58.11166400000002) (-62.36389200000002 58.108604000000014) (-62.31777999999997 58.05248999999998) (-62.30750299999988 58.039161999999976) (-62.30694599999998 58.03110499999997) (-62.30972299999996 58.02860300000009) (-62.38144699999998 58.008327000000065) (-62.39411200000001 58.00365800000009) (-62.40628099999998 58.00282700000008) (-62.41311300000001 58.00365800000009) (-62.43761399999988 58.0101590000001) (-62.45044300000001 58.01199300000013) (-62.50083899999993 58.00804900000014) (-62.51916499999993 58.00694300000009) (-62.52833599999997 58.00555400000013) (-62.545279999999934 58.000549000000035) (-62.648056 57.95832800000005) (-62.65527300000002 57.95360599999998) (-62.65972099999999 57.94860100000011) (-62.672774999999945 57.929993000000024) (-62.664443999999946 57.928604000000064) (-62.65527300000002 57.929993000000024) (-62.64083899999997 57.93526499999996) (-62.636116000000015 57.938598999999954) (-62.620833999999945 57.94748700000014) (-62.611670999999944 57.95166000000006) (-62.57749899999999 57.96221200000008) (-62.53778099999988 57.97110000000009) (-62.51250499999992 57.972488) (-62.45516599999996 57.96821200000005) (-62.448001999999974 57.96770899999996) (-62.32500499999992 57.956100000000106) (-62.268332999999984 57.948875000000044) (-62.200278999999966 57.93582200000009) (-62.148888 57.97499099999993) (-62.145279000000016 57.97415900000004) (-62.12749500000001 57.968048000000124) (-62.11611199999999 57.96249399999999) (-62.08361099999996 57.94499200000013) (-62.079726999999934 57.942763999999954) (-62.072227 57.931107000000054) (-62.05972300000002 57.89777400000003) (-62.060828999999956 57.88999200000006) (-62.06277499999993 57.88665800000007) (-62.115279999999984 57.854164000000026) (-62.13194299999998 57.84276600000004) (-62.138053999999954 57.835823000000005) (-62.13916799999993 57.83194000000009) (-62.12527499999999 57.806938) (-62.12083399999989 57.80082700000008) (-62.11999500000002 57.79999499999997) (-62.10777999999999 57.789719000000105) (-62.08916499999998 57.780548000000124) (-62.085830999999985 57.77943399999998) (-62.079169999999976 57.77943399999998) (-62.061110999999926 57.78193699999997) (-62.04639400000002 57.78582800000004) (-62.033332999999914 57.787216000000114) (-62.01805899999994 57.78360700000013) (-61.996666000000005 57.77221700000007) (-61.99138599999992 57.7677690000001) (-61.88999899999999 57.66638200000011) (-61.883331 57.64554600000008) (-61.88305700000001 57.63749700000011) (-61.88444499999997 57.62693800000005) (-61.88861099999997 57.622490000000084) (-61.89805599999994 57.616386000000034) (-62.07167099999998 57.56360599999999) (-62.1922229999999 57.535828000000095) (-62.30860899999999 57.49054699999999) (-62.42138699999998 57.48220799999996) (-62.43194599999987 57.48471799999999) (-62.531113000000005 57.506943000000035) (-62.54138899999998 57.50750000000011) (-62.544723999999974 57.504440000000045) (-62.545279999999934 57.50110600000005) (-62.533332999999914 57.49221800000009) (-62.52055399999995 57.48499300000003) (-62.46444699999995 57.4544370000001) (-62.457222 57.4511030000001) (-62.37722000000002 57.42193600000002) (-62.36527999999993 57.419715999999994) (-62.35388899999998 57.41832699999998) (-62.33583099999993 57.41944099999995) (-62.230552999999986 57.44360400000011) (-62.17333199999996 57.46360800000002) (-62.167220999999984 57.464439000000084) (-62.060828999999956 57.45638300000002) (-62.03972599999997 57.453323000000125) (-61.891388000000006 57.41193400000003) (-61.816948000000025 57.37693800000011) (-61.803054999999915 57.369155999999975) (-61.80139199999991 57.363052000000096) (-61.803054999999915 57.358887000000095) (-61.86389200000002 57.28555300000011) (-61.89416499999999 57.26944000000009) (-61.93749999999994 57.25222000000008) (-61.944999999999936 57.250832) (-61.953888000000006 57.24943500000006) (-61.99777999999998 57.25638600000002) (-62.01721999999995 57.25694300000009) (-62.02638999999999 57.25582900000012) (-62.02361300000001 57.25166300000001) (-62.01583900000003 57.24305000000004) (-62.00500499999987 57.23665599999998) (-61.85889400000002 57.16777000000013) (-61.85250099999996 57.16526800000008) (-61.664444 57.14388300000007) (-61.65555599999999 57.143051000000014) (-61.56555199999997 57.149719000000005) (-61.51555599999995 57.15638000000007) (-61.490837 57.1594310000001) (-61.478882 57.1594310000001) (-61.45889299999999 57.154709000000025) (-61.441665999999884 57.148604999999975) (-61.39305899999988 57.12470999999999) (-61.380279999999914 57.117210000000114) (-61.36389200000002 57.09721400000012) (-61.35833699999995 57.08749400000005) (-61.35555999999997 57.016388000000006) (-61.370833999999945 56.97860000000014) (-61.378052000000025 56.98220800000007) (-61.393332999999984 56.983047000000056) (-61.479720999999984 56.98360400000013) (-61.487777999999935 56.98165899999998) (-61.49555199999986 56.97943099999998) (-61.51639599999993 56.970267999999976) (-61.53556099999997 56.961104999999975) (-61.54666899999995 56.95443700000004) (-61.63999899999993 56.88388100000003) (-61.645003999999915 56.87832600000013) (-61.64833799999997 56.87304699999993) (-61.65083299999992 56.86693600000007) (-61.65277900000001 56.85582699999998) (-61.65277900000001 56.845543000000134) (-61.65055099999995 56.8408280000001) (-61.64611100000002 56.82694200000009) (-61.64611100000002 56.82110600000004) (-61.65027600000002 56.816666000000055) (-61.661384999999996 56.80943300000001) (-61.67639200000002 56.802773) (-61.78239100000002 56.794441000000006) (-61.79922499999992 56.79293799999999) (-61.81688699999995 56.79361) (-61.82355899999999 56.794441000000006) (-61.83455699999996 56.79610800000012) (-61.844559000000004 56.79894300000001) (-61.892226999999934 56.79860700000012) (-61.90638699999994 56.79527300000012) (-61.90860699999996 56.78916200000003) (-61.90222199999994 56.71415699999994) (-61.89999399999999 56.707214000000135) (-61.89722399999994 56.703049000000135) (-61.88999899999999 56.698044000000095) (-61.88611599999996 56.698044000000095) (-61.877776999999924 56.71305100000012) (-61.87027699999993 56.72693600000002) (-61.83366799999993 56.74199300000009) (-61.83083299999993 56.74532700000009) (-61.824996999999996 56.74682600000011) (-61.81150400000001 56.74682600000011) (-61.79333500000001 56.74682600000011) (-61.78049899999996 56.74565899999999) (-61.772834999999986 56.744160000000136) (-61.76266899999996 56.741325000000074) (-61.716392999999925 56.73804500000011) (-61.70249899999999 56.73082000000005) (-61.69694499999997 56.72470900000013) (-61.701667999999984 56.71332599999994) (-61.71055599999994 56.70555100000007) (-61.72110699999996 56.7011030000001) (-61.734443999999996 56.697212000000036) (-61.75417299999998 56.697487000000024) (-61.76500699999997 56.6988750000001) (-61.773056 56.7011030000001) (-61.798339999999996 56.710823000000005) (-61.808334 56.712212000000136) (-61.821670999999924 56.709717000000126) (-61.82500499999992 56.706657000000064) (-61.821670999999924 56.701660000000004) (-61.799171 56.682770000000005) (-61.79250300000001 56.68082400000014) (-61.73221599999994 56.66332200000011) (-61.681670999999994 56.65360300000009) (-61.67444599999993 56.65304600000002) (-61.658889999999985 56.647774000000084) (-61.649726999999984 56.641662999999994) (-61.649993999999936 56.635268999999994) (-61.65860700000002 56.62748700000003) (-61.672500999999954 56.619986999999924) (-61.68055700000002 56.618050000000096) (-61.68888900000002 56.61721000000006) (-61.699164999999994 56.61776700000013) (-61.835556 56.631660000000124) (-61.91166700000002 56.642769000000044) (-61.99277499999994 56.66027100000008) (-62.01000199999987 56.664153999999996) (-62.06694799999991 56.67860400000012) (-62.31111099999998 56.735550000000046) (-62.47999599999997 56.77388000000002) (-62.498885999999914 56.779716000000064) (-62.504448000000025 56.78360700000013) (-62.505004999999926 56.78888699999999) (-62.50194499999998 56.79193900000013) (-62.486114999999984 56.79610400000013) (-62.468886999999995 56.79860700000012) (-62.326392999999996 56.81276700000001) (-62.22749299999987 56.816666000000055) (-62.18999500000001 56.81332400000008) (-62.138335999999924 56.81082200000003) (-62.06833599999999 56.817214999999976) (-62.05944099999988 56.81860399999999) (-62.051665999999955 56.82054900000014) (-62.042502999999954 56.82694200000009) (-62.043334999999956 56.829994000000056) (-62.049445999999875 56.83249699999999) (-62.06694799999991 56.83443499999993) (-62.23472600000002 56.836937000000034) (-62.38166799999999 56.83027600000008) (-62.478606999999954 56.84665700000011) (-62.48889199999991 56.84943400000003) (-62.498885999999914 56.850548) (-62.50833899999992 56.84999800000014) (-62.51721999999995 56.84804500000001) (-62.53194400000001 56.843605000000025) (-62.54389200000003 56.83721200000002) (-62.54695099999992 56.83471700000001) (-62.57028199999996 56.79860700000012) (-62.57389099999989 56.79277000000013) (-62.53833799999995 56.775551000000064) (-62.50305899999995 56.76221499999991) (-62.35610999999989 56.72221400000012) (-62.162773000000016 56.672768000000076) (-62.02277399999997 56.62748700000003) (-62.00527999999997 56.61693600000012) (-62.11750000000001 56.623046999999985) (-62.175003000000004 56.62387799999999) (-62.23555799999997 56.62360400000006) (-62.24111199999987 56.62332200000003) (-62.23972299999997 56.61721000000006) (-62.224715999999944 56.60916100000003) (-62.1922229999999 56.60249300000004) (-62.10500300000001 56.59693900000002) (-62.04639400000002 56.59582500000005) (-62.036117999999874 56.595267999999976) (-61.901389999999935 56.58776899999998) (-61.72943900000001 56.574440000000095) (-61.71500400000002 56.57222000000007) (-61.70805399999989 56.56888600000008) (-61.70111099999997 56.56082200000009) (-61.690833999999995 56.548050000000046) (-61.66666399999997 56.540549999999996) (-61.65833299999997 56.537498000000085) (-61.65527300000002 56.533882000000006) (-61.65332799999993 56.53054800000001) (-61.652221999999995 56.52610000000004) (-61.65332799999993 56.52054600000008) (-61.656661999999926 56.51082600000001) (-61.662216 56.50610400000011) (-61.680282999999974 56.49665800000014) (-61.68916300000001 56.494713000000104) (-61.75472300000001 56.48499300000003) (-61.773056 56.48471800000004) (-61.80388599999992 56.487770000000125) (-61.878052000000025 56.49777200000011) (-61.95194200000003 56.505554000000075) (-62.038612 56.50527199999999) (-62.04695099999992 56.50471500000009) (-62.05471799999998 56.50249500000007) (-62.061668 56.499435000000005) (-62.075561999999934 56.49193600000001) (-62.08306099999993 56.48693800000001) (-62.08527399999991 56.48304699999994) (-62.082222 56.481659000000036) (-62.076667999999984 56.47998799999999) (-62.07083899999998 56.481102000000135) (-62.02417000000003 56.48443600000013) (-61.97638699999999 56.48333000000014) (-61.965278999999896 56.48193400000008) (-61.952225 56.47582200000011) (-61.94694500000003 56.471100000000035) (-61.95616499999994 56.46405000000004) (-61.95883199999997 56.461048000000005) (-61.961333999999965 56.45971700000001) (-61.966003 56.458549000000005) (-61.97983599999998 56.45555100000007) (-61.999724999999955 56.44999700000011) (-62.01028400000001 56.44999700000011) (-62.01999699999999 56.45110299999993) (-62.048888999999974 56.45721400000002) (-62.05972300000002 56.45860300000004) (-62.06999999999999 56.45916000000011) (-62.124999999999886 56.45721400000002) (-62.13999899999993 56.45221700000013) (-62.143058999999994 56.449158000000125) (-62.13916799999993 56.444709999999986) (-62.124999999999886 56.43832400000008) (-62.11750000000001 56.435546999999985) (-62.083327999999995 56.423325000000034) (-62.073059 56.420547) (-61.98472600000002 56.415268000000026) (-61.96371799999997 56.41565700000007) (-61.95688999999999 56.41782399999994) (-61.909720999999934 56.413879000000065) (-61.79805799999991 56.39527099999998) (-61.79084 56.392494000000056) (-61.661384999999996 56.27027100000009) (-61.67833299999995 56.26916100000011) (-61.679169 56.26799399999999) (-61.68683599999997 56.26699400000001) (-61.70283499999999 56.26532700000013) (-61.74999999999994 56.26132999999999) (-61.76066599999996 56.261662000000115) (-61.77216699999997 56.263493000000096) (-61.77716799999996 56.26532700000013) (-61.77967100000001 56.267494) (-61.77833599999997 56.26866100000012) (-61.77500199999997 56.268826000000104) (-61.76516699999996 56.26816200000002) (-61.756667999999934 56.26699400000001) (-61.74600199999992 56.267494) (-61.741000999999926 56.26916100000011) (-61.75361600000002 56.27304800000002) (-61.75305900000001 56.27777099999997) (-61.76999699999993 56.284163999999976) (-61.800835000000006 56.28943600000008) (-61.878608999999926 56.298607000000004) (-61.88861099999997 56.299164000000076) (-62.02972399999999 56.305267000000015) (-62.07444799999996 56.29638699999998) (-62.08000199999998 56.293610000000115) (-62.080832999999984 56.29249600000014) (-62.07611099999991 56.284996000000035) (-62.016395999999986 56.238883999999985) (-62.01167299999992 56.235825000000034) (-62.00389099999995 56.23360400000007) (-61.956947000000014 56.22082500000005) (-61.938331999999946 56.21582799999993) (-61.919448999999986 56.21221200000008) (-61.910278000000005 56.212493999999936) (-61.80205499999994 56.21638100000007) (-61.769889999999975 56.218048000000124) (-61.575004999999976 56.21693399999998) (-61.57556199999999 56.211937000000034) (-61.578612999999905 56.206940000000145) (-61.57972699999999 56.19915800000001) (-61.57527900000002 56.19609800000012) (-61.56027999999992 56.194435) (-61.53583500000002 56.19638100000009) (-61.450553999999954 56.204994000000056) (-61.411941999999954 56.21471400000013) (-61.40444199999996 56.21749100000005) (-61.380279999999914 56.22304500000007) (-61.361670999999944 56.22360200000014) (-61.35083799999995 56.222214000000065) (-61.34555099999994 56.218323) (-61.33083299999987 56.18193800000006) (-61.330284000000006 56.17665900000003) (-61.33555599999994 56.17276799999996) (-61.34332999999992 56.170547000000056) (-61.37722000000002 56.16860200000008) (-61.38361399999991 56.16471100000001) (-61.39722399999988 56.155823000000055) (-61.40610499999991 56.146102999999925) (-61.45249899999993 56.06276700000001) (-61.452225 56.056937999999946) (-61.44860799999998 56.052772999999945) (-61.41388699999993 56.037773000000016) (-61.41138499999988 56.03749799999997) (-61.39749899999998 56.04110700000001) (-61.38277399999993 56.04749300000009) (-61.35639199999997 56.05832700000013) (-61.34666399999992 56.06137799999999) (-61.34027900000001 56.063049000000035) (-61.32472199999995 56.06526900000006) (-61.315552000000025 56.065544000000045) (-61.24361399999998 56.04749300000009) (-61.23972299999997 56.045273000000066) (-61.23750299999989 56.042770000000075) (-61.24055499999997 56.040276000000006) (-61.26583899999997 56.02276599999999) (-61.27361300000001 56.02082800000005) (-61.28250099999997 56.01971400000008) (-61.31027999999998 56.018600000000106) (-61.357223999999974 56.018600000000106) (-61.38861099999991 56.021934999999985) (-61.419167000000016 56.02721400000013) (-61.43860599999999 56.027489) (-61.48999799999996 56.02027099999998) (-61.50139599999994 56.014442000000145) (-61.503890999999896 56.01055100000008) (-61.503615999999965 56.00694299999998) (-61.421943999999996 55.963882000000126) (-61.41500100000002 55.96027400000003) (-61.39917000000003 55.958602999999925) (-61.38999899999999 55.95888500000001) (-61.38138600000002 55.96027400000003) (-61.32805599999995 55.964157000000114) (-61.254722999999956 55.96749100000011) (-61.15444200000002 55.97137500000014) (-61.14361600000001 55.97054300000002) (-61.12555699999996 55.96859699999993) (-61.11777499999994 55.96610300000003) (-61.11361699999998 55.96249399999999) (-61.07444800000002 55.928329000000076) (-61.073891 55.9230500000001) (-61.076667999999984 55.906937000000084) (-61.09411199999994 55.895606999999984) (-61.156386999999995 55.8919370000001) (-61.165276000000006 55.892220000000066) (-61.181670999999994 55.89916199999999) (-61.19499999999999 55.892220000000066) (-61.201667999999984 55.884163000000115) (-61.19860799999992 55.87638099999998) (-61.192771999999934 55.869437999999946) (-61.10444599999994 55.845543000000134) (-61.0952759999999 55.84388000000001) (-61.08527400000003 55.84332299999994) (-61.077225 55.84388000000001) (-61.068062 55.845543000000134) (-61.039665000000014 55.850937000000044) (-61.035999000000004 55.85327100000006) (-61.02716800000002 55.85727300000008) (-60.946105999999986 55.86582900000013) (-60.91722099999993 55.864441000000056) (-60.78250099999997 55.85416400000008) (-60.76222199999995 55.85138699999999) (-60.755562 55.84943400000003) (-60.741669 55.843048000000124) (-60.72972099999993 55.829436999999984) (-60.72916399999997 55.82444000000004) (-60.73082699999998 55.80804400000005) (-60.734443999999996 55.80121200000002) (-60.736942 55.79738200000003) (-60.74222599999996 55.79054999999994) (-60.774719000000005 55.772491) (-60.80777699999993 55.755271999999934) (-60.88055400000002 55.74916100000007) (-60.87943999999999 55.73276500000003) (-60.76500699999997 55.72804299999996) (-60.756393 55.72943100000009) (-60.746947999999975 55.731659000000036) (-60.740279999999984 55.734161000000086) (-60.72721899999988 55.73999000000009) (-60.721663999999976 55.744713000000104) (-60.7016109999999 55.76344300000011) (-60.66889199999997 55.795830000000024) (-60.65638699999994 55.81276700000001) (-60.64722399999994 55.822768999999994) (-60.63999899999999 55.82555400000001) (-60.63166799999999 55.82666000000006) (-60.623885999999914 55.82499699999994) (-60.61527999999993 55.82193799999999) (-60.601943999999946 55.8147130000001) (-60.59777799999989 55.80943300000007) (-60.59805299999999 55.80443600000012) (-60.60583500000001 55.73387900000006) (-60.615837 55.68693500000006) (-60.6297229999999 55.638329000000056) (-60.66805999999997 55.5894320000001) (-60.65555599999993 55.58443500000004) (-60.606109999999944 55.622489999999914) (-60.60222599999986 55.626656000000025) (-60.59027900000001 55.64471400000008) (-60.544167000000016 55.72693600000002) (-60.52722199999988 55.760551000000135) (-60.527495999999985 55.76583099999999) (-60.52555799999993 55.77693899999997) (-60.51944699999996 55.78804800000006) (-60.514449999999954 55.79361) (-60.50305900000001 55.803046999999935) (-60.48777799999988 55.808601000000124) (-60.483611999999994 55.809158000000025) (-60.339995999999985 55.78638499999994) (-60.33499899999998 55.78443900000008) (-60.328888000000006 55.78166199999998) (-60.327224999999885 55.77276600000005) (-60.329444999999964 55.76138300000002) (-60.33777599999996 55.748604) (-60.38055399999996 55.69193300000006) (-60.406386999999995 55.674713000000054) (-60.463218999999924 55.66604600000011) (-60.47272099999998 55.6632120000001) (-60.493889000000024 55.658043000000134) (-60.49999999999994 55.65416000000005) (-60.50389100000001 55.648330999999985) (-60.52500199999997 55.610550000000046) (-60.53111299999995 55.597214000000065) (-60.532218999999884 55.591660000000104) (-60.53185999999994 55.58819599999998) (-60.51500699999997 55.599715999999944) (-60.50611099999992 55.61166400000002) (-60.495003 55.621101000000124) (-60.48138399999999 55.627769000000114) (-60.44033400000001 55.620216000000084) (-60.42616700000002 55.61821700000007) (-60.420334000000025 55.61637900000005) (-60.415501000000006 55.61454800000007) (-60.32277699999992 55.57833099999999) (-60.31639100000001 55.57388300000002) (-60.31639100000001 55.57027400000004) (-60.31944999999996 55.530823000000055) (-60.32167099999998 55.509995) (-60.42631899999998 55.44820400000009) (-60.442210999999986 55.427696000000026) (-60.43777499999999 55.39943700000009) (-60.47833299999991 55.347488000000055) (-60.47277100000002 55.34777100000002) (-60.45139299999994 55.35721600000011) (-60.42610899999994 55.37665600000008) (-60.420837000000006 55.38221000000004) (-60.41833500000001 55.38610799999998) (-60.41527599999995 55.39471400000008) (-60.41777799999994 55.40277100000009) (-60.42250100000001 55.407211000000075) (-60.425003000000004 55.411377000000016) (-60.423614999999984 55.421378999999945) (-60.41833500000001 55.427490000000034) (-60.413054999999986 55.43166400000007) (-60.34916700000002 55.47582200000011) (-60.33167300000002 55.48665599999998) (-60.31944999999996 55.491378999999995) (-60.26860799999997 55.502495000000124) (-60.25389099999995 55.503052000000025) (-60.21388999999999 55.489433000000076) (-60.20361300000002 55.48360400000007) (-60.201667999999984 55.478600000000085) (-60.19554899999997 55.4313810000001) (-60.26583900000003 55.40915699999999) (-60.27416999999991 55.40804300000002) (-60.284171999999955 55.40860000000009) (-60.295279999999934 55.41110200000014) (-60.30527499999988 55.41165900000004) (-60.313332 55.41110200000014) (-60.35472099999993 55.394997000000046) (-60.46888699999994 55.28582799999998) (-60.49888599999997 55.25332599999996) (-60.53805499999993 55.200546000000145) (-60.49999999999994 55.21804799999995) (-60.48889200000002 55.227210999999954) (-60.482215999999994 55.23165899999992) (-60.47638699999999 55.2347180000001) (-60.46832999999992 55.237495000000024) (-60.37388599999997 55.26055100000002) (-60.36583699999994 55.260826000000066) (-60.355278 55.25943799999999) (-60.34861000000001 55.25582900000012) (-60.348052999999936 55.25054900000009) (-60.353057999999976 55.244995000000074) (-60.51222200000001 55.12054399999994) (-60.58777600000002 55.08859999999993) (-60.616660999999965 55.07721700000013) (-60.636116000000015 55.066666) (-60.67055499999998 55.044715999999994) (-60.68111399999992 55.00471500000003) (-60.683326999999906 54.99499500000013) (-60.59277300000002 55.05888400000009) (-60.475273000000016 55.124435000000005) (-60.266395999999986 55.240547000000106) (-60.259170999999924 55.24415599999992) (-60.25250199999999 55.24638400000009) (-60.176109 55.270827999999995) (-60.079781000000025 55.24960299999998) (-60.07377600000001 55.24794000000003) (-60.072776999999974 55.24510600000002) (-60.11077899999992 55.199268000000075) (-60.123610999999926 55.15638000000013) (-60.14639299999993 55.13721499999997) (-60.15721899999994 55.12860100000012) (-60.18721799999997 55.108047) (-60.20444500000002 55.10749800000002) (-60.21277600000002 55.10860400000007) (-60.220551 55.10638400000005) (-60.28277600000001 55.05777000000006) (-60.28833799999995 55.05332199999992) (-60.295006 55.041382000000056) (-60.29695099999992 55.03443900000002) (-60.29666899999995 55.02499399999999) (-60.29389200000003 55.019440000000145) (-60.284171999999955 55.02443700000009) (-60.152495999999985 55.10277600000012) (-60.12444299999993 55.120270000000005) (-60.09944200000001 55.13665800000007) (-60.08833299999992 55.14582799999994) (-60.08388499999995 55.15221400000007) (-60.051223999999934 55.182381000000134) (-60.04571900000002 55.19304699999998) (-60.04472399999992 55.19671199999999) (-60.04272100000003 55.199883) (-60.03971899999988 55.203213000000005) (-60.03605700000003 55.20638300000007) (-60.02188899999999 55.21854799999994) (-60.01522399999999 55.221546000000046) (-60.00922400000002 55.22121400000009) (-59.96472199999994 55.23554999999999) (-59.93943799999994 55.233047000000056) (-59.922774999999945 55.233047000000056) (-59.91694599999994 55.233879000000115) (-59.91249799999997 55.238883999999985) (-59.89083899999997 55.26554900000002) (-59.86833200000001 55.291382) (-59.863891999999964 55.29610400000007) (-59.85139499999997 55.30304700000005) (-59.80750299999994 55.32416499999994) (-59.79527999999999 55.32749200000006) (-59.77916700000003 55.329720000000066) (-59.77610800000002 55.32916299999994) (-59.715003999999965 55.27609999999993) (-59.711945000000014 55.26971400000002) (-59.71333299999998 55.25610399999999) (-59.72943900000001 55.2052690000001) (-59.732497999999964 55.19721199999998) (-59.735832000000016 55.19415300000014) (-59.74277499999994 55.19137600000005) (-59.83139 55.162491000000045) (-59.84749599999998 55.15804300000008) (-59.863891999999964 55.154160000000104) (-59.89778100000001 55.151382000000126) (-59.918334999999956 55.15526599999998) (-59.94027699999998 55.16276600000003) (-59.9505539999999 55.16443600000002) (-59.96277599999996 55.16110200000003) (-59.96721599999995 55.15859999999998) (-59.970832999999914 55.15554800000001) (-59.97332799999987 55.14749100000006) (-59.96805599999993 55.11915600000003) (-59.963615000000004 55.110275000000115) (-59.80083499999995 55.10888700000004) (-59.79527999999999 55.10916099999997) (-59.615837 55.13638300000008) (-59.57028200000002 55.159988000000055) (-59.531386999999995 55.18138099999999) (-59.48777799999999 55.18138099999999) (-59.43055700000002 55.15193199999999) (-59.428337 55.149719000000005) (-59.427223000000026 55.13999200000006) (-59.42777999999993 55.13582600000001) (-59.431945999999925 55.129433000000006) (-59.438605999999936 55.123604) (-59.49610899999999 55.078331000000105) (-59.539169000000015 55.04916399999996) (-59.593886999999995 55.02082800000005) (-59.61083199999996 55.012771999999984) (-59.71665999999993 54.95582600000006) (-59.80216599999994 54.887268000000006) (-59.82399699999996 54.85110500000013) (-59.93916300000001 54.75888800000001) (-59.94416000000001 54.75555400000002) (-59.94554900000003 54.75305200000014) (-59.94416000000001 54.74971800000014) (-59.938605999999936 54.74638399999998) (-59.91916699999996 54.74137900000011) (-59.90943900000002 54.740829000000076) (-59.888610999999855 54.74332400000014) (-59.882499999999936 54.74499500000002) (-59.797500999999954 54.78166199999998) (-59.79111499999999 54.78555300000005) (-59.788612 54.78943600000002) (-59.790282999999874 54.79415899999998) (-59.79099999999994 54.82265899999999) (-59.79416699999996 54.82815900000014) (-59.79466599999995 54.83099400000003) (-59.7938309999999 54.83999299999999) (-59.79099999999994 54.846825000000024) (-59.78433999999993 54.857658000000015) (-59.77200299999993 54.86949200000004) (-59.7547229999999 54.897491000000116) (-59.72999599999997 54.907493999999986) (-59.703888000000006 54.91054500000001) (-59.68888899999996 54.913605000000075) (-59.67444599999999 54.91999099999998) (-59.61833199999995 54.948601) (-59.41111000000001 55.0563810000001) (-59.29389199999997 55.16971600000011) (-59.16527599999995 55.23499300000009) (-59.161384999999996 55.23693800000012) (-59.15471600000001 55.23554999999999) (-59.14416499999999 55.22804300000007) (-59.13944200000003 55.223877000000016) (-59.13111099999992 55.215546000000074) (-59.12749499999995 55.205826) (-59.12499999999994 55.19638099999992) (-59.12444299999987 55.18610399999994) (-59.14944099999991 55.16182699999996) (-59.15060799999992 55.15899299999995) (-59.155276999999955 55.15215699999993) (-59.16127799999998 55.146823999999924) (-59.168609999999944 55.141827000000035) (-59.176608999999985 55.13798900000006) (-59.205276000000026 55.13116100000002) (-59.20911000000001 55.12982200000005) (-59.24027999999993 55.11138200000005) (-59.25278499999996 55.10249299999998) (-59.363335000000006 55.01583099999999) (-59.37471800000003 55.00638600000008) (-59.38305699999995 54.99804700000004) (-59.386390999999946 54.99304999999998) (-59.39111300000002 54.98220800000013) (-59.39138799999995 54.98027000000002) (-59.38861099999997 54.97665400000011) (-59.384170999999924 54.973319999999944) (-59.37471800000003 54.97276300000004) (-59.36916400000001 54.97526600000003) (-59.275001999999915 55.02166) (-59.26250499999986 55.02832799999999) (-59.250838999999985 55.03582800000004) (-59.23722099999998 55.04833200000007) (-59.24250000000001 55.06110400000006) (-59.24305700000002 55.06638300000003) (-59.240837 55.07110600000004) (-59.23666399999996 55.07749200000012) (-59.13333099999994 55.120491000000015) (-59.05166600000001 55.153320000000065) (-59.03527799999989 55.15693700000003) (-59.02361300000001 55.15665400000006) (-58.96055599999988 55.134995) (-58.956107999999915 55.13027199999999) (-58.955832999999984 55.126381000000094) (-58.955832999999984 55.10083000000003) (-58.95833600000003 55.09165999999999) (-58.96167000000003 55.08526599999993) (-58.97110699999996 55.07110600000004) (-58.980278 55.059990000000084) (-59.005562 55.032767999999976) (-59.00194499999998 55.0177690000001) (-58.97249599999998 54.99554400000005) (-58.947220000000016 54.985550000000046) (-58.90721899999994 54.963882000000126) (-58.896950000000004 54.95638300000013) (-58.89416499999987 54.95277399999998) (-58.895279000000016 54.94776900000011) (-58.90055099999995 54.94387800000004) (-58.90694400000001 54.940269) (-58.96472199999988 54.91749600000014) (-59.01306199999999 54.89610300000004) (-59.015556000000004 54.892220000000066) (-59.01361800000001 54.88971700000013) (-58.90416700000003 54.844711000000075) (-58.83833299999998 54.832497000000046) (-58.83250399999997 54.831940000000145) (-58.82417299999997 54.834434999999985) (-58.69444299999998 54.82054900000003) (-58.68527199999994 54.81554399999999) (-58.560828999999956 54.77610000000004) (-58.44361099999992 54.77388000000002) (-58.39888799999994 54.78472099999999) (-58.391944999999964 54.787498000000085) (-58.379997 54.789993000000095) (-58.328056000000004 54.792496000000085) (-58.24333199999995 54.79471600000005) (-58.196663 54.79527299999995) (-58.19110899999998 54.79415899999998) (-58.188332 54.792496000000085) (-58.18721800000003 54.78860500000002) (-58.188605999999936 54.783051) (-58.19388600000002 54.77777100000009) (-58.19694499999997 54.77332299999995) (-58.19860799999998 54.76776899999999) (-58.184166000000005 54.75166299999995) (-58.173332000000016 54.74554400000011) (-58.145554000000004 54.739716000000044) (-58.11000100000001 54.737213000000054) (-58.00139599999994 54.73333000000008) (-57.94554899999997 54.73998999999998) (-57.935554999999965 54.74110400000012) (-57.910552999999936 54.74193600000001) (-57.855002999999954 54.73749500000008) (-57.84749599999992 54.7355500000001) (-57.84249899999992 54.73137700000001) (-57.831947000000014 54.71776600000004) (-57.789725999999916 54.68221299999999) (-57.78556100000003 54.67916100000008) (-57.71305799999993 54.64305100000013) (-57.70083599999998 54.63721500000008) (-57.693610999999976 54.63472000000007) (-57.67639200000002 54.630272000000105) (-57.660278000000005 54.62804399999993) (-57.64222699999999 54.62804399999993) (-57.62638899999996 54.62999000000002) (-57.57778199999996 54.63888500000007) (-57.57417299999997 54.64027400000003) (-57.569725000000005 54.644440000000145) (-57.56722300000001 54.64833100000004) (-57.55916599999995 54.655823) (-57.54583699999995 54.66165900000004) (-57.5391689999999 54.662209000000075) (-57.45639 54.65082600000005) (-57.450553999999954 54.649993999999936) (-57.44471699999997 54.64721700000007) (-57.355834999999956 54.59027100000009) (-57.352782999999874 54.58749399999999) (-57.34749599999992 54.57943700000004) (-57.346947 54.57471499999997) (-57.34861000000001 54.566940000000045) (-57.38082899999995 54.50749999999999) (-57.38527699999992 54.50332600000013) (-57.39694999999995 54.49582700000013) (-57.42722299999997 54.48777000000001) (-57.48472600000002 54.48249100000004) (-57.49305700000002 54.48333000000014) (-57.519447000000014 54.483879000000115) (-57.590836000000024 54.48416099999997) (-57.618056999999965 54.48360400000007) (-57.67277499999989 54.47998800000005) (-57.69499999999999 54.475548) (-57.70222499999994 54.47304500000007) (-57.704169999999976 54.470543000000134) (-57.70527599999997 54.46693399999998) (-57.70055400000001 54.45915999999994) (-57.68694299999993 54.45888500000012) (-57.65833299999997 54.46305100000001) (-57.58777599999996 54.46720899999997) (-57.487777999999935 54.47304500000007) (-57.47222099999999 54.47360200000014) (-57.44999699999994 54.46749100000005) (-57.442497 54.46499600000004) (-57.42527799999999 54.45915999999994) (-57.421111999999994 54.455826) (-57.42166900000001 54.45360599999998) (-57.523330999999985 54.41721300000006) (-57.621666000000005 54.38360599999993) (-57.62943999999999 54.38166000000007) (-57.660827999999924 54.376937999999996) (-57.678337 54.37526700000012) (-57.69527399999993 54.37499200000008) (-57.71555299999994 54.376937999999996) (-57.743056999999965 54.38082100000008) (-57.78333299999997 54.38832900000011) (-57.79722600000002 54.38888500000013) (-57.876105999999936 54.38665800000007) (-57.910278000000005 54.38526900000005) (-58.05027799999988 54.37748700000009) (-58.14639299999999 54.36527300000006) (-58.15416699999997 54.36332700000003) (-58.17250100000001 54.35749800000002) (-58.18527199999994 54.35166199999992) (-58.24805500000002 54.3202740000001) (-58.259727 54.31276699999995) (-58.26194799999996 54.31110400000006) (-58.25917099999998 54.30971500000004) (-58.253333999999995 54.308884000000035) (-58.22110700000002 54.31166100000013) (-58.197495 54.31638300000003) (-58.108337000000006 54.32804900000002) (-58.09860999999995 54.327217000000076) (-58.09583299999997 54.325829) (-58.23388699999998 54.254166000000055) (-58.24722300000002 54.25277700000004) (-58.344161999999926 54.244438) (-58.383056999999894 54.24110400000001) (-58.410278000000005 54.241661000000136) (-58.417220999999984 54.242493000000024) (-58.43138899999997 54.24221800000004) (-58.453888000000006 54.23721299999994) (-58.566108999999926 54.20416300000011) (-58.579169999999976 54.199996999999996) (-58.60139499999997 54.186104) (-58.61194599999999 54.178329000000076) (-58.62888299999997 54.16971600000011) (-58.6444469999999 54.16526799999997) (-58.69277199999999 54.151657) (-58.724715999999944 54.14527100000009) (-58.75694999999996 54.14110600000009) (-58.77111099999996 54.13999200000012) (-58.79778299999998 54.139717000000076) (-58.83361100000002 54.145827999999995) (-58.84277300000002 54.145827999999995) (-58.86000100000001 54.14471400000002) (-58.915276000000006 54.1386030000001) (-58.92833699999994 54.13638300000008) (-59.114165999999955 54.103882) (-59.19055199999997 54.08721200000008) (-59.24833699999999 54.07193799999999) (-59.27944199999996 54.06443800000011) (-59.37610599999999 54.046943999999996) (-59.434440999999936 54.0472180000001) (-59.470275999999956 54.05165900000003) (-59.51000199999993 54.05943300000001) (-59.53444699999994 54.05832700000002) (-59.561385999999914 54.05332199999998) (-59.57556199999999 54.04943800000012) (-59.582221999999945 54.046387000000095) (-59.586945000000014 54.0430530000001) (-59.58860800000002 54.04054999999994) (-59.584723999999994 54.03527100000014) (-59.51722000000001 53.99721499999998) (-59.509727 53.99554400000011) (-59.49444599999998 53.99638399999998) (-59.26583900000003 54.023048000000074) (-59.04944599999993 54.057495000000074) (-58.87722000000002 54.094993999999986) (-58.70305599999995 54.12416100000013) (-58.43111399999992 54.217209000000025) (-58.42639200000002 54.2219310000001) (-58.417502999999954 54.22804300000007) (-58.40638699999994 54.22971300000006) (-58.37943999999993 54.229988000000105) (-58.371940999999936 54.22804300000007) (-58.37444299999993 54.22443400000009) (-58.44972200000001 54.154434000000094) (-58.60500300000001 54.04415899999998) (-58.61028299999998 54.04166399999991) (-58.632499999999936 54.03527100000014) (-58.654998999999975 54.03166199999998) (-58.678054999999915 54.029160000000104) (-58.70444500000002 54.027214000000015) (-58.72166399999992 54.027489) (-58.749168 54.03110500000008) (-58.75917099999998 54.032767999999976) (-58.76805899999994 54.03499599999998) (-58.77972399999993 54.03777300000007) (-58.80750299999994 54.04332700000003) (-58.83583099999993 54.0472180000001) (-58.879997 54.04499800000008) (-58.93749999999994 54.04166399999991) (-59.002501999999936 54.03249400000004) (-59.038611999999944 54.02693899999997) (-59.04138899999998 54.02610000000004) (-59.04277799999994 54.02276600000005) (-59.04055799999986 54.02175100000005) (-59.00695000000002 54.018051000000014) (-58.95194200000003 54.01471700000002) (-58.944159999999954 54.01527400000009) (-58.92583499999995 54.01471700000002) (-58.922500999999954 54.01388500000007) (-58.91944899999993 54.01082600000012) (-58.92305799999997 54.00721699999997) (-58.954169999999976 53.983879) (-58.96305799999993 53.97776799999997) (-58.98082699999998 53.966385000000116) (-59.00833899999992 53.95526899999999) (-59.01583899999997 53.953323000000125) (-59.04778299999998 53.94832600000001) (-59.07222699999994 53.947487000000024) (-59.11527999999987 53.94638100000003) (-59.12222300000002 53.94526700000006) (-59.172774999999945 53.93499000000003) (-59.201392999999996 53.92748999999998) (-59.33194699999996 53.888329000000056) (-59.345551 53.88304900000014) (-59.36389199999991 53.8722150000001) (-59.36944599999998 53.867493000000024) (-59.39361600000001 53.8555530000001) (-59.43638599999997 53.83749399999999) (-59.46333299999998 53.830551000000014) (-59.480278 53.82777400000009) (-59.527221999999995 53.82249500000012) (-59.54389200000003 53.8211060000001) (-59.59610700000002 53.81916000000001) (-59.62388599999997 53.82027400000004) (-59.63583399999999 53.82083100000011) (-59.69860799999998 53.82943700000004) (-59.71665999999993 53.831939999999975) (-59.728049999999996 53.83526600000005) (-59.75556199999994 53.83860000000004) (-59.79833999999994 53.843323) (-59.807776999999874 53.84388000000007) (-59.82583599999998 53.8427660000001) (-59.85278299999999 53.8394320000001) (-59.87249800000001 53.833603000000096) (-59.877219999999966 53.83027600000014) (-59.88055399999996 53.82527200000004) (-59.989165999999955 53.77971600000012) (-60.082779000000016 53.76249700000005) (-60.12110899999993 53.625267000000065) (-60.11999499999996 53.61138199999999) (-60.11361699999992 53.602493000000095) (-60.110000999999954 53.59887700000007) (-60.105002999999954 53.59471100000013) (-60.087501999999915 53.58360299999998) (-60.068062 53.57332600000001) (-60.06444499999998 53.56971699999997) (-60.063332 53.56582600000007) (-60.06444499999998 53.56027200000011) (-60.06972499999995 53.55555000000004) (-60.07500499999992 53.55304700000005) (-60.13388800000001 53.5283280000001) (-60.13833599999998 53.52860300000009) (-60.34749599999998 53.62693800000011) (-60.358611999999994 53.634438000000046) (-60.361670999999944 53.63971700000002) (-60.36444899999998 53.64833100000004) (-60.368056999999965 53.65277100000009) (-60.382499999999936 53.66249099999999) (-60.390556000000004 53.66554300000007) (-60.50305900000001 53.705826000000116) (-60.51111599999996 53.708327999999995) (-60.56027999999998 53.71832300000011) (-60.64861300000001 53.73737699999998) (-60.670612000000006 53.74004700000006) (-60.705115999999975 53.74488100000002) (-60.75894900000003 53.76171899999997) (-60.76994300000001 53.765381000000104) (-60.856948999999986 53.79277000000002) (-60.88722200000001 53.751389000000074) (-60.880279999999914 53.71305100000001) (-60.83472399999994 53.72137500000002) (-60.75772499999999 53.713768000000016) (-60.74722299999996 53.71276499999999) (-60.65489199999996 53.69876899999991) (-60.64422599999995 53.69693799999999) (-60.537223999999924 53.67832900000002) (-60.51194799999996 53.66971600000005) (-60.44656399999997 53.64485200000013) (-60.431670999999994 53.63916000000012) (-60.36028299999998 53.60665899999998) (-60.354445999999996 53.60388200000011) (-60.34222399999993 53.59609999999998) (-60.33416699999998 53.58915699999994) (-60.32333399999999 53.581665000000044) (-60.29861499999993 53.568054000000075) (-60.278884999999946 53.55860100000007) (-60.25361600000002 53.54999500000014) (-60.103614999999934 53.50054900000009) (-60.10639200000003 53.457497000000046) (-60.123328999999956 53.456100000000106) (-60.13805400000001 53.45360599999998) (-60.202225 53.43360099999995) (-60.40582999999998 53.36415899999997) (-60.41332999999997 53.35777300000001) (-60.412216 53.34971600000006) (-60.404998999999975 53.33416000000011) (-60.395835999999974 53.33138300000002) (-60.39111300000002 53.33110799999997) (-60.30139200000002 53.33638000000013) (-60.23082699999998 53.34332300000011) (-60.2161099999999 53.34582499999999) (-60.203888000000006 53.34971600000006) (-60.198607999999865 53.350548) (-60.18860599999999 53.350548) (-60.18332700000002 53.349433999999974) (-60.1766659999999 53.34638200000006) (-60.17500299999995 53.34304800000007) (-60.17472099999998 53.33804300000003) (-60.180831999999896 53.329994) (-60.19083399999994 53.32193799999993) (-60.202225 53.313605999999936) (-60.20889299999999 53.310546999999985) (-60.283332999999914 53.28943600000014) (-60.29583699999995 53.28665900000004) (-60.33388500000001 53.280548000000124) (-60.36721799999992 53.27777100000003) (-60.389725 53.27693899999997) (-60.41833500000001 53.269440000000145) (-60.41666399999997 53.268326) (-60.398056 53.26554900000008) (-60.316108999999926 53.26416000000006) (-60.289444 53.26388500000007) (-60.133613999999966 53.28360700000013) (-60.024719000000005 53.35499600000014) (-59.95388799999995 53.40693700000003) (-59.931945999999925 53.42582700000014) (-59.84194199999996 53.476379000000065) (-59.82167099999998 53.47165699999999) (-59.806107 53.47110000000009) (-59.79805799999997 53.472214000000065) (-59.78916899999996 53.47443400000009) (-59.78500399999996 53.477210999999954) (-59.783615 53.48110200000002) (-59.78472899999997 53.48526800000013) (-59.799170999999944 53.491378999999995) (-59.82361599999996 53.49332400000003) (-59.858611999999994 53.496101000000124) (-59.89916999999997 53.51693699999993) (-59.90110800000002 53.51971400000002) (-59.89833799999997 53.52416199999999) (-59.893058999999994 53.52860300000009) (-59.87555699999996 53.534996000000035) (-59.85583500000001 53.536942000000124) (-59.84749599999998 53.536658999999986) (-59.80999799999995 53.52971600000001) (-59.77361300000001 53.517769000000044) (-59.763061999999934 53.51527400000003) (-59.75556199999994 53.51499899999999) (-59.740279999999984 53.515831000000105) (-59.62110899999993 53.52721400000013) (-59.605834999999956 53.52971600000001) (-59.56082900000001 53.54055000000005) (-59.53082999999998 53.54888200000005) (-59.51750199999998 53.55387899999994) (-59.47833300000002 53.57276900000011) (-59.32972699999999 53.65387700000008) (-59.162216 53.671379000000115) (-59.079726999999934 53.680550000000096) (-59.07417299999992 53.683051999999975) (-59.023888 53.71388200000001) (-59.01916499999993 53.71915400000012) (-59.01083399999993 53.744438000000116) (-59.010559 53.74665800000014) (-59.01889 53.74916100000013) (-59.03500399999996 53.74721500000004) (-59.04138899999998 53.748604) (-59.04611199999994 53.75277699999998) (-59.06527699999998 53.79110700000007) (-59.066390999999896 53.794998000000135) (-59.058334 53.80332200000004) (-59.04944599999993 53.81082200000009) (-59.04277799999994 53.81499500000001) (-58.87027699999999 53.90470900000014) (-58.550277999999935 54.009163) (-58.32611099999997 54.04627199999999) (-58.21694200000002 54.07177000000013) (-58.204612999999995 54.074604000000136) (-58.19377499999996 54.07593900000006) (-58.18044699999996 54.075436000000025) (-58.156780000000026 54.07143400000001) (-58.15060799999992 54.06943899999999) (-58.028610000000015 54.07972000000012) (-57.95194200000003 54.070831000000055) (-57.93860599999999 54.07027399999998) (-57.815552000000025 54.066101) (-57.79750100000001 54.066101) (-57.789443999999946 54.06860399999999) (-57.78639199999992 54.071662999999944) (-57.78611799999999 54.075271999999984) (-57.789443999999946 54.07972000000012) (-57.80555699999991 54.08665499999995) (-57.85166899999996 54.100273000000016) (-57.86972000000003 54.10305000000005) (-58.07650000000001 54.124489000000096) (-58.15249599999993 54.12915800000002) (-58.16716399999996 54.127827000000025) (-58.18150300000002 54.124660000000006) (-58.195831 54.120159000000115) (-58.21083499999992 54.1139950000001) (-58.21466800000002 54.111828) (-58.216995 54.110493000000076) (-58.22300000000001 54.10399200000006) (-58.22683299999994 54.101826000000074) (-58.22983199999993 54.10082200000011) (-58.23683499999993 54.09932700000007) (-58.24516699999998 54.099158999999986) (-58.254332999999974 54.101322000000096) (-58.415276000000006 54.13526900000011) (-58.4183349999999 54.139717000000076) (-58.417220999999984 54.14305100000007) (-58.383613999999966 54.18971299999998) (-58.37943999999993 54.193877999999984) (-58.373885999999914 54.19832600000012) (-58.36750000000001 54.201934999999935) (-58.35555999999991 54.20638300000013) (-58.20361300000002 54.23416100000003) (-58.177779999999984 54.23693800000012) (-58.03082999999992 54.235550000000046) (-58.00305899999995 54.233879) (-57.99361399999998 54.230819999999994) (-57.97360999999995 54.22165699999999) (-57.9611129999999 54.2177660000001) (-57.935272 54.2116620000001) (-57.866660999999965 54.19776900000005) (-57.85639200000003 54.196098000000006) (-57.65916399999992 54.199432) (-57.46832999999992 54.193877999999984) (-57.428336999999885 54.18249499999996) (-57.38417099999998 54.15054300000003) (-57.385559 54.145827999999995) (-57.38999899999999 54.14110600000009) (-57.383613999999966 54.12887599999999) (-57.370833999999945 54.10638400000005) (-57.367774999999995 54.10193600000008) (-57.32333399999999 54.039719000000105) (-57.22110699999996 53.91832699999998) (-57.115279999999984 53.83860000000004) (-57.09277300000002 53.83166499999999) (-57.08361100000002 53.82860599999998) (-57.07972699999999 53.82666000000012) (-57.076392999999996 53.82305100000008) (-57.07749899999993 53.81944299999998) (-57.15138999999999 53.73582499999998) (-57.302498000000014 53.67916100000008) (-57.31472000000002 53.676383999999985) (-57.387504999999976 53.65832500000005) (-57.429169 53.647491) (-57.48416900000001 53.63166000000001) (-57.49111199999993 53.62887600000005) (-57.52305599999994 53.61249500000008) (-57.53889499999997 53.60221899999999) (-57.544448999999986 53.59777100000002) (-57.549995000000024 53.59193400000004) (-57.55055199999998 53.58749400000005) (-57.54527999999999 53.584717000000126) (-57.54111499999999 53.585266000000104) (-57.533332999999914 53.58749400000005) (-57.52777900000001 53.591377000000136) (-57.49361399999998 53.60943600000007) (-57.479720999999984 53.61332700000014) (-57.458054000000004 53.61749300000008) (-57.44471699999997 53.618599000000074) (-57.373610999999926 53.60665899999998) (-57.316666 53.57972000000001) (-57.31361399999997 53.573608000000036) (-57.303054999999915 53.53082300000011) (-57.302498000000014 53.52638200000001) (-57.30332900000002 53.50943799999993) (-57.30555700000002 53.49971800000003) (-57.30666400000001 53.49638400000009) (-57.31777999999997 53.47554800000006) (-57.32888799999995 53.46193700000009) (-57.332503999999915 53.45832800000005) (-57.345832999999914 53.45054600000009) (-57.336945000000014 53.440269000000114) (-57.31639099999995 53.43582200000009) (-57.30332900000002 53.43332700000002) (-57.29750100000001 53.43305200000003) (-57.289169000000015 53.433876) (-57.28333299999997 53.438598999999954) (-57.29361699999998 53.4677660000001) (-57.28527799999995 53.477486) (-57.281386999999995 53.47943099999998) (-57.24861099999998 53.49415600000009) (-57.23750299999989 53.49860400000006) (-57.13027999999997 53.59388000000013) (-57.11138900000003 53.62165800000008) (-57.06138599999997 53.671379000000115) (-57.01472499999994 53.71138000000013) (-56.97361000000001 53.72443400000003) (-56.959442000000024 53.7283250000001) (-56.926391999999964 53.730270000000075) (-56.91666399999997 53.728600000000085) (-56.860832000000016 53.72248800000011) (-56.79722600000002 53.71998600000006) (-56.660827999999924 53.720543000000134) (-56.62222300000002 53.73360400000007) (-56.62860899999998 53.74193600000007) (-56.628333999999995 53.74415600000003) (-56.626105999999936 53.74582700000013) (-56.603332999999964 53.75916300000006) (-56.483611999999994 53.7824940000001) (-56.464691000000016 53.782272000000034) (-56.44833399999999 53.77777100000014) (-56.431670999999994 53.76444200000003) (-56.42694899999998 53.75721699999997) (-56.41388699999999 53.727768000000026) (-56.414443999999946 53.72193100000004) (-56.41527599999995 53.720543000000134) (-56.42166900000001 53.716933999999924) (-56.429169 53.71527100000003) (-56.43804899999992 53.71527100000003) (-56.44694499999997 53.716933999999924) (-56.48277300000001 53.718048000000124) (-56.506393 53.716933999999924) (-56.52166699999998 53.71471400000013) (-56.544448999999986 53.70971700000001) (-56.662215999999944 53.679993000000024) (-56.68028300000003 53.67276800000013) (-56.62722000000002 53.65082600000005) (-56.61805700000002 53.647491) (-56.34055299999994 53.58832599999994) (-56.32028199999996 53.585266000000104) (-56.22555499999987 53.577217000000076) (-56.21665999999999 53.577217000000076) (-56.205832999999984 53.581665000000044) (-56.15582999999998 53.591660000000104) (-56.07861300000002 53.58387799999997) (-56.069167999999934 53.58277100000004) (-56.031386999999995 53.57638500000013) (-56.027221999999995 53.57527200000004) (-55.99138599999998 53.552216000000044) (-55.97888199999994 53.5422210000001) (-55.99083699999994 53.51027700000009) (-55.99694799999992 53.50527200000005) (-56.00878099999994 53.50366600000007) (-56.01294699999994 53.50399399999998) (-56.01744499999995 53.50599699999998) (-56.01861199999996 53.508495000000096) (-56.02111099999996 53.51305400000001) (-56.02249899999998 53.516388000000006) (-56.04750100000001 53.533607000000075) (-56.063332 53.54083300000002) (-56.14583600000003 53.55304700000005) (-56.20889299999999 53.559433000000126) (-56.24250000000001 53.55999000000003) (-56.25833899999992 53.55915800000014) (-56.264725 53.55555000000004) (-56.26611300000002 53.54999500000014) (-56.263335999999924 53.54027600000012) (-56.259170999999924 53.53777300000013) (-56.14555399999995 53.500000000000114) (-56.11527999999993 53.49193600000012) (-56.07749899999993 53.483330000000024) (-56.037780999999995 53.46165500000001) (-56.02744299999995 53.45432699999998) (-55.96555299999994 53.40915700000005) (-55.965836000000024 53.40554800000001) (-55.96944400000001 53.40054299999997) (-56.00417299999998 53.388045999999974) (-56.02527599999996 53.37971500000009) (-56.03167000000002 53.37609900000001) (-56.03833800000001 53.36749300000014) (-56.029998999999975 53.365273000000116) (-56.020835999999974 53.36415899999997) (-56.01306199999999 53.364441) (-56.001396 53.36666100000002) (-55.98805199999998 53.369713000000104) (-55.981383999999935 53.3730470000001) (-55.969497999999874 53.38077500000003) (-55.95972399999994 53.39027399999998) (-55.95313299999992 53.39244100000002) (-55.938605999999936 53.39527100000004) (-55.92511699999994 53.396133000000134) (-55.912216 53.3949970000001) (-55.89361600000001 53.389717000000076) (-55.881385999999964 53.382767) (-55.808051999999975 53.34054600000002) (-55.80745699999994 53.28496600000011) (-55.745834 53.24943500000012) (-55.74749800000001 53.14360799999997) (-55.749442999999985 53.139717000000076) (-55.75417299999992 53.134995) (-55.83331299999992 53.09793100000002) (-55.87985600000002 53.07379500000002) (-55.91194200000001 53.02832799999999) (-55.92666600000001 53.02332300000012) (-55.934440999999936 53.021660000000054) (-55.943329000000006 53.021102999999925) (-55.96444700000001 53.021660000000054) (-55.99083699999994 53.0241620000001) (-56.00833899999998 53.02748900000006) (-56.02500199999997 53.03360699999996) (-56.03417200000001 53.03611000000012) (-56.056107 53.03832999999997) (-56.160278000000005 53.03360699999996) (-56.16583300000002 53.03276800000003) (-56.166945999999996 53.02943400000004) (-56.165276000000006 53.02499399999999) (-56.04084 53.00582900000006) (-55.95861100000002 52.99610100000001) (-55.94943999999998 52.99499500000002) (-55.88944200000003 52.96915400000012) (-55.885276999999974 52.966384999999946) (-55.83416699999998 52.92193600000002) (-55.80471799999998 52.8772130000001) (-55.80332899999996 52.83943199999993) (-55.80388599999998 52.83194000000003) (-55.808051999999975 52.82638500000013) (-55.84110999999996 52.82721700000002) (-55.87916599999994 52.82416500000011) (-55.97361000000001 52.8105470000001) (-55.98777799999999 52.80609900000013) (-56.06082900000001 52.76610600000009) (-55.96472199999994 52.68166400000007) (-55.96055599999994 52.679161000000136) (-55.9505539999999 52.6772160000001) (-55.93360899999993 52.675552000000096) (-55.91833500000001 52.677490000000034) (-55.87471799999997 52.68332700000002) (-55.78694899999999 52.683601000000124) (-55.77916700000003 52.682495000000074) (-55.77305599999994 52.679161000000136) (-55.76888999999994 52.674995000000024) (-55.740837 52.64638500000001) (-55.73860899999994 52.64276899999993) (-55.739998000000014 52.639434999999935) (-55.75750699999992 52.614441) (-55.769447000000014 52.60804700000011) (-55.792778 52.60166200000009) (-55.888892999999996 52.60804700000011) (-55.89861300000001 52.60999300000003) (-55.939940999999976 52.62826899999999) (-55.958777999999995 52.63560499999994) (-56.032775999999956 52.654709000000025) (-56.04888900000003 52.65609699999993) (-56.07500499999992 52.655823) (-56.10861199999994 52.6552660000001) (-56.12277199999994 52.65110000000004) (-56.12388599999986 52.647491) (-56.11972000000003 52.643326) (-56.112007000000006 52.64103699999998) (-56.09906000000001 52.64100600000012) (-56.07194500000003 52.644714000000135) (-56.06361400000003 52.644714000000135) (-56.05444299999999 52.643608000000086) (-55.98277300000001 52.62249000000003) (-55.97499800000003 52.619713000000104) (-55.970832999999914 52.61554699999999) (-55.972770999999966 52.61082500000009) (-55.985275 52.60221899999999) (-56.039169000000015 52.58499100000006) (-56.155777 52.557438000000104) (-56.17261100000002 52.55360800000011) (-56.18611099999998 52.55093800000003) (-56.20077900000001 52.55093800000003) (-56.25305899999995 52.54388400000005) (-56.297500999999954 52.56360600000011) (-56.315552000000025 52.57221999999996) (-56.322501999999986 52.574715000000026) (-56.333327999999995 52.57694200000009) (-56.35639199999997 52.580276000000026) (-56.45638999999994 52.59276599999998) (-56.47860700000001 52.59443700000003) (-56.49687199999994 52.59414700000002) (-56.45278200000001 52.56888600000002) (-56.44416000000001 52.56582600000013) (-56.28055599999999 52.53499600000009) (-56.26222199999995 52.5316620000001) (-56.19755600000002 52.52510500000005) (-56.15355699999992 52.52610399999992) (-55.98889200000002 52.50638600000008) (-55.829726999999934 52.51249700000011) (-55.761390999999946 52.49887800000005) (-55.75139599999994 52.496101000000124) (-55.746947999999975 52.4938810000001) (-55.74305700000002 52.49082900000002) (-55.73500100000001 52.47859999999997) (-55.73416900000001 52.474709000000075) (-55.735832000000016 52.469154) (-55.76445000000001 52.45388000000014) (-55.76750199999992 52.451103000000046) (-55.766395999999986 52.44776900000005) (-55.73277299999995 52.44221500000003) (-55.706107999999915 52.44165800000013) (-55.67666600000001 52.44165800000013) (-55.65666199999998 52.441933000000006) (-55.648612999999955 52.43971299999998) (-55.645554000000004 52.43749200000008) (-55.64277599999997 52.432770000000005) (-55.64277599999997 52.42777300000006) (-55.641669999999976 52.368881000000044) (-55.641944999999964 52.36388399999993) (-55.643332999999984 52.35833000000014) (-55.64778099999995 52.354164000000026) (-55.65444199999996 52.351661999999976) (-55.782501000000025 52.33416000000011) (-55.825004999999976 52.343048000000124) (-55.92861199999993 52.369438000000116) (-56.06833599999993 52.40721099999996) (-56.173614999999984 52.43888100000004) (-56.180556999999965 52.44082600000007) (-56.19444299999992 52.44221500000003) (-56.19694500000003 52.43998700000009) (-56.19527399999998 52.43582200000009) (-56.19138299999997 52.431107000000054) (-56.18138899999997 52.4230500000001) (-56.169448999999986 52.41610000000003) (-55.95666499999999 52.35027299999996) (-55.85777999999999 52.325271999999984) (-55.707222 52.248329000000126) (-55.67722299999997 52.20832799999994) (-55.68638599999997 52.10943600000002) (-55.69694500000003 52.08832600000005) (-55.70166799999993 52.08221400000008) (-55.89666699999992 51.950829) (-56.023330999999985 51.9019320000001) (-56.203330999999935 51.79332699999998) (-56.209723999999994 51.78971900000005) (-56.235832000000016 51.783607000000075) (-56.346663999999976 51.759720000000016) (-56.468886999999995 51.709434999999985) (-56.68972000000002 51.59221600000001) (-56.76445000000001 51.54860700000006) (-56.804169 51.50777399999998) (-56.80583200000001 51.502219999999966) (-56.80889100000002 51.49638400000009) (-56.81361399999997 51.491661000000136) (-56.94277199999999 51.42748999999992) (-56.94972199999995 51.424713000000054) (-56.956947000000014 51.4230500000001) (-57.00556199999994 51.41944100000012) (-57.078056000000004 51.41443600000008) (-57.10423999999995 51.412674000000095) (-57.14222699999999 51.424164000000076) (-57.23221599999994 51.498604000000114) (-57.23777799999999 51.502219999999966) (-57.24722299999996 51.504166000000055) (-57.255562 51.50443999999999) (-57.263617999999894 51.50360899999998) (-57.421386999999925 51.480545000000006) (-57.43777499999999 51.46110500000003) (-57.43638599999997 51.45638300000013) (-57.44083399999994 51.44999700000005) (-57.447495 51.447487000000024) (-57.45472000000001 51.445541000000105) (-57.58666199999999 51.42971800000009) (-57.602225999999916 51.42804700000005) (-57.676665999999955 51.42999300000008) (-57.685828999999956 51.43082400000009) (-57.688605999999936 51.4355470000001) (-57.692497 51.45526899999999) (-57.69193999999993 51.46110500000003) (-57.68943799999994 51.46638500000006) (-57.70527599999997 51.46943700000003) (-57.73082699999986 51.47109999999992) (-57.748054999999965 51.47221400000012) (-57.88388800000001 51.392494) (-57.88999899999999 51.388885000000016) (-57.94277199999999 51.35610200000002) (-57.95472000000001 51.34804500000007) (-57.966110000000015 51.338599999999985) (-57.975554999999986 51.328330999999935) (-57.98666400000002 51.31944299999998) (-58.00695000000002 51.31249200000002) (-58.02138499999995 51.30888400000009) (-58.21138799999994 51.27166) (-58.29722599999997 51.26859999999999) (-58.305556999999965 51.26859999999999) (-58.32444800000002 51.272217000000126) (-58.40777600000001 51.295547000000056) (-58.620551999999975 51.277214000000015) (-58.62805199999997 51.275551000000064) (-58.675003000000004 51.25527199999999) (-58.68000000000001 51.25000000000006) (-58.68055699999991 51.24415600000003) (-58.68000000000001 51.234161000000086) (-58.678337 51.22943100000009) (-58.675559999999905 51.224991000000045) (-58.67111199999994 51.22082499999999) (-58.665549999999996 51.216934000000094) (-58.63583399999993 51.19776900000011) (-58.62138399999998 51.19110099999995) (-58.59222399999993 51.18471500000004) (-58.61333499999995 51.15749400000004) (-58.618607 51.153046000000074) (-58.63055400000002 51.14582800000005) (-58.713615000000004 51.10610200000008) (-58.726944 51.09999800000003) (-58.73332999999997 51.09804500000007) (-58.785278000000005 51.08804299999997) (-58.91471899999999 51.05249000000009) (-58.92805499999997 51.048607000000004) (-58.990836999999885 51.0219350000001) (-59.00333399999994 51.01554900000002) (-59.006110999999976 51.00971999999996) (-59.00361600000002 51.0044400000001) (-58.99888599999997 51.00110600000011) (-58.990279999999984 50.998046999999985) (-58.981383999999935 50.99721500000004) (-58.97527299999996 51.000832) (-58.96832999999998 51.002495000000124) (-58.95944199999997 51.00166300000001) (-58.95472000000001 50.99665800000014) (-58.95249899999999 50.99249300000014) (-58.946662999999944 50.83387800000003) (-58.94805100000002 50.82833100000005) (-59.010559 50.754166000000055) (-59.01528200000001 50.748604000000114) (-59.041672000000005 50.75138900000013) (-59.061385999999914 50.75555400000013) (-59.06833599999999 50.759163000000115) (-59.08721899999995 50.77526899999992) (-59.09305599999993 50.78943600000008) (-59.09444400000001 50.799438000000066) (-59.09471899999994 50.81526900000006) (-59.118889000000024 50.80360400000012) (-59.15582999999998 50.77110300000004) (-59.186385999999914 50.74221799999998) (-59.228882 50.73832700000008) (-59.397223999999994 50.65721100000013) (-59.454444999999964 50.621933000000126) (-59.45972399999994 50.61721) (-59.51916499999993 50.552773) (-59.57055699999995 50.493607000000054) (-59.58000199999992 50.48276500000003) (-59.58527400000003 50.47804300000013) (-59.59166700000003 50.47526600000003) (-59.59861000000001 50.47360200000003) (-59.73361199999994 50.44499200000001) (-59.778336000000024 50.438881000000094) (-59.80388599999998 50.438881000000094) (-59.81055500000002 50.437492000000134) (-59.816108999999926 50.433876000000055) (-59.82167099999998 50.42943600000007) (-59.87222299999996 50.38110399999999) (-59.881667999999934 50.371658000000025) (-59.881667999999934 50.36638600000009) (-59.858893999999964 50.329436999999984) (-59.853888999999924 50.32610299999999) (-59.844719 50.324440000000095) (-59.83777599999996 50.32610299999999) (-59.83472399999988 50.338043000000084) (-59.83499899999998 50.343323) (-59.830832999999984 50.34943400000009) (-59.82472200000001 50.35166200000003) (-59.81500199999999 50.34915900000004) (-59.813331999999946 50.344154) (-59.81722300000001 50.33277099999998) (-59.82749899999999 50.32360799999998) (-59.83388500000001 50.31916000000001) (-59.86028299999998 50.31054700000004) (-59.90527300000002 50.29110700000007) (-60.00500499999998 50.248878000000104) (-60.11444899999992 50.23304699999994) (-60.14778100000001 50.2741620000001) (-60.18444099999999 50.27971600000012) (-60.23694599999999 50.268051000000014) (-60.29167199999995 50.245270000000005) (-60.29861499999993 50.24332400000014) (-60.32444799999996 50.244713000000104) (-60.36000100000001 50.250831999999946) (-60.40444200000002 50.251389000000074) (-60.45889299999999 50.25110600000011) (-60.48332999999991 50.250831999999946) (-60.491668999999945 50.25054899999998) (-60.498610999999926 50.248604) (-60.51167299999997 50.24249300000014) (-60.52222399999988 50.23471800000004) (-60.52694699999995 50.2291560000001) (-60.58361100000002 50.208327999999995) (-60.59166699999997 50.20804600000014) (-60.67444599999999 50.219986000000006) (-60.710556 50.2227630000001) (-60.838607999999965 50.214995999999985) (-61.05222299999997 50.21554600000002) (-61.289443999999946 50.199158000000125) (-61.427779999999984 50.171379000000115) (-61.50556199999994 50.152489) (-61.583610999999905 50.13249200000013) (-61.65083299999992 50.109993000000145) (-61.720832999999914 50.09193400000004) (-61.73161299999998 50.10193600000002) (-61.742106999999976 50.10527000000002) (-61.74627700000002 50.10726900000003) (-61.74828000000002 50.10994000000005) (-61.71210499999995 50.12226899999996) (-61.70378099999999 50.12477100000007) (-61.69944399999997 50.125435000000095) (-61.69444299999992 50.125435000000095) (-61.67138699999998 50.136940000000095) (-61.62055199999992 50.147491) (-61.593055999999876 50.1552660000001) (-61.57972699999999 50.16082000000006) (-61.574447999999904 50.16554300000007) (-61.57194500000003 50.17166100000003) (-61.573891 50.18166400000007) (-61.577225 50.18610400000006) (-61.58916499999998 50.18888099999998) (-61.59361299999995 50.185546999999985) (-61.602225999999916 50.174438000000066) (-61.60777999999999 50.17082999999997) (-61.62222299999996 50.16610000000014) (-61.731833999999935 50.144268000000125) (-61.746997999999905 50.144431999999995) (-61.75750399999998 50.14527099999998) (-61.76183299999997 50.14726999999999) (-61.76366399999995 50.14976899999999) (-61.76299999999998 50.15327100000002) (-61.76066599999996 50.15709700000008) (-61.794448999999986 50.1594310000001) (-61.79527999999999 50.16999100000004) (-61.79695099999998 50.17471300000011) (-61.80444299999999 50.18332699999996) (-61.848884999999996 50.22248800000011) (-61.864723000000026 50.228600000000085) (-61.898338000000024 50.23360400000007) (-61.90721899999994 50.23416099999997) (-61.96333299999998 50.236107000000004) (-61.97721899999999 50.23193400000008) (-61.989723000000026 50.22637900000001) (-61.996666000000005 50.224158999999986) (-62.00417299999992 50.22304500000001) (-62.20249899999999 50.23443600000013) (-62.26889 50.25972000000013) (-62.31777999999997 50.28138000000013) (-62.328056000000004 50.283882000000006) (-62.39749899999998 50.29444100000006) (-62.40416700000003 50.29222100000004) (-62.41554999999994 50.28472099999999) (-62.42556000000002 50.27526900000004) (-62.42999999999995 50.269714000000135) (-62.43999499999995 50.260551000000135) (-62.446105999999986 50.25750000000011) (-62.57222699999994 50.274712000000136) (-62.74694799999992 50.28472099999999) (-63.11250299999995 50.29138200000011) (-63.15833299999997 50.26027700000003) (-63.159163999999976 50.25471500000009) (-63.22860700000001 50.23471800000004) (-63.23666399999996 50.23443600000013) (-63.37194099999999 50.23665599999998) (-63.46944399999995 50.25721699999997) (-63.565552000000025 50.26415999999995) (-63.61666099999991 50.26666300000011) (-63.64972699999993 50.27276600000005) (-63.687499999999886 50.2824940000001) (-63.693885999999964 50.29193900000001) (-63.69860799999998 50.29527299999995) (-63.70750399999997 50.29777500000006) (-63.803328999999906 50.311661000000015) (-63.82138800000001 50.31220999999999) (-63.97610499999996 50.30554999999998) (-64.06723 50.29222100000004) (-64.12777699999992 50.27193500000004) (-64.14056399999993 50.26693700000004) (-64.15417500000001 50.26249700000005) (-64.16221599999994 50.26221499999997) (-64.21528599999994 50.2649990000001) (-64.23472600000002 50.26693700000004) (-64.262787 50.271660000000054) (-64.36527999999998 50.29222100000004) (-64.37388599999997 50.294998000000135) (-64.402222 50.30749500000013) (-64.41777000000002 50.31304899999992) (-64.43666100000002 50.317772000000105) (-64.44610599999999 50.31916000000001) (-64.45500199999992 50.31944299999998) (-64.46305799999999 50.31916000000001) (-64.47083999999995 50.317772000000105) (-64.51000999999997 50.30304699999999) (-64.61193800000001 50.28138000000013) (-64.62805200000003 50.279160000000104) (-64.65943899999996 50.277214000000015) (-64.72500600000001 50.27443699999998) (-64.89999399999994 50.27082800000011) (-65.18055700000002 50.28555300000005) (-65.18998699999992 50.2866590000001) (-65.22277799999995 50.29777500000006) (-65.237503 50.30387900000005) (-65.24249299999985 50.30776999999995) (-65.27500900000001 50.30804400000005) (-65.464447 50.29943799999995) (-65.48666399999996 50.29527299999995) (-65.52166699999998 50.285828000000095) (-65.58999599999999 50.27526900000004) (-65.69055200000003 50.261108000000036) (-65.747772 50.256943000000035) (-65.829453 50.25332600000007) (-65.84583999999995 50.25888800000001) (-65.864441 50.26888300000013) (-65.87638900000002 50.276382000000126) (-65.89805599999988 50.28499599999998) (-65.91805999999997 50.28832999999997) (-65.95249899999993 50.288887000000045) (-65.97416699999997 50.283882000000006) (-65.9869379999999 50.278328000000045) (-65.99305700000002 50.27526900000004) (-66.0041809999999 50.26832600000006) (-66.02471899999995 50.251389000000074) (-66.04333499999996 50.22221400000001) (-66.083328 50.19360399999994) (-66.08972199999988 50.19137599999999) (-66.16332999999997 50.197212000000036) (-66.31416300000001 50.20971700000001) (-66.40638699999994 50.23998999999998) (-66.40695199999999 50.245270000000005) (-66.41221599999994 50.260551000000135) (-66.416946 50.26444200000003) (-66.42304999999993 50.26776899999999) (-66.43331899999998 50.269714000000135) (-66.44166599999994 50.269157000000064) (-66.45639 50.26638800000012) (-66.46972700000003 50.26193999999998) (-66.49472000000003 50.249435000000005) (-66.51194800000002 50.23915899999997) (-66.70083599999992 50.102493000000095) (-66.72332799999992 50.07833100000005) (-66.8619379999999 50.022491000000116) (-66.88249200000001 50.016662999999994) (-66.896118 50.01194000000004) (-66.92027300000001 50.0002750000001) (-66.9424899999999 49.985825000000034) (-66.95861799999994 49.974709000000075) (-66.96362299999998 49.969154) (-66.96639999999996 49.96332600000005) (-66.975281 49.94360399999999) (-66.97582999999997 49.937767000000065) (-66.96556099999992 49.91944100000006) (-66.96333299999998 49.91471100000001) (-67.01640299999985 49.85471299999995) (-67.06138599999986 49.84137700000002) (-67.06527699999992 49.84554300000008) (-67.07389799999993 49.84804500000001) (-67.0958399999999 49.84360500000014) (-67.11582900000002 49.83665500000012) (-67.12165800000002 49.833327999999995) (-67.13722200000001 49.82138100000003) (-67.14666699999998 49.812492000000134) (-67.15139799999992 49.806937999999946) (-67.162216 49.79055000000011) (-67.17416400000002 49.76471700000013) (-67.23889200000002 49.590546000000074) (-67.24082899999996 49.57888000000008) (-67.241379 49.56749700000006) (-67.24082899999996 49.556655999999975) (-67.23999000000003 49.55165900000003) (-67.23500099999995 49.53555300000005) (-67.228882 49.51027700000003) (-67.22917199999995 49.48304700000011) (-67.23083499999996 49.47693600000002) (-67.23388699999998 49.47026800000009) (-67.36915599999998 49.33277100000004) (-67.375 49.32721700000002) (-67.386124 49.32222000000007) (-67.40278599999988 49.3211060000001) (-67.42027300000001 49.321663) (-67.43859900000001 49.324440000000095) (-67.47361799999999 49.32666000000012) (-67.56973299999999 49.32999400000011) (-67.57749899999999 49.32916300000011) (-67.70639 49.312767000000065) (-67.93916300000001 49.28777300000013) (-67.975281 49.284996000000035) (-68.11972000000003 49.271660000000054) (-68.12721299999998 49.26944000000003) (-68.13194299999992 49.26610600000009) (-68.13639799999993 49.260550999999964) (-68.13890099999992 49.25471500000009) (-68.14056399999993 49.24860400000006) (-68.14388999999989 49.23054500000012) (-68.18083200000001 49.12193300000007) (-68.1849979999999 49.116104000000064) (-68.18971299999993 49.112213) (-68.19499200000001 49.10833000000008) (-68.20111099999991 49.105552999999986) (-68.22166399999998 49.10027300000007) (-68.36944599999998 49.069443000000035) (-68.44248999999996 49.09554300000008) (-68.571396 49.061104) (-68.59056099999998 49.05416100000002) (-68.60694899999993 49.04249600000014) (-68.62609900000001 49.02388000000013) (-68.69638099999997 48.93998700000009) (-68.876938 48.85193600000008) (-69.047775 48.773048000000074) (-69.06082200000003 48.767494000000056) (-69.064438 48.762496999999996) (-69.08473200000003 48.72165700000005) (-69.0894469999999 48.70943500000004) (-69.09361299999995 48.691933000000006) (-69.09611499999994 48.67499500000014) (-69.0994419999999 48.66332200000011) (-69.10610999999994 48.64499699999999) (-69.1119379999999 48.63249200000007) (-69.12388599999991 48.6147160000001) (-69.14250199999992 48.59499400000004) (-69.14805599999994 48.591102999999976) (-69.15972899999997 48.58526599999999) (-69.16639700000002 48.58332800000005) (-69.18415800000002 48.58471700000007) (-69.20167500000002 48.588599999999985) (-69.21861299999995 48.58971399999996) (-69.22666900000002 48.58888200000007) (-69.23138399999993 48.585548000000074) (-69.23638899999992 48.58110800000003) (-69.26528899999994 48.54166399999997) (-69.27944899999994 48.51583100000005) (-69.28277600000001 48.50416600000011) (-69.28332499999993 48.49304999999998) (-69.28250099999997 48.48249099999998) (-69.29277000000002 48.45777100000009) (-69.30110200000001 48.446655000000135) (-69.43276999999995 48.307770000000005) (-69.43777499999999 48.30304700000005) (-69.45472699999999 48.29193900000001) (-69.59777799999995 48.207497000000046) (-69.672775 48.14388300000013) (-69.68388400000003 48.13777200000004) (-69.69137599999999 48.137496999999996) (-69.80082699999997 48.15360300000003) (-69.81027199999994 48.155823) (-69.73472599999997 48.113609000000054) (-69.73028599999998 48.10943600000013) (-69.73249800000002 48.103607000000125) (-69.78639199999986 47.99471300000005) (-69.839447 47.90721099999996) (-69.92582700000003 47.773048000000074) (-69.93582200000003 47.764441999999974) (-70.00222799999995 47.71193699999998) (-70.01556399999998 47.70277399999998) (-70.07194500000003 47.674713000000054) (-70.07749899999999 47.67249300000009) (-70.09110999999996 47.66915900000009) (-70.132767 47.64499699999999) (-70.17999299999997 47.608330000000024) (-70.19027699999992 47.59915900000004) (-70.20249899999999 47.58305399999995) (-70.20611600000001 47.57666000000012) (-70.2083439999999 47.57054900000003) (-70.20944199999997 47.55387900000011) (-70.20750399999991 47.533051) (-70.208618 47.52721400000007) (-70.21722399999993 47.508331) (-70.22555499999993 47.496384000000035) (-70.2308349999999 47.49249300000014) (-70.29972799999996 47.466933999999924) (-70.34167499999995 47.46054800000002) (-70.4619449999999 47.429993000000024) (-70.50250199999999 47.39083099999999) (-70.55583199999995 47.32276900000011) (-70.56639100000001 47.30416100000002) (-70.56861899999996 47.29804999999993) (-70.57112099999995 47.28110499999997) (-70.57417299999997 47.274437000000034) (-70.58612099999999 47.25777399999993) (-70.69943199999994 47.12609900000001) (-70.72166400000003 47.1013870000001) (-70.73306300000002 47.095543000000134) (-70.79249600000003 47.06832900000012) (-70.81750499999993 47.058884000000035) (-70.82362399999994 47.056938) (-70.86694299999994 47.051383999999985) (-70.89334100000002 47.045273000000066) (-70.92304999999993 47.032211000000075) (-70.97361799999999 47.003326000000015) (-71.11361699999986 46.912491000000045) (-71.18249500000002 46.86415899999997) (-71.197495 46.85249300000004) (-71.19860799999998 46.84638200000012) (-71.29916400000002 46.74221800000009) (-71.291946 46.74415600000003) (-71.27972399999993 46.74916100000007) (-71.20944199999997 46.7824940000001) (-71.19888299999991 46.788887000000045) (-71.18888899999996 46.79666100000003) (-71.18443299999996 46.80277300000006) (-71.17832900000002 46.815269000000114) (-71.1663969999999 46.83110800000003) (-71.15611299999995 46.83888200000007) (-71.14999399999994 46.84249100000005) (-71.14361599999995 46.844711000000075) (-71.13055400000002 46.847488) (-71.11527999999998 46.84887700000013) (-71.100281 46.84887700000013) (-71.083328 46.847488) (-70.98693799999995 46.85416400000008) (-70.77223200000003 46.91582500000004) (-70.76640299999991 46.91888400000005) (-70.75500499999998 46.93665299999998) (-70.74444599999993 46.94332099999991) (-70.73750299999995 46.946098000000006) (-70.63806199999999 46.98165899999998) (-70.61888099999993 46.98804500000006) (-70.60499600000003 46.99027300000006) (-70.57501200000002 46.99332400000009) (-70.55332899999996 46.99804700000004) (-70.54138199999994 47.00249500000001) (-70.53028899999993 47.00777399999998) (-70.506958 47.02027099999998) (-70.48638900000003 47.03360700000013) (-70.46112099999993 47.05360400000001) (-70.33416699999992 47.15554800000001) (-70.31027199999994 47.176659000000086) (-70.273056 47.213608000000136) (-70.11111499999998 47.34054600000013) (-70.078888 47.36110699999995) (-70.04888899999997 47.38610799999998) (-70.04415899999992 47.39083099999999) (-70.04083300000002 47.39721700000007) (-70.03999299999987 47.40277100000009) (-69.96749899999998 47.50582900000006) (-69.90194699999995 47.537216) (-69.89639299999993 47.54110700000007) (-69.80583200000001 47.613052000000096) (-69.65943900000002 47.744713000000104) (-69.63999899999988 47.76277200000004) (-69.59306300000003 47.80888400000009) (-69.55665599999986 47.85638400000005) (-69.55638099999993 47.86666100000002) (-69.54415899999998 47.883605999999986) (-69.52667200000002 47.90415999999999) (-69.50805700000001 47.92443800000001) (-69.49888599999986 47.933876) (-69.46972700000003 47.96193700000009) (-69.45056199999999 47.97915599999999) (-69.429169 47.99527000000012) (-69.41833500000001 48.00138900000013) (-69.41166699999997 48.003326000000015) (-69.27528399999994 48.06777200000005) (-69.11610399999995 48.178604000000064) (-69.10194399999995 48.192764000000125) (-69.08666999999997 48.204994000000056) (-69.05416899999989 48.22860000000014) (-69.01640299999997 48.254166) (-68.968613 48.279990999999995) (-68.94055200000003 48.29499800000002) (-68.83167999999989 48.34471100000013) (-68.695267 48.39638500000012) (-68.541382 48.451385000000016) (-68.52944899999994 48.45721400000002) (-68.51916499999999 48.464157) (-68.51306199999988 48.469437000000084) (-68.49694799999992 48.490273000000116) (-68.47389199999998 48.515549000000135) (-68.46916199999987 48.52027100000004) (-68.45361300000002 48.5324940000001) (-68.43443300000001 48.54166399999997) (-68.42250100000001 48.54527299999995) (-68.40777600000001 48.548050000000046) (-68.37582399999985 48.546386999999925) (-68.368607 48.547493000000145) (-68.354446 48.55138400000004) (-68.34834299999989 48.554161000000136) (-68.33667000000003 48.561661000000015) (-68.28332499999999 48.600273000000016) (-68.23693799999995 48.625549000000035) (-68.21112099999993 48.636658000000125) (-68.19332899999989 48.64305100000007) (-68.17916899999994 48.64666000000011) (-68.15695199999999 48.64916199999999) (-68.12554899999998 48.648330999999985) (-68.11193800000001 48.65138200000001) (-67.97361799999999 48.695541000000105) (-67.70944199999985 48.793884000000105) (-67.531387 48.85916099999997) (-67.20973200000003 48.93582200000009) (-67.087784 48.96082300000012) (-67.06750499999998 48.96693399999998) (-67.01583899999997 48.98693800000012) (-66.991669 48.99916099999996) (-66.96083099999998 49.01194000000004) (-66.922775 49.02665700000006) (-66.91639700000002 49.02887700000002) (-66.72250399999996 49.08998900000006) (-66.42166099999992 49.162765999999976) (-66.306107 49.18693500000012) (-66.22500599999995 49.200829000000056) (-66.08917200000002 49.218597000000045) (-66.07417299999997 49.21971100000002) (-65.83250399999991 49.23137700000001) (-65.67832899999996 49.245543999999995) (-65.49694799999997 49.261664999999994) (-65.44721999999996 49.262215000000026) (-65.394455 49.25971999999996) (-65.35972600000002 49.256660000000124) (-64.99694799999992 49.22026799999992) (-64.91665599999999 49.20665699999995) (-64.82556199999993 49.18776700000001) (-64.80583199999995 49.18332700000002) (-64.79527300000001 49.17610200000013) (-64.79194599999994 49.17166100000003) (-64.77471899999995 49.159988) (-64.76333599999992 49.15416000000005) (-64.74888599999991 49.148048000000074) (-64.73194899999999 49.14222000000001) (-64.66082799999987 49.12304700000004) (-64.64111299999996 49.11888099999999) (-64.60665899999992 49.117210000000114) (-64.58805799999999 49.112213) (-64.37638899999996 48.997772) (-64.23554999999999 48.91027100000002) (-64.22166399999998 48.8983310000001) (-64.21444699999995 48.88943499999999) (-64.20889299999999 48.880547000000035) (-64.15222199999994 48.764999000000046) (-64.15249599999999 48.75999500000012) (-64.15805099999994 48.75610400000005) (-64.16776999999996 48.758331000000055) (-64.20889299999999 48.782767999999976) (-64.21333299999998 48.78665900000004) (-64.22999599999997 48.79749300000009) (-64.24415599999998 48.80360400000001) (-64.29028299999993 48.82110600000004) (-64.29888900000003 48.82388300000014) (-64.31555200000003 48.82888000000003) (-64.37721299999993 48.84638200000006) (-64.39584400000001 48.851105000000075) (-64.51222200000001 48.87471000000005) (-64.53056299999992 48.87721300000004) (-64.54888899999992 48.87832600000007) (-64.54333500000001 48.873604) (-64.53277599999996 48.86693600000007) (-64.464447 48.82444000000004) (-64.37416100000002 48.787773000000016) (-64.266663 48.71332600000011) (-64.256958 48.70609999999999) (-64.17304999999993 48.63943500000005) (-64.16194200000001 48.62748700000003) (-64.16000400000001 48.62276500000013) (-64.166946 48.62137600000011) (-64.19305399999996 48.62360400000006) (-64.24110399999995 48.6222150000001) (-64.25500499999993 48.61859900000002) (-64.26083399999987 48.61582899999996) (-64.265289 48.610825000000034) (-64.26972999999998 48.60471300000006) (-64.27471899999995 48.5927660000001) (-64.28056300000003 48.575271999999984) (-64.28250099999991 48.56916000000001) (-64.28332499999988 48.56360599999999) (-64.27917499999995 48.554161000000136) (-64.27333099999993 48.55054500000006) (-64.26417499999991 48.54916400000002) (-64.245834 48.546661000000086) (-64.21916199999998 48.52832799999999) (-64.24638400000003 48.48804499999994) (-64.32250999999985 48.43721000000011) (-64.42639200000002 48.40416000000005) (-64.49305700000002 48.394440000000145) (-64.50666799999999 48.39166300000005) (-64.58694500000001 48.36832400000003) (-64.68638599999997 48.33832600000011) (-64.73138399999988 48.27471200000002) (-64.75029 48.24582700000013) (-64.75389099999995 48.23998999999998) (-64.760559 48.227211000000125) (-64.76806599999998 48.20277400000003) (-64.77139299999999 48.19638100000009) (-64.77861000000001 48.19499200000007) (-64.87332200000003 48.180550000000096) (-64.931671 48.17166100000003) (-64.97250399999996 48.13526900000005) (-65.15306099999998 48.052216000000044) (-65.19665499999996 48.033607000000075) (-65.202789 48.03138000000001) (-65.27000399999997 48.012771999999984) (-65.30583200000001 48.00555400000013) (-65.32695000000001 48.002220000000136) (-65.45556599999998 48.00027499999999) (-65.46389799999997 48.00277700000004) (-65.472778 48.01138300000014) (-65.47860700000001 48.01971400000008) (-65.48472600000002 48.03388200000012) (-65.491104 48.04249600000014) (-65.50418100000002 48.04888200000005) (-65.68916299999995 48.093879999999956) (-65.7644499999999 48.10999300000003) (-65.88890099999992 48.19915800000001) (-65.90417500000001 48.205826) (-65.94999699999994 48.191101) (-65.95639 48.18888100000004) (-66.006958 48.15915699999999) (-66.02471899999995 48.13916000000012) (-66.12971499999992 48.10721600000011) (-66.24276700000001 48.109161000000086) (-66.39639299999993 48.11499800000007) (-66.40638699999994 48.11638599999998) (-66.43249500000002 48.11859900000013) (-66.47084000000001 48.11943800000006) (-66.47778299999999 48.11804999999998) (-66.48416099999997 48.11554699999999) (-66.495544 48.10943600000013) (-66.50639299999995 48.10221899999999) (-66.52555799999999 48.08554800000002) (-66.52999899999992 48.08055100000007) (-66.66722099999998 48.0283280000001) (-66.67361499999998 48.026099999999985) (-66.76371799999998 48.00622599999997) (-66.84370399999995 47.996650999999986) (-66.84249899999998 47.99221800000004) (-66.83666999999997 47.98888400000004) (-66.828888 47.98721299999994) (-66.74999999999994 47.979988000000105) (-66.72888199999994 47.98443600000007) (-66.61082499999998 48.01110799999998) (-66.58473199999997 48.019440000000145) (-66.57333399999999 48.02582600000005) (-66.54055800000003 48.03638500000011) (-66.43443300000001 48.067497) (-66.42027300000001 48.070549000000085) (-66.36416599999995 48.07332600000001) (-66.35665899999992 48.07332600000001) (-66.35082999999992 48.069717000000026) (-66.34999099999993 48.06471300000004) (-66.25917099999998 47.99943500000012) (-66.04222099999998 47.93582200000009) (-65.98889200000002 47.92388199999999) (-65.97027600000001 47.92083000000008) (-65.936935 47.92083000000008) (-65.92222599999997 47.92276800000002) (-65.90695199999999 47.92332500000009) (-65.88027999999991 47.92054700000011) (-65.843887 47.91137700000007) (-65.81861900000001 47.90387700000002) (-65.81138599999991 47.900825999999995) (-65.79360999999994 47.89083100000005) (-65.77278099999995 47.876380999999924) (-65.75750699999998 47.865273000000116) (-65.74638399999998 47.85277599999995) (-65.7250059999999 47.82749199999995) (-65.718613 47.81888600000008) (-65.714447 47.80943300000001) (-65.71362299999998 47.80416100000008) (-65.69694499999997 47.73304700000011) (-65.67193600000002 47.64582800000005) (-65.66777000000002 47.64138000000008) (-65.63473499999998 47.62082700000002) (-65.62832600000002 47.623046999999985) (-65.38999899999999 47.736107000000004) (-65.33277900000002 47.76693700000004) (-65.25389099999995 47.80165900000003) (-65.24082900000002 47.806655999999975) (-65.202789 47.81860399999999) (-65.16749600000003 47.825271999999984) (-65.04472399999997 47.844436999999914) (-65.02084400000001 47.844993999999986) (-64.98500099999995 47.84137700000008) (-64.81555200000003 47.811104000000114) (-64.80555700000002 47.80888400000009) (-64.79722600000002 47.8063810000001) (-64.71916199999998 47.764441999999974) (-64.71333299999998 47.761108000000036) (-64.67666599999995 47.7355500000001) (-64.67027300000001 47.72693600000002) (-64.67332499999992 47.72026800000003) (-64.67944299999999 47.71665999999993) (-64.7036129999999 47.70694000000003) (-64.80332899999996 47.63054700000009) (-64.85972599999997 47.57666000000012) (-64.870094 47.53629300000006) (-64.87110899999999 47.51583100000005) (-64.87027 47.51082600000001) (-64.87554899999998 47.46082300000006) (-64.88082899999995 47.432495000000074) (-64.88639799999999 47.41415400000005) (-64.91000400000001 47.353049999999996) (-65.13806199999999 47.19221500000003) (-65.226944 47.14083100000005) (-65.23832700000003 47.13472000000013) (-65.26333599999992 47.124435000000005) (-65.33972199999994 47.099433999999974) (-65.36416599999995 47.08971400000007) (-65.3699949999999 47.08665500000012) (-65.36527999999987 47.08277100000009) (-65.21888699999988 47.05360400000001) (-65.10110500000002 47.07694200000009) (-65.01722699999993 47.09137700000002) (-64.80555700000002 47.08305400000006) (-64.79861499999993 47.079994) (-64.80277999999993 46.993049999999926) (-64.80332899999996 46.987495000000024) (-64.80722000000003 46.98165899999998) (-64.81221 46.97776800000008) (-64.81806899999992 46.9741590000001) (-64.83583099999998 46.96582799999999) (-64.85722399999997 46.95277399999992) (-64.87193300000001 46.939430000000016) (-64.88027999999991 46.93054999999998) (-64.89222699999999 46.91443600000008) (-64.89611799999994 46.90888200000006) (-64.89916999999997 46.90248900000012) (-64.90499899999998 46.88360600000004) (-64.906387 46.872490000000084) (-64.90499899999998 46.85110500000013) (-64.9036099999999 46.84082799999993) (-64.87721299999998 46.79110700000007) (-64.86389199999996 46.77443699999992) (-64.81806899999992 46.72165700000005) (-64.74861099999998 46.70277399999998) (-64.74027999999998 46.70249200000012) (-64.72639499999991 46.69638100000003) (-64.72084000000001 46.693047000000035) (-64.71333299999998 46.68415800000014) (-64.71112099999999 46.67999300000014) (-64.70861799999994 46.66999100000004) (-64.70500199999998 46.638329000000056) (-64.67332499999992 46.500832) (-64.66194200000001 46.468048000000124) (-64.65083300000003 46.460548000000074) (-64.62193300000001 46.4272160000001) (-64.61361699999998 46.41443599999997) (-64.61193800000001 46.409714000000065) (-64.615005 46.39249400000011) (-64.61305199999998 46.366104000000064) (-64.50418100000002 46.240273) (-64.402222 46.233047000000056) (-64.237503 46.22915599999999) (-64.11694299999994 46.18193800000006) (-64.035553 46.182213000000104) (-63.970832999999914 46.18054999999998) (-63.954444999999964 46.17804699999999) (-63.83028399999995 46.146385000000066) (-63.822227 46.14388299999996) (-63.776389999999935 46.12110100000007) (-63.77305599999994 46.11749300000014) (-63.77111100000002 46.112769999999955) (-63.77249899999987 46.108047) (-63.77694700000001 46.1033250000001) (-63.78305799999998 46.09971600000006) (-63.79944599999999 46.09137700000002) (-63.80555700000002 46.08915700000006) (-63.886391 46.06082200000003) (-63.89250199999992 46.05888400000009) (-63.91944899999993 46.053047000000106) (-63.92694899999992 46.052490000000034) (-63.988609 46.05193300000013) (-64.02333099999998 46.057495000000074) (-64.06806899999998 46.05943300000001) (-64.07250999999997 46.05471000000006) (-64.093887 46.02166) (-64.06500199999988 46.00471500000003) (-64.04278599999998 45.99189800000005) (-64.01251200000002 46.005829000000006) (-64.00527999999991 46.00555400000002) (-63.913054999999986 45.979987999999935) (-63.86416600000001 45.96110500000003) (-63.859443999999996 45.95193499999999) (-63.86138900000003 45.94582400000013) (-63.84610699999996 45.93082400000014) (-63.714721999999995 45.840546000000074) (-63.66999800000002 45.81805400000002) (-63.664161999999976 45.815268999999944) (-63.64583600000003 45.83332800000005) (-63.63166799999999 45.85943600000002) (-63.600280999999995 45.869986999999924) (-63.58055899999994 45.87443500000012) (-63.48249800000002 45.8772130000001) (-63.474441999999954 45.87693800000005) (-63.45722199999989 45.87416099999996) (-63.420279999999934 45.86499799999996) (-63.406661999999926 45.858887000000095) (-63.403884999999946 45.85443900000013) (-63.42861199999993 45.82360799999998) (-63.434440999999936 45.82083100000011) (-63.441108999999926 45.81944299999998) (-63.45610799999997 45.81888600000008) (-63.488051999999925 45.82083100000011) (-63.51333599999998 45.82416500000005) (-63.520835999999974 45.82388300000002) (-63.52583299999998 45.81999200000013) (-63.52666499999998 45.81443800000011) (-63.5236129999999 45.80998999999997) (-63.515556000000004 45.80721300000005) (-63.50695000000002 45.80582400000009) (-63.43360899999993 45.79943800000001) (-63.42556000000002 45.799164000000076) (-63.34332999999998 45.797492999999974) (-63.32833899999997 45.79833200000013) (-63.28722399999998 45.80554999999998) (-63.281113000000005 45.80776999999995) (-63.27417000000003 45.80888399999998) (-63.25111399999997 45.80971499999998) (-63.235000999999954 45.80860100000001) (-63.22943900000001 45.80499300000008) (-63.23332999999997 45.79943800000001) (-63.23889200000002 45.79638699999998) (-63.31388900000002 45.76944000000003) (-63.319725000000005 45.76805100000007) (-63.35583500000001 45.76444200000003) (-63.372222999999906 45.76638800000012) (-63.379997 45.766106000000036) (-63.38194299999998 45.759995) (-63.37666300000001 45.75582900000006) (-63.361114999999984 45.74554399999994) (-63.35444599999994 45.74249300000014) (-63.31361400000003 45.736938000000066) (-63.282501000000025 45.73333000000014) (-63.189719999999966 45.73443600000013) (-63.120833999999945 45.7594380000001) (-63.09055299999994 45.79027600000006) (-63.082779000000016 45.80332199999998) (-62.99388899999997 45.79638699999998) (-62.985275 45.794998000000135) (-62.95833600000003 45.788887000000045) (-62.72361000000001 45.764160000000004) (-62.677779999999984 45.764160000000004) (-62.55722000000003 45.67471300000011) (-62.50389099999995 45.62748700000009) (-62.46194499999996 45.61249500000008) (-62.25028199999991 45.708327999999995) (-62.092772999999966 45.78110500000014) (-62.03500399999996 45.82083100000011) (-62.01500699999991 45.83665500000001) (-61.97332799999998 45.86721000000006) (-61.93138899999997 45.884720000000016) (-61.92555999999996 45.88610799999992) (-61.91750300000001 45.88555100000002) (-61.903052999999886 45.87943300000012) (-61.89805599999994 45.87526700000001) (-61.89611099999996 45.871101000000124) (-61.89805599999994 45.865273) (-61.90332799999999 45.861382000000106) (-61.914718999999934 45.8555530000001) (-61.919448999999986 45.85110500000013) (-61.923332000000016 45.84554300000002) (-61.92555999999996 45.8394320000001) (-61.92527799999999 45.834434999999985) (-61.88999899999999 45.701385000000016) (-61.88555899999989 45.6905440000001) (-61.88138600000002 45.686653000000035) (-61.79222899999991 45.63916000000012) (-61.78333299999997 45.63665800000001) (-61.7350009999999 45.62332200000009) (-61.72499800000003 45.62082700000002) (-61.618056999999965 45.610550000000046) (-61.603888999999924 45.63526900000005) (-61.569999999999936 45.66999100000004) (-61.565001999999936 45.673882000000106) (-61.55916599999995 45.67665900000003) (-61.546111999999994 45.681107) (-61.526107999999965 45.68526500000013) (-61.50444799999997 45.68693500000006) (-61.48889200000002 45.68693500000006) (-61.471382000000006 45.682495000000074) (-61.466110000000015 45.678878999999995) (-61.39639299999993 45.62665600000008) (-61.38694799999996 45.61888099999999) (-61.35342799999995 45.56971400000009) (-61.316146999999944 45.53317300000003) (-61.26000199999993 45.51027700000009) (-61.23235699999998 45.46119299999998) (-61.294167000000016 45.434714999999926) (-61.36500499999994 45.404160000000104) (-61.36805700000002 45.41387900000012) (-61.37471799999997 45.41693899999996) (-61.38861099999991 45.41415400000011) (-61.40083299999998 45.410820000000115) (-61.41332999999997 45.40693700000003) (-61.462219000000005 45.384438000000046) (-61.477492999999924 45.3730470000001) (-61.48166699999996 45.367767000000015) (-61.478882 45.36332700000003) (-61.46388999999999 45.346939000000134) (-61.457222 45.34360500000014) (-61.22638699999993 45.34415400000012) (-61.153327999999874 45.34832799999998) (-61.139441999999974 45.34887700000007) (-61.13166799999999 45.34832799999998) (-61.04722599999997 45.33554800000002) (-60.99639100000002 45.32749200000012) (-60.980552999999986 45.32444000000004) (-60.970551 45.321663000000115) (-60.966110000000015 45.31832900000012) (-60.964721999999995 45.313049000000035) (-60.96527900000001 45.295547) (-60.97027600000001 45.26971400000008) (-61.05083499999989 45.23110200000008) (-61.0777819999999 45.21943700000003) (-61.09027899999995 45.21554600000013) (-61.10972600000002 45.21082300000012) (-61.12332900000001 45.208602999999925) (-61.13972499999994 45.21082300000012) (-61.14222699999999 45.21527100000009) (-61.222220999999934 45.23832700000014) (-61.26750199999998 45.24638400000009) (-61.3130569999999 45.24276699999996) (-61.323890999999946 45.23610700000012) (-61.360000999999954 45.20999100000006) (-61.373610999999926 45.196380999999974) (-61.373328999999956 45.19110100000012) (-61.36555499999997 45.18832400000002) (-61.34972399999998 45.186935000000005) (-61.340836000000024 45.184433000000126) (-61.34416199999987 45.17804700000005) (-61.34944200000001 45.17443800000001) (-61.355002999999954 45.171660999999915) (-61.38444500000003 45.15915700000005) (-61.39749899999998 45.156097000000045) (-61.450835999999924 45.14554600000008) (-61.45861100000002 45.14471400000002) (-61.54389199999997 45.141662999999994) (-61.638053999999954 45.12027000000006) (-61.724715999999944 45.09166000000005) (-61.898338000000024 45.02499399999999) (-62.02666499999992 44.98471799999999) (-62.08777599999996 44.97026800000009) (-62.28639199999992 44.92804700000005) (-62.391944999999964 44.90832500000005) (-62.476386999999875 44.89554600000014) (-62.521942000000024 44.85082999999997) (-62.54611199999994 44.821663) (-62.641388000000006 44.80915800000008) (-62.79500599999989 44.78054800000007) (-62.801109 44.77860300000009) (-62.81388899999996 44.750832) (-62.80999800000001 44.73471800000004) (-62.851111999999944 44.71832300000011) (-62.92861199999987 44.733879000000115) (-63.01277900000002 44.773323000000005) (-63.020554000000004 44.77388000000008) (-63.05555700000002 44.772766000000104) (-63.0625 44.77137800000003) (-63.06194299999993 44.76638800000012) (-63.06027999999998 44.761664999999994) (-63.057503 44.757217000000026) (-63.04361699999993 44.73998999999998) (-63.017776000000026 44.72248800000011) (-63.01250499999992 44.71332600000005) (-63.01194800000002 44.70804600000014) (-63.01361800000001 44.70277400000003) (-63.01833299999993 44.69748700000008) (-63.048339999999996 44.67610200000013) (-63.05471799999998 44.673325000000034) (-63.104445999999996 44.74665800000014) (-63.11527999999987 44.73137700000001) (-63.11833199999995 44.7249910000001) (-63.13833599999998 44.69304700000009) (-63.142776000000026 44.688599000000124) (-63.283057999999926 44.62721299999998) (-63.43999499999995 44.590828000000045) (-63.44888300000002 44.59304800000007) (-63.49500299999994 44.61471599999999) (-63.526336999999955 44.63610099999994) (-63.535168 44.6427690000001) (-63.545334000000025 44.65210700000006) (-63.55699900000002 44.66160600000012) (-63.61583699999994 44.70249199999995) (-63.635001999999986 44.71138000000013) (-63.64277599999991 44.71415700000006) (-63.651107999999965 44.71554600000002) (-63.65833299999997 44.714995999999985) (-63.660552999999936 44.70832800000005) (-63.64944499999996 44.686104000000114) (-63.640556000000004 44.673050000000046) (-63.635559 44.668884000000105) (-63.627776999999924 44.666382000000056) (-63.60611 44.668884000000105) (-63.59861000000001 44.66777000000013) (-63.59194200000002 44.66471100000001) (-63.58361100000002 44.65693699999997) (-63.56422399999991 44.62076999999999) (-63.558220000000006 44.613266000000124) (-63.555388999999934 44.60776900000002) (-63.546059000000014 44.58860400000003) (-63.520835999999974 44.512771999999984) (-63.520279000000016 44.50777399999998) (-63.52527600000002 44.49527000000012) (-63.53333299999997 44.484993000000145) (-63.54277799999994 44.476379000000065) (-63.553054999999915 44.469711000000075) (-63.57083899999992 44.46193700000009) (-63.63111099999992 44.43582200000009) (-63.63861099999991 44.436935000000005) (-63.90694400000001 44.49527000000012) (-63.91361199999989 44.498604000000114) (-63.924171 44.50610399999999) (-63.932503 44.513329000000056) (-63.93555500000002 44.517494000000056) (-63.94388600000002 44.536110000000065) (-63.938605999999936 44.616104000000064) (-63.93777499999993 44.62165800000008) (-63.92805499999986 44.64222000000001) (-63.91916699999996 44.651657000000114) (-63.91444399999989 44.65554800000001) (-63.90860700000002 44.678047000000106) (-64.00834700000001 44.647491) (-64.04527299999995 44.63582600000012) (-64.05526699999996 44.61943800000006) (-64.06555199999991 44.59526800000003) (-64.06388899999996 44.59054599999996) (-64.05915800000002 44.581665000000044) (-64.05499299999997 44.57777399999998) (-64.03944399999995 44.572495) (-64.03361499999994 44.563049000000035) (-64.00917099999998 44.513329000000056) (-64.01000999999997 44.50777399999998) (-64.08306900000002 44.46666000000005) (-64.091949 44.46888000000007) (-64.11054999999999 44.478324999999984) (-64.12165799999997 44.48526800000013) (-64.12554899999998 44.51055100000002) (-64.12361099999993 44.52748900000012) (-64.11972000000003 44.53943600000008) (-64.12165799999997 44.54415900000009) (-64.12748699999992 44.552773000000116) (-64.13583399999999 44.56054699999993) (-64.146118 44.56832900000006) (-64.17027300000001 44.58610500000003) (-64.20083599999998 44.57638499999996) (-64.30526700000001 44.53333299999997) (-64.33750900000001 44.411933999999974) (-64.34666400000003 44.36249500000014) (-64.346115 44.357215999999994) (-64.32972699999993 44.32888000000003) (-64.31111099999993 44.319159999999954) (-64.30332899999996 44.316666000000055) (-64.29527300000001 44.316101) (-64.29055799999998 44.31999200000007) (-64.29222099999998 44.324715000000026) (-64.29998799999993 44.32749200000012) (-64.30555700000002 44.330826000000116) (-64.30943300000001 44.33554800000002) (-64.30777 44.3408280000001) (-64.30110200000001 44.341933999999924) (-64.27362099999988 44.33027600000008) (-64.26055899999994 44.324164999999994) (-64.23944099999994 44.29415899999992) (-64.25334199999992 44.27526899999998) (-64.25805699999995 44.26998900000012) (-64.28332499999988 44.25305200000008) (-64.319458 44.26471700000002) (-64.35583500000001 44.27332300000012) (-64.39111300000002 44.253326000000015) (-64.42805499999992 44.22832500000004) (-64.43222000000003 44.22360200000003) (-64.44471699999991 44.190269) (-64.61639400000001 44.13304900000014) (-64.61860699999994 44.07193799999999) (-64.66639700000002 43.990273000000116) (-64.67138699999998 43.98638200000005) (-64.73222399999992 43.951660000000004) (-64.73805199999993 43.94943200000006) (-64.74526999999995 43.94887499999999) (-64.77639799999997 43.950829) (-64.80610699999994 43.95054600000003) (-64.81277499999993 43.94943200000006) (-64.81806899999992 43.94638100000003) (-64.83222999999992 43.92610200000013) (-64.881104 43.838882000000126) (-64.906387 43.80054499999994) (-65.03056299999997 43.70416300000005) (-65.06666599999994 43.69638100000009) (-65.24221799999992 43.679161000000136) (-65.32583599999987 43.674995000000024) (-65.37527499999987 43.5752720000001) (-65.44915800000001 43.55971500000004) (-65.45333899999997 43.55499300000014) (-65.47582999999997 43.505829000000006) (-65.48138399999999 43.46443900000003) (-65.49694799999997 43.49082900000002) (-65.54804999999993 43.55609900000002) (-65.55943300000001 43.568054000000075) (-65.56861899999996 43.5702740000001) (-65.57556199999999 43.569717000000026) (-65.58473200000003 43.56027199999994) (-65.591385 43.549721000000034) (-65.603882 43.534721000000104) (-65.612213 43.526099999999985) (-65.61749299999997 43.523604999999975) (-65.646118 43.51194000000004) (-65.67332499999992 43.50610399999999) (-65.712784 43.498604000000114) (-65.72055099999994 43.499161000000015) (-65.72582999999986 43.50249500000001) (-65.777222 43.562492000000134) (-65.78332499999993 43.57110600000004) (-65.78388999999999 43.576385000000016) (-65.78195199999993 43.587769000000094) (-65.778885 43.599998000000085) (-65.773056 43.612770000000125) (-65.77111799999994 43.624435000000005) (-65.76945499999994 43.64138000000014) (-65.76806599999992 43.65804300000002) (-65.76834099999996 43.66888399999999) (-65.76972999999987 43.679161000000136) (-65.77555799999999 43.68832400000014) (-65.86888099999999 43.78638500000005) (-65.90777599999996 43.82166300000006) (-65.91221599999989 43.82527200000004) (-65.91861 43.82833100000005) (-65.93277 43.82721700000002) (-65.93888899999996 43.82499700000005) (-65.94249000000002 43.819443000000035) (-65.9561159999999 43.7761000000001) (-65.968887 43.71943699999997) (-65.97166399999998 43.71276899999998) (-65.97500600000001 43.70721400000008) (-65.98306300000002 43.697768999999994) (-66.01333599999987 43.69165800000013) (-66.02055399999995 43.69110100000006) (-66.029449 43.73165900000009) (-66.03056299999997 43.73610700000006) (-66.033615 43.740273) (-66.04222099999998 43.748046999999985) (-66.08084100000002 43.76805100000007) (-66.08860799999997 43.768326000000116) (-66.09445199999999 43.76610600000009) (-66.10777299999995 43.75332600000013) (-66.12165800000002 43.762215000000026) (-66.135559 43.78943600000008) (-66.16694599999994 43.85860399999996) (-66.16805999999991 43.863051999999925) (-66.16805999999991 43.895546000000024) (-66.16749599999997 43.90138200000007) (-66.16583299999996 43.907211000000075) (-66.151947 43.91915900000009) (-66.15028399999994 43.92527000000001) (-66.14999399999994 43.93082400000003) (-66.14916999999997 44.00110600000011) (-66.14973399999991 44.011108000000036) (-66.18194599999993 44.06749700000012) (-66.204453 44.08665500000001) (-66.19055200000003 44.15054300000003) (-66.18777499999993 44.16193400000003) (-66.118607 44.33804300000003) (-66.09388699999988 44.36749300000014) (-66.08999599999999 44.37165800000014) (-66.03750599999995 44.42332500000009) (-65.97694399999995 44.477486) (-65.96722399999999 44.48610700000012) (-65.95666499999993 44.49166100000008) (-65.95028699999995 44.493050000000096) (-65.94444299999998 44.4897160000001) (-65.93804899999992 44.49110400000001) (-65.86582899999996 44.53888699999999) (-65.84167499999995 44.56860400000011) (-65.84138499999995 44.574164999999994) (-65.84445199999988 44.57833100000005) (-65.84889199999998 44.582213999999965) (-65.85527000000002 44.585823000000005) (-65.86277799999988 44.58693699999998) (-65.931107 44.582213999999965) (-65.94305399999996 44.57777399999998) (-65.95861799999994 44.567497) (-66.004456 44.53582799999998) (-66.03472899999997 44.51471700000013) (-66.12332200000003 44.448875000000044) (-66.17777999999993 44.396660000000054) (-66.18582199999997 44.38721499999997) (-66.19055200000003 44.383331) (-66.19722000000002 44.386108000000036) (-66.19860799999998 44.41276600000003) (-66.19110099999995 44.42332500000009) (-66.10305800000003 44.500000000000114) (-66.06806899999992 44.524994000000106) (-65.97166399999998 44.591934000000094) (-65.82022099999995 44.65443400000004) (-65.81672699999996 44.655768999999964) (-65.80872299999993 44.65193600000009) (-65.80289500000003 44.64460400000007) (-65.79639400000002 44.62426800000003) (-65.79689799999994 44.617603000000145) (-65.79789700000003 44.61393700000002) (-65.75695799999994 44.61527300000006) (-65.756393 44.60999300000003) (-65.75306699999999 44.60582700000009) (-65.74527 44.605552999999986) (-65.69722000000002 44.61249500000008) (-65.69027699999992 44.614441) (-65.68499799999995 44.61693600000001) (-65.62527499999999 44.658882000000006) (-65.52250700000002 44.737769999999955) (-65.54861499999998 44.733879000000115) (-65.68261699999994 44.69315699999993) (-65.68627899999996 44.691825999999935) (-65.69027699999992 44.69116200000008) (-65.69544199999996 44.691825999999935) (-65.704117 44.69499200000007) (-65.70611600000001 44.697655) (-65.70711499999999 44.700489000000005) (-65.70745099999999 44.70348700000005) (-65.70594799999998 44.707489000000066) (-65.70094299999994 44.713157999999964) (-65.69793700000002 44.71549200000004) (-65.71777299999997 44.72193100000004) (-65.65833999999995 44.758605999999986) (-65.64695699999993 44.76527399999998) (-65.29998799999993 44.92832900000013) (-65.20249899999999 44.97387700000007) (-65.11416600000001 45.01166500000011) (-64.93415800000002 45.100273000000016) (-64.91805999999991 45.11110700000006) (-64.87943999999999 45.13082099999997) (-64.86193800000001 45.139717000000076) (-64.81471299999998 45.15804300000008) (-64.80860899999993 45.16027100000008) (-64.777222 45.16999099999998) (-64.74499500000002 45.178329000000076) (-64.71083099999998 45.183876000000055) (-64.59028599999994 45.208046000000024) (-64.55055199999993 45.216660000000104) (-64.46888699999994 45.24276699999996) (-64.45140099999998 45.24943500000012) (-64.4344329999999 45.25750000000005) (-64.41777000000002 45.26666300000005) (-64.39750699999996 45.281105000000025) (-64.39389 45.28694200000001) (-64.39195299999994 45.29277000000013) (-64.39111300000002 45.29833200000007) (-64.39306599999986 45.303322000000094) (-64.40167199999996 45.31110400000006) (-64.40695199999993 45.31443800000005) (-64.41389500000002 45.317497) (-64.43083200000001 45.322220000000016) (-64.45472699999993 45.32360800000009) (-64.46221899999995 45.32305100000002) (-64.47083999999995 45.32444000000004) (-64.48805199999998 45.329162999999994) (-64.49471999999997 45.33221400000002) (-64.48916599999995 45.335266000000104) (-64.46583599999991 45.33471700000001) (-64.44055200000003 45.331665000000044) (-64.35305799999992 45.316101) (-64.33833300000003 45.31027199999994) (-64.32749899999999 45.303322000000094) (-64.32139599999994 45.294715999999994) (-64.31777999999991 45.28527100000014) (-64.31722999999988 45.280273000000136) (-64.31777999999991 45.274437000000034) (-64.32194499999991 45.26971400000008) (-64.32749899999999 45.266936999999984) (-64.34306299999997 45.25610399999999) (-64.35333300000002 45.23915900000003) (-64.38583399999993 45.14554600000008) (-64.38027999999986 45.13110400000011) (-64.36389199999996 45.10138699999999) (-64.35972599999997 45.09748799999994) (-64.35221899999993 45.09804500000007) (-64.34695399999998 45.101105000000075) (-64.337219 45.10860400000007) (-64.33389299999993 45.115272999999945) (-64.33444199999997 45.12027000000006) (-64.333328 45.131660000000124) (-64.32917800000001 45.13638300000008) (-64.324387 45.13934300000005) (-64.31138599999997 45.14138000000003) (-64.29583699999995 45.14138000000003) (-64.24415599999998 45.12387799999999) (-64.22111499999994 45.11054999999999) (-64.21028099999995 45.10360700000001) (-64.15722699999998 45.056938) (-64.14695699999999 45.04444100000006) (-64.14555399999989 45.034720999999934) (-64.154449 44.98443600000013) (-64.15638699999994 44.97832500000004) (-64.11694299999994 45.00916300000006) (-64.11416599999995 45.04666100000003) (-64.12193300000001 45.05804400000005) (-64.13639799999993 45.07444000000004) (-64.14167800000001 45.07860599999998) (-64.1625059999999 45.09221600000001) (-64.18832399999991 45.104713000000004) (-64.19249000000002 45.10860400000007) (-64.19860799999987 45.11721) (-64.19888299999997 45.122490000000084) (-64.19583099999994 45.15054300000003) (-64.16361999999998 45.185265000000015) (-64.15278599999999 45.19276400000001) (-64.11833199999995 45.20888500000001) (-64.10611 45.21332600000011) (-64.09999099999993 45.21527100000009) (-64.06582600000002 45.22221400000012) (-64.00805700000001 45.23638199999999) (-63.98221599999994 45.243049999999926) (-63.95666499999999 45.25138899999996) (-63.80583199999995 45.30193300000013) (-63.59610700000002 45.3155440000001) (-63.47083299999986 45.321663000000115) (-63.384170999999924 45.35083000000003) (-63.37194099999999 45.35499600000014) (-63.365554999999915 45.35777300000001) (-63.360832000000016 45.36082499999998) (-63.36860699999994 45.36360900000011) (-63.73889200000002 45.396660000000054) (-63.75556199999994 45.39804800000013) (-63.79722600000002 45.39276899999999) (-63.83777599999996 45.385551000000135) (-63.98805199999998 45.384438000000046) (-64.04055800000003 45.40110000000004) (-64.04499800000002 45.40443400000004) (-64.06111099999998 45.40971400000012) (-64.06973299999999 45.41027100000002) (-64.083618 45.409430999999984) (-64.16332999999986 45.403877000000136) (-64.214722 45.399719000000005) (-64.31277499999993 45.39138000000014) (-64.35777299999995 45.38110400000005) (-64.52999899999998 45.40804300000002) (-64.67416400000002 45.383049000000085) (-64.81582599999996 45.348602000000085) (-64.92944299999999 45.32444000000004) (-64.93721 45.32694200000009) (-64.93804899999992 45.33221400000002) (-64.93666100000002 45.34332300000011) (-64.93331899999998 45.35555300000004) (-64.9177699999999 45.40859999999992) (-64.90916399999998 45.418052999999986) (-64.83138999999994 45.47915599999993) (-64.76556399999998 45.50555400000013) (-64.69915799999995 45.53110499999997) (-64.568893 45.60416399999997) (-64.47055099999994 45.67027300000012) (-64.43028299999997 45.71554600000002) (-64.33222999999992 45.76888300000013) (-64.33168 45.763611000000026) (-64.32611099999997 45.749435000000005) (-64.29666099999992 45.76332899999994) (-64.28306600000002 45.77665699999994) (-64.27555799999999 45.79999500000008) (-64.27305599999994 45.811661000000015) (-64.27000399999991 45.82888000000008) (-64.27293399999996 45.835754000000065) (-64.27362099999988 45.838599999999985) (-64.27667199999996 45.8427660000001) (-64.32472200000001 45.87999000000002) (-64.33277899999996 45.88276700000006) (-64.347778 45.881935) (-64.36138899999997 45.879158000000075) (-64.36694299999999 45.87638099999998) (-64.36776699999996 45.87054400000005) (-64.36332700000003 45.86666100000008) (-64.35472099999993 45.865547000000106) (-64.35749800000002 45.85110500000013) (-64.41805999999991 45.796104000000014) (-64.4783329999999 45.750549000000035) (-64.49722300000002 45.783882000000006) (-64.48999000000003 45.794998000000135) (-64.48805199999998 45.801102000000014) (-64.48916599999995 45.81137800000005) (-64.49221799999998 45.81554399999999) (-64.59733599999998 45.92210400000005) (-64.68194599999987 46.02166) (-64.686935 46.041382000000056) (-64.69055199999997 46.05082700000008) (-64.69499199999996 46.05471000000006) (-64.73693799999995 46.083878000000084) (-64.74749800000001 46.09054600000002) (-64.754456 46.08915700000006) (-64.76445000000001 46.08305400000012) (-64.70639 45.994713000000104) (-64.70194999999995 45.990829000000076) (-64.64800999999994 45.93304799999993) (-64.63117199999999 45.92271800000003) (-64.62899800000002 45.92038300000007) (-64.601181 45.88155000000012) (-64.601181 45.877384000000006) (-64.60134099999999 45.87388199999998) (-64.602844 45.86721399999999) (-64.60450700000001 45.863552000000084) (-64.58306900000002 45.826942000000145) (-64.75639299999995 45.62248999999997) (-64.77250699999996 45.609993000000145) (-64.77833599999997 45.60721600000005) (-64.78582799999992 45.61027500000006) (-64.791382 45.613609000000054) (-64.79666099999997 45.62248999999997) (-64.80166599999995 45.62638100000004) (-64.808334 45.62971500000003) (-64.81722999999994 45.63249200000013) (-64.825287 45.633331000000055) (-64.84750400000001 45.633331000000055) (-64.88444500000003 45.63166000000001) (-64.90417500000001 45.627769000000114) (-64.94137599999999 45.60221899999999) (-64.94721999999996 45.59804500000013) (-64.96194500000001 45.58610500000003) (-64.97639500000002 45.57249499999995) (-64.98666399999996 45.564437999999996) (-64.99722300000002 45.557213000000104) (-65.015015 45.54888200000005) (-65.04750100000001 45.539161999999976) (-65.10444599999994 45.524994000000106) (-65.13833599999992 45.517769000000044) (-65.15222199999994 45.51610600000009) (-65.164444 45.51305400000001) (-65.220551 45.4938810000001) (-65.32667500000002 45.457497000000046) (-65.339447 45.45221699999996) (-65.36805700000002 45.437767000000065) (-65.394455 45.41944100000006) (-65.42138699999992 45.40277100000009) (-65.53195199999999 45.342490999999995) (-65.88362099999995 45.209160000000054) (-65.88999899999999 45.2074970000001) (-65.90360999999996 45.205551000000014) (-65.91082799999998 45.20526899999999) (-65.91888399999993 45.20609999999999) (-65.98332199999993 45.21971100000013) (-65.98998999999998 45.22304500000013) (-66.09060699999992 45.295657999999946) (-66.09294099999994 45.297989000000086) (-66.09461199999998 45.30065900000005) (-66.09160599999996 45.30382499999996) (-66.08389299999993 45.34276600000004) (-66.07806399999993 45.34554300000008) (-66.05749499999996 45.348602000000085) (-66.04527300000001 45.35332500000004) (-66.029449 45.364158999999916) (-66.015289 45.377769) (-66.00306699999999 45.3949970000001) (-66.00083899999998 45.40110000000004) (-65.99722300000002 45.41777000000002) (-65.99444599999998 45.45555099999996) (-65.99444599999998 45.46082300000006) (-66.00250199999999 45.46166200000005) (-66.0083469999999 45.45888500000012) (-66.19027699999998 45.339432000000045) (-66.193329 45.33360300000004) (-66.193329 45.328331000000105) (-66.19055200000003 45.32388300000014) (-66.179169 45.30582399999997) (-66.17610200000001 45.30193300000013) (-66.14527900000002 45.27916000000005) (-66.14166999999992 45.259769000000006) (-66.13700099999994 45.25927000000013) (-66.11399799999998 45.25877400000013) (-66.1135099999999 45.23777000000007) (-66.14723200000003 45.19221500000009) (-66.20556599999998 45.16387899999995) (-66.21665999999999 45.15915700000005) (-66.42777999999998 45.084991) (-66.45973200000003 45.10610200000002) (-66.45973200000003 45.111382000000106) (-66.46112099999993 45.11610400000001) (-66.46806300000003 45.129714999999976) (-66.48889199999991 45.14999400000005) (-66.49638400000003 45.14971900000006) (-66.531387 45.14721700000001) (-66.53750599999995 45.14527100000009) (-66.55999799999995 45.133331) (-66.57139599999994 45.12665600000014) (-66.58612099999999 45.11693600000007) (-66.60804699999994 45.10416400000008) (-66.64222699999999 45.08638000000013) (-66.648056 45.08360300000004) (-66.75472999999988 45.055550000000096) (-66.79249600000003 45.05526700000013) (-66.77694699999995 45.08638000000013) (-66.77610799999997 45.09137700000008) (-66.77778599999999 45.096100000000035) (-66.78306599999996 45.099716000000114) (-66.96556099999992 45.17943600000001) (-67.02194199999985 45.17027300000001) (-67.027222 45.168052999999986) (-67.04638699999998 45.12693800000005) (-67.12943999999999 45.17221799999999) (-67.18693499999995 45.19221500000009) (-67.2065429999999 45.18303700000007) (-67.23611499999993 45.193877999999984) (-67.25306699999993 45.199432) (-67.261124 45.201103000000046) (-67.26777599999997 45.200546000000145) (-67.27500900000001 45.1988750000001) (-67.28721599999994 45.19415300000003) (-67.29055799999998 45.182770000000005) (-67.29028299999999 45.17748999999992) (-67.29222099999993 45.166100000000085) (-67.29638699999992 45.16082) (-67.30139199999996 45.156937000000084) (-67.30665599999986 45.15332000000012) (-67.318893 45.14860500000009) (-67.32556199999999 45.147491000000116) (-67.33306900000002 45.147491000000116) (-67.34194899999994 45.14999400000005) (-67.354172 45.156097000000045) (-67.40388499999995 45.194435000000055) (-67.40805099999994 45.19832599999995) (-67.42250099999995 45.2149960000001) (-67.45527599999997 45.26305400000007) (-67.462784 45.276099999999985) (-67.46501199999989 45.281105000000025) (-67.46528599999999 45.28638500000011) (-67.46417200000002 45.29193900000007) (-67.45056199999993 45.33305400000006) (-67.48500100000001 45.48915900000003) (-67.485275 45.494438) (-67.48277299999995 45.50027499999993) (-67.47888199999989 45.50443999999993) (-67.46777299999997 45.510826000000066) (-67.43638599999997 45.52137800000003) (-67.42193600000002 45.523323000000005) (-67.41583299999996 45.525269000000094) (-67.41082799999992 45.529990999999995) (-67.40695199999988 45.578049000000135) (-67.40888999999999 45.582214000000135) (-67.41250599999995 45.58693699999998) (-67.42416399999996 45.59471100000013) (-67.453888 45.61249500000008) (-67.462219 45.61471599999999) (-67.46945199999999 45.61305199999998) (-67.48611499999998 45.60360700000007) (-67.49999999999994 45.60166200000009) (-67.515015 45.60110500000002) (-67.57389799999999 45.61166400000002) (-67.65666199999998 45.63054699999992) (-67.66444399999995 45.6336060000001) (-67.79110700000001 45.69304700000009) (-67.79666099999992 45.69609800000006) (-67.79916400000002 45.70110299999993) (-67.80444299999999 45.73137700000001) (-67.80638099999999 45.78472099999999) (-67.78666699999991 45.888329000000056) (-67.77250700000002 45.95749699999993) (-67.77917499999995 46.28333299999997) (-67.78889499999997 46.78777300000007) (-67.79167199999995 46.92137900000006) (-67.79499800000002 47.06999200000007) (-67.85972599999991 47.09748800000011) (-67.87416100000002 47.103607000000125) (-67.89222699999999 47.114441) (-67.94860799999992 47.16638200000011) (-67.95140099999998 47.17083000000008) (-67.95584100000002 47.17999300000008) (-67.95722999999992 47.18498999999997) (-67.96194499999996 47.19415300000014) (-67.96888699999994 47.20277400000009) (-68.18582200000003 47.33277100000004) (-68.20861799999994 47.341660000000104) (-68.24499500000002 47.35193600000002) (-68.30665599999992 47.36444099999994) (-68.323059 47.365829000000076) (-68.337219 47.363609000000054) (-68.34889199999992 47.359992999999974) (-68.36776699999996 47.35110500000002) (-68.37304699999993 47.34721400000012) (-68.56471299999993 47.28971900000005) (-68.76194800000002 47.23276499999997) (-68.78750599999995 47.224709000000075) (-68.83167999999989 47.20888499999995) (-68.88778699999995 47.18804200000005) (-68.89527900000002 47.18998700000009) (-68.958618 47.217209000000025) (-68.96528599999988 47.22054300000002) (-69.02389499999992 47.25027499999993) (-69.03611799999999 47.257217000000026) (-69.04499800000002 47.26444200000009) (-69.04916400000002 47.274437000000034) (-69.05305499999997 47.28943600000008) (-69.05358899999993 47.29377700000009) (-69.05499299999985 47.299438000000066) (-69.05526699999996 47.30471) (-69.056107 47.336655000000064) (-69.05555699999996 47.347488000000055) (-69.05249000000003 47.38054699999998) (-69.04943799999995 47.39221999999995) (-69.045837 47.398604999999975) (-69.04361 47.404709000000025) (-69.039444 47.41693900000013) (-69.03832999999997 47.42249300000009) (-69.03999299999998 47.427490000000034) (-69.04861499999998 47.435546999999985) (-69.05555699999996 47.438599000000124) (-69.12388599999991 47.458327999999995) (-69.13276699999994 47.459991000000116) (-69.23249800000002 47.47137500000002) (-69.23962399999999 47.46441300000009) (-69.30526700000001 47.40026899999998) (-69.42361499999998 47.28333299999997) (-69.65388499999995 47.05526700000013) (-69.71250900000001 46.99694099999999) (-69.84722899999997 46.86221300000011) (-69.99276700000001 46.715828000000045) (-70.00917099999987 46.69804399999998) (-70.026947 46.58749399999999) (-70.03860500000002 46.509995) (-70.04415899999992 46.4749910000001) (-70.047775 46.45388000000008) (-70.05055199999998 46.438599000000124) (-70.06361400000003 46.42416400000002) (-70.068893 46.41971600000005) (-70.07528699999995 46.41777000000013) (-70.08139 46.41777000000013) (-70.08805799999988 46.41499300000004) (-70.11915599999998 46.393608000000086) (-70.200287 46.33638000000008) (-70.24249299999991 46.27916000000005) (-70.28778099999994 46.203049000000135) (-70.30555699999991 46.07888000000008) (-70.3125 45.98582500000009) (-70.30972299999996 45.98082000000005) (-70.30332900000002 45.97776799999997) (-70.29388399999999 45.97554800000012) (-70.27833599999997 45.97526600000003) (-70.260559 45.971374999999966) (-70.25361599999991 45.968323000000055) (-70.24833699999994 45.96471400000007) (-70.23971599999993 45.956657000000064) (-70.23805199999998 45.95193499999999) (-70.25500499999998 45.913048) (-70.258896 45.907493999999986) (-70.26333599999998 45.90277100000003) (-70.39388999999994 45.77804600000013) (-70.46665999999993 45.711937000000034) (-70.55526700000001 45.67276800000013) (-70.57694999999995 45.66082000000006) (-70.63194299999998 45.627769000000114) (-70.69305400000002 45.571938000000046) (-70.72027600000001 45.5283280000001) (-70.725281 45.49971800000003) (-70.72471599999994 45.49471299999999) (-70.712784 45.477768000000026) (-70.70472699999993 45.469154) (-70.68943799999994 45.458046000000024) (-70.86860699999994 45.246101000000124) (-70.87304699999999 45.24137900000005) (-70.87860099999995 45.23860199999996) (-70.886124 45.23804500000006) (-71.021118 45.326660000000004) (-71.085129 45.30770899999999) (-71.13999899999993 45.25305200000008) (-71.14639299999999 45.25249500000001) (-71.17027299999995 45.25388300000009) (-71.18916300000001 45.25777399999998) (-71.21166999999991 45.26610599999998) (-71.23306300000002 45.274993999999936) (-71.23971599999999 45.278046000000074) (-71.26444999999995 45.29083300000008) (-71.28056299999997 45.30193300000013) (-71.28860499999996 45.30443600000007) (-71.30277999999998 45.303047000000106) (-71.31471299999993 45.299438000000066) (-71.32749899999993 45.294441000000006) (-71.42443800000001 45.25) (-71.408615 45.22304500000013) (-71.40222199999994 45.21915400000006) (-71.39889499999998 45.21554600000013) (-71.396118 45.21054800000013) (-71.39584399999995 45.20526899999999) (-71.39862099999999 45.199432) (-71.43249499999996 45.13027200000005) (-71.43611099999993 45.12526700000001) (-71.45916699999998 45.102776000000006) (-71.48277299999995 45.083878000000084) (-71.49305699999996 45.075271999999984) (-71.49638399999992 45.06888600000008) (-71.49888599999997 45.05721300000005) (-71.49722299999996 45.04166399999997) (-71.49415599999998 45.020546000000024) (-71.55471799999998 45.01998900000012) (-71.89277600000003 45.019157000000064) (-72.04998799999998 45.01944000000003) (-72.27165200000002 45.018775999999946) (-72.45916699999987 45.01749400000011) (-72.51028399999996 45.01721200000003) (-72.77888499999995 45.02082800000011) (-72.95638999999994 45.01832600000006) (-73.337173 45.01186400000006) (-73.346115 45.01138300000002) (-73.35299700000002 45.00942199999997) (-73.35926799999999 45.01006300000006) (-73.37666299999995 45.011108000000036) (-73.62277199999994 45.00666000000007) (-73.91164399999991 45.00000000000006) (-74.24916100000002 44.99221800000009) (-74.6820219999999 45.0067140000001) (-74.75111400000003 45.00222000000002) (-74.76972999999992 45.006386000000134) (-74.78582799999998 45.01138300000002) (-74.81220999999988 45.01776899999993) (-74.82888799999995 45.019157000000064) (-74.85028099999994 45.01666300000011) (-74.99082900000002 44.986655999999925) (-75.00140399999998 44.98054500000006) (-75.170547 44.898604999999975) (-75.27806099999992 44.85721600000005) (-75.30166600000001 44.84665699999999) (-75.31777999999986 44.837212000000136) (-75.39584399999995 44.785827999999924) (-75.537216 44.69137600000005) (-75.5625 44.673882000000106) (-75.61805700000002 44.63499500000012) (-75.62805199999997 44.627769) (-75.68249500000002 44.58804300000003) (-75.73611499999993 44.54638700000004) (-75.801941 44.49110400000001) (-75.81138599999997 44.483047000000056) (-75.82055700000001 44.47499099999999) (-75.82472200000001 44.46998600000012) (-75.82833899999997 44.44665500000008) (-75.83416699999998 44.43443300000007) (-75.8411099999999 44.4230500000001) (-75.84944199999995 44.41471100000007) (-75.86416600000001 44.40277100000014) (-75.87999000000002 44.39332600000006) (-75.904449 44.384995) (-75.96610999999996 44.36415899999997) (-75.98217799999992 44.358864000000096) (-75.997772 44.355270000000075) (-76.01945499999994 44.3533250000001) (-76.03472899999991 44.35305000000005) (-76.04695099999998 44.34971600000006) (-76.05776999999995 44.344993999999986) (-76.06443799999994 44.34137700000002) (-76.36337300000002 44.15099299999997) (-76.410278 44.121101000000124) (-76.43472300000002 44.10471300000006) (-76.43998699999997 44.09943400000009) (-76.531387 43.98304699999994) (-76.569458 43.93415799999997) (-76.583618 43.91582499999993) (-76.69749499999995 43.76860000000005) (-76.801941 43.633605999999986) (-76.81695599999995 43.633049000000085) (-76.97416699999991 43.634438000000046) (-77.28832999999992 43.63665800000007) (-77.58277900000002 43.638603000000046) (-77.72999600000003 43.63916000000012) (-77.85777300000001 43.63943499999999) (-77.88722200000001 43.63943499999999) (-78.38806199999993 43.63832900000011) (-78.66305499999999 43.63749700000005) (-78.72471599999994 43.629433000000006) (-78.93832399999991 43.553878999999995) (-79.02806099999998 43.521934999999985) (-79.09527599999996 43.497772) (-79.18472300000002 43.46554600000013) (-79.13221699999997 43.38249200000001) (-79.06678799999997 43.27940000000007) (-79.054169 43.262496999999996) (-79.05332899999996 43.25666000000007) (-79.04499799999996 43.165543000000014) (-79.04472399999997 43.16054500000001) (-79.04583699999995 43.14888000000013) (-79.04943800000001 43.14388300000002) (-79.05972300000002 43.13721500000008) (-79.06361399999992 43.13221000000004) (-79.08111599999995 43.085548000000074) (-79.04333499999996 43.011664999999994) (-79.04083299999996 43.0077740000001) (-79.02166699999992 42.987213000000054) (-79.00584399999991 42.977211000000125) (-78.97860699999995 42.96138000000013) (-78.97193900000002 42.95804600000014) (-78.96278399999994 42.95638300000002) (-78.94665500000002 42.95555100000013) (-78.93859900000001 42.953322999999955) (-78.93277 42.950829000000056) (-78.92749000000003 42.94693799999999) (-78.92027300000001 42.939156000000025) (-78.91833500000001 42.9347150000001) (-78.91528299999999 42.92416400000002) (-78.91722099999993 42.90499100000011) (-78.91833500000001 42.89888000000002) (-78.9266659999999 42.88054699999998) (-78.93221999999997 42.86832400000009) (-78.935272 42.86249500000008) (-78.94249000000002 42.852493000000095) (-78.96583599999997 42.83360299999998) (-78.98693799999995 42.81999200000001) (-79.12110899999999 42.76915700000012) (-79.15444899999994 42.757217000000026) (-79.29943799999995 42.70249200000001) (-79.56645199999997 42.600708000000054) (-79.76342799999992 42.524703999999986) (-79.77667200000002 42.52027099999998) (-80.08612099999999 42.399994000000106) (-80.09695399999993 42.396385000000066) (-80.5102839999999 42.32916300000005) (-80.528549 42.326617999999996) (-80.86915599999998 42.279160000000104) (-81.24916100000002 42.224991000000045) (-81.42443799999995 42.144997000000046) (-81.62361099999998 42.052773000000116) (-81.82223499999998 41.96027400000014) (-82.21806299999997 41.774437000000034) (-82.23889199999996 41.76388500000007) (-82.42527799999999 41.67555199999998) (-82.46278399999994 41.676102000000014) (-82.64999399999994 41.68193800000006) (-82.69665499999996 41.683876) (-83.07194499999991 41.85971799999999) (-83.08084100000002 41.87499200000008) (-83.11741599999988 41.94619400000005) (-83.13082899999989 41.970543000000134) (-83.15028399999994 42.008331) (-83.16860999999994 42.046104000000014) (-83.16833500000001 42.0480500000001) (-83.13722200000001 42.201385000000016) (-83.13249200000001 42.22082499999999) (-83.12332200000003 42.24582700000008) (-83.11805699999996 42.25777400000004) (-83.10777299999995 42.27276600000005) (-83.08695999999998 42.30054500000006) (-83.06221 42.31860399999999) (-83.051941 42.32471500000008) (-83.027222 42.331940000000145) (-83.00222799999995 42.33915700000006) (-82.97582999999997 42.344711000000075) (-82.94055199999997 42.35749800000008) (-82.84138499999995 42.39694199999997) (-82.80888400000003 42.41332200000011) (-82.79360999999994 42.422768000000076) (-82.77528399999994 42.43721000000005) (-82.76306199999999 42.448601) (-82.72999600000003 42.48333000000008) (-82.704453 42.508331000000055) (-82.67027300000001 42.53999300000004) (-82.66528299999993 42.54415899999992) (-82.65910300000002 42.54819500000008) (-82.65075699999994 42.55364200000014) (-82.64497399999999 42.556411999999966) (-82.63055399999996 42.557495000000074) (-82.62222299999996 42.55665600000009) (-82.61416600000001 42.55471000000006) (-82.60583500000001 42.55416100000008) (-82.58639499999992 42.558601000000124) (-82.57167099999998 42.56888600000002) (-82.53582799999987 42.59943400000003) (-82.52139299999993 42.618881000000044) (-82.51333599999987 42.63638300000008) (-82.48472600000002 42.719154) (-82.474716 42.751663000000065) (-82.47111499999994 42.769989000000066) (-82.470551 42.782493999999986) (-82.47193900000002 42.79305300000004) (-82.47332799999992 42.79749300000003) (-82.48055999999991 42.812492000000134) (-82.48194899999993 42.82332600000001) (-82.48110999999994 42.8294370000001) (-82.4644469999999 42.898048000000074) (-82.46250900000001 42.904709000000025) (-82.41877699999998 43.018639000000064) (-82.40417500000001 43.049164000000076) (-82.32223499999998 43.21054799999996) (-82.25279199999994 43.34638200000012) (-82.22888199999994 43.39138000000003) (-82.146118 43.553047000000106) (-82.13027999999997 43.585266000000104) (-82.214447 43.95221700000013) (-82.33167999999995 44.46082300000012) (-82.43055699999996 44.882767000000115) (-82.54305999999997 45.35582699999998) (-82.62999000000002 45.39610299999998) (-82.665009 45.41193399999992) (-82.95417800000001 45.54193900000007) (-83.05082699999991 45.58526600000005) (-83.11221299999994 45.61277000000007) (-83.27084400000001 45.68332699999996) (-83.50029 45.78499599999998) (-83.597778 45.82721700000002) (-83.52389499999998 45.91805300000004) (-83.48777799999999 45.96166199999993) (-83.447769 46.011940000000095) (-83.474716 46.03638500000011) (-83.48332199999999 46.043884000000105) (-83.566666 46.098602000000085) (-83.57749899999999 46.105270000000075) (-83.596115 46.11415899999997) (-83.61054999999993 46.11915600000009) (-83.62777699999987 46.12304699999993) (-83.66305499999987 46.12609900000007) (-83.83056599999986 46.12609900000007) (-83.84611499999994 46.124992000000134) (-83.88389599999994 46.10277600000012) (-83.88803100000001 46.09616100000011) (-83.89225799999991 46.092346000000134) (-83.89800999999994 46.08718900000008) (-83.91799899999995 46.073303000000124) (-83.92300399999993 46.070250999999985) (-83.93600499999997 46.065383999999995) (-83.94284099999999 46.066101) (-83.952789 46.06860399999999) (-83.95889299999993 46.071663000000115) (-83.962784 46.07555400000001) (-84.07667500000002 46.203049000000135) (-84.08972199999994 46.220267999999976) (-84.09916699999991 46.23276499999997) (-84.10583499999996 46.247772) (-84.15695199999999 46.39166300000011) (-84.15834000000001 46.39666) (-84.16027799999995 46.424995000000024) (-84.15444899999994 46.445267000000115) (-84.14917000000003 46.45721400000008) (-84.13999899999999 46.47415900000004) (-84.12193300000001 46.49887799999999) (-84.11805700000002 46.51249700000005) (-84.11833199999995 46.51805100000007) (-84.1199949999999 46.523323000000005) (-84.12249799999995 46.52777100000014) (-84.12638900000002 46.531937000000084) (-84.13249199999996 46.53472099999999) (-84.19276399999995 46.546661000000086) (-84.40861499999988 46.508605999999986) (-84.42832899999996 46.503052000000025) (-84.43443300000001 46.5002750000001) (-84.454453 46.486938000000066) (-84.45944199999997 46.482764999999915) (-84.46389799999997 46.4783250000001) (-84.47471599999994 46.46360800000008) (-84.47999600000003 46.46027400000014) (-84.48638899999997 46.45888500000012) (-84.49471999999997 46.45804600000014) (-84.51251200000002 46.45915999999994) (-84.52999899999998 46.46138000000013) (-84.56500199999999 46.466385) (-84.77500899999995 46.653046000000074) (-84.787781 46.68971300000004) (-84.80694599999993 46.748328999999956) (-84.82556199999988 46.80693800000006) (-84.83277899999996 46.82916300000005) (-84.85694899999999 46.90221400000007) (-84.87222299999996 46.90943100000004) (-84.91749599999997 46.92860400000012) (-85.354446 47.111664000000076) (-85.4641719999999 47.15721100000013) (-85.73889199999996 47.270827999999995) (-85.83972199999994 47.31221000000005) (-86.01472499999994 47.38388099999992) (-86.05139199999996 47.39888000000002) (-86.46665999999993 47.56721500000003) (-86.568893 47.608330000000024) (-86.88444499999997 47.73471799999999) (-87.20140099999998 47.860275000000115) (-87.34167499999995 47.91554299999996) (-87.44471699999997 47.955826) (-88.18832399999997 48.24415600000009) (-88.36805699999991 48.31221000000005) (-88.645554 48.264160000000004) (-88.69166599999994 48.255554000000075) (-88.97416699999991 48.13916000000012) (-89.32333399999999 47.993050000000096) (-89.35665899999998 47.97971300000006) (-89.44776899999994 48.003326000000015) (-89.49312599999996 48.00316600000008) (-89.55665599999998 48.00138900000013) (-89.573059 48.001663000000065) (-89.57887299999993 48.00262500000008) (-89.58306900000002 48.003326000000015) (-89.59861799999993 48.00666000000001) (-89.603882 48.00999500000006) (-89.608337 48.01416000000006) (-89.61471599999999 48.01666300000005) (-89.750565 48.02916000000005) (-89.760559 48.02999100000005) (-89.83889799999997 48.01166500000005) (-89.86250299999995 48.00083200000006) (-89.88806199999999 47.99193600000012) (-89.895554 47.989990000000034) (-89.903885 47.98915900000003) (-89.91166699999997 47.99137900000005) (-89.98222399999997 48.01610599999998) (-89.99305700000002 48.02276599999999) (-90 48.03020499999997) (-90.00083899999998 48.031105000000025) (-90.03277599999996 48.069717000000026) (-90.056107 48.10054800000012) (-90.05943299999996 48.104996000000085) (-90.06500199999994 48.10833000000008) (-90.08168 48.11193800000001) (-90.12721299999987 48.11915600000003) (-90.146118 48.12165800000008) (-90.15638699999994 48.12249000000003) (-90.27999899999998 48.11305199999998) (-90.74082900000002 48.090828000000045) (-90.758896 48.09471100000002) (-90.76945499999994 48.099998000000085) (-90.77833599999997 48.10749800000002) (-90.83860800000002 48.184158000000025) (-90.84167499999995 48.19165800000013) (-90.84306300000003 48.205826) (-90.83805799999999 48.20860300000004) (-90.83362599999992 48.209099000000094) (-90.82972699999999 48.212493999999936) (-90.82919299999998 48.21463800000009) (-90.82888799999995 48.22165699999994) (-90.83029199999993 48.225548) (-90.83250399999991 48.227211000000125) (-90.84916699999991 48.233879000000115) (-90.868607 48.23749500000014) (-90.89805599999988 48.23665600000004) (-90.92832900000002 48.22860000000014) (-90.96916199999993 48.21471400000013) (-91.12609899999995 48.15499100000011) (-91.14916999999997 48.144157000000064) (-91.19248999999996 48.11499800000007) (-91.23222399999997 48.087769000000094) (-91.24888599999997 48.0794370000001) (-91.269455 48.07388300000008) (-91.28332499999999 48.07138100000003) (-91.31166100000002 48.069160000000124) (-91.32556199999999 48.069717000000026) (-91.34722899999997 48.068054000000075) (-91.38137799999998 48.06166100000013) (-91.39222699999993 48.05609900000002) (-91.41833500000001 48.04110700000001) (-91.46278399999994 48.05777000000006) (-91.573624 48.09304800000007) (-91.64514200000002 48.09834300000011) (-91.6875 48.144714000000135) (-91.72972099999998 48.187209999999936) (-91.73416099999992 48.19054399999993) (-91.73971599999999 48.193321000000026) (-91.756958 48.194435) (-91.77610799999997 48.19415300000014) (-91.791672 48.195267000000115) (-91.85055499999999 48.20388000000008) (-91.94027699999992 48.23054500000012) (-91.95658900000001 48.23663300000004) (-91.97084000000001 48.244437999999946) (-91.98582499999998 48.25582900000012) (-91.997772 48.266662999999994) (-92.00723299999999 48.27915999999999) (-92.008896 48.28276800000009) (-92.01112399999994 48.292496000000085) (-92.01167299999992 48.29749300000003) (-92.01333599999992 48.30499300000008) (-92.020554 48.32276900000005) (-92.02806099999998 48.33610500000003) (-92.035553 48.34360500000008) (-92.04194599999994 48.34777100000002) (-92.05194099999994 48.353882000000056) (-92.14167800000001 48.35721600000005) (-92.162216 48.35665899999998) (-92.25723299999993 48.34693900000008) (-92.26501499999989 48.34360500000008) (-92.27610799999997 48.33749399999999) (-92.28028899999998 48.33277100000004) (-92.28582799999998 48.326103000000046) (-92.30055199999993 48.30499300000008) (-92.30082700000003 48.2980500000001) (-92.29722599999997 48.28943600000008) (-92.28860499999996 48.2761000000001) (-92.283615 48.263885000000016) (-92.28306599999996 48.256660000000124) (-92.28555299999994 48.250549000000035) (-92.29028299999999 48.24665800000014) (-92.30671699999994 48.241592000000026) (-92.33168 48.23416099999997) (-92.35194399999995 48.2283250000001) (-92.35665899999998 48.22860000000014) (-92.36166400000002 48.23110200000002) (-92.36915599999998 48.238883999999985) (-92.42639200000002 48.31166100000007) (-92.45527599999997 48.39415700000001) (-92.58222999999998 48.44137599999999) (-92.697769 48.485268000000076) (-92.71528599999994 48.541382000000056) (-92.94305400000002 48.62110100000007) (-92.95306399999993 48.62332200000003) (-92.96610999999996 48.62499199999996) (-93.24499500000002 48.64054900000002) (-93.30888399999998 48.63027200000005) (-93.32250999999997 48.6280440000001) (-93.40834000000001 48.60860400000013) (-93.449997 48.597214000000065) (-93.45666499999999 48.59499400000004) (-93.458618 48.59249100000005) (-93.458618 48.5894320000001) (-93.45611600000001 48.58305400000012) (-93.452789 48.579436999999984) (-93.44972199999995 48.57054900000003) (-93.449997 48.56749700000006) (-93.4541779999999 48.559714999999926) (-93.46055599999994 48.55332199999998) (-93.46583599999991 48.54972099999992) (-93.47639499999997 48.54415899999998) (-93.489441 48.53971899999999) (-93.50306699999987 48.537498000000085) (-93.65695199999999 48.51527399999992) (-93.664444 48.5149990000001) (-93.72416699999997 48.51388500000013) (-93.77861000000001 48.51638800000012) (-93.79305999999997 48.51776899999999) (-93.80027799999993 48.52027100000004) (-93.803604 48.524712000000136) (-93.80555700000002 48.53221100000013) (-93.80972300000002 48.55027000000007) (-93.81777999999997 48.581940000000145) (-93.82000700000003 48.590546000000074) (-93.83000199999998 48.61277000000001) (-93.833328 48.616386000000034) (-93.84249899999998 48.62360400000006) (-93.851944 48.62693800000005) (-93.86555499999997 48.63027200000005) (-93.88055399999996 48.63027200000005) (-93.8852839999999 48.63027200000005) (-94.06388899999996 48.63804600000003) (-94.1119379999999 48.64110600000009) (-94.13417099999987 48.642769000000044) (-94.235275 48.65304600000002) (-94.250565 48.656097000000045) (-94.25279199999989 48.65776800000009) (-94.25418099999996 48.66054500000001) (-94.252228 48.67137900000006) (-94.252228 48.67999300000014) (-94.25666799999993 48.68776700000012) (-94.26306199999999 48.69415300000003) (-94.27111799999989 48.69915800000007) (-94.27861000000001 48.70249200000006) (-94.29110700000001 48.70609999999999) (-94.30583200000001 48.70832800000011) (-94.39056399999993 48.71110500000003) (-94.40611299999995 48.71110500000003) (-94.41416900000002 48.70999100000006) (-94.43331899999998 48.70193499999999) (-94.45361300000002 48.69582400000007) (-94.460556 48.69443500000011) (-94.47639500000002 48.69387800000004) (-94.50083899999998 48.696938000000046) (-94.52389499999992 48.70193499999999) (-94.60583500000001 48.72443399999992) (-94.63722199999995 48.739159000000086) (-94.64361600000001 48.74304999999998) (-94.68998699999992 48.77471200000008) (-94.699997 48.782767999999976) (-94.70666499999999 48.79055000000011) (-94.70944199999997 48.803047000000106) (-94.71112099999999 48.84638200000006) (-94.71000700000002 48.855270000000075) (-94.70907599999998 48.857948000000135) (-94.70500199999998 48.862770000000125) (-94.700287 48.868881000000044) (-94.69972200000001 48.87110100000007) (-94.700287 48.89527100000004) (-94.70167500000002 48.90971400000012) (-94.70417800000001 48.92443800000001) (-94.70750399999997 48.94193299999995) (-94.71665999999999 48.97054300000002) (-94.72055099999989 48.978874000000076) (-94.72721899999993 48.99221799999998) (-94.73277300000001 49.001663000000065) (-94.74527 49.02860300000009) (-94.76695299999994 49.075554000000125) (-94.79777499999994 49.155823) (-94.79888900000003 49.15915699999999) (-94.80471799999987 49.17971799999998) (-94.80665599999998 49.19360399999999) (-94.81527699999998 49.29332700000009) (-94.81555200000003 49.30609900000013) (-94.81834400000002 49.30998999999997) (-94.82194499999997 49.312767000000065) (-94.922775 49.35582700000003) (-94.93592799999993 49.36029799999994) (-94.94638099999997 49.36221299999994) (-94.95861799999994 49.36166400000002) (-94.96556099999998 49.360275) (-94.99861099999998 49.35749800000008) (-95.02583300000003 49.35749800000008) (-95.07806399999993 49.35916100000003) (-95.08566299999995 49.360023000000126) (-95.120834 49.364998000000014) (-95.14250199999992 49.371658000000025) (-95.15278599999994 49.376656000000025) (-95.15417499999995 49.36638600000009) (-95.15444899999989 49.33332800000011) (-95.15396099999998 49.17333200000007) (-95.15417499999995 48.99943500000012) (-95.26655599999998 48.999977) (-97.21994000000001 48.99971800000009) (-97.50279199999994 48.99943500000012) (-97.63583399999999 48.99943500000012) (-97.801941 49.000000000000114) (-97.96916199999993 49.00027499999999) (-98.26916499999993 49.00027499999999) (-98.50222799999989 48.99943500000012) (-98.868607 49.000000000000114) (-99.335556 48.99943500000012) (-99.835556 49.000000000000114) (-100.00222799999995 49.000000000000114) (-100.50195300000001 48.99971800000009) (-101.06916799999999 49.000000000000114) (-101.30222299999997 49.00027499999999) (-101.367233 48.99878700000011) (-101.46888699999994 48.99943500000012) (-102.16887699999995 49.000000000000114) (-102.33556399999998 48.99943500000012) (-102.53555299999994 49.00027499999999) (-102.76834099999996 48.99943500000012) (-103.035278 48.99943500000012) (-103.16832699999992 48.99943500000012) (-103.26889 49.000000000000114) (-103.43554699999993 49.00027499999999) (-103.535278 48.99943500000012) (-103.73528299999987 48.99943500000012) (-104.033096 49.00025199999999) (-104.13527699999986 48.99971800000009) (-104.33500699999996 48.99943500000012) (-104.83500700000002 48.99943500000012) (-105.00140399999998 48.99943500000012) (-105.26834100000002 49.000000000000114) (-105.70221699999996 48.99943500000012) (-105.93554699999999 48.99943500000012) (-106.03472899999991 48.99943500000012) (-106.13527699999997 48.99943500000012) (-106.26862299999993 48.99943500000012) (-106.46806300000003 48.99943500000012) (-106.73554999999993 48.99943500000012) (-107.33528100000001 49.000000000000114) (-107.43499800000001 49.000000000000114) (-107.63474300000001 48.99943500000012) (-107.73554999999993 48.99943500000012) (-107.80110199999996 48.99943500000012) (-108.16887700000001 48.99943500000012) (-108.33500699999996 48.99943500000012) (-108.53472899999997 48.99943500000012) (-108.6677699999999 48.99943500000012) (-108.83473200000003 48.99943500000012) (-109.33473200000003 48.99943500000012) (-109.63474299999996 48.99943500000012) (-109.801941 48.99943500000012) (-109.96777299999997 48.99971800000009) (-109.99965700000001 49.000603000000126) (-110.10138699999999 48.99943500000012) (-110.20111099999991 48.99943500000012) (-110.30166599999995 49.000000000000114) (-110.36776699999996 49.000000000000114) (-110.50110599999988 49.000000000000114) (-110.66777000000002 49.000000000000114) (-110.76862299999993 48.99943500000012) (-111.36833199999995 48.99943500000012) (-111.80110199999996 48.99943500000012) (-112.03472899999997 48.99943500000012) (-112.16832699999998 48.99943500000012) (-112.234734 49.000000000000114) (-112.33500699999996 49.000000000000114) (-112.43499799999995 49.000000000000114) (-112.53500399999996 49.000000000000114) (-112.60166900000002 49.000000000000114) (-112.93472300000002 49.000000000000114) (-113.03443900000002 49.000000000000114) (-113.23416099999997 48.99943500000012) (-113.36833200000001 48.99943500000012) (-113.567497 48.99943500000012) (-114.0344389999999 48.99943500000012) (-114.05985999999996 49.000603000000126) (-114.33500700000002 48.99943500000012) (-114.46749899999992 48.99943500000012) (-114.53472899999991 49.000000000000114) (-114.63390399999997 49.000000000000114) (-114.90110800000002 48.99943500000012) (-115.034157 48.99943500000012) (-115.16750299999995 48.99943500000012) (-115.36805700000002 49.000000000000114) (-115.46806300000003 49.000000000000114) (-115.56723 49.000000000000114) (-115.60138699999987 48.99943500000012) (-115.734444 48.99943500000012) (-116.04833999999994 48.99971800000009) (-117.00140399999998 48.99971800000009) (-117.03662099999997 49.00312800000012) (-117.06722999999994 48.99971800000009) (-117.20084399999996 48.99943500000012) (-117.234734 49.000000000000114) (-117.30055199999993 49.000000000000114) (-117.567497 49.000000000000114) (-117.83444199999991 49.000000000000114) (-117.86749299999997 48.99943500000012) (-118.00083899999998 48.99943500000012) (-118.13417099999998 48.99943500000012) (-118.36805699999996 48.99943500000012) (-118.76777600000003 48.99943500000012) (-118.96749899999992 48.99943500000012) (-119.13417099999987 48.99943500000012) (-119.26722699999999 48.99943500000012) (-119.46777299999985 48.99943500000012) (-119.86749299999991 48.99943500000012) (-119.93415800000002 48.99943500000012) (-120.034157 48.99943500000012) (-120.53472899999997 48.99943500000012) (-121.08497599999993 48.99971800000009) (-122.10056299999997 49.000000000000114) (-122.33389299999993 49.000000000000114) (-122.43360899999993 49.000000000000114) (-122.56667299999992 49.000000000000114) (-122.69999699999994 49.000000000000114) (-122.76030000000003 48.99943500000012) (-122.81360599999994 49.00527200000005) (-122.83112299999999 49.00860600000004) (-122.86250299999989 49.02221700000001) (-122.87777699999998 49.03221100000002) (-122.87970699999994 49.03443899999996) (-122.881104 49.038605000000075) (-122.87748699999986 49.049438000000066) (-122.87609900000001 49.05138399999993) (-122.8724979999999 49.05443600000007) (-122.86416600000001 49.06166100000013) (-122.85888699999992 49.067497) (-122.85804699999994 49.07276900000011) (-122.859444 49.077217000000076) (-122.86638599999998 49.08110799999997) (-122.87444299999999 49.08360299999998) (-122.89998600000001 49.087211999999965) (-122.91887700000001 49.087211999999965) (-122.94167299999992 49.08249699999993) (-123.02194199999997 49.05165899999997) (-123.03916900000002 49.04249600000014) (-123.04666099999997 49.03333299999997) (-123.048607 49.02721400000013) (-123.04833999999994 49.022491000000116) (-123.04778299999998 49.018326000000116) (-123.03916900000002 49.00527200000005) (-123.03431699999999 48.99943500000012) (-123.09374999999994 48.99943500000012) (-123.11332699999997 49.036658999999986) (-123.13890099999998 49.10721600000011) (-123.14835399999998 49.10833000000008) (-123.20500199999998 49.12360399999994) (-123.20973200000003 49.12721299999998) (-123.247772 49.26527399999998) (-123.24889399999995 49.27360500000003) (-123.24749800000001 49.27555100000012) (-123.09449799999993 49.283938999999975) (-123.00933800000001 49.28194400000007) (-122.943329 49.28416400000009) (-122.92360699999995 49.28833000000003) (-122.91251399999999 49.29332700000009) (-122.87917299999998 49.339157000000114) (-122.87499999999994 49.351387000000045) (-122.85388199999994 49.42999300000014) (-122.85278299999999 49.43610400000006) (-122.85333300000002 49.438880999999924) (-122.86054999999993 49.447487000000024) (-122.87082700000002 49.45721400000002) (-122.87638899999996 49.45555100000007) (-122.87832600000002 49.44943200000006) (-122.876938 49.42999300000014) (-122.87721299999993 49.41499299999998) (-122.881104 49.40277100000003) (-122.88583399999993 49.391936999999984) (-122.90139799999992 49.360550000000046) (-122.91555800000003 49.342216000000064) (-122.93138099999999 49.328049000000135) (-123.00538599999999 49.31954999999999) (-123.03671999999989 49.31321700000001) (-123.04521899999992 49.312550000000044) (-123.06339299999996 49.31321700000001) (-123.08023100000003 49.31554799999998) (-123.23638900000003 49.33888200000007) (-123.25418099999996 49.384720000000016) (-123.25666799999993 49.51277200000004) (-123.25334199999992 49.52304800000013) (-123.24722299999996 49.53499599999998) (-123.20162199999999 49.61571500000014) (-123.1558379999999 49.676102000000014) (-123.15416700000003 49.67943600000001) (-123.15222199999994 49.6855470000001) (-123.15361000000001 49.690269) (-123.15972899999997 49.69915800000007) (-123.16471899999993 49.70221700000002) (-123.16777000000002 49.70221700000002) (-123.17027300000001 49.701103000000046) (-123.24194299999999 49.660544999999956) (-123.24804699999993 49.64860500000009) (-123.24804699999993 49.639717000000076) (-123.26677699999999 49.61737800000003) (-123.26594499999999 49.61038200000013) (-123.265106 49.60788000000002) (-123.26494600000001 49.60371399999997) (-123.26576999999997 49.59838100000013) (-123.26812000000001 49.595551000000114) (-123.27095799999995 49.593215999999984) (-123.27977799999991 49.59005000000002) (-123.34333800000002 49.56137800000005) (-123.381104 49.556655999999975) (-123.39444699999996 49.55193300000013) (-123.43028299999997 49.53832999999997) (-123.48306300000002 49.51666300000011) (-123.49249299999997 49.50972000000013) (-123.495003 49.506943000000035) (-123.49610899999993 49.500275000000045) (-123.49416399999996 49.46859699999999) (-123.491669 49.46360800000002) (-123.48777799999993 49.46054799999996) (-123.47778299999993 49.45526899999999) (-123.47416699999997 49.450829) (-123.47332799999992 49.44110100000012) (-123.47609699999998 49.42193600000002) (-123.47666899999996 49.41915900000009) (-123.48194899999993 49.40998800000011) (-123.48665599999993 49.406097000000045) (-123.506958 49.38943500000005) (-123.512787 49.38638300000014) (-123.51944699999996 49.38388100000009) (-123.526947 49.38221000000004) (-123.53555299999994 49.3813780000001) (-123.54499800000002 49.383331000000055) (-123.60109699999987 49.397490999999945) (-123.60610999999994 49.399994000000106) (-123.67555199999998 49.425269999999955) (-123.77500900000001 49.458327999999995) (-123.85500299999995 49.468879999999956) (-123.86165599999993 49.46665999999999) (-123.88082899999995 49.466385000000116) (-123.88890100000003 49.46804800000007) (-123.89611799999994 49.47054300000008) (-123.95973200000003 49.510551000000135) (-123.96362299999993 49.51332900000011) (-123.98860200000001 49.54166399999997) (-124.06806899999992 49.63388100000003) (-124.07055700000001 49.63804600000003) (-124.07112099999995 49.64444000000009) (-124.0702819999999 49.64971900000006) (-124.05915800000002 49.671104000000014) (-124.03250100000002 49.713882000000126) (-124.02861000000001 49.71915400000006) (-124.021118 49.726379000000065) (-124.00527999999997 49.735825000000034) (-123.99833699999999 49.73888400000004) (-123.987213 49.743050000000096) (-123.97528099999994 49.74527000000012) (-123.95694700000001 49.746101000000124) (-123.94748700000002 49.74499500000013) (-123.94055199999997 49.742493000000024) (-123.93443299999996 49.73943299999996) (-123.92971799999992 49.735825000000034) (-123.876938 49.68332700000008) (-123.83306900000002 49.627486999999974) (-123.82917799999996 49.61693600000007) (-123.82444800000002 49.59582500000005) (-123.82277699999997 49.585548000000074) (-123.82333399999999 49.58138300000007) (-123.82224300000001 49.57305100000008) (-123.79972800000002 49.51944000000003) (-123.79444899999993 49.51027700000003) (-123.78971899999999 49.50666000000007) (-123.78250099999997 49.50416600000011) (-123.77639799999992 49.50388299999997) (-123.76972999999998 49.50471500000003) (-123.76640299999991 49.50666000000007) (-123.76390100000003 49.509438000000046) (-123.76139799999999 49.51332900000011) (-123.75389100000001 49.53777300000007) (-123.76862299999993 49.56193500000012) (-123.77139299999999 49.57222000000007) (-123.77223200000003 49.581940000000145) (-123.77027900000002 49.588043000000084) (-123.74017300000003 49.602599999999995) (-123.73733500000003 49.605270000000075) (-123.73517599999991 49.606937000000016) (-123.69599899999997 49.62360400000006) (-123.68683599999997 49.62560300000007) (-123.67283599999996 49.62527100000011) (-123.63890099999998 49.634995) (-123.61501299999992 49.639160000000004) (-123.56331599999999 49.66721300000012) (-123.54695100000004 49.67721599999999) (-123.53751399999993 49.68499000000003) (-123.53362300000003 49.68971299999998) (-123.53167699999995 49.695541000000105) (-123.53222699999998 49.700546000000145) (-123.53388999999993 49.70193499999999) (-123.54167199999989 49.701103000000046) (-123.54998799999998 49.693877999999984) (-123.56054699999993 49.686935000000005) (-123.57195299999995 49.68082400000009) (-123.58556399999992 49.676102000000014) (-123.67578100000003 49.65304600000002) (-123.69061299999993 49.65105100000011) (-123.73978399999999 49.64588200000003) (-123.75010700000001 49.64521400000001) (-123.79666099999997 49.638329) (-123.803879 49.64083100000005) (-123.8125 49.647491000000116) (-123.93499800000001 49.768326) (-123.93749999999989 49.77276599999999) (-123.93582200000003 49.778046000000074) (-123.93055699999996 49.78527100000014) (-123.91999800000002 49.79249599999997) (-123.88890100000003 49.819717000000026) (-123.88500999999997 49.82360800000009) (-123.88249199999996 49.82749200000012) (-123.87970699999994 49.83277100000009) (-123.87638900000002 49.84221599999995) (-123.87332200000003 49.864158999999916) (-123.87249799999995 49.87110100000001) (-123.872772 49.87721299999998) (-123.88500999999997 49.914993000000095) (-123.889183 49.92276799999996) (-123.89417300000002 49.92721599999993) (-123.90139799999992 49.92887900000005) (-123.91082799999998 49.93027500000011) (-123.920547 49.928604000000064) (-123.92999299999997 49.92971800000004) (-123.93720999999994 49.93221300000005) (-123.94193999999999 49.936104000000114) (-123.94860799999998 49.94387799999993) (-123.95472699999999 49.95304900000008) (-123.95889299999999 49.96221200000008) (-123.929779 49.985321000000056) (-123.929283 49.98949399999998) (-123.92544599999997 49.99415600000009) (-123.92044099999998 49.99732599999999) (-123.88160700000003 50.01499600000011) (-123.87343599999986 50.018326000000116) (-123.860771 50.02166000000011) (-123.85294299999998 50.02299500000004) (-123.84310199999999 50.02365900000012) (-123.80832699999996 50.04027600000012) (-123.79611199999994 50.04444100000012) (-123.75334199999998 50.07638500000013) (-123.74861099999998 50.080276000000026) (-123.74445300000002 50.08693699999992) (-123.74944299999999 50.09665700000005) (-123.82140399999997 50.15221399999996) (-123.83056599999998 50.15693699999997) (-123.846947 50.163321999999994) (-123.97778299999993 50.21388200000001) (-123.98500100000001 50.21610300000009) (-123.99054699999999 50.2158280000001) (-123.99109599999986 50.21166199999999) (-123.98832699999997 50.20749699999999) (-123.96056399999998 50.180550000000096) (-123.94695300000001 50.169441000000006) (-123.93720999999994 50.163321999999994) (-123.92388899999992 50.15860000000009) (-123.90583800000002 50.15638000000007) (-123.88806199999988 50.152489) (-123.882767 50.15082600000005) (-123.87165800000002 50.145546000000024) (-123.80915799999997 50.099998000000085) (-123.8125 50.09054600000013) (-123.81639099999995 50.08610500000003) (-123.85716200000002 50.06688300000013) (-123.86933099999993 50.0580480000001) (-123.87499999999994 50.054214000000115) (-123.87899799999997 50.052380000000085) (-123.916 50.03988300000009) (-123.95465899999988 50.029217000000074) (-123.99526999999989 50.011664999999994) (-123.99916099999996 50.00638600000002) (-124 50.0002750000001) (-123.99916099999996 49.990547000000106) (-123.99526999999989 49.96166200000005) (-123.99249299999997 49.942764000000125) (-123.99109599999986 49.93720999999999) (-123.98860200000001 49.931664000000126) (-123.97972099999998 49.91666399999997) (-123.96721600000001 49.90638000000013) (-123.95140100000003 49.89582800000011) (-123.91972399999992 49.877769) (-123.91471899999993 49.873878000000104) (-123.91111799999999 49.869713000000104) (-123.922234 49.8344350000001) (-123.92639199999996 49.825829) (-123.97277799999989 49.80471) (-123.97833299999996 49.803047000000106) (-123.98581699999994 49.802772999999945) (-123.99194299999994 49.80443600000007) (-124.00418100000002 49.810546999999985) (-124.01012400000002 49.834602000000075) (-124.008621 49.841938000000084) (-124.00728600000002 49.85676999999998) (-124.01806599999998 49.90915699999999) (-124.02166699999987 49.91415400000011) (-124.029449 49.920547000000056) (-124.037781 49.922493000000145) (-124.04222099999998 49.921379) (-124.04472399999997 49.91749600000003) (-124.068893 49.878876000000105) (-124.07195299999995 49.87332200000009) (-124.0702819999999 49.86915600000003) (-124.06261399999988 49.84632899999991) (-124.05877700000002 49.84199100000001) (-124.05860899999999 49.838325999999995) (-124.06028000000003 49.835158999999976) (-124.08444199999991 49.79916400000013) (-124.09028599999999 49.79583000000014) (-124.14555399999995 49.77971600000001) (-124.17694099999989 49.773604999999975) (-124.18582199999997 49.77276599999999) (-124.2702789999999 49.76805100000013) (-124.40416700000003 49.763329000000056) (-124.41361999999998 49.76361099999997) (-124.42916899999994 49.766388000000006) (-124.436394 49.76888300000007) (-124.51194800000002 49.79610400000007) (-124.52166699999992 49.80416100000008) (-124.52443699999998 49.80832700000013) (-124.52583300000003 49.81388099999998) (-124.52583300000003 49.831665000000044) (-124.52749599999987 49.83721200000002) (-124.53278399999999 49.844437000000084) (-124.57195299999995 49.874435000000005) (-124.59137699999997 49.883049000000085) (-124.63221699999997 49.89943699999992) (-124.702789 49.93498999999997) (-124.74194299999999 49.95832800000005) (-124.77306399999992 49.985825000000034) (-124.80332900000002 50.02027100000009) (-124.82556199999999 50.0513840000001) (-124.82972699999999 50.061935000000005) (-124.828056 50.06666600000011) (-124.82140400000003 50.06916000000007) (-124.81304899999992 50.067496999999946) (-124.80695300000002 50.06360600000005) (-124.76722699999988 50.03638500000005) (-124.70333900000003 49.995543999999995) (-124.66805999999991 50.07027400000004) (-124.61694299999999 50.17916100000008) (-124.60193599999997 50.23499300000003) (-124.60138699999993 50.2388840000001) (-124.604172 50.243881000000044) (-124.631104 50.27971600000012) (-124.63890100000003 50.28694200000007) (-124.665009 50.30387900000005) (-124.708618 50.318329000000006) (-124.71362299999987 50.32193799999999) (-124.71501199999994 50.32749200000001) (-124.65778399999994 50.38610800000009) (-124.6519469999999 50.38916000000006) (-124.62609899999995 50.398330999999985) (-124.60193599999997 50.40277100000003) (-124.58055100000001 50.399990000000116) (-124.57555400000001 50.39899400000013) (-124.57122800000002 50.397495000000106) (-124.54998799999993 50.39388300000002) (-124.53362300000003 50.395827999999995) (-124.51999699999999 50.399994000000106) (-124.43415800000002 50.43166400000001) (-124.42054699999994 50.43721000000005) (-124.39862099999999 50.450545999999974) (-124.38305700000001 50.462212000000136) (-124.36138900000003 50.47971300000012) (-124.35193600000002 50.48749500000008) (-124.348053 50.49221800000004) (-124.34528399999988 50.49748999999997) (-124.347778 50.50249500000001) (-124.35527000000002 50.50499700000012) (-124.36389200000002 50.50388299999992) (-124.378601 50.499161000000015) (-124.38445299999995 50.49610100000001) (-124.39388999999989 50.48888400000004) (-124.39778099999995 50.484161000000086) (-124.40055799999993 50.47887400000013) (-124.404449 50.4741590000001) (-124.409157 50.47026800000003) (-124.42749000000003 50.462212000000136) (-124.51834099999991 50.43221299999993) (-124.58383199999997 50.41405100000003) (-124.58833300000003 50.41338300000001) (-124.59999800000003 50.413048) (-124.71167000000003 50.37554900000009) (-124.73916599999995 50.35193600000014) (-124.80332900000002 50.317772000000105) (-124.81582600000002 50.31220999999999) (-124.83000199999992 50.30943300000007) (-124.85056299999991 50.30971499999998) (-124.93916299999995 50.325271999999984) (-125.06388900000002 50.317772000000105) (-125.07224299999996 50.31944299999998) (-125.07833900000003 50.32249500000012) (-125.08416699999998 50.32971999999995) (-125.08889799999997 50.34638200000012) (-125.08750900000001 50.357215999999994) (-125.05666399999996 50.47693600000002) (-125.05194099999989 50.48082000000005) (-125.04499799999996 50.48333000000008) (-125.02667199999996 50.48304700000011) (-125.01806599999998 50.484161000000086) (-124.97112299999998 50.49804700000004) (-124.96528599999999 50.50110600000005) (-124.880829 50.560546999999985) (-124.85973399999989 50.58582300000006) (-124.858047 50.59054600000002) (-124.85444599999994 50.691376000000105) (-124.86888099999999 50.76499899999999) (-124.87805200000003 50.81137799999999) (-124.86749299999997 50.81777199999999) (-124.78943599999991 50.88110400000005) (-124.78694199999995 50.884438000000046) (-124.78751399999993 50.88916000000012) (-124.79998799999998 50.91304800000006) (-124.80277999999998 50.9180530000001) (-124.80583200000001 50.920830000000024) (-124.81916799999993 50.92638400000004) (-124.84999099999993 50.93526500000013) (-124.854172 50.93554700000004) (-124.86138900000003 50.92887900000005) (-124.92443800000001 50.834717000000126) (-124.9449919999999 50.77526899999992) (-124.91221599999994 50.699431999999945) (-124.90139799999997 50.63027199999999) (-124.901947 50.62471000000005) (-124.90361000000001 50.619987000000094) (-124.91111799999999 50.61138200000005) (-124.92887899999994 50.59638200000006) (-125.026947 50.54083300000008) (-125.09944200000001 50.5) (-125.10417199999989 50.49694100000005) (-125.11277799999999 50.48749500000008) (-125.11694299999999 50.47804300000013) (-125.118607 50.471930999999984) (-125.11193800000001 50.45249200000006) (-125.11138899999997 50.44776900000011) (-125.11221299999994 50.44221500000009) (-125.11472299999997 50.436935000000005) (-125.11945300000002 50.432770000000005) (-125.12526700000001 50.42971800000009) (-125.17027299999995 50.4124910000001) (-125.17777999999998 50.41137700000013) (-125.1875 50.4124910000001) (-125.195831 50.41471100000007) (-125.2022169999999 50.417213000000004) (-125.20722999999998 50.42083000000014) (-125.24610899999993 50.462212000000136) (-125.33612099999993 50.47971300000012) (-125.40361000000001 50.47360200000003) (-125.42166099999992 50.46527100000014) (-125.44275699999997 50.45943500000004) (-125.46028099999995 50.457214000000135) (-125.48832700000003 50.45638300000013) (-125.54444899999993 50.49037900000013) (-125.54811099999995 50.492050000000006) (-125.54928599999994 50.494549000000006) (-125.54961399999996 50.497547000000054) (-125.54911799999996 50.501545000000135) (-125.53222700000003 50.62721300000004) (-125.51944700000001 50.647217000000126) (-125.51194800000002 50.65721100000013) (-125.50723299999999 50.66110200000003) (-125.50055699999996 50.66304800000012) (-125.48194899999999 50.664993000000095) (-125.46749899999998 50.668602000000135) (-125.45612299999999 50.67499500000008) (-125.45140100000003 50.67887900000011) (-125.42804699999999 50.705551000000014) (-125.42555199999998 50.71082300000012) (-125.43277 50.71388200000007) (-125.443604 50.714157000000114) (-125.45889299999993 50.713608000000136) (-125.46639999999996 50.713051000000064) (-125.47332799999998 50.70916) (-125.53778099999994 50.669991000000095) (-125.54723399999995 50.661933999999974) (-125.55832699999996 50.64804800000013) (-125.56388900000002 50.63721499999997) (-125.56806899999998 50.62721300000004) (-125.57167099999998 50.61138200000005) (-125.57224300000001 50.605270000000075) (-125.5849 50.57132300000006) (-125.58206899999999 50.56582300000008) (-125.58039099999996 50.56365600000004) (-125.5800549999999 50.559994000000074) (-125.58623499999999 50.53665900000004) (-125.610229 50.48932600000006) (-125.61238900000001 50.486492000000055) (-125.63722200000001 50.445540999999935) (-125.65167200000002 50.441375999999934) (-125.69249000000002 50.42999300000014) (-125.700287 50.42804700000005) (-125.70584099999996 50.427773000000116) (-125.71611000000001 50.43221299999993) (-125.84665699999994 50.502777000000094) (-125.86472300000003 50.49526999999995) (-125.93028299999992 50.47360200000003) (-125.95221700000002 50.46888000000013) (-125.968613 50.46888000000013) (-126.06331599999999 50.470825000000104) (-126.159157 50.484992999999974) (-126.193329 50.49027300000006) (-126.26777599999997 50.50499700000012) (-126.27500899999995 50.50750000000005) (-126.27916700000003 50.51166500000005) (-126.2808379999999 50.51583099999999) (-126.279449 50.520546000000024) (-126.276947 50.52471200000008) (-126.22670699999998 50.53628500000002) (-126.18665299999998 50.54840500000006) (-126.18559999999997 50.566322000000014) (-126.23805199999998 50.59137700000002) (-126.25167799999991 50.60971800000004) (-126.26418299999995 50.61554700000005) (-126.27500899999995 50.627486999999974) (-126.27471899999995 50.63166000000007) (-126.266953 50.63472000000013) (-126.02006499999999 50.66188000000011) (-126.014725 50.66204800000014) (-125.90856200000002 50.66404699999998) (-125.73832699999997 50.682213000000104) (-125.69387799999993 50.70471200000003) (-125.62249799999995 50.750000000000114) (-125.61776700000001 50.754166000000055) (-125.54305999999991 50.8638840000001) (-125.53778099999994 50.87193300000007) (-125.51000999999997 50.92166100000003) (-125.50723299999999 50.92694100000011) (-125.50556899999998 50.93332700000002) (-125.50666799999993 50.94554100000005) (-125.50834699999996 50.95110299999999) (-125.55166600000001 51.0422210000001) (-125.56555200000003 51.05638099999999) (-125.58167999999995 51.07222000000013) (-125.59306299999997 51.07888000000014) (-125.610817 51.08776900000004) (-125.63390400000003 51.09693900000008) (-125.63722200000001 51.096382000000006) (-125.63890100000003 51.09027100000009) (-125.639183 51.07721700000002) (-125.63806199999999 51.06610100000006) (-125.583328 50.97470900000002) (-125.61028299999987 50.89888000000002) (-125.69110099999995 50.771378000000084) (-125.73110999999989 50.735550000000046) (-125.81527699999987 50.70721400000008) (-125.96383700000001 50.688660000000084) (-126.12516799999997 50.678989000000115) (-126.13100400000002 50.6786580000001) (-126.133667 50.678825000000074) (-126.13799999999998 50.681827999999996) (-126.13917500000002 50.68349500000011) (-126.22222899999991 50.69110100000006) (-126.21362299999993 50.70388000000014) (-126.20889299999999 50.70777099999998) (-126.20333899999997 50.711104999999975) (-126.11165599999993 50.75388300000009) (-126.19888299999997 50.85582700000009) (-126.26944700000001 50.85804700000011) (-126.37609899999995 50.85527000000002) (-126.39750699999996 50.84860200000003) (-126.40306099999998 50.84526800000003) (-126.42166099999997 50.8294370000001) (-126.42748999999992 50.8261030000001) (-126.43415799999997 50.82360800000009) (-126.44304699999998 50.82166300000006) (-126.49333199999995 50.81638300000003) (-126.55277999999998 50.834717000000126) (-126.55695300000002 50.838882000000126) (-126.55972299999996 50.84388000000013) (-126.557503 50.87665600000008) (-126.55359599999991 50.881377999999984) (-126.53611799999999 50.898048000000074) (-126.531387 50.9019320000001) (-126.501106 50.91609999999997) (-126.49445300000002 50.9180530000001) (-126.48332199999999 50.91915899999998) (-126.47471599999994 50.91749600000003) (-126.468613 50.91443600000014) (-126.464447 50.91027100000014) (-126.45805399999995 50.907211000000075) (-126.36833200000001 50.9019320000001) (-126.358337 50.90138200000007) (-126.24638400000003 50.898604999999975) (-126.22582999999997 50.898604999999975) (-126.21028100000001 50.90277100000009) (-126.20445299999994 50.90554800000001) (-126.18388399999992 50.91860200000008) (-126.17555199999993 50.92582700000014) (-126.17027299999995 50.936653000000035) (-126.17166099999997 50.94638100000009) (-126.17471299999988 50.95054600000009) (-126.17777999999998 50.951385000000016) (-126.181107 50.950829000000056) (-126.18888899999996 50.948875000000044) (-126.20028699999989 50.94249000000002) (-126.20500199999992 50.93832400000008) (-126.21556099999998 50.931107) (-126.228882 50.92610200000013) (-126.24553700000001 50.923325000000034) (-126.30860899999999 50.92527000000001) (-126.412216 50.936104000000114) (-126.42639200000002 50.938599000000124) (-126.5625 50.907767999999976) (-126.56833599999993 50.903877000000136) (-126.58084099999996 50.898604999999975) (-126.66139199999998 50.86804999999998) (-126.67777999999998 50.86638599999998) (-126.72165699999994 50.87609900000001) (-126.80638099999999 50.90915699999999) (-126.81916799999999 50.915824999999984) (-126.90261799999996 50.905098000000066) (-126.90595199999996 50.90410200000008) (-126.91711399999997 50.903439000000105) (-127.01471700000002 50.903877000000136) (-127.04804999999993 50.91027100000014) (-127.08556399999998 50.921378999999945) (-127.112213 50.931107) (-127.1641689999999 50.932495000000074) (-127.17639200000002 50.92916100000008) (-127.17999299999991 50.92582700000014) (-127.17804699999994 50.92027300000012) (-127.17166099999992 50.91749600000003) (-127.06276699999995 50.88526900000005) (-127.01883700000002 50.868267) (-127.00765999999993 50.867939000000035) (-126.976158 50.870438000000036) (-126.97166400000003 50.86993800000005) (-126.9691699999999 50.86910599999993) (-126.96599600000002 50.86693600000001) (-126.96681999999998 50.86410100000006) (-127.01471700000002 50.81944300000009) (-127.02250700000002 50.817497) (-127.03333299999997 50.81777199999999) (-127.047234 50.82166300000006) (-127.05776999999995 50.828048999999965) (-127.06166100000002 50.832213999999965) (-127.06696299999993 50.835823000000005) (-127.07333399999993 50.838882000000126) (-127.13276699999994 50.862213) (-127.243607 50.89666) (-127.33444199999997 50.90693699999997) (-127.39862099999993 50.92638400000004) (-127.43055699999991 50.9405440000001) (-127.535278 51.000549000000035) (-127.53832999999997 51.005554000000075) (-127.53806299999997 51.008331) (-127.502792 51.097488) (-127.495003 51.0991590000001) (-127.47749299999992 51.097488) (-127.43582199999997 51.08277100000004) (-127.40888999999987 51.071938000000046) (-127.39306599999992 51.06471299999998) (-127.38137799999998 51.05971499999998) (-127.3683319999999 51.055267000000015) (-127.354446 51.051659000000086) (-127.33056599999998 51.04833199999996) (-127.24249299999997 51.04138200000011) (-127.23610699999995 51.041107000000125) (-127.21861299999995 51.040832999999964) (-127.09612299999998 51.04388399999999) (-126.99873400000001 51.05888399999998) (-126.97956099999999 51.06288100000012) (-126.94840199999999 51.06705099999999) (-126.87339800000001 51.07288399999999) (-126.86672999999996 51.07271600000013) (-126.82656899999995 51.06705099999999) (-126.81689499999987 51.06471600000003) (-126.69167299999998 51.110550000000046) (-126.68694299999999 51.1147160000001) (-126.65278599999999 51.149994000000106) (-126.65139799999997 51.15332000000001) (-126.65110799999997 51.15749400000004) (-126.654449 51.185822000000144) (-126.65527299999997 51.18776699999995) (-126.65834000000001 51.19276400000007) (-126.66251399999993 51.19499200000001) (-126.67582700000003 51.19387800000004) (-126.67916899999994 51.19276400000007) (-126.68167099999994 51.18859900000007) (-126.68250299999994 51.176383999999985) (-126.68167099999994 51.172768000000076) (-126.68331899999998 51.165268000000026) (-126.68831599999999 51.157211000000075) (-126.69666299999994 51.14777400000014) (-126.71749899999998 51.132767000000115) (-126.84055299999989 51.094936000000075) (-126.84654999999992 51.093105000000094) (-126.85589599999997 51.09210200000007) (-126.927887 51.08493800000008) (-127.14111299999996 51.060272000000055) (-127.19249000000002 51.057213000000104) (-127.20667300000002 51.05638099999999) (-127.23832700000003 51.05693800000006) (-127.32668299999995 51.05971499999998) (-127.3408429999999 51.06082200000009) (-127.35916099999992 51.063323999999966) (-127.38861099999991 51.06805400000002) (-127.49273700000003 51.11488300000008) (-127.50985000000003 51.117359000000135) (-127.53376000000003 51.10808200000014) (-127.556107 51.09999800000003) (-127.63194299999998 51.09193400000004) (-127.64943699999998 51.092216000000064) (-127.66665599999988 51.09526800000003) (-127.67944299999988 51.10110500000013) (-127.78999299999992 51.165543000000014) (-127.79611199999994 51.197212000000036) (-127.795837 51.202217000000076) (-127.787216 51.226097000000095) (-127.78472899999991 51.23137699999995) (-127.76194800000002 51.249435000000005) (-127.59973100000002 51.28943599999997) (-127.59306300000003 51.290833000000134) (-127.56555199999997 51.29305299999993) (-127.53999299999998 51.29444100000006) (-127.45140099999998 51.29193900000013) (-127.4036099999999 51.2824940000001) (-127.37554899999998 51.27443700000009) (-127.36472299999997 51.2741620000001) (-127.23110999999994 51.28611000000012) (-127.22222899999991 51.287216) (-127.21444699999995 51.290549999999996) (-127.203888 51.29860700000012) (-127.14334100000002 51.318329000000006) (-127.1330569999999 51.32555400000007) (-127.12693799999994 51.334991) (-127.11776700000001 51.35749800000008) (-127.11110699999989 51.37721300000004) (-127.10973399999995 51.383331) (-127.11028299999992 51.389717000000076) (-127.11582899999996 51.391662999999994) (-127.12249800000001 51.389160000000004) (-127.13054699999998 51.38193499999994) (-127.13417099999998 51.37721300000004) (-127.14417300000002 51.358047) (-127.18250299999994 51.326942000000145) (-127.18804899999998 51.32360799999998) (-127.20834400000001 51.315826000000015) (-127.24749800000001 51.30638099999993) (-127.28056300000003 51.30110200000013) (-127.29055800000003 51.30054500000006) (-127.36749299999991 51.298881999999935) (-127.39584400000001 51.30221599999993) (-127.45221699999996 51.315826000000015) (-127.462784 51.34166000000005) (-127.55444299999999 51.332497000000046) (-127.57000699999998 51.32860599999998) (-127.75499699999989 51.31944299999998) (-127.76390100000003 51.31944299999998) (-127.77250699999996 51.3211060000001) (-127.77887699999997 51.32471500000008) (-127.78415699999994 51.33305400000012) (-127.78778099999994 51.34887700000013) (-127.78307299999994 51.356941000000006) (-127.778343 51.36110700000006) (-127.74109599999997 51.38027200000005) (-127.72749299999998 51.38555100000002) (-127.69332899999995 51.39083100000005) (-127.68443300000001 51.39083100000005) (-127.65055799999999 51.40804300000008) (-127.55166600000001 51.468323000000055) (-127.51583900000003 51.51915700000001) (-127.51306199999993 51.52999100000005) (-127.512787 51.53555299999999) (-127.515289 51.5472180000001) (-127.521118 51.56388099999998) (-127.51640299999997 51.587769000000094) (-127.51500699999985 51.59388000000001) (-127.50890399999997 51.60471299999995) (-127.50055700000001 51.61360900000011) (-127.48805199999998 51.619438000000116) (-127.44444299999998 51.62999000000008) (-127.37609900000001 51.6449970000001) (-127.32584400000002 51.651382000000126) (-127.23332199999999 51.66249099999999) (-127.09584000000001 51.668052999999986) (-126.95344499999999 51.658325000000104) (-126.94693799999993 51.65765799999997) (-126.93778199999997 51.65532700000006) (-126.88377400000002 51.64949400000006) (-126.708054 51.64193700000004) (-126.66332999999986 51.64888000000002) (-126.65527299999997 51.651382000000126) (-126.620003 51.679993000000024) (-126.60694899999993 51.706940000000145) (-126.60527000000002 51.713051000000064) (-126.60582699999992 51.71943699999997) (-126.60777300000001 51.72499099999993) (-126.63555899999989 51.76971400000002) (-126.63944999999995 51.77388000000013) (-126.660278 51.7922210000001) (-126.66528299999999 51.772491000000116) (-126.66665599999999 51.766388000000006) (-126.66251399999993 51.7472150000001) (-126.65387699999991 51.73249100000004) (-126.64362299999999 51.719154) (-126.63999899999999 51.709991) (-126.641388 51.7052690000001) (-126.64388999999994 51.70110299999999) (-126.64750700000002 51.697768999999994) (-126.69304699999998 51.66471100000001) (-126.703056 51.66443600000002) (-126.91521499999999 51.68243800000005) (-126.96421799999996 51.6866040000001) (-126.97788199999997 51.69060500000006) (-127.05387899999988 51.697768999999994) (-127.07501199999996 51.697768999999994) (-127.14055599999995 51.694435000000055) (-127.27416999999997 51.68332700000002) (-127.3999859999999 51.66971600000005) (-127.41583300000002 51.665824999999984) (-127.42582699999997 51.66666399999997) (-127.43222000000003 51.66832700000009) (-127.43554699999987 51.67110399999996) (-127.43971299999993 51.674713) (-127.44167299999992 51.68027500000011) (-127.42748999999998 51.73193400000014) (-127.364441 51.768326000000116) (-127.36193800000001 51.77166000000011) (-127.359444 51.77721400000007) (-127.33917200000002 51.83915699999994) (-127.33721899999989 51.851387000000045) (-127.33999599999999 51.86110699999995) (-127.34555099999994 51.864159000000086) (-127.35109699999992 51.863609000000054) (-127.35694899999999 51.86027500000006) (-127.44833399999987 51.77721400000007) (-127.5719529999999 51.706940000000145) (-127.58556399999986 51.67777300000006) (-127.54638699999992 51.62748699999992) (-127.55860899999999 51.543884000000105) (-127.56111099999998 51.53860500000013) (-127.57417299999997 51.51888300000007) (-127.58139 51.50943799999999) (-127.63583399999999 51.46054800000013) (-127.640289 51.458602999999925) (-127.659157 51.4574970000001) (-127.70639 51.45638300000013) (-127.71639999999996 51.457214000000135) (-127.72389199999992 51.45943500000004) (-127.73029300000002 51.46305100000012) (-127.75473 51.479988000000105) (-127.75917099999992 51.48416100000003) (-127.76083399999993 51.48971599999993) (-127.75974300000001 51.49443800000006) (-127.74416400000001 51.498329000000126) (-127.712784 51.50443999999999) (-127.787216 51.56027199999994) (-127.87416099999996 51.66332200000005) (-127.87805200000003 51.67388199999999) (-127.88999899999999 51.798332000000016) (-127.88944999999995 51.807770000000005) (-127.886124 51.85221899999999) (-127.88474299999996 51.858604000000014) (-127.86971999999997 51.89527099999998) (-127.86609599999997 51.89999399999999) (-127.86165599999987 51.90416000000005) (-127.83306899999997 51.91999100000004) (-127.82055699999995 51.92665900000003) (-127.79638699999998 51.938599000000124) (-127.78971899999999 51.941101) (-127.76611300000002 51.94693799999993) (-127.73805199999993 51.949715000000026) (-127.66443600000002 51.95388000000003) (-127.65527299999997 52.04027600000006) (-127.65387699999991 52.04638699999998) (-127.65139799999997 52.051659000000086) (-127.64527900000002 52.06193499999995) (-127.62943999999999 52.08832600000005) (-127.62581599999999 52.09304799999995) (-127.61749299999997 52.10193600000014) (-127.58029199999993 52.129158000000075) (-127.52555799999993 52.14721700000001) (-127.49944299999993 52.15165700000006) (-127.48055999999997 52.15109999999993) (-127.47721899999999 52.15054300000003) (-127.46528599999988 52.14388300000002) (-127.46140300000002 52.13304900000014) (-127.46250899999995 52.112495000000024) (-127.46611000000001 52.10777300000012) (-127.47556299999997 52.099716000000114) (-127.48249799999996 52.09693900000002) (-127.49833699999999 52.093323) (-127.50834700000001 52.093323) (-127.51834100000002 52.09443699999997) (-127.52722199999994 52.09582500000005) (-127.53500400000001 52.098877000000016) (-127.55277999999998 52.10110500000013) (-127.56276700000001 52.10082999999992) (-127.57167099999998 52.098877000000016) (-127.58444199999991 52.09360500000008) (-127.58889799999992 52.089714000000015) (-127.61416600000001 52.035828000000095) (-127.61332699999997 52.0324940000001) (-127.59416199999998 52.03555300000011) (-127.58612099999993 52.03804800000012) (-127.420837 52.12027000000012) (-127.43360899999999 52.131659999999954) (-127.45056199999999 52.16915900000009) (-127.45249899999988 52.17388200000005) (-127.45305599999995 52.17999300000014) (-127.44972199999995 52.18277000000006) (-127.37609900000001 52.21693400000004) (-127.35417199999995 52.22470900000013) (-127.33138999999994 52.23027000000002) (-127.30027799999993 52.22832500000004) (-127.29110700000001 52.229431000000034) (-127.28443900000002 52.231934000000024) (-127.24526999999995 52.248878000000104) (-127.23944099999994 52.25222000000002) (-127.19304699999998 52.29083300000008) (-127.18582200000003 52.30027000000001) (-127.17749000000003 52.3097150000001) (-127.17166099999992 52.31249200000002) (-127.16361999999987 52.314156000000025) (-127.04276999999996 52.309158000000025) (-127.01251200000002 52.3063810000001) (-127.00499699999995 52.30360400000001) (-126.99861099999993 52.29860700000012) (-126.964447 52.27166) (-126.94526699999994 52.25610400000005) (-126.93804899999986 52.24694100000005) (-126.93611099999998 52.24137900000011) (-126.93554699999999 52.23526800000002) (-126.82749899999999 52.1280440000001) (-126.75195300000001 52.07860599999998) (-126.71193700000003 52.04444100000006) (-126.69415300000003 52.028877000000136) (-126.691101 52.02388000000008) (-126.68388399999998 51.99971799999997) (-126.67804699999994 51.99054700000005) (-126.67388899999997 51.98638200000005) (-126.66944899999999 51.98360400000007) (-126.66832699999998 51.98554999999993) (-126.66776999999996 51.99110400000012) (-126.66583300000002 52.03138000000013) (-126.66665599999999 52.036384999999996) (-126.66972399999997 52.04193900000001) (-126.73805199999987 52.113052000000096) (-126.76363399999991 52.13249200000007) (-126.81722999999988 52.166100000000085) (-126.83112299999999 52.17193599999996) (-126.85555999999997 52.17804700000005) (-126.86305199999993 52.18110700000011) (-126.88027999999986 52.190544000000045) (-126.90055799999999 52.20526899999999) (-126.90666199999993 52.21527100000014) (-126.94082600000002 52.30387900000005) (-126.94027699999998 52.31082200000003) (-126.93611099999998 52.32249500000006) (-126.932503 52.32721700000013) (-126.920837 52.33360300000004) (-126.87361099999998 52.35083000000009) (-126.82084700000001 52.36388399999993) (-126.81416299999995 52.365273000000116) (-126.78888699999999 52.369987000000094) (-126.77667199999996 52.37027000000006) (-126.76194800000002 52.370543999999995) (-126.73638900000003 52.366386000000034) (-126.73166700000002 52.36776700000007) (-126.73249800000002 52.37387799999999) (-126.73665599999998 52.378044000000045) (-126.75167799999991 52.388329) (-126.76363399999991 52.39332600000006) (-126.79277000000002 52.39554600000008) (-126.91027799999995 52.37387799999999) (-126.92610200000001 52.37082700000013) (-126.94110099999995 52.366386000000034) (-126.948036 52.36388399999993) (-126.95973199999997 52.357215999999994) (-126.96972699999998 52.34165999999999) (-126.97444200000001 52.33776899999992) (-126.98137699999995 52.33526599999999) (-127.00279199999994 52.334991000000116) (-127.08249699999993 52.334991000000116) (-127.14111299999996 52.34804500000001) (-127.15778399999999 52.35249299999998) (-127.186394 52.38082099999997) (-127.22805800000003 52.453049000000135) (-127.23610699999995 52.50555400000013) (-127.23665599999998 52.51166500000005) (-127.23416099999997 52.51721199999997) (-127.19695299999995 52.54999500000014) (-127.186394 52.55777000000006) (-127.08112299999993 52.61305199999998) (-127.07417299999997 52.61638599999998) (-127.05915800000002 52.62082700000008) (-127.00446299999999 52.626937999999996) (-126.99638399999998 52.62860100000006) (-126.989441 52.631935000000055) (-126.97972099999998 52.639434999999935) (-126.97609699999998 52.64388300000013) (-126.924713 52.71471400000013) (-126.92223399999995 52.71888000000001) (-126.92166099999997 52.72582200000011) (-126.92250100000001 52.73110200000002) (-126.966949 52.828606000000036) (-126.97112300000003 52.83277100000004) (-126.975281 52.83554800000013) (-126.98332199999987 52.83776900000004) (-127.01777599999991 52.84554300000002) (-127.02139299999993 52.82777400000009) (-127.01834100000002 52.823608000000036) (-127.00778199999996 52.80888399999998) (-126.98082699999992 52.72443400000003) (-126.98111 52.71749100000005) (-126.98528299999992 52.707497000000046) (-127.04250300000001 52.64777399999997) (-127.04737899999992 52.643463) (-127.05561799999998 52.641815000000065) (-127.13445300000001 52.60943600000013) (-127.24054699999988 52.55777000000006) (-127.25723299999999 52.54583000000014) (-127.28083799999996 52.509162999999944) (-127.28222700000003 52.50305200000008) (-127.28028899999993 52.497489999999914) (-127.27610800000002 52.49332400000003) (-127.26528899999988 52.485550000000046) (-127.25805699999995 52.47721100000001) (-127.25834699999996 52.47304500000007) (-127.26194800000002 52.46749100000011) (-127.26666299999988 52.464157000000114) (-127.33345800000001 52.43389500000001) (-127.40082599999994 52.42443100000014) (-127.46541599999995 52.395477000000085) (-127.48935699999987 52.362072000000126) (-127.61165599999998 52.29471600000005) (-127.61833200000001 52.29193900000013) (-127.72138999999993 52.27471200000008) (-127.73055999999997 52.273604999999975) (-127.739441 52.27388000000002) (-127.74610899999999 52.276657000000114) (-127.75029 52.28166199999998) (-127.80471799999998 52.248878000000104) (-127.84277299999997 52.2241590000001) (-127.84528399999999 52.21943700000003) (-127.85249299999987 52.20999100000006) (-127.85833699999995 52.206657000000064) (-127.86389200000002 52.20749699999993) (-127.86916399999996 52.21110500000003) (-127.87110899999999 52.216385000000116) (-127.87304699999999 52.22332) (-127.90527299999991 52.27887700000008) (-127.86776700000001 52.494995000000074) (-127.86776700000001 52.50054900000009) (-127.86971999999997 52.50610399999999) (-127.87499999999994 52.51027699999992) (-127.88166799999999 52.51249700000011) (-127.89195299999994 52.513329000000056) (-127.89998599999996 52.50999500000006) (-127.92488899999995 52.443886000000134) (-127.92971799999992 52.427547000000004) (-127.92854299999999 52.42421300000001) (-127.92588 52.42121500000013) (-127.916718 52.4148790000001) (-127.90905800000002 52.40738299999998) (-127.90589099999988 52.401549999999986) (-127.90538800000002 52.39788400000009) (-127.95694700000001 52.32444000000004) (-127.96389799999997 52.321663000000115) (-127.972778 52.323326000000066) (-127.995003 52.33055100000013) (-128.0080569999999 52.336937000000034) (-128.01251200000002 52.34110299999992) (-128.05721999999997 52.394713999999965) (-128.05917399999998 52.400269000000094) (-128.06832899999995 52.44776900000005) (-128.06695599999995 52.45388000000014) (-128.05944799999992 52.470267999999976) (-128.05111699999992 52.478874000000076) (-128.0419619999999 52.48777000000001) (-128.03250100000002 52.49527000000012) (-128.00946 52.50860600000004) (-127.97721899999999 52.51971400000008) (-127.96916199999993 52.52166000000011) (-127.96140300000002 52.519440000000145) (-127.95612299999993 52.515831000000105) (-127.89611799999994 52.542220999999984) (-127.891388 52.54638700000004) (-127.88778699999995 52.55110200000007) (-127.8799899999999 52.574164999999994) (-127.87970699999994 52.579720000000066) (-127.88751200000002 52.57777399999998) (-128.0291749999999 52.54166400000008) (-128.04083300000002 52.53582799999998) (-128.0997309999999 52.50305200000008) (-128.1049349999999 52.49238200000008) (-128.118317 52.465546000000074) (-128.14834599999995 52.42221799999999) (-128.2250059999999 52.330826000000116) (-128.23330699999997 52.32193799999999) (-128.27862499999998 52.280823) (-128.28332499999993 52.276657000000114) (-128.28891 52.27332300000012) (-128.295837 52.27082800000011) (-128.30499299999997 52.269439999999975) (-128.39388999999989 52.291382000000056) (-128.32971199999992 52.38027199999999) (-128.29751599999992 52.40054300000003) (-128.29083300000002 52.401657) (-128.28085299999992 52.400825999999995) (-128.27416999999997 52.39804799999996) (-128.267517 52.396660000000054) (-128.260559 52.39916199999993) (-128.255859 52.403320000000065) (-128.22442599999994 52.45971700000007) (-128.2219239999999 52.46527100000009) (-128.22055099999994 52.47137500000014) (-128.22109999999992 52.48443600000007) (-128.228607 52.52304800000002) (-128.23055999999997 52.5283280000001) (-128.238312 52.536658999999986) (-128.24221799999998 52.547775000000115) (-128.241943 52.55471) (-128.239166 52.5669400000001) (-128.18527199999988 52.67110400000013) (-128.14584399999995 52.71998600000006) (-128.120544 52.757217000000026) (-128.13165300000003 52.87638100000004) (-128.17001299999998 52.85665899999998) (-128.17501800000002 52.85193599999997) (-128.22305299999994 52.81249200000008) (-128.22888199999994 52.80860100000001) (-128.23525999999993 52.80582400000009) (-128.249725 52.8013840000001) (-128.2744449999999 52.79943800000001) (-128.300293 52.800270000000125) (-128.33999600000004 52.80554999999998) (-128.42611699999998 52.81749700000012) (-128.43612699999994 52.818886000000134) (-128.441101 52.82276900000005) (-128.48776199999986 52.873604000000114) (-128.49359100000004 52.882767000000115) (-128.495544 52.88749699999994) (-128.498871 52.903602999999976) (-128.50640899999996 52.96305099999995) (-128.51556399999998 53.01998899999995) (-128.539734 53.13193499999994) (-128.62554899999992 53.20221700000002) (-128.66140699999994 53.20221700000002) (-128.66082799999992 53.196938000000046) (-128.66305499999999 53.19082600000007) (-128.66723599999995 53.18749200000008) (-128.676666 53.18776700000012) (-128.68527199999994 53.189430000000016) (-128.70111099999997 53.195541000000105) (-128.78832999999997 53.23971599999999) (-128.794739 53.24332400000009) (-128.84887699999996 53.27582600000005) (-128.85888699999998 53.28360700000013) (-128.866394 53.292220999999984) (-128.86944600000004 53.2972180000001) (-128.87832599999996 53.31638300000003) (-128.88558999999998 53.37437800000009) (-128.88798499999996 53.42496500000004) (-128.92186000000004 53.45360199999999) (-128.95916699999998 53.50277700000004) (-128.97332799999998 53.54749300000003) (-128.97277799999995 53.55304700000005) (-128.966095 53.55609900000013) (-128.80499299999997 53.56999200000001) (-128.79501300000004 53.56860400000011) (-128.78832999999997 53.56499500000007) (-128.783325 53.561104) (-128.77972399999987 53.556938000000116) (-128.69250499999998 53.48526800000013) (-128.55862399999995 53.41387900000012) (-128.523621 53.396660000000054) (-128.446014 53.413158000000124) (-128.44517499999995 53.41599300000007) (-128.4295039999999 53.429824999999994) (-128.1897279999999 53.459991) (-128.15945399999993 53.455826) (-128.14862099999993 53.45360599999998) (-128.13192699999996 53.448875000000044) (-128.105255 53.44054399999999) (-128.09387199999998 53.43305200000003) (-128.07081600000004 53.39411499999994) (-128.03488200000004 53.36928900000004) (-128.00598099999996 53.34705699999995) (-127.95195000000001 53.32610299999993) (-127.94999699999988 53.32138100000003) (-127.951683 53.309990000000084) (-127.95388799999995 53.30416100000008) (-127.95694700000001 53.28138000000007) (-127.95527600000003 53.26583099999999) (-127.95111099999997 53.25638600000008) (-127.94611399999985 53.25222000000002) (-127.87526700000001 53.22443399999992) (-127.87027 53.22276300000004) (-127.868607 53.233879) (-127.86776700000001 53.23971599999999) (-127.87138399999998 53.244155999999975) (-127.92259999999993 53.273685) (-127.93297599999994 53.29332399999993) (-127.92408 53.31815300000011) (-127.92593399999993 53.33075000000002) (-127.98805199999998 53.35388199999994) (-128.0716549999999 53.43138099999999) (-128.09387199999998 53.451935000000105) (-128.12692300000003 53.48110200000002) (-128.16528299999993 53.483879000000115) (-128.18331899999993 53.48416100000003) (-128.3013919999999 53.47832499999993) (-128.45187399999992 53.50332300000008) (-128.4534 53.49965699999996) (-128.45640600000002 53.496822000000066) (-128.48156700000004 53.487987999999916) (-128.49021900000002 53.485325000000046) (-128.53340100000003 53.47832499999993) (-128.54457100000002 53.47899200000006) (-128.54937699999994 53.48082399999993) (-128.81304899999992 53.619155999999975) (-128.81664999999998 53.62332200000009) (-128.81805399999996 53.64471400000008) (-128.81750499999993 53.65026899999998) (-128.81390399999998 53.65693699999997) (-128.808899 53.66165900000004) (-128.78417999999988 53.675552000000096) (-128.77279699999997 53.73333000000014) (-128.79388399999988 53.76499899999993) (-128.793335 53.77054600000008) (-128.79110699999995 53.776657) (-128.7705689999999 53.79583000000008) (-128.67767300000003 53.83977500000009) (-128.67384300000003 53.84160600000007) (-128.66551200000004 53.84460800000011) (-128.66067499999997 53.845439999999996) (-128.65583799999996 53.84360500000008) (-128.64482099999987 53.83710500000012) (-128.64166299999994 53.83477000000005) (-128.60360699999995 53.842216000000064) (-128.59387199999998 53.839714000000015) (-128.47720299999997 53.82860599999998) (-128.47137499999997 53.832497000000046) (-128.47555499999999 53.842216000000064) (-128.482758 53.85082999999992) (-128.48944099999994 53.85416399999991) (-128.498871 53.856941000000006) (-128.5100099999999 53.85916100000003) (-128.53030399999994 53.86166400000002) (-128.53832999999992 53.860275) (-128.54501299999998 53.85721600000005) (-128.55306999999988 53.85610200000008) (-128.61726399999992 53.868546000000094) (-128.65962199999996 53.8828850000001) (-128.662598 53.885216000000014) (-128.66461200000003 53.88821800000011) (-128.67903099999995 53.90752400000002) (-128.67869599999995 53.91085799999996) (-128.66686999999996 53.92285900000013) (-128.66072099999997 53.928524000000095) (-128.6480709999999 53.94943200000006) (-128.63946499999997 53.96054799999996) (-128.59832799999998 54.02693899999997) (-128.60055499999993 54.03166199999998) (-128.60916099999997 54.03138000000007) (-128.61663799999997 54.029160000000104) (-128.67861899999997 54.00360900000004) (-128.68527199999994 54.000832000000116) (-128.68890399999998 53.99415600000003) (-128.6955569999999 53.976097000000095) (-128.7228389999999 53.94404600000007) (-128.724991 53.94021600000008) (-128.727661 53.93671000000006) (-128.73100299999993 53.93354799999992) (-128.79943799999995 53.87499200000002) (-128.915283 53.787216) (-128.93194600000004 53.774711999999965) (-128.98361199999994 53.76221499999997) (-129.10497999999995 53.72026800000009) (-129.1180419999999 53.71415700000006) (-129.12359599999996 53.710274000000084) (-129.21749899999992 53.64027400000009) (-129.232483 53.62582400000014) (-129.2380369999999 53.61332700000014) (-129.239441 53.60193600000002) (-129.236938 53.53721600000006) (-129.231384 53.50083200000006) (-129.23443599999996 53.46193700000009) (-129.234985 53.456100000000106) (-129.23748799999993 53.43360099999995) (-129.27279699999997 53.37915800000002) (-129.30334499999992 53.38499499999995) (-129.333893 53.39749100000006) (-129.353607 53.40776800000003) (-129.518616 53.51499899999999) (-129.62914999999987 53.58776900000004) (-129.686127 53.630272000000105) (-129.83084099999996 53.74721500000004) (-129.86111499999998 53.76527399999998) (-129.912781 53.79833200000013) (-130.04501300000004 53.88304900000014) (-130.050293 53.88694000000004) (-130.099152 53.94193300000006) (-130.10137899999995 53.946655000000135) (-130.09136999999987 54.066101) (-130.09082 54.071662999999944) (-130.07693499999993 54.114441000000056) (-130.073334 54.12082700000013) (-130.065002 54.132209999999986) (-130.051666 54.14860500000009) (-130.04666099999997 54.15332000000012) (-129.86361699999998 54.213051000000064) (-129.84887700000002 54.21749100000011) (-129.83194000000003 54.21943699999997) (-129.78205899999995 54.21060199999994) (-129.72637899999995 54.20077100000009) (-129.69738799999993 54.194435000000055) (-129.68756099999996 54.19093300000003) (-129.644165 54.18193800000006) (-129.63333099999994 54.17999300000008) (-129.6141659999999 54.17891700000007) (-129.591949 54.18582200000009) (-129.470825 54.235825000000034) (-129.47000100000002 54.23721299999994) (-129.474426 54.239990000000034) (-129.48275799999988 54.243050000000096) (-129.5114139999999 54.244155999999975) (-129.51889 54.24193600000012) (-129.56140099999993 54.22693599999997) (-129.56777999999997 54.223877000000016) (-129.68238799999995 54.22160299999996) (-129.68823199999997 54.223099000000104) (-129.77654999999993 54.234767999999974) (-129.83666999999997 54.23832700000014) (-129.8549799999999 54.23804500000006) (-129.87136799999996 54.23526800000013) (-129.966949 54.20694000000003) (-129.97997999999995 54.20082900000011) (-129.9916689999999 54.19276400000001) (-130.037506 54.1730500000001) (-130.10443099999998 54.154434000000094) (-130.113312 54.15387700000002) (-130.122772 54.154434000000094) (-130.131104 54.15721099999996) (-130.19168099999996 54.19332100000008) (-130.22805800000003 54.25860600000004) (-130.238586 54.29499800000008) (-130.2611389999999 54.34276599999998) (-130.27584799999994 54.34971600000006) (-130.28250100000002 54.34638200000006) (-130.332764 54.329720000000066) (-130.34887700000002 54.32694200000009) (-130.39138799999995 54.33027600000008) (-130.45166 54.33665500000012) (-130.45916699999998 54.3386000000001) (-130.48111 54.36471599999999) (-130.48388699999998 54.401657000000114) (-130.4763789999999 54.430550000000096) (-130.47360199999997 54.43582200000003) (-130.433624 54.49665800000014) (-130.42999299999997 54.56249200000008) (-130.4397279999999 54.612213) (-130.44055200000003 54.617493000000024) (-130.438599 54.623604000000114) (-130.43277 54.62748700000003) (-130.42556799999994 54.62971500000003) (-130.41665599999993 54.630272000000105) (-130.40750099999997 54.62860100000006) (-130.39779699999997 54.62638100000004) (-130.38946499999992 54.62332200000003) (-130.37554899999992 54.616661000000136) (-130.33215299999995 54.578552) (-130.28167699999995 54.528381000000024) (-130.2227779999999 54.47193100000004) (-130.06304899999986 54.33998900000012) (-130.05776999999995 54.33610500000009) (-130.03723100000002 54.3261030000001) (-130.020844 54.31999200000001) (-129.9930419999999 54.31221000000005) (-129.98275799999993 54.31110400000006) (-129.96581999999995 54.313049000000035) (-129.95916699999998 54.31610099999995) (-129.95584099999985 54.322495) (-129.959717 54.32694200000009) (-129.96722399999993 54.32888000000003) (-129.98165900000004 54.32443999999998) (-129.99054 54.32388300000008) (-130.02362099999993 54.33554800000002) (-130.0386049999999 54.341934000000094) (-130.043884 54.34582499999999) (-130.14779699999997 54.44193300000012) (-130.31382799999994 54.58626900000007) (-130.36721799999992 54.635268999999994) (-130.37222299999996 54.64471400000008) (-130.374146 54.65499100000005) (-130.36859100000004 54.66777000000013) (-130.358612 54.677490000000034) (-130.352783 54.6813810000001) (-130.339722 54.687492000000134) (-130.32501200000002 54.692214999999976) (-130.24386599999997 54.70777100000009) (-130.23553499999997 54.70916000000011) (-130.22582999999997 54.708885000000066) (-130.17193599999996 54.70360600000009) (-130.16195700000003 54.7011030000001) (-130.15362500000003 54.69832600000001) (-130.10110499999996 54.67166099999997) (-130.075287 54.657767999999976) (-130.06887800000004 54.648604999999975) (-130.065002 54.644440000000145) (-130.054169 54.63665800000001) (-130.0269469999999 54.62304700000004) (-130.00058 54.61471599999993) (-129.980835 54.609993000000145) (-129.959991 54.607498000000135) (-129.910278 54.60555299999993) (-129.968323 54.62193300000007) (-130.0044559999999 54.632767000000115) (-130.02807599999994 54.641936999999984) (-130.19473299999999 54.72332) (-130.20166 54.72693600000008) (-130.20111099999986 54.73249099999998) (-130.17388899999992 54.84665699999999) (-130.171112 54.85166200000003) (-130.16583300000002 54.85665900000009) (-130.16082799999998 54.861382000000106) (-130.05835000000002 54.95277399999998) (-130.045837 54.95999100000006) (-130.03195199999993 54.96527100000014) (-129.94694499999991 54.9704900000001) (-129.9362789999999 54.97115300000007) (-129.92394999999993 54.97032200000007) (-129.91810599999985 54.96882600000009) (-129.90977499999997 54.96466100000009) (-129.90745500000003 54.9621580000001) (-129.65444899999994 54.980545000000006) (-129.646973 54.98276500000003) (-129.64028899999994 54.98582500000009) (-129.62249799999995 54.997772000000055) (-129.62499999999994 55.00249500000001) (-129.79998799999998 55.00694299999998) (-129.866089 55.00666000000001) (-129.875275 55.00610400000005) (-129.883331 55.00471500000003) (-129.90585299999998 54.997772000000055) (-129.91390999999993 54.99638399999992) (-129.964874 55.00343699999996) (-129.97171000000003 55.004608000000076) (-129.97905000000003 55.00893800000006) (-129.98138399999993 55.01160800000014) (-129.98104899999993 55.01493800000014) (-129.9963679999999 55.02416200000005) (-129.97555499999993 55.06693999999993) (-129.96139500000004 55.09332300000011) (-129.95638999999989 55.09804500000001) (-129.84750399999996 55.210548000000074) (-129.72665399999988 55.3386000000001) (-129.66300999999999 55.41221200000001) (-129.64334099999996 55.434158000000025) (-129.63723800000002 55.43804200000005) (-129.62222299999996 55.44249000000002) (-129.60525499999994 55.445267000000115) (-129.584717 55.4438780000001) (-129.541107 55.43804200000005) (-129.52389500000004 55.43998700000003) (-129.50863599999997 55.444435) (-129.48831199999995 55.45360599999992) (-129.47610499999996 55.46138000000013) (-129.47164899999996 55.46720900000014) (-129.47109999999992 55.472762999999986) (-129.475006 55.47693600000008) (-129.48416099999997 55.478600000000085) (-129.62027 55.459434999999985) (-129.63696299999998 55.45665699999995) (-129.679123 55.47315600000013) (-129.68611099999998 55.46749100000005) (-129.69662500000004 55.45399100000003) (-129.69979899999993 55.450993000000096) (-129.70428500000003 55.44966100000005) (-129.70979299999993 55.450657000000035) (-129.712112 55.453327000000115) (-129.71362299999993 55.45616100000012) (-129.78695700000003 55.56666600000011) (-129.78582800000004 55.50277699999998) (-129.779449 55.49360700000011) (-129.772247 55.47943099999992) (-129.78030399999994 55.35971799999999) (-129.78250100000002 55.35360700000007) (-129.81390399999987 55.28971900000005) (-129.81750499999998 55.28333299999997) (-129.90695199999988 55.168052999999986) (-129.911407 55.162491000000045) (-129.92083699999995 55.15193199999999) (-130.028351 55.03638500000011) (-130.068329 54.99694100000005) (-130.07443199999994 54.992767000000015) (-130.081665 54.99054699999999) (-130.09082 54.98999000000009) (-130.10055499999999 54.99054699999999) (-130.10833699999995 54.99249300000008) (-130.11361699999992 54.99638399999992) (-130.12777700000004 55.01388500000007) (-130.16027799999995 55.069717000000026) (-130.16223099999996 55.079994) (-130.1600039999999 55.08610500000009) (-130.11859099999998 55.14249399999994) (-130.11416599999995 55.1483310000001) (-130.0808409999999 55.18471499999998) (-130.06390399999998 55.195266999999944) (-130.04528799999997 55.20416300000005) (-130.03918499999992 55.208046000000024) (-129.948059 55.27638200000001) (-129.94387799999998 55.28221100000002) (-129.94473300000004 55.28721600000006) (-129.94888300000002 55.29583000000014) (-129.96054100000003 55.308884000000035) (-130.00863599999997 55.37082700000008) (-130.101654 55.55638099999999) (-130.103607 55.56666600000011) (-130.128876 55.72221400000012) (-130.12942499999997 55.73276500000003) (-130.128876 55.738602000000014) (-130.126099 55.750275000000045) (-130.12191799999994 55.762496999999996) (-130.116394 55.77499399999999) (-130.11276199999998 55.78166199999998) (-130.10833699999995 55.787216) (-130.09109499999994 55.799995000000024) (-130.079163 55.80804400000005) (-130.06722999999994 55.815826000000015) (-130.0552669999999 55.82388300000014) (-130.03945899999997 55.83832600000005) (-129.96664399999992 55.91220900000002) (-129.962219 55.91777000000002) (-129.9641719999999 55.928329000000076) (-129.97137499999985 55.931663999999955) (-129.97970599999985 55.932213000000104) (-129.99499500000002 55.92777300000006) (-130.0019529999999 55.924713000000054) (-130.00500499999993 55.921661000000086) (-130.01507600000002 55.90917999999999) (-130.01419099999998 56.02388000000013) (-130.0147399999999 56.02582600000005) (-130.0538939999999 56.07555400000001) (-130.08859299999995 56.11804999999998) (-130.22915599999993 56.09027100000014) (-130.3652649999999 56.123878000000104) (-130.4475099999999 56.20638300000007) (-130.46194499999996 56.23526800000013) (-130.48471099999995 56.23943300000013) (-130.53277599999996 56.246384000000035) (-130.5607149999999 56.250000000000114) (-130.62719699999997 56.25860600000004) (-130.720551 56.325554000000125) (-130.755859 56.353049999999996) (-130.77444500000001 56.366104000000064) (-130.84722899999997 56.37443500000012) (-130.92001300000004 56.38249200000013) (-131.05499299999997 56.398048000000074) (-131.07055699999995 56.403602999999976) (-131.12582399999997 56.42416399999996) (-131.1444699999999 56.4347150000001) (-131.164734 56.44526700000006) (-131.205261 56.4658280000001) (-131.22137499999997 56.47248800000011) (-131.290009 56.50054899999998) (-131.31445299999996 56.50999499999995) (-131.5394589999999 56.59665699999999) (-131.55777 56.602219000000105) (-131.578888 56.60332499999993) (-131.61111499999998 56.602219000000105) (-131.81610099999995 56.59499400000004) (-131.824158 56.59693900000002) (-131.82861299999996 56.60083000000009) (-131.85803199999987 56.71888000000013) (-131.86361699999992 56.78611000000012) (-131.86053500000003 56.797775) (-131.86138899999997 56.79972100000009) (-132.10305800000003 56.86666100000002) (-132.09194899999994 56.89360799999997) (-132.06195100000002 56.95971700000007) (-132.03668199999993 57.01305400000001) (-132.02749600000004 57.03638500000005) (-132.22109999999992 57.068054000000075) (-132.316956 57.08387800000003) (-132.33694500000001 57.088325999999995) (-132.32611099999997 57.10054800000012) (-132.26806599999986 57.16304800000006) (-132.25473 57.17471299999994) (-132.226654 57.20471199999997) (-132.35415599999988 57.35443900000013) (-132.36972000000003 57.37082700000002) (-132.37914999999992 57.37943300000012) (-132.45111099999986 57.43526500000007) (-132.471924 57.4511030000001) (-132.4927669999999 57.46665999999999) (-132.50363200000004 57.474158999999986) (-132.61944599999998 57.58332800000005) (-132.75250199999994 57.70943500000004) (-132.76113899999996 57.717765999999926) (-132.76889 57.72665400000011) (-132.78222700000003 57.74527000000012) (-132.79110699999995 57.7586060000001) (-132.795837 57.76888300000007) (-132.796112 57.77387999999996) (-132.80722000000003 57.787773000000016) (-132.81362899999988 57.795547) (-132.82138099999992 57.80443600000007) (-132.87304699999999 57.855270000000075) (-132.88165299999997 57.86360900000011) (-132.92861900000003 57.90554800000001) (-132.937775 57.91332200000005) (-132.964722 57.93332700000002) (-132.99499500000002 57.95166000000006) (-133.03332499999988 57.978874000000076) (-133.043884 57.986938000000066) (-133.05306999999993 57.99471299999999) (-133.058044 57.99943500000006) (-133.070831 58.012215000000026) (-133.087494 58.03333299999997) (-133.09500100000002 58.047775000000115) (-133.104156 58.073051000000135) (-133.107208 58.08332800000011) (-133.11111500000004 58.093323000000055) (-133.13696299999998 58.13582600000012) (-133.1847229999999 58.17610200000013) (-133.19500700000003 58.184158000000025) (-133.21139499999998 58.19638100000003) (-133.233612 58.21138000000013) (-133.3061219999999 58.25721699999997) (-133.36111499999993 58.28054800000001) (-133.43029799999994 58.35999300000009) (-133.408905 58.40026899999992) (-133.38790899999998 58.4120640000001) (-133.4299929999999 58.459160000000054) (-133.55889899999994 58.528046000000074) (-133.73580900000002 58.644713999999965) (-133.80834999999996 58.709991) (-133.826935 58.72609700000004) (-134.087494 58.80832700000013) (-134.2311099999999 58.85193600000002) (-134.245544 58.85694100000006) (-134.32000699999998 58.91609999999997) (-134.325562 58.920830000000024) (-134.33221400000002 58.92971800000004) (-134.33221400000002 58.93526500000013) (-134.325562 58.971100000000035) (-134.3794249999999 59.049164000000076) (-134.38613899999996 59.05804400000011) (-134.45556599999998 59.12248999999997) (-134.46139499999992 59.126656000000025) (-134.4750059999999 59.1336060000001) (-134.53222700000003 59.13221000000004) (-134.56640599999997 59.13054700000009) (-134.65084799999994 59.185546999999985) (-134.67166099999997 59.2002720000001) (-134.675293 59.21471400000007) (-134.68804899999992 59.24332400000009) (-134.7388919999999 59.250275000000045) (-134.95193499999993 59.27999100000011) (-135.09167499999995 59.426941) (-135.07971199999992 59.4447100000001) (-135.06332399999997 59.45804600000008) (-135.03973399999995 59.46693400000004) (-135.030579 59.46804800000001) (-135.02111799999994 59.47109999999992) (-135.017792 59.49887800000005) (-135.015015 59.54055000000011) (-135.01446499999997 59.567497) (-135.09722899999997 59.621376000000055) (-135.12027 59.62165800000014) (-135.13275099999998 59.62276500000007) (-135.1541749999999 59.62721300000004) (-135.17749000000003 59.63693999999998) (-135.336121 59.72665400000005) (-135.47360199999997 59.801933000000076) (-135.50613399999997 59.79388400000005) (-135.823334 59.70555099999996) (-135.949158 59.66915899999998) (-136.07138099999997 59.6574940000001) (-136.12081899999998 59.65165699999994) (-136.16000399999996 59.646660000000054) (-136.20776399999988 59.63943499999999) (-136.31054700000004 59.61249500000014) (-136.34387200000003 59.60277600000012) (-136.3463749999999 59.600548) (-136.29834 59.58360300000004) (-136.239166 59.56137799999999) (-136.23388699999992 59.52582600000005) (-136.2930599999999 59.47609700000004) (-136.29998799999993 59.47109999999992) (-136.371643 59.45249200000006) (-136.46362299999993 59.46971100000013) (-136.46417199999996 59.414153999999996) (-136.46249399999994 59.37221500000004) (-136.46249399999994 59.30249000000009) (-136.46276899999998 59.28943600000002) (-136.48083499999996 59.261939999999925) (-136.49221799999998 59.24971800000014) (-136.55835000000002 59.18637799999999) (-136.58389299999988 59.16332199999994) (-136.61138900000003 59.164711000000125) (-136.71972699999998 59.165268000000026) (-136.80889899999994 59.165268000000026) (-136.88833599999998 59.131935) (-136.94195599999995 59.10943600000007) (-136.96972700000003 59.098328000000095) (-137.03308100000004 59.07749200000006) (-137.25167799999997 59.00610400000011) (-137.296112 58.98998999999998) (-137.31417799999997 58.98110200000002) (-137.33889799999997 58.965546000000074) (-137.392792 58.92832900000002) (-137.42028800000003 58.91415400000011) (-137.42749000000003 58.911377000000016) (-137.44500699999998 58.9074940000001) (-137.46554600000002 58.90609699999993) (-137.47805800000003 58.90721100000013) (-137.48803699999996 58.90915699999999) (-137.49581899999998 58.91193400000009) (-137.5016779999999 58.916382000000056) (-137.50500499999993 58.92027300000012) (-137.50750700000003 58.925552000000096) (-137.50723299999999 58.93776700000001) (-137.50527999999997 58.94415300000014) (-137.49722299999996 58.96415700000006) (-137.48776199999992 58.98249099999998) (-137.47970599999996 58.998046999999985) (-137.49914599999994 59.04138200000011) (-137.54528799999997 59.14305100000013) (-137.566101 59.18693500000006) (-137.59082 59.238602000000014) (-137.910278 59.40804300000008) (-138.11776699999996 59.51666300000005) (-138.30361900000003 59.61305200000004) (-138.49108899999993 59.70832800000005) (-138.5386049999999 59.73220800000007) (-138.615814 59.77416199999999) (-138.647247 59.80555000000004) (-138.65472399999993 59.81471300000004) (-138.66363499999989 59.82916299999994) (-138.66610699999995 59.83443500000004) (-138.66915900000004 59.8449940000001) (-138.67501799999997 59.86693600000001) (-138.69027700000004 59.90693699999997) (-138.97192399999994 59.978600000000085) (-139.04779099999996 59.99749000000003) (-139.116394 60.04138200000011) (-139.161407 60.07027400000004) (-139.18890399999987 60.08888200000007) (-139.183899 60.102219000000105) (-139.15527299999997 60.15499100000005) (-139.13363600000002 60.19443500000011) (-139.12527499999993 60.20777100000009) (-139.08221399999996 60.28749800000003) (-139.06500199999988 60.33027600000008) (-139.06640600000003 60.344153999999946) (-139.06805399999996 60.35221900000005) (-139.51947 60.34471100000002) (-139.67666599999995 60.34054600000002) (-139.77166699999992 60.29249600000003) (-139.866394 60.24443800000006) (-139.91305499999987 60.220824999999934) (-139.97943099999998 60.18776700000012) (-140.005585 60.19387800000004) (-140.45083599999992 60.3097150000001) (-140.471924 60.283882000000006) (-140.493042 60.25777400000004) (-140.50195299999996 60.244713000000104) (-140.52139299999993 60.22221400000012) (-140.94638099999997 60.297775) (-140.995544 60.30721300000005) (-141.00058 60.36666100000002) (-141.001129 60.39943699999998) (-141.00030500000003 60.933051999999975) (-141.0016779999999 60.966384999999946) (-141.00030500000003 62.73304699999994) (-141.00140399999998 63.09999800000014) (-141.00195299999996 63.83277099999998) (-141.00030500000003 63.96638500000006) (-141.00030500000003 64.19970699999999) (-141.00195299999996 65.1327510000001) (-141.00030500000003 65.16609200000005) (-141.00030500000003 65.23275800000005) (-141.00195299999996 65.69941699999998) (-141.00195299999996 66.099426) (-141.0016779999999 66.49941999999999) (-141.00085399999995 66.66638200000011) (-141.00058 66.8660890000001) (-141.0016779999999 67.0663760000001) (-141.00222799999995 67.29914900000006) (-141.00058 67.53248600000012) (-141 67.7327580000001) (-141.00195299999996 67.86581400000006) (-141.00195299999996 68.06581100000005) (-141.00195299999996 68.23275799999999) (-141.0016779999999 68.53276100000011) (-141.00085399999995 68.96554600000002) (-141.00058 69.43247999999994) (-141.00085399999995 69.53221100000002) (-141.002991 69.6423650000001) (-140.982208 69.64276100000001) (-140.90945399999998 69.63916000000012) (-140.83306900000002 69.63526900000005) (-140.81610099999995 69.6336060000001) (-140.79528799999997 69.62719700000008) (-140.77002 69.62164300000006) (-140.738312 69.617752) (-140.61554 69.60832199999993) (-140.488312 69.599426) (-140.39611799999994 69.59609999999998) (-140.26141399999995 69.59664900000013) (-140.21887200000003 69.60081500000001) (-140.17944299999988 69.60636900000003) (-140.12914999999998 69.61499000000009) (-140.10055499999999 69.61747700000001) (-140.084717 69.618042) (-139.94387800000004 69.61886599999997) (-139.9263919999999 69.61859099999998) (-139.88833599999998 69.61665300000004) (-139.81054699999999 69.60664400000002) (-139.78112799999997 69.60220300000009) (-139.605255 69.57554600000003) (-139.57611099999986 69.570831) (-139.67001299999998 69.579163) (-139.68472299999996 69.58137500000004) (-139.77639799999997 69.599716) (-139.7647399999999 69.59082000000006) (-139.75668299999995 69.58665500000006) (-139.73165899999998 69.58109999999999) (-139.60665899999992 69.559418) (-139.573059 69.55609100000004) (-139.5350039999999 69.55386399999998) (-139.351654 69.53637700000013) (-139.14306599999998 69.51081799999992) (-139.116394 69.50555400000013) (-139.10833699999995 69.50166300000006) (-139.10137899999995 69.49136400000003) (-139.092224 69.48165899999998) (-139.069458 69.46331800000013) (-139.05584699999991 69.45498700000007) (-139.04806499999995 69.45082100000013) (-138.975281 69.4149930000001) (-138.957489 69.407486) (-138.93945299999996 69.39999400000005) (-138.88275099999993 69.38472000000013) (-138.83361799999994 69.37330600000007) (-138.7991639999999 69.36415099999999) (-138.769165 69.35386699999998) (-138.75140399999998 69.34637500000002) (-138.64389 69.29136700000004) (-138.621643 69.27304100000003) (-138.616394 69.268326) (-138.60720799999996 69.2586060000001) (-138.60498 69.24748200000005) (-138.44998199999992 69.22915600000005) (-138.269165 69.19636500000007) (-138.25390599999997 69.188309) (-138.21887200000003 69.17330900000007) (-138.17721599999993 69.15998800000011) (-138.14334099999996 69.15081800000007) (-138.06332399999997 69.12942499999997) (-138.03945899999997 69.12359600000013) (-138.00112899999993 69.11526500000002) (-137.69638099999992 69.049713) (-137.594452 69.02777100000014) (-137.41915900000004 68.988876) (-137.25500499999998 68.94831800000009) (-137.22610499999996 68.94497700000005) (-137.19222999999994 68.94386300000008) (-137.13027999999986 68.94497700000005) (-136.9786069999999 68.93193100000013) (-136.97332799999998 68.92720000000003) (-136.966095 68.92330900000013) (-136.95416299999994 68.9202580000001) (-136.78973399999995 68.88192700000008) (-136.74554399999994 68.87525900000009) (-136.68249499999996 68.87191800000005) (-136.65972899999997 68.87498499999998) (-136.64279199999993 68.87803600000001) (-136.63751199999996 68.88415500000002) (-136.630829 68.88916000000006) (-136.61999500000002 68.89193699999998) (-136.522247 68.90914900000001) (-136.50836199999998 68.91026299999999) (-136.47747800000002 68.91081200000013) (-136.42059299999994 68.9015500000001) (-136.39306599999992 68.89721700000007) (-136.358612 68.89387499999992) (-136.255859 68.8894350000001) (-136.14502 68.88581799999997) (-136.0972289999999 68.88220200000012) (-136.0278019999999 68.87303200000002) (-135.98666399999996 68.86499000000009) (-135.85879499999993 68.83897400000006) (-135.831665 68.83194000000003) (-135.54055799999992 68.75248699999997) (-135.519745 68.74581900000004) (-135.49194299999988 68.73525999999998) (-135.484985 68.7310940000001) (-135.45388799999995 68.70942700000006) (-135.40695199999993 68.67997700000012) (-135.36554 68.67581200000012) (-135.21054099999998 68.66137700000002) (-135.1600039999999 68.65721100000013) (-135.14752199999998 68.65887499999997) (-135.14639299999993 68.66387900000012) (-135.21444699999995 68.693039) (-135.25363200000004 68.70694000000015) (-135.34359699999993 68.73776200000003) (-135.48193400000002 68.80941800000011) (-135.50613399999997 68.83248899999995) (-135.500854 68.838593) (-135.48666399999996 68.83943199999999) (-135.45306399999998 68.83804299999997) (-135.4391779999999 68.83554100000009) (-135.40499899999998 68.83194000000003) (-135.341949 68.83166499999999) (-135.33804299999997 68.83499100000006) (-135.34973099999996 68.83804299999997) (-135.42166099999997 68.84887700000002) (-135.49472000000003 68.85497999999995) (-135.52835099999993 68.85636899999997) (-135.56054700000004 68.86026000000004) (-135.595276 68.86943100000002) (-135.60443099999998 68.87303200000002) (-135.61886599999997 68.88136299999996) (-135.62359600000002 68.88610799999998) (-135.6138919999999 68.8894350000001) (-135.33581499999997 68.91775500000011) (-135.241669 68.9269260000001) (-135.22720299999997 68.92553700000008) (-135.21554600000002 68.922485) (-135.20861799999994 68.91832) (-135.1966549999999 68.90971400000006) (-135.19168100000002 68.90498400000001) (-135.18695100000002 68.90026899999998) (-135.121918 68.893326) (-134.97747799999996 68.87831100000005) (-134.95111099999997 68.88108799999992) (-134.91723599999995 68.89804100000003) (-134.89474499999994 68.91249099999993) (-134.87777700000004 68.92082200000004) (-134.85803199999998 68.92776500000002) (-134.845551 68.92942800000014) (-134.81723 68.92581200000006) (-134.80334499999998 68.92303500000003) (-134.74581899999998 68.90748600000006) (-134.708893 68.89276100000012) (-134.6694639999999 68.87330599999996) (-134.64169299999992 68.85664400000002) (-134.49554399999994 68.75221300000004)) ((-93.51972999999992 63.8394320000001) (-93.33999599999999 63.80832700000002) (-93.32972699999993 63.8097150000001) (-93.21749899999998 63.838599999999985) (-93.21611000000001 63.843605000000025) (-93.22500600000001 63.84777100000014) (-93.23638900000003 63.84748799999994) (-93.26750199999992 63.84276600000004) (-93.27888499999995 63.84249100000005) (-93.29167199999995 63.84499400000004) (-93.33389299999993 63.85916099999997) (-93.34333800000002 63.86305200000004) (-93.35749800000002 63.87137600000011) (-93.44193999999993 63.921660999999915) (-93.44888300000002 63.92582700000003) (-93.44972199999995 63.93082400000009) (-93.45249899999999 63.95443700000004) (-93.45111099999997 63.959717000000126) (-93.443329 63.96554600000013) (-93.43388400000003 63.96859699999999) (-93.42361499999993 63.970825000000104) (-93.41305499999999 63.97193099999993) (-93.38999899999993 63.97165699999999) (-93.36471599999993 63.96749100000011) (-93.27305599999994 63.92804700000005) (-93.12222300000002 63.892494) (-92.96028100000001 63.85582699999998) (-92.84167500000001 63.83526599999999) (-92.65194699999995 63.78749800000003) (-92.54972800000002 63.81082200000003) (-92.54055800000003 63.8147130000001) (-92.53056300000003 63.81693999999999) (-92.50750699999998 63.81638300000009) (-92.58389299999999 63.829436999999984) (-92.60694899999987 63.82972000000012) (-92.61915599999992 63.83138300000007) (-92.66915899999998 63.839989) (-92.70695499999994 63.84665699999994) (-92.93554699999999 63.904990999999995) (-92.94248999999996 63.90915700000005) (-92.95611600000001 63.932770000000005) (-92.96528599999999 63.93665299999992) (-93.218887 63.979431000000034) (-93.26611300000002 63.981934000000024) (-93.27639799999997 63.97971300000006) (-93.28805499999999 63.980545000000006) (-93.30110200000001 63.983047000000056) (-93.43666100000002 64.01527400000003) (-93.612213 64.09304800000007) (-93.62721299999998 64.10636900000003) (-93.63500999999991 64.11526500000014) (-93.63583399999999 64.12025500000004) (-93.68998699999992 64.15609699999999) (-93.75167799999991 64.18887300000006) (-93.76112399999988 64.19274899999999) (-93.773056 64.19358799999992) (-93.77972399999999 64.18969700000002) (-93.776947 64.18498199999999) (-93.66500899999994 64.08720400000004) (-93.66000400000001 64.08305400000006) (-93.604172 64.04443400000014) (-93.65472399999993 63.992493000000024) (-93.731674 63.987213) (-93.75917099999992 63.98416100000003) (-93.77055399999995 63.95777100000004) (-93.654449 63.89666000000011) (-93.59973100000002 63.87027000000006) (-93.55360399999995 63.850548) (-93.53332499999999 63.84276600000004) (-93.51972999999992 63.8394320000001)) ((-70.78306599999996 48.38054700000009) (-70.78250100000002 48.34804500000013) (-70.76806599999992 48.35054800000006) (-70.54804999999999 48.35638399999999) (-70.49888599999991 48.353324999999984) (-70.46417200000002 48.3491590000001) (-70.38305700000001 48.331108000000086) (-70.33222999999998 48.31666600000011) (-70.27278099999995 48.298332000000016) (-70.23777799999999 48.282493999999986) (-70.21000700000002 48.26971400000002) (-70.19860799999998 48.26249700000011) (-70.06138599999997 48.23998999999998) (-70.04083300000002 48.244437999999946) (-70.02583300000003 48.24610100000007) (-70.01750199999987 48.24527000000006) (-69.995544 48.23998999999998) (-69.936935 48.22193100000004) (-69.92054699999989 48.216385) (-69.82833900000003 48.166382000000056) (-69.83833300000003 48.173881999999935) (-69.84722899999997 48.181938) (-69.86193800000001 48.198875000000044) (-69.87193300000001 48.212493999999936) (-69.87943999999993 48.22082500000005) (-69.88417099999998 48.22415900000004) (-69.95944199999991 48.26944000000009) (-69.97721899999999 48.27443699999998) (-69.98554999999999 48.27499400000005) (-69.99333200000001 48.27471200000002) (-70.04361 48.267211999999915) (-70.09999099999999 48.267211999999915) (-70.13194299999998 48.26971400000002) (-70.15110800000002 48.27443699999998) (-70.16777000000002 48.279990999999995) (-70.27250700000002 48.325554000000125) (-70.42027300000001 48.36138199999999) (-70.42777999999998 48.36110700000012) (-70.63500999999997 48.39054900000008) (-70.72778299999987 48.4158250000001) (-70.73916599999995 48.42304999999999) (-70.75195299999996 48.42849300000006) (-70.76139799999993 48.431938) (-70.77999899999998 48.435546999999985) (-70.95472699999999 48.45971700000001) (-70.98055999999991 48.46221200000002) (-71.01222199999995 48.46166199999999) (-71.02528399999989 48.45749699999999) (-71.04861499999993 48.44526700000006) (-71.04777499999989 48.44443499999994) (-71.031387 48.44332099999997) (-70.90638699999994 48.423325000000034) (-70.79998799999998 48.40165700000006) (-70.78555299999988 48.39582800000005) (-70.78138699999988 48.391936999999984) (-70.779449 48.386940000000095) (-70.78306599999996 48.38054700000009)) ((-108.13890100000003 71.98165899999998) (-108.15583799999996 71.98082000000005) (-108.17415599999998 71.9833220000001) (-108.18721 71.98664900000006) (-108.18916300000001 71.99192800000003) (-108.19972199999995 72.05053700000008) (-108.19027699999998 72.05554200000012) (-108.1702729999999 72.06442300000003) (-108.16027799999995 72.06275900000003) (-108.13417099999992 72.0560910000001) (-108.07444799999996 72.03414900000001) (-108.06416299999995 72.03027299999997) (-108.06221 72.02526899999998) (-108.06304899999998 72.01944000000015) (-108.069458 72.01304600000009) (-108.07721700000002 72.00721700000008) (-108.10526999999996 71.992752) (-108.12526700000001 71.98387100000002) (-108.13890100000003 71.98165899999998)) ((-85.84722899999997 72.29414400000007) (-85.83721899999995 72.28887900000001) (-85.83721899999995 72.26277199999993) (-85.85166900000002 72.24136400000003) (-85.87748699999992 72.22164900000001) (-85.88917500000002 72.21804799999995) (-85.90834000000001 72.21775800000012) (-85.98111 72.23637399999996) (-86.00584400000002 72.2435910000001) (-86.06111099999998 72.26165800000012) (-86.09638999999999 72.27638200000001) (-86.10722399999992 72.28387500000002) (-86.11000100000001 72.28970300000015) (-86.10139500000002 72.29359400000004) (-86.09333800000002 72.29470800000001) (-86.06723 72.29386900000003) (-86.00500499999998 72.29664600000012) (-85.86389199999996 72.297211) (-85.84722899999997 72.29414400000007)) ((-78.73500099999995 72.36554000000012) (-78.75389100000001 72.36331200000001) (-78.81220999999988 72.36526500000008) (-78.83084099999996 72.36499000000009) (-78.854172 72.36219799999998) (-78.874435 72.35887100000008) (-78.88945000000001 72.35470600000008) (-78.91332999999986 72.3455350000001) (-78.92083699999995 72.3413700000001) (-78.93499799999995 72.33638000000008) (-78.95028699999995 72.33499100000006) (-79.05305499999997 72.36080900000002) (-79.07556199999993 72.40304600000007) (-79.07501200000002 72.40971400000006) (-79.07084700000001 72.41499300000004) (-79.066666 72.4202580000001) (-79.04444899999993 72.42665100000005) (-79.00140399999998 72.43830900000012) (-78.97084000000001 72.44525099999998) (-78.95556599999992 72.44442700000002) (-78.95056199999999 72.44219999999996) (-78.94665500000002 72.44026200000002) (-78.93998699999992 72.43580600000013) (-78.84695399999993 72.41554300000007) (-78.83389299999999 72.41192600000011) (-78.74082900000002 72.37441999999999) (-78.73167399999994 72.36943100000002) (-78.73500099999995 72.36554000000012)) ((-79.50805699999995 72.34860200000003) (-79.53388999999999 72.34609999999998) (-79.55583200000001 72.34693900000008) (-79.57223499999998 72.34915200000006) (-79.581955 72.35165399999994) (-79.59445199999999 72.35693400000002) (-79.60943600000002 72.36692800000003) (-79.6241609999999 72.37942500000003) (-79.68331899999998 72.43054200000012) (-79.58612099999999 72.45387299999999) (-79.57667500000002 72.45610000000005) (-79.55248999999992 72.45109600000012) (-79.541382 72.44497700000005) (-79.52917499999995 72.43969700000002) (-79.50279199999989 72.42997700000012) (-79.46945199999999 72.42303500000003) (-79.43638599999997 72.41832) (-79.42971799999998 72.411652) (-79.44055200000003 72.37052900000009) (-79.44665499999991 72.36499000000009) (-79.45556599999992 72.35998500000005) (-79.47027599999996 72.355545) (-79.50805699999995 72.34860200000003)) ((-79.993607 72.41331500000013) (-80.00944500000003 72.41053800000003) (-80.02223200000003 72.41360500000013) (-80.124435 72.50665300000003) (-80.13055400000002 72.51249700000005) (-80.13333099999994 72.51944000000003) (-80.1299899999999 72.52304100000009) (-80.11999499999996 72.52693199999999) (-80.11250299999995 72.52693199999999) (-80.06361399999997 72.52388000000008) (-80.0369419999999 72.51638800000012) (-79.92193600000002 72.46331800000007) (-79.91639700000002 72.45803799999999) (-79.926941 72.44775400000015) (-79.93916299999995 72.436646) (-79.956955 72.42608600000005) (-79.97888199999989 72.41775500000011) (-79.993607 72.41331500000013)) ((-110.46916199999993 72.56915299999997) (-110.48137699999995 72.56581100000005) (-110.54415899999998 72.56915299999997) (-110.57195300000001 72.57554600000014) (-110.58833299999998 72.58387800000014) (-110.593887 72.58859299999995) (-110.593887 72.59414700000013) (-110.576683 72.59498600000012) (-110.53888699999993 72.59498600000012) (-110.516663 72.593323) (-110.50446299999999 72.59082000000001) (-110.48249799999991 72.5836030000001) (-110.47444200000001 72.57943700000004) (-110.46888699999994 72.57470699999999) (-110.46916199999993 72.56915299999997)) ((-110.35582699999998 72.6019290000001) (-110.37304699999993 72.60137900000007) (-110.39499699999993 72.60304300000007) (-110.4641719999999 72.61331200000012) (-110.49472000000003 72.61914100000013) (-110.46916199999993 72.62136800000002) (-110.450287 72.62136800000002) (-110.39862099999993 72.61804199999995) (-110.35888699999992 72.61499000000003) (-110.34500100000002 72.6119230000001) (-110.34500100000002 72.6060940000001) (-110.35582699999998 72.6019290000001)) ((-108.510559 72.60276800000008) (-108.51999699999993 72.59803800000003) (-108.53778099999994 72.59942600000011) (-108.593613 72.61775200000011) (-108.604446 72.621643) (-108.61221299999994 72.62580900000012) (-108.6141659999999 72.63108800000009) (-108.61361699999986 72.63665799999995) (-108.60388199999994 72.63943500000005) (-108.51722699999999 72.64248700000002) (-108.49665800000002 72.64137299999999) (-108.49194299999999 72.63665799999995) (-108.49416400000001 72.63192700000002) (-108.510559 72.60276800000008)) ((-110.30722000000003 72.63081399999999) (-110.36389199999996 72.63081399999999) (-110.39695699999993 72.63638300000014) (-110.41082799999998 72.63943500000005) (-110.40028399999994 72.64360000000005) (-110.36000100000001 72.64888000000013) (-110.31500199999999 72.65193200000004) (-110.28083799999996 72.64221199999997) (-110.281113 72.63638300000014) (-110.28999299999992 72.63165300000009) (-110.30722000000003 72.63081399999999)) ((-109.215012 72.79026800000008) (-109.22749299999992 72.78720099999998) (-109.24833699999999 72.78804000000014) (-109.37277199999994 72.8060910000001) (-109.41694599999988 72.81526200000008) (-109.41944899999993 72.82054100000005) (-109.37832600000002 72.828598) (-109.33389299999999 72.83499099999995) (-109.32028200000002 72.8316650000001) (-109.31220999999994 72.82748400000003) (-109.22444200000001 72.81109600000013) (-109.21056399999998 72.8077550000001) (-109.21166999999997 72.79637100000002) (-109.215012 72.79026800000008)) ((-95.73500099999995 72.79887400000001) (-95.75361599999991 72.79609700000009) (-95.77139299999993 72.799149) (-95.835556 72.83110000000005) (-95.854172 72.85359199999999) (-95.85082999999997 72.85832199999999) (-95.81054699999993 72.87664799999999) (-95.79110699999995 72.88026400000007) (-95.77417000000003 72.88026400000007) (-95.76916499999999 72.87803600000012) (-95.76306199999988 72.8724820000001) (-95.735275 72.85998500000011) (-95.72055099999994 72.84803799999997) (-95.716949 72.84387200000009) (-95.7141719999999 72.83859300000012) (-95.71362299999987 72.83221400000008) (-95.71888699999994 72.80941800000005) (-95.72500599999995 72.803314) (-95.73500099999995 72.79887400000001)) ((-96.75418100000002 72.72137499999997) (-96.77027899999996 72.71971099999996) (-96.95527599999997 72.73414600000007) (-96.96945199999999 72.73776199999998) (-96.97778299999999 72.74525499999999) (-97.01112399999994 72.77581800000013) (-97.0102839999999 72.77665700000011) (-96.92138699999998 72.83581500000008) (-96.91111799999993 72.841095) (-96.79861499999998 72.88136300000002) (-96.75723299999993 72.89276100000006) (-96.737213 72.89526400000005) (-96.72555499999999 72.89498900000001) (-96.71333299999992 72.89332600000006) (-96.68832399999997 72.883331) (-96.69221500000003 72.86276200000003) (-96.666946 72.81109600000013) (-96.65167200000002 72.80415299999999) (-96.64250199999998 72.79776000000004) (-96.63999899999999 72.79165599999999) (-96.63999899999999 72.786652) (-96.641388 72.78221100000007) (-96.72805800000003 72.73054500000006) (-96.741379 72.72553999999997) (-96.75418100000002 72.72137499999997)) ((-95.756958 72.89248700000013) (-95.77749599999999 72.8919370000001) (-95.79527299999995 72.89498900000001) (-95.808334 72.90721099999996) (-95.82472199999995 72.96527100000009) (-95.78666699999997 73.01249699999994) (-95.76167299999997 73.00471499999998) (-95.75723299999993 73.00166300000006) (-95.75611899999996 72.99859600000013) (-95.743607 72.98776200000009) (-95.70249899999999 72.93359399999997) (-95.70834399999995 72.91720600000008) (-95.73554999999999 72.90054300000003) (-95.74444599999993 72.895828) (-95.756958 72.89248700000013)) ((-95.73388699999998 73.12886000000003) (-95.71806299999997 73.11804200000006) (-95.71583599999991 73.11192299999999) (-95.71556099999998 73.10554500000006) (-95.71777299999997 73.10026600000009) (-95.72639500000002 73.08888199999996) (-95.72917199999995 73.07110599999999) (-95.72471599999994 73.05914299999995) (-95.7283329999999 73.05442800000014) (-95.74554399999994 73.04942300000005) (-95.775284 73.05525200000011) (-95.787216 73.06192000000004) (-95.79943799999995 73.07276900000011) (-95.82250999999997 73.08305400000006) (-95.85972600000002 73.09082000000012) (-95.89334100000002 73.09582499999999) (-95.89306599999998 73.10081500000001) (-95.89111299999996 73.10108900000012) (-95.88500999999991 73.10470600000008) (-95.88194299999998 73.10859700000015) (-95.87471 73.11415099999999) (-95.86527999999993 73.11998) (-95.86305199999998 73.12525900000014) (-95.86527999999993 73.13136300000002) (-95.86833200000001 73.13638300000002) (-95.86888099999999 73.14054899999996) (-95.85499599999997 73.14054899999996) (-95.84083599999997 73.13665800000007) (-95.828888 73.129974) (-95.82250999999997 73.12469500000003) (-95.81834399999997 73.12553399999996) (-95.81416300000001 73.13108799999998) (-95.80749500000002 73.1355440000001) (-95.79083300000002 73.13943499999999) (-95.77639799999992 73.14054899999996) (-95.76333599999998 73.1397090000001) (-95.74499499999996 73.13665800000007) (-95.73889200000002 73.13388099999997) (-95.73388699999998 73.12886000000003)) ((-96.80833399999995 72.92637600000012) (-96.91528299999993 72.91775500000006) (-96.95527599999997 72.92053199999992) (-96.96833800000002 72.92387400000007) (-96.99055499999997 72.93109099999998) (-97.01777600000003 72.94053600000007) (-97.03222700000003 72.94664000000006) (-97.06138599999991 72.96331800000013) (-97.089722 72.98165899999998) (-97.10583499999996 72.99832200000003) (-97.11193800000001 73.00471499999998) (-97.13694799999996 73.04582200000004) (-97.13972499999988 73.05192600000004) (-97.141953 73.06414800000005) (-97.14277599999997 73.0752720000001) (-97.14111299999996 73.08554100000015) (-97.12777699999992 73.09582499999999) (-97.06973299999999 73.136932) (-97.05943299999996 73.14221200000003) (-97.045547 73.14749100000006) (-97.00334199999998 73.15971400000006) (-96.94694499999997 73.172485) (-96.904449 73.17997700000012) (-96.848053 73.18748499999998) (-96.80943300000001 73.1891480000001) (-96.78639199999998 73.18803400000013) (-96.77194199999997 73.18165599999998) (-96.75527999999997 73.17581200000012) (-96.65306099999992 73.13638300000002) (-96.60221899999993 73.09915200000012) (-96.58084100000002 73.08110000000005) (-96.5750119999999 73.07499700000005) (-96.56861900000001 73.06219500000009) (-96.56582600000002 73.05609100000004) (-96.56471299999998 73.05053700000008) (-96.56555200000003 73.04470800000001) (-96.573624 73.03332500000005) (-96.63667299999997 72.96582000000006) (-96.64334100000002 72.96138000000002) (-96.65834000000001 72.95416300000011) (-96.69721999999996 72.94165000000004) (-96.74305700000002 72.93359399999997) (-96.76501499999995 72.93081700000005) (-96.80833399999995 72.92637600000012)) ((-96.90583799999996 73.22082500000005) (-96.924713 73.21804800000012) (-96.94499199999996 73.21832299999994) (-96.98472599999997 73.22053500000004) (-97.04083300000002 73.22859199999999) (-97.07917799999996 73.23525999999998) (-97.10694899999993 73.24220300000013) (-97.11776700000001 73.24914599999994) (-97.11527999999993 73.25305200000003) (-97.09028599999988 73.26193200000006) (-97.058044 73.26915000000008) (-97.03500400000001 73.2727660000001) (-96.97749299999998 73.27388000000008) (-96.96777299999997 73.27331500000008) (-96.96833800000002 73.26748700000013) (-96.95140099999998 73.23942600000004) (-96.90916400000003 73.23831200000006) (-96.896118 73.23776200000003) (-96.88667299999992 73.23109400000004) (-96.88917499999997 73.2249910000001) (-96.90583799999996 73.22082500000005)) ((-113.99749799999995 72.7994230000001) (-114.01112399999994 72.79664600000001) (-114.06806899999998 72.79582200000004) (-114.15167200000002 72.79803500000003) (-114.20861799999994 72.79693600000007) (-114.22416699999997 72.79498300000012) (-114.23581699999994 72.79165599999999) (-114.35138699999993 72.74748200000005) (-114.35749800000002 72.74136400000009) (-114.35637700000001 72.73580900000002) (-114.33444199999997 72.69358800000003) (-114.327789 72.688873) (-114.36582900000002 72.66276600000009) (-114.45168299999995 72.62303200000002) (-114.46501199999994 72.6202550000001) (-114.49553699999996 72.61637900000005) (-114.53138699999988 72.61499000000003) (-114.576683 72.60914600000001) (-114.58999599999993 72.60636899999992) (-114.60472099999998 72.60165400000011) (-114.55832700000002 72.56080600000001) (-114.42666600000001 72.55609099999998) (-114.38527699999986 72.555252) (-114.35138699999993 72.55747999999994) (-114.33999599999999 72.56080600000001) (-114.33029199999999 72.56526200000008) (-114.32584400000002 72.57193000000007) (-114.12805200000003 72.62608300000005) (-114.10305800000003 72.63220200000006) (-114.06276699999995 72.64027400000003) (-113.99027999999998 72.65138200000001) (-113.910278 72.65914899999996) (-113.89306599999998 72.66026299999999) (-113.88333099999988 72.65748600000006) (-113.89046499999995 72.64804800000002) (-113.89222699999999 72.64082299999995) (-113.88054699999992 72.6372070000001) (-113.858047 72.63581799999992) (-113.80666399999996 72.63916000000006) (-113.76222199999995 72.64610300000004) (-113.70834400000001 72.65693700000008) (-113.67138699999992 72.6666560000001) (-113.61277799999988 72.68386800000013) (-113.58750899999995 72.68997199999995) (-113.54666099999997 72.69802900000013) (-113.51611300000002 72.70193499999999) (-113.50611900000001 72.699142) (-113.52084400000001 72.68803400000002) (-113.55055199999987 72.67526200000003) (-113.57250999999991 72.66748000000007) (-113.61945299999996 72.653595) (-113.64277599999991 72.64665200000002) (-113.68776699999995 72.63192700000002) (-113.70944199999991 72.624146) (-113.729172 72.61554000000007) (-113.73082699999998 72.60942100000005) (-113.72193900000002 72.60554499999995) (-113.69972200000001 72.60415599999999) (-113.68443299999996 72.6060940000001) (-113.65750100000002 72.61137400000001) (-113.46639999999996 72.66526800000003) (-113.44275700000003 72.672211) (-113.436394 72.67804000000001) (-113.431671 72.684708) (-113.41000399999996 72.72943100000003) (-113.41332999999992 72.73471100000012) (-113.41972399999997 72.73915099999994) (-113.43138099999999 72.742752) (-113.44860799999992 72.74498) (-113.53527799999995 72.74887100000007) (-113.58029199999987 72.75166300000012) (-113.59750399999996 72.75416600000011) (-113.60637699999995 72.75833100000011) (-113.60804699999994 72.76943999999997) (-113.59889199999998 72.78276099999994) (-113.58249699999999 72.793045) (-113.38694800000002 72.907486) (-113.33139 72.93525700000009) (-113.30277999999998 72.94886800000006) (-113.26862299999999 72.96026600000005) (-113.14862099999999 72.99470500000007) (-113.0627669999999 73.00749200000007) (-113.02806099999998 73.00943000000001) (-113.00695799999994 73.00888100000009) (-112.823059 72.99887100000001) (-112.811394 72.9952550000001) (-112.79472399999997 72.98220800000007) (-112.78582799999998 72.978317) (-112.77139299999993 72.97526600000003) (-112.75418100000002 72.97276300000004) (-112.708618 72.96971100000013) (-112.64362299999993 72.96693400000004) (-112.60082999999986 72.96360799999997) (-112.56360599999994 72.95915200000007) (-112.51500699999991 72.951096) (-112.5 72.94792200000012) (-112.47165699999994 72.94192500000003) (-112.44583099999994 72.93525700000009) (-112.41388699999993 72.92414900000006) (-112.387787 72.91110200000003) (-112.37638900000002 72.907761) (-112.36193800000001 72.90470900000008) (-112.34472700000003 72.90220599999992) (-112.27944899999994 72.89694199999997) (-112.23777799999999 72.89553799999999) (-112.14195299999994 72.89637800000003) (-112.09834299999989 72.89415000000002) (-112.06166099999996 72.88943499999999) (-111.947769 72.87052900000015) (-111.78333299999997 72.83471700000001) (-111.67582699999997 72.81469700000002) (-111.65888999999999 72.8119200000001) (-111.59416199999998 72.80664100000013) (-111.54055799999998 72.7994230000001) (-111.52639799999997 72.79637100000002) (-111.23693799999995 72.72637900000012) (-111.22582999999997 72.7227630000001) (-111.22000100000002 72.71832300000005) (-111.20249899999999 72.67053199999998) (-111.20527599999997 72.66442900000004) (-111.26278699999995 72.57916300000011) (-111.2769469999999 72.56749000000008) (-111.45221699999996 72.47776800000003) (-111.52778599999999 72.44999700000011) (-111.65110800000002 72.40887500000008) (-111.675003 72.40220600000004) (-111.736107 72.39526400000011) (-111.76999699999993 72.3936000000001) (-111.78527799999995 72.39193699999998) (-111.81221 72.38665800000001) (-111.859734 72.37330600000001) (-111.890289 72.36053500000008) (-111.89890299999996 72.355545) (-111.90556299999997 72.349716) (-111.90167200000002 72.34609999999998) (-111.86250299999995 72.33055100000007) (-111.85138699999999 72.32693499999999) (-111.66388699999999 72.27638200000001) (-111.50446299999999 72.31192000000004) (-111.44499200000001 72.3288730000001) (-111.42443799999995 72.33720400000004) (-111.41915899999998 72.34387199999998) (-111.43305999999995 72.34693900000008) (-111.45140100000003 72.34693900000008) (-111.487213 72.33665500000006) (-111.51944700000001 72.33415200000007) (-111.5616609999999 72.33665500000006) (-111.578056 72.33915699999994) (-111.58917200000002 72.342758) (-111.60582699999998 72.35081500000001) (-111.61165599999998 72.36109900000002) (-111.609444 72.36720300000007) (-111.58833299999998 72.37637300000011) (-111.37444299999993 72.44664) (-111.350281 72.45332299999995) (-111.3094329999999 72.46081500000008) (-111.29387700000001 72.46276899999992) (-111.26583899999997 72.46554600000002) (-111.248894 72.466385) (-111.22860699999995 72.46554600000002) (-111.20249899999999 72.46026599999999) (-111.21333300000003 72.44693000000001) (-111.23277299999995 72.4369200000001) (-111.24500299999994 72.43359400000008) (-111.27223200000003 72.42858899999999) (-111.30139200000002 72.40416000000005) (-111.27749599999993 72.36997999999994) (-111.11277799999993 72.3352660000001) (-111.09528399999994 72.37970000000001) (-111.09137699999997 72.4019320000001) (-111.00446299999999 72.46527100000003) (-110.8691639999999 72.47331200000008) (-110.82444799999996 72.4791560000001) (-110.80304699999999 72.48525999999993) (-110.82501200000002 72.50387599999993) (-110.833328 72.51915000000002) (-110.827789 72.52581800000002) (-110.73805199999993 72.56553600000001) (-110.72749299999998 72.56971699999991) (-110.71528599999999 72.57304400000004) (-110.70140100000003 72.57554600000014) (-110.68083199999995 72.57470699999999) (-110.66610700000001 72.57304400000004) (-110.53527799999995 72.54664600000007) (-110.52639799999992 72.52693199999999) (-110.57501199999996 72.51388500000013) (-110.59445199999993 72.50471500000009) (-110.60166899999996 72.49887100000007) (-110.60193600000002 72.4933170000001) (-110.59361299999989 72.48915099999999) (-110.55249000000003 72.47387700000013) (-110.53083800000002 72.46665999999999) (-110.35056299999997 72.42804000000007) (-110.32861299999996 72.42608600000005) (-110.30999799999995 72.42608600000005) (-110.303879 72.43054200000012) (-110.31194299999993 72.43470800000006) (-110.41027799999995 72.4622040000001) (-110.50334199999998 72.48498500000011) (-110.514183 72.488586) (-110.52250700000002 72.49275200000005) (-110.52778599999999 72.4974820000001) (-110.53056299999992 72.50248699999997) (-110.52333099999998 72.508331) (-110.39639299999999 72.55220000000008) (-110.38417099999998 72.555542) (-110.36527999999998 72.555542) (-110.34333800000002 72.55386400000009) (-110.32389799999993 72.55165099999994) (-110.31304899999998 72.54776000000004) (-110.22028399999994 72.51388500000013) (-110.20140100000003 72.50582900000006) (-110.15527299999997 72.48027000000008) (-110.06139399999995 72.43748499999992) (-110.05055199999993 72.43386800000002) (-110.03999299999998 72.43803400000007) (-110.02194199999991 72.44775400000015) (-109.998894 72.45526100000012) (-109.97112300000003 72.46026599999999) (-109.95249899999999 72.45999100000012) (-109.91972399999986 72.45471199999997) (-109.81388900000002 72.428314) (-109.79666099999992 72.4269260000001) (-109.78278399999999 72.42942800000014) (-109.77806099999998 72.43470800000006) (-109.78582799999992 72.43887300000006) (-109.80583199999995 72.44552600000003) (-109.83029199999999 72.45220899999998) (-110.04250300000001 72.50471500000009) (-110.223053 72.5458220000001) (-110.23665599999998 72.54887400000007) (-110.24777199999994 72.55276500000014) (-110.25583599999987 72.55693100000002) (-110.252792 72.56303400000013) (-110.24221799999992 72.56694000000005) (-110.22165699999994 72.56608600000004) (-110.12082699999996 72.56025700000004) (-110.104172 72.55775499999999) (-110.09056099999998 72.55442800000003) (-110.06889299999995 72.54693600000007) (-110.03888699999987 72.53553800000009) (-110.02278099999995 72.52720600000009) (-110.00361599999991 72.51944000000003) (-109.97112300000003 72.508331) (-109.90499899999998 72.48719800000009) (-109.88861099999986 72.484711) (-109.80943300000001 72.4916530000001) (-109.79527300000001 72.49414100000007) (-109.78472899999997 72.49832200000014) (-109.78278399999999 72.50305199999997) (-109.94275700000003 72.60415599999999) (-109.95889299999993 72.61276200000009) (-110.09306300000003 72.65637200000009) (-110.11332699999997 72.65721100000002) (-110.171112 72.64833099999998) (-110.18666100000002 72.64665200000002) (-110.22112299999998 72.64526400000005) (-110.241669 72.64610300000004) (-110.25556899999998 72.64942900000005) (-110.266663 72.65304600000002) (-110.283073 72.66137700000013) (-110.28832999999992 72.66609199999999) (-110.29110700000001 72.67109700000003) (-110.20973200000003 72.71775800000006) (-110.20056199999999 72.7227630000001) (-110.18831599999999 72.72608900000012) (-110.17083699999995 72.72692899999998) (-110.078079 72.72706599999998) (-110.041672 72.72248800000006) (-110.03056300000003 72.71859699999999) (-109.99804699999999 72.70193499999999) (-109.98693800000001 72.69831800000003) (-109.85221899999993 72.66581700000012) (-109.83277899999996 72.66331500000007) (-109.81723 72.66499299999998) (-109.77084399999995 72.71638500000012) (-109.77027900000002 72.72221400000012) (-109.78138699999994 72.72581500000001) (-109.80082700000003 72.72804300000013) (-109.81973299999993 72.72804300000013) (-110.03111299999995 72.74775700000004) (-110.17887899999994 72.76914999999997) (-110.17138699999998 72.77499399999999) (-110.16832699999986 72.7810970000001) (-110.17083699999995 72.78610199999997) (-110.17639199999996 72.790817) (-110.21166999999997 72.81832899999995) (-110.24526999999995 72.82360799999998) (-110.32640099999992 72.82638500000002) (-110.36638599999998 72.82720899999998) (-110.47666899999996 72.83499099999995) (-110.493607 72.83776899999998) (-110.53555299999994 72.84721400000001) (-110.54666099999997 72.85081500000007) (-110.56331599999999 72.85914599999995) (-110.74276699999996 72.95721400000014) (-110.75389099999995 72.96638500000006) (-110.75666799999993 72.97137499999997) (-110.75389099999995 72.97776800000008) (-110.74804699999993 72.98442100000005) (-110.74082900000002 72.98997500000007) (-110.73166700000002 72.99498000000011) (-110.70834400000001 73.00248700000003) (-110.69415300000003 73.00499000000002) (-110.6783289999999 73.00665300000014) (-110.61860699999994 73.01138300000014) (-110.51139799999993 73.01527400000003) (-110.432503 73.0144350000001) (-110.39083899999997 73.01249699999994) (-110.16610700000001 72.99609400000008) (-110.05110199999996 72.98471100000006) (-109.91887700000001 72.96804800000001) (-109.65943899999996 72.92498800000004) (-109.63445299999995 72.91804500000006) (-109.61805700000002 72.90942400000012) (-109.618607 72.90386999999993) (-109.62943999999993 72.89971900000006) (-109.66111799999999 72.89665200000013) (-109.69471699999997 72.89444000000009) (-109.724716 72.89054900000002) (-109.73889200000002 72.88804600000003) (-109.75 72.88388100000003) (-109.75472999999994 72.87858599999998) (-109.74665799999997 72.87442000000004) (-109.65862300000003 72.84471100000002) (-109.379707 72.7705380000001) (-109.22778299999993 72.76165800000007) (-109.05110200000001 72.68026700000007) (-109.02999899999998 72.64721700000001) (-109.04915599999993 72.60415599999999) (-109.045547 72.57249500000012) (-109.04332699999998 72.56749000000008) (-109.02861000000001 72.56553600000001) (-108.88249200000001 72.56442300000015) (-108.86527999999998 72.56498700000009) (-108.85109699999998 72.56749000000008) (-108.84194899999994 72.57249500000012) (-108.81916799999993 72.59109500000005) (-108.722778 72.58276399999994) (-108.70361300000002 72.58027600000014) (-108.67666600000001 72.57388300000002) (-108.64472999999987 72.56248500000004) (-108.62138399999998 72.54998800000004) (-108.61638599999998 72.54525799999999) (-108.58805799999993 72.50555400000007) (-108.589447 72.49443100000008) (-108.59638999999993 72.48220800000001) (-108.60278299999999 72.47554000000002) (-108.61054999999993 72.46998600000006) (-108.62470999999994 72.45748900000007) (-108.63722200000001 72.44442700000002) (-108.64499699999993 72.42665100000005) (-108.65055799999999 72.40359500000005) (-108.66361999999998 72.36276199999998) (-108.66278099999994 72.34637499999997) (-108.65834000000001 72.33610500000003) (-108.52416999999997 72.19970699999999) (-108.45500199999998 72.15721100000013) (-108.44415300000003 72.16110200000003) (-108.42832900000002 72.1583250000001) (-108.41805999999997 72.15443400000004) (-108.404449 72.14694199999991) (-108.40222199999994 72.14166300000011) (-108.39890300000002 72.11360200000007) (-108.39472999999998 72.04275500000011) (-108.39527900000002 72.03692600000011) (-108.396118 72.03137200000009) (-108.31639099999995 71.98414600000007) (-108.20417799999996 71.96388200000013) (-108.19138299999992 71.96054100000009) (-108.18666100000002 71.95582600000006) (-108.18276999999995 71.94552599999992) (-108.18971299999998 71.93331899999998) (-108.19611399999997 71.92692599999998) (-108.233612 71.89971900000006) (-108.28639199999992 71.86080900000013) (-108.28278399999999 71.79220600000002) (-108.28083800000002 71.786926) (-108.24276700000001 71.71859700000005) (-108.23805199999998 71.71388200000001) (-108.23082699999992 71.70942699999995) (-108.22055099999994 71.70582600000012) (-108.20777900000002 71.70248400000014) (-108.19248999999996 71.69970700000005) (-108.17748999999998 71.70109600000006) (-108.14111300000002 71.71054100000015) (-108.13054699999992 71.71443200000004) (-108.10333300000002 71.71914700000008) (-108.08693700000003 71.71971100000002) (-108.066101 71.71775800000006) (-108.03639199999998 71.70582600000012) (-108.02194199999997 71.697205) (-107.98805199999987 71.67553700000008) (-107.97609699999987 71.666382) (-107.96694899999994 71.65693699999997) (-107.96777299999991 71.65138200000007) (-107.91583300000002 71.62498499999998) (-107.84528399999994 71.6038670000001) (-107.82888799999995 71.60443100000003) (-107.75334199999998 71.61026000000004) (-107.74109599999997 71.61331200000012) (-107.73194899999999 71.618042) (-107.72416699999991 71.62387100000001) (-107.72609699999998 71.62914999999998) (-107.74054699999994 71.63749699999994) (-107.75028999999995 71.64137300000004) (-107.77583299999998 71.64804100000003) (-107.82472199999995 71.67275999999998) (-107.83194700000001 71.67692600000004) (-107.83640300000002 71.68165600000009) (-107.83833300000003 71.68692000000004) (-107.83750899999995 71.69247400000006) (-107.82305899999994 71.7169340000001) (-107.81527699999998 71.7227630000001) (-107.80444299999999 71.726654) (-107.78943600000002 71.72804300000001) (-107.7519529999999 71.726654) (-107.73665599999998 71.72360200000008) (-107.63027999999997 71.73220800000001) (-107.49472000000003 71.78637700000002) (-107.451683 71.85748300000006) (-107.36361699999992 71.871918) (-107.34555099999994 71.871643) (-107.29695099999998 71.87414599999994) (-107.28333299999997 71.876373) (-107.27084400000001 71.87942499999997) (-107.26139799999999 71.88415500000013) (-107.25334199999998 71.88970899999998) (-107.25250199999994 71.89553799999999) (-107.25695799999994 71.9002690000001) (-107.264183 71.9044340000001) (-107.41805999999997 71.9538730000001) (-107.59638999999993 72.00443999999999) (-107.61389199999996 72.012497) (-107.62581599999999 72.02165200000002) (-107.63027999999997 72.02638200000007) (-107.65139799999997 72.06109600000013) (-107.653343 72.06637599999999) (-107.64943700000003 72.072495) (-107.63999899999993 72.07720899999998) (-107.62609899999995 72.0794370000001) (-107.61389199999996 72.08276400000005) (-107.61000100000001 72.08859300000006) (-107.61193799999995 72.09387200000003) (-107.63527699999997 72.12191799999994) (-107.68138099999999 72.13610800000004) (-107.699997 72.138596) (-107.729446 72.13720700000005) (-107.74333199999995 72.13499499999995) (-107.76027699999992 72.13443000000012) (-107.77887699999997 72.13665800000007) (-107.78083800000002 72.14193700000004) (-107.787216 72.18470800000011) (-107.77806099999992 72.20803800000004) (-107.843887 72.35415600000005) (-107.87748699999992 72.4244230000001) (-107.88639799999993 72.51971399999996) (-107.87693799999994 72.524429) (-107.87165799999997 72.52970900000008) (-107.87666299999995 72.56721500000003) (-107.88054699999998 72.57748400000008) (-107.88555899999989 72.58665500000001) (-107.91555799999998 72.59721400000006) (-107.92887899999994 72.60054000000008) (-107.99082900000002 72.61248799999998) (-108.00418099999996 72.615814) (-108.01194800000002 72.61998000000011) (-108.025284 72.66609199999999) (-108.02639799999997 72.67692600000004) (-108.02667199999996 72.719986) (-108.05110200000001 72.78137200000015) (-108.05803699999996 72.79109200000005) (-108.11193799999995 72.89082300000013) (-108.1519469999999 72.97110000000009) (-108.16528299999993 73.01081799999997) (-108.26363400000002 73.0919340000001) (-108.29361 73.12025499999999) (-108.29998799999998 73.1355440000001) (-108.295547 73.14749100000006) (-108.291946 73.15359500000005) (-108.28527799999995 73.159988) (-108.26862299999999 73.17137100000002) (-108.23029299999996 73.18748499999998) (-108.18110699999994 73.20166000000006) (-108.16639700000002 73.20387300000004) (-108.13390400000003 73.20694000000015) (-108.11582900000002 73.20748900000007) (-108.07389799999993 73.20526100000012) (-108.02390300000002 73.20109600000012) (-107.93443300000001 73.18748499999998) (-107.91471899999993 73.18498199999999) (-107.89388999999994 73.18386800000002) (-107.87416099999996 73.18359400000008) (-107.86416599999995 73.18858300000005) (-107.87222300000002 73.19274899999994) (-107.90471600000001 73.20416300000005) (-107.94611399999991 73.21415700000006) (-108.01027699999997 73.226089) (-108.05166599999995 73.23609899999991) (-108.08444199999997 73.2474820000001) (-108.11638599999992 73.26443500000005) (-108.15361000000001 73.30247500000013) (-108.08444199999997 73.34999099999999) (-108.07140399999992 73.35331700000006) (-108.05332899999996 73.3538670000001) (-107.99109599999991 73.35137900000012) (-107.94722000000002 73.3483280000001) (-107.77139299999999 73.32388300000002) (-107.675003 73.32331800000003) (-107.631104 73.31999199999996) (-107.614441 73.31721500000009) (-107.403343 73.27053799999999) (-107.33583099999987 73.24803199999997) (-107.24999999999994 73.21748400000001) (-107.21028099999995 73.20166000000006) (-107.18888900000002 73.19413800000012) (-107.172234 73.19108600000004) (-107.10582699999998 73.17942800000003) (-107.06973299999999 73.17387400000001) (-107.05027799999999 73.17359899999997) (-107.03694200000001 73.1766510000001) (-107.025284 73.180542) (-107.016663 73.18609599999996) (-107.01083399999999 73.19136000000015) (-107.02027899999996 73.20082100000013) (-107.05249000000003 73.21249399999994) (-107.09028599999994 73.22303799999997) (-107.11081699999994 73.23136900000009) (-107.11860699999994 73.23553499999997) (-107.12361099999998 73.24026500000002) (-107.11945300000002 73.24636800000013) (-107.03028899999998 73.29553199999998) (-107.01862299999999 73.29942300000005) (-106.88249199999996 73.31219500000003) (-106.86138899999997 73.31080600000001) (-106.76139799999999 73.29304500000006) (-106.75083899999993 73.289154) (-106.74610899999999 73.28442399999994) (-106.74109599999991 73.26887500000004) (-106.72721899999993 73.25471500000015) (-106.69666299999994 73.2374880000001) (-106.66471899999999 73.226089) (-106.65110800000002 73.22248799999994) (-106.63474300000001 73.21971100000007) (-106.60305800000003 73.21666000000005) (-106.58222999999998 73.21527100000003) (-106.39862099999993 73.14915500000006) (-106.24027999999998 73.08581500000008) (-106.06388899999996 73.04775999999998) (-106.04750100000001 73.04470800000001) (-106.028343 73.04443400000008) (-105.94888300000002 73.05331399999994) (-105.91027799999989 73.05886800000013) (-105.87638899999996 73.05831899999998) (-105.85555999999997 73.05693100000008) (-105.84221600000001 73.05358899999999) (-105.83194699999996 73.04971300000011) (-105.82472200000001 73.04525800000005) (-105.82195299999995 73.03498799999994) (-105.82333399999999 73.02943399999998) (-105.83249699999999 73.01721199999997) (-105.82972699999993 73.00694299999998) (-105.82224299999996 73.00248700000003) (-105.80471799999998 72.99443100000013) (-105.79444899999993 72.99026500000008) (-105.76083399999999 72.9769290000001) (-105.737503 72.96943699999997) (-105.697769 72.95915200000007) (-105.67859599999997 72.95637499999998) (-105.62917299999998 72.93997200000013) (-105.56221 72.91304000000002) (-105.445831 72.83831800000007) (-105.32611099999991 72.74636800000007) (-105.32195299999995 72.74165300000004) (-105.32055700000001 72.73664900000006) (-105.32528699999995 72.73054500000006) (-105.33693700000003 72.726654) (-105.35610999999994 72.72720300000009) (-105.37777699999998 72.72943100000003) (-105.39778100000001 72.73719800000003) (-105.41194200000001 72.7458190000001) (-105.41915899999992 72.75027500000004) (-105.42748999999992 72.75972000000007) (-105.43472300000002 72.76416000000012) (-105.46472199999994 72.77581800000013) (-105.47778299999999 72.77943400000004) (-105.49833699999994 72.780823) (-105.51000999999997 72.7769320000001) (-105.45722999999992 72.70277399999998) (-105.44722000000002 72.69886800000006) (-105.38249200000001 72.68136600000003) (-105.35665899999998 72.67442300000005) (-105.29472399999997 72.63192700000002) (-105.23110999999994 72.54332000000005) (-105.19583099999988 72.48248300000006) (-105.19972199999995 72.46054100000015) (-105.20140100000003 72.45471199999997) (-105.20612299999993 72.44886800000012) (-105.21777299999991 72.44497700000005) (-105.23194899999993 72.44720500000005) (-105.26167299999992 72.45887800000003) (-105.27722199999994 72.4622040000001) (-105.29305999999997 72.46081500000008) (-105.301941 72.45526100000012) (-105.29778299999987 72.45054600000009) (-105.241379 72.39971899999995) (-105.23029299999996 72.39054900000008) (-105.21665999999993 72.38192700000008) (-105.18998699999997 72.36970500000012) (-105.16055299999988 72.35775799999999) (-105.13999899999999 72.34471100000013) (-105.04415899999998 72.24803200000002) (-105.03639199999986 72.23858600000005) (-105.03362299999998 72.23471100000006) (-105.02443700000003 72.21998600000012) (-104.99166899999989 72.20332300000001) (-104.95749699999999 72.18136600000014) (-104.95527599999997 72.17109700000015) (-104.95722999999992 72.16554300000013) (-104.96167000000003 72.15942400000012) (-104.96916199999998 72.15304600000013) (-104.97805799999992 72.14749100000006) (-104.98805199999993 72.14276100000001) (-104.99973299999999 72.13888500000013) (-105.02999899999998 72.12469500000003) (-105.03751399999999 72.1183170000001) (-105.03639199999986 72.11303700000002) (-105.01862299999993 72.06693999999993) (-104.92944299999988 72.03414900000001) (-104.87193299999996 71.98997500000007) (-104.82917800000001 71.93719500000003) (-104.82444800000002 71.92747500000013) (-104.82028200000002 71.90664700000008) (-104.82556199999999 71.88970899999998) (-104.82250999999997 71.87414599999994) (-104.8186189999999 71.86914100000007) (-104.78999299999998 71.84137000000004) (-104.78333299999986 71.83692900000011) (-104.771118 71.8336030000001) (-104.70056199999999 71.82998700000002) (-104.68554699999993 71.8269350000001) (-104.67331699999994 71.82331799999997) (-104.66000400000001 71.81442300000009) (-104.53472899999986 71.71971100000002) (-104.37638900000002 71.59803800000003) (-104.36638600000003 71.58888200000013) (-104.35527000000002 71.574432) (-104.35916099999997 71.563309) (-104.36361699999998 71.55720499999995) (-104.37581599999993 71.54470799999996) (-104.383331 71.53831500000001) (-104.40167200000002 71.51443500000005) (-104.40361000000001 71.50860599999999) (-104.401947 71.49832200000014) (-104.34416199999993 71.41081199999996) (-104.33332799999994 71.39637800000014) (-104.35722399999986 71.357483) (-104.37165799999997 71.36080900000002) (-104.38918299999995 71.36360200000001) (-104.40805099999994 71.36499000000009) (-104.43804899999998 71.36276199999998) (-104.45056199999988 71.35971100000012) (-104.46167000000003 71.35582000000005) (-104.47138999999993 71.35108900000012) (-104.48860199999996 71.33998099999997) (-104.49333200000001 71.33415200000013) (-104.49694799999997 71.32276900000011) (-104.49500299999988 71.3124850000001) (-104.49137899999988 71.30748000000006) (-104.46250900000001 71.28109700000005) (-104.44972200000001 71.27221700000001) (-104.43888900000002 71.25776700000011) (-104.43971299999998 71.24693300000001) (-104.44055200000003 71.23609899999997) (-104.44444299999992 71.22499099999999) (-104.44888300000002 71.21887200000015) (-104.470551 71.19970699999999) (-104.49610899999999 71.18304400000011) (-104.52555799999999 71.16886900000003) (-104.55610699999994 71.15554800000007) (-104.57805599999995 71.14804100000009) (-104.59056099999998 71.145264) (-104.62361099999987 71.13360599999999) (-104.64862099999999 71.11914100000007) (-104.60472099999998 71.07971199999997) (-104.58583099999998 71.06666600000005) (-104.57028199999996 71.05831900000004) (-104.53666699999997 71.04414400000013) (-104.48916600000001 71.02470399999999) (-104.45667300000002 71.01361099999997) (-104.33778399999994 70.97970600000008) (-104.23805199999998 70.9649960000001) (-104.22389199999998 70.961929) (-104.122772 70.91470300000015) (-104.11665299999999 70.91026299999993) (-104.09999099999999 70.89137299999999) (-104.07640099999992 70.86303700000008) (-104.05277999999993 70.83442700000006) (-104.04583699999995 70.824997) (-104.04277000000002 70.80415300000004) (-104.02887699999991 70.78498800000006) (-104.01583900000003 70.77082799999994) (-104.00029 70.75721699999997) (-103.99416400000001 70.75277699999998) (-103.98528299999998 70.74887100000007) (-103.97138999999987 70.74552900000015) (-103.95472699999999 70.74275200000005) (-103.94027699999987 70.7416530000001) (-103.92443800000001 70.74192800000009) (-103.806107 70.72303799999997) (-103.73111 70.69164999999992) (-103.64083899999997 70.64665200000002) (-103.63417099999992 70.63720699999999) (-103.62470999999994 70.62803600000001) (-103.59889199999992 70.61581400000006) (-103.55638099999999 70.60081500000001) (-103.52333099999987 70.59304800000001) (-103.506958 70.59027100000014) (-103.49027999999998 70.58749400000005) (-103.473053 70.586929) (-103.44193999999999 70.58720400000004) (-103.39835399999993 70.59054600000013) (-103.34277299999997 70.59664900000007) (-103.3272169999999 70.59664900000007) (-103.30915799999997 70.595261) (-103.26500699999997 70.58166500000004) (-103.239441 70.56944300000004) (-103.20472699999993 70.54803500000014) (-103.14972699999998 70.51388500000002) (-103.13276699999994 70.50582900000012) (-103.12165800000002 70.50193800000005) (-103.095551 70.49803199999997) (-103.01194799999996 70.49220299999996) (-102.97693600000002 70.48997500000002) (-102.96056399999998 70.48915100000005) (-102.93055699999996 70.49054000000007) (-102.92027299999995 70.49498000000006) (-102.91443599999991 70.50000000000011) (-102.915009 70.50526400000007) (-102.91832699999998 70.51026899999994) (-102.92388900000003 70.51443500000005) (-102.93250299999988 70.51860000000005) (-102.95722999999998 70.52554300000003) (-102.97528099999994 70.52720599999998) (-103.03028899999998 70.53498800000011) (-103.05526700000001 70.54193100000009) (-103.0997309999999 70.55664100000007) (-103.108337 70.56053199999991) (-103.12609899999995 70.57388300000008) (-103.13999899999993 70.60942100000011) (-103.15556300000003 70.65498400000001) (-103.156113 70.659988) (-103.15387699999997 70.665817) (-103.14916999999991 70.67164600000001) (-103.13667299999992 70.6744230000001) (-103.12110899999999 70.67469800000009) (-103.104172 70.67387399999996) (-103.08583099999998 70.672485) (-103.06667299999998 70.66998300000006) (-103.0250089999999 70.66026299999999) (-103.00250199999999 70.65277100000009) (-102.85665899999992 70.59776300000004) (-102.84834299999994 70.59387199999998) (-102.84528399999999 70.58888200000013) (-102.83833300000003 70.57415800000007) (-102.83583099999998 70.54803500000014) (-102.74445300000002 70.49470500000007) (-102.61501299999992 70.46054100000003) (-102.60138699999999 70.45721400000008) (-102.52027899999996 70.43830900000012) (-102.45749699999988 70.42637600000012) (-102.40862299999998 70.41747999999995) (-102.333328 70.39776600000005) (-102.281387 70.38415500000008) (-102.11749299999997 70.33943200000004) (-101.99610899999988 70.2872010000001) (-101.97972099999998 70.27916000000005) (-101.92555199999998 70.26054400000004) (-101.89334099999996 70.25443999999999) (-101.87666300000001 70.25360100000006) (-101.86138899999997 70.25387600000005) (-101.84916699999985 70.25665300000014) (-101.83805799999993 70.260269) (-101.828056 70.26470900000004) (-101.82195299999995 70.26971400000008) (-101.81722999999988 70.2810970000001) (-101.81749699999995 70.28610200000014) (-101.80972300000002 70.29775999999998) (-101.79972800000002 70.30219999999997) (-101.714722 70.30886800000013) (-101.69803599999995 70.30802900000003) (-101.68195300000002 70.30497700000006) (-101.59944200000001 70.27581800000013) (-101.58860800000002 70.27192700000006) (-101.58029199999993 70.26776100000012) (-101.58029199999993 70.26277199999998) (-101.58556399999998 70.25665300000014) (-101.60555999999997 70.24775700000004) (-101.63417099999998 70.23304700000006) (-101.64306599999998 70.22776800000008) (-101.65083300000003 70.22137499999997) (-101.65055799999993 70.21081500000003) (-101.64222699999993 70.19636500000007) (-101.62249799999995 70.16249100000005) (-101.61416599999995 70.15304600000002) (-101.55999800000001 70.11360200000007) (-101.55194099999994 70.109421) (-101.53971899999999 70.10693400000014) (-101.52667200000002 70.10859700000003) (-101.39723200000003 70.13943500000005) (-101.39222699999999 70.15054300000003) (-101.37581599999999 70.17776500000014) (-101.358047 70.17608600000011) (-101.28666699999991 70.15248099999997) (-101.265289 70.14498900000001) (-101.25723299999999 70.14082300000013) (-101.25195300000001 70.13638300000008) (-101.23889200000002 70.13304099999999) (-101.22222899999991 70.13192700000002) (-101.14499699999999 70.15525800000006) (-101.13500999999997 70.15971399999995) (-101.12721299999998 70.1660920000001) (-101.12193300000001 70.17192100000011) (-101.11665299999993 70.18304400000011) (-101.12193300000001 70.19274900000005) (-101.11193800000001 70.19720500000011) (-101.09555099999994 70.19636500000007) (-101.03971899999999 70.18304400000011) (-100.99973299999999 70.1727600000001) (-100.98388699999992 70.16470300000015) (-100.97332799999998 70.15554800000007) (-100.97332799999998 70.14526400000005) (-100.97609699999992 70.13443000000001) (-100.96028099999995 70.05304000000007) (-100.92194399999988 69.96527100000014) (-100.88694800000002 69.88415500000002) (-100.870003 69.81442300000015) (-100.870003 69.78831500000001) (-100.87805200000003 69.77165200000013) (-100.89998600000001 69.75387599999999) (-100.92555199999998 69.72110000000004) (-100.92027300000001 69.71138000000013) (-100.92027300000001 69.70109600000012) (-100.92832899999996 69.684143) (-100.93859900000001 69.672485) (-100.94748699999997 69.66693099999998) (-100.95722999999992 69.66249099999999) (-100.96916199999998 69.65971400000006) (-101.06443799999994 69.64860499999998) (-101.28362300000003 69.66387900000007) (-101.31777999999991 69.66748000000013) (-101.32972699999988 69.66998300000012) (-101.34028599999999 69.67886400000003) (-101.43831599999993 69.76971400000002) (-101.45472699999993 69.79887400000007) (-101.46806299999997 69.8230440000001) (-101.47332799999998 69.832764) (-101.468613 69.83888200000007) (-101.458618 69.843323) (-101.43998699999997 69.853317) (-101.43472300000002 69.85914600000007) (-101.41610700000001 69.88693200000012) (-101.41860999999989 69.89193699999998) (-101.42944299999994 69.90609700000005) (-101.44526699999994 69.90914900000001) (-101.45638999999994 69.90554800000012) (-101.46888699999994 69.89305100000013) (-101.47917199999995 69.88136299999991) (-101.51972999999992 69.82832300000007) (-101.53999299999998 69.79942299999999) (-101.54750100000001 69.78776600000009) (-101.55972299999996 69.76499899999999) (-101.56221 69.754166) (-101.56194299999999 69.74914600000011) (-101.564438 69.7433170000001) (-101.569458 69.7374880000001) (-101.60777300000001 69.70582599999994) (-101.65249599999999 69.6827550000001) (-101.69193999999999 69.68026700000013) (-101.69722000000002 69.68470800000006) (-101.75805699999995 69.71775800000012) (-101.76611300000002 69.721924) (-101.77916700000003 69.72526600000015) (-101.85637700000001 69.74304200000012) (-101.87000299999994 69.74414100000007) (-101.88722200000001 69.73332199999999) (-101.89916999999997 69.73054500000012) (-101.91416900000002 69.73054500000012) (-101.92999299999997 69.73359700000003) (-101.94055200000003 69.73719800000009) (-101.94860799999998 69.74136399999998) (-101.962784 69.75305200000003) (-102.02306399999992 69.81776400000001) (-102.06555199999997 69.85054000000014) (-102.20667300000002 69.91304000000008) (-102.21749899999998 69.91693099999998) (-102.23029300000002 69.91720599999996) (-102.24082900000002 69.91331500000007) (-102.37581599999999 69.80941800000011) (-102.51027699999992 69.75804099999999) (-102.57640100000003 69.7374880000001) (-102.59249899999998 69.73831200000006) (-102.60582699999998 69.7416530000001) (-102.61638600000003 69.74525500000004) (-102.64890300000002 69.76165800000012) (-102.65972899999997 69.76527399999998) (-102.673317 69.76638800000012) (-102.68055700000002 69.759995) (-102.67443800000001 69.7502750000001) (-102.65805099999994 69.73692300000005) (-102.60028099999994 69.69802900000002) (-102.59221600000001 69.69386299999991) (-102.57640100000003 69.69108600000004) (-102.55943299999996 69.68942300000009) (-102.53138699999994 69.69136000000015) (-102.52084400000001 69.69525100000004) (-102.50917099999998 69.69802900000002) (-102.49194299999994 69.69636500000001) (-102.48361199999988 69.69220000000001) (-102.47805800000003 69.68248000000011) (-102.49777199999988 69.595261) (-102.50778199999996 69.56414799999999) (-102.51500699999985 69.5599820000001) (-102.525284 69.55636600000003) (-102.60305800000003 69.53831500000007) (-102.81304899999986 69.52970900000014) (-102.82861300000002 69.53276100000005) (-102.94387799999993 69.559418) (-103.08528099999995 69.59721400000012) (-103.18666099999996 69.62942500000003) (-103.20556599999998 69.636932) (-103.22471599999994 69.64471400000014) (-103.23277300000001 69.64860499999998) (-103.260559 69.66554300000007) (-103.27166699999998 69.6744230000001) (-103.32195300000001 69.69220000000001) (-103.41639699999996 69.7063750000001) (-103.43055699999996 69.70526100000012) (-103.47693600000002 69.69358800000009) (-103.48665599999998 69.68470800000006) (-103.50723299999999 69.617752) (-103.5041809999999 69.61303699999996) (-103.33528100000001 69.57499700000005) (-103.08917200000002 69.521927) (-103.07528699999995 69.52304100000015) (-103.05695300000002 69.52053799999999) (-103.04638699999998 69.51693699999998) (-103.03806299999997 69.51277199999998) (-103.03278399999999 69.50833100000006) (-103.02333099999998 69.49386600000008) (-103.01390099999998 69.474152) (-102.991379 69.42469800000003) (-102.99082899999996 69.41943400000002) (-103.00778199999996 69.32693500000005) (-103.01917300000002 69.28276100000011) (-103.02306399999998 69.27165200000002) (-103.04444899999999 69.25248700000009) (-103.07195299999995 69.23858600000011) (-103.11332700000003 69.22360200000003) (-103.12444299999999 69.2208250000001) (-103.16000399999996 69.21304299999997) (-103.17250099999995 69.21138000000008) (-103.19415299999997 69.20471200000009) (-103.204453 69.20082100000002) (-103.21140299999996 69.19442700000013) (-103.214447 69.18969700000014) (-103.21777299999997 69.1372070000001) (-103.208618 69.12275699999998) (-103.20305599999989 69.11831699999999) (-103.19499199999996 69.1144260000001) (-103.18222000000003 69.11109899999997) (-103.141953 69.15776100000005) (-103.13390400000003 69.16331500000007) (-103.12444299999999 69.16775500000006) (-103.10500300000001 69.176086) (-103.07417299999997 69.18748500000004) (-103.03721599999994 69.20582600000006) (-103.021118 69.21693400000004) (-103.00611900000001 69.2285920000001) (-102.9988939999999 69.23498500000005) (-102.98082699999992 69.25915500000008) (-102.96916199999993 69.27137800000008) (-102.95056199999999 69.29026800000008) (-102.943604 69.29664600000001) (-102.87249799999995 69.36053500000014) (-102.84084299999995 69.383331) (-102.829453 69.38610800000004) (-102.817497 69.38388100000003) (-102.80666400000001 69.37997400000006) (-102.79360999999994 69.37692300000003) (-102.76083399999993 69.37442000000004) (-102.74694799999997 69.37553400000002) (-102.72277799999995 69.38026400000007) (-102.51083399999999 69.43969700000008) (-102.508621 69.44552600000009) (-102.48972300000003 69.46943699999997) (-102.47193900000002 69.47943099999998) (-102.46028100000001 69.48220800000007) (-102.31304899999998 69.49832200000003) (-102.29804999999999 69.49859600000013) (-102.09306300000003 69.48776200000009) (-102.05750299999988 69.48359700000009) (-102.04750100000001 69.47998000000013) (-101.95527599999997 69.43553200000008) (-101.94748699999997 69.43136599999997) (-101.93694299999999 69.42248500000005) (-101.93138099999999 69.41276600000003) (-101.93110699999994 69.407486) (-101.93611099999998 69.401657) (-102.03527799999995 69.28720099999998) (-102.14890300000002 69.27026400000011) (-102.15943899999996 69.27388000000002) (-102.18776700000001 69.28027299999997) (-102.20140100000003 69.27916000000005) (-102.21278399999994 69.27638200000007) (-102.22972099999993 69.26554900000008) (-102.23194899999999 69.25972000000007) (-102.21721600000001 69.22526600000003) (-102.11972000000003 69.18304399999994) (-102.10665899999992 69.17970300000013) (-102.09361299999989 69.17858899999993) (-102.08112299999993 69.18026700000007) (-102.07167099999992 69.1849820000001) (-102.06416300000001 69.19136000000003) (-102.05943299999996 69.19720499999994) (-102.05721999999992 69.20277399999998) (-102.05750299999988 69.2080380000001) (-102.05444299999999 69.21443199999999) (-102.04499800000002 69.22608900000012) (-102.03666699999997 69.23165899999998) (-102.016663 69.23997500000007) (-102.00611899999996 69.24359099999998) (-101.96305799999999 69.25721699999991) (-101.95140099999998 69.25999500000012) (-101.9385989999999 69.26193199999994) (-101.92194399999994 69.26026900000005) (-101.78500399999996 69.19636500000007) (-101.77055399999995 69.18914799999999) (-101.75472999999994 69.17581200000006) (-101.75195300000001 69.16554300000001) (-101.75167799999991 69.16053799999997) (-101.75389099999995 69.14971900000006) (-101.80638099999999 69.0038760000001) (-101.80860899999993 68.99803199999991) (-101.81806899999992 68.99359100000004) (-101.85138699999993 68.98442099999994) (-101.89916999999997 68.97526600000009) (-101.94888300000002 68.96775800000006) (-101.962784 68.96665999999999) (-101.97693600000002 68.96665999999999) (-101.993607 68.96832300000011) (-102.00140399999992 68.97248800000011) (-102.02223200000003 68.99026500000014) (-102.03250100000002 68.99414100000007) (-102.04778299999998 68.99693300000013) (-102.06220999999994 68.99693300000013) (-102.09665699999994 68.98858599999994) (-102.11305199999998 68.97776799999997) (-102.12609900000001 68.966385) (-102.130829 68.96026599999993) (-102.14502699999997 68.94766199999998) (-102.15638699999994 68.94470200000006) (-102.16972399999997 68.94609100000002) (-102.323624 68.93719500000009) (-102.38612399999994 68.92553700000008) (-102.38583399999993 68.9202580000001) (-102.39028899999994 68.9144290000001) (-102.39835399999987 68.90887500000008) (-102.48554999999999 68.87136800000002) (-102.53582799999998 68.86442599999992) (-102.589722 68.86053500000008) (-102.604172 68.86026000000004) (-102.61972000000003 68.86109900000002) (-102.63500999999991 68.86387600000012) (-102.64527900000002 68.867752) (-102.76306199999999 68.87776200000008) (-102.81889299999995 68.83415200000007) (-102.89472999999992 68.79998800000004) (-102.99054699999999 68.79443400000008) (-103.00583599999999 68.79525800000005) (-103.047234 68.80970799999994) (-103.146118 68.84054600000013) (-103.16416899999996 68.84304800000001) (-103.19499199999996 68.84443700000003) (-103.208618 68.84359699999999) (-103.32084699999996 68.82971200000009) (-103.34111000000001 68.82222000000013) (-103.36000099999995 68.81387299999994) (-103.36805700000002 68.80831899999998) (-103.40306099999992 68.77720599999998) (-103.50917099999987 68.80137599999995) (-103.83583099999993 68.83638000000002) (-104.09472699999992 68.85664400000002) (-104.11028299999998 68.85942100000005) (-104.13834399999996 68.86554000000012) (-104.287781 68.9019320000001) (-104.40249599999999 68.9310910000001) (-104.43083199999995 68.9369200000001) (-104.445267 68.938873) (-104.45749699999999 68.936646) (-104.46167000000003 68.93054200000012) (-104.46305799999988 68.92498799999993) (-104.46250900000001 68.91970800000007) (-104.47444199999995 68.90165700000006) (-104.487503 68.88888500000007) (-104.50279199999989 68.87776200000008) (-104.51167299999992 68.87303200000002) (-104.52139299999999 68.86914099999996) (-104.54360999999989 68.86331199999995) (-104.583618 68.85971100000012) (-104.84999099999993 68.87025499999999) (-105.12917299999998 68.89637800000008) (-105.14472999999992 68.89915500000001) (-105.16610699999995 68.9060970000001) (-105.193329 68.91748000000013) (-105.2488939999999 68.94552600000003) (-105.18305999999995 68.98831200000001) (-105.173317 68.99192800000009) (-105.14666699999998 68.99247700000001) (-105.128601 68.98997500000013) (-105.06471299999998 68.98692300000005) (-105.03916900000002 68.99026500000014) (-104.936394 69.03054800000001) (-104.928879 69.03610200000003) (-104.91610700000001 69.04887400000001) (-104.91166699999991 69.06581100000005) (-104.915009 69.07054100000005) (-104.92304999999999 69.07470699999999) (-104.93388399999998 69.07832300000001) (-105.06500199999999 69.10415599999999) (-105.083328 69.10636900000009) (-105.096657 69.10525500000011) (-105.122772 69.09109500000005) (-105.16027799999995 69.07193000000007) (-105.47361799999999 69.10693400000014) (-105.48055999999997 69.11665299999993) (-105.49249299999991 69.12525900000003) (-105.50695799999994 69.13360600000004) (-105.51528899999994 69.13749700000011) (-105.553879 69.15248099999997) (-105.58056599999998 69.15637200000003) (-105.61694299999994 69.16081200000008) (-105.76806599999998 69.17137100000014) (-105.83029199999999 69.172211) (-105.87416100000002 69.17109700000003) (-105.902222 69.16914400000007) (-105.91443600000002 69.16720599999996) (-105.92555199999998 69.164154) (-106.03888699999993 69.15386999999998) (-106.17777999999998 69.14415000000008) (-106.193604 69.14471400000002) (-106.256958 69.15498400000013) (-106.28888699999999 69.16026299999993) (-106.39611799999994 69.17804000000001) (-106.40611299999995 69.18054200000006) (-106.41471899999999 69.18441799999994) (-106.41471899999999 69.1952510000001) (-106.41027799999995 69.217758) (-106.40666199999998 69.22387700000007) (-106.3944469999999 69.23692299999999) (-106.38612399999994 69.24165300000004) (-106.37638899999996 69.24552900000009) (-106.30777 69.26220699999999) (-106.28832999999992 69.26998900000012) (-106.27362099999993 69.28137200000015) (-106.26777600000003 69.29220600000002) (-106.26889 69.29721100000006) (-106.31639100000001 69.38665800000007) (-106.49527 69.47442600000011) (-106.52139299999993 69.48609899999997) (-106.54138199999989 69.49331699999999) (-106.55499299999985 69.49636800000002) (-106.57112099999989 69.49887099999995) (-106.60221899999999 69.49887099999995) (-106.61444099999994 69.496643) (-106.62554899999986 69.4935910000001) (-106.73306299999996 69.44165000000004) (-106.74027999999998 69.43580600000001) (-106.74388099999993 69.42970300000007) (-106.74553700000001 69.407761) (-106.86277799999999 69.36914100000007) (-106.93083200000001 69.36164900000011) (-106.95500199999992 69.35720800000001) (-106.96611000000001 69.3541560000001) (-106.98554999999999 69.34610000000004) (-106.99249299999997 69.34054600000002) (-106.99722300000002 69.33526599999999) (-106.99833699999999 69.32971199999997) (-106.99694799999997 69.32443200000006) (-106.96528599999994 69.30304000000007) (-106.95749699999993 69.29332) (-106.925003 69.23942599999998) (-106.92223399999995 69.2288670000001) (-106.929169 69.2166600000001) (-106.93611099999998 69.21110500000003) (-106.94444299999998 69.20637500000004) (-106.96362299999993 69.19831800000003) (-107.03999299999998 69.18109100000004) (-107.12832600000002 69.1544340000001) (-107.13806199999999 69.15054300000003) (-107.16221599999994 69.13443000000001) (-107.19167299999998 69.11248799999993) (-107.22666900000002 69.08415200000002) (-107.248894 69.06805400000002) (-107.264183 69.05748000000011) (-107.27944899999994 69.04693600000007) (-107.304169 69.03248599999995) (-107.31360599999994 69.02859500000011) (-107.34221599999995 69.01887499999998) (-107.37444299999993 69.00943000000012) (-107.43167099999994 68.99636800000007) (-107.50334199999992 68.98275800000005) (-107.55387899999994 68.97554000000002) (-107.64611799999989 68.96554600000002) (-107.67388900000003 68.96360800000008) (-107.74610899999999 68.96081500000008) (-107.93749999999994 68.93498199999993) (-107.95584099999996 68.9310460000001) (-107.97693600000002 68.93054200000012) (-108.17555199999998 68.9310910000001) (-108.20944199999997 68.93331900000004) (-108.26444999999995 68.93914800000005) (-108.29833999999988 68.94136000000009) (-108.42804699999994 68.94581600000004) (-108.49221799999992 68.94747899999993) (-108.521118 68.94636500000013) (-108.53443900000002 68.94470200000006) (-108.54611199999994 68.94247400000006) (-108.56331599999993 68.93359400000003) (-108.56388900000002 68.92776500000002) (-108.55082699999997 68.91943400000014) (-108.54194599999994 68.91554300000007) (-108.535553 68.91137699999996) (-108.531387 68.90664700000013) (-108.52971599999995 68.90138200000007) (-108.53028899999993 68.89582800000005) (-108.535553 68.88916000000006) (-108.55139200000002 68.87942500000003) (-108.59722899999997 68.85914600000007) (-108.67443799999995 68.82943700000004) (-108.926941 68.74443100000013) (-108.93749999999994 68.74108899999999) (-108.97250400000001 68.73387099999997) (-109.10472099999998 68.71054100000003) (-109.19138299999992 68.69720500000005) (-109.23416099999997 68.69497700000011) (-109.26390099999998 68.69442700000008) (-109.31194299999999 68.6958160000001) (-109.345551 68.69775400000003) (-109.37416100000002 68.69636500000001) (-109.39998600000001 68.69331399999999) (-109.43472300000002 68.68609599999996) (-109.49137899999994 68.67330899999996) (-109.52306399999992 68.6649930000001) (-109.55359599999991 68.655258) (-109.59722899999997 68.64387499999998) (-109.64362299999999 68.63443000000012) (-109.65638699999994 68.6327510000001) (-109.68331899999998 68.63053900000006) (-109.756958 68.6285860000001) (-109.97028399999999 68.62719700000008) (-110.12416099999996 68.62719700000008) (-110.16055299999994 68.63053900000006) (-110.19167299999998 68.63081400000004) (-110.22000099999997 68.62915000000004) (-110.24416400000001 68.62525900000014) (-110.26306199999999 68.61775200000005) (-110.27194199999997 68.61360200000001) (-110.27916700000003 68.60859700000015) (-110.295547 68.59942600000005) (-110.32917800000001 68.58221400000002) (-110.33917200000002 68.57887299999999) (-110.35082999999997 68.57638500000002) (-110.36361699999998 68.57470700000005) (-110.37777699999998 68.57415800000012) (-110.391388 68.57666) (-110.39806399999986 68.58082600000012) (-110.42027299999995 68.60415600000005) (-110.42722300000003 68.60832199999999) (-110.44082600000002 68.61109900000008) (-110.45889299999999 68.61276199999998) (-110.56111099999998 68.61665300000004) (-110.576683 68.61665300000004) (-110.5894469999999 68.61499000000015) (-110.60944399999994 68.60832199999999) (-110.61694299999994 68.6035920000001) (-110.63417099999987 68.59526100000005) (-110.65695199999999 68.59027100000014) (-110.68138099999999 68.58610500000009) (-110.89666699999998 68.55720500000001) (-110.92223399999995 68.55386399999998) (-110.950287 68.55192600000004) (-111.01363400000002 68.55276500000002) (-111.03195199999999 68.55442800000014) (-111.03859699999992 68.55859400000003) (-111.03500400000001 68.563873) (-110.98332199999993 68.57777399999998) (-110.97193900000002 68.58027600000008) (-110.95777900000002 68.58110000000005) (-110.92555199999993 68.58027600000008) (-110.89723200000003 68.58194000000009) (-110.87165800000002 68.5852660000001) (-110.86028299999987 68.5877690000001) (-110.850281 68.59109500000011) (-110.84306299999997 68.59609999999998) (-110.84306299999997 68.601654) (-110.84973099999996 68.60582000000005) (-110.86361699999992 68.60859700000015) (-111.01750199999998 68.59832799999998) (-111.03028899999998 68.59664900000013) (-111.05888399999998 68.58581500000008) (-111.068893 68.58248900000001) (-111.08029199999999 68.57998700000013) (-111.09306300000003 68.57832300000013) (-111.13527699999997 68.57582100000008) (-111.16639700000002 68.57582100000008) (-111.23249800000002 68.57804900000002) (-111.26750199999998 68.58055100000007) (-111.28362299999998 68.58276400000005) (-111.32000700000003 68.58581500000008) (-111.33693699999998 68.58665500000012) (-111.37917299999998 68.58415200000013) (-111.39195299999994 68.58248900000001) (-111.41166699999997 68.57554600000003) (-111.41665599999999 68.57110600000004) (-111.40527299999997 68.56805400000007) (-111.389183 68.56581099999994) (-111.29804999999999 68.55775500000004) (-111.2502899999999 68.55720500000001) (-111.23194899999999 68.55554200000012) (-111.21833800000002 68.55276500000002) (-111.20916699999998 68.54914899999994) (-111.204453 68.54470800000007) (-111.204453 68.53887900000001) (-111.21112099999999 68.52609300000012) (-111.21556099999992 68.51944000000015) (-111.22556299999997 68.516098) (-111.23805199999993 68.5144350000001) (-111.25361599999991 68.5144350000001) (-111.358612 68.52165200000002) (-111.37471 68.52360499999998) (-111.38834400000002 68.52638200000007) (-111.46806300000003 68.53692600000011) (-111.52278100000001 68.5416560000001) (-111.60056299999991 68.54359400000004) (-111.85109699999998 68.53414900000001) (-112.060272 68.52304100000003) (-112.21000700000002 68.51361099999997) (-112.23665599999987 68.51081799999997) (-112.35916099999997 68.50193800000011) (-112.40110799999997 68.499146) (-112.50917099999992 68.49803200000002) (-112.63527699999992 68.48304700000006) (-112.63694800000002 68.47692899999993) (-112.64527900000002 68.47276300000004) (-112.67027299999995 68.46914699999996) (-112.72749299999992 68.46582000000006) (-112.77390299999996 68.46554600000013) (-112.80750299999994 68.4666600000001) (-113.05166600000001 68.46415700000011) (-113.091949 68.46026600000005) (-113.220551 68.45277400000009) (-113.25140399999992 68.4522090000001) (-113.26944699999996 68.4538730000001) (-113.297234 68.45860299999993) (-113.30444299999999 68.46276900000004) (-113.30943300000001 68.46720900000003) (-113.310272 68.47303800000003) (-113.30638099999993 68.47970600000002) (-113.29972800000002 68.48471100000006) (-113.29138199999994 68.4891510000001) (-113.26944699999996 68.49443099999996) (-113.256958 68.49609400000008) (-113.193604 68.49636800000002) (-113.05166600000001 68.48748799999998) (-113.03778099999994 68.48831200000012) (-113.03388999999999 68.49498000000011) (-113.04360999999994 68.50416600000005) (-113.07250999999991 68.52053800000004) (-113.11805700000002 68.54443400000014) (-113.141388 68.55053700000008) (-113.19721999999996 68.56025699999998) (-113.21333300000003 68.56219500000009) (-113.26888999999994 68.57222000000002) (-113.33416699999998 68.58554100000015) (-113.35777299999995 68.59136999999998) (-113.36721799999992 68.594986) (-113.38166799999988 68.60304300000001) (-113.44304699999998 68.64054899999996) (-113.44833399999999 68.645264) (-113.45111099999997 68.65026900000004) (-113.45249899999999 68.66165200000006) (-113.45084400000002 68.667755) (-113.52443700000003 68.72499099999993) (-113.66665599999999 68.80219999999991) (-113.676941 68.81109600000008) (-113.67887899999994 68.89471400000008) (-113.67722299999997 68.90081800000013) (-113.671944 68.90664700000013) (-113.623894 68.93331900000004) (-113.60694899999993 68.94247400000006) (-113.58444199999997 68.94802899999996) (-113.57472199999995 68.95138500000002) (-113.569458 68.95721400000002) (-113.545837 69.043045) (-113.54499799999996 69.04803500000008) (-113.55471799999987 69.05137600000012) (-113.61501299999998 69.06637600000005) (-113.63221699999997 69.07388300000002) (-113.64723199999992 69.08194000000015) (-113.65778399999999 69.09109500000005) (-113.69611399999991 69.15470900000014) (-113.69220699999994 69.18942300000003) (-113.68083200000001 69.19192500000008) (-113.66583300000002 69.1910860000001) (-113.65583800000002 69.18748500000004) (-113.62193300000001 69.17804000000001) (-113.53888699999999 69.16859400000004) (-113.51972999999998 69.16720599999996) (-113.50862099999995 69.16970800000001) (-113.51363399999997 69.17442300000005) (-113.52111799999994 69.17858899999993) (-113.55359599999991 69.18719500000003) (-113.58000199999992 69.192474) (-113.62332200000003 69.19970700000005) (-113.90888999999999 69.24192800000003) (-114.27555799999999 69.28193699999997) (-114.311394 69.284988) (-114.328888 69.28553800000003) (-114.39277600000003 69.28414900000001) (-114.42138699999998 69.28193699999997) (-114.4472199999999 69.27804600000007) (-114.49249299999991 69.26721200000003) (-114.51834100000002 69.26332100000013) (-114.66972399999997 69.255829) (-114.764183 69.25221299999998) (-115.08889799999992 69.24470500000012) (-115.25361599999991 69.24525499999999) (-115.40083299999998 69.25694299999998) (-115.64472999999998 69.27331500000014) (-115.79527299999995 69.28276100000011) (-115.92138699999992 69.29026800000008) (-115.95584099999996 69.29220600000002) (-115.96833799999996 69.29498300000012) (-115.9786069999999 69.29859899999997) (-115.98665599999998 69.30247500000002) (-116.00029 69.31080600000013) (-116.00611900000001 69.31526200000002) (-116.016953 69.32222000000002) (-116.026947 69.32554600000009) (-116.05638099999999 69.32998699999996) (-116.17527799999993 69.34165999999999) (-116.21945199999999 69.34832799999998) (-116.52583300000003 69.407486) (-116.53859699999998 69.4102630000001) (-116.54888900000003 69.41360500000002) (-116.56527699999992 69.42137100000008) (-116.62970699999994 69.45887800000014) (-116.63137799999993 69.46470600000004) (-116.6266629999999 69.47053500000004) (-116.61888099999993 69.47499099999999) (-116.60777300000001 69.47804300000007) (-116.569458 69.48414600000001) (-116.561394 69.48858600000005) (-116.55860899999993 69.4952550000001) (-116.57556199999993 69.5558170000001) (-116.58138999999989 69.56053199999997) (-116.591949 69.563873) (-116.60472099999993 69.566666) (-116.63667299999997 69.57026700000006) (-116.73388699999998 69.57554600000003) (-116.74999999999994 69.57499700000005) (-116.75945299999995 69.57138100000003) (-116.76611299999996 69.56517799999995) (-116.78138699999988 69.55720500000001) (-116.89750700000002 69.58749400000005) (-116.88054699999986 69.60887100000008) (-116.85193600000002 69.61970500000012) (-116.84612299999998 69.64305100000001) (-116.84750399999996 69.64860499999998) (-116.858047 69.6519320000001) (-116.96193700000003 69.67942799999997) (-116.987503 69.68498199999999) (-117.01777600000003 69.68942300000009) (-117.03500399999996 69.690811) (-117.05027799999993 69.69303899999994) (-117.07584400000002 69.69859300000013) (-117.11805699999996 69.71165499999995) (-117.23889200000002 69.75305200000003) (-117.24749799999995 69.75694300000009) (-117.26917300000002 69.78166200000004) (-117.27278100000001 69.79275500000006) (-117.30777 69.84443699999997) (-117.36721799999992 69.91998300000006) (-117.42250099999995 69.97248800000006) (-117.43499799999995 69.98136900000003) (-117.43666099999996 69.98692299999999) (-117.43611099999993 69.99304200000006) (-117.41528299999993 70.00999500000012) (-117.38527699999997 70.02859500000005) (-117.35637700000001 70.03970300000003) (-117.32584400000002 70.04998799999998) (-117.28362300000003 70.06330900000012) (-117.25140399999992 70.072769) (-117.23999000000003 70.07582100000013) (-117.19444299999998 70.08749399999994) (-117.16999800000002 70.09248400000001) (-117.12082700000002 70.10247800000002) (-117.08167999999995 70.10887100000014) (-117.01083399999993 70.11692800000014) (-116.87721299999998 70.1291500000001) (-116.58306899999997 70.15693700000008) (-116.236107 70.19136000000003) (-116.16639700000002 70.19999700000005) (-116.09999099999999 70.21026600000005) (-116.07167099999998 70.21360800000002) (-115.90834000000001 70.2288670000001) (-115.80194099999994 70.23664900000006) (-115.69360399999994 70.24386600000014) (-115.64695699999993 70.24664300000006) (-115.49665799999997 70.25054900000009) (-115.44833399999993 70.25248700000003) (-115.31471299999998 70.26416000000006) (-115.30139200000002 70.26638800000006) (-115.229446 70.27387999999996) (-115.16750299999995 70.27777100000003) (-115.08389299999999 70.27970899999997) (-115.03028899999998 70.27998400000001) (-114.86721799999998 70.28387500000008) (-114.80194099999989 70.28610200000014) (-114.741379 70.290817) (-114.71305799999988 70.29386900000009) (-114.65888999999999 70.30165100000005) (-114.61694299999994 70.30664100000007) (-114.58833299999992 70.309708) (-114.54305999999997 70.31330900000006) (-114.511124 70.31469699999997) (-114.323624 70.316666) (-114.254997 70.31721500000015) (-114.21833800000002 70.31608599999998) (-114.17832900000002 70.31359900000007) (-114.16082799999998 70.31164599999994) (-114.13527699999997 70.30581699999993) (-114.111107 70.29386900000009) (-114.09028599999994 70.28692600000011) (-114.057503 70.28248600000006) (-113.84166700000003 70.26944000000015) (-113.68388399999992 70.26304600000009) (-113.65055799999993 70.26361099999997) (-113.59166700000003 70.2686000000001) (-113.54943799999995 70.27331500000014) (-113.50556899999998 70.27748100000002) (-113.46000700000002 70.28054800000012) (-113.42804699999999 70.2816620000001) (-113.39138799999995 70.28054800000012) (-113.33332799999994 70.27720600000004) (-113.296112 70.27387999999996) (-113.16832699999998 70.25915500000002) (-113.09084299999995 70.24748199999999) (-112.66665599999993 70.2038730000001) (-112.56471299999998 70.19831800000003) (-112.54804999999999 70.19859300000002) (-112.53278399999994 70.19941699999998) (-112.52084399999995 70.2022090000001) (-112.51722699999999 70.20748899999995) (-112.52749599999993 70.21110500000003) (-112.56304899999998 70.21360800000002) (-112.577789 70.21609500000005) (-112.58084100000002 70.22137499999997) (-112.57501200000002 70.22720300000009) (-112.56582599999996 70.23136899999997) (-112.55526700000001 70.234985) (-112.54332699999992 70.23748799999998) (-112.295547 70.26666300000005) (-112.212784 70.26582300000001) (-112.195831 70.26582300000001) (-112.16388699999999 70.26693699999998) (-112.13834399999996 70.27137800000008) (-112.14584400000001 70.27554300000008) (-112.16306299999991 70.27748100000002) (-112.24249299999991 70.28360000000004) (-112.29695099999998 70.28915400000005) (-112.30471799999992 70.29331999999994) (-112.29723399999995 70.29832500000003) (-112.28333299999997 70.2999880000001) (-112.266663 70.30026200000003) (-112.24833699999999 70.2994230000001) (-112.23111 70.29748499999994) (-112.10888699999992 70.27748100000002) (-111.92639199999996 70.25221299999993) (-111.91583300000002 70.25555399999996) (-111.90805099999989 70.26054400000004) (-111.89917000000003 70.26470900000004) (-111.88054699999998 70.27026400000011) (-111.86527999999993 70.27137800000008) (-111.84861799999993 70.27137800000008) (-111.743607 70.26944000000015) (-111.55555700000002 70.26971400000008) (-111.53888699999993 70.26998900000007) (-111.46806300000003 70.27832000000001) (-111.45445299999989 70.27998400000001) (-111.445267 70.28414900000001) (-111.44275699999992 70.29026800000003) (-111.487213 70.33692900000005) (-111.49472000000003 70.34109499999994) (-111.50723299999993 70.34414700000008) (-111.53694200000001 70.34942600000005) (-111.631104 70.35832199999999) (-111.66471899999999 70.35803199999998) (-111.69387799999998 70.35554500000006) (-111.73528299999998 70.35026600000009) (-111.75055700000001 70.34942600000005) (-111.803879 70.35081500000001) (-111.98055999999991 70.37081899999998) (-112.00083899999987 70.37803600000007) (-112.053879 70.401093) (-112.06166099999996 70.405258) (-112.06973299999993 70.4149930000001) (-112.07250999999997 70.42025799999999) (-112.073059 70.43165599999998) (-112.07584400000002 70.43664600000005) (-112.08917200000002 70.45109600000012) (-112.11527999999998 70.474152) (-112.14611799999994 70.49054000000007) (-112.156387 70.49414100000013) (-112.16915899999998 70.497208) (-112.19915800000001 70.5022130000001) (-112.42722299999997 70.52638200000001) (-112.49553700000001 70.51527400000003) (-112.5 70.51474000000007) (-112.50945300000001 70.51361100000008) (-112.52806099999998 70.51416) (-112.58612099999999 70.5249940000001) (-112.62193300000001 70.534424) (-112.65278599999994 70.54525800000005) (-112.670837 70.55276500000014) (-112.67859599999991 70.55693100000008) (-112.70973199999997 70.56749000000008) (-112.72805799999998 70.56832900000006) (-112.81471299999993 70.56805400000007) (-112.84861799999993 70.56776400000001) (-112.85610999999994 70.56275899999997) (-112.93749999999994 70.56721500000009) (-113.00083899999993 70.57665999999995) (-113.01611300000002 70.57916300000011) (-113.14222699999999 70.60609399999998) (-113.30304699999994 70.64193699999998) (-113.49221799999992 70.67720000000003) (-113.51112399999994 70.67776500000002) (-113.51999699999993 70.67359899999997) (-113.51917299999997 70.66775500000011) (-113.5227809999999 70.65554799999995) (-113.528343 70.64971900000012) (-113.54055800000003 70.64694200000002) (-113.55444299999994 70.64498900000012) (-113.57140399999997 70.64471400000008) (-113.59166700000003 70.6461030000001) (-113.60722399999997 70.64860499999998) (-113.63054699999998 70.65498400000001) (-113.64917000000003 70.66276600000015) (-113.66528299999999 70.67082200000004) (-113.68388399999992 70.678314) (-113.72860700000001 70.69164999999992) (-113.76194800000002 70.69609100000002) (-113.88221699999997 70.71026599999993) (-113.93831599999993 70.71527100000003) (-113.97416699999991 70.71554600000002) (-113.98972299999997 70.71443200000004) (-114.015556 70.70999100000012) (-114.06833599999993 70.69247400000006) (-114.089447 70.68525699999998) (-114.12082699999996 70.67469800000009) (-114.14362299999999 70.6685940000001) (-114.171112 70.66470300000003) (-114.20834400000001 70.665817) (-114.26194800000002 70.67137100000002) (-114.323059 70.67526200000009) (-114.37748699999997 70.67581200000012) (-114.40834000000001 70.67359899999997) (-114.4202729999999 70.67082200000004) (-114.43083200000001 70.66720600000002) (-114.44833399999999 70.65860000000009) (-114.45889299999999 70.65525800000012) (-114.49500299999994 70.64694200000002) (-114.54527299999995 70.63610799999998) (-114.571121 70.63136299999996) (-114.64111299999996 70.62248200000005) (-114.98916599999995 70.6038670000001) (-115.13694800000002 70.59803800000009) (-115.25250199999994 70.60137900000012) (-115.38054699999998 70.60470600000008) (-115.39943700000003 70.60498000000001) (-115.88971700000002 70.595261) (-115.921944 70.59359699999999) (-115.97609699999998 70.58526600000005) (-116.05555700000002 70.57222000000013) (-116.08556399999992 70.58776900000004) (-116.16251399999999 70.62303200000008) (-116.17111199999994 70.62692300000015) (-116.26363400000002 70.63472000000007) (-116.36389200000002 70.63916000000012) (-116.380829 70.63888500000007) (-116.52999899999992 70.63247700000011) (-116.63221699999997 70.61499000000009) (-116.65583800000002 70.60914600000007) (-116.66915899999998 70.60720800000013) (-116.71501199999994 70.60304300000013) (-116.90110799999997 70.59721400000012) (-116.91972399999997 70.59748800000006) (-117.05972300000002 70.60137900000012) (-117.10056299999997 70.60331700000006) (-117.34584000000001 70.61499000000009) (-117.34973100000002 70.61998000000011) (-117.35861199999994 70.62387100000001) (-117.37666300000001 70.62553400000013) (-117.50556899999998 70.61692800000003) (-117.51528899999994 70.61331199999995) (-117.51806599999986 70.60636899999997) (-117.51862299999993 70.60026600000003) (-117.52500900000001 70.59498599999995) (-117.54360999999994 70.595261) (-117.5594329999999 70.59721400000012) (-117.61305199999998 70.60859700000015) (-117.671112 70.62441999999999) (-117.70472699999999 70.63415500000002) (-117.724716 70.64137300000004) (-117.73777799999993 70.65026899999998) (-117.74194299999994 70.65525800000012) (-117.741669 70.66137699999996) (-117.73944099999994 70.66693099999998) (-117.73473399999995 70.67303500000003) (-117.72222899999986 70.68331900000004) (-117.71417199999996 70.68803400000007) (-117.70944199999985 70.69386300000008) (-117.71140300000002 70.6997070000001) (-117.71806300000003 70.70387299999999) (-117.73581699999994 70.71165500000012) (-117.74694799999997 70.71499599999999) (-117.89806399999998 70.75610400000011) (-117.94554099999999 70.76859999999999) (-118.00890400000003 70.783051) (-118.04750100000001 70.79165600000005) (-118.09277299999997 70.80470300000007) (-118.13583399999999 70.81805400000002) (-118.16750300000001 70.82859800000006) (-118.18776700000001 70.83610499999998) (-118.20584099999996 70.84387200000015) (-118.26445000000001 70.87191800000005) (-118.28028899999993 70.87997400000012) (-118.30972300000002 70.89721700000001) (-118.31639100000001 70.90165700000006) (-118.32972699999993 70.91053799999997) (-118.40862299999998 70.970261) (-118.41750300000001 70.98027000000002) (-118.41972399999986 70.98580900000002) (-118.41944899999993 70.99192800000003) (-118.415009 70.99803200000008) (-118.40862299999998 71.00332600000007) (-118.40055799999999 71.00776699999994) (-118.37082700000002 71.01914999999997) (-118.33944699999995 71.02943399999998) (-118.2725069999999 71.04887400000001) (-117.98055999999997 71.12442000000004) (-117.84973099999996 71.15693700000003) (-117.79666099999992 71.16638200000011) (-117.728882 71.16970800000013) (-117.69055199999997 71.16943400000002) (-117.640289 71.17192100000011) (-117.54305999999991 71.1785890000001) (-117.49445300000002 71.18193100000002) (-117.41665599999988 71.18887300000011) (-117.38722199999995 71.192474) (-117.28859699999992 71.20664999999997) (-116.98528299999998 71.23609899999997) (-116.83666999999997 71.26914999999991) (-116.83332799999994 71.27609300000012) (-116.82472200000001 71.28054800000012) (-116.80055199999993 71.28610200000008) (-116.71333300000003 71.297211) (-116.66972399999992 71.30276500000002) (-116.60166900000002 71.313873) (-116.51777600000003 71.32638499999996) (-116.40583800000002 71.34304800000007) (-116.20889299999993 71.36415099999999) (-116.17722300000003 71.36665300000004) (-116.14195299999989 71.367752) (-116.08556399999992 71.36747700000001) (-116.077789 71.36581400000006) (-116.05249000000003 71.35609399999998) (-115.81027199999994 71.36276199999998) (-115.77667200000002 71.36442599999998) (-115.76083399999993 71.36581400000006) (-115.74638399999998 71.36831700000005) (-115.73416099999986 71.37136800000007) (-115.72693599999997 71.37637300000011) (-115.72666900000002 71.38136299999996) (-115.73306299999996 71.38581800000003) (-115.74416400000001 71.38916000000012) (-115.75805700000001 71.39193700000004) (-115.79055800000003 71.39637800000014) (-115.84166700000003 71.39444000000003) (-115.85582699999992 71.39221200000003) (-115.885559 71.38916000000012) (-115.91915899999998 71.38720699999999) (-115.93360899999999 71.38888500000013) (-116.01777599999997 71.41110199999997) (-116.06471299999998 71.43858300000005) (-115.82805599999995 71.483047) (-115.76306199999999 71.49026500000002) (-115.62082700000002 71.49859600000008) (-115.60472099999993 71.49609400000003) (-115.58444199999991 71.488876) (-115.58416699999998 71.48525999999998) (-115.53555299999994 71.47026100000011) (-115.41555800000003 71.4497070000001) (-115.37832599999996 71.4497070000001) (-115.20028699999995 71.47943099999998) (-115.17527799999988 71.48498500000011) (-115.06667299999998 71.51860000000005) (-115.05750299999994 71.52304100000015) (-115.06194299999999 71.526657) (-115.08168 71.52720599999992) (-115.11361699999998 71.52470400000004) (-115.15638699999994 71.51887500000004) (-115.17054699999994 71.516663) (-115.24553700000001 71.50000000000011) (-115.26000999999997 71.49803199999997) (-115.32224300000001 71.49247700000006) (-115.44275699999992 71.48803700000008) (-115.45973200000003 71.48915100000005) (-115.53859699999998 71.50082400000008) (-115.54998799999998 71.5044400000001) (-115.55860899999999 71.508331) (-115.55583199999995 71.51361100000008) (-115.54332699999986 71.516663) (-115.53083800000002 71.51944000000009) (-115.516663 71.52137800000003) (-115.5122219999999 71.53776600000009) (-115.61888099999987 71.55525200000005) (-115.65499899999992 71.55802900000009) (-115.70638999999994 71.55581700000005) (-115.79194599999994 71.54359399999998) (-115.87638900000002 71.53276100000005) (-115.965012 71.52221699999996) (-116.16027799999989 71.49971000000005) (-116.20805399999995 71.49581899999998) (-116.28250100000002 71.49552899999998) (-116.33389299999999 71.4933170000001) (-116.41361999999998 71.48664899999994) (-116.443604 71.48332200000004) (-116.806107 71.43609600000013) (-116.98610699999995 71.42720000000003) (-117.17666600000001 71.40470900000003) (-117.20111099999997 71.3983310000001) (-117.21528599999994 71.39637800000014) (-117.328056 71.38610800000004) (-117.35944399999994 71.38333100000011) (-117.37721299999987 71.3827510000001) (-117.39835399999998 71.38388099999997) (-117.41221599999994 71.38638300000002) (-117.41665599999988 71.3913730000001) (-117.41610700000001 71.39776600000005) (-117.41306299999997 71.40443400000004) (-117.39083900000003 71.43525700000004) (-117.38110399999994 71.44720500000005) (-117.37832600000002 71.45416300000005) (-117.44776899999988 71.47387700000013) (-117.49445300000002 71.48692300000005) (-117.51750199999998 71.4933170000001) (-117.545837 71.49887100000012) (-117.56276699999995 71.49971000000005) (-117.628601 71.46775800000012) (-117.63333099999994 71.46192900000011) (-117.63166799999999 71.4563750000001) (-117.62471 71.4519350000001) (-117.61305199999998 71.44859300000013) (-117.596657 71.44636500000001) (-117.55583200000001 71.44525100000004) (-117.5369419999999 71.44386299999991) (-117.506393 71.4391480000001) (-117.48332199999999 71.43248000000011) (-117.47888199999989 71.42747500000007) (-117.48194899999999 71.42053200000004) (-117.51722699999999 71.37942500000003) (-117.52749599999993 71.375809) (-117.53943600000002 71.37275700000009) (-117.59416199999987 71.37164300000006) (-117.68138099999993 71.37970000000007) (-117.75666799999999 71.37608300000011) (-117.79444899999999 71.36804200000006) (-117.82749899999999 71.37220800000011) (-117.94833399999999 71.37776200000013) (-118.01500699999997 71.37303200000008) (-118.03278399999994 71.37248200000005) (-118.09084299999995 71.37275700000009) (-118.112213 71.37359600000002) (-118.18536399999999 71.37979100000013) (-118.24388099999999 71.38998400000008) (-118.25556899999998 71.393326) (-118.28362300000003 71.40470900000003) (-118.29750099999995 71.41360500000013) (-118.31111099999993 71.42858900000004) (-118.31527699999992 71.43969700000002) (-118.31471299999998 71.45220900000004) (-118.30943300000001 71.46582000000001) (-118.28999299999992 71.48165900000009) (-118.28195199999988 71.48609899999991) (-118.2633439999999 71.49414100000007) (-118.21250900000001 71.51304600000003) (-118.20221699999996 71.516663) (-118.19027699999998 71.51971400000002) (-118.17804699999994 71.5227660000001) (-118.12609900000001 71.53305100000006) (-118.08612099999988 71.54026799999997) (-118.05444299999999 71.54304500000006) (-117.83583099999998 71.55470300000007) (-117.70722999999998 71.54942299999999) (-117.68720999999994 71.54998800000004) (-117.675003 71.55276500000014) (-117.658051 71.56164600000005) (-117.65139799999992 71.56694000000005) (-117.65583800000002 71.57193000000012) (-117.66999800000002 71.57470699999999) (-117.87304699999993 71.611649) (-117.88722199999995 71.6141510000001) (-117.90888999999999 71.61499000000003) (-117.86361699999998 71.6394350000001) (-117.718887 71.65971400000001) (-117.70694700000001 71.6624910000001) (-117.69638099999992 71.66609199999999) (-117.70084399999996 71.67137100000014) (-117.715012 71.67387400000013) (-117.73665599999993 71.6749880000001) (-118.01000999999997 71.67248499999994) (-118.02778599999994 71.67164600000001) (-118.11665299999993 71.65277100000003) (-118.12693799999988 71.64888000000013) (-118.17278299999998 71.62803600000001) (-118.17749000000003 71.62191800000005) (-118.16388699999993 71.60693399999997) (-118.16639699999996 71.59999099999999) (-118.17666600000001 71.59637499999997) (-118.19082600000002 71.59414699999996) (-118.29998799999993 71.58332800000011) (-118.31777999999991 71.582764) (-118.33444199999997 71.58471700000013) (-118.36527999999998 71.58943199999993) (-118.38639799999999 71.61360200000013) (-118.38612399999994 71.61970500000007) (-118.45500199999987 71.65081800000007) (-118.485817 71.65554800000012) (-118.56639099999995 71.66276600000015) (-118.60527000000002 71.66415400000005) (-118.84166700000003 71.66470299999997) (-118.85555999999997 71.6624910000001) (-118.86389199999996 71.65803500000004) (-118.90387699999997 71.61470000000003) (-118.90387699999997 71.6083220000001) (-118.88971699999996 71.599716) (-118.88027999999991 71.5958250000001) (-118.86609599999997 71.586929) (-118.8683319999999 71.58027600000003) (-118.88054699999998 71.5772090000001) (-118.89778099999995 71.57777400000009) (-118.90972899999991 71.58109999999999) (-119.05027799999999 71.6266480000001) (-119.07472200000001 71.64414999999997) (-119.08416699999998 71.65416000000005) (-119.10582699999998 71.68580600000007) (-119.12471 71.73054500000006) (-119.13445300000001 71.76527399999992) (-119.13445300000001 71.78387499999997) (-119.10555999999991 71.87664800000005) (-119.10305800000003 71.883331) (-119.09194899999994 71.90220599999998) (-119.08750900000001 71.90832499999999) (-118.945831 71.99136400000009) (-118.929169 72.00054899999992) (-118.86694299999999 72.02387999999996) (-118.84249899999998 72.02970900000003) (-118.80166599999995 72.03720099999992) (-118.76471699999996 72.04637099999997) (-118.733612 72.05748000000006) (-118.72501399999987 72.0619200000001) (-118.71665999999999 72.066666) (-118.71028099999995 72.07193000000001) (-118.70556599999992 72.07777400000003) (-118.703056 72.08471700000001) (-118.70749699999999 72.09582499999999) (-118.715012 72.10026600000009) (-118.71972700000003 72.10525500000006) (-118.71945199999999 72.11137400000007) (-118.71749899999998 72.11692800000009) (-118.69193999999999 72.13053900000006) (-118.58860800000002 72.17608600000011) (-118.57640100000003 72.17915299999999) (-118.56194299999999 72.18136600000014) (-118.545547 72.18275499999999) (-118.44248999999996 72.18165599999998) (-118.40583799999996 72.18304400000005) (-118.38945000000001 72.18470800000011) (-118.15722699999992 72.21775800000012) (-118.12832599999996 72.22221400000006) (-118.11945299999996 72.22665400000005) (-118.11277799999993 72.23193400000014) (-118.108047 72.23776200000009) (-118.10527000000002 72.24470500000007) (-118.10417199999995 72.26332100000008) (-118.12138400000003 72.30802900000015) (-118.13082899999995 72.31805400000007) (-118.14527899999996 72.32693499999999) (-118.16471899999993 72.33442700000012) (-118.176941 72.33776900000004) (-118.19193999999999 72.34054600000013) (-118.20916699999998 72.34248400000007) (-118.25140399999998 72.34471100000013) (-118.27166699999992 72.34471100000013) (-118.28832999999992 72.34332300000005) (-118.32528699999995 72.34193400000004) (-118.36416600000001 72.3413700000001) (-118.40695199999993 72.34248400000007) (-118.446663 72.345261) (-118.49109599999997 72.35304300000013) (-118.52306399999992 72.36387600000012) (-118.55499299999997 72.38081400000004) (-118.56973299999999 72.38970900000004) (-118.58194700000001 72.39915500000001) (-118.58860800000002 72.41665599999999) (-118.58805799999999 72.43525699999998) (-118.58528100000001 72.44192499999997) (-118.573059 72.46081500000008) (-118.56833599999993 72.46665999999999) (-118.55027799999999 72.48332199999999) (-118.53694199999995 72.49386600000003) (-118.51972999999992 72.50277699999998) (-118.20722999999998 72.6185910000001) (-118.12554899999998 72.64248700000002) (-118.08306900000002 72.64971900000012) (-117.90361000000001 72.68969700000014) (-117.89083899999991 72.69274900000005) (-117.86888099999993 72.69999700000005) (-117.63305700000001 72.784988) (-117.60193600000002 72.79693600000007) (-117.51944700000001 72.82887300000004) (-117.48999000000003 72.84136999999998) (-117.48111 72.84582500000005) (-117.46472199999994 72.85554500000012) (-117.43611099999993 72.876373) (-117.42054699999994 72.89444000000009) (-117.402222 72.90332000000012) (-117.37999000000002 72.91053800000009) (-117.35360699999995 72.91638200000011) (-117.32333399999993 72.92082199999993) (-117.30638099999993 72.92192100000011) (-117.24916099999996 72.92387400000007) (-117.12721299999998 72.93248) (-116.95639 72.95416300000011) (-116.94138299999997 72.95637499999998) (-116.89972699999998 72.96415700000011) (-116.862503 72.97221400000006) (-116.83805799999999 72.97859200000005) (-116.775284 72.9952550000001) (-116.70722999999998 73.01721199999997) (-116.65972899999991 73.03109700000005) (-116.58750900000001 73.051376) (-116.57417299999997 73.0541530000001) (-116.54167199999995 73.05748000000006) (-116.52416999999991 73.05886800000013) (-116.31916799999993 73.09165999999999) (-116.24221799999998 73.1102600000001) (-116.20195000000001 73.11859099999998) (-116.15556300000003 73.12469500000003) (-115.90055799999993 73.1541600000001) (-115.60973399999995 73.19413800000012) (-115.44082600000002 73.22387700000013) (-115.34638999999999 73.25332600000013) (-115.32305899999994 73.26026900000011) (-115.30915799999997 73.26304600000003) (-115.14917000000003 73.28831500000001) (-115.10221899999999 73.29414400000002) (-115.01418299999989 73.29998800000004) (-114.95111099999997 73.30775499999999) (-114.89417299999997 73.31805400000002) (-114.86638599999998 73.32360800000004) (-114.83056599999998 73.33415200000007) (-114.81054699999999 73.342758) (-114.70722999999992 73.368042) (-114.67555199999998 73.37191800000005) (-114.65778399999999 73.37303200000002) (-114.56166100000002 73.37553400000013) (-114.54083300000002 73.37359599999996) (-114.50527999999991 73.36886600000014) (-114.337784 73.34332300000005) (-114.30499299999991 73.33804299999997) (-114.27500899999995 73.33221400000014) (-114.22609699999987 73.31832900000006) (-114.197769 73.30636600000003) (-114.16306299999997 73.28970300000015) (-114.11054999999999 73.26388500000002) (-114.05610699999994 73.23359700000003) (-114.01666299999994 73.2063750000001) (-113.96167000000003 73.15304600000013) (-113.95694700000001 73.14248700000007) (-113.95388799999989 73.12553399999996) (-113.95749699999999 73.11331200000001) (-113.99582700000002 73.07777399999998) (-114.00499699999995 73.06442300000003) (-114.035553 73.00499000000002) (-114.04750100000001 72.95498700000007) (-114.05499299999997 72.88360599999999) (-114.05277999999998 72.872208) (-114.04915599999998 72.86720300000013) (-114.0427699999999 72.86276200000003) (-114.027222 72.8541560000001) (-113.98166700000002 72.83415200000002) (-113.96888699999994 72.82499700000011) (-113.96777299999997 72.81944299999998) (-113.96945199999999 72.81303400000007) (-113.97582999999992 72.80720500000007) (-113.985817 72.80304000000007) (-113.99749799999995 72.7994230000001)) ((-95.66972399999992 73.60498000000013) (-95.6885989999999 73.603317) (-95.70249899999999 73.60554500000012) (-95.71167000000003 73.61219800000009) (-95.70388799999995 73.61747700000006) (-95.68415799999997 73.6202550000001) (-95.66999799999996 73.62052900000003) (-95.65556300000003 73.61665299999993) (-95.65499899999998 73.609985) (-95.66972399999992 73.60498000000013)) ((-107.89555399999989 73.5413670000001) (-107.93055699999996 73.53942899999998) (-107.9519499999999 73.54026800000008) (-107.97193900000002 73.542755) (-108.00917099999992 73.54803500000008) (-108.02306399999998 73.55137600000012) (-108.07472200000001 73.57638500000007) (-108.08277899999996 73.580826) (-108.08500700000002 73.58581500000014) (-108.083328 73.59721400000006) (-108.07640099999992 73.60359199999999) (-108.066101 73.60859700000003) (-108.05444299999988 73.61248799999993) (-108.04083299999996 73.61554000000007) (-108.00750700000003 73.6185910000001) (-107.89943699999992 73.62275699999998) (-107.86277799999993 73.624146) (-107.82444800000002 73.6244200000001) (-107.80444299999999 73.624146) (-107.68110699999994 73.62136799999996) (-107.61472299999991 73.61470000000003) (-107.60056299999997 73.61137400000013) (-107.58944699999995 73.6077580000001) (-107.58473200000003 73.60304300000007) (-107.58249699999999 73.59776299999999) (-107.58473200000003 73.58665500000001) (-107.59194899999994 73.57998700000002) (-107.60221899999988 73.57527199999998) (-107.64527900000002 73.57026700000011) (-107.65722700000003 73.568604) (-107.7491609999999 73.55581699999999) (-107.89555399999989 73.5413670000001)) ((-124.307503 73.55636600000014) (-124.33167999999995 73.55636600000014) (-124.343613 73.55998199999999) (-124.35193600000002 73.5711060000001) (-124.35861199999988 73.63026400000007) (-124.34612300000003 73.63360600000004) (-124.33138999999994 73.63638300000014) (-124.307503 73.63220200000006) (-124.30332900000002 73.62664800000005) (-124.29387700000001 73.62248199999993) (-124.28222700000003 73.61886600000008) (-124.26806599999992 73.61608899999999) (-124.21028100000001 73.61137400000013) (-124.19360399999994 73.60914600000001) (-124.17944299999994 73.60636900000009) (-124.16777000000002 73.60304300000007) (-124.14916999999997 73.59471100000007) (-124.12666300000001 73.580826) (-124.11972000000003 73.57582100000013) (-124.11554699999988 73.57054100000005) (-124.11389199999996 73.5641480000001) (-124.12638899999996 73.56080599999996) (-124.307503 73.55636600000014)) ((-124.58473199999992 73.67915300000004) (-124.59944199999995 73.676376) (-124.62361099999998 73.67665099999999) (-124.640556 73.67886399999998) (-124.70056199999993 73.68942299999998) (-124.72917199999995 73.694977) (-124.733612 73.70054599999997) (-124.72582999999992 73.70526100000001) (-124.71584299999995 73.70915200000007) (-124.70111099999997 73.711929) (-124.681671 73.71304299999997) (-124.66471899999999 73.71081500000003) (-124.66278099999994 73.70609999999999) (-124.64835399999998 73.70471200000009) (-124.61694299999999 73.69970700000005) (-124.57140399999992 73.69192500000008) (-124.564438 73.68719500000003) (-124.57224299999996 73.68248) (-124.58473199999992 73.67915300000004)) ((-105.089447 73.73526000000004) (-104.96028099999995 73.68858299999994) (-104.84306300000003 73.65081800000007) (-104.71140300000002 73.63081399999993) (-104.69167299999992 73.628311) (-104.675003 73.6249850000001) (-104.58084100000002 73.60026600000015) (-104.53056300000003 73.58137499999992) (-104.51306199999999 73.57304400000004) (-104.49445300000002 73.55941800000005) (-104.49027999999998 73.55470300000002) (-104.48528299999998 73.54470800000013) (-104.48306299999996 73.53442400000012) (-104.512787 73.49304200000006) (-104.55583200000001 73.40332000000001) (-104.56639100000001 73.33471700000013) (-104.56833599999999 73.32916300000011) (-104.57333399999999 73.3230440000001) (-104.58138999999994 73.31666600000011) (-104.60193599999997 73.30636600000003) (-104.64916999999997 73.28082300000011) (-104.69499200000001 73.25221300000004) (-104.76000999999991 73.20387300000004) (-104.76500699999985 73.19775400000003) (-104.76390099999998 73.19247400000012) (-104.79415899999998 73.168045) (-104.86805700000002 73.13665800000007) (-104.97556299999997 73.0852660000001) (-104.98332199999999 73.07887299999999) (-104.98805199999993 73.07304399999998) (-104.98388699999992 73.06805400000007) (-104.97749299999998 73.05304000000001) (-104.97361799999999 73.0316620000001) (-104.97860699999995 73.02554300000008) (-104.984734 73.02053800000004) (-104.99527 73.01582300000001) (-105.031677 73.00416600000005) (-105.0750119999999 72.99720800000006) (-105.08833300000003 72.99414100000013) (-105.13639799999993 72.97886700000004) (-105.14695699999999 72.974152) (-105.22582999999997 72.93304400000011) (-105.30304699999994 72.951096) (-105.31916799999999 72.95416300000011) (-105.339722 72.95555100000001) (-105.354446 72.95332300000007) (-105.35610999999994 72.94775400000003) (-105.33139 72.91053800000009) (-105.32417299999997 72.90609699999999) (-105.279449 72.88554399999992) (-105.25361599999997 72.87858599999998) (-105.237503 72.87553400000002) (-105.21140300000002 72.86859100000004) (-105.20417799999996 72.86415100000005) (-105.2622219999999 72.84860200000008) (-105.27555799999993 72.84553499999998) (-105.28999299999987 72.84776299999999) (-105.38305699999995 72.8666530000001) (-105.43611099999993 72.89665200000013) (-105.443329 72.90109300000006) (-105.45612299999999 72.91526799999997) (-105.458618 72.92553699999996) (-105.45694699999996 72.93136600000003) (-105.45834400000001 72.93637100000007) (-105.46250900000001 72.94136000000003) (-105.57472199999995 72.98442100000005) (-105.73277299999995 73.04775999999998) (-105.91388699999999 73.1455380000001) (-105.94638099999992 73.16026300000004) (-106.09249899999992 73.19970699999993) (-106.08194700000001 73.24108899999999) (-106.32195300000001 73.33888200000013) (-106.44776899999994 73.39305100000013) (-106.45556599999998 73.397491) (-106.46611000000001 73.40138200000007) (-106.72028399999999 73.44999700000011) (-106.88137799999998 73.46331800000007) (-106.89806399999992 73.46192900000005) (-106.91610699999995 73.46138000000008) (-106.9375 73.4624940000001) (-107 73.46971100000002) (-107.016953 73.4727630000001) (-107.02749599999999 73.47637900000001) (-107.03555299999994 73.48082000000011) (-107.034157 73.48637400000007) (-107.02583300000003 73.49859600000008) (-107.01834100000002 73.50499000000008) (-107.00974299999996 73.5105440000001) (-106.97112299999992 73.53166199999998) (-106.92944299999999 73.55053700000013) (-106.89334100000002 73.56248499999998) (-106.74526999999995 73.64804100000015) (-106.70028699999995 73.67608599999994) (-106.65805099999994 73.6952510000001) (-106.64584399999995 73.699142) (-106.61833200000001 73.70526100000001) (-106.57224300000001 73.711929) (-106.32721700000002 73.72665400000011) (-106.18554699999999 73.73359700000015) (-106.03916900000002 73.73136899999997) (-105.80055199999998 73.72692899999998) (-105.72666900000002 73.72859200000005) (-105.68028300000003 73.73498500000005) (-105.66639699999996 73.73776199999992) (-105.637787 73.74443100000002) (-105.61277799999993 73.75221299999998) (-105.58473200000003 73.75804100000005) (-105.569458 73.76026900000005) (-105.53527799999995 73.76277199999998) (-105.51666299999994 73.76332100000013) (-105.30387899999994 73.76220699999999) (-105.28388999999999 73.76165800000001) (-105.16999800000002 73.75555400000002) (-105.14862099999999 73.75416600000005) (-105.10749799999991 73.74359099999998) (-105.089447 73.73526000000004)) ((-80.14222699999988 73.69664000000012) (-80.108612 73.69386300000002) (-80.07444800000002 73.69747900000004) (-79.90139799999997 73.69831800000003) (-79.62554899999998 73.67082199999999) (-79.58612099999999 73.66276600000009) (-79.523056 73.64665200000013) (-79.49305699999996 73.6377720000001) (-79.47639499999991 73.63415499999996) (-79.45194999999995 73.63053900000011) (-79.37361099999998 73.63081399999993) (-78.96166999999997 73.63275099999998) (-78.94610599999999 73.63472000000002) (-78.93443300000001 73.63859600000006) (-78.931107 73.64248700000013) (-78.92887899999994 73.64749100000012) (-78.92416400000002 73.6502690000001) (-78.9125059999999 73.65386999999998) (-78.887787 73.65664700000008) (-78.86138900000003 73.65832499999999) (-78.64416499999993 73.65664700000008) (-78.40834000000001 73.66165200000012) (-78.20666499999999 73.66775500000006) (-78.16639700000002 73.66804500000006) (-78.12777699999998 73.66470300000015) (-78.11332700000003 73.66304000000002) (-78.064438 73.65193200000004) (-78.00973499999998 73.63749700000011) (-77.96528599999994 73.628311) (-77.82305899999994 73.60386700000004) (-77.73860199999996 73.59193399999998) (-77.608047 73.57415800000001) (-77.53500400000001 73.56553600000001) (-77.45388799999995 73.55970800000006) (-77.42443799999995 73.55470300000002) (-77.395554 73.5458220000001) (-77.37304699999993 73.52970900000008) (-77.36332700000003 73.52470399999999) (-77.35139499999997 73.51998899999995) (-77.33833300000003 73.51666300000011) (-77.29472399999997 73.51277200000004) (-77.237213 73.50999499999995) (-77.20306399999993 73.50555400000002) (-77.19193999999999 73.50138900000002) (-77.14862099999999 73.47637900000001) (-77.15361000000001 73.46804800000007) (-77.15722699999998 73.45860300000004) (-77.05526699999996 73.36637900000005) (-77.04888899999992 73.36192299999999) (-76.999435 73.3458250000001) (-76.96972699999998 73.33720399999999) (-76.91361999999998 73.324432) (-76.89334099999996 73.32110599999999) (-76.88417099999992 73.32165500000008) (-76.87887599999993 73.32415800000007) (-76.858612 73.32638500000013) (-76.837219 73.3272090000001) (-76.73638900000003 73.32470699999999) (-76.72193900000002 73.32249500000012) (-76.708054 73.31776400000001) (-76.57972699999999 73.21971100000007) (-76.57749899999993 73.20555100000013) (-76.58500699999996 73.19442700000008) (-76.601944 73.1833190000001) (-76.61972000000003 73.17581200000012) (-76.60527000000002 73.15914900000007) (-76.58694500000001 73.14637800000014) (-76.58222999999998 73.14387499999998) (-76.510559 73.12025499999999) (-76.49554399999994 73.11692800000009) (-76.48750299999995 73.1160890000001) (-76.38194299999998 73.10609399999998) (-76.31361400000003 73.10054000000002) (-76.31249999999994 73.06749000000013) (-76.31806899999992 73.06275900000003) (-76.31945799999994 73.05831899999998) (-76.33306899999991 72.96360799999997) (-76.323059 72.95721400000014) (-76.30943300000001 72.95248400000008) (-76.29167199999995 72.94886800000006) (-76.275284 72.94664000000006) (-76.21194500000001 72.94552600000009) (-76.162216 72.94636500000007) (-76.118607 72.94026200000013) (-76.10360700000001 72.93637100000007) (-76.07722499999994 72.92498800000004) (-76.07167099999992 72.92109700000015) (-76.06221 72.90693700000003) (-76.0594329999999 72.90081800000002) (-76.08639499999998 72.86360200000007) (-76.09388699999994 72.85803199999998) (-76.10388199999994 72.85304300000001) (-76.11527999999993 72.84942600000005) (-76.13110399999988 72.84553499999998) (-76.14999399999999 72.84220900000014) (-76.25140399999998 72.82638500000002) (-76.31555200000003 72.81721499999998) (-76.339722 72.81498700000003) (-76.5625 72.81248499999998) (-76.58167999999995 72.81248499999998) (-76.601944 72.81387300000006) (-76.61860699999988 72.81693999999999) (-76.63417099999998 72.82054100000005) (-76.662781 72.82916300000005) (-76.68138099999993 72.8313750000001) (-76.72193900000002 72.83387800000008) (-76.74082900000002 72.83387800000008) (-76.76750199999992 72.83387800000008) (-76.89195299999994 72.83082599999994) (-76.93721 72.83082599999994) (-77.08475499999997 72.83968400000015) (-77.10166899999996 72.84027100000003) (-77.14388999999994 72.84193399999998) (-77.22694399999995 72.84610000000004) (-77.26583899999991 72.84942600000005) (-77.31443799999994 72.85554500000012) (-77.36582900000002 72.86442600000004) (-77.40055799999999 72.87081899999998) (-77.41610699999995 72.87469500000009) (-77.44721999999996 72.87997400000006) (-77.52278099999995 72.88610800000009) (-77.70417800000001 72.89721699999996) (-77.72332799999998 72.89694199999997) (-77.86000099999995 72.89305100000007) (-77.90417500000001 72.891663) (-77.99777199999994 72.88832100000002) (-78.10722399999992 72.88638300000008) (-78.236359 72.89300500000002) (-78.273056 72.89054900000002) (-78.29722600000002 72.8877720000001) (-78.48611499999998 72.86554000000001) (-78.62388599999997 72.84803799999997) (-78.86582899999996 72.80442799999997) (-79.047775 72.77137800000014) (-79.1619419999999 72.75054899999998) (-79.20916699999992 72.74498) (-79.296112 72.73776199999998) (-79.35916099999997 72.73359700000015) (-79.38249200000001 72.73304700000011) (-79.400284 72.73359700000015) (-79.42916899999994 72.73580900000002) (-79.54333499999996 72.74859600000002) (-79.62388599999997 72.76332100000013) (-79.92777999999993 72.84248400000001) (-79.972778 72.85470599999996) (-79.99861099999998 72.86303700000002) (-80.00917099999992 72.87275699999992) (-80.12083399999995 72.97886700000004) (-80.15167200000002 73.01193200000012) (-80.18138099999993 73.04386900000009) (-80.181107 73.05026200000003) (-80.16416900000002 73.06192000000004) (-80.14723200000003 73.07138100000003) (-80.13473499999992 73.08471699999996) (-80.13166799999999 73.08859300000006) (-80.12887599999999 73.09526100000005) (-80.122772 73.11442599999998) (-80.11000099999995 73.17970300000002) (-80.114441 73.18637100000001) (-80.13444500000003 73.20915200000002) (-80.14306599999992 73.21693399999998) (-80.15194699999995 73.22248799999994) (-80.21694899999994 73.2433170000001) (-80.23805199999998 73.24414100000007) (-80.41528299999993 73.24414100000007) (-80.61999499999996 73.26416) (-80.76000999999991 73.27470400000004) (-80.79750099999995 73.27693200000004) (-80.87609899999995 73.32777399999992) (-80.87609899999995 73.338593) (-80.87249800000001 73.4249880000001) (-80.82028199999996 73.48915099999999) (-80.80999799999995 73.64444000000009) (-80.85777299999995 73.74192800000003) (-80.77166699999992 73.74971) (-80.68331899999998 73.755829) (-80.56054699999987 73.76776099999995) (-80.43499800000001 73.76609800000006) (-80.37332200000003 73.76165800000001) (-80.35305800000003 73.75972000000007) (-80.32084700000001 73.75387600000005) (-80.30860899999999 73.75) (-80.29861499999987 73.7458190000001) (-80.265289 73.73027000000002) (-80.22332799999992 73.71582000000006) (-80.19276399999995 73.70721400000014) (-80.15834000000001 73.69941700000004) (-80.14222699999988 73.69664000000012)) ((-73.35467499999993 68.32921599999997) (-73.328171 68.32820899999996) (-73.31617 68.32871200000005) (-73.30683099999999 68.33054400000009) (-73.21167000000003 68.37692300000003) (-73.23055999999991 68.38415500000013) (-73.25306699999999 68.39082300000013) (-73.27944899999989 68.39498900000001) (-73.30277999999993 68.39610299999998) (-73.31806899999998 68.39305100000007) (-73.35749800000002 68.37136800000013) (-73.35972599999997 68.36498999999998) (-73.35777300000001 68.35748300000006) (-73.35305799999998 68.35247800000002) (-73.34916699999991 68.34498600000006) (-73.34722899999997 68.3374940000001) (-73.34944200000001 68.3311000000001) (-73.35467499999993 68.32921599999997) (-73.50666799999999 68.29136700000004) (-73.589722 68.25471500000003) (-73.59777799999995 68.251938) (-73.620834 68.24609399999997) (-73.63221699999991 68.24664300000006) (-73.63972499999994 68.24971) (-73.85166899999996 68.34220900000014) (-73.85583499999996 68.34664900000001) (-73.89611799999994 68.39221199999992) (-73.88944999999995 68.44470200000012) (-73.87748699999992 68.48109399999993) (-73.87361099999993 68.48776200000009) (-73.86721799999998 68.493042) (-73.85611 68.49748199999999) (-73.823624 68.50332600000002) (-73.80665599999998 68.50387600000005) (-73.74999999999994 68.51081799999997) (-73.73889199999996 68.51499900000005) (-73.73028599999998 68.51998900000007) (-73.72582999999997 68.52581800000007) (-73.70472699999993 68.65664700000002) (-73.75389100000001 68.68359400000008) (-73.76139799999999 68.68637100000001) (-73.774719 68.68969700000002) (-73.8658289999999 68.705826) (-73.89389 68.70776400000011) (-74.09416199999998 68.71998600000006) (-74.10610999999994 68.69053600000001) (-73.99221799999998 68.62469500000003) (-73.88806199999988 68.56164599999994) (-73.88166799999999 68.55664100000007) (-73.88166799999999 68.54971300000011) (-73.90360999999996 68.52777100000003) (-73.92138699999992 68.51193200000012) (-73.94193999999999 68.50471500000003) (-73.99027999999993 68.492752) (-74.02833599999991 68.51361099999997) (-74.17166099999997 68.52165200000002) (-74.221115 68.52526899999998) (-74.35139500000002 68.53692600000011) (-74.366104 68.53915400000005) (-74.37943999999993 68.54220599999996) (-74.39111299999996 68.54637100000014) (-74.51417500000002 68.59999100000005) (-74.52639799999997 68.61080900000002) (-74.53277600000001 68.62164300000012) (-74.53167699999995 68.62637300000011) (-74.59889199999992 68.68193099999996) (-74.70195000000001 68.71887200000009) (-74.71221899999995 68.72303800000003) (-74.72610500000002 68.73027000000013) (-74.72833300000002 68.73719800000009) (-74.72471599999994 68.76609799999994) (-74.71945199999999 68.77053799999999) (-74.66416899999996 68.77415500000012) (-74.62083399999989 68.782486) (-74.591949 68.78887900000001) (-74.57694999999995 68.79304500000006) (-74.56527699999992 68.80219999999991) (-74.54638699999998 68.82249499999995) (-74.54804999999999 68.82859800000011) (-74.55139200000002 68.83055100000001) (-74.604172 68.8416600000001) (-74.63417099999992 68.84637499999997) (-74.648056 68.84721400000012) (-74.66665599999993 68.8458250000001) (-74.67832899999996 68.842758) (-74.68737799999997 68.83599100000004) (-74.71871899999996 68.82482100000004) (-74.72305299999994 68.822319) (-74.72122199999995 68.82115200000004) (-74.71421799999996 68.82098400000001) (-74.70522299999993 68.82165500000008) (-74.68943799999994 68.81971699999997) (-74.67166099999997 68.81887799999998) (-74.66027799999989 68.81581100000011) (-74.639725 68.80748) (-74.63333099999994 68.79693600000013) (-74.63500999999997 68.79332000000011) (-74.648056 68.78942900000004) (-74.66583299999996 68.78665200000012) (-74.77166699999998 68.77415500000012) (-74.91776999999996 68.80137599999995) (-74.91389499999997 68.81721500000009) (-74.83750899999995 68.84082000000006) (-74.787781 68.85443100000003) (-74.76416799999998 68.87204000000003) (-74.74017299999997 68.87271099999998) (-74.72222899999997 68.934143) (-74.86294599999991 68.95417800000001) (-74.87277999999998 68.95500199999998) (-74.88761099999999 68.95417800000001) (-74.89810899999998 68.95251500000006) (-74.92011300000001 68.94667100000004) (-74.935944 68.942001) (-75 68.93760700000007) (-75.00500499999993 68.92997700000006) (-75.03361499999988 68.926086) (-75.04277000000002 68.928314) (-75.04194599999988 68.93026700000013) (-75.021118 68.95304900000002) (-74.96234099999998 68.972824) (-74.95300299999997 68.97848499999998) (-74.91533700000002 68.99282100000005) (-74.90766899999988 68.993988) (-74.764725 69.01944000000003) (-74.74833699999999 69.02137800000014) (-74.73500099999995 69.02192700000012) (-74.729446 69.01944000000003) (-74.75805700000001 69.00888099999997) (-74.752228 69.00248699999997) (-74.675003 69.00694300000004) (-74.65834000000001 69.00833099999994) (-74.64277600000003 69.01165800000007) (-74.63806199999999 69.01609800000011) (-74.64111300000002 69.02137800000014) (-74.65249599999993 69.04026799999991) (-74.78582799999998 69.07638500000007) (-74.82084699999996 69.08221400000008) (-74.83416699999992 69.08166499999999) (-74.84583999999995 69.07859800000006) (-74.94860799999992 69.04887400000001) (-75.04333499999996 69.01332100000002) (-75.05194099999989 69.00860599999999) (-75.03611799999993 68.99220300000007) (-75.03778099999988 68.98580900000007) (-75.07139599999994 68.92109700000003) (-75.07556199999993 68.915817) (-75.10916099999986 68.89498900000012) (-75.11639400000001 68.89082300000001) (-75.12416100000002 68.88804600000009) (-75.139725 68.88472000000007) (-75.16999800000002 68.88638300000002) (-75.19249000000002 68.89166300000005) (-75.20195000000001 68.89444000000015) (-75.31582600000002 68.94220000000013) (-75.37388599999991 68.96887200000003) (-75.383331 68.97442600000005) (-75.400284 68.98553500000014) (-75.42250099999995 69.001938) (-75.44583099999994 69.01693700000004) (-75.45445299999994 69.02110299999998) (-75.46639999999996 69.02137800000014) (-75.478882 69.01971400000014) (-75.49415599999998 69.01638800000012) (-75.52833599999997 69.00582900000006) (-75.56555200000003 68.99359100000004) (-75.573624 68.98858599999994) (-75.57861299999996 68.98414600000012) (-75.58084100000002 68.97554000000002) (-75.57417299999992 68.96832300000011) (-75.53778099999994 68.95109600000006) (-75.50695799999994 68.93969699999997) (-75.49972499999996 68.934708) (-75.49499500000002 68.93026700000013) (-75.53416399999998 68.90387000000004) (-75.54277000000002 68.89887999999996) (-75.56527699999998 68.89137300000004) (-75.60388199999994 68.87970000000001) (-75.64778099999995 68.86914099999996) (-75.80915800000002 68.836929) (-75.97610499999996 68.7910920000001) (-75.979446 68.78720100000004) (-75.98500100000001 68.78387500000002) (-75.99554399999994 68.7794340000001) (-76.00862099999995 68.77554300000003) (-76.04943799999995 68.76443500000005) (-76.22721899999999 68.72110000000004) (-76.327225 68.69747899999999) (-76.37609899999995 68.68748499999998) (-76.420547 68.67915299999999) (-76.43638599999986 68.67720000000003) (-76.45666499999999 68.67526200000009) (-76.54028299999999 68.67330899999996) (-76.55943299999996 68.67303500000003) (-76.57556199999999 68.67414900000006) (-76.59056099999998 68.67637600000006) (-76.62887599999999 68.68691999999993) (-76.66082799999998 68.69941699999993) (-76.67416400000002 68.71026599999999) (-76.68028300000003 68.716095) (-76.68859900000001 68.73359700000003) (-76.689438 68.74054000000007) (-76.68804899999998 68.74693300000001) (-76.678604 68.758331) (-76.666946 68.76915000000008) (-76.63694799999996 68.78166200000004) (-76.60861199999994 68.79414400000007) (-76.57749899999993 68.80831899999998) (-76.56138599999991 68.81805400000002) (-76.546112 68.833054) (-76.537216 68.84220900000008) (-76.523056 68.86387600000012) (-76.52166699999998 68.87025499999999) (-76.52389499999992 68.87637300000006) (-76.53277599999996 68.880539) (-76.54415899999998 68.88304100000005) (-76.55943299999996 68.88499500000006) (-76.57667499999997 68.88499500000006) (-76.59333799999996 68.88333100000006) (-76.60665899999992 68.88304100000005) (-76.61000099999995 68.88472000000007) (-76.64416499999999 68.91110200000014) (-76.65556299999997 68.92469800000009) (-76.65556299999997 68.93054200000012) (-76.64277599999997 69.0038760000001) (-76.64056399999993 69.00915500000008) (-76.62554899999998 69.01832600000006) (-76.60360700000001 69.02581800000002) (-76.57833899999991 69.03221100000013) (-76.54333500000001 69.03831500000001) (-76.50140399999992 69.042755) (-76.42250099999995 69.05053700000013) (-76.368607 69.055252) (-76.34889199999992 69.05497699999995) (-76.33277899999996 69.05442800000003) (-76.24027999999993 69.04832500000009) (-76.208054 69.04414400000002) (-76.14056399999993 69.03471400000012) (-76.124435 69.03109699999999) (-76.11416599999995 69.02777100000014) (-76.09167499999995 69.01165800000007) (-76.08000199999992 69.00637800000004) (-76.06861900000001 69.0038760000001) (-75.99693299999996 69.00303600000007) (-75.96916199999998 69.01026900000011) (-75.90499899999992 69.036926) (-75.81388900000002 69.06776399999995) (-75.65583800000002 69.08055099999996) (-75.63778699999995 69.07998700000002) (-75.61915599999992 69.08137499999992) (-75.6058349999999 69.08526599999999) (-75.59889199999998 69.0894320000001) (-75.59388699999994 69.09971600000011) (-75.56973299999993 69.15277100000003) (-75.569458 69.15832499999999) (-75.571121 69.16387900000001) (-75.59167499999995 69.22164900000007) (-75.60305799999998 69.23887600000012) (-75.61971999999997 69.24941999999999) (-75.66972399999992 69.2711030000001) (-75.75973499999998 69.30497700000012) (-75.78332499999999 69.31359900000012) (-75.95638999999989 69.36608899999993) (-75.97027599999996 69.36914100000007) (-76.16861 69.41137700000007) (-76.20249899999993 69.41387900000012) (-76.24194299999994 69.41331500000001) (-76.29804999999999 69.407761) (-76.41777000000002 69.44720500000011) (-76.60749799999996 69.52970900000014) (-76.637787 69.54664599999995) (-76.64111299999996 69.5541530000001) (-76.64167800000001 69.55748000000006) (-76.62666299999995 69.58137500000004) (-76.61999499999996 69.58638000000008) (-76.61166399999996 69.59109500000011) (-76.4891659999999 69.64833100000004) (-76.47778299999999 69.65220600000004) (-76.45916699999998 69.65443400000004) (-76.44221500000003 69.65304600000007) (-76.34777799999995 69.64027400000009) (-76.26139799999999 69.62664799999993) (-76.22694399999995 69.63720699999999) (-76.18611099999998 69.65971400000006) (-76.18249500000002 69.66360500000013) (-76.18777499999999 69.66526800000008) (-76.22610500000002 69.66470300000003) (-76.29554699999994 69.66026300000004) (-76.37638899999996 69.67137100000002) (-76.38833599999992 69.67387400000001) (-76.39750699999996 69.67804000000007) (-76.39973399999985 69.684143) (-76.45056199999993 69.69026200000008) (-76.53778099999994 69.69609100000008) (-76.55166600000001 69.69552600000003) (-76.63417099999998 69.68359400000008) (-76.641953 69.67997700000012) (-76.63890099999998 69.67330900000013) (-76.63194299999992 69.66970800000007) (-76.61639400000001 69.66748000000013) (-76.58167999999995 69.66693099999998) (-76.55776999999995 69.67330900000013) (-76.5427699999999 69.67469800000015) (-76.53083800000002 69.67221100000006) (-76.51777600000003 69.66276599999998) (-76.52278099999995 69.65248100000008) (-76.53500400000001 69.638596) (-76.55332900000002 69.62525900000014) (-76.56166100000002 69.62025499999999) (-76.68388399999998 69.56581100000011) (-76.69193999999999 69.56303400000002) (-76.70750399999997 69.559418) (-76.73028599999998 69.56025699999992) (-76.84472699999992 69.57609600000006) (-77.13694799999996 69.62637300000011) (-77.18582200000003 69.637497) (-77.19166599999994 69.63970900000004) (-77.20056199999999 69.6461030000001) (-77.20056199999999 69.64888000000002) (-77.19444299999992 69.65721100000007) (-77.164444 69.67608600000005) (-77.15556299999997 69.68054199999995) (-77.144455 69.68220500000007) (-76.94943199999994 69.69552600000003) (-76.93943799999994 69.67970300000002) (-76.92999299999997 69.67776500000008) (-76.89666699999998 69.67915299999999) (-76.86805699999996 69.68470800000006) (-76.82972699999993 69.69581600000004) (-76.82028199999996 69.6994170000001) (-76.80471799999998 69.70860300000004) (-76.79388399999999 69.71859700000005) (-76.791946 69.72164900000001) (-76.781387 69.74304200000012) (-76.781387 69.74859600000008) (-76.83528099999995 69.81581100000005) (-76.851944 69.81359900000001) (-76.9330599999999 69.80970800000011) (-77.02667200000002 69.81191999999999) (-77.150284 69.8160860000001) (-77.29305999999985 69.8288730000001) (-77.30888400000003 69.830826) (-77.31054699999999 69.83581499999997) (-77.30777 69.84027100000009) (-77.29777499999989 69.85108900000006) (-77.28472899999997 69.86053500000003) (-77.25418099999996 69.87692300000009) (-77.24305699999996 69.88136299999991) (-77.20834400000001 69.88665800000001) (-77.11665299999993 69.90138200000001) (-76.99276700000001 69.92719999999997) (-76.98167399999994 69.93165600000009) (-76.97471599999994 69.93580600000007) (-76.98055999999997 69.93803400000002) (-76.99276700000001 69.94053600000012) (-77.00279199999994 69.94053600000012) (-77.12527499999993 69.92581200000006) (-77.14111299999996 69.92248500000011) (-77.164444 69.91526800000003) (-77.18832399999991 69.90609700000005) (-77.22694399999995 69.89498900000007) (-77.26028400000001 69.88749699999994) (-77.43804899999992 69.85720800000007) (-77.50834700000001 69.82666000000012) (-77.45556599999998 69.79832500000009) (-77.44444299999998 69.78942899999998) (-77.44915800000001 69.78471400000012) (-77.55139199999996 69.74775699999992) (-77.55915800000002 69.74498000000006) (-77.57472200000001 69.74136399999998) (-77.59777799999995 69.73915100000005) (-77.60861199999994 69.74026500000002) (-77.61582900000002 69.7416530000001) (-77.6263889999999 69.74498000000006) (-77.637787 69.75387599999999) (-77.64527900000002 69.76081800000009) (-77.64999399999999 69.76971400000002) (-77.66805999999997 69.83665500000006) (-77.69193999999993 69.96304300000003) (-77.695267 69.98803700000002) (-77.69444299999992 70.00027500000004) (-77.69305400000002 70.00610400000005) (-77.68582200000003 70.02304100000009) (-77.678604 70.034988) (-77.67250099999995 70.0455320000001) (-77.66972399999997 70.05220000000003) (-77.66722099999998 70.06219499999997) (-77.66500899999994 70.08804300000008) (-77.66555799999998 70.10693400000014) (-77.66833499999996 70.11303700000008) (-77.67388899999997 70.11970500000001) (-77.67193600000002 70.17719999999991) (-77.67250099999995 70.18054200000006) (-77.67832899999996 70.18775900000014) (-77.685272 70.19136000000003) (-77.81082199999997 70.24552900000009) (-77.88417099999998 70.2586060000001) (-77.89222699999988 70.25804100000005) (-78.133621 70.21527100000009) (-78.23916600000001 70.2038730000001) (-78.34500099999991 70.19720500000011) (-78.35139500000002 70.19747900000004) (-78.36471599999999 70.201096) (-78.40167200000002 70.21249399999999) (-78.40527299999997 70.21415700000011) (-78.48083500000001 70.288589) (-78.406113 70.32693500000005) (-78.396118 70.32804900000002) (-78.38917500000002 70.33221400000002) (-78.39889499999992 70.33638000000008) (-78.42582700000003 70.3477630000001) (-78.43666100000002 70.35108899999994) (-78.48638900000003 70.35693400000008) (-78.5041809999999 70.35803199999998) (-78.521118 70.35775800000005) (-78.53639199999998 70.35636900000003) (-78.55749499999996 70.35137900000001) (-78.573624 70.34553499999998) (-78.57972699999988 70.34304800000007) (-78.583328 70.33692900000005) (-78.58111599999995 70.33415200000013) (-78.56916799999999 70.32554600000003) (-78.56471299999998 70.32026700000006) (-78.56138599999997 70.31414800000005) (-78.56471299999998 70.31025699999998) (-78.578888 70.309708) (-78.65527299999991 70.34693900000013) (-78.66250600000001 70.35054000000002) (-78.70472699999993 70.37469500000003) (-78.74749799999995 70.43887300000006) (-78.858337 70.45387300000004) (-78.90333599999991 70.44941699999993) (-78.94444299999986 70.45027199999998) (-79.03195199999993 70.45498700000002) (-79.07055700000001 70.46971100000007) (-79.09555099999989 70.49304200000012) (-79.100281 70.49832200000003) (-79.08168 70.52998400000013) (-79.06806899999992 70.53637700000007) (-78.89361600000001 70.59054600000013) (-78.87998999999996 70.59471100000013) (-78.86027499999989 70.59664900000007) (-78.83277900000002 70.59443700000003) (-78.82194500000003 70.58970600000009) (-78.81555199999991 70.57748400000014) (-78.81610099999995 70.57331800000003) (-78.81500199999988 70.57193000000012) (-78.80665599999998 70.56498699999997) (-78.78805499999993 70.55609100000004) (-78.7661129999999 70.55026199999998) (-78.73332199999999 70.547211) (-78.71888699999994 70.5477600000001) (-78.72027600000001 70.54914900000011) (-78.84056099999998 70.63499500000012) (-78.851944 70.63804600000009) (-78.86193800000001 70.63720699999999) (-78.86833199999995 70.63220200000012) (-78.86749299999997 70.62858600000004) (-78.86805700000002 70.62441999999999) (-78.87193300000001 70.62191800000005) (-78.87998999999996 70.62109399999991) (-78.91221599999994 70.62136800000002) (-78.96528599999994 70.63275100000004) (-78.97694399999995 70.63581799999997) (-78.99415599999998 70.643326) (-78.99916100000002 70.65138200000007) (-79.00083899999993 70.66276600000015) (-78.99472000000003 70.672485) (-79.000565 70.6769260000001) (-79.00944500000003 70.67970299999996) (-79.025284 70.68026700000013) (-79.04110700000001 70.67858899999999) (-79.05722000000003 70.67275999999998) (-79.152222 70.62776200000008) (-79.158051 70.62220800000011) (-79.15583800000002 70.61747699999995) (-79.14973399999991 70.61303700000013) (-79.13694800000002 70.61080900000002) (-79.097778 70.61026000000004) (-79.06806899999992 70.61554000000012) (-79.14389 70.45387300000004) (-79.15972899999991 70.43803400000013) (-79.17416400000002 70.42804000000012) (-79.18472300000002 70.42359900000002) (-79.20973199999997 70.418045) (-79.22389199999998 70.41943400000002) (-79.23582499999992 70.42330900000002) (-79.26889 70.43637100000001) (-79.29110699999995 70.44693000000007) (-79.29055799999992 70.45359800000006) (-79.291946 70.45971700000007) (-79.30221599999993 70.47360200000014) (-79.30833399999989 70.48027000000013) (-79.38806199999993 70.49275200000011) (-79.40361000000001 70.49331699999993) (-79.412781 70.49165299999993) (-79.42054699999994 70.48887600000006) (-79.57556199999993 70.42942800000003) (-79.58555599999994 70.42137100000002) (-79.59111000000001 70.41360500000002) (-79.59138499999995 70.40914900000007) (-79.58889799999997 70.399429) (-79.57583599999998 70.38998400000008) (-79.56361399999997 70.3855440000001) (-79.42361499999987 70.35582000000011) (-79.42054699999994 70.35971099999995) (-79.41610700000001 70.36360200000001) (-79.40666199999987 70.36747700000001) (-79.38694800000002 70.37164300000012) (-79.37165799999997 70.37109399999997) (-79.3577729999999 70.36970500000001) (-79.31723 70.3602600000001) (-79.295837 70.35304300000001) (-79.28666699999985 70.34971600000006) (-79.26611299999996 70.34109499999994) (-79.252792 70.333328) (-79.24305700000002 70.3247070000001) (-79.23332199999987 70.31860399999994) (-79.22471599999994 70.31608599999998) (-79.20944199999997 70.31330900000006) (-79.12582399999991 70.30470300000013) (-79.10888699999992 70.30497700000006) (-79.09973099999996 70.30859400000003) (-79.08667000000003 70.31776400000007) (-79.08833300000003 70.3247070000001) (-79.09056099999992 70.3294370000001) (-79.08583099999998 70.33859300000006) (-79.07084700000001 70.34082000000012) (-79.05665599999992 70.34136999999998) (-79.03889500000002 70.34054600000002) (-79.027222 70.33943200000004) (-78.98832699999997 70.33137500000004) (-78.96665999999993 70.32331800000009) (-78.93916299999995 70.31109600000013) (-78.92166099999992 70.30081200000006) (-78.79055800000003 70.20555100000001) (-78.777222 70.194977) (-78.76306199999999 70.18359399999997) (-78.75306699999987 70.16943400000008) (-78.74888599999997 70.16220100000004) (-78.73750299999995 70.11498999999998) (-78.68859900000001 70.05497700000012) (-78.68306000000001 70.04637100000002) (-78.68028299999997 70.04026800000008) (-78.66416899999996 70.00416600000011) (-78.66250600000001 69.98304700000011) (-78.66250600000001 69.97303799999992) (-78.665009 69.96138000000008) (-78.67639200000002 69.94525099999998) (-78.68777499999993 69.934418) (-78.7041779999999 69.92414899999994) (-78.791946 69.891098) (-78.84973100000002 69.88610799999998) (-79.06639100000001 69.878311) (-79.17860399999995 69.88388100000009) (-79.200287 69.88443000000001) (-79.37777699999998 69.88610799999998) (-79.40805099999994 69.88499500000006) (-79.474716 69.87858600000004) (-79.526947 69.87191800000005) (-79.54083299999996 69.86886600000014) (-79.553604 69.86470000000003) (-79.56388900000002 69.859985) (-79.57695000000001 69.85582) (-79.60499600000003 69.84999099999999) (-79.63612399999994 69.84803800000003) (-79.68249500000002 69.84887700000002) (-79.69499200000001 69.85108900000006) (-79.70722999999998 69.855545) (-79.77362099999999 69.88554400000004) (-79.78028899999998 69.89054900000008) (-79.78639199999998 69.89721700000001) (-79.79638699999992 69.90832500000005) (-79.80110199999996 69.91554300000001) (-79.80027799999999 69.91720599999996) (-79.80332900000002 69.92747500000002) (-79.83361799999994 69.94941700000004) (-79.89138799999995 69.97387700000007) (-80.05305499999992 69.99720800000011) (-80.16805999999997 70.00637799999998) (-80.19694500000003 70.0080410000001) (-80.23249799999996 70.007767) (-80.26306199999993 70.00248700000009) (-80.27305599999994 69.99971) (-80.29249600000003 69.98692299999999) (-80.30777 69.98109399999998) (-80.31361400000003 69.98027000000002) (-80.32611099999991 69.98027000000002) (-80.33612099999999 69.98220799999996) (-80.43499800000001 70.00499000000008) (-80.45777899999996 70.01332099999996) (-80.46639999999996 70.01805100000001) (-80.47444200000001 70.024429) (-80.48554999999993 70.02943400000004) (-80.54777499999994 70.04414399999996) (-80.56111099999998 70.04693600000007) (-80.57749899999988 70.04887400000001) (-80.597778 70.04803500000003) (-80.65222199999994 70.03887900000007) (-80.66999800000002 70.03997800000008) (-80.78750599999995 70.05053700000013) (-80.906387 70.07083100000006) (-81.06220999999988 70.08554100000003) (-81.22582999999997 70.09693900000002) (-81.285553 70.09526100000011) (-81.37805199999997 70.09248400000001) (-81.42999299999997 70.0935970000001) (-81.46250899999995 70.09637500000008) (-81.60305800000003 70.113876) (-81.69860799999992 70.12858599999998) (-81.71167000000003 70.13053900000011) (-81.72833300000002 70.132202) (-81.745834 70.1308140000001) (-81.75611900000001 70.12831099999994) (-81.76333599999992 70.12303199999997) (-81.76194800000002 70.11747700000006) (-81.737503 70.0935970000001) (-81.71888699999988 70.07916300000005) (-81.70973200000003 70.07443200000012) (-81.68777499999987 70.06776400000012) (-81.67054699999994 70.06526200000008) (-81.62582399999997 70.06275900000009) (-81.55833399999989 70.05693099999996) (-81.53971899999993 70.053314) (-81.531113 70.05081200000012) (-81.464722 70.02470399999999) (-81.31361399999997 70.03221100000013) (-81.26222199999995 70.01638800000006) (-81.18859900000001 69.9910890000001) (-81.16972399999997 69.982483) (-81.15333599999991 69.969986) (-81.15306099999998 69.96360800000002) (-81.1541749999999 69.958328) (-81.150284 69.94581599999998) (-81.14277599999997 69.93803400000002) (-81.136124 69.933044) (-81.12638900000002 69.92776500000002) (-81.089722 69.91387900000001) (-81.02833599999997 69.8936000000001) (-80.99999999999994 69.88610799999998) (-80.93998699999997 69.86276200000009) (-80.79138199999994 69.79054299999996) (-80.76916499999987 69.77804599999996) (-80.76417500000002 69.77053799999999) (-80.76306199999999 69.76721200000009) (-80.76306199999999 69.76081800000009) (-80.77555799999999 69.75221300000004) (-80.82611099999991 69.73359700000003) (-80.83555599999988 69.73027000000008) (-80.84944199999995 69.72720300000015) (-80.93888900000002 69.71470599999998) (-80.95249899999999 69.71388200000001) (-80.95222499999994 69.73275800000005) (-80.95584100000002 69.734421) (-81.01444999999995 69.74552900000015) (-81.023056 69.74609400000003) (-81.03805499999993 69.74859600000008) (-81.07417299999992 69.75804099999999) (-81.09306300000003 69.76443499999999) (-81.10305800000003 69.76832600000006) (-81.11555499999986 69.77693199999999) (-81.12943999999993 69.7977600000001) (-81.1458439999999 69.81248500000004) (-81.166946 69.82138099999997) (-81.17887899999994 69.824997) (-81.21665999999999 69.8336030000001) (-81.354446 69.88026400000012) (-81.43305999999995 69.91304000000008) (-81.48055999999997 69.92692600000004) (-81.49194299999988 69.92970300000013) (-81.59889199999986 69.95248400000014) (-81.68249499999996 69.96443199999999) (-81.79527300000001 69.98858600000011) (-81.94554099999988 70.03997800000008) (-81.95388799999995 70.04386899999997) (-81.95722999999998 70.04721100000006) (-81.958618 70.05276500000008) (-81.96665999999993 70.06053200000002) (-82.06500199999994 70.09582500000005) (-82.1011049999999 70.10803200000004) (-82.214447 70.134995) (-82.36166399999996 70.16137700000007) (-82.44665500000002 70.17498800000004) (-82.47500600000001 70.17942800000009) (-82.61000100000001 70.20721400000014) (-82.7391659999999 70.23776200000009) (-82.91389499999997 70.28276100000011) (-82.93888899999996 70.29220599999996) (-82.952225 70.29637099999997) (-82.97778299999999 70.30192600000004) (-82.9927669999999 70.30358899999999) (-83.006958 70.30470300000013) (-83.04804999999999 70.30693100000013) (-82.89778100000001 70.24859599999996) (-82.82223499999998 70.2208250000001) (-82.68360899999993 70.18997200000013) (-82.573624 70.17164600000012) (-82.49388099999999 70.15887500000002) (-82.41528299999999 70.14305100000007) (-82.2997279999999 70.11886600000008) (-82.10305800000003 70.06526200000008) (-81.97639500000002 70.01220699999999) (-81.84167499999995 69.96331800000002) (-81.77333099999993 69.954163) (-81.75805699999995 69.95166) (-81.72500600000001 69.94413800000007) (-81.72000100000002 69.94108599999998) (-81.71083099999998 69.93414299999995) (-81.73832700000003 69.87608300000005) (-81.74137899999988 69.87275700000004) (-81.85417199999995 69.855545) (-81.88027999999991 69.85247800000008) (-81.96028100000001 69.84414699999996) (-81.96278399999989 69.84471100000013) (-81.96333300000003 69.847488) (-81.96250899999995 69.85276800000008) (-81.96333300000003 69.85775799999993) (-81.97250399999996 69.86248799999998) (-81.99527 69.87248199999999) (-82.00167799999986 69.87469499999997) (-82.011124 69.87580900000012) (-82.02000399999986 69.87387100000001) (-82.06166100000002 69.85942100000005) (-82.11888099999987 69.81469700000008) (-82.11860699999994 69.81053200000008) (-82.12609899999995 69.78498800000006) (-82.12971500000003 69.782486) (-82.14334099999996 69.78137200000003) (-82.18998699999992 69.79026799999997) (-82.243607 69.80165099999999) (-82.27139299999999 69.82638500000013) (-82.24166899999994 69.82804899999996) (-82.22444199999995 69.82360800000004) (-82.21028099999995 69.826096) (-82.20666499999999 69.82859800000006) (-82.21501199999989 69.832764) (-82.30305499999992 69.85664400000013) (-82.31416300000001 69.85748300000012) (-82.40360999999996 69.86026000000004) (-82.41776999999996 69.85775799999993) (-82.52639799999997 69.86080900000013) (-82.57501200000002 69.87081900000004) (-82.64416499999993 69.89248700000002) (-82.74137899999994 69.91024800000014) (-83.035278 69.98803700000002) (-83.04083299999996 69.99304200000006) (-83.04444899999993 70.00416600000011) (-83.05139200000002 70.00860599999993) (-83.066666 70.01081800000003) (-83.15028399999994 70.00972000000013) (-83.23889200000002 69.99887100000007) (-83.33917199999996 69.97943100000009) (-83.34527600000001 69.97720300000009) (-83.61389199999996 69.94886800000012) (-83.65417500000001 69.94636500000013) (-83.71528599999988 69.94775400000015) (-83.89862099999999 69.96081500000008) (-83.94471699999997 69.96582000000012) (-84.00167799999997 69.97415200000012) (-84.01083399999993 69.976654) (-84.041672 69.98136900000003) (-84.08277900000002 69.9852600000001) (-84.16166699999997 69.98498500000005) (-84.31416299999995 69.97970600000008) (-84.56054699999987 69.99386600000003) (-84.65695199999999 70.00248700000009) (-84.7286069999999 70.01026900000005) (-84.78388999999999 70.01887499999998) (-85.16305499999993 70.09137000000004) (-85.17610200000001 70.09304800000012) (-85.33528099999995 70.10247800000002) (-85.35388199999994 70.103317) (-85.36915599999998 70.10359199999999) (-85.66639700000002 70.10470599999996) (-85.71972700000003 70.10359199999999) (-85.75250199999994 70.10192900000004) (-85.84722899999997 70.08888200000007) (-85.86944599999987 70.08554100000003) (-85.87499999999994 70.08332800000005) (-85.87805199999997 70.0769350000001) (-85.87609900000001 70.07193000000007) (-85.85472099999998 70.04081700000006) (-85.85166900000002 70.03831500000013) (-85.83833300000003 70.04193100000003) (-85.82695000000001 70.04637100000002) (-85.80194099999994 70.05442800000003) (-85.785278 70.0583190000001) (-85.73277299999995 70.06693999999999) (-85.69166599999994 70.07054100000005) (-85.63639799999999 70.07193000000007) (-85.61805700000002 70.07083100000006) (-85.585556 70.06749000000002) (-85.4688339999999 70.04926300000005) (-85.376938 70.03221100000013) (-85.350281 70.02638200000013) (-85.25140399999998 69.99832200000009) (-85.24305699999991 69.99498) (-85.23611499999998 69.98915099999999) (-85.23944099999994 69.98664900000006) (-85.24499500000002 69.98442100000011) (-85.25778200000002 69.98387100000008) (-85.41339099999999 69.99742900000012) (-85.44123099999996 70.00093099999998) (-85.45122499999997 70.00176999999991) (-85.57749899999993 70.00999500000012) (-85.61389200000002 70.00999500000012) (-85.63500999999991 70.00749199999996) (-85.651947 70.00360100000006) (-85.6783289999999 69.99525499999999) (-85.695267 69.99136399999992) (-85.72694399999995 69.99053999999995) (-85.808334 69.99859600000002) (-85.82333399999999 70.00027500000004) (-85.851944 70.00555400000002) (-86.09306300000003 70.06248499999998) (-86.23083500000001 70.09860200000014) (-86.25500499999993 70.10554500000012) (-86.30194099999994 70.121643) (-86.32640099999998 70.132202) (-86.551941 70.234985) (-86.556107 70.24470500000012) (-86.58111599999995 70.35693400000008) (-86.577225 70.36554000000001) (-86.55860899999999 70.386932) (-86.541946 70.40138200000013) (-86.52417000000003 70.41165200000006) (-86.512787 70.41638200000006) (-86.48110999999994 70.42469800000015) (-86.44833399999993 70.43165599999998) (-86.37304699999999 70.4458160000001) (-86.31304899999986 70.46276899999998) (-86.29499799999996 70.47276299999999) (-86.28750600000001 70.484421) (-86.29777499999994 70.49414100000013) (-86.31388900000002 70.50277700000004) (-86.33444199999997 70.51165800000012) (-86.35360700000001 70.51944000000009) (-86.36221299999994 70.52276599999993) (-86.37471 70.5252690000001) (-86.39083900000003 70.52221700000001) (-86.38999899999999 70.51998900000007) (-86.38389599999988 70.51361100000008) (-86.37554899999998 70.50888100000003) (-86.36776700000001 70.50471500000015) (-86.350281 70.49832200000003) (-86.33972199999994 70.49165299999993) (-86.339447 70.48637400000013) (-86.34056099999998 70.48387099999997) (-86.36332700000003 70.474152) (-86.37388599999997 70.47026100000011) (-86.40750100000002 70.459991) (-86.51568599999996 70.43364000000003) (-86.56500199999994 70.42553700000013) (-86.57833899999997 70.42221100000012) (-86.589722 70.41747999999995) (-86.62777699999998 70.3955380000001) (-86.65139799999997 70.37469500000003) (-86.662216 70.36109900000008) (-86.65943900000002 70.35720800000001) (-86.63833599999992 70.32443200000006) (-86.64723200000003 70.31944300000009) (-86.65556300000003 70.31887800000004) (-86.839722 70.32026700000006) (-86.86193800000001 70.32222000000002) (-86.87609900000001 70.32609600000006) (-86.88110399999994 70.32971199999997) (-86.99055499999992 70.43165599999998) (-86.98889200000002 70.43553200000002) (-86.98249799999996 70.43887300000006) (-86.95361300000002 70.44247400000012) (-86.936935 70.44331399999999) (-86.92471299999994 70.44609100000008) (-86.922775 70.44775400000003) (-86.92138699999992 70.45166000000006) (-86.92193599999996 70.45555099999996) (-86.92832900000002 70.46054100000003) (-86.93720999999994 70.46360800000014) (-86.95333899999997 70.46720900000003) (-86.96777299999991 70.46804800000012) (-86.99638400000003 70.46748400000001) (-87.03416400000003 70.46415700000006) (-87.07250999999997 70.45748900000012) (-87.08944699999995 70.45332300000001) (-87.132767 70.4391480000001) (-87.14056399999998 70.43498199999999) (-87.18222000000003 70.399429) (-87.18499800000001 70.388596) (-87.05749499999996 70.38165300000003) (-87.04388399999999 70.379974) (-87.03167699999995 70.37747200000013) (-87.01055899999994 70.37164300000012) (-86.991379 70.36415099999999) (-86.98110999999994 70.35803199999998) (-86.97277799999995 70.35192900000004) (-86.97639500000002 70.28471400000006) (-86.98582499999998 70.2816620000001) (-86.99943499999995 70.28054800000012) (-87.00917099999992 70.2810970000001) (-87.10749800000002 70.28804000000008) (-87.18443300000001 70.29553200000004) (-87.25500499999998 70.30664100000007) (-87.5625 70.32276899999994) (-87.67361499999998 70.31915300000009) (-87.66999800000002 70.29859899999997) (-87.64389 70.29582200000004) (-87.628601 70.29304500000012) (-87.61721799999998 70.2894290000001) (-87.610275 70.28471400000006) (-87.61332700000003 70.28193699999997) (-87.62388599999997 70.27804600000007) (-87.70417799999996 70.25721700000008) (-87.77694699999995 70.24331699999999) (-87.79695100000004 70.24026500000008) (-87.83389299999999 70.23803700000013) (-87.8663939999999 70.23887600000006) (-87.914444 70.24136400000009) (-87.92304999999999 70.242752) (-87.93554699999999 70.24693300000007) (-88.01282500000002 70.27726700000011) (-88.088165 70.28509500000013) (-88.13861099999991 70.29609700000003) (-88.25056499999994 70.32138100000003) (-88.26306199999993 70.3252720000001) (-88.26472499999994 70.32804900000002) (-88.256958 70.33387800000003) (-88.21417199999996 70.35137900000001) (-88.20666499999993 70.35247800000013) (-88.06177499999995 70.32954400000006) (-88.05494699999997 70.32736999999997) (-88.0501099999999 70.325043) (-88.03828399999992 70.31553600000012) (-88.03078499999992 70.31403399999999) (-88.02427699999987 70.3132020000001) (-87.99444599999998 70.31203499999998) (-87.91639700000002 70.30192600000004) (-87.9016719999999 70.30442800000014) (-87.88861099999997 70.30802900000003) (-87.87998999999996 70.31137100000012) (-87.88249200000001 70.31637599999999) (-87.88999899999999 70.32193000000001) (-87.91471899999999 70.33166500000004) (-88.083618 70.37803600000007) (-88.11193800000001 70.38415500000008) (-88.166946 70.39444000000003) (-88.37443499999995 70.43220500000012) (-88.43998699999992 70.43858300000005) (-88.57917799999996 70.45027199999998) (-88.67027299999995 70.45359800000006) (-88.67944299999999 70.45359800000006) (-88.69305399999996 70.45526100000012) (-88.797775 70.48970000000003) (-88.89750699999996 70.53276100000005) (-88.91444399999989 70.54609699999997) (-88.98582499999986 70.6083220000001) (-89.00389100000001 70.62498499999998) (-89.00917099999998 70.63638300000002) (-88.99999999999994 70.64553800000004) (-88.99972500000001 70.65165700000006) (-89.00527999999991 70.65693699999997) (-89.07667499999997 70.69693000000001) (-89.10583499999996 70.70748900000007) (-89.11888099999999 70.71138000000013) (-89.14388999999994 70.71720900000014) (-89.203888 70.73719800000003) (-89.261124 70.75972000000013) (-89.285278 70.76971400000014) (-89.33056599999992 70.79193100000003) (-89.36971999999997 70.81469700000008) (-89.37416100000002 70.81915300000014) (-89.44833399999999 70.90248100000002) (-89.4472199999999 70.90664700000008) (-89.44360399999994 70.91026299999993) (-89.43249500000002 70.91526800000003) (-89.41639700000002 70.91859400000004) (-89.37165800000002 70.92581200000006) (-89.29861499999993 70.933044) (-89.22277799999995 70.93553199999997) (-89.20944199999991 70.93914799999999) (-89.20584099999996 70.94274900000005) (-89.18859900000001 70.96081500000003) (-89.195267 70.96832300000005) (-89.20556599999992 70.97360200000003) (-89.27027900000002 70.98359700000015) (-89.31527699999992 70.99165300000004) (-89.34056099999992 70.99748200000005) (-89.35472099999993 71.00193799999994) (-89.49499499999996 71.0577550000001) (-89.54972799999996 71.08859300000012) (-89.49137899999994 71.09220900000014) (-89.46972699999998 71.09193399999992) (-89.22833300000002 71.072769) (-89.21694899999994 71.06999200000007) (-89.20861799999994 71.06303400000007) (-89.21528599999994 71.05664100000013) (-89.21806300000003 71.05081200000012) (-89.21250900000001 71.04553200000004) (-89.20306399999998 71.03804000000008) (-89.19665500000002 71.03526300000004) (-89.178604 71.03137200000015) (-89.13444499999997 71.0269320000001) (-89.11776700000001 71.02665700000011) (-89.10082999999992 71.02777100000009) (-89.07611099999997 71.03027299999997) (-89.03944399999995 71.03526300000004) (-88.97999600000003 71.04109200000005) (-88.90472399999999 71.0452580000001) (-88.68916300000001 71.04693600000002) (-88.61776700000001 71.04443400000014) (-88.49027999999998 71.0310970000001) (-88.47888199999994 71.02970900000003) (-88.43249499999996 71.02192700000006) (-88.38027999999997 71.01193199999994) (-88.36915599999998 71.00749200000013) (-88.36582900000002 71.00193799999994) (-88.36332699999997 70.99552900000009) (-88.362503 70.99026500000014) (-88.36277799999999 70.98414600000007) (-88.36027499999994 70.97776799999997) (-88.35694899999999 70.97221400000012) (-88.34361299999995 70.96138000000008) (-88.33250399999997 70.95721399999996) (-88.3186189999999 70.95387299999993) (-88.28971899999993 70.9502720000001) (-88.26083399999999 70.94775400000009) (-88.02528399999994 70.93054200000006) (-87.99999999999989 70.9291530000001) (-87.96888699999988 70.92858899999993) (-87.93055700000002 70.92942800000009) (-87.912781 70.93136600000003) (-87.8577729999999 70.94136000000003) (-87.79804999999993 70.94970700000005) (-87.752792 70.95359800000011) (-87.699997 70.95555100000007) (-87.66444399999995 70.95471200000009) (-87.62748699999986 70.95138500000013) (-87.61054999999993 70.94941700000004) (-87.55943300000001 70.9474790000001) (-87.43582200000003 70.944977) (-87.371216 70.94472500000012) (-87.35360700000001 70.94525099999993) (-87.345551 70.94941700000004) (-87.34306300000003 70.95416299999994) (-87.343613 70.95942700000012) (-87.33778399999989 70.969986) (-87.32917799999996 70.980545) (-87.30860899999999 70.99552900000009) (-87.29888900000003 71) (-87.28611799999999 71.00416600000011) (-87.26722699999988 71.00694299999998) (-87.24694799999992 71.00915500000008) (-87.21250899999995 71.00749200000013) (-87.15139799999986 71) (-87.141388 70.99775700000004) (-87.11610399999995 70.99470500000012) (-87.05139200000002 70.98776199999998) (-87.033615 70.98664900000006) (-87.01750199999992 70.98664900000006) (-87.0041809999999 70.99026500000014) (-87.00306699999999 70.9910890000001) (-87.002792 70.99414100000001) (-87.00973499999998 70.99609399999997) (-87.039444 71.00082399999997) (-87.13500999999997 71.01138300000002) (-87.16639700000002 71.0144350000001) (-87.18443300000001 71.01527400000009) (-87.27917500000001 71.0269320000001) (-87.38583399999999 71.04193099999998) (-87.39472999999998 71.0435940000001) (-87.40472399999993 71.04721100000006) (-87.41082799999998 71.053314) (-87.47277799999995 71.07415799999995) (-87.57278399999996 71.09526100000005) (-87.70140099999998 71.12330600000007) (-87.712784 71.126083) (-87.76028399999996 71.14305100000007) (-87.84889199999986 71.18498200000005) (-87.85194399999995 71.19192500000003) (-87.85249299999998 71.19720500000011) (-87.848343 71.20220900000004) (-87.82528699999995 71.21720900000003) (-87.823059 71.22360199999997) (-87.81666599999994 71.25471499999998) (-87.82194500000003 71.25833100000006) (-87.82945299999994 71.26193200000012) (-87.84416199999993 71.26416000000006) (-87.900284 71.26860000000005) (-87.91166699999991 71.26693699999998) (-87.97193899999996 71.25027499999999) (-88.01972999999998 71.23609899999997) (-88.03416399999998 71.23165899999998) (-88.04194599999994 71.22886700000004) (-88.131104 71.21914700000013) (-88.32167099999998 71.22859200000005) (-88.583618 71.234985) (-88.70666499999993 71.24775699999998) (-88.84999099999999 71.25972000000002) (-89.058044 71.27638200000001) (-89.20666499999993 71.28332500000005) (-89.29916399999996 71.2874910000001) (-89.42860399999995 71.29443400000008) (-89.703888 71.31581100000011) (-89.816666 71.32499700000005) (-89.83000199999998 71.32887299999999) (-89.89973399999991 71.35137900000012) (-89.90722700000003 71.35470600000008) (-89.964722 71.41137700000002) (-89.968613 71.41693100000003) (-89.98306300000002 71.44693000000001) (-90.01055899999989 71.57777400000009) (-90.01306199999993 71.60026600000003) (-90.00472999999994 71.63081399999999) (-90.00306699999993 71.63581799999997) (-89.99722300000002 71.64137300000004) (-89.964722 71.65582299999994) (-89.93276999999995 71.66775500000011) (-89.89611799999994 71.67997700000006) (-89.88473499999992 71.684708) (-89.81750499999998 71.72470100000004) (-89.808334 71.74775700000009) (-89.82139599999994 71.76026900000005) (-89.83138999999994 71.76026900000005) (-89.83612099999999 71.76165800000007) (-89.84306299999997 71.76443499999999) (-89.89361599999995 71.78942899999993) (-89.954453 71.82054100000005) (-89.96028100000001 71.82415800000001) (-90.02667200000002 71.89276100000006) (-90.04861499999998 71.9538730000001) (-90.00111399999992 72.06303400000007) (-89.99305700000002 72.07054099999999) (-89.962784 72.07748399999997) (-89.81221 72.11192300000005) (-89.75083899999993 72.12303199999991) (-89.73889199999996 72.12498500000004) (-89.72582999999997 72.12469500000003) (-89.718887 72.12191799999994) (-89.71583599999997 72.11859100000004) (-89.70472699999999 72.11331200000001) (-89.69166599999994 72.10998500000011) (-89.6824949999999 72.11053500000014) (-89.66471899999993 72.11331200000001) (-89.59750399999996 72.1483310000001) (-89.57972699999999 72.15887499999997) (-89.57472199999995 72.16360500000002) (-89.57667499999997 72.16914400000002) (-89.58473200000003 72.17581199999995) (-89.59889199999998 72.17804000000012) (-89.61805700000002 72.17886400000009) (-89.67666599999995 72.17692599999998) (-89.70584100000002 72.17469799999998) (-89.724716 72.17248500000005) (-89.73889199999996 72.16859399999998) (-89.75944500000003 72.15998800000006) (-89.77055399999995 72.15748599999995) (-89.78056300000003 72.15748599999995) (-89.80248999999992 72.161926) (-89.89222699999999 72.18691999999999) (-89.89723200000003 72.18858300000005) (-89.90139799999992 72.19413799999995) (-89.93943799999994 72.26193200000006) (-89.95417799999996 72.30497700000006) (-89.95750399999991 72.3160860000001) (-89.95666499999993 72.32165500000013) (-89.91332999999997 72.42221100000006) (-89.90750099999997 72.43220500000007) (-89.89056399999987 72.44497700000005) (-89.87249799999995 72.44914200000005) (-89.860275 72.45109600000012) (-89.81361399999997 72.45665000000008) (-89.79943800000001 72.46026599999999) (-89.79360999999989 72.46276899999992) (-89.777222 72.49386600000003) (-89.77528399999989 72.49859600000008) (-89.77250699999996 72.51998900000001) (-89.77278100000001 72.526093) (-89.78666699999997 72.55998200000005) (-89.75389099999995 72.60554499999995) (-89.73693799999995 72.61665299999999) (-89.69999699999994 72.62525900000009) (-89.67832900000002 72.62942499999997) (-89.65695199999999 72.63026400000012) (-89.64361600000001 72.62692300000009) (-89.61471599999999 72.61608900000004) (-89.59750399999996 72.61470000000003) (-89.57278400000001 72.61692800000014) (-89.56054699999993 72.62191800000005) (-89.47055099999994 72.66609199999999) (-89.47361799999987 72.67248500000011) (-89.51194799999996 72.688873) (-89.525284 72.69386300000002) (-89.54916400000002 72.69108599999993) (-89.56750499999993 72.69303900000006) (-89.57472199999995 72.69886800000006) (-89.58000199999992 72.71110500000003) (-89.58139 72.71775800000006) (-89.57472199999995 72.78526300000004) (-89.56945799999994 72.78692599999994) (-89.479446 72.77970900000003) (-89.44638099999992 72.77554299999997) (-89.36471599999993 72.76220699999999) (-89.33056599999992 72.755829) (-89.29415899999992 72.79721100000006) (-89.333328 72.95054600000014) (-89.358337 72.96527100000009) (-89.36138899999997 72.99165299999999) (-89.30888399999998 73.04832499999998) (-89.22833300000002 73.125809) (-89.04333500000001 73.25248699999997) (-89.03582799999998 73.25749200000001) (-89.00028999999995 73.27832000000012) (-88.99055499999997 73.28359999999998) (-88.85694899999999 73.33610500000003) (-88.69583099999994 73.41192600000011) (-88.68360899999999 73.41748000000007) (-88.46806299999997 73.49192800000009) (-88.43331899999993 73.51415999999995) (-88.40916400000003 73.52360500000003) (-88.28639199999998 73.56693999999999) (-88.26306199999993 73.57388300000002) (-88.0747219999999 73.62776200000002) (-87.97444199999995 73.65470900000014) (-87.92332499999992 73.66775500000006) (-87.81723 73.69442700000013) (-87.78028899999998 73.70304899999996) (-87.73999000000003 73.71138000000008) (-87.539444 73.74664300000006) (-87.45666499999999 73.76026900000005) (-87.18360899999993 73.79275500000011) (-87.04943800000001 73.80831900000004) (-86.71665999999999 73.84082000000012) (-86.59666399999998 73.84526100000005) (-86.49305700000002 73.84443700000008) (-86.40139799999992 73.84582499999999) (-86.239441 73.84915200000012) (-86.208618 73.8499910000001) (-86.10916099999997 73.8499910000001) (-85.747772 73.83638000000013) (-85.70666499999999 73.83221400000002) (-85.55305499999997 73.820831) (-85.52000399999997 73.81999200000007) (-85.46250899999995 73.820831) (-85.42193600000002 73.82415800000012) (-85.30777 73.82110600000004) (-85.16332999999986 73.81330900000006) (-85.12110899999993 73.80998199999999) (-85.10499599999997 73.80802900000003) (-85.06945799999988 73.8019260000001) (-85.03472899999991 73.79470800000007) (-84.97000100000002 73.77777100000009) (-84.837784 73.74165299999999) (-84.84277299999997 73.73580900000002) (-84.86555499999992 73.71331800000002) (-84.92250100000001 73.68026700000007) (-84.93138099999999 73.67553700000002) (-84.95611600000001 73.66526799999997) (-84.98500099999995 73.65582300000011) (-85.34083599999985 73.55636600000014) (-85.59638999999999 73.48664900000011) (-85.76640299999985 73.42526200000003) (-85.85110499999996 73.391098) (-85.93028299999997 73.355255) (-86.04666099999986 73.28720100000004) (-86.137787 73.22886700000004) (-86.29222099999998 73.10331700000012) (-86.29638699999998 73.09748800000006) (-86.29444899999993 73.09109500000011) (-86.28889500000002 73.08720400000004) (-86.28443900000002 73.08248900000001) (-86.28416399999998 73.07720899999998) (-86.287216 73.072495) (-86.32833900000003 73.03665199999995) (-86.45445299999989 72.96360799999997) (-86.474716 72.95332300000007) (-86.49526999999989 72.94331400000004) (-86.50556899999998 72.938309) (-86.57112099999995 72.90887500000002) (-86.62721299999993 72.88360599999999) (-86.64750699999996 72.87330600000007) (-86.65361000000001 72.86886600000008) (-86.65833999999995 72.86360200000007) (-86.69554099999999 72.81915300000014) (-86.69665499999996 72.81666600000005) (-86.73277300000001 72.71609500000011) (-86.70333900000003 72.65914899999996) (-86.69833399999999 72.65220599999998) (-86.686935 72.64471400000002) (-86.662216 72.63165300000009) (-86.63833599999992 72.62052900000003) (-86.61138900000003 72.60914600000001) (-86.50418100000002 72.56860400000005) (-86.47972099999998 72.56053200000008) (-86.46611000000001 72.55636599999997) (-86.45140100000003 72.55304000000012) (-86.41444399999995 72.54165600000005) (-86.39723200000003 72.53498800000006) (-86.35305799999998 72.51165800000007) (-86.33805799999999 72.50305199999997) (-86.28306600000002 72.46832300000011) (-86.27583299999998 72.46331800000007) (-86.26777600000003 72.4563750000001) (-86.25500499999993 72.44358800000009) (-86.24082900000002 72.4202580000001) (-86.24082900000002 72.40664700000013) (-86.24610899999999 72.39498900000012) (-86.25805700000001 72.38443000000007) (-86.27528399999994 72.37387100000001) (-86.308044 72.35914600000007) (-86.35082999999992 72.33915699999994) (-86.37777699999992 72.32360800000004) (-86.39611799999994 72.30914300000012) (-86.42805499999992 72.28193700000008) (-86.43582200000003 72.27026400000005) (-86.45527600000003 72.20721400000008) (-86.43443299999996 72.04998799999993) (-86.43249500000002 72.04332) (-86.42582700000003 72.02499399999999) (-86.420547 72.01277199999998) (-86.33667000000003 71.95193499999999) (-86.16610700000001 71.824997) (-86.13276699999994 71.7958220000001) (-86.11054999999999 71.783051) (-86.07861300000002 71.77554299999997) (-86.05166600000001 71.77165200000007) (-86.02444499999996 71.76582300000007) (-85.94721999999996 71.72692899999998) (-85.90556300000003 71.69970700000005) (-85.87193300000001 71.67692600000004) (-85.50083899999998 71.51110800000009) (-85.39195299999994 71.48165900000009) (-85.37416100000002 71.47886699999998) (-85.22860699999995 71.46554600000007) (-84.94860799999998 71.42164600000007) (-84.93472300000002 71.41832) (-84.92999299999997 71.4144290000001) (-84.85916099999997 71.32110599999999) (-84.83805799999993 71.29193099999992) (-84.83416699999998 71.28526299999999) (-84.83277899999996 71.27886999999998) (-84.83389299999993 71.27415499999995) (-84.835556 71.27165200000002) (-84.848343 71.26944000000015) (-84.868607 71.2688750000001) (-84.92166099999997 71.27082800000005) (-85.041946 71.278595) (-85.1725009999999 71.27249099999995) (-85.17388899999997 71.26998900000007) (-85.17832900000002 71.266388) (-85.38999899999993 71.19664000000006) (-85.39999399999994 71.19386299999996) (-85.50028999999995 71.17720000000008) (-85.514725 71.17608600000011) (-85.53250100000002 71.17720000000008) (-85.66305499999999 71.19442700000013) (-85.76139799999999 71.19220000000007) (-85.83833300000003 71.18748500000004) (-85.93276999999995 71.17886400000009) (-85.96665999999993 71.17109700000015) (-86.17083699999995 71.10693400000008) (-86.21083099999998 71.09387200000009) (-86.21444699999995 71.08970599999998) (-86.206955 71.08387800000008) (-86.20611599999995 71.07804900000002) (-86.212784 71.072769) (-86.24888599999997 71.05859400000008) (-86.28860500000002 71.05220000000003) (-86.408051 71.03526300000004) (-86.45083599999992 71.03137200000015) (-86.51777599999997 71.03166199999998) (-86.64389 71.01943999999997) (-86.74999999999994 71.00776699999994) (-86.7702789999999 71.00416600000011) (-86.785553 71.00027500000004) (-86.79861499999998 70.99636800000007) (-86.81916799999988 70.98942599999998) (-86.82000700000003 70.98858600000011) (-86.80665599999998 70.98387100000008) (-86.75778200000002 70.97665399999994) (-86.71305799999993 70.97415200000006) (-86.60194399999995 70.97164900000007) (-86.54750099999995 70.9788670000001) (-86.43028300000003 70.98887600000012) (-86.29222099999998 71.00027500000004) (-86.27027900000002 71.0027770000001) (-86.22416699999985 71.0144350000001) (-86.026947 71.07138100000009) (-85.83250399999991 71.12719700000014) (-85.80221599999999 71.13581800000003) (-85.77917499999995 71.13916) (-85.67027300000001 71.14888000000008) (-85.650284 71.149429) (-85.50500499999998 71.15803499999993) (-85.41166699999997 71.17442299999999) (-85.39167800000001 71.17498800000004) (-85.28860500000002 71.15914900000013) (-85.27416999999991 71.15525800000006) (-85.11054999999999 71.16165200000006) (-85.04222099999993 71.18165600000003) (-85.037216 71.18304400000011) (-84.99888599999997 71.18748500000004) (-84.96167000000003 71.18858300000011) (-84.94415299999997 71.18719500000003) (-84.87527499999999 71.1727600000001) (-84.84999099999999 71.15470900000008) (-84.84584000000001 71.1477660000001) (-84.87110899999999 71.07360799999992) (-84.87582399999985 71.06999200000007) (-84.87971499999992 71.06944299999992) (-84.90417500000001 71.07804900000002) (-84.93582199999997 71.09248399999996) (-84.95056199999993 71.09693900000002) (-84.96611000000001 71.10026600000009) (-84.9808349999999 71.101089) (-85.00111400000003 71.10081500000007) (-85.14222699999993 71.08638000000013) (-85.14695699999999 71.08276400000005) (-85.11277799999993 71.07916300000005) (-85.06138599999991 71.07638500000002) (-84.99221799999998 71.07748400000003) (-84.9766689999999 71.07582100000008) (-84.96028100000001 71.07222000000002) (-84.92971799999998 71.00444000000005) (-84.92694099999994 70.98803700000013) (-84.93028299999997 70.98165900000004) (-84.94137599999999 70.9705350000001) (-84.95083599999998 70.96554600000013) (-84.96333300000003 70.95582600000006) (-84.975281 70.94525099999993) (-84.97610500000002 70.93331899999998) (-84.97083999999995 70.92747499999996) (-84.96472199999994 70.92248500000011) (-84.958618 70.91943400000008) (-84.94110099999995 70.91804500000006) (-84.81416299999995 70.91943400000008) (-84.79888899999997 70.92164600000012) (-84.79361 70.92665099999999) (-84.74833699999999 70.97553999999997) (-84.74804699999999 70.98803700000013) (-84.771118 71.03749099999999) (-84.803604 71.04721100000006) (-84.81916799999999 71.05748000000011) (-84.827789 71.06832899999995) (-84.82972699999988 71.07331799999992) (-84.828888 71.07998700000002) (-84.82667500000002 71.08554100000015) (-84.80139200000002 71.14860500000003) (-84.766663 71.19747900000004) (-84.77084399999995 71.25499000000002) (-84.78138699999994 71.26193200000012) (-84.78666699999991 71.26776100000012) (-84.79305999999997 71.27804600000002) (-84.79666099999992 71.29748500000011) (-84.79722600000002 71.30331400000011) (-84.7625119999999 71.40664699999996) (-84.74943499999995 71.41665599999999) (-84.73194899999993 71.42469800000015) (-84.720551 71.428314) (-84.69305399999996 71.434143) (-84.67832900000002 71.43525700000004) (-84.66000400000001 71.43165599999998) (-84.65306099999992 71.43193100000013) (-84.57167099999992 71.440811) (-84.55749500000002 71.44413800000012) (-84.54777499999994 71.44747899999999) (-84.53916900000002 71.45166000000006) (-84.53195199999993 71.45694000000015) (-84.52610800000002 71.46887200000009) (-84.52639799999992 71.47831699999995) (-84.53056300000003 71.49247700000006) (-84.53361499999994 71.50248699999997) (-84.54666099999997 71.52748099999997) (-84.55471799999992 71.5410920000001) (-84.56138599999991 71.54998800000004) (-84.56443799999994 71.55247500000013) (-84.610275 71.56275900000014) (-84.63639799999993 71.5705410000001) (-84.64862099999999 71.57638500000013) (-84.65834000000001 71.58387800000014) (-84.65499899999998 71.60887100000002) (-84.65306099999992 71.61276200000009) (-84.64250199999998 71.62275700000004) (-84.62554899999998 71.63304100000005) (-84.61054999999999 71.64166300000005) (-84.604446 71.64610300000004) (-84.60665899999992 71.64942900000011) (-84.625 71.665817) (-84.62805200000003 71.66831999999994) (-84.635559 71.6702580000001) (-84.64973399999997 71.672211) (-84.71083099999993 71.676086) (-84.77305599999994 71.67858899999999) (-84.78277600000001 71.67886399999998) (-84.82749899999999 71.67526200000003) (-84.86721799999992 71.66804500000012) (-84.88620000000003 71.6542510000001) (-84.92666600000001 71.63610799999998) (-84.975281 71.64444000000015) (-85.09750399999996 71.65525800000012) (-85.176941 71.65664700000013) (-85.19665500000002 71.65582299999994) (-85.23083500000001 71.65998799999994) (-85.26390099999998 71.66554300000007) (-85.27972399999999 71.66859400000004) (-85.291382 71.672211) (-85.57084699999996 71.77998400000007) (-85.57972699999999 71.78498800000006) (-85.57362399999994 71.79081700000006) (-85.55777 71.79525799999999) (-85.54388399999993 71.7955320000001) (-85.45889299999999 71.79414399999996) (-85.44972199999995 71.79609700000009) (-85.43693499999995 71.80081200000012) (-85.43276999999995 71.80636600000014) (-85.43194599999998 71.81469700000002) (-85.4344329999999 71.81805399999996) (-85.55166600000001 71.89637800000003) (-85.55972299999996 71.90054300000003) (-85.74499500000002 71.94136000000003) (-85.8458399999999 71.96249400000005) (-85.90083299999998 71.96914700000002) (-85.93998699999997 71.97303800000009) (-85.96333300000003 71.974426) (-86.00250199999999 71.97804300000013) (-86.02278100000001 71.980545) (-86.02667200000002 71.98165899999998) (-86.03916900000002 71.98887600000012) (-86.04361 71.99552900000009) (-86.05082700000003 72.01110799999998) (-86.04750100000001 72.01388500000007) (-85.98111 72.028595) (-85.778885 72.0269320000001) (-85.53832999999997 72.059143) (-85.50944499999991 72.06805400000013) (-85.49527 72.07887299999999) (-85.44055200000003 72.1327510000001) (-85.44915800000001 72.1583250000001) (-85.48194899999993 72.17330900000002) (-85.50167799999997 72.18414300000006) (-85.50250199999999 72.25166300000006) (-85.49749799999995 72.25526400000012) (-85.48721299999994 72.260269) (-85.29194599999988 72.25999500000006) (-85.27194199999997 72.25972000000002) (-85.02917500000001 72.25082400000008) (-85.01333599999998 72.25000000000011) (-84.93638599999991 72.23580900000013) (-84.91999799999996 72.2327580000001) (-84.86776699999996 72.22082500000005) (-84.86138899999992 72.21775800000012) (-84.84750400000001 72.20555099999996) (-84.83917200000002 72.19413799999995) (-84.81527699999992 72.18136600000014) (-84.8033289999999 72.17776500000008) (-84.710556 72.15165699999994) (-84.612213 72.14109800000011) (-84.59583999999995 72.13777200000004) (-84.51222200000001 72.11415099999999) (-84.28639199999998 72.028595) (-84.27555799999993 72.02387999999996) (-84.269455 72.02082800000005) (-84.261124 72.01609800000006) (-84.2580569999999 72.01193200000012) (-84.25 71.99832200000009) (-84.23998999999992 71.97387700000002) (-84.23638900000003 71.96165500000006) (-84.23055999999985 71.95138500000013) (-84.22500600000001 71.94552599999992) (-84.218887 71.94026200000013) (-84.20861799999989 71.93414300000012) (-84.19444299999998 71.93081700000005) (-84.18472299999996 71.93054200000006) (-84.17832900000002 71.93275500000004) (-84.17277499999994 71.93775900000014) (-84.16888399999988 71.94413800000001) (-84.158615 71.97720300000009) (-84.16471899999988 72.0211030000001) (-84.171112 72.02415500000001) (-84.21806300000003 72.04414400000013) (-84.27000399999991 72.051086) (-84.28582799999998 72.05415299999993) (-84.31973299999987 72.0619200000001) (-84.34666399999998 72.06971700000003) (-84.35777299999995 72.07638500000002) (-84.37999000000002 72.10832199999999) (-84.38055399999996 72.12359600000008) (-84.45611600000001 72.13360599999999) (-84.47332799999998 72.13581800000003) (-84.61332699999991 72.16360500000002) (-84.65222199999994 72.17886400000009) (-84.72193900000002 72.21304300000008) (-84.93331899999993 72.284424) (-84.93527199999994 72.28942900000004) (-84.91749599999997 72.29971300000005) (-84.82945299999994 72.3483280000001) (-84.816101 72.35276799999991) (-84.80139200000002 72.35470600000008) (-84.76972999999998 72.35636899999997) (-84.715012 72.35582000000005) (-84.66194199999995 72.35415600000005) (-84.56500199999999 72.34887700000007) (-84.52111799999994 72.35054000000014) (-84.50083899999993 72.3538670000001) (-84.48443599999996 72.3580320000001) (-84.43611099999993 72.37498499999998) (-84.43306000000001 72.37831100000005) (-84.44221500000003 72.38304100000005) (-84.45333900000003 72.38247700000011) (-84.47138999999993 72.37942500000003) (-84.57167099999992 72.36137400000001) (-84.86416600000001 72.36692800000003) (-84.872772 72.36943100000002) (-84.87609899999995 72.37220800000011) (-84.87554899999992 72.39498900000012) (-84.870834 72.40081800000013) (-84.85777299999995 72.40554799999995) (-84.83667000000003 72.40803500000004) (-84.81750499999998 72.40664700000013) (-84.80027799999999 72.40664700000013) (-84.78666699999991 72.40887500000008) (-84.76834100000002 72.44442700000002) (-84.76722699999993 72.44747899999999) (-84.76834100000002 72.45193500000005) (-84.771118 72.45748900000007) (-84.776947 72.458328) (-84.791946 72.45498699999996) (-84.91860999999994 72.42526200000009) (-85.00834700000001 72.39942900000011) (-85.02166699999998 72.39471400000008) (-85.14472999999992 72.35942100000011) (-85.33901999999995 72.40641800000003) (-85.37027 72.41470300000003) (-85.515289 72.45887800000003) (-85.53527799999995 72.46971100000002) (-85.61000100000001 72.53166200000004) (-85.61805700000002 72.54081700000006) (-85.61721799999998 72.5455320000001) (-85.61389200000002 72.55026199999998) (-85.59861799999993 72.555252) (-85.50834700000001 72.56137100000001) (-85.48611499999993 72.56498700000009) (-85.47805799999998 72.568329) (-85.473053 72.57193000000007) (-85.47555499999999 72.57527200000004) (-85.48111 72.57748400000008) (-85.49999999999994 72.58027600000014) (-85.55999800000001 72.58248900000012) (-85.62388599999991 72.58692899999994) (-85.641953 72.59275799999995) (-85.65417499999995 72.59803800000003) (-85.66471899999993 72.60554499999995) (-85.70306399999993 72.63415500000002) (-85.70527600000003 72.63777199999998) (-85.70777899999996 72.64637800000008) (-85.70944199999991 72.73692299999999) (-85.68804899999998 72.89359999999999) (-85.68472300000002 72.89833099999993) (-85.67944299999999 72.90359500000011) (-85.59222399999999 72.95915200000007) (-85.58168 72.96415700000011) (-85.57055700000001 72.96693400000004) (-85.54916400000002 72.96971100000013) (-85.49972500000001 72.974152) (-85.48194899999993 72.974152) (-85.37887599999993 72.97110000000009) (-85.28306600000002 72.96443199999993) (-85.25750700000003 72.96081499999997) (-85.12748699999997 72.94026200000013) (-85.07749899999993 72.92997700000001) (-85.015015 72.9160920000001) (-84.96665999999999 72.90498400000013) (-84.93249499999996 72.89637800000003) (-84.87443499999995 72.88554399999992) (-84.819458 72.88026400000007) (-84.70750399999997 72.86998000000006) (-84.66861 72.86747700000006) (-84.61082499999992 72.86164900000011) (-84.50445599999995 72.84610000000004) (-84.43721 72.83360300000004) (-84.40499899999992 72.82609600000012) (-84.38945000000001 72.82222000000002) (-84.32084700000001 72.80081200000012) (-84.29110700000001 72.79165599999999) (-84.25750700000003 72.78526300000004) (-84.18832399999997 72.77442899999994) (-83.99137899999994 72.7458190000001) (-83.97222899999997 72.74414100000001) (-83.958054 72.74664300000006) (-83.95527599999991 72.74832200000009) (-83.95306399999993 72.75248700000009) (-83.95639 72.75499000000008) (-83.989441 72.76887499999998) (-84.04083299999996 72.77748100000008) (-84.073624 72.78166199999998) (-84.10804699999994 72.78526300000004) (-84.218613 72.79498300000012) (-84.24694799999997 72.79971299999994) (-84.29138199999994 72.81248499999998) (-84.311935 72.82026700000011) (-84.33528099999995 72.82998700000002) (-84.41915899999992 72.85331699999995) (-84.528885 72.88247700000005) (-84.57722499999994 72.89221200000009) (-84.65249599999999 72.89942900000005) (-84.70639 72.90582300000005) (-84.74360699999994 72.91081200000002) (-84.76055899999994 72.914154) (-84.79110700000001 72.92137100000008) (-84.85583500000001 72.93748500000004) (-84.87026999999995 72.94220000000007) (-85.05999800000001 72.996643) (-85.22360999999995 73.01498400000003) (-85.51390100000003 73.01914999999991) (-85.53527799999995 73.021927) (-85.537216 73.02832000000001) (-85.47193900000002 73.09803799999992) (-85.44776899999994 73.12025499999999) (-85.44027699999998 73.12553399999996) (-85.42944299999994 73.13053900000006) (-85.41583299999996 73.13526900000005) (-85.40695199999993 73.13638300000002) (-85.395554 73.1355440000001) (-85.37999000000002 73.13360599999993) (-85.37332200000003 73.13081400000004) (-85.36999500000002 73.12831100000005) (-85.36389199999996 73.12081899999993) (-85.35943599999996 73.11387600000012) (-85.35804699999994 73.10971100000012) (-85.333618 73.09248400000013) (-85.30027799999993 73.07804900000002) (-85.25688899999994 73.0714870000001) (-85.24806199999995 73.06864900000011) (-85.24089100000003 73.06681800000013) (-85.18805700000001 73.05981400000007) (-85.17588799999999 73.0586550000001) (-85.16638899999998 73.06065400000011) (-85.17139399999996 73.06631500000009) (-85.15249599999999 73.07276900000011) (-85.186935 73.09693900000013) (-85.22694399999995 73.11581400000006) (-85.229172 73.12303200000008) (-85.22778299999999 73.12915000000004) (-85.223053 73.13472000000013) (-85.21362299999998 73.13888500000013) (-85.19193999999999 73.14166300000011) (-85.14834599999995 73.14166300000011) (-85.08917199999996 73.137497) (-85.05332900000002 73.13220200000012) (-85.00306699999987 73.12191800000011) (-84.98860200000001 73.11692800000009) (-84.92138699999998 73.09832799999992) (-84.90417500000001 73.09526100000005) (-84.82972699999988 73.08554100000015) (-84.77278100000001 73.08110000000005) (-84.55665599999998 73.06442300000003) (-84.21250899999995 73.04026800000003) (-84.07722499999994 73.03387500000008) (-83.92332499999992 73.03360000000004) (-83.8677669999999 73.02970900000014) (-83.84973100000002 73.02748100000002) (-83.83250399999997 73.02415500000001) (-83.76139799999993 73.0063780000001) (-83.718887 72.9891510000001) (-83.63444500000003 72.98248300000012) (-83.63333099999994 72.9833220000001) (-83.63444500000003 72.98637400000001) (-83.648346 72.99136400000003) (-83.69249000000002 73.00555400000013) (-83.77667200000002 73.03109700000005) (-83.87971500000003 73.05192600000004) (-83.91361999999992 73.05831899999998) (-83.93472300000002 73.06109600000008) (-83.95584100000002 73.06164600000011) (-83.974716 73.06080600000007) (-84.03971899999999 73.05636600000008) (-84.05972300000002 73.05636600000008) (-84.09500100000002 73.05831899999998) (-84.197495 73.06860400000011) (-84.23693800000001 73.08110000000005) (-84.24804699999999 73.083328) (-84.275284 73.08692900000005) (-84.43388400000003 73.10609399999998) (-84.53111299999995 73.1102600000001) (-84.54750100000001 73.11137400000007) (-84.58444199999997 73.11581400000006) (-84.73638900000003 73.13720699999999) (-84.789444 73.14582800000011) (-84.86500499999988 73.16360499999996) (-84.91278099999994 73.17553700000013) (-84.94221500000003 73.18165599999998) (-84.985275 73.19053600000001) (-85.02000399999997 73.19693000000007) (-85.058334 73.20054600000009) (-85.10055499999999 73.20138500000007) (-85.13806199999993 73.20443699999998) (-85.17054699999994 73.21081500000014) (-85.17721599999993 73.21388200000007) (-85.18443300000001 73.21887200000009) (-85.18859900000001 73.22360200000014) (-85.18859900000001 73.22886700000004) (-85.13890099999998 73.29998800000004) (-85.13417099999998 73.30554200000006) (-85.11582899999996 73.31442300000015) (-85.07778899999988 73.32943700000004) (-85.01722699999999 73.3483280000001) (-84.97999600000003 73.35664399999996) (-84.80804399999994 73.38832100000013) (-84.78694200000001 73.38804600000009) (-84.75639299999995 73.38108800000009) (-84.741669 73.37608300000005) (-84.72193900000002 73.36219800000015) (-84.71278399999994 73.34860200000003) (-84.69499200000001 73.32693499999999) (-84.685272 73.31999199999996) (-84.65499899999998 73.30554200000006) (-84.424713 73.23248300000006) (-84.40888999999999 73.22859199999999) (-84.39250199999992 73.226089) (-84.37721299999993 73.224152) (-84.3552699999999 73.22303799999997) (-84.33944699999995 73.226089) (-84.34777799999995 73.23248300000006) (-84.41305499999999 73.27221700000001) (-84.45111099999997 73.28858899999994) (-84.46083099999998 73.29193100000009) (-84.48971599999993 73.29971300000005) (-84.56361399999997 73.31387300000011) (-84.57667499999991 73.31776400000001) (-84.58694500000001 73.3230440000001) (-84.597778 73.33082600000006) (-84.65360999999996 73.38720699999993) (-84.656113 73.39054900000008) (-84.65222199999994 73.393326) (-84.64222699999993 73.39721700000007) (-84.625 73.40138200000007) (-84.58389299999999 73.40914900000001) (-84.43415799999997 73.43525699999998) (-84.28443899999996 73.46110500000009) (-84.229172 73.47026100000005) (-84.19444299999998 73.47470100000004) (-84.17138699999992 73.47526600000009) (-84.11389200000002 73.46914700000008) (-83.75192300000003 73.42749000000003) (-83.72471599999994 73.41304000000008) (-83.71777299999997 73.405823) (-83.71972699999998 73.39971900000012) (-83.72471599999994 73.3938750000001) (-83.72805800000003 73.38108800000009) (-83.72055099999994 73.36581400000006) (-83.71221899999995 73.35192899999993) (-83.70249899999988 73.33915700000011) (-83.68943799999994 73.32360800000004) (-83.66583300000002 73.30775499999999) (-83.65750099999997 73.3035890000001) (-83.648056 73.30026199999998) (-83.63082899999995 73.29721099999995) (-83.61389199999996 73.29609700000015) (-83.60055499999993 73.29748500000005) (-83.59306299999997 73.30137599999995) (-83.59083599999991 73.30720499999995) (-83.59110999999996 73.313309) (-83.59416199999998 73.32527200000004) (-83.62499999999994 73.41526800000003) (-83.63333099999994 73.42886400000003) (-83.64250199999998 73.43969699999997) (-83.65249599999999 73.44525099999998) (-83.66389500000002 73.4497070000001) (-83.67971799999992 73.45387299999999) (-83.69694500000003 73.45721400000002) (-83.754456 73.46331800000007) (-83.81054699999993 73.47053499999998) (-83.95472699999993 73.49275200000005) (-83.97860699999995 73.49664300000012) (-83.993607 73.50027500000004) (-84.00418099999996 73.50416600000011) (-84.00695799999994 73.50972000000013) (-83.99694799999997 73.51388500000013) (-83.979172 73.51805100000001) (-83.74082899999996 73.56776399999995) (-83.57749899999999 73.59637500000008) (-83.445267 73.615814) (-83.21916199999987 73.65664700000008) (-83.08528099999995 73.65776100000005) (-83.01834099999991 73.66609199999994) (-82.931107 73.69053600000007) (-82.90222199999994 73.70027200000004) (-82.88999899999999 73.70526100000001) (-82.87277199999988 73.71554600000013) (-82.86972000000003 73.72109999999998) (-82.86332699999997 73.72608900000012) (-82.85278299999993 73.73027000000002) (-82.84083599999997 73.73275799999999) (-82.82084699999996 73.73359700000015) (-82.63612399999994 73.72776799999991) (-82.52999899999992 73.72221400000012) (-82.47500600000001 73.71998599999995) (-82.41389499999997 73.71887199999998) (-82.36749299999991 73.71914700000002) (-82.21945199999999 73.72526600000003) (-81.99082899999996 73.73136899999997) (-81.61805700000002 73.72109999999998) (-81.57250999999997 73.71971100000013) (-81.55387899999994 73.71720900000008) (-81.53666699999985 73.71388200000013) (-81.47610500000002 73.69802900000008) (-81.45722999999998 73.6910860000001) (-81.28250099999997 73.58027600000014) (-81.23971599999987 73.54693600000007) (-81.228882 73.53553800000009) (-81.21945199999999 73.52137800000014) (-81.19749499999995 73.47720300000015) (-81.18832399999991 73.38970900000004) (-81.21166999999997 73.326096) (-81.21610999999996 73.31469700000008) (-81.21583599999997 73.30386399999992) (-81.21417200000002 73.29193100000009) (-81.20944199999991 73.2727660000001) (-81.20472699999999 73.266663) (-81.19249000000002 73.26054399999998) (-81.17749000000003 73.25637800000004) (-81.10166899999996 73.23831200000006) (-81.07444800000002 73.23220800000007) (-80.90028399999994 73.209427) (-80.71278399999994 73.18026700000013) (-80.66471899999993 73.17109700000009) (-80.64083900000003 73.16554300000013) (-80.61721799999998 73.157761) (-80.59638999999999 73.14804100000009) (-80.55776999999995 73.11137400000007) (-80.54750100000001 73.09803799999992) (-80.54777499999994 73.09136999999998) (-80.54943799999995 73.08194000000009) (-80.59333799999996 73.02581800000007) (-80.61749299999997 73.00555400000013) (-80.641388 72.99609400000008) (-80.64750700000002 72.99054000000007) (-80.65222199999994 72.97470099999998) (-80.65083300000003 72.96914699999996) (-80.63389599999994 72.94053600000007) (-80.64250199999998 72.93553200000008) (-80.64277599999997 72.92886400000009) (-80.63833599999998 72.9227600000001) (-80.537216 72.851089) (-80.51390100000003 72.83888200000001) (-80.48777799999999 72.828598) (-80.44055200000003 72.818604) (-80.40556300000003 72.81330900000012) (-80.34916699999997 72.80636600000014) (-80.33332799999994 72.80304000000007) (-80.31945799999994 72.799149) (-80.29998799999998 72.78804000000014) (-80.283615 72.77748100000008) (-80.24749800000001 72.73054500000006) (-80.2580569999999 72.724426) (-80.33222999999992 72.71249400000005) (-80.36166400000002 72.70609999999999) (-80.44499199999996 72.67359900000008) (-80.46472199999994 72.66526800000003) (-80.541382 72.62886000000015) (-80.55610699999994 72.6202550000001) (-80.55638099999987 72.60720800000007) (-80.64862099999999 72.55497700000001) (-80.67639199999996 72.54721100000012) (-80.765289 72.5169370000001) (-80.94248999999996 72.45526100000012) (-80.95388799999995 72.45054600000009) (-80.98832700000003 72.42970300000002) (-81.186935 72.29914900000011) (-81.19249000000002 72.29359400000004) (-81.19972200000001 72.289154) (-81.22250400000001 72.2816620000001) (-81.23916600000001 72.27777100000003) (-81.30471799999998 72.26832600000012) (-81.37943999999999 72.24165299999993) (-81.36527999999998 72.24165299999993) (-81.30139200000002 72.24609400000003) (-81.28582799999992 72.24720800000006) (-81.25306699999999 72.25193800000005) (-81.24194299999999 72.25443999999993) (-81.22972099999993 72.25860600000004) (-81.16416900000002 72.2872010000001) (-81.03750600000001 72.35108900000012) (-80.92944299999994 72.40026899999998) (-80.82167099999998 72.43914800000005) (-80.715012 72.47303799999997) (-80.60055499999999 72.50665300000003) (-80.58029199999993 72.509995) (-80.55444299999999 72.51249700000005) (-80.53944399999995 72.51165800000007) (-80.52555799999999 72.50804099999993) (-80.51640299999991 72.50387599999993) (-80.508896 72.49664300000012) (-80.50306699999999 72.48498500000011) (-80.49527 72.46415700000006) (-80.49276700000001 72.45304900000002) (-80.493607 72.44720500000005) (-80.51417499999997 72.37970000000001) (-80.52500900000001 72.37414600000005) (-80.54222099999987 72.37052900000009) (-80.56443799999994 72.36665300000004) (-80.60305800000003 72.36303700000013) (-80.65556299999997 72.35192899999998) (-80.66915899999998 72.34721400000012) (-80.68055699999996 72.34220900000008) (-80.78332499999999 72.29026799999997) (-80.79415899999992 72.28471400000001) (-80.80833399999995 72.27415500000012) (-80.854172 72.23553500000003) (-80.89695699999993 72.19442700000008) (-80.90556300000003 72.180542) (-80.816666 72.15054299999997) (-80.769455 72.14166300000011) (-80.75389099999995 72.14054899999996) (-80.70973200000003 72.13192700000013) (-80.58084099999996 72.09443700000008) (-80.569458 72.08831800000007) (-80.56723 72.07720899999998) (-80.56723 72.07276899999994) (-80.57417299999992 72.06832900000012) (-80.58833300000003 72.06414800000005) (-80.63055400000002 72.06219500000009) (-80.646118 72.06330900000006) (-80.68666100000002 72.07304399999998) (-80.74194299999994 72.09414700000008) (-80.94110099999995 72.0874940000001) (-81.08029199999993 72.05165100000005) (-81.08666999999997 72.04664600000001) (-81.08332799999994 72.04553200000004) (-81.06500199999994 72.04165599999993) (-81.04666099999997 72.03997800000002) (-80.99055499999997 72.03776600000015) (-80.92721599999999 72.03776600000015) (-80.906387 72.03997800000002) (-80.89222699999999 72.04414400000013) (-80.88639799999999 72.04971300000011) (-80.87943999999999 72.05415299999993) (-80.86665299999999 72.0577550000001) (-80.84722899999997 72.05664100000013) (-80.79277000000002 72.02777100000003) (-80.79415899999992 72.022491) (-80.82139599999988 71.95637499999998) (-80.833328 71.94581599999998) (-80.84944199999995 71.93470799999994) (-80.88612399999994 71.92082199999999) (-80.93331899999993 71.90887500000002) (-80.97500599999995 71.895828) (-80.98083499999996 71.89027399999998) (-80.983612 71.88638300000014) (-80.97166400000003 71.88165300000009) (-80.950287 71.88108800000003) (-80.92639200000002 71.88275099999998) (-80.90361000000001 71.88526899999994) (-80.86805699999996 71.89305100000007) (-80.76722699999999 71.92942800000009) (-80.75611900000001 71.93414300000012) (-80.75029 71.93969700000008) (-80.74694799999997 71.9452510000001) (-80.74472000000003 71.95193499999999) (-80.745834 71.95748899999995) (-80.75556899999998 71.97109999999992) (-80.75834699999996 71.97776800000008) (-80.74694799999997 71.98248300000012) (-80.65916400000003 72.00305200000008) (-80.63944999999995 72.00637799999993) (-80.620544 72.006104) (-80.53527799999995 72.01609800000006) (-80.44888300000002 72.02916000000005) (-80.410553 72.0394290000001) (-80.38500999999997 72.04832500000003) (-80.35055499999993 72.06915300000009) (-80.34777799999995 72.0752720000001) (-80.34666399999998 72.08110000000005) (-80.34722899999991 72.08831800000007) (-80.35249299999998 72.09553499999998) (-80.358612 72.10137900000001) (-80.37026999999995 72.10803199999998) (-80.38305699999995 72.11331200000001) (-80.410278 72.12136800000007) (-80.43388400000003 72.1327510000001) (-80.44554099999999 72.1397090000001) (-80.45527599999997 72.14665200000007) (-80.47860700000001 72.16859399999998) (-80.48332199999999 72.17526199999992) (-80.48693800000001 72.18304400000005) (-80.48666400000002 72.18942300000015) (-80.46806299999997 72.19192500000003) (-80.42694099999989 72.19108600000004) (-80.40861499999988 72.1891480000001) (-80.39361600000001 72.17720000000008) (-80.37666300000001 72.17442299999999) (-80.35555999999991 72.17442299999999) (-80.33139 72.17608600000011) (-80.2411039999999 72.19775400000003) (-80.23527499999994 72.20332300000001) (-80.24444599999993 72.20971700000007) (-80.27305599999994 72.21914700000013) (-80.27972399999993 72.22554000000008) (-80.30166599999995 72.24859600000013) (-80.30638099999999 72.25526400000012) (-80.29554699999994 72.27442900000005) (-80.28971899999993 72.27998400000013) (-80.27223199999997 72.29026799999997) (-80.26083399999999 72.294983) (-80.24221799999998 72.29748500000011) (-80.22444200000001 72.29637100000014) (-80.19415300000003 72.28776600000009) (-80.15583800000002 72.27360500000009) (-80.13473499999992 72.26277199999993) (-80.11305199999998 72.24414100000013) (-80.08555599999994 72.22665400000005) (-80.02139299999999 72.18969700000008) (-79.99166899999989 72.1766510000001) (-79.962784 72.16886899999997) (-79.94722000000002 72.16526799999991) (-79.89973399999997 72.15554800000001) (-79.84028599999994 72.145264) (-79.79055799999998 72.13777200000004) (-79.761124 72.13415500000008) (-79.68554699999993 72.12637299999994) (-79.67443799999995 72.12664799999999) (-79.67250100000001 72.12970000000007) (-79.691666 72.14166300000011) (-79.71916199999993 72.1483310000001) (-79.78999299999998 72.15582300000005) (-79.81111099999998 72.16026300000004) (-79.85499599999997 72.17109700000015) (-79.92388900000003 72.19053600000001) (-79.941101 72.1958160000001) (-80.045547 72.24247700000012) (-80.15194699999995 72.31053199999997) (-80.16639699999996 72.32222000000013) (-80.16444399999995 72.32748400000014) (-80.15556299999992 72.336929) (-80.13362099999995 72.349716) (-80.11527999999993 72.35942100000011) (-80.07640099999998 72.37885999999997) (-80.06471299999998 72.3836060000001) (-80.05221599999999 72.38777199999998) (-79.99194299999999 72.40277100000009) (-79.95722999999992 72.40832500000005) (-79.87443499999995 72.47053499999998) (-79.870834 72.483047) (-79.86332699999997 72.48969999999997) (-79.8369449999999 72.49859600000008) (-79.82084700000001 72.50138900000007) (-79.79916400000002 72.50138900000007) (-79.78056299999997 72.49942000000004) (-79.77084400000001 72.49664300000012) (-79.73416099999992 72.484421) (-79.70056199999999 72.47248800000011) (-79.69221500000003 72.46693399999992) (-79.7686389999999 72.411766) (-79.68786599999999 72.3843920000001) (-79.59555099999994 72.33471700000013) (-79.63890100000003 72.289154) (-79.66805999999991 72.28082300000011) (-79.70556599999998 72.27360500000009) (-79.72000099999997 72.26944000000009) (-79.731674 72.26470899999998) (-79.75973499999992 72.25054900000009) (-79.76861600000001 72.2452550000001) (-79.77471899999989 72.23970000000003) (-79.775284 72.23332200000004) (-79.76972999999992 72.22581500000013) (-79.75 72.21554600000007) (-79.73277300000001 72.21220399999999) (-79.712784 72.21110499999998) (-79.70111099999997 72.21582000000001) (-79.56582599999996 72.2752690000001) (-79.48500100000001 72.32554599999997) (-79.35555999999991 72.39915500000001) (-79.34249899999998 72.40026899999998) (-79.32972699999999 72.39721700000007) (-79.24333199999995 72.37441999999999) (-79.18249500000002 72.3583220000001) (-79.14666699999998 72.3458250000001) (-79.11332700000003 72.33109999999999) (-79.08222999999992 72.313873) (-79.012787 72.27388000000013) (-78.94554099999993 72.199997) (-78.943604 72.193039) (-78.94694500000003 72.18691999999999) (-79.03639199999998 72.06944300000009) (-79.13612399999994 72.00749200000013) (-79.14500399999997 72.00248700000009) (-79.15666199999998 71.99775700000004) (-79.20638999999994 71.98664900000006) (-79.22999600000003 71.98027000000002) (-79.23306300000002 71.97637900000012) (-79.20306399999998 71.961929) (-79.19027699999998 71.95832800000011) (-79.17639200000002 71.95582600000006) (-79.16111799999993 71.95443700000004) (-79.13861099999991 71.95526100000001) (-79.12304699999993 71.9580380000001) (-79.09973099999996 71.96720900000008) (-79.09083599999985 71.97248800000006) (-79.07223499999992 71.97499099999999) (-79.06111099999993 71.97526600000003) (-79.02667199999996 71.9705350000001) (-78.81806899999998 71.93525700000009) (-78.76889 71.92692599999998) (-78.7225039999999 71.91886900000003) (-78.68388400000003 71.90971400000001) (-78.65306099999998 71.89387500000004) (-78.639725 71.88443000000001) (-78.62582399999985 71.8791500000001) (-78.585556 71.865814) (-78.57139599999988 71.86276200000003) (-78.55139200000002 71.86109899999997) (-78.52917499999995 71.861649) (-78.511124 71.86469999999997) (-78.50361599999997 71.86886600000008) (-78.5083469999999 71.876373) (-78.595551 71.93331899999998) (-78.60749800000002 71.93858300000011) (-78.62222299999996 71.94220000000007) (-78.69137599999999 71.94970700000005) (-78.74055499999997 71.9580380000001) (-78.85555999999985 71.97970600000002) (-78.914444 72.00776700000011) (-78.92361499999998 72.01499900000005) (-78.92443800000001 72.02053800000004) (-78.87748699999997 72.15332000000006) (-78.86944599999993 72.16665600000005) (-78.866104 72.1705320000001) (-78.85444599999994 72.17303500000008) (-78.843613 72.17109700000015) (-78.55444299999999 72.11137400000007) (-78.51222199999995 72.101089) (-78.48777799999993 72.09248400000013) (-78.47610500000002 72.0872040000001) (-78.46083099999993 72.07331800000009) (-78.43277 72.03804000000008) (-78.39527899999996 71.98248300000012) (-78.38999899999999 71.96943700000003) (-78.39277599999997 71.94999700000005) (-78.39167800000001 71.94358799999998) (-78.38667299999997 71.93331899999998) (-78.38194299999992 71.92804000000001) (-78.36527999999993 71.91748000000001) (-78.31777999999997 71.88832100000008) (-78.22666900000002 71.83305400000012) (-78.21083099999998 71.82582100000013) (-78.18499799999995 71.81749000000002) (-78.15760799999998 71.81057700000002) (-78.12304699999993 71.80636600000014) (-78.09056099999992 71.80081200000012) (-78.05972300000002 71.79414399999996) (-77.92443799999995 71.7647090000001) (-77.90777599999996 71.76638800000012) (-77.90444899999994 71.76805100000001) (-77.90695199999999 71.7705380000001) (-77.91416900000002 71.77360500000003) (-77.96665999999993 71.78665200000006) (-77.99749800000001 71.79332) (-78.02972399999993 71.79887400000001) (-78.08583099999998 71.81330900000012) (-78.10722399999992 71.81915300000014) (-78.13999899999993 71.83055100000013) (-78.178879 71.84860200000014) (-78.30888400000003 71.92109699999997) (-78.316666 71.92942800000009) (-78.321396 71.93692000000004) (-78.31500199999999 71.942474) (-78.3052669999999 71.94693000000012) (-78.27917500000001 71.95359800000011) (-78.258896 71.95665000000002) (-78.178879 71.96720900000008) (-78.15695199999993 71.96832300000005) (-78.14167799999996 71.96415700000011) (-78.01861600000001 71.89082300000013) (-77.974716 71.85998499999994) (-77.785553 71.78749099999999) (-77.80776999999995 71.82304400000004) (-77.96000699999996 71.88165300000009) (-78.09695399999998 71.96804800000001) (-78.10722399999992 71.97415200000006) (-78.11639399999996 71.97692899999998) (-78.14973399999997 71.980545) (-78.156387 71.980545) (-78.19610599999993 71.97859200000005) (-78.26222200000001 71.97276300000004) (-78.281387 71.97387700000002) (-78.29861499999998 71.97747800000008) (-78.32250999999991 71.98580900000002) (-78.33416699999992 71.99136400000009) (-78.34111000000001 71.99859600000002) (-78.34249899999992 72.01277199999998) (-78.34167499999995 72.01914999999997) (-78.34167499999995 72.03193699999997) (-78.35694899999993 72.05831900000004) (-78.37554899999998 72.08581500000008) (-78.38667299999997 72.09553499999998) (-78.40222199999994 72.10498000000007) (-78.42443799999995 72.11360200000007) (-78.436935 72.11747700000001) (-78.468887 72.12414600000011) (-78.51501499999995 72.13136300000002) (-78.59999099999999 72.145264) (-78.69665499999996 72.16360500000002) (-78.80999800000001 72.19720500000005) (-78.84249899999992 72.20915200000002) (-78.85472099999998 72.2144320000001) (-78.870834 72.22665400000005) (-78.86915599999992 72.22970600000002) (-78.73472599999997 72.32859800000011) (-78.61582900000002 72.35914600000007) (-78.604172 72.35942100000011) (-78.58056599999992 72.35415600000005) (-78.51583900000003 72.33055100000007) (-78.5125119999999 72.324432) (-78.51916499999999 72.31915300000003) (-78.52833599999991 72.313873) (-78.53332499999999 72.30914300000012) (-78.53694200000001 72.30331400000011) (-78.537781 72.25471500000015) (-78.53138699999994 72.24026500000002) (-78.52917499999995 72.23553500000003) (-78.52084399999995 72.22915599999999) (-78.42193599999996 72.1708220000001) (-78.40834000000001 72.16638200000011) (-78.39973399999997 72.16720600000008) (-78.39083900000003 72.16998299999995) (-78.386124 72.17248500000005) (-78.38417099999998 72.17553700000013) (-78.41111799999999 72.21666000000005) (-78.41471899999993 72.22053500000004) (-78.422775 72.224152) (-78.45973200000003 72.23387100000002) (-78.47277799999995 72.24247700000012) (-78.46833799999996 72.31498699999997) (-78.46278399999994 72.31887800000004) (-78.45111099999991 72.32415800000007) (-78.439438 72.32666) (-78.40834000000001 72.32582100000002) (-78.3052669999999 72.313309) (-78.01251200000002 72.2749940000001) (-77.89361599999995 72.25943000000001) (-77.82749899999999 72.24859600000013) (-77.79388399999999 72.24220299999996) (-77.66528299999987 72.20471200000003) (-77.65527299999997 72.20138500000007) (-77.64862099999999 72.19413799999995) (-77.644455 72.18664600000005) (-77.54083300000002 72.17692599999998) (-77.381104 72.18498200000005) (-77.32417299999986 72.18609600000002) (-77.289444 72.1833190000001) (-77.23998999999998 72.17442299999999) (-77.11582899999996 72.1483310000001) (-77.03944399999995 72.13165300000003) (-77.02333099999998 72.12886000000003) (-77.00611899999996 72.12747200000013) (-76.99722300000002 72.12803600000007) (-76.99583399999995 72.12886000000003) (-76.99471999999997 72.13053900000006) (-77.00500499999998 72.13443000000012) (-77.06861900000001 72.15220600000009) (-77.25167799999991 72.19331399999999) (-77.27806099999998 72.19693000000007) (-77.30694599999993 72.19802900000002) (-77.39723200000003 72.19274899999999) (-77.45584099999996 72.19081100000005) (-77.476944 72.19136000000015) (-77.51417500000002 72.19386299999996) (-77.54998799999998 72.19802900000002) (-77.578888 72.20416300000005) (-77.604172 72.21192900000011) (-77.62388599999991 72.22110000000009) (-77.658615 72.23165899999992) (-77.76083399999993 72.25721700000003) (-77.82305899999994 72.271927) (-77.866104 72.28109700000005) (-77.94999699999988 72.29609700000003) (-78.07250999999997 72.31248500000004) (-78.12138400000003 72.31971699999997) (-78.15472399999999 72.32554599999997) (-78.22000100000002 72.33776900000004) (-78.32695000000001 72.35914600000007) (-78.37388599999997 72.36943100000002) (-78.38917500000002 72.37303200000008) (-78.47332799999998 72.39498900000012) (-78.49916100000002 72.40470900000003) (-78.52084399999995 72.41499300000004) (-78.55915800000002 72.43803400000007) (-78.56111099999993 72.44497700000005) (-78.55665599999992 72.5044400000001) (-78.44305399999996 72.58193999999997) (-78.43055699999996 72.58665500000001) (-78.17027300000001 72.653595) (-78.156387 72.65693700000008) (-78.00167799999991 72.68248000000006) (-77.8699949999999 72.6974790000001) (-77.84500100000002 72.69886800000006) (-77.78083799999996 72.70694000000003) (-77.76861600000001 72.70942700000012) (-77.70140100000003 72.72470100000004) (-77.67027300000001 72.73220800000013) (-77.65695199999988 72.73609900000002) (-77.63999899999999 72.74386599999997) (-77.62748699999997 72.74859600000002) (-77.61389200000002 72.75166300000012) (-77.57640100000003 72.75555400000002) (-77.53222699999992 72.75694300000004) (-77.51362599999999 72.75471500000003) (-77.41305499999987 72.75221299999998) (-77.25973499999998 72.75166300000012) (-77.05581699999999 72.75286100000011) (-77.00250199999999 72.74941999999999) (-76.9472199999999 72.74386599999997) (-76.79972800000002 72.72747800000013) (-76.75306699999999 72.72053499999993) (-76.69305399999996 72.694702) (-76.6849979999999 72.69108599999993) (-76.6625059999999 72.67858899999999) (-76.65360999999996 72.67082199999999) (-76.65527299999997 72.66442900000004) (-76.65972899999997 72.65832499999999) (-76.646118 72.63970899999998) (-76.58473200000003 72.62858599999998) (-76.42832899999996 72.61415100000005) (-76.32833900000003 72.60748300000012) (-76.28832999999992 72.60498000000013) (-76.21528599999994 72.59610000000009) (-76.18221999999997 72.58998100000008) (-76.166946 72.58638000000002) (-76.15556299999992 72.580826) (-76.150284 72.57415800000001) (-76.15472399999993 72.56248500000004) (-76.16055299999994 72.54942299999999) (-76.16583300000002 72.53831500000001) (-76.16250600000001 72.526093) (-76.15611299999995 72.51805100000007) (-76.12165799999991 72.47831700000012) (-76.10777300000001 72.47303799999997) (-76.087784 72.47164899999996) (-76.069458 72.4749910000001) (-76.04638699999987 72.48359700000003) (-76.0369419999999 72.48942600000004) (-76.03778099999994 72.49636800000013) (-76.05221599999999 72.51138300000008) (-76.06861900000001 72.52581800000002) (-76.07722499999994 72.53637700000007) (-76.07417299999992 72.54165600000005) (-76.06471299999987 72.54998800000004) (-76.01889 72.57443199999994) (-76.00584399999997 72.57916300000011) (-75.98860199999996 72.580826) (-75.93194599999993 72.5836030000001) (-75.88528400000001 72.58415200000007) (-75.84194899999994 72.58305399999995) (-75.79888899999997 72.58193999999997) (-75.75917099999998 72.57916300000011) (-75.56806899999998 72.55747999999994) (-75.55332899999996 72.5535890000001) (-75.54722600000002 72.5455320000001) (-75.53778099999994 72.53970300000009) (-75.52111799999989 72.53610200000003) (-75.47222899999991 72.52748099999997) (-75.435272 72.52249100000006) (-75.37943999999993 72.51638800000012) (-75.36000100000001 72.51554899999996) (-75.30166600000001 72.50972000000013) (-75.231674 72.50054900000003) (-75.21528599999988 72.4974820000001) (-75.19249000000002 72.49192800000009) (-75.18666100000002 72.4874880000001) (-75.18916300000001 72.47831700000012) (-75.19915800000001 72.46693399999992) (-75.200287 72.46192900000005) (-75.16027799999995 72.42109700000009) (-75.13249200000001 72.3936000000001) (-75.054169 72.3288730000001) (-75.03416400000003 72.31749000000013) (-75 72.29836999999998) (-74.98055999999991 72.28831500000007) (-74.95083599999998 72.26998900000007) (-74.943604 72.26332100000008) (-74.94249000000002 72.25582900000012) (-74.94749499999995 72.2497100000001) (-75.04499799999996 72.18830899999995) (-75.06806899999992 72.17915299999999) (-75.225281 72.1224820000001) (-75.23832699999991 72.1183170000001) (-75.25306699999993 72.11637899999994) (-75.27166699999998 72.11720300000007) (-75.29138199999989 72.11943100000008) (-75.32362399999994 72.12553400000002) (-75.3875119999999 72.13443000000012) (-75.44055200000003 72.14109800000011) (-75.47778299999999 72.14471400000014) (-75.52000399999997 72.14610299999998) (-75.60749800000002 72.14332600000006) (-75.71000699999996 72.13665800000007) (-75.73332199999993 72.13415500000008) (-75.81388900000002 72.1224820000001) (-75.86665299999999 72.113876) (-76.015015 72.08665500000012) (-76.03332499999993 72.08110000000005) (-76.05471799999987 72.07304399999998) (-76.07806399999998 72.059418) (-76.08416699999992 72.04971300000011) (-76.09973100000002 72.02887000000004) (-76.11193800000001 72.01805099999996) (-76.12805200000003 72.00416600000005) (-76.14222699999993 71.99331699999999) (-76.15638699999988 71.98526000000004) (-76.17361499999998 71.97554000000014) (-76.19249000000002 71.967758) (-76.23472600000002 71.95748899999995) (-76.2625119999999 71.94970700000005) (-76.27444500000001 71.94442700000013) (-76.30166599999995 71.93054200000006) (-76.31834400000002 71.919983) (-76.34805299999988 71.891663) (-76.31082200000003 71.88472000000002) (-76.08972199999994 71.9788670000001) (-76.07305899999994 71.98942599999992) (-76.06332399999997 72) (-76.0497279999999 72.01776100000012) (-76.04750100000001 72.02360499999998) (-76.04360999999994 72.03027299999997) (-76.02944899999994 72.04109199999999) (-76.01972999999998 72.04609700000003) (-75.99861099999998 72.05415299999993) (-75.95611599999995 72.06721500000015) (-75.89445499999988 72.08221400000002) (-75.82833899999997 72.09693900000013) (-75.79666099999992 72.10359199999994) (-75.710556 72.11331200000001) (-75.63055400000002 72.11970500000001) (-75.58612099999999 72.12164300000012) (-75.52833599999997 72.12081899999998) (-75.48805199999993 72.11886600000003) (-75.43306000000001 72.11276199999998) (-75.23332199999993 72.08415200000013) (-75.22610500000002 72.08027600000008) (-75.21945199999988 72.07443200000006) (-75.218887 72.07026700000006) (-75.221115 72.06469699999997) (-75.22888199999994 72.059143) (-75.25527999999991 72.04609700000003) (-75.28167699999989 72.03858900000006) (-75.31750499999993 72.03166199999993) (-75.33833299999998 72.02887000000004) (-75.40417499999995 72.02554300000008) (-75.449432 72.02526899999998) (-75.49415599999998 72.02137800000008) (-75.515015 72.018326) (-75.54804999999999 72.01110799999998) (-75.57417299999992 72.00360100000006) (-75.58667000000003 71.99914600000005) (-75.60638399999993 71.98942599999992) (-75.61389200000002 71.98387100000002) (-75.61888099999999 71.97859200000005) (-75.68666100000002 71.88304099999999) (-75.697495 71.85832200000004) (-75.69137599999988 71.85026600000015) (-75.68804899999992 71.84275800000012) (-75.6875 71.83915700000006) (-75.69221500000003 71.83332800000005) (-75.80249000000003 71.75054899999998) (-75.83000199999998 71.73664900000011) (-75.8722229999999 71.72137500000002) (-75.89834599999995 71.71443200000004) (-75.93415799999997 71.71110500000009) (-75.95361299999996 71.7102660000001) (-75.9974979999999 71.70915200000013) (-76.04028299999993 71.70942699999995) (-76.06750499999987 71.70665000000008) (-76.07917799999996 71.7044370000001) (-76.09083599999991 71.70220899999998) (-76.096115 71.6974790000001) (-76.09583999999995 71.69386300000008) (-76.08528100000001 71.69192499999991) (-75.90167199999996 71.70109600000006) (-75.88027999999997 71.70248400000014) (-75.84695399999998 71.70860299999998) (-75.81945799999994 71.7169340000001) (-75.79499800000002 71.72581500000001) (-75.78721599999994 71.73054500000006) (-75.675003 71.81053200000002) (-75.65499899999998 71.82609600000012) (-75.58000199999987 71.90609700000005) (-75.57028199999996 71.91748000000001) (-75.56582599999996 71.92970300000007) (-75.56722999999994 71.93748500000004) (-75.57028199999996 71.94136000000003) (-75.57444799999996 71.95304899999996) (-75.57194499999997 71.95887800000014) (-75.56916799999999 71.96388200000013) (-75.558334 71.97665400000011) (-75.53860500000002 71.98637400000001) (-75.51333599999992 71.99525499999999) (-75.49804699999993 71.99914600000005) (-75.47666900000002 72.00082399999997) (-75.414444 71.99971) (-75.3719329999999 71.99775700000004) (-75.3494419999999 71.99803200000002) (-75.32778899999994 71.99941999999999) (-75.24888599999997 72.01277199999998) (-75.19776899999994 72.02331500000014) (-75.17443799999995 72.03193699999997) (-75.15861499999994 72.04165599999993) (-75.15028399999994 72.0577550000001) (-75.13500999999997 72.08055100000007) (-75.12999000000002 72.08638000000013) (-75.11915599999986 72.09637500000002) (-75.10916099999986 72.101089) (-75.093613 72.10803199999998) (-75.08138999999994 72.11303700000002) (-75.05139200000002 72.12191799999994) (-75.03582799999992 72.125809) (-75.01251199999996 72.12831100000011) (-75 72.12852500000002) (-74.98443599999996 72.12747200000013) (-74.95167500000002 72.12330600000007) (-74.83500699999996 72.10386699999998) (-74.80139199999996 72.09832799999998) (-74.76444999999995 72.09471100000002) (-74.65943900000002 72.09109499999994) (-74.62554899999992 72.09136999999998) (-74.535278 72.08970599999998) (-74.31639099999995 72.08221400000002) (-74.29722600000002 72.08082600000012) (-74.26000999999997 72.07609600000006) (-74.24415599999986 72.07304399999998) (-74.23332199999999 72.06748999999996) (-74.21806299999997 72.05802900000003) (-74.17748999999992 72.03193699999997) (-74.12222299999996 71.98359700000009) (-74.11776699999996 71.96998599999995) (-74.11944599999998 71.95582600000006) (-74.16610700000001 71.87469500000009) (-74.17111199999994 71.86859100000004) (-74.18499800000001 71.85581999999994) (-74.22999600000003 71.822769) (-74.24305699999996 71.818604) (-74.26333599999998 71.815811) (-74.40306099999992 71.80386400000009) (-74.43998699999986 71.80192599999992) (-74.460556 71.80276500000008) (-74.47778299999993 71.80497700000012) (-74.50140399999998 71.80970800000006) (-74.51362599999987 71.81805399999996) (-74.57055700000001 71.80941800000005) (-74.60499600000003 71.78471400000012) (-74.67832899999996 71.74525499999999) (-74.69610599999993 71.73858600000011) (-74.71362299999987 71.7352600000001) (-74.88500999999991 71.70860299999998) (-75 71.71191400000004) (-75.04666099999992 71.71609500000011) (-75.09056099999992 71.71804800000007) (-75.13667299999997 71.7169340000001) (-75.158051 71.71527100000014) (-75.34277299999991 71.69581599999998) (-75.36389200000002 71.69136000000009) (-75.37860099999995 71.68692000000004) (-75.38999899999999 71.68109100000004) (-75.39388999999994 71.67747500000002) (-75.391953 71.67469800000009) (-75.38500999999991 71.6744230000001) (-75.24194299999988 71.68609600000008) (-75.17832900000002 71.69413800000007) (-75.08500700000002 71.70082100000008) (-75.04361 71.69970700000005) (-75.02500899999995 71.69802900000013) (-75.00917099999992 71.69497700000005) (-74.941101 71.67469800000009) (-74.93415800000002 71.67082200000004) (-74.93360899999999 71.66387900000001) (-74.93638599999997 71.65803500000004) (-74.94554099999993 71.65248100000002) (-74.95611599999995 71.64833100000004) (-75.008896 71.63192700000008) (-75.05555700000002 71.62248199999999) (-75.11416600000001 71.61109899999997) (-75.19415299999997 71.5955350000001) (-75.206955 71.59193400000004) (-75.39834599999995 71.5252690000001) (-75.40972899999997 71.51971400000002) (-75.40833999999995 71.51470899999998) (-75.40638699999994 71.51220700000005) (-75.40222199999994 71.51249700000005) (-75.20527600000003 71.54637100000008) (-75 71.60723899999999) (-74.86111499999993 71.64942900000011) (-74.85166899999996 71.65498400000001) (-74.79943799999995 71.67886399999998) (-74.78416399999998 71.68275500000004) (-74.7183379999999 71.69358800000003) (-74.69776899999994 71.69636500000013) (-74.68666100000002 71.69636500000013) (-74.67277499999994 71.69247400000006) (-74.63194299999998 71.6624910000001) (-74.62971499999992 71.65277100000003) (-74.63194299999998 71.64637800000008) (-74.64639299999999 71.63192700000008) (-74.6744379999999 71.6083220000001) (-74.68971299999998 71.59803800000003) (-74.70472699999993 71.58804299999997) (-74.71305799999993 71.58387800000014) (-74.73388699999998 71.57554600000014) (-74.81193499999995 71.5477600000001) (-74.86972000000003 71.54165600000005) (-74.9225009999999 71.53776600000009) (-74.94027699999987 71.53804000000002) (-74.97084000000001 71.53720100000004) (-74.99027999999998 71.53665200000012) (-75 71.53558300000009) (-75.027222 71.532486) (-75.03666699999997 71.53054800000007) (-75.08138999999994 71.51527399999998) (-75.10777300000001 71.50305200000003) (-75.12470999999994 71.49247700000006) (-75.15194699999995 71.47164900000001) (-75.152222 71.466095) (-75.14611799999994 71.46360800000008) (-75.12777699999998 71.46582000000001) (-75.11555499999997 71.46998600000006) (-75.10611 71.48193400000008) (-75.09388699999994 71.49275200000011) (-75.08473199999997 71.49832200000014) (-75.06138599999997 71.50637800000004) (-75.05082699999997 71.50972000000002) (-75.03332499999993 71.51304600000003) (-75 71.51789900000011) (-74.99305699999991 71.51887500000004) (-74.94415300000003 71.52165200000013) (-74.87748699999997 71.52415500000012) (-74.85722399999997 71.52360500000009) (-74.83833299999992 71.52192699999995) (-74.82833899999997 71.51721199999992) (-74.71665999999999 71.41914400000013) (-74.69943199999994 71.39082300000007) (-74.70056199999993 71.38665800000007) (-74.70556599999998 71.38081400000004) (-74.71528599999999 71.375809) (-74.88833599999998 71.2872010000001) (-75.07501200000002 71.20443700000004) (-75.08138999999994 71.17942800000003) (-75.06500199999999 71.18081700000005) (-75 71.19934100000006) (-74.987503 71.2038730000001) (-74.87416099999996 71.24775699999998) (-74.86444099999994 71.25248700000003) (-74.67166099999997 71.35998500000005) (-74.65444899999994 71.37025499999999) (-74.63751199999996 71.380539) (-74.63221699999997 71.38581800000003) (-74.62805199999997 71.39248700000007) (-74.62582399999985 71.39888000000002) (-74.62609899999995 71.405823) (-74.631104 71.41943399999997) (-74.63806199999999 71.4266510000001) (-74.64695699999993 71.43304400000005) (-74.65722700000003 71.43858300000005) (-74.71972699999998 71.4624940000001) (-74.726944 71.466095) (-74.73554999999999 71.47248799999994) (-74.73638899999997 71.47665400000005) (-74.74305700000002 71.51193200000006) (-74.73611499999987 71.53054800000007) (-74.72389199999998 71.54193100000009) (-74.71417200000002 71.54664600000012) (-74.70167500000002 71.55108600000011) (-74.68638599999991 71.55497700000001) (-74.66389500000002 71.55720499999995) (-74.62887599999993 71.55470300000007) (-74.61999500000002 71.55802900000009) (-74.583618 71.58581500000003) (-74.57640100000003 71.5913700000001) (-74.54388399999999 71.63136299999996) (-74.38194299999992 71.67719999999997) (-74.34555099999994 71.68942300000003) (-74.335556 71.69413800000007) (-74.31777999999997 71.7044370000001) (-74.30943299999996 71.71220400000004) (-74.30694599999998 71.71775800000006) (-74.29943799999995 71.72387700000007) (-74.2886049999999 71.72747800000013) (-74.26834100000002 71.73027000000002) (-74.14695699999993 71.73887599999995) (-74.12470999999988 71.73887599999995) (-74.10916099999997 71.73580900000002) (-74.10305800000003 71.73332199999999) (-74.09777799999995 71.72886699999998) (-74.12388599999991 71.6808170000001) (-74.12887599999988 71.67164600000001) (-74.14222699999999 71.661652) (-74.15055799999999 71.65748600000006) (-74.17304999999999 71.65109300000012) (-74.202789 71.64582800000005) (-74.22027600000001 71.64166300000005) (-74.23277300000001 71.63749699999994) (-74.239441 71.63415500000002) (-74.24888599999997 71.62164300000006) (-74.25306699999999 71.611649) (-74.25445599999995 71.60664399999996) (-74.25473 71.6038670000001) (-74.252228 71.58998100000008) (-74.24916100000002 71.58248900000012) (-74.24305699999996 71.56971699999997) (-74.21888699999994 71.55664100000001) (-74.18028299999997 71.53831500000001) (-74.16833499999996 71.53332499999999) (-74.156387 71.53221100000002) (-74.15028399999989 71.53332499999999) (-74.14862099999993 71.53749100000005) (-74.15167199999996 71.544983) (-74.165009 71.55525200000005) (-74.146118 71.63749699999994) (-74.03971899999993 71.72221399999995) (-74.01916499999999 71.73803700000002) (-74.01472499999994 71.7410890000001) (-73.99694799999997 71.75138900000002) (-73.97778299999993 71.75972000000013) (-73.964447 71.76332100000002) (-73.92832900000002 71.76915000000002) (-73.74804699999993 71.77693199999999) (-73.71888699999994 71.77693199999999) (-73.61610399999995 71.77331500000003) (-73.604172 71.77221700000013) (-73.593887 71.76998899999995) (-73.589722 71.76332100000002) (-73.58999599999999 71.75694300000004) (-73.59167500000001 71.751938) (-73.598343 71.73831200000001) (-73.612503 71.72221399999995) (-73.61999500000002 71.71609500000011) (-73.63806199999999 71.70637500000004) (-73.66332999999992 71.697205) (-73.69444299999992 71.69026200000002) (-73.73277299999995 71.68386800000013) (-73.77111799999994 71.67082200000004) (-73.791382 71.66110200000014) (-73.89083900000003 71.60942100000005) (-73.98554999999999 71.53414900000013) (-73.99027999999993 71.52748099999997) (-74.01083399999999 71.49136399999998) (-74.09527599999996 71.46276899999998) (-74.16999799999996 71.44581600000004) (-74.303879 71.41943399999997) (-74.31582600000002 71.4144290000001) (-74.31916799999988 71.40942400000006) (-74.31221 71.40554800000001) (-74.29722600000002 71.405823) (-74.191666 71.42553700000013) (-74.15916399999992 71.4327550000001) (-74.12138400000003 71.43858300000005) (-74.08361799999994 71.44108600000004) (-74.04583699999995 71.440811) (-74.02861000000001 71.43775900000009) (-74.06388900000002 71.33692900000005) (-74.09167500000001 71.28553799999997) (-74.10638399999988 71.2747040000001) (-74.137787 71.25582899999995) (-74.152222 71.24803200000002) (-74.18777499999993 71.22943099999998) (-74.20750399999986 71.21971100000007) (-74.21722399999993 71.21499600000004) (-74.22666900000002 71.21220399999999) (-74.23832700000003 71.2038730000001) (-74.24082900000002 71.20082100000013) (-74.2350009999999 71.19831799999997) (-74.22888199999994 71.19941699999998) (-74.21777299999997 71.20220900000004) (-74.19082599999996 71.21110499999998) (-74.15833999999995 71.22387700000002) (-74.148056 71.22859200000005) (-74.11833200000001 71.24331699999999) (-74.039444 71.30219999999997) (-74.00944499999997 71.36080900000002) (-74.006958 71.36720300000007) (-73.97332799999992 71.41360500000013) (-73.96861299999989 71.41943399999997) (-73.86776700000001 71.52581800000002) (-73.86221299999994 71.53109699999999) (-73.76167299999997 71.58082600000006) (-73.74694799999997 71.58526600000005) (-73.73277299999995 71.586929) (-73.68916299999995 71.58804299999997) (-73.65361000000001 71.58749399999999) (-73.63972499999994 71.58638000000002) (-73.62193299999996 71.58332800000011) (-73.59500099999997 71.57527200000004) (-73.58860800000002 71.57222000000013) (-73.56500199999994 71.55192599999998) (-73.56666599999994 71.54414400000002) (-73.598343 71.52832000000012) (-73.61555499999992 71.52026400000005) (-73.61944599999998 71.51582300000013) (-73.63027999999997 71.45664999999991) (-73.63500999999991 71.35942100000011) (-73.62249800000001 71.35664400000002) (-73.61332699999997 71.35582000000005) (-73.59472700000003 71.35775799999999) (-73.54038999999995 71.37286400000005) (-73.51888999999994 71.37915000000004) (-73.51722699999993 71.379974) (-73.51611299999996 71.38581800000003) (-73.51556399999993 71.39888000000002) (-73.51333599999998 71.41304000000014) (-73.50306699999993 71.42469800000015) (-73.49694799999992 71.42858900000004) (-73.47749299999992 71.43637100000001) (-73.44694500000003 71.44026200000008) (-73.428879 71.43580600000013) (-73.38444500000003 71.39193700000004) (-73.38027999999991 71.38526900000005) (-73.38500999999997 71.38192700000013) (-73.50089999999994 71.33721200000002) (-73.59028599999994 71.30497700000006) (-73.61555499999992 71.29637100000014) (-73.62304699999987 71.29109199999999) (-73.63555899999994 71.27970900000014) (-73.66305499999999 71.25416600000005) (-73.678879 71.23803700000008) (-73.712784 71.17776500000014) (-73.71777299999997 71.1649930000001) (-73.71888699999994 71.15942400000012) (-73.71639999999996 71.14498900000001) (-73.71362299999998 71.13749700000005) (-73.71362299999998 71.13053900000006) (-73.71665999999999 71.1183170000001) (-73.72860699999995 71.09860200000008) (-73.73582499999998 71.09332300000011) (-73.74583399999989 71.08859300000012) (-73.76083399999993 71.08471700000001) (-73.77806099999998 71.0816650000001) (-73.79777499999994 71.07887299999999) (-73.84249899999992 71.07443200000012) (-73.87388599999997 71.06971700000008) (-73.890289 71.06498700000003) (-73.898346 71.05748000000011) (-73.89500399999997 71.05220000000003) (-73.88667299999997 71.049149) (-73.87943999999987 71.04775999999998) (-73.872772 71.047485) (-73.85055499999999 71.05998199999999) (-73.84222399999999 71.06414800000005) (-73.75306699999999 71.065811) (-73.73277299999995 71.06776400000012) (-73.71583599999985 71.07165500000002) (-73.69276400000001 71.07943699999998) (-73.67443800000001 71.08831800000007) (-73.66722099999998 71.09359700000005) (-73.660553 71.10386699999998) (-73.65833999999995 71.1249850000001) (-73.66250599999995 71.134995) (-73.66665599999988 71.141663) (-73.67361499999993 71.16303999999997) (-73.66888399999999 71.17303500000008) (-73.62361099999998 71.22554000000014) (-73.61582900000002 71.23027000000013) (-73.54916400000002 71.26998900000007) (-73.45472699999999 71.30026200000003) (-73.43388400000003 71.30859400000003) (-73.42860399999995 71.31442300000003) (-73.42777999999998 71.32720899999993) (-73.43527199999994 71.33221400000002) (-73.43777499999999 71.33638000000008) (-73.43611099999998 71.34054599999996) (-73.43028299999997 71.34165999999999) (-73.38221699999997 71.345261) (-73.36305199999998 71.34582499999999) (-73.34973099999996 71.345261) (-73.32084700000001 71.34082000000012) (-73.08361799999994 71.28581200000008) (-73.06111099999998 71.27748100000002) (-73.04943799999995 71.26832599999994) (-73.05387899999994 71.26165800000001) (-73.06500199999994 71.25833100000006) (-73.15556299999997 71.246643) (-73.214722 71.240814) (-73.23083500000001 71.23831200000012) (-73.24943499999995 71.23387100000002) (-73.26611300000002 71.22499099999999) (-73.27194199999985 71.22053500000004) (-73.26306199999999 71.205826) (-73.25250199999994 71.1952510000001) (-73.24444599999998 71.18887300000011) (-73.23500100000001 71.17330900000002) (-73.23500100000001 71.16220100000004) (-73.23832700000003 71.15721099999996) (-73.247772 71.14415000000002) (-73.25695799999988 71.13388100000003) (-73.29444899999993 71.09248399999996) (-73.31111099999993 71.08082600000012) (-73.327789 71.072769) (-73.37943999999999 71.05831900000004) (-73.42639199999991 71.04775999999998) (-73.44610599999999 71.04109200000005) (-73.45083599999992 71.03526300000004) (-73.45195000000001 71.02943399999998) (-73.44694500000003 71.02499399999999) (-73.37748699999992 70.980545) (-73.36999500000002 70.98580900000002) (-73.17361499999987 71.15693700000003) (-73.16861 71.1705320000001) (-73.17749000000003 71.18525700000004) (-73.18306000000001 71.19136000000003) (-73.18804899999998 71.19914199999994) (-73.185272 71.205826) (-73.18028300000003 71.21165500000001) (-73.17222600000002 71.21638500000006) (-73.14222699999993 71.22442599999994) (-73.11555499999992 71.23027000000013) (-73.10139500000002 71.23165899999998) (-73.07972699999999 71.23165899999998) (-73.06777999999986 71.23027000000013) (-73.04554699999989 71.22554000000014) (-73.02722199999988 71.22720300000003) (-73.01194799999996 71.23442100000005) (-73.00445599999995 71.23970000000003) (-72.99499499999996 71.24999999999994) (-72.98167399999994 71.26748700000002) (-72.952789 71.31109600000008) (-72.95140099999998 71.31608599999998) (-72.95973199999997 71.35582000000005) (-72.96362299999993 71.36248800000004) (-72.97000100000002 71.36998) (-72.9783329999999 71.37637300000011) (-72.989441 71.39166300000011) (-72.99305700000002 71.39776600000005) (-72.99333199999995 71.40193199999993) (-72.98889200000002 71.40554800000001) (-72.97582999999992 71.40914900000007) (-72.89723200000003 71.41665599999999) (-72.85804699999994 71.41331500000013) (-72.83639499999992 71.41331500000013) (-72.76583900000003 71.42387400000001) (-72.75917099999992 71.4269260000001) (-72.75750700000003 71.43193100000013) (-72.758621 71.43748499999998) (-72.76472499999994 71.45166000000006) (-72.76916499999993 71.45915200000002) (-72.67999299999991 71.52470400000004) (-72.64973399999997 71.53692600000005) (-72.61860699999994 71.55941800000011) (-72.61332699999997 71.56553600000007) (-72.61027499999989 71.57193000000012) (-72.608337 71.58387800000014) (-72.61082499999992 71.5955350000001) (-72.608337 71.60664399999996) (-72.593887 71.64248700000002) (-72.58332799999988 71.65138200000007) (-72.58029199999993 71.653595) (-72.57333399999993 71.65664700000013) (-72.55749500000002 71.66026299999999) (-72.53805499999993 71.66081200000013) (-72.52362099999999 71.65887500000008) (-72.50306699999987 71.65026899999998) (-72.47471599999994 71.64276100000012) (-72.44444299999998 71.63610799999998) (-72.30110200000001 71.61219800000015) (-72.15222199999994 71.58998100000008) (-71.84777799999995 71.54664600000012) (-71.689438 71.52442900000005) (-71.670547 71.52221699999996) (-71.635559 71.51776100000006) (-71.58555599999994 71.509995) (-71.554169 71.50387599999999) (-71.45527599999991 71.47303799999997) (-71.44444299999992 71.46859700000005) (-71.435272 71.46360800000008) (-71.29554699999994 71.38472000000013) (-71.241379 71.349426) (-71.12332200000003 71.27165200000002) (-71.11971999999997 71.26416000000006) (-71.122772 71.25721700000008) (-71.128601 71.25138900000013) (-71.14778099999995 71.24192799999997) (-71.16944899999999 71.23332200000004) (-71.20611600000001 71.22053500000004) (-71.22138999999999 71.21693400000004) (-71.23472600000002 71.21276900000004) (-71.32472200000001 71.17776500000014) (-71.34056099999987 71.1705320000001) (-71.34277299999991 71.16638200000011) (-71.34611499999994 71.15582300000005) (-71.3494419999999 71.149429) (-71.4158329999999 71.09332300000011) (-71.452225 71.06805400000013) (-71.46444699999995 71.06248499999998) (-71.47027599999996 71.06137099999995) (-71.48971599999993 71.0619200000001) (-71.55110200000001 71.06469700000002) (-71.60833699999995 71.068604) (-71.64083900000003 71.07388300000014) (-71.714447 71.08804300000008) (-71.81249999999994 71.1041560000001) (-71.84889199999992 71.10832199999999) (-71.86888099999987 71.109421) (-71.89028899999988 71.109421) (-71.91082799999992 71.10775800000005) (-72.069458 71.07527199999998) (-72.08555599999994 71.07026700000011) (-72.09973100000002 71.06387300000006) (-72.110275 71.05220000000003) (-72.11389200000002 71.04721100000006) (-72.114441 71.0435940000001) (-72.11332699999991 71.03749099999999) (-72.10722399999997 71.03027299999997) (-72.09973100000002 71.02026399999994) (-72.101944 71.01609800000006) (-72.16555799999992 70.96804800000007) (-72.17971799999992 70.96220400000004) (-72.20028699999995 70.96110500000003) (-72.23500100000001 70.961929) (-72.261124 70.95915200000013) (-72.27806099999998 70.95526100000006) (-72.29055799999998 70.95109600000006) (-72.29722600000002 70.947205) (-72.31750499999998 70.93026700000007) (-72.319458 70.92581200000006) (-72.31750499999998 70.91832000000011) (-72.31138599999997 70.91110200000008) (-72.31388900000002 70.89971900000006) (-72.32055700000001 70.88832100000008) (-72.32556199999988 70.88247700000005) (-72.33416699999998 70.87858599999998) (-72.514725 70.84443699999997) (-72.5344389999999 70.84193399999998) (-72.65360999999996 70.82777400000009) (-72.6541749999999 70.82083100000011) (-72.51139799999987 70.82720900000004) (-72.476944 70.83332800000005) (-72.40110800000002 70.84971600000011) (-72.35611 70.86053500000003) (-72.30277999999993 70.86720300000002) (-72.26417500000002 70.86665299999999) (-72.25 70.86387600000006) (-72.18472299999996 70.84471100000007) (-72.17222599999997 70.84054600000007) (-72.16361999999998 70.83638000000002) (-72.16221599999989 70.82998700000002) (-72.36332700000003 70.68609600000013) (-72.38194299999998 70.67720000000003) (-72.45944199999997 70.65387000000004) (-72.47582999999992 70.64942900000011) (-72.499435 70.64665200000002) (-72.54249600000003 70.64471400000008) (-72.57806399999998 70.64137300000004) (-72.597778 70.63859599999995) (-72.60916099999997 70.63665800000001) (-72.61582899999996 70.63333100000006) (-72.62332199999997 70.62803600000001) (-72.56945799999988 70.60998500000005) (-72.55166600000001 70.6080320000001) (-72.50306699999987 70.62997399999995) (-72.49055499999997 70.63415500000002) (-72.37193299999996 70.65498400000001) (-72.34222399999993 70.66220099999992) (-72.32611099999991 70.66720600000002) (-72.30638099999999 70.67747500000002) (-72.27749599999987 70.69802899999996) (-72.26472499999994 70.70915199999996) (-72.24861099999998 70.726654) (-72.245834 70.733047) (-72.2369379999999 70.74386600000003) (-72.229172 70.74942000000004) (-72.210556 70.75804099999993) (-72.18554699999993 70.76638800000012) (-72.15583800000002 70.77360500000003) (-72.136124 70.776093) (-72.00473 70.786926) (-71.89695699999993 70.80693100000002) (-71.818893 70.82304400000004) (-71.68916300000001 70.85026600000015) (-71.54388399999999 70.87248199999999) (-71.35444599999994 70.88275099999998) (-71.28750600000001 70.90609700000005) (-71.28916900000002 70.90887500000002) (-71.289444 70.91360500000008) (-71.20834399999995 71.00499000000008) (-71.18554699999987 71.01943999999997) (-71.162216 71.02832000000001) (-70.89555399999995 71.09971600000006) (-70.83612099999993 71.11442600000004) (-70.79972799999996 71.11886600000003) (-70.77166699999998 71.11804200000006) (-70.75556899999992 71.11554000000001) (-70.72471599999994 71.10443099999992) (-70.635559 71.07222000000002) (-70.61389199999996 71.06219499999992) (-70.60472099999993 71.05636600000008) (-70.60166900000002 71.05386400000003) (-70.591949 71.04248000000013) (-70.51472499999994 70.94053600000007) (-70.51251199999996 70.926086) (-70.51445000000001 70.92109700000003) (-70.51972999999998 70.91387900000001) (-70.553604 70.89498900000007) (-70.58944699999995 70.87608300000005) (-70.678879 70.84054600000007) (-70.7408289999999 70.75471500000009) (-70.74694799999992 70.74552900000015) (-70.77333099999998 70.734421) (-70.79888899999992 70.72554000000002) (-70.87249800000001 70.70387299999999) (-70.89111299999996 70.69886800000012) (-70.96583599999997 70.684143) (-71.02444500000001 70.67498799999993) (-71.05526700000001 70.66914400000013) (-71.08277899999996 70.661652) (-71.10055499999993 70.65498400000001) (-71.108612 70.64999399999999) (-71.11805699999996 70.63888500000007) (-71.12805199999997 70.62052900000009) (-71.12943999999999 70.6141510000001) (-71.13444500000003 70.60276799999991) (-71.13999899999993 70.59637499999997) (-71.14778099999995 70.59109500000011) (-71.16027799999995 70.586929) (-71.17527799999999 70.58360299999998) (-71.191666 70.58248900000001) (-71.22471599999994 70.58221400000014) (-71.28167699999989 70.58415200000007) (-71.31249999999994 70.58720400000004) (-71.34584000000001 70.5916600000001) (-71.38972499999994 70.60054000000014) (-71.40750100000002 70.60304300000013) (-71.422775 70.60498000000001) (-71.46194499999996 70.60775799999999) (-71.55860899999993 70.60942100000011) (-71.59277299999997 70.60693400000002) (-71.59555099999994 70.6038670000001) (-71.59583999999995 70.60054000000014) (-71.59249899999992 70.58970600000009) (-71.58667000000003 70.58166500000004) (-71.58389299999993 70.576096) (-71.58029199999999 70.56469700000014) (-71.581955 70.551376) (-71.583618 70.54637100000014) (-71.58805799999993 70.54275500000006) (-71.74360699999994 70.46693399999998) (-71.80305499999997 70.42831400000006) (-71.76306199999993 70.42720000000008) (-71.74804699999999 70.42581199999995) (-71.73638900000003 70.42303500000008) (-71.72721899999999 70.41747999999995) (-71.72805800000003 70.41053800000009) (-71.731674 70.39721700000013) (-71.74638400000003 70.3477630000001) (-71.75556899999998 70.329163) (-71.76306199999993 70.32331800000009) (-71.78306599999996 70.313873) (-71.81666599999994 70.30304000000007) (-71.84416199999998 70.29664600000001) (-71.8497309999999 70.290817) (-71.83694499999996 70.28997800000002) (-71.80694599999987 70.29582200000004) (-71.74804699999999 70.309708) (-71.73361199999994 70.313873) (-71.68638599999991 70.35582000000011) (-71.674713 70.36970500000001) (-71.64167800000001 70.44497700000011) (-71.640289 70.45054600000009) (-71.54333500000001 70.51470899999998) (-71.52528399999994 70.5247040000001) (-71.51000999999997 70.53581200000008) (-71.50250199999994 70.54609699999997) (-71.50167799999997 70.55304000000001) (-71.50334199999998 70.56053199999991) (-71.50750699999998 70.56915300000003) (-71.51167299999997 70.57331800000003) (-71.50695799999994 70.57638500000013) (-71.49554399999994 70.5788730000001) (-71.435272 70.57859800000011) (-71.42027300000001 70.57748400000014) (-71.39778100000001 70.574432) (-71.25306699999993 70.54971300000005) (-71.18499800000001 70.53804000000002) (-71.17582699999997 70.53581200000008) (-71.17027299999995 70.53332499999999) (-71.1677699999999 70.53193700000008) (-71.16250600000001 70.5252690000001) (-71.162216 70.52053799999999) (-71.26055899999989 70.37776200000013) (-71.32250999999997 70.31275900000003) (-71.32167099999998 70.30664100000007) (-71.31834399999997 70.2999880000001) (-71.30110199999996 70.284988) (-71.28889499999997 70.280823) (-71.27999899999998 70.27499399999994) (-71.276947 70.268326) (-71.27833599999985 70.26277199999998) (-71.285278 70.25138899999996) (-71.28916900000002 70.24609400000008) (-71.31695599999995 70.21859699999999) (-71.36305199999987 70.18220499999995) (-71.43472300000002 70.12692300000003) (-71.485275 70.08831800000007) (-71.49804699999993 70.08055100000013) (-71.523056 70.05220000000003) (-71.53277600000001 70.03858900000006) (-71.53916899999996 70.02638200000013) (-71.54110700000001 70.02221700000013) (-71.53582799999992 70.01971400000014) (-71.52806099999998 70.020264) (-71.51806599999998 70.02499399999999) (-71.50029 70.03831500000013) (-71.493607 70.05053700000013) (-71.47582999999997 70.06805400000013) (-71.43804899999998 70.08665500000001) (-71.39361600000001 70.10443099999998) (-71.36665299999999 70.1119230000001) (-71.33168 70.12858599999998) (-71.210556 70.26220699999993) (-71.20889299999999 70.26776100000012) (-71.21305799999999 70.272491) (-71.218887 70.27638200000007) (-71.22972099999998 70.2810970000001) (-71.23194899999993 70.29498300000006) (-71.17166099999997 70.36804200000006) (-71.13583399999993 70.41053800000009) (-71.09306299999997 70.46054100000003) (-71.03056300000003 70.54054300000001) (-71.04998799999993 70.54637100000014) (-71.05305499999997 70.55304000000001) (-71.04943800000001 70.55886800000007) (-71.00584399999997 70.61692800000003) (-70.99722299999996 70.62580899999995) (-70.968887 70.63220200000012) (-70.91305499999999 70.63777199999998) (-70.77111799999994 70.66886900000009) (-70.61193799999995 70.72360200000008) (-70.42166099999986 70.77221700000013) (-70.39695699999999 70.77832000000006) (-70.36527999999993 70.782486) (-70.32472199999995 70.78581200000002) (-70.25500499999998 70.79386899999997) (-70.22888199999994 70.79721100000012) (-70.07501200000002 70.83027600000014) (-69.98805199999998 70.85359200000005) (-69.91583300000002 70.87747200000001) (-69.90472399999993 70.88136300000008) (-69.89277599999991 70.88333100000006) (-69.87388599999997 70.88333100000006) (-69.86527999999993 70.88247700000005) (-69.833618 70.87692300000009) (-69.78443900000002 70.86470000000003) (-69.77111799999994 70.85748300000012) (-69.770554 70.8560940000001) (-69.77250699999996 70.85054000000008) (-69.795837 70.82054100000005) (-69.80888400000003 70.81109600000002) (-69.87943999999993 70.76805100000007) (-69.91555799999992 70.74914600000011) (-69.96528599999994 70.72776799999997) (-70.07389799999993 70.68748499999992) (-70.08473200000003 70.68359400000003) (-70.12165800000002 70.67164600000001) (-70.21055599999994 70.6461030000001) (-70.22555499999993 70.64193699999998) (-70.24499500000002 70.63832100000013) (-70.277222 70.63610799999998) (-70.33805799999999 70.637497) (-70.35333299999996 70.63888500000007) (-70.40777599999996 70.63888500000007) (-70.42332499999998 70.63693200000012) (-70.45472699999999 70.62776200000008) (-70.473053 70.61720300000002) (-70.47694399999995 70.61219799999998) (-70.478882 70.60664400000002) (-70.460556 70.57415800000007) (-70.44276400000001 70.56192000000004) (-70.42416400000002 70.55192600000004) (-70.41139199999998 70.54220599999991) (-70.40472399999993 70.53637700000007) (-70.400284 70.53027300000008) (-70.39750700000002 70.52415500000012) (-70.40167200000002 70.51915000000008) (-70.40777599999996 70.51416) (-70.42332499999998 70.50694300000009) (-70.46722399999999 70.49386600000008) (-70.48222399999992 70.49054000000007) (-70.49082900000002 70.486649) (-70.49444599999998 70.484985) (-70.49610899999999 70.47943099999998) (-70.48889200000002 70.4769290000001) (-70.47778299999999 70.47554000000008) (-70.45916699999998 70.47554000000008) (-70.44137599999993 70.47720300000003) (-70.30972299999996 70.49803199999997) (-70.316666 70.52859499999994) (-70.32000700000003 70.53692600000005) (-70.33167999999995 70.54859900000008) (-70.34861799999993 70.55970799999994) (-70.37110899999993 70.57360800000004) (-70.34445199999993 70.61303700000013) (-70.15833999999995 70.61554000000012) (-70.09249899999998 70.61219799999998) (-70.02333099999998 70.61053500000008) (-69.99221799999998 70.64582800000005) (-69.98777799999993 70.64999399999999) (-69.97860700000001 70.65332000000001) (-69.87582399999991 70.67720000000003) (-69.77583299999998 70.68220500000007) (-69.65139799999997 70.72554000000002) (-69.64916999999991 70.73109400000004) (-69.64472999999998 70.74108899999993) (-69.63861099999997 70.74693300000013) (-69.61999500000002 70.75804099999993) (-69.56916799999993 70.77192700000012) (-69.53832999999986 70.77859500000011) (-69.46972700000003 70.79054300000013) (-69.45140100000003 70.79193100000003) (-69.24276699999996 70.782486) (-69.22694399999995 70.77998400000007) (-69.215012 70.776093) (-69.19055200000003 70.76693700000004) (-69.13194299999998 70.7374880000001) (-68.95805399999995 70.688583) (-68.92832900000002 70.68165600000009) (-68.664444 70.62692300000015) (-68.61860699999994 70.62052900000009) (-68.58250399999997 70.617752) (-68.54972799999996 70.61360200000001) (-68.515289 70.60914600000007) (-68.48472600000002 70.60415600000005) (-68.39056399999998 70.58221400000014) (-68.32556199999993 70.56666599999994) (-68.31388900000002 70.56303400000002) (-68.29361 70.551376) (-68.28416400000003 70.54054300000001) (-68.27917499999995 70.53109700000005) (-68.279449 70.51944000000009) (-68.28138699999994 70.51249700000011) (-68.28971899999999 70.50000000000011) (-68.296112 70.49414100000013) (-68.31361400000003 70.48471100000006) (-68.33168 70.47637900000007) (-68.37193299999996 70.455826) (-68.44665499999996 70.41304000000014) (-68.45140099999998 70.40942400000012) (-68.45361300000002 70.4038700000001) (-68.45195000000001 70.39221200000009) (-68.44915800000001 70.38415500000008) (-68.44860799999998 70.37525900000014) (-68.45167500000002 70.37248200000005) (-68.458618 70.36943100000008) (-68.48500099999995 70.36775200000005) (-68.49527 70.36859099999998) (-68.506393 70.37109399999997) (-68.519455 70.37414600000011) (-68.56138599999991 70.3897090000001) (-68.571121 70.39332600000006) (-68.57583599999992 70.39610299999998) (-68.58084099999996 70.4041600000001) (-68.58056599999998 70.41581700000006) (-68.56973299999999 70.42637600000012) (-68.556107 70.43525700000004) (-68.54998799999998 70.44081100000005) (-68.54804999999993 70.44775400000003) (-68.55694599999998 70.46192900000011) (-68.56471299999993 70.46638500000006) (-68.58250399999997 70.4644320000001) (-68.62165799999997 70.45277400000009) (-68.65083300000003 70.44192500000003) (-68.6541749999999 70.4391480000001) (-68.66166699999991 70.43109099999992) (-68.66665599999999 70.42221100000012) (-68.67027300000001 70.40887499999997) (-68.67083699999995 70.4041600000001) (-68.664444 70.38499499999995) (-68.65722699999998 70.375809) (-68.651947 70.35942099999994) (-68.65055799999993 70.34999100000005) (-68.65110799999997 70.34582499999999) (-68.65388499999995 70.34136999999998) (-68.65695199999999 70.33859300000006) (-68.66416900000002 70.33554100000015) (-68.68249500000002 70.3294370000001) (-68.73554999999988 70.31776400000007) (-68.78416400000003 70.31025699999998) (-68.90695199999993 70.29386900000009) (-68.94137599999999 70.29304500000012) (-69.07194500000003 70.28804000000008) (-69.23500100000001 70.27026400000011) (-69.28388999999999 70.26470900000004) (-69.47389199999998 70.23887600000006) (-69.63999899999988 70.20471200000009) (-69.66805999999997 70.19859300000002) (-69.82389799999999 70.15582300000011) (-69.829453 70.15415999999999) (-69.83612099999999 70.15054300000003) (-69.83972199999994 70.14415000000008) (-69.84083599999991 70.1419370000001) (-69.83972199999994 70.13443000000001) (-69.84306299999997 70.121918) (-69.84889199999998 70.11608899999999) (-69.85694899999993 70.11080900000007) (-69.87582399999991 70.10192900000004) (-69.91776999999996 70.08554100000003) (-69.94665500000002 70.07638500000007) (-69.96833799999996 70.07470699999993) (-69.99027999999993 70.07443200000012) (-70.037781 70.07222000000007) (-70.073059 70.06915300000014) (-70.08612099999999 70.06666600000005) (-70.09695399999998 70.06330900000012) (-70.14138799999995 70.04332) (-70.17443800000001 70.034988) (-70.18276999999989 70.03109699999993) (-70.18554699999999 70.02804600000013) (-70.18276999999989 70.02137800000014) (-70.16999799999996 70.01443499999999) (-70.15449499999994 70.0151600000001) (-70.14750699999996 70.01548800000006) (-70.13950299999993 70.0171590000001) (-70.11332700000003 70.02388000000002) (-70.10305800000003 70.02859500000005) (-70.08999599999999 70.03610200000003) (-70.08889799999992 70.03831500000013) (-70.07749899999999 70.049713) (-70.06695599999995 70.05358900000004) (-70.04998799999987 70.05720500000007) (-70.02861000000001 70.05886800000002) (-70.02027900000002 70.05859400000008) (-69.90110799999997 70.04832500000003) (-69.89222699999993 70.0458220000001) (-69.88473499999992 70.042755) (-69.85360700000001 70.02970900000003) (-69.83555599999994 70.020264) (-69.82749899999999 70.01443499999999) (-69.82084699999996 70.0080410000001) (-69.81304899999992 69.99859600000002) (-69.81221 69.9910890000001) (-69.81555200000003 69.98471100000012) (-69.82250999999991 69.98165900000004) (-69.83750899999995 69.97831700000012) (-69.85139500000002 69.97831700000012) (-69.89750700000002 69.98304700000011) (-69.93638599999997 69.98942599999998) (-69.96333299999998 69.99165300000004) (-69.98138399999999 69.99165300000004) (-70.00306699999993 69.98970000000008) (-70.0574949999999 69.98109399999998) (-70.09889199999992 69.97360200000008) (-70.16444399999989 69.96165500000012) (-70.21888699999994 69.9416500000001) (-70.22332799999998 69.93803400000002) (-70.22389199999998 69.92970300000013) (-70.21806299999997 69.92526200000003) (-70.21611000000001 69.92053199999998) (-70.22027600000001 69.91554300000001) (-70.22860700000001 69.91165199999995) (-70.291382 69.8894350000001) (-70.38417099999998 69.86053500000003) (-70.40139799999997 69.85914600000007) (-70.42222599999997 69.86080900000013) (-70.43249500000002 69.86248799999998) (-70.44387799999993 69.86053500000003) (-70.45056199999999 69.85720800000007) (-70.46722399999999 69.84471100000013) (-70.46861299999995 69.842758) (-70.46028099999995 69.8416600000001) (-70.436935 69.83943199999993) (-70.41221599999994 69.83776900000004) (-70.396118 69.83720399999999) (-70.38417099999998 69.83720399999999) (-70.37277199999988 69.83831800000013) (-70.35583499999996 69.8413700000001) (-70.343613 69.84526099999994) (-70.25527999999991 69.87914999999998) (-70.19276400000001 69.90776100000011) (-70.13694800000002 69.93331899999998) (-70.12609899999995 69.94053600000012) (-70.09861799999999 69.95304900000002) (-70.07667500000002 69.95803799999999) (-70.05943300000001 69.95971699999996) (-69.97860700000001 69.964157) (-69.94193999999999 69.96304300000003) (-69.925003 69.96110500000009) (-69.89695699999999 69.95610000000005) (-69.86805700000002 69.95332300000013) (-69.83750899999995 69.95277399999998) (-69.81311 69.9554290000001) (-69.777222 69.96360800000002) (-69.75083899999993 69.97248800000006) (-69.74554399999994 69.97470100000004) (-69.73805199999993 69.98136900000003) (-69.73554999999993 69.98553500000008) (-69.735275 69.99053999999995) (-69.739441 70.00138900000002) (-69.74415599999998 70.0080410000001) (-69.76000999999997 70.01748700000007) (-69.76945499999994 70.02137800000014) (-69.78111299999995 70.02499399999999) (-69.795547 70.03166199999998) (-69.80471799999987 70.03887900000007) (-69.80888400000003 70.049713) (-69.80694599999998 70.055252) (-69.79277000000002 70.080826) (-69.79028299999993 70.084991) (-69.78388999999999 70.0894320000001) (-69.74082900000002 70.11415100000005) (-69.67582699999991 70.13970899999998) (-69.65333599999991 70.14498900000001) (-69.42610199999996 70.17608600000011) (-69.40417500000001 70.17776500000014) (-69.21945199999999 70.188309) (-69.18249499999996 70.18719500000003) (-69.16999799999991 70.18609600000002) (-69.15472399999999 70.18331899999998) (-69.011124 70.17831400000011) (-68.93693499999995 70.19303900000006) (-68.85916099999986 70.20304899999996) (-68.83917200000002 70.20359800000006) (-68.69722000000002 70.2038730000001) (-68.68277 70.20359800000006) (-68.67832900000002 70.20248400000008) (-68.67639199999996 70.20166000000012) (-68.64750700000002 70.15832499999999) (-68.64250199999998 70.14942900000005) (-68.64500399999991 70.14526400000005) (-68.741379 70.06526200000008) (-68.74665800000002 70.06248499999998) (-68.78306600000002 70.04443399999997) (-68.80055199999998 70.03749099999999) (-68.81332399999997 70.032761) (-68.86805699999996 70.01693700000004) (-68.90028399999994 70.01165800000007) (-68.954453 70.00471500000009) (-69.08860800000002 69.97499100000005) (-69.15306099999998 69.95304900000002) (-69.31310999999994 69.88229400000006) (-69.346115 69.855545) (-69.37054399999994 69.83998100000008) (-69.398056 69.82859800000006) (-69.42694099999994 69.81971699999997) (-69.43971299999993 69.8163760000001) (-69.460556 69.813309) (-69.474716 69.81359900000001) (-69.516953 69.81999200000013) (-69.54333500000001 69.82693499999993) (-69.56582600000002 69.83415200000007) (-69.58084100000002 69.836929) (-69.68388400000003 69.83998100000008) (-69.71389799999997 69.83998100000008) (-69.74499500000002 69.83776900000004) (-69.76000999999997 69.834991) (-69.77084400000001 69.83194000000003) (-69.80583200000001 69.81999200000013) (-69.827789 69.80941800000011) (-69.84416199999993 69.80026199999998) (-69.85583499999996 69.79359399999998) (-69.87249799999995 69.78109699999999) (-69.99804699999999 69.66998300000012) (-70 69.66415400000011) (-70.00083899999998 69.6560970000001) (-70.00140399999998 69.62275700000004) (-69.99888599999991 69.6160890000001) (-69.99055499999992 69.61499000000009) (-69.94444299999998 69.649719) (-69.816956 69.72442600000005) (-69.81082199999997 69.72886699999998) (-69.808334 69.733047) (-69.808334 69.73803700000002) (-69.81471299999987 69.75471500000009) (-69.81500199999999 69.76026900000011) (-69.81416300000001 69.76388499999996) (-69.80555700000002 69.77249100000006) (-69.78306600000002 69.78581200000002) (-69.764725 69.79553199999992) (-69.75445599999995 69.799713) (-69.74194299999999 69.8035890000001) (-69.73083500000001 69.80609099999998) (-69.71333300000003 69.80748) (-69.64306599999998 69.81080600000001) (-69.60278299999999 69.80970800000011) (-69.5727839999999 69.80442800000003) (-69.56111099999998 69.79998800000004) (-69.54527300000001 69.79443400000002) (-69.48998999999992 69.77970900000008) (-69.45666499999993 69.77581800000002) (-69.44665500000002 69.77554300000003) (-69.40916399999998 69.77638199999996) (-69.39584400000001 69.77777100000014) (-69.38473499999992 69.78082300000005) (-69.37805199999997 69.78387500000002) (-69.31388900000002 69.8163760000001) (-69.291382 69.83109999999994) (-69.27944899999994 69.84248400000007) (-69.26916499999993 69.85276800000008) (-69.25306699999999 69.86219800000015) (-69.20056199999988 69.88360600000004) (-69.18804899999998 69.88777199999998) (-69.10194399999995 69.91609199999999) (-69.07667499999997 69.92387400000013) (-68.94554099999999 69.94999700000005) (-68.93388400000003 69.95109600000006) (-68.87027 69.95304900000002) (-68.80194099999989 69.95220899999998) (-68.76666299999988 69.94886800000012) (-68.75195300000001 69.94663999999995) (-68.62281799999994 69.98240699999991) (-68.47166400000003 70.04664600000007) (-68.33833300000003 70.0641480000001) (-68.241379 70.09582500000005) (-68.22138999999999 70.10276800000003) (-68.20722999999998 70.109421) (-68.19638099999997 70.11943100000008) (-68.193604 70.12359600000008) (-68.20333899999997 70.12886000000009) (-68.22944599999994 70.13526900000011) (-68.26861600000001 70.13749700000011) (-68.2908329999999 70.13720700000005) (-68.30833399999995 70.13526900000011) (-68.32055700000001 70.13554399999998) (-68.333618 70.13916) (-68.34916699999985 70.16804500000006) (-68.34861799999999 70.1727600000001) (-68.34527599999996 70.18803400000002) (-68.31861899999996 70.21859699999999) (-68.31361400000003 70.22221400000012) (-68.16000400000001 70.28276100000011) (-68.03944399999995 70.301376) (-67.80804399999994 70.262497) (-67.79472399999997 70.25888100000009) (-67.77417000000003 70.25054900000009) (-67.76806599999998 70.24386600000014) (-67.76000999999991 70.22970600000002) (-67.74055499999986 70.21887200000015) (-67.69721999999996 70.2022090000001) (-67.67443799999995 70.19358799999998) (-67.648056 70.18609600000002) (-67.59167499999995 70.16526799999997) (-67.57556199999993 70.15832499999999) (-67.55694599999998 70.14915500000012) (-67.52833599999997 70.13388100000003) (-67.41221599999994 70.0688780000001) (-67.40472399999999 70.06442300000009) (-67.37805200000003 70.04803500000003) (-67.24249299999997 69.958328) (-67.222778 69.94386300000008) (-67.216949 69.93775900000003) (-67.15249599999999 69.81776400000001) (-67.14862099999999 69.81025700000009) (-67.12777699999987 69.72692900000004) (-67.193604 69.721924) (-67.37138400000003 69.71443200000004) (-67.39111300000002 69.71388200000001) (-67.40695199999988 69.71470599999998) (-67.43611099999993 69.71914700000008) (-67.49999999999994 69.73183399999999) (-67.60249299999992 69.7502750000001) (-67.761124 69.77859500000011) (-67.77305599999994 69.7794340000001) (-67.81082200000003 69.77886999999993) (-67.99610899999999 69.77442900000005) (-68.01306199999999 69.77192700000012) (-68.087784 69.75610400000011) (-68.208054 69.71554600000002) (-68.21665999999993 69.71026599999999) (-68.22277799999995 69.70471199999997) (-68.2286069999999 69.69136000000015) (-68.23028599999998 69.68441800000005) (-68.24110399999995 69.67498799999998) (-68.31138599999997 69.63333100000011) (-68.323624 69.62886000000003) (-68.329453 69.62776200000013) (-68.35278299999999 69.62692300000015) (-68.49638399999998 69.625809) (-68.51806599999992 69.62608300000011) (-68.62026999999989 69.63720699999999) (-68.64527899999996 69.64109800000006) (-68.83999599999999 69.6160890000001) (-68.98083499999996 69.589157) (-69.18859900000001 69.54193099999992) (-69.20111099999991 69.53804000000002) (-69.22000100000002 69.53581200000008) (-69.32501200000002 69.53248600000006) (-69.34277299999997 69.53248600000006) (-69.36416599999995 69.53776600000009) (-69.41027799999995 69.54609700000003) (-69.42694099999994 69.54803500000014) (-69.54943800000001 69.56053199999997) (-69.630829 69.56721500000009) (-69.68888900000002 69.56944300000009) (-69.73777799999999 69.56832900000006) (-69.75111400000003 69.56721500000009) (-69.83860800000002 69.55886800000013) (-70.0308379999999 69.53610200000008) (-70.02861000000001 69.53082300000011) (-70.025284 69.52748100000002) (-70.011124 69.52110300000004) (-69.995544 69.51721199999997) (-69.964722 69.51388500000002) (-69.89944499999996 69.50721700000008) (-69.88583399999999 69.50721700000008) (-69.86694299999988 69.50943000000001) (-69.84416199999993 69.51748700000002) (-69.82444800000002 69.52720599999998) (-69.81582600000002 69.53054800000012) (-69.803879 69.53498800000011) (-69.78944399999995 69.538589) (-69.73277300000001 69.54525800000005) (-69.69860799999992 69.54832499999998) (-69.68499799999995 69.54887400000013) (-69.66332999999992 69.54832499999998) (-69.61389199999991 69.54304500000012) (-69.506958 69.52943399999992) (-69.44999699999988 69.5188750000001) (-69.37582399999991 69.50972000000002) (-69.34306299999997 69.50582899999995) (-69.32333399999999 69.50526400000012) (-69.29998799999993 69.506104) (-69.20666499999999 69.51499899999999) (-69.1516719999999 69.52026400000005) (-69.00584400000002 69.53581200000008) (-68.99527 69.53970300000015) (-68.98222399999997 69.547211) (-68.97138999999999 69.5558170000001) (-68.95722999999998 69.56053199999997) (-68.9261019999999 69.566666) (-68.76945499999988 69.58749400000005) (-68.75250199999988 69.58943199999999) (-68.6683349999999 69.59082000000006) (-68.61193800000001 69.58749400000005) (-68.54472399999992 69.57998700000013) (-68.52806099999992 69.57720899999993) (-68.31722999999988 69.53027300000008) (-68.29333499999996 69.52360499999992) (-68.18194599999998 69.49832200000003) (-68.02555799999999 69.46609500000005) (-67.98222399999997 69.45748900000012) (-67.94610599999993 69.45471200000003) (-67.92639200000002 69.45416300000011) (-67.89334099999996 69.45443700000004) (-67.87416100000002 69.45664999999997) (-67.86193799999995 69.46026600000005) (-67.84083599999997 69.46943699999997) (-67.81945799999994 69.4769290000001) (-67.80694599999987 69.48082) (-67.79222099999998 69.48414600000001) (-67.60499600000003 69.47804300000007) (-67.56221 69.47192400000006) (-67.51167299999997 69.46609500000005) (-67.47582999999997 69.46304299999991) (-67.43277 69.46331800000013) (-67.30526699999996 69.46720900000003) (-67.25834700000001 69.46748400000001) (-67.21000699999996 69.46138000000002) (-67.18083200000001 69.45471200000003) (-66.921112 69.3791500000001) (-66.79554699999989 69.341095) (-66.78527799999995 69.3372040000001) (-66.77444499999996 69.33194000000009) (-66.76722699999993 69.32748400000003) (-66.69499200000001 69.28166199999998) (-66.68276999999995 69.27026400000011) (-66.65028399999994 69.23637400000001) (-66.64584400000001 69.22499100000005) (-66.64666699999998 69.20359800000011) (-66.65861499999994 69.188309) (-66.66833500000001 69.17831400000011) (-66.68943799999994 69.16192600000005) (-66.72000100000002 69.14415000000008) (-66.73055999999997 69.13888500000002) (-66.75306699999993 69.12942499999997) (-66.75862099999995 69.12803600000012) (-66.77610799999997 69.12886000000009) (-66.837219 69.13581800000009) (-66.84944200000001 69.13832100000008) (-66.912781 69.15498400000013) (-66.9283289999999 69.164154) (-66.95333900000003 69.172211) (-66.96528599999999 69.17442300000005) (-66.99694799999997 69.17776499999997) (-67.132767 69.18248) (-67.37193299999996 69.18441799999994) (-67.38555899999994 69.18386800000013) (-67.41471899999999 69.17831400000011) (-67.42721599999999 69.17442300000005) (-67.45889299999993 69.1624910000001) (-67.46610999999996 69.16081200000008) (-67.50556899999998 69.15748600000006) (-67.52111799999994 69.15776100000005) (-67.64862099999999 69.16693100000009) (-67.67639199999996 69.16943400000008) (-67.86416600000001 69.22192400000012) (-68.18447900000001 69.30801400000001) (-68.20973200000003 69.31137099999995) (-68.22166399999998 69.31219499999992) (-68.23277299999995 69.31137099999995) (-68.25195300000001 69.30970800000006) (-68.285278 69.30442800000014) (-68.31082200000003 69.29859899999997) (-68.32749899999999 69.29609700000009) (-68.34416199999998 69.29470800000007) (-68.35583500000001 69.29414400000013) (-68.37554899999992 69.29470800000007) (-68.46472199999994 69.30165100000005) (-68.67527799999999 69.32222000000002) (-68.74027999999998 69.33055100000013) (-68.811935 69.34193399999992) (-68.84445199999999 69.34610000000004) (-68.94471699999991 69.35498000000007) (-68.962784 69.35636900000003) (-68.98443600000002 69.35693400000008) (-69.015015 69.35498000000007) (-69.04028299999999 69.34971600000006) (-69.17666599999995 69.31080600000013) (-69.20306399999993 69.30304000000007) (-69.24137899999988 69.28414900000001) (-69.25389099999995 69.27526899999998) (-69.25778200000002 69.27026400000011) (-69.25167799999997 69.26361099999997) (-69.24694799999997 69.26110799999998) (-69.23500100000001 69.25972000000007) (-69.22193899999996 69.26165800000001) (-69.21305799999993 69.26470900000004) (-69.20333900000003 69.26998900000012) (-69.197769 69.27554299999991) (-69.17639200000002 69.28749099999999) (-69.15638699999994 69.297485) (-69.146118 69.30053700000008) (-69.133331 69.303314) (-69.01333599999998 69.32748400000003) (-68.95666499999987 69.33194000000009) (-68.94110099999995 69.33248900000007) (-68.92138699999987 69.33194000000009) (-68.6583399999999 69.30026200000009) (-68.537216 69.28526299999999) (-68.50473 69.28027299999997) (-68.33056599999992 69.27526899999998) (-68.25195300000001 69.27748100000008) (-68.23083500000001 69.27777100000009) (-68.19860799999998 69.27470399999999) (-68.17222599999997 69.26971400000008) (-68.15943899999996 69.26609800000006) (-68.14834599999989 69.26165800000001) (-68.13972499999988 69.25776699999994) (-68.08860800000002 69.2288670000001) (-68.083618 69.22554000000014) (-68.07749899999988 69.21748400000007) (-68.08167999999995 69.211929) (-68.09138499999995 69.20555100000007) (-68.103882 69.2022090000001) (-68.12971500000003 69.19775400000009) (-68.16305499999993 69.19999700000005) (-68.26306199999999 69.21138000000008) (-68.41082799999992 69.22137499999997) (-68.54998799999998 69.22692899999998) (-68.64361600000001 69.22943100000003) (-68.664444 69.22804300000013) (-68.68998699999992 69.22360200000003) (-68.83972199999994 69.21470600000009) (-68.92304999999999 69.2208250000001) (-68.96777299999997 69.22109999999998) (-68.94833399999987 69.21415699999994) (-68.93971299999987 69.211929) (-68.91305499999999 69.20748900000001) (-68.86277799999999 69.20193499999999) (-68.80749499999996 69.19886800000006) (-68.78805499999999 69.19831800000003) (-68.76722699999999 69.19970700000005) (-68.73777799999999 69.20359800000011) (-68.70472699999999 69.20915200000007) (-68.65695199999999 69.21054100000009) (-68.61805700000002 69.20915200000007) (-68.515015 69.20248400000014) (-68.50250199999999 69.19859300000007) (-68.50527999999991 69.19581599999998) (-68.51390100000003 69.19192500000008) (-68.69055199999997 69.141098) (-68.70722999999992 69.13832100000008) (-68.872772 69.12052900000003) (-68.99804699999999 69.10359199999999) (-68.96167000000003 69.10386700000004) (-68.92971799999992 69.10026600000015) (-68.92694099999994 69.09832800000004) (-68.92666600000001 69.07998700000002) (-68.95777900000002 69.00526400000001) (-68.95889299999999 69.00305200000014) (-68.96916199999993 68.99359100000004) (-68.99415599999992 68.982483) (-69.00611899999996 68.97831700000012) (-69.01888999999989 68.97581500000007) (-69.028885 68.97137500000002) (-69.02583300000003 68.96859700000005) (-69.01750199999998 68.966385) (-69.00556899999992 68.96470599999998) (-68.99804699999999 68.96499599999999) (-68.973053 68.97082499999999) (-68.962784 68.97470100000004) (-68.94638099999992 68.982483) (-68.93055700000002 68.99275200000005) (-68.92027299999995 69.00277699999998) (-68.89416499999993 69.04498299999995) (-68.89416499999993 69.05053700000013) (-68.89222699999999 69.06219499999997) (-68.889725 69.06637600000005) (-68.88194299999986 69.07777400000009) (-68.87916599999994 69.08137499999992) (-68.8724979999999 69.084991) (-68.85833699999989 69.08831800000013) (-68.75361599999997 69.10971100000006) (-68.471115 69.166382) (-68.41278099999994 69.17692600000004) (-68.38137799999993 69.17526200000003) (-68.35139499999997 69.17164600000012) (-68.17832900000002 69.14665199999996) (-68.089447 69.126083) (-67.72528099999994 69.03221100000013) (-67.715012 69.0291600000001) (-67.708054 69.02470400000004) (-67.70584099999996 69.01638800000012) (-67.72111499999994 69.00972000000013) (-67.97471599999994 68.9727630000001) (-68.02944899999994 68.97137500000002) (-68.05888400000003 68.97360200000008) (-68.21112099999993 68.99192800000009) (-68.241379 68.99693300000013) (-68.26806599999998 69.00277699999998) (-68.31416299999995 69.0105440000001) (-68.33500700000002 69.00915500000008) (-68.53555299999988 68.98414600000012) (-68.54861499999998 68.98220800000001) (-68.55277999999998 68.97720300000015) (-68.55471799999992 68.97110000000004) (-68.556107 68.964157) (-68.54527299999995 68.95971700000001) (-68.44055200000003 68.9727630000001) (-68.33750900000001 68.98580900000007) (-68.32028199999996 68.98637400000007) (-68.30305499999997 68.98580900000007) (-68.29055799999998 68.98220800000001) (-68.285278 68.97747800000013) (-68.28443900000002 68.97470100000004) (-68.26417500000002 68.96470599999998) (-68.19694500000003 68.94999700000011) (-68.18666100000002 68.94775400000015) (-68.16944899999999 68.94693000000001) (-68.15222199999994 68.94693000000001) (-68.116104 68.94747899999993) (-68.08167999999995 68.94747899999993) (-68.06416300000001 68.94609100000002) (-68.04834 68.94386300000008) (-68.03999299999998 68.94136000000009) (-67.97471599999994 68.86526500000008) (-67.972778 68.85914600000007) (-67.97749299999998 68.855545) (-67.98693800000001 68.85443100000003) (-68.0061189999999 68.85497999999995) (-68.08222999999998 68.86248799999998) (-68.129166 68.867752) (-68.18360899999999 68.87858600000004) (-68.24221799999987 68.88998400000003) (-68.25611900000001 68.89221200000003) (-68.289444 68.89498900000012) (-68.37388599999997 68.89721700000007) (-68.475281 68.89942900000011) (-68.48999000000003 68.897491) (-68.49166899999994 68.89665200000002) (-68.48889200000002 68.893326) (-68.48582499999992 68.89027400000009) (-68.47721899999993 68.88693200000012) (-68.46333300000003 68.88554400000004) (-68.43249499999996 68.88333100000006) (-68.37304699999993 68.88220200000012) (-68.35360699999995 68.88108799999992) (-68.29305999999997 68.87498499999998) (-68.266663 68.86998000000011) (-68.17971799999992 68.85192899999998) (-68.13389599999994 68.83720399999999) (-68.00834700000001 68.81666600000011) (-67.972778 68.81192000000004) (-67.95556599999998 68.81025700000009) (-67.91694599999994 68.80831899999998) (-67.88667299999992 68.80886800000007) (-67.86138900000003 68.80554200000006) (-67.77833599999991 68.78610200000008) (-67.77194199999997 68.78276100000005) (-67.77139299999993 68.78137200000003) (-67.77471899999995 68.77915999999999) (-67.80332900000002 68.77415500000012) (-67.82000699999998 68.7727660000001) (-67.85777299999995 68.77137800000003) (-67.872772 68.77165200000013) (-67.915009 68.77415500000012) (-67.94444299999992 68.77804600000002) (-68.07611099999997 68.80192599999998) (-68.17083699999989 68.81469700000008) (-68.35221899999993 68.83248899999995) (-68.42639200000002 68.83915700000011) (-68.54666099999997 68.84664900000007) (-68.56555199999997 68.84721400000012) (-68.58805799999999 68.84637499999997) (-68.60610999999989 68.842758) (-68.61054999999999 68.83915700000011) (-68.61166399999996 68.83581500000003) (-68.60444599999994 68.83137499999998) (-68.593887 68.82748400000008) (-68.55776999999995 68.82138099999997) (-68.52694699999995 68.79525800000005) (-68.60249299999992 68.794983) (-68.67887899999994 68.79664600000012) (-68.79527300000001 68.79942300000005) (-68.80722000000003 68.80026199999998) (-68.90028399999994 68.80720500000001) (-68.96749899999992 68.81469700000008) (-68.99527 68.81915300000003) (-69.00389100000001 68.82222000000013) (-69.015015 68.8272090000001) (-69.10583500000001 68.84860200000003) (-69.25111400000003 68.87248199999999) (-69.28083799999996 68.87580900000012) (-69.32305899999994 68.8766480000001) (-69.36193800000001 68.87414600000005) (-69.37805199999997 68.87136800000002) (-69.38999899999999 68.86747699999995) (-69.398056 68.86219800000015) (-69.394455 68.85775799999999) (-69.37999000000002 68.85497999999995) (-69.36082499999992 68.85443100000003) (-69.33167999999995 68.85693400000002) (-69.27944899999994 68.855255) (-69.24554399999988 68.85137900000012) (-69.18554699999999 68.84220900000008) (-69.171112 68.83888200000013) (-69.16221599999994 68.83581500000003) (-69.15222199999994 68.82804899999996) (-69.15388499999995 68.8272090000001) (-69.16305499999999 68.826096) (-69.22999600000003 68.8272090000001) (-69.29415899999992 68.83194000000003) (-69.31500199999999 68.83166499999999) (-69.35777300000001 68.82916300000011) (-69.368607 68.8272090000001) (-69.37554899999998 68.82499700000005) (-69.382767 68.81915300000003) (-69.383896 68.8163760000001) (-69.38137799999998 68.81498699999992) (-69.37110899999999 68.81275900000014) (-69.193604 68.80415300000004) (-68.971115 68.79193100000009) (-68.95916699999992 68.78970300000015) (-68.94499200000001 68.78692600000005) (-68.94249000000002 68.78498800000011) (-68.19638099999997 68.70694000000015) (-68.04943799999995 68.68165599999998) (-68.04499800000002 68.67831400000006) (-68.04611199999994 68.67637600000006) (-68.08750899999995 68.62942500000008) (-68.09445199999993 68.62776200000013) (-68.34445199999999 68.6285860000001) (-68.56220999999988 68.65193199999999) (-68.62193300000001 68.65582300000005) (-68.65777600000001 68.65637200000015) (-68.68028300000003 68.65554800000001) (-68.74777199999994 68.64915500000006) (-68.77778599999994 68.64305100000001) (-68.89416499999993 68.60720800000001) (-68.90249599999999 68.6035920000001) (-68.90028399999994 68.60304300000001) (-68.83583099999998 68.589157) (-68.804169 68.58998099999997) (-68.75767499999995 68.60064699999998) (-68.74934399999995 68.60265400000014) (-68.73500100000001 68.60731499999997) (-68.71116599999999 68.62114700000012) (-68.67999299999991 68.63081400000004) (-68.64750700000002 68.6355440000001) (-68.62860099999989 68.6355440000001) (-68.59416199999993 68.63360599999999) (-68.56304899999992 68.62942500000008) (-68.53332499999999 68.62498500000004) (-68.48138399999993 68.61499000000015) (-68.475281 68.61303700000002) (-68.47027600000001 68.60914600000012) (-68.46945199999999 68.60636900000003) (-68.48332199999999 68.59693900000013) (-68.50389100000001 68.58998099999997) (-68.519455 68.58581500000008) (-68.53388999999993 68.58387800000003) (-68.60583499999996 68.57887299999999) (-68.64834599999995 68.57777399999998) (-68.66000400000001 68.57887299999999) (-68.68288399999994 68.57521100000002) (-68.69506100000001 68.57437900000014) (-68.70705399999997 68.57337200000012) (-68.71238700000004 68.572044) (-68.71606400000002 68.56938200000002) (-68.71672799999993 68.56804700000004) (-68.70705399999997 68.5660400000001) (-68.69672400000002 68.56520799999998) (-68.656113 68.559708) (-68.46000700000002 68.56219500000009) (-68.44722000000002 68.56359900000007) (-68.43527199999994 68.56749000000013) (-68.42721599999999 68.57193000000001) (-68.42277499999994 68.57609600000006) (-68.4202729999999 68.57971199999992) (-68.41999799999996 68.5852660000001) (-68.41639700000002 68.59136999999998) (-68.39611799999994 68.59304800000007) (-68.337784 68.59332300000011) (-68.24444599999998 68.58804300000003) (-68.21556099999987 68.58554100000015) (-68.13667299999997 68.57222000000002) (-68.06534599999992 68.54582200000004) (-67.92027300000001 68.534424) (-67.86694299999999 68.50972000000007) (-67.80915800000002 68.5310970000001) (-67.67304999999993 68.56109600000008) (-67.66416900000002 68.56275900000003) (-67.64361599999995 68.56275900000003) (-67.53944399999995 68.55081200000006) (-67.52555799999999 68.54859899999991) (-67.50083899999993 68.53831500000007) (-67.49221799999992 68.52720600000004) (-67.49305699999996 68.52360499999998) (-67.502228 68.51499900000005) (-67.510559 68.51138299999997) (-67.51916499999993 68.50915500000002) (-67.54305999999991 68.506104) (-67.60777300000001 68.50387600000005) (-67.62165800000002 68.5) (-67.62805200000003 68.49636800000002) (-67.63473499999992 68.486649) (-67.62138399999998 68.38442999999995) (-67.618607 68.38108800000003) (-67.61250299999995 68.37942499999991) (-67.6033329999999 68.37886000000009) (-67.59445199999999 68.38136300000008) (-67.55110200000001 68.41442899999998) (-67.54834 68.44026200000013) (-67.5494379999999 68.44386300000002) (-67.55583200000001 68.45526100000001) (-67.51112399999994 68.4833220000001) (-67.42610200000001 68.49443099999996) (-67.335556 68.49693300000007) (-67.31639100000001 68.49609400000008) (-67.23249799999996 68.480545) (-67.22416699999997 68.47665400000011) (-67.21749899999992 68.47192400000006) (-67.21362299999993 68.44081100000005) (-67.223053 68.42608600000011) (-67.30777 68.42330900000002) (-67.32583599999998 68.42137100000008) (-67.33277900000002 68.41886900000003) (-67.33583099999998 68.4160920000001) (-67.33860800000002 68.41192600000005) (-67.33805799999999 68.40998800000006) (-67.32444800000002 68.40776100000005) (-67.15695199999999 68.40637200000003) (-67.11193800000001 68.41192600000005) (-67.10499600000003 68.414154) (-67.10055499999993 68.41832000000005) (-67.09722899999997 68.45138500000013) (-67.100281 68.45721400000014) (-67.10665899999987 68.46054100000009) (-67.11665299999999 68.46360799999997) (-67.12721299999998 68.46804800000001) (-67.12999000000002 68.47276300000004) (-67.126938 68.47554000000014) (-67.11277799999999 68.4788670000001) (-66.90805099999994 68.4538730000001) (-66.821396 68.46527100000009) (-66.80305499999997 68.46720900000003) (-66.78750600000001 68.4649960000001) (-66.706955 68.44470200000012) (-66.69776899999994 68.42803999999995) (-66.72416699999991 68.42915300000004) (-66.78277599999996 68.42608600000011) (-66.90499899999992 68.41638200000011) (-66.92054699999994 68.41110200000008) (-66.92166099999992 68.40832499999999) (-66.9141689999999 68.39888000000008) (-66.91305499999999 68.39498900000001) (-66.914444 68.3919370000001) (-66.93638599999997 68.37442000000004) (-66.94665499999991 68.36998000000006) (-66.95500199999998 68.36747700000006) (-67.00584399999997 68.35443099999998) (-67.01112399999994 68.35359199999999) (-67.02416999999997 68.35386699999998) (-67.04888900000003 68.35582000000011) (-67.07556199999993 68.36053500000014) (-67.11138899999997 68.37025500000004) (-67.13027999999991 68.37970000000013) (-67.14222699999999 68.38275099999998) (-67.23055999999997 68.39498900000001) (-67.245544 68.395828) (-67.28639199999998 68.395828) (-67.37971500000003 68.39082300000013) (-67.41111799999993 68.38275099999998) (-67.41555799999998 68.37803600000012) (-67.41888399999999 68.376373) (-67.45556599999992 68.36775200000011) (-67.49471999999997 68.36080900000007) (-67.59527600000001 68.34776299999999) (-67.63166799999999 68.34526100000011) (-67.64611799999994 68.34471100000007) (-67.74388099999999 68.34332299999994) (-67.78138699999994 68.3372040000001) (-67.81054699999999 68.328598) (-67.83222999999992 68.32026700000011) (-67.84973099999996 68.30998199999999) (-67.86582900000002 68.29971299999994) (-67.87110899999999 68.292755) (-67.87832600000002 68.26527400000009) (-67.86972000000003 68.25999500000012) (-67.86000100000001 68.25833100000011) (-67.845551 68.25888099999997) (-67.83332799999994 68.26138300000002) (-67.82667500000002 68.26443499999993) (-67.8202819999999 68.26859999999994) (-67.81806899999992 68.27415500000006) (-67.82112099999995 68.284988) (-67.82055700000001 68.28970300000003) (-67.81555199999997 68.29220600000002) (-67.75250199999999 68.3188780000001) (-67.74526999999989 68.32054100000005) (-67.597778 68.32304400000004) (-67.58306900000002 68.30802900000003) (-67.57223499999998 68.27331499999997) (-67.57667500000002 68.26859999999994) (-67.583328 68.26554899999996) (-67.59167499999995 68.26304600000014) (-67.61639400000001 68.25833100000011) (-67.64666699999998 68.25360100000006) (-67.662781 68.25248700000009) (-67.689438 68.24803200000008) (-67.695267 68.24247700000001) (-67.69499200000001 68.2410890000001) (-67.69082600000002 68.23970000000008) (-67.67971799999992 68.23887600000012) (-67.666946 68.23997500000013) (-67.57972699999993 68.25138900000002) (-67.5708469999999 68.25305200000014) (-67.55166600000001 68.25833100000011) (-67.54695099999998 68.2605440000001) (-67.53916900000002 68.26582300000007) (-67.53306600000002 68.27137800000014) (-67.53111299999995 68.27832000000006) (-67.53500400000001 68.28553800000003) (-67.541382 68.28887900000007) (-67.54611199999994 68.29414400000013) (-67.54499799999996 68.29637100000002) (-67.54028299999993 68.29971299999994) (-67.52389499999998 68.30859400000008) (-67.49415599999998 68.32193000000001) (-67.401947 68.35247800000002) (-67.39472999999998 68.3541560000001) (-67.38555899999994 68.35443099999998) (-67.24388099999999 68.35832200000004) (-67.23249799999996 68.35748300000006) (-67.18249500000002 68.34942600000011) (-67.13027999999991 68.34082000000001) (-67.07806399999993 68.3311000000001) (-67.01611300000002 68.318604) (-67.01167299999992 68.31608600000004) (-67.01834099999996 68.311646) (-67.03250099999997 68.309143) (-67.152222 68.29998799999998) (-67.23500099999995 68.29165599999999) (-67.30387899999994 68.25888099999997) (-67.31973299999999 68.24971) (-67.32778899999994 68.24359099999998) (-67.33361799999994 68.23776199999998) (-67.33750900000001 68.232483) (-67.33889799999992 68.22776799999997) (-67.33944699999995 68.22164900000013) (-67.33944699999995 68.20555100000007) (-67.33500700000002 68.20082100000002) (-67.32749899999993 68.18664600000011) (-67.32778899999994 68.18109100000004) (-67.33860800000002 68.17109700000003) (-67.34584000000001 68.16609199999999) (-67.37110899999999 68.15386999999998) (-67.387787 68.14637800000008) (-67.39862099999988 68.1438750000001) (-67.41250599999995 68.14305100000013) (-67.43028300000003 68.14471400000008) (-67.456955 68.14942900000011) (-67.47778299999999 68.15498400000001) (-67.51390100000003 68.1624910000001) (-67.528885 68.16526800000003) (-67.56777999999997 68.16914400000007) (-67.58111600000001 68.16886900000009) (-67.59889199999998 68.16499299999998) (-67.59834299999994 68.16276600000015) (-67.57556199999993 68.15498400000001) (-67.54472399999992 68.14776599999999) (-67.48028599999998 68.13472000000002) (-67.466949 68.13220200000006) (-67.43804899999998 68.12803600000001) (-67.40805099999994 68.12498499999998) (-67.39695699999993 68.12469499999997) (-67.37416100000002 68.12747200000001) (-67.353882 68.135269) (-67.30777 68.15554800000012) (-67.30416899999994 68.15860000000004) (-67.27389499999992 68.19081100000011) (-67.27278100000001 68.19552599999997) (-67.27471899999989 68.20054600000003) (-67.27917500000001 68.20526100000006) (-67.283615 68.21192900000005) (-67.28889499999997 68.22637900000012) (-67.289444 68.23082000000005) (-67.289444 68.23637400000007) (-67.27471899999989 68.24414100000001) (-67.178879 68.26998900000012) (-67.139725 68.27998400000007) (-67.05776999999989 68.29109200000005) (-67.01139799999999 68.29498300000012) (-66.99833699999994 68.29248000000013) (-66.99110399999995 68.28887900000007) (-66.98611499999998 68.28553800000003) (-66.98416099999997 68.28054800000001) (-66.97361799999999 68.27388000000002) (-66.964722 68.270264) (-66.93057299999992 68.26248200000003) (-66.86582899999996 68.25) (-66.83583099999993 68.24636800000007) (-66.791672 68.24470500000012) (-66.77749599999999 68.24331700000005) (-66.76972999999992 68.2410890000001) (-66.76583900000003 68.23858600000011) (-66.78028899999998 68.20776400000005) (-66.85221899999999 68.11526500000008) (-66.88890099999998 68.092758) (-66.89666699999987 68.0894320000001) (-66.91389499999997 68.08415200000007) (-66.94583099999994 68.076096) (-66.95445299999994 68.07193000000007) (-66.96556099999992 68.06387300000011) (-66.971115 68.05331400000006) (-66.97277799999995 68.04859900000002) (-66.97332799999998 68.03942899999998) (-66.96972700000003 68.03414900000013) (-66.96112099999999 68.02499400000005) (-66.95361299999996 68.01721200000009) (-66.94665499999991 68.01361100000003) (-66.92805499999997 68.042755) (-66.92166099999992 68.04914900000006) (-66.83612099999993 68.09553500000004) (-66.74804699999999 68.13165300000014) (-66.70916699999992 68.141098) (-66.69444299999998 68.14305100000013) (-66.68276999999995 68.14137300000004) (-66.678879 68.13888500000002) (-66.670837 68.12886000000015) (-66.67027299999995 68.1141510000001) (-66.67805499999992 68.04332000000005) (-66.68055700000002 68.036926) (-66.6930539999999 68.02221700000013) (-66.70638999999994 68.01165800000012) (-66.72083999999995 68.00166300000001) (-66.73500099999995 67.98220800000001) (-66.73277300000001 67.98193400000008) (-66.71472199999994 67.98359700000003) (-66.6972199999999 67.9874880000001) (-66.64723200000003 68.01554899999996) (-66.63473499999986 68.06414799999993) (-66.63194299999998 68.07582100000013) (-66.62554899999998 68.103317) (-66.62027 68.12580900000012) (-66.61555499999997 68.13247700000011) (-66.61054999999993 68.13693200000012) (-66.59472699999992 68.14305100000013) (-66.56138599999997 68.14749099999995) (-66.54194599999988 68.14833099999998) (-66.51362599999993 68.14833099999998) (-66.32888799999995 68.13220200000006) (-66.31527699999998 68.13026400000012) (-66.30943299999996 68.12747200000001) (-66.31054699999993 68.1185910000001) (-66.31500199999988 68.11248799999998) (-66.321121 68.10693400000014) (-66.35028099999994 68.09027100000009) (-66.36639400000001 68.08332800000011) (-66.37165799999997 68.08166499999999) (-66.38861099999997 68.08137499999998) (-66.41361999999998 68.08610499999998) (-66.42777999999998 68.08749399999999) (-66.45056199999999 68.08692899999994) (-66.46861299999995 68.083054) (-66.4761049999999 68.08055100000001) (-66.47860699999995 68.07720900000004) (-66.47222899999991 68.07304400000004) (-66.460556 68.0705410000001) (-66.43804899999998 68.06805400000002) (-66.38999899999999 68.06944300000004) (-66.36944599999993 68.07165500000008) (-66.32611099999997 68.07916300000011) (-66.303879 68.08387800000014) (-66.29666099999997 68.08610499999998) (-66.27278099999995 68.08776900000004) (-66.25917099999998 68.08581499999997) (-66.25083899999998 68.08221400000014) (-66.24027999999987 68.07331799999997) (-66.18415799999997 68.01887500000004) (-66.18443300000001 68.01332100000002) (-66.18638599999991 68.01081800000003) (-66.19276400000001 68.00721700000003) (-66.2041779999999 68.00471500000009) (-66.25306699999987 68.00221300000004) (-66.26417500000002 67.99971000000005) (-66.29444899999999 67.9916530000001) (-66.30972299999996 67.98609900000008) (-66.32084699999996 67.97886699999998) (-66.34445199999993 67.95665000000008) (-66.40583800000002 67.89804100000003) (-66.40139799999997 67.888596) (-66.52223200000003 67.86080900000002) (-66.535278 67.86360200000001) (-66.59416199999998 67.87248200000005) (-66.628601 67.8766480000001) (-66.67250100000001 67.88026400000001) (-66.729446 67.87885999999997) (-66.73971599999999 67.87776200000008) (-66.74694799999992 67.87525900000014) (-66.74499499999996 67.87275700000004) (-66.73222399999997 67.86720300000007) (-66.70306399999998 67.86360200000001) (-66.68693499999995 67.86276199999998) (-66.653885 67.85942100000011) (-66.56138599999997 67.84304800000007) (-66.40139799999997 67.81109600000008) (-66.35665899999992 67.82138100000003) (-66.34638999999999 67.86109900000002) (-66.33277900000002 67.88777200000004) (-66.31945799999988 67.91110200000014) (-66.295837 67.93830900000012) (-66.27667200000002 67.95443699999998) (-66.26861599999995 67.95803799999999) (-66.25195299999996 67.9624940000001) (-66.24055499999997 67.96276899999992) (-66.22749299999987 67.95999100000012) (-66.21389799999997 67.96081500000008) (-66.13694800000002 67.976089) (-66.11999500000002 67.98136900000009) (-66.00321999999989 68.02049299999999) (-65.98872399999988 68.02614599999998) (-65.98138399999999 68.02998400000013) (-65.943604 68.04609700000015) (-65.94860799999998 68.09248400000007) (-65.95861799999994 68.12942499999997) (-65.96194500000001 68.13749700000011) (-65.960556 68.14444000000015) (-65.94749499999989 68.15416000000005) (-65.94166599999994 68.15721100000002) (-65.92832900000002 68.1622010000001) (-65.920837 68.16192600000005) (-65.91194199999995 68.15887500000008) (-65.86749299999991 68.12469499999997) (-65.86389200000002 68.11943100000013) (-65.85777300000001 68.11026000000004) (-65.85360700000001 68.07804899999991) (-65.85360700000001 68.07331799999997) (-65.85777300000001 68.06721500000003) (-65.93383799999992 68.01226800000012) (-65.96032699999995 67.99642900000003) (-65.98083500000001 67.98726700000009) (-65.99433099999999 67.97976700000004) (-66.03222699999998 67.95248400000003) (-65.98582499999998 67.91665599999999) (-65.96722399999999 67.85331700000006) (-65.98083500000001 67.842758) (-66.00500499999987 67.81498699999997) (-66.00973499999998 67.80331400000011) (-66.02888499999995 67.72442600000011) (-66.02888499999995 67.71943699999997) (-66.02194199999997 67.65026900000004) (-66.02000399999991 67.63526900000011) (-66.01306199999993 67.62692300000003) (-66.008621 67.62553400000002) (-65.9997249999999 67.62747200000013) (-65.98666399999996 67.63526900000011) (-65.96139499999998 67.68969700000008) (-65.95028699999995 67.722488) (-65.936935 67.76554900000002) (-65.93859899999995 67.77609300000006) (-65.94249000000002 67.78082300000011) (-65.953888 67.79832499999998) (-65.95666499999993 67.81192000000004) (-65.95584099999996 67.81832900000006) (-65.95333899999997 67.82138100000003) (-65.94610599999999 67.82638500000013) (-65.92639199999996 67.832764) (-65.86915599999992 67.84414700000002) (-65.83167999999995 67.85443100000003) (-65.804169 67.86360200000001) (-65.79527299999995 67.868042) (-65.76362599999993 67.909988) (-65.76222200000001 67.91470300000003) (-65.76390100000003 67.91970800000007) (-65.76722699999999 67.92303500000003) (-65.79888900000003 67.93830900000012) (-65.81973299999999 67.95555100000013) (-65.823624 67.96276899999992) (-65.81777999999997 67.96804800000012) (-65.80776999999995 67.97110000000004) (-65.68443300000001 67.99247700000006) (-65.46305799999999 67.99636800000013) (-65.44860799999998 67.99552900000015) (-65.443604 67.99220300000013) (-65.44193999999999 67.98692300000005) (-65.44249000000002 67.98136900000009) (-65.45750399999997 67.93719499999992) (-65.464447 67.92082200000004) (-65.52027899999996 67.84304800000007) (-65.52583300000003 67.83776900000004) (-65.54527300000001 67.82222000000013) (-65.55860899999999 67.81442300000003) (-65.57362399999994 67.80693100000008) (-65.603882 67.79693599999996) (-65.61054999999988 67.79275500000006) (-65.61582900000002 67.78610200000008) (-65.61389199999991 67.78082300000011) (-65.61000100000001 67.77638200000001) (-65.59194899999994 67.76304600000009) (-65.57250999999997 67.75166300000006) (-65.55694599999987 67.7452550000001) (-65.51750199999998 67.73304700000006) (-65.47361799999993 67.71971100000007) (-65.45472699999999 67.71276899999998) (-65.43971299999993 67.70555100000001) (-65.42639199999996 67.69636500000001) (-65.41361999999998 67.68359399999991) (-65.40695199999999 67.67498800000004) (-65.40360999999996 67.66470300000009) (-65.40028399999994 67.65443400000004) (-65.39639299999988 67.64498900000001) (-65.38473499999992 67.625809) (-65.36389200000002 67.59748800000011) (-65.35665899999992 67.59471100000002) (-65.34638999999999 67.59332300000011) (-65.33528100000001 67.59359700000005) (-65.32278400000001 67.59498600000006) (-65.31834400000002 67.601089) (-65.36915599999992 67.70277400000009) (-65.37916599999994 67.71165500000001) (-65.40264899999994 67.72322100000008) (-65.46250899999995 67.74192800000014) (-65.49249299999997 67.75166300000006) (-65.51083399999999 67.75915500000002) (-65.54444899999999 67.77415500000012) (-65.55055199999998 67.77832000000012) (-65.55444299999999 67.78305100000006) (-65.55444299999999 67.78804000000002) (-65.42361499999998 67.89804100000003) (-65.29249599999997 67.934143) (-65.235275 67.94470200000006) (-65.20140100000003 67.95443699999998) (-65.17166099999992 67.966095) (-65.15638699999994 67.97360200000008) (-65.14416499999987 67.98414599999995) (-65.14138799999995 67.99026500000002) (-65.14555399999995 67.997208) (-65.17582700000003 68.00888100000003) (-65.18083199999995 68.01220700000005) (-65.181107 68.016663) (-65.17666599999995 68.02249100000006) (-65.16915899999992 68.02720600000009) (-65.047775 68.04942299999999) (-65.00111399999992 68.055542) (-64.973053 68.05026199999998) (-64.73416099999997 67.99386600000003) (-64.72361799999999 67.99054000000001) (-64.71749899999998 67.98637400000013) (-64.71362299999998 67.98165900000009) (-64.71806300000003 67.97665400000005) (-64.72555499999993 67.97164899999996) (-64.74333200000001 67.96581999999995) (-64.84722899999997 67.93498199999999) (-64.94249000000002 67.91249099999999) (-65.015289 67.86248800000004) (-65.01777599999997 67.820831) (-65.00834700000001 67.78526299999993) (-65.01417500000002 67.78027300000008) (-65.05110199999996 67.75443999999999) (-65.06054699999993 67.7522130000001) (-65.0852809999999 67.749146) (-65.112213 67.74803200000002) (-65.12443499999995 67.74636800000002) (-65.136124 67.7435910000001) (-65.14555399999995 67.73887600000006) (-65.15833999999995 67.72970600000002) (-65.17999299999991 67.71360800000014) (-65.19248999999996 67.70220900000004) (-65.19638099999997 67.69720500000011) (-65.19860799999992 67.69164999999998) (-65.20500199999998 67.65914900000007) (-65.20556599999992 67.65359500000011) (-65.20417800000001 67.6483310000001) (-65.20028699999995 67.64387500000004) (-65.17832899999996 67.63360599999999) (-65.17250099999995 67.63360599999999) (-65.16722099999998 67.63581800000003) (-65.162781 67.63888500000013) (-65.150284 67.67221100000012) (-65.14973399999997 67.67776500000008) (-65.150284 67.68193100000002) (-65.15417499999995 67.68664600000005) (-65.15333599999991 67.69220000000001) (-65.14889499999998 67.69831799999997) (-65.12971500000003 67.71582000000001) (-65.12416100000002 67.71804799999995) (-64.92971799999992 67.78776600000009) (-64.91972399999992 67.79081700000012) (-64.90722700000003 67.79220599999996) (-64.82722499999994 67.78471400000001) (-64.81639100000001 67.78137200000009) (-64.81054699999999 67.77720599999998) (-64.80888400000003 67.771927) (-64.80749499999996 67.74275200000011) (-64.81610099999989 67.71054100000003) (-64.82583599999998 67.70304900000008) (-64.83750900000001 67.70027199999998) (-64.86277799999999 67.69164999999998) (-64.86250299999995 67.68748499999998) (-64.84944200000001 67.68719499999997) (-64.82055700000001 67.68830899999995) (-64.79972800000002 67.69081100000005) (-64.77944899999989 67.69775400000003) (-64.773056 67.70359800000006) (-64.76861600000001 67.70942700000006) (-64.76222199999995 67.76249700000011) (-64.75584399999997 67.81776400000007) (-64.75 67.82276900000011) (-64.74082900000002 67.82470700000005) (-64.65306099999998 67.82887299999993) (-64.61193800000001 67.82638500000013) (-64.56806899999998 67.81999200000001) (-64.506958 67.80720500000001) (-64.36888099999993 67.76416000000006) (-64.36332700000003 67.75943000000001) (-64.36389199999996 67.75443999999999) (-64.39611799999994 67.71192900000011) (-64.40139799999992 67.70776400000011) (-64.41471899999999 67.70721400000008) (-64.43138099999999 67.70971700000007) (-64.44526699999994 67.71138000000002) (-64.4600069999999 67.71165500000001) (-64.47250399999996 67.71026600000005) (-64.57833899999997 67.69693000000007) (-64.59722899999986 67.68969700000008) (-64.61721799999998 67.67858900000004) (-64.6372219999999 67.66526799999991) (-64.63917500000002 67.66053800000009) (-64.62638900000002 67.65971400000012) (-64.61833200000001 67.66304000000014) (-64.58139 67.67442299999999) (-64.51583900000003 67.68609600000002) (-64.45417799999996 67.69331400000004) (-64.38082899999989 67.69802900000008) (-64.36250299999989 67.70248400000008) (-64.34722899999997 67.709991) (-64.33138999999989 67.72720300000003) (-64.32640099999992 67.7310940000001) (-64.31806899999992 67.73414600000001) (-64.30555700000002 67.73359700000009) (-64.29527300000001 67.73027000000013) (-64.07278400000001 67.6102600000001) (-64.06777999999997 67.60247799999996) (-64.03971899999999 67.53360000000009) (-64.0386049999999 67.52859500000005) (-64.03889500000002 67.52581800000013) (-64.04499800000002 67.52082800000005) (-64.05305499999992 67.51748700000002) (-64.13473499999992 67.49026500000008) (-64.14472999999992 67.48719799999998) (-64.16528299999999 67.48248299999995) (-64.2386019999999 67.46748400000007) (-64.25083899999987 67.46609500000011) (-64.27194199999997 67.4649960000001) (-64.281113 67.46554600000013) (-64.34388699999994 67.46998599999995) (-64.38694800000002 67.474426) (-64.412216 67.47747800000008) (-64.42304999999999 67.47804300000013) (-64.43554699999999 67.47859200000005) (-64.44055200000003 67.47499100000005) (-64.43222000000003 67.47109999999998) (-64.41000400000001 67.46415699999994) (-64.38473499999998 67.45832800000011) (-64.35694899999999 67.4538730000001) (-64.29666099999992 67.44802900000008) (-64.283615 67.44802900000008) (-64.20445299999994 67.4522090000001) (-64.19055199999997 67.45332300000007) (-64.166946 67.45694000000003) (-64.14500399999986 67.46165500000006) (-64.12332199999992 67.46527100000014) (-64.11111499999993 67.4666600000001) (-64.08639499999998 67.46748400000007) (-64.04804999999988 67.46415699999994) (-64.01083399999999 67.45971700000013) (-64.00111400000003 67.45582600000006) (-63.99265300000002 67.44862400000011) (-63.95111099999997 67.40998800000011) (-63.90416699999997 67.30581699999999) (-63.90416699999997 67.3016510000001) (-63.90582999999992 67.299713) (-63.912773000000016 67.2955320000001) (-63.92388900000003 67.29332000000005) (-63.93721800000003 67.292755) (-64.02278099999995 67.30802900000009) (-64.05526699999996 67.31137100000001) (-64.08473200000003 67.31330900000012) (-64.18167099999994 67.31219499999997) (-64.21749899999998 67.31359899999995) (-64.33999599999999 67.31944299999998) (-64.53056299999992 67.33776899999998) (-64.74027999999998 67.35693400000014) (-64.75750700000003 67.35832200000004) (-64.78832999999992 67.35914600000001) (-64.79750099999995 67.35664400000013) (-64.80082699999997 67.35276800000003) (-64.79888900000003 67.35026600000015) (-64.78860500000002 67.34693900000002) (-64.73443599999996 67.3336030000001) (-64.72138999999993 67.33137499999992) (-64.68777499999999 67.32748400000003) (-64.441666 67.30304000000012) (-64.402222 67.29914900000006) (-64.37249800000001 67.29721100000012) (-64.34472699999992 67.29748500000005) (-64.283615 67.29998799999998) (-64.258621 67.29914900000006) (-64.24610899999999 67.29859900000002) (-64.23832699999997 67.29693600000007) (-64.23194899999999 67.29332000000005) (-64.23388699999987 67.28858900000012) (-64.24833699999999 67.27943400000004) (-64.30638099999999 67.26220700000005) (-64.32501200000002 67.25721699999997) (-64.35611 67.25027500000004) (-64.39222699999999 67.24664300000012) (-64.41944899999993 67.24720799999994) (-64.50917099999998 67.25499000000008) (-64.53694199999995 67.25665300000003) (-64.55027799999999 67.25610400000005) (-64.66861 67.23858599999994) (-64.72416699999997 67.22886699999998) (-64.77917499999995 67.21887200000003) (-64.79028299999993 67.21665999999999) (-64.79998799999993 67.21360800000008) (-64.80972300000002 67.2102660000001) (-64.81610099999989 67.20694000000009) (-64.81304899999998 67.20138500000002) (-64.808044 67.19802900000013) (-64.80139200000002 67.19525099999998) (-64.78332499999993 67.19026200000002) (-64.77278100000001 67.18969699999997) (-64.758896 67.19081099999994) (-64.71665999999999 67.2002720000001) (-64.65583800000002 67.21720900000014) (-64.46665999999999 67.22915600000005) (-64.42527799999993 67.22804300000001) (-64.35078399999998 67.2347640000001) (-64.28744499999999 67.23825799999997) (-64.267113 67.24142500000005) (-64.23277299999995 67.25143400000002) (-64.16944899999999 67.26081800000003) (-64.15888999999993 67.26249700000005) (-64.11471599999999 67.26721200000009) (-64.010559 67.27526900000004) (-63.976944 67.27777100000009) (-63.969993999999986 67.27748100000008) (-63.965836000000024 67.27554299999997) (-63.96277599999996 67.27249100000006) (-63.96277599999996 67.270264) (-63.97582999999992 67.251938) (-63.993056999999965 67.22831700000012) (-63.998336999999935 67.22164900000013) (-64.01333599999998 67.21220400000004) (-64.02139299999999 67.20887800000003) (-64.04527299999995 67.20471199999997) (-64.05610699999994 67.2044370000001) (-64.08860800000002 67.20776400000005) (-64.22022200000004 67.20171400000004) (-64.46749899999992 67.16748000000007) (-64.50140399999992 67.161652) (-64.54527299999995 67.15248100000002) (-64.57501199999996 67.14471400000008) (-64.58416699999992 67.14221200000003) (-64.61193800000001 67.13247700000011) (-64.65805099999994 67.11303700000013) (-64.68083199999995 67.09304800000001) (-64.686935 67.08749399999999) (-64.68998699999992 67.08360299999993) (-64.69249000000002 67.07804899999996) (-64.70056199999999 67.01805100000007) (-64.70111099999991 67.01220700000005) (-64.70056199999999 67.00804099999999) (-64.69694500000003 67.00332600000013) (-64.69193999999999 67.00054900000003) (-64.68306000000001 67.0002750000001) (-64.660278 67.00387599999999) (-64.63861099999997 67.00860600000004) (-64.62832599999996 67.01220700000005) (-64.62388599999991 67.01805100000007) (-64.61972000000003 67.02832000000012) (-64.61805700000002 67.03942899999998) (-64.61805700000002 67.04443400000008) (-64.61972000000003 67.04971300000005) (-64.61888099999999 67.05525200000005) (-64.61527999999993 67.06694000000005) (-64.60916099999997 67.08194000000003) (-64.604172 67.08831799999996) (-64.59777799999989 67.09387200000015) (-64.58361799999989 67.10304300000013) (-64.54750100000001 67.11859099999992) (-64.52722199999988 67.124146) (-64.506393 67.12942500000003) (-64.47471599999994 67.13499500000006) (-64.22999599999997 67.16415400000005) (-64.08721899999995 67.17970300000013) (-64.008896 67.17886400000003) (-63.995551999999975 67.17942800000014) (-63.97138199999995 67.18220500000007) (-63.96055599999994 67.184418) (-63.92972600000002 67.1927490000001) (-63.91916699999996 67.19636500000013) (-63.912216 67.20054600000003) (-63.86222099999992 67.22581500000001) (-63.80750299999994 67.23915099999999) (-63.797500999999954 67.24026500000014) (-63.561942999999985 67.23692300000005) (-63.54639400000002 67.23580900000007) (-63.46944399999995 67.22831700000012) (-63.45833600000003 67.22608899999994) (-63.45055400000001 67.22248800000011) (-63.449164999999994 67.21943700000008) (-63.449164999999994 67.21499599999999) (-63.45083599999998 67.17970300000013) (-63.453888000000006 67.16943400000014) (-63.52944200000002 67.10443100000003) (-63.53833800000001 67.10054000000014) (-63.604720999999984 67.07527200000004) (-63.61389200000002 67.07276900000005) (-63.64805599999988 67.06694000000005) (-63.672775 67.06359900000001) (-63.71277600000002 67.05497700000001) (-63.72277100000002 67.05192599999998) (-63.73138399999999 67.04803500000008) (-63.74444599999998 67.0410920000001) (-63.77972399999999 67.01748700000013) (-63.79583699999995 67.00665300000009) (-63.806389000000024 66.99581900000004) (-63.80721999999997 66.98803700000008) (-63.80139200000002 66.97970599999996) (-63.78138699999994 66.96360800000014) (-63.77249899999987 66.95887800000008) (-63.769447000000014 66.97137500000008) (-63.76888999999994 66.97692900000004) (-63.77111100000002 66.98081999999994) (-63.77249899999987 66.98609899999991) (-63.77361300000001 66.99108899999999) (-63.773330999999985 66.99609400000003) (-63.77083600000003 67.00138900000007) (-63.76721999999995 67.00610400000011) (-63.75695000000002 67.01416) (-63.750557000000015 67.01748700000013) (-63.73444399999994 67.02415500000012) (-63.69860799999998 67.03887899999995) (-63.68000000000001 67.04582199999999) (-63.65083299999998 67.05247500000013) (-63.63833599999998 67.05442800000009) (-63.60083799999995 67.05748) (-63.565552000000025 67.06248500000004) (-63.53527799999995 67.07083100000011) (-63.49722299999996 67.08526600000005) (-63.40277900000001 67.14444000000015) (-63.39639299999999 67.15220600000004) (-63.39416499999993 67.15693699999997) (-63.39388999999994 67.161652) (-63.398056 67.165817) (-63.41694599999988 67.18026700000007) (-63.419997999999964 67.18580600000007) (-63.42194399999988 67.194702) (-63.42083699999995 67.2002720000001) (-63.417778 67.20610000000005) (-63.40916399999992 67.21665999999999) (-63.351669000000015 67.26805100000001) (-63.340553 67.27665700000011) (-63.33250399999997 67.28193700000003) (-63.298888999999974 67.29776000000004) (-63.28055599999993 67.30636600000014) (-63.27249899999998 67.30941800000005) (-63.16027799999995 67.32832300000001) (-63.13722200000001 67.3311000000001) (-63.11028299999987 67.32998700000002) (-63.03972599999986 67.30609099999992) (-63.022498999999925 67.29803500000008) (-63.01500699999997 67.29359399999998) (-62.99777999999998 67.28137200000015) (-62.992774999999995 67.27638200000013) (-62.97388499999988 67.23553500000014) (-62.97083299999997 67.22581500000001) (-62.97083299999997 67.22137500000002) (-63.023056 67.17942800000014) (-63.03583499999996 67.17109700000003) (-63.04472399999986 67.16720599999996) (-63.075561999999934 67.15887500000008) (-63.100554999999986 67.15554800000012) (-63.13417099999998 67.15277100000003) (-63.17027999999999 67.14721700000007) (-63.19027699999998 67.143326) (-63.232497999999964 67.13220200000006) (-63.24250000000001 67.12914999999998) (-63.26888999999994 67.11747700000012) (-63.27583299999998 67.11331200000012) (-63.284447 67.105255) (-63.285278000000005 67.099716) (-63.283615 67.09498600000012) (-63.27805299999994 67.09082000000006) (-63.26860799999997 67.08248899999995) (-63.26083399999999 67.07415800000007) (-63.25389100000001 67.06469700000008) (-63.224716 67.02470400000004) (-63.22027600000001 67.0169370000001) (-63.22027600000001 67.00610400000011) (-63.22083299999997 66.98969999999997) (-63.22138199999995 66.98498499999994) (-63.223884999999996 66.97943099999998) (-63.227776000000006 66.97276299999999) (-63.240837 66.96165500000001) (-63.27777900000001 66.94970699999993) (-63.32055700000001 66.94026200000008) (-63.356109999999944 66.93470800000006) (-63.36860699999994 66.93470800000006) (-63.43638599999997 66.92553700000013) (-63.469993999999986 66.9205320000001) (-63.514725 66.91249099999999) (-63.526138 66.90927100000005) (-63.545554999999865 66.90359500000005) (-63.554442999999935 66.899719) (-63.565552000000025 66.89248700000007) (-63.565552000000025 66.88804600000014) (-63.56361399999997 66.88360599999993) (-63.557503 66.875809) (-63.554717999999866 66.87025499999999) (-63.55139200000002 66.86053500000008) (-63.55555700000002 66.84887700000007) (-63.57194499999997 66.83749400000005) (-63.59332999999992 66.83166500000004) (-63.615005 66.82720899999998) (-63.63889299999988 66.82443200000006) (-63.65222199999988 66.82388300000008) (-63.69860799999998 66.822495) (-63.725273000000016 66.82304399999998) (-63.77583299999992 66.82582100000002) (-63.77138499999995 66.81109600000008) (-63.653053 66.80247500000002) (-63.62444299999993 66.80192600000004) (-63.598334999999906 66.80304000000001) (-63.58777600000002 66.80442800000014) (-63.54888900000003 66.8124850000001) (-63.539443999999946 66.81469700000014) (-63.53527799999995 66.81581100000011) (-63.488891999999964 66.82832300000013) (-63.47888199999994 66.83581500000008) (-63.47638699999993 66.839157) (-63.47527299999996 66.84248400000013) (-63.476944 66.84693900000013) (-63.48722099999998 66.85887100000008) (-63.49471999999997 66.86553999999995) (-63.49694799999986 66.88081400000004) (-63.48722099999998 66.89694200000008) (-63.48082699999998 66.90248100000008) (-63.474441999999954 66.90609699999993) (-63.45610799999997 66.91081199999996) (-63.441666 66.9083250000001) (-63.427223000000026 66.90138200000013) (-63.407219 66.81442300000003) (-63.40777600000001 66.809708) (-63.410278000000005 66.7999880000001) (-63.41471899999999 66.78332500000005) (-63.417778 66.77304099999998) (-63.436110999999926 66.72804300000007) (-63.449439999999925 66.71609500000005) (-63.453056000000004 66.71165500000006) (-63.45194199999992 66.70637499999998) (-63.44193999999993 66.70304899999996) (-63.420279999999934 66.69886800000006) (-63.415276000000006 66.70054600000014) (-63.408332999999914 66.70443700000004) (-63.40277900000001 66.70887800000014) (-63.37666300000001 66.73414600000007) (-63.32028200000002 66.81414800000005) (-63.31945000000002 66.81999200000001) (-63.224716 66.899429) (-62.97388499999988 66.96110499999998) (-62.96250199999997 66.96388200000007) (-62.93999499999995 66.96666000000005) (-62.87222300000002 66.9644320000001) (-62.84694699999994 66.96192900000011) (-62.83777600000002 66.95776400000011) (-62.82111400000002 66.83027600000008) (-62.82055700000001 66.81359900000007) (-62.82749899999993 66.78804000000008) (-62.82972699999999 66.78332500000005) (-62.83750199999997 66.771927) (-62.84332999999998 66.76914999999991) (-62.86444899999998 66.74609400000008) (-62.86999500000002 66.73970000000003) (-62.87305500000002 66.73359700000009) (-62.91194200000001 66.65277100000014) (-62.914444 66.64721699999996) (-62.90805099999994 66.63998400000014) (-62.90305299999994 66.63720700000005) (-62.899726999999984 66.63665800000012) (-62.85916900000001 66.65304599999996) (-62.85028099999994 66.65693700000003) (-62.83527400000003 66.66638200000011) (-62.819999999999936 66.68441800000011) (-62.73416899999995 66.79081699999995) (-62.73583199999996 66.80165100000005) (-62.74333199999995 66.8099820000001) (-62.751113999999916 66.81805400000007) (-62.76805899999994 66.83055100000007) (-62.77417000000003 66.84054600000002) (-62.768332999999984 66.907761) (-62.764449999999954 66.92526200000009) (-62.76111599999996 66.92915299999999) (-62.74305700000002 66.94192499999997) (-62.725273000000016 66.94747899999999) (-62.63417099999998 66.95138500000007) (-62.60777999999999 66.95220900000004) (-62.59222399999993 66.95082100000013) (-62.57861299999996 66.94775400000003) (-62.56889299999989 66.94413800000012) (-62.54999499999997 66.93165599999998) (-62.51999699999993 66.91110200000003) (-62.40277900000001 66.809418) (-62.401389999999935 66.80497700000006) (-62.40193899999997 66.78915400000005) (-62.39861300000001 66.78027299999991) (-62.393332999999984 66.77581800000007) (-62.32695000000001 66.73027000000013) (-62.31945000000002 66.72637900000007) (-62.313332 66.7269290000001) (-62.299171 66.73304700000006) (-62.291388999999924 66.7563780000001) (-62.292778 66.76165800000001) (-62.295837000000006 66.766388) (-62.36222099999998 66.81832900000012) (-62.419448999999986 66.84332300000005) (-62.42472099999998 66.84748800000006) (-62.426948999999865 66.85137899999995) (-62.436942999999985 66.88443000000012) (-62.42722299999997 66.92109700000009) (-62.41889199999997 66.9266510000001) (-62.407501000000025 66.92942800000003) (-62.394721999999945 66.92915299999999) (-62.346946999999886 66.93359400000008) (-62.28472899999991 66.94609100000008) (-62.27166699999998 66.96081500000014) (-62.27972399999993 66.9791560000001) (-62.291388999999924 67.00582900000012) (-62.294448999999986 67.02137800000003) (-62.29361699999998 67.02638200000001) (-62.29028299999999 67.032486) (-62.28527799999995 67.03610200000008) (-62.27860999999996 67.03942899999998) (-62.262504999999976 67.04525800000005) (-62.10139499999997 67.05470300000007) (-62.05444299999988 67.04914900000011) (-62.03194400000001 67.04525800000005) (-62.019721999999945 67.04220600000008) (-62.00556199999994 67.0352630000001) (-62.00695000000002 67.03193700000008) (-62.04999499999991 66.98719800000009) (-62.10611 66.91720600000002) (-62.102225999999916 66.91304000000014) (-62.072227 66.90748600000012) (-62.02972399999999 66.90165700000011) (-62.01888999999994 66.90165700000011) (-62.01860799999997 66.9080350000001) (-62.01500699999991 66.91415400000011) (-61.95666499999993 66.96388200000007) (-61.94972200000001 66.96720899999997) (-61.93860599999999 66.96943699999997) (-61.91332999999997 66.97082500000005) (-61.86555499999997 66.97082500000005) (-61.851395000000025 66.97053500000004) (-61.83805099999995 66.9685970000001) (-61.74972500000001 66.94802900000002) (-61.73722099999998 66.94108600000004) (-61.731941000000006 66.93691999999993) (-61.72888199999994 66.93220500000007) (-61.73082699999986 66.92387400000001) (-61.61277799999999 66.87081899999993) (-61.31416300000001 66.68719500000003) (-61.29472399999992 66.67442299999999) (-61.289443999999946 66.669983) (-61.281386999999995 66.66110200000003) (-61.262504999999976 66.62942500000008) (-61.26666299999994 66.62275699999992) (-61.300277999999935 66.59359700000005) (-61.34166700000003 66.57193000000001) (-61.348052999999936 66.57054100000005) (-61.35666699999996 66.57110600000004) (-61.38833599999998 66.578598) (-61.40027599999996 66.57720899999998) (-61.409720999999934 66.572769) (-61.425003000000004 66.55970800000006) (-61.447776999999974 66.53831500000013) (-61.46166999999997 66.54332) (-61.54861499999987 66.547485) (-61.584723999999994 66.54776000000004) (-61.59860999999995 66.55026200000009) (-61.618056999999965 66.55720500000007) (-61.623885999999914 66.56693999999999) (-61.63194299999998 66.58665499999995) (-61.63861099999997 66.59553499999998) (-61.64389 66.5999910000001) (-61.66916699999996 66.616379) (-61.69138299999997 66.62831100000011) (-61.72582999999986 66.64305100000007) (-61.734443999999996 66.645828) (-61.95055400000001 66.67692599999998) (-62.01555599999995 66.67137100000008) (-62.12388599999997 66.626373) (-62.05055199999998 66.6249850000001) (-62.01860799999997 66.64082300000013) (-61.990837 66.64804100000009) (-61.97999599999997 66.64804100000009) (-61.95055400000001 66.64610299999998) (-61.830284000000006 66.62136800000013) (-61.79695099999998 66.61192300000005) (-61.788895000000025 66.60859700000003) (-61.75389100000001 66.58859300000012) (-61.576667999999984 66.48719800000003) (-61.57527900000002 66.48275799999999) (-61.576392999999996 66.47720300000009) (-61.58332799999994 66.47164900000013) (-61.59194199999996 66.46775800000006) (-61.61416600000001 66.46304300000003) (-61.63500199999993 66.45999100000006) (-61.731383999999935 66.45109600000006) (-61.844161999999926 66.44609100000002) (-61.857779999999934 66.447205) (-61.86972000000003 66.44581599999998) (-61.956947000000014 66.42414900000011) (-61.976943999999946 66.41748000000007) (-61.985832000000016 66.41360500000008) (-61.98694599999993 66.41026299999999) (-61.978049999999996 66.40386999999998) (-61.96416499999998 66.40138200000001) (-61.93416599999989 66.40081800000007) (-61.75500499999998 66.40748600000006) (-61.578612999999905 66.41526800000003) (-61.569449999999904 66.41554300000001) (-61.55726600000003 66.413681) (-61.54527999999999 66.40998800000011) (-61.46694200000002 66.37191800000005) (-61.46250199999997 66.36914100000013) (-61.46361499999989 66.365814) (-61.665276000000006 66.324997) (-61.87749499999995 66.28332499999993) (-61.92888599999998 66.28387499999997) (-62.19888300000002 66.3141480000001) (-62.207503999999915 66.31666600000011) (-62.21221899999995 66.31944299999998) (-62.21805599999993 66.33193999999997) (-62.231941000000006 66.36608900000004) (-62.23221599999994 66.36970500000007) (-62.22943900000001 66.37525900000009) (-62.22499800000003 66.38026400000012) (-62.21860499999997 66.39248700000002) (-62.21832999999987 66.39665200000002) (-62.22361000000001 66.40109300000012) (-62.22999600000003 66.40415999999999) (-62.255279999999914 66.40832499999999) (-62.26889 66.409424) (-62.41861 66.42109700000003) (-62.456107999999915 66.42387400000013) (-62.565833999999995 66.42804000000001) (-62.626662999999894 66.426086) (-62.69888300000002 66.41276600000009) (-62.709723999999994 66.41053799999997) (-62.716110000000015 66.40721100000002) (-62.71028100000001 66.403595) (-62.673614999999984 66.39360000000005) (-62.629996999999946 66.38777199999998) (-62.478049999999996 66.36998000000011) (-62.33750199999997 66.31581100000005) (-62.32028200000002 66.3083190000001) (-62.31610899999998 66.30497700000001) (-62.32055699999995 66.299713) (-62.323616000000015 66.29803500000008) (-62.38889299999994 66.276093) (-62.398338000000024 66.27304100000009) (-62.62194099999999 66.22137500000002) (-62.64361599999995 66.21693399999992) (-62.66694599999994 66.21443200000004) (-62.68083200000001 66.21693399999992) (-62.75194499999992 66.24108899999993) (-62.757225000000005 66.24525500000004) (-62.78055599999993 66.27777100000014) (-62.782218999999884 66.282486) (-62.782218999999884 66.28887900000012) (-62.773330999999985 66.29693600000007) (-62.77417000000003 66.30276500000014) (-62.77944199999996 66.30720500000012) (-62.79722599999997 66.31387300000011) (-62.81666599999994 66.32083100000011) (-62.82611099999991 66.32415800000001) (-62.85889400000002 66.33415200000007) (-62.86805700000002 66.33610499999998) (-62.881110999999976 66.33581500000014) (-62.88999899999999 66.33332800000011) (-62.895003999999915 66.32971200000003) (-62.80944099999999 66.24081400000011) (-62.801391999999964 66.23525999999993) (-62.71500399999991 66.20166000000006) (-62.70610799999997 66.1997070000001) (-62.681389000000024 66.19693000000001) (-62.647223999999994 66.1997070000001) (-62.60361499999999 66.20526100000012) (-62.488051999999925 66.20027199999993) (-62.366660999999965 66.17498799999998) (-62.18055700000002 66.14860499999998) (-62.03750599999995 66.10081500000001) (-61.9611129999999 66.03387500000002) (-61.95500199999998 66.02415500000012) (-61.95444500000002 66.01915000000008) (-61.95583299999993 66.01499899999999) (-61.960280999999895 66.01193200000006) (-61.975554999999986 66.01054399999998) (-62.088889999999935 66.00027499999993) (-62.13361400000002 66.00000000000011) (-62.148056 66.00138900000013) (-62.16638899999998 66.00749200000007) (-62.17250100000001 66.01054399999998) (-62.18888900000002 66.0122070000001) (-62.196663 66.01110800000009) (-62.291672000000005 65.98027000000013) (-62.30777699999999 65.97387699999996) (-62.39166999999986 66.01138300000014) (-62.404715999999894 66.01470899999998) (-62.52527600000002 66.03414900000013) (-62.54138899999998 66.03553799999997) (-62.69554900000003 66.04220599999996) (-62.74111199999993 66.03831500000007) (-62.759726999999884 66.03305100000006) (-62.778885 66.03332499999999) (-62.799995000000024 66.03970300000015) (-62.80916599999989 66.04386900000003) (-62.83167299999997 66.05554200000006) (-62.84222399999999 66.06414799999999) (-62.84694699999994 66.06915300000003) (-62.85500300000001 66.083054) (-62.856667000000016 66.08749400000005) (-62.86000100000001 66.10304300000013) (-62.8663939999999 66.11276199999998) (-62.87332900000001 66.12136800000007) (-62.88417099999987 66.12997399999995) (-62.90555599999999 66.14082300000001) (-62.93055700000002 66.14694200000008) (-62.94694500000003 66.14860499999998) (-62.95944199999991 66.14888000000002) (-62.970551 66.14804100000003) (-63.01361800000001 66.13888500000007) (-63.041672000000005 66.13026400000001) (-63.06194299999993 66.1208190000001) (-63.06027999999998 66.11637900000011) (-63.03944399999989 66.11331200000001) (-63.006393 66.11692800000003) (-62.892226999999934 66.07666) (-62.88999899999999 66.06637599999993) (-62.88583399999999 66.05636600000003) (-62.875 66.0477600000001) (-62.86222099999986 66.03942900000004) (-62.84194200000002 66.02748099999997) (-62.82666799999993 66.02026400000005) (-62.81583399999994 66.016098) (-62.79361699999998 66.01081800000009) (-62.778885 66.00972000000002) (-62.768332999999984 66.00972000000002) (-62.755561999999884 66.00999500000006) (-62.743889000000024 66.01138300000014) (-62.67472099999992 66.01554900000002) (-62.523056 66.0022130000001) (-62.51721999999995 66.00054900000009) (-62.4183349999999 65.97053500000004) (-62.40555599999993 65.96304300000008) (-62.395003999999915 65.949997) (-62.386664999999994 65.93664600000005) (-62.32111400000002 65.83110000000005) (-62.317222999999956 65.80802900000003) (-62.44166599999994 65.7935940000001) (-62.478882 65.790817) (-62.50527999999997 65.790817) (-62.52138499999995 65.79248000000013) (-62.60417199999989 65.801086) (-62.61999500000002 65.80304000000007) (-62.684440999999936 65.81637599999999) (-62.71777300000002 65.8252720000001) (-62.72721899999999 65.828598) (-62.72999600000003 65.83194000000009) (-62.75278499999996 65.85359199999994) (-62.80750299999994 65.88998400000014) (-62.82944500000002 65.89999400000005) (-62.857506 65.91110200000003) (-62.86416600000001 65.91110200000003) (-62.87055199999992 65.90554800000001) (-62.871940999999936 65.90138200000013) (-62.87471800000003 65.88749700000005) (-62.87471800000003 65.8830410000001) (-62.760001999999986 65.816666) (-62.74639100000002 65.809708) (-62.73694599999993 65.80831900000004) (-62.71999399999993 65.809708) (-62.658889999999985 65.79193099999998) (-62.597778000000005 65.77192700000006) (-62.58222199999989 65.76554900000008) (-62.575004999999976 65.76165800000001) (-62.56944999999996 65.75749200000013) (-62.56861099999992 65.75221299999993) (-62.569725000000005 65.74664300000006) (-62.579444999999964 65.72831700000006) (-62.58361099999996 65.72331200000002) (-62.58777599999996 65.720261) (-62.59027900000001 65.71914700000002) (-62.59944200000001 65.71887200000015) (-62.61277799999999 65.72164900000007) (-62.62194099999999 65.72554000000014) (-62.67472099999992 65.73580900000002) (-62.823891 65.76138300000002) (-62.833442999999875 65.75299100000001) (-62.83377799999988 65.74999200000002) (-62.82878099999988 65.7444920000001) (-62.79917099999989 65.711929) (-62.78805499999993 65.70832800000011) (-62.72638699999999 65.71138000000002) (-62.69888300000002 65.71026600000005) (-62.681670999999994 65.7080380000001) (-62.6627729999999 65.701096) (-62.59944200000001 65.67581200000001) (-62.59194199999996 65.67192099999994) (-62.58972199999994 65.66859400000004) (-62.59583299999986 65.65220599999998) (-62.60222599999997 65.64027399999998) (-62.611670999999944 65.62414599999994) (-62.61749999999989 65.61499000000003) (-62.62805199999997 65.6019290000001) (-62.645279000000016 65.58720399999993) (-62.653053 65.58610499999998) (-62.751113999999916 65.58526599999999) (-62.76722000000001 65.58749399999994) (-62.78472899999997 65.59137000000004) (-62.80305499999997 65.59887700000013) (-62.85972600000002 65.63472000000002) (-62.86138900000003 65.63916) (-62.85861199999994 65.65525800000006) (-62.862503000000004 65.68525700000009) (-62.882998999999984 65.72415200000006) (-62.885001999999986 65.72697399999993) (-62.88799999999986 65.72965200000004) (-62.90416700000003 65.74636800000002) (-62.922500999999954 65.75221299999993) (-62.936110999999926 65.75499000000002) (-62.949439999999925 65.75526399999995) (-62.95944199999991 65.75387600000005) (-62.962219000000005 65.74832200000009) (-62.94361099999992 65.743042) (-62.93472300000002 65.73887600000012) (-62.92527799999999 65.73109399999998) (-62.91666399999991 65.72221400000012) (-62.914444 65.71832300000005) (-62.892226999999934 65.6419370000001) (-62.89166999999992 65.63832100000008) (-62.89583600000003 65.63304099999999) (-62.901389999999935 65.62803600000012) (-62.95333099999999 65.58692900000011) (-62.96167000000003 65.58305400000012) (-62.972220999999934 65.580826) (-63.005004999999926 65.6249850000001) (-63.01611300000002 65.63275099999998) (-63.02749599999993 65.63581800000009) (-63.04028299999993 65.63749700000011) (-63.13777900000002 65.64415000000008) (-63.16249800000003 65.63247700000005) (-63.16240699999997 65.62886800000007) (-63.164443999999946 65.62553400000007) (-63.17861199999999 65.62747200000001) (-63.20027900000002 65.633331) (-63.211945000000014 65.64054900000002) (-63.29389199999997 65.70887800000014) (-63.43638599999997 65.84526100000005) (-63.44305400000002 65.85470599999991) (-63.47416700000002 65.83305400000006) (-63.379166 65.720261) (-63.36833200000001 65.69386300000002) (-63.36833200000001 65.66943400000008) (-63.399726999999984 65.67637599999995) (-63.412215999999944 65.67804000000001) (-63.44860799999992 65.68081700000005) (-63.46194499999996 65.68109099999998) (-63.70472000000001 65.68220500000001) (-63.71721600000001 65.68165600000003) (-63.723609999999894 65.68026700000001) (-63.72860700000001 65.67581200000001) (-63.728882 65.67303500000014) (-63.723609999999894 65.66886900000003) (-63.700553999999954 65.65582300000011) (-63.68360899999999 65.65081800000007) (-63.67166900000001 65.64833099999998) (-63.50472300000001 65.6308140000001) (-63.45333099999999 65.62970000000013) (-63.432503 65.63192700000002) (-63.399726999999984 65.63415500000013) (-63.375 65.632202) (-63.36860699999994 65.6291500000001) (-63.351669000000015 65.61775200000011) (-63.326667999999984 65.60081500000007) (-63.319999999999936 65.593323) (-63.33666199999993 65.55693099999996) (-63.34332999999998 65.54832500000009) (-63.35500300000001 65.53776600000003) (-63.35972600000002 65.53610200000003) (-63.37361099999998 65.53387499999997) (-63.46333299999998 65.52276600000005) (-63.47471599999989 65.52360500000003) (-63.48221599999994 65.52526900000004) (-63.488609 65.52832000000006) (-63.501396 65.53637700000002) (-63.523056 65.55081200000012) (-63.5327759999999 65.55859400000008) (-63.541114999999934 65.57026700000011) (-63.54138899999987 65.57415800000001) (-63.54666900000001 65.5811000000001) (-63.561278999999956 65.58537299999995) (-63.567943999999954 65.5900420000001) (-63.572449000000006 65.59120900000005) (-63.58127999999999 65.59187300000008) (-63.589943000000005 65.59120900000005) (-63.59577899999999 65.58903500000008) (-63.60889400000002 65.58998100000002) (-63.61833199999995 65.54193100000003) (-63.61666099999991 65.53749099999999) (-63.61277799999988 65.5333250000001) (-63.601395000000025 65.53027300000002) (-63.530280999999945 65.51220699999999) (-63.43277699999993 65.48442100000011) (-63.39194500000002 65.47248800000011) (-63.362503000000004 65.46331800000002) (-63.30916599999995 65.44552599999997) (-63.3016659999999 65.4416500000001) (-63.29527999999999 65.43637100000012) (-63.290839999999946 65.43165600000009) (-63.292778 65.42886399999998) (-63.39388999999994 65.42526200000003) (-63.40999599999992 65.42665100000005) (-63.46888699999994 65.43969700000014) (-63.49527699999999 65.4502720000001) (-63.50278500000002 65.454163) (-63.52166699999998 65.46110500000009) (-63.5327759999999 65.46470599999998) (-63.55332900000002 65.46887200000003) (-63.568892999999946 65.47164900000013) (-63.583327999999995 65.4727630000001) (-63.64305899999988 65.47360200000008) (-63.65444199999996 65.47221399999995) (-63.65555599999993 65.47082499999999) (-63.65471600000001 65.46499599999999) (-63.62749499999995 65.45582600000012) (-63.56361399999997 65.43580600000007) (-63.483611999999994 65.40498400000001) (-63.335556 65.30053700000002) (-63.335830999999985 65.29553199999992) (-63.42472099999998 65.22943099999998) (-63.472220999999934 65.19636500000001) (-63.41889200000003 65.145264) (-63.37694499999998 65.11080900000002) (-63.42444599999993 65.04914900000011) (-63.46472199999994 65.01805100000013) (-63.527221999999995 64.97192400000006) (-63.52833599999997 64.967758) (-63.54695099999998 64.88720700000005) (-63.653885 64.91165200000006) (-63.659720999999934 64.93969700000008) (-63.74777999999998 64.96220399999999) (-63.82417299999997 64.98471100000006) (-63.82833900000003 65.01081799999992) (-63.82556199999988 65.01277199999998) (-63.72027600000001 65.03082300000011) (-63.66972399999992 65.03498800000011) (-63.65999599999998 65.03637700000013) (-63.655272999999966 65.03804000000008) (-63.658051 65.04109199999999) (-63.664718999999934 65.04359400000004) (-63.685554999999965 65.04775999999998) (-63.697776999999974 65.04942300000005) (-63.732215999999994 65.04887400000013) (-63.75194499999998 65.04525800000005) (-63.78221899999994 65.03414900000001) (-63.801941 65.03027300000008) (-63.82444799999996 65.02748100000002) (-63.849723999999924 65.03027300000008) (-63.861114999999984 65.03332500000005) (-63.87055199999992 65.04081699999995) (-63.873885999999914 65.04553199999998) (-63.87555699999996 65.05026200000003) (-63.885559 65.07998700000013) (-63.886116000000015 65.08581500000003) (-63.881667999999934 65.09693900000013) (-63.94860799999998 65.10054000000002) (-64.12110899999993 65.04386900000009) (-64.13249199999996 65.04443400000008) (-64.14083900000003 65.047211) (-64.26722699999999 65.09414700000002) (-64.27583300000003 65.09887700000007) (-64.271118 65.10331700000006) (-64.22193900000002 65.14694200000008) (-64.20889299999999 65.155258) (-64.18582200000003 65.16387900000007) (-64.16722099999993 65.17053200000004) (-64.13110399999994 65.18248000000011) (-64.12971500000003 65.19358800000009) (-64.20361300000002 65.1997070000001) (-64.2119449999999 65.19999699999994) (-64.23138399999999 65.19693000000001) (-64.301941 65.16304000000014) (-64.30999799999995 65.15914900000007) (-64.31471299999998 65.15248100000008) (-64.33917200000002 65.16137700000002) (-64.37332200000003 65.17720000000003) (-64.38082899999989 65.1810910000001) (-64.39584400000001 65.20721400000008) (-64.40722700000003 65.27581800000002) (-64.40527299999991 65.28553799999992) (-64.40278599999994 65.2910920000001) (-64.39862099999993 65.29693600000013) (-64.389725 65.30442800000009) (-64.35583500000001 65.324997) (-64.333328 65.33720399999999) (-64.30999799999995 65.34999099999999) (-64.30055199999998 65.35582) (-64.25556899999998 65.38638299999997) (-64.25083899999987 65.39082300000001) (-64.23638900000003 65.421921) (-64.23416099999997 65.42719999999997) (-64.237213 65.42997700000006) (-64.24888599999991 65.43054200000012) (-64.27278100000001 65.42858899999999) (-64.29110700000001 65.42248499999994) (-64.43138099999999 65.32693499999999) (-64.46167000000003 65.294983) (-64.47166400000003 65.28332499999999) (-64.47471599999994 65.27249100000012) (-64.46888699999994 65.26388500000002) (-64.46389799999997 65.25888100000003) (-64.456955 65.24942000000004) (-64.45249899999999 65.2416530000001) (-64.45556599999998 65.20721400000008) (-64.46221899999995 65.190811) (-64.4683379999999 65.18026700000013) (-64.50973499999992 65.12052900000009) (-64.52111799999994 65.10914600000012) (-64.53500400000001 65.09721400000012) (-64.54998799999998 65.09275800000006) (-64.55555699999996 65.09220900000008) (-64.56193499999995 65.094986) (-64.56750499999993 65.11581400000006) (-64.56750499999993 65.11998) (-64.56945799999994 65.12441999999999) (-64.58000199999992 65.12886000000003) (-64.61138900000003 65.14193700000004) (-64.64111299999996 65.14999399999999) (-64.65527299999997 65.16609200000005) (-64.71833800000002 65.22248799999994) (-64.76028400000001 65.25221300000004) (-64.76501499999995 65.24775699999998) (-64.77833599999997 65.238586) (-64.78832999999992 65.23414600000001) (-64.80110200000001 65.23082000000011) (-64.81471299999998 65.23525999999998) (-64.864441 65.25665300000009) (-64.883896 65.26527399999998) (-64.89111300000002 65.26915000000008) (-64.89666699999998 65.27331500000008) (-64.898346 65.27581800000002) (-64.910553 65.29942299999999) (-64.91082799999998 65.3035890000001) (-64.91000400000001 65.30497700000001) (-64.85588799999994 65.31454500000012) (-64.83422899999994 65.31904600000001) (-64.82338700000003 65.31821400000013) (-64.79611199999994 65.31860400000005) (-64.79388399999999 65.31469700000008) (-64.78639199999998 65.31080600000001) (-64.777222 65.30914300000012) (-64.75717199999991 65.31309500000003) (-64.75217399999991 65.31425500000012) (-64.69610599999987 65.32971200000003) (-64.691101 65.33194000000003) (-64.68720999999994 65.33499100000006) (-64.685272 65.33749399999999) (-64.68443300000001 65.34109500000005) (-64.68916299999995 65.3416600000001) (-64.79972800000002 65.34693900000008) (-64.81361399999997 65.34721400000006) (-64.86805699999996 65.33970600000009) (-64.89778099999995 65.33415200000007) (-64.90916399999998 65.33471700000013) (-64.912216 65.33804299999997) (-64.910553 65.33998100000008) (-64.90472399999999 65.34359699999993) (-64.60916099999997 65.426376) (-64.59111000000001 65.42970300000013) (-64.58389299999999 65.43026700000007) (-64.50834700000001 65.42581200000006) (-64.47721899999999 65.42109700000003) (-64.46640000000002 65.41748000000007) (-64.45834399999995 65.4166560000001) (-64.44860799999998 65.41831999999994) (-64.44193999999993 65.4202580000001) (-64.43360899999993 65.4291530000001) (-64.42999299999997 65.434418) (-64.40943900000002 65.47387700000007) (-64.41278099999994 65.4785920000001) (-64.41833500000001 65.48275800000005) (-64.4344329999999 65.48414600000012) (-64.551941 65.45776400000005) (-64.695267 65.42776500000002) (-64.79527300000001 65.41526800000003) (-64.80665599999992 65.41387900000001) (-64.82417299999986 65.41331500000007) (-64.833618 65.41442900000004) (-64.84388699999994 65.41720599999996) (-64.84555099999994 65.41943400000014) (-64.85499600000003 65.42275999999998) (-64.86389199999996 65.42469800000009) (-64.86971999999997 65.42387400000013) (-64.97416699999997 65.40470899999997) (-64.98111 65.4019320000001) (-64.98750299999995 65.39776599999999) (-64.99027999999993 65.3938750000001) (-64.98860200000001 65.37942499999997) (-64.98582499999992 65.37136800000002) (-64.98971599999999 65.36831699999999) (-65.00111399999992 65.36665299999999) (-65.01611299999996 65.36720300000002) (-65.05888399999998 65.3766480000001) (-65.07501200000002 65.38304100000005) (-65.136124 65.42248499999994) (-65.14416499999987 65.42776500000002) (-65.14999399999999 65.434143) (-65.16888399999999 65.48275800000005) (-65.16805999999997 65.48387100000008) (-65.16000399999996 65.48803700000002) (-65.14944500000001 65.49304200000006) (-65.14250199999992 65.49581899999998) (-65.12999000000002 65.49859600000002) (-65.11027499999994 65.49748200000005) (-65.08250399999997 65.50054899999998) (-64.92971799999992 65.52470399999999) (-64.854446 65.5836030000001) (-64.83694499999996 65.60581999999994) (-64.76722699999999 65.63998399999997) (-64.741669 65.641663) (-64.723053 65.64360000000005) (-64.71194499999996 65.64721700000001) (-64.70944199999991 65.65054300000003) (-64.71000700000002 65.65220599999998) (-64.71444699999995 65.65332000000012) (-64.76834099999996 65.65998800000011) (-64.79472399999997 65.66192600000005) (-64.81861899999996 65.66192600000005) (-64.82806399999993 65.66110200000008) (-64.84388699999994 65.65803499999998) (-64.85333300000002 65.65470900000014) (-64.87222299999996 65.64498900000001) (-64.88890100000003 65.6291500000001) (-64.89999399999994 65.616379) (-64.95249899999988 65.56442300000009) (-64.97416699999997 65.55137600000006) (-64.99360699999988 65.54803500000003) (-65.11027499999994 65.54109200000005) (-65.15306099999998 65.53915400000011) (-65.31111099999998 65.54887400000001) (-65.31834400000002 65.55053700000013) (-65.32640099999998 65.55636600000014) (-65.333328 65.56359900000012) (-65.33860799999997 65.57554600000009) (-65.308334 65.62109400000003) (-65.30332899999996 65.62831099999994) (-65.29998799999993 65.6308140000001) (-65.295837 65.63165300000009) (-65.27528399999994 65.63136300000008) (-65.252228 65.62997400000006) (-65.21777299999997 65.62997400000006) (-65.18859900000001 65.62997400000006) (-65.15388499999995 65.63026400000007) (-65.12582399999997 65.633331) (-65.112503 65.6372070000001) (-65.10583500000001 65.63943500000005) (-65.103882 65.64248700000013) (-65.103882 65.65193200000004) (-65.10943600000002 65.65887500000002) (-65.10694899999999 65.66720599999991) (-65.10583500000001 65.66859400000004) (-65.09973100000002 65.67192099999994) (-64.99444599999993 65.70138500000013) (-64.98138399999999 65.70471200000009) (-64.96972699999998 65.70665000000002) (-64.94221500000003 65.70915200000007) (-64.92250100000001 65.70942700000012) (-64.90249599999999 65.70860299999998) (-64.81471299999998 65.71276900000004) (-64.80332899999996 65.71415700000011) (-64.79834 65.71638500000012) (-64.79360999999989 65.71998599999995) (-64.791382 65.72331200000002) (-64.79499799999996 65.72804300000013) (-64.80194099999989 65.73027000000002) (-64.81555200000003 65.730545) (-64.90695199999999 65.7288670000001) (-64.973053 65.72360200000003) (-64.99694799999992 65.72137499999997) (-65.024719 65.71693400000004) (-65.05721999999997 65.71026600000005) (-65.07611099999991 65.70555100000001) (-65.10305800000003 65.69442700000013) (-65.11610399999995 65.68525700000009) (-65.13861099999997 65.67109699999997) (-65.144455 65.66748000000001) (-65.16416899999996 65.65693700000008) (-65.16833499999996 65.65609700000005) (-65.3699949999999 65.66110200000008) (-65.43138099999993 65.66914400000007) (-65.44166599999988 65.67164600000012) (-65.44999699999988 65.67498800000004) (-65.45445299999989 65.67831400000011) (-65.45695499999994 65.68220500000001) (-65.45639 65.68553199999991) (-65.45249899999993 65.69081100000011) (-65.447769 65.6952510000001) (-65.46028100000001 65.74136400000009) (-65.49027999999993 65.73580900000002) (-65.49777199999994 65.73748799999998) (-65.50556899999998 65.74331699999999) (-65.50500499999998 65.75166300000012) (-65.49888599999986 65.76304600000009) (-65.45527600000003 65.83248900000007) (-65.44915800000001 65.84109499999994) (-65.439438 65.8477630000001) (-65.35722399999997 65.90248099999991) (-65.15222199999994 65.95776400000011) (-65.137787 65.96110499999998) (-65.05027799999999 65.98054500000012) (-64.96389799999997 65.99859600000013) (-64.94610599999999 66.00138900000013) (-64.9347229999999 66.0022130000001) (-64.92304999999999 66.00138900000013) (-64.898346 65.99693300000001) (-64.88082899999995 65.98997500000002) (-64.85110499999996 65.98054500000012) (-64.84222399999993 65.97804300000007) (-64.80139200000002 65.96943699999997) (-64.77250699999996 65.96609500000005) (-64.75500499999993 65.96609500000005) (-64.74333200000001 65.96748400000001) (-64.73500100000001 65.96943699999997) (-64.73388699999992 65.97554000000008) (-64.73860199999996 65.97886700000004) (-64.76501499999995 65.98803700000008) (-64.82167099999998 66.04470800000001) (-64.75083899999993 66.18553200000002) (-64.72166399999998 66.21748399999996) (-64.712219 66.22360200000008) (-64.60583499999996 66.25915500000013) (-64.48055999999997 66.29637100000008) (-64.45195000000001 66.3035890000001) (-64.40556300000003 66.31581100000005) (-64.38861099999991 66.32165500000008) (-64.37554899999992 66.32720900000004) (-64.36582900000002 66.33305399999995) (-64.35638399999993 66.34054600000007) (-64.354172 66.34803800000003) (-64.35638399999993 66.34971599999994) (-64.366104 66.35081500000013) (-64.37748699999997 66.34999099999999) (-64.44387799999998 66.34471100000007) (-64.46472199999994 66.34304800000001) (-64.71444699999995 66.27499400000005) (-64.718887 66.27331500000003) (-64.78916899999996 66.23637400000013) (-64.79611199999994 66.23165900000009) (-64.83999599999999 66.19331399999999) (-64.85804699999994 66.14999399999999) (-64.85665899999998 66.13998400000008) (-64.851944 66.12498499999998) (-64.84973099999996 66.12052900000009) (-64.85417199999995 66.10971100000012) (-64.85888699999998 66.10609399999998) (-64.93388400000003 66.08027600000003) (-64.94860799999998 66.07693499999999) (-65.12609899999995 66.03776600000009) (-65.38194299999992 65.97581500000013) (-65.398056 65.97470099999992) (-65.827789 65.95304900000008) (-65.87638900000002 65.94802900000002) (-65.91610699999995 65.95109599999995) (-65.92805499999997 65.95387300000004) (-65.93554699999993 65.95832800000005) (-65.93971299999993 65.96249399999999) (-65.96305799999999 66.034424) (-65.96389799999992 66.04386900000003) (-65.91888399999993 66.08610500000003) (-65.91166699999985 66.0916600000001) (-65.90417500000001 66.09443700000003) (-65.78611799999999 66.12637300000011) (-65.674713 66.15748600000012) (-65.65055799999999 66.1644290000001) (-65.64083899999991 66.16832) (-65.63417099999992 66.172485) (-65.56416299999995 66.22692900000004) (-65.54554699999994 66.2433170000001) (-65.47111499999994 66.34248400000001) (-65.47166399999992 66.38360600000004) (-65.47361799999993 66.38581799999992) (-65.47582999999997 66.38777199999998) (-65.479172 66.38804600000009) (-65.48277300000001 66.38777199999998) (-65.48971599999999 66.38581799999992) (-65.50167799999991 66.37637300000006) (-65.55387899999994 66.32777400000009) (-65.55583199999995 66.32527200000004) (-65.55943300000001 66.3205410000001) (-65.5616609999999 66.31442300000015) (-65.564438 66.29359399999998) (-65.56277499999999 66.28831500000001) (-65.56277499999999 66.28332499999993) (-65.57167099999998 66.26832600000006) (-65.59889199999992 66.24498) (-65.61054999999988 66.23580900000007) (-65.69694499999997 66.18054200000012) (-65.70249899999999 66.17747500000002) (-65.84416199999993 66.13581799999997) (-65.926941 66.11470000000008) (-65.95195000000001 66.10887100000008) (-65.96833799999996 66.1080320000001) (-66.073624 66.12052900000009) (-66.13917499999997 66.13136299999996) (-66.14500399999997 66.1336060000001) (-66.14723200000003 66.13526900000005) (-66.20083599999998 66.19497700000005) (-66.19110099999995 66.23997499999996) (-66.25111400000003 66.24220300000013) (-66.37138400000003 66.22526600000009) (-66.401947 66.20082100000008) (-66.47833300000002 66.20166000000006) (-66.48971599999987 66.20277400000003) (-66.49694799999997 66.20498699999996) (-66.50500499999993 66.20887800000003) (-66.52444500000001 66.22415200000012) (-66.52999899999992 66.2291560000001) (-66.53416400000003 66.233047) (-66.54083299999996 66.2416530000001) (-66.54277000000002 66.24664300000012) (-66.57749899999999 66.35443099999998) (-66.57611099999997 66.35914600000001) (-66.57000700000003 66.36554000000007) (-66.56416299999995 66.36914100000013) (-66.53694200000001 66.37803599999995) (-66.500565 66.38804600000009) (-66.45472699999999 66.39804100000015) (-66.445267 66.40138200000001) (-66.43832399999991 66.40415999999999) (-66.43443300000001 66.40721100000002) (-66.43720999999994 66.41331500000007) (-66.44193999999999 66.41442900000004) (-66.4661099999999 66.41499299999998) (-66.47361799999999 66.41442900000004) (-66.48138399999999 66.41304000000002) (-66.597778 66.38693200000012) (-66.60499600000003 66.37637300000006) (-66.61000100000001 66.37136800000002) (-66.61749299999991 66.3685910000001) (-66.62999000000002 66.36775200000011) (-66.71389799999997 66.36886600000008) (-66.72416699999991 66.36943100000013) (-66.73083499999996 66.36998000000011) (-66.74305700000002 66.37275699999998) (-66.76777599999991 66.38053900000011) (-66.82167099999992 66.45803799999993) (-66.82167099999992 66.46081500000003) (-66.80638099999993 66.53193699999997) (-66.85194399999995 66.58332800000005) (-66.97222899999991 66.62886000000009) (-66.99972499999996 66.63832100000002) (-67.023056 66.64332600000006) (-67.03611799999993 66.64471400000002) (-67.04888900000003 66.64471400000002) (-67.05888400000003 66.64276100000006) (-67.06054699999999 66.64027399999998) (-67.05610699999994 66.63360599999999) (-67.04333499999996 66.62580900000006) (-67.01666299999994 66.61526500000002) (-66.95056199999988 66.59220900000014) (-66.90833999999995 66.57804900000008) (-66.8875119999999 66.56944299999998) (-66.88417099999987 66.56608600000004) (-66.88945000000001 66.56109600000013) (-67.10555999999997 66.48580900000002) (-67.11833199999995 66.48498500000005) (-67.13362099999995 66.48580900000002) (-67.17694099999994 66.48970000000008) (-67.18971299999993 66.49165300000004) (-67.19860799999998 66.49414100000001) (-67.202225 66.49720800000011) (-67.20388799999995 66.50526400000001) (-67.19221500000003 66.51527400000009) (-67.18611099999998 66.52442899999994) (-67.19027699999998 66.5291600000001) (-67.327225 66.59582500000005) (-67.33833299999998 66.59776299999999) (-67.34584000000001 66.59721400000001) (-67.39862099999988 66.58915700000006) (-67.41000399999996 66.58554099999998) (-67.46362299999998 66.57887300000004) (-67.515015 66.57360799999998) (-67.58111600000001 66.57527199999998) (-67.639725 66.58055100000013) (-67.72694399999989 66.57666000000006) (-67.737213 66.57415800000001) (-67.74082899999996 66.57110600000004) (-67.74276700000001 66.56832899999995) (-67.74194299999994 66.56414800000005) (-67.73500100000001 66.56137100000001) (-67.72277799999989 66.55802900000003) (-67.70111099999986 66.55581699999999) (-67.49999999999994 66.54483800000003) (-67.42610200000001 66.54136700000004) (-67.40777600000001 66.54220600000002) (-67.39584399999995 66.54470800000007) (-67.3805539999999 66.54582200000004) (-67.37388599999991 66.54582200000004) (-67.36582900000002 66.54443400000014) (-67.29638699999992 66.526093) (-67.28167699999995 66.51887499999998) (-67.14862099999999 66.44386300000002) (-67.14389 66.43775900000003) (-67.14361599999995 66.43553199999997) (-67.13806199999999 66.38220200000006) (-67.139725 66.37664800000005) (-67.16082799999998 66.36554000000007) (-67.17250100000001 66.36387600000006) (-67.18527199999994 66.36360200000013) (-67.197769 66.365814) (-67.29167199999989 66.39942900000005) (-67.33750900000001 66.41886900000009) (-67.33898899999991 66.42285200000009) (-67.34306300000003 66.42665099999999) (-67.35028099999994 66.42886399999998) (-67.36582900000002 66.42970300000013) (-67.38972499999994 66.4308170000001) (-67.406387 66.42970300000013) (-67.410553 66.42526200000003) (-67.41000399999996 66.42082199999999) (-67.383331 66.40193200000004) (-67.37832600000002 66.39860499999992) (-67.36860699999994 66.39471400000002) (-67.31361400000003 66.37637300000006) (-67.28860499999996 66.36886600000008) (-67.24082899999996 66.35887100000002) (-67.195831 66.35498000000013) (-67.18859899999995 66.35220300000003) (-67.13305700000001 66.31387300000011) (-67.12527499999999 66.30693100000002) (-67.12609900000001 66.305542) (-67.12916599999994 66.3035890000001) (-67.13944999999995 66.30137600000012) (-67.162216 66.29887400000007) (-67.18388400000003 66.29748500000005) (-67.19415300000003 66.29776000000004) (-67.208618 66.29998800000004) (-67.226944 66.30415300000004) (-67.24082899999996 66.30415300000004) (-67.25418100000002 66.30276500000014) (-67.26167299999997 66.29914900000006) (-67.28222699999998 66.27526900000004) (-67.29750100000001 66.276093) (-67.39917000000003 66.29248000000001) (-67.41389500000002 66.29664600000007) (-67.450287 66.31666600000011) (-67.45306399999993 66.3205410000001) (-67.45333900000003 66.32249500000012) (-67.49471999999997 66.35693400000014) (-67.52610800000002 66.38220200000006) (-67.5625 66.40748600000006) (-67.566666 66.409424) (-67.60305799999998 66.41859400000004) (-67.63417099999998 66.42469800000009) (-67.69082600000002 66.43525699999992) (-67.71305799999999 66.43609600000008) (-67.73028599999998 66.43997199999995) (-67.81249999999994 66.46304300000003) (-67.82528699999995 66.46775800000006) (-67.8286129999999 66.47082499999993) (-67.83473200000003 66.48332199999993) (-67.83860799999991 66.49165300000004) (-67.92361499999993 66.51609800000006) (-67.95249899999999 66.51470900000004) (-67.98582499999986 66.50972000000007) (-67.99276700000001 66.50694300000004) (-67.99276700000001 66.5038760000001) (-67.94471699999986 66.4788670000001) (-67.929169 66.47303800000009) (-67.906113 66.46804800000007) (-67.88694800000002 66.461929) (-67.87026999999995 66.45471200000009) (-67.76055899999994 66.35803200000004) (-67.75639299999995 66.353317) (-67.71112099999993 66.29693600000007) (-67.70140100000003 66.28471400000012) (-67.70167499999997 66.27832000000006) (-67.70556599999998 66.27526900000004) (-67.724716 66.26081800000003) (-67.67222599999997 66.22831700000012) (-67.57055699999995 66.184143) (-67.454453 66.14471400000008) (-67.39999399999999 66.12637300000011) (-67.28138699999994 66.083054) (-67.165009 66.03692600000005) (-67.16250600000001 66.03526299999993) (-67.24352299999993 65.97830199999999) (-67.17304999999988 65.91859399999998) (-67.18582199999997 65.91220099999998) (-67.19444299999998 65.90971400000012) (-67.20167499999997 65.90914900000007) (-67.42999299999991 65.90554800000001) (-67.74055499999986 65.89415000000002) (-67.79527300000001 65.87719700000014) (-67.82417299999997 65.88081400000004) (-67.86471599999993 65.88777200000004) (-67.914444 65.89915500000006) (-67.93859900000001 65.9080350000001) (-68.02694699999995 65.99275200000011) (-68.03056300000003 65.99803200000002) (-68.031387 66.0022130000001) (-68.027222 66.06080600000007) (-68.02583299999998 66.06581100000011) (-68.13082899999995 66.1266480000001) (-68.24472000000003 66.1827550000001) (-68.34028599999999 66.19693000000001) (-68.53805499999993 66.20082100000008) (-68.71278399999994 66.19859300000013) (-68.808334 66.19581600000004) (-68.84249899999998 66.19331399999999) (-68.85139499999997 66.18997200000001) (-68.84638999999993 66.186646) (-68.83528100000001 66.18498199999999) (-68.66861 66.17886400000003) (-68.56834399999997 66.17858899999999) (-68.41471899999999 66.15942400000006) (-68.40361000000001 66.14637800000008) (-68.39111300000002 66.13526900000005) (-68.38333099999994 66.13108799999998) (-68.30027799999988 66.092758) (-68.27806099999998 66.08360299999998) (-68.24415599999998 66.07110599999999) (-68.23777799999993 66.06999200000001) (-68.22555499999999 66.06999200000001) (-68.220551 66.0730440000001) (-68.218887 66.08137500000004) (-68.22193900000002 66.0852660000001) (-68.22972099999998 66.09220900000008) (-68.24415599999998 66.09999100000005) (-68.24694799999997 66.11276199999998) (-68.22000099999997 66.12858600000004) (-68.20249899999993 66.12885999999997) (-68.19471699999997 66.12747200000007) (-68.15750100000002 66.11747700000001) (-68.13417099999998 66.10998500000005) (-68.11888099999999 66.1035920000001) (-68.04722600000002 66.06498699999997) (-68.04888900000003 66.00749200000007) (-68.05194099999994 65.996643) (-68.05360399999995 65.99108899999999) (-68.06443799999994 65.98442100000005) (-68.12388599999997 65.96304300000008) (-68.13417099999998 65.96331800000013) (-68.17361499999998 65.96943699999997) (-68.19694500000003 65.97387699999996) (-68.210556 65.97943099999998) (-68.27806099999998 66.01416000000006) (-68.30444299999988 66.02804600000002) (-68.32389799999993 66.00387599999999) (-68.333618 65.93193100000002) (-68.33222999999992 65.92886400000009) (-68.32583599999998 65.91638200000011) (-68.32167099999998 65.911926) (-68.30474899999996 65.90866100000005) (-68.287781 65.907761) (-68.26000999999991 65.91137700000002) (-68.19415300000003 65.92109700000015) (-68.156113 65.92970300000002) (-68.150284 65.930542) (-68.14277599999997 65.92915299999999) (-68.13999899999999 65.92747500000007) (-68.136124 65.92276000000004) (-68.13473499999992 65.91360500000002) (-68.13290399999994 65.83488500000004) (-68.13917500000002 65.81721500000015) (-68.14723199999997 65.79832500000003) (-68.03332499999993 65.77638200000007) (-68.02389499999987 65.77526899999998) (-68.00306699999999 65.77832000000001) (-67.92361499999993 65.79386900000009) (-67.88612399999988 65.80497700000006) (-67.82112099999995 65.76805099999996) (-67.87026999999995 65.68942299999998) (-67.94248999999996 65.61804200000012) (-67.9891659999999 65.61914100000007) (-68.05888400000003 65.56805399999996) (-68.027222 65.5583190000001) (-68.01251200000002 65.55775499999993) (-68.01167299999997 65.55886800000002) (-67.99861099999998 65.56693999999999) (-67.98721299999994 65.57138100000009) (-67.971115 65.57527199999998) (-67.95666499999999 65.57165500000002) (-67.95167500000002 65.568329) (-67.95306399999993 65.55720500000012) (-67.95500199999998 65.55386400000009) (-68.02084400000001 65.49803200000008) (-68.02778599999994 65.49165300000004) (-68.03028899999998 65.48776199999998) (-68.03056300000003 65.48442100000011) (-68.02583299999998 65.48109399999998) (-68.02250700000002 65.48054500000006) (-68.00778200000002 65.48553500000008) (-67.94193999999993 65.52526900000004) (-67.92250099999995 65.53804000000014) (-67.86027499999994 65.58442700000006) (-67.73028599999998 65.63638300000014) (-67.712219 65.64082300000013) (-67.65249599999999 65.65138200000001) (-67.46610999999996 65.67414900000011) (-67.428604 65.67665099999999) (-67.40249599999993 65.67747500000013) (-67.396118 65.67665099999999) (-67.38221699999991 65.67387400000007) (-67.32806399999998 65.66249100000005) (-67.31945799999994 65.65942399999994) (-67.28056299999997 65.64248700000013) (-67.275284 65.6377720000001) (-67.25666799999999 65.61526500000002) (-67.25389100000001 65.611649) (-67.25167799999986 65.60693400000014) (-67.25334199999998 65.60165400000005) (-67.25666799999999 65.599152) (-67.27278100000001 65.59526100000011) (-67.32055700000001 65.58692900000011) (-67.33332799999994 65.58248900000007) (-67.33612099999993 65.580826) (-67.45666499999999 65.501938) (-67.45889299999993 65.49803200000008) (-67.45140099999992 65.49359099999998) (-67.34750400000001 65.45860299999998) (-67.22138999999999 65.45637500000004) (-67.18998699999997 65.45803799999999) (-67.18083200000001 65.45915200000013) (-67.16915899999998 65.46138000000008) (-67.15556300000003 65.4669340000001) (-67.14222699999999 65.46914700000008) (-67.08167999999995 65.46249400000005) (-67.06555200000003 65.45860299999998) (-67.05860899999993 65.45359799999994) (-67.058044 65.45138500000002) (-67.058334 65.42665100000005) (-67.06277499999993 65.41748000000007) (-67.07833900000003 65.39221199999997) (-67.11111499999998 65.36470000000003) (-67.11805699999996 65.36192299999993) (-67.12388599999997 65.36053500000003) (-67.13444500000003 65.35971100000006) (-67.21806300000003 65.35859700000009) (-67.25556899999992 65.36053500000003) (-67.316101 65.35859700000009) (-67.40083300000003 65.35026600000003) (-67.40888999999999 65.3483280000001) (-67.41361999999992 65.3458250000001) (-67.41777000000002 65.34220900000003) (-67.41610700000001 65.33915700000011) (-67.40943900000002 65.33332800000011) (-67.39999399999999 65.32971200000003) (-67.39111300000002 65.3272090000001) (-67.33666999999997 65.31721500000009) (-67.32667499999997 65.31694000000005) (-67.31916799999993 65.31805400000002) (-67.31582600000002 65.3205410000001) (-67.30665599999986 65.33027600000003) (-67.306107 65.33360299999993) (-67.30694599999998 65.33804299999997) (-67.30387899999994 65.34248400000007) (-67.29750100000001 65.347488) (-67.29138199999994 65.349716) (-67.283615 65.35108900000006) (-67.26916499999999 65.35220300000003) (-67.12554899999998 65.31191999999999) (-67.11999500000002 65.30998200000005) (-67.077789 65.2502750000001) (-67.06388900000002 65.21832299999994) (-66.93472300000002 65.23387100000014) (-66.93306000000001 65.23359700000003) (-66.92887899999994 65.22970599999996) (-66.94888300000002 65.12525900000014) (-66.95083599999998 65.11692800000003) (-66.95333900000003 65.11303699999996) (-66.95916699999998 65.10664400000002) (-66.96749899999998 65.10386699999992) (-67.02528399999989 65.10832199999993) (-67.04415899999992 65.107483) (-67.05555700000002 65.10525500000006) (-67.066666 65.10081500000001) (-67.07223499999998 65.09721400000012) (-67.10611 65.06414799999999) (-67.108612 65.06025699999992) (-67.10777300000001 65.05886800000013) (-67.096115 65.05609100000004) (-67.08583099999998 65.05636600000008) (-67.07501200000002 65.05802900000015) (-66.89056399999998 65.10331700000006) (-66.835556 65.13720699999999) (-66.756393 65.17720000000003) (-66.74749799999995 65.180542) (-66.73028599999992 65.18136600000014) (-66.72610500000002 65.18026700000013) (-66.72555499999999 65.17804000000007) (-66.75334199999998 65.11331200000001) (-66.80166600000001 65.06080600000007) (-66.76750199999998 65.02442900000011) (-66.74305700000002 64.96304299999997) (-66.726944 64.91387900000012) (-66.72749299999992 64.90525800000006) (-66.72805799999998 64.901657) (-66.73306300000002 64.88832100000002) (-66.73916599999995 64.85998500000011) (-66.73500099999995 64.8247070000001) (-66.73416099999992 64.82054100000005) (-66.69804399999987 64.76193199999994) (-66.69471699999991 64.76138300000002) (-66.68777499999999 64.76220699999999) (-66.65417500000001 64.7711030000001) (-66.64111300000002 64.77581800000013) (-66.63249200000001 64.78137200000015) (-66.63806199999999 64.78553800000003) (-66.6761019999999 64.876083) (-66.69694499999997 65.03276100000005) (-66.69415299999997 65.0372010000001) (-66.68866000000003 65.03877299999994) (-66.67332499999998 65.038589) (-66.66082799999998 65.0372010000001) (-66.61805699999996 65.03027300000008) (-66.535278 65.01081799999992) (-66.53056300000003 65.00749200000007) (-66.49610899999999 64.98304700000006) (-66.48889199999991 64.95748900000012) (-66.49665800000002 64.94552600000009) (-66.495544 64.93887300000011) (-66.491379 64.93498200000005) (-66.48666400000002 64.93220500000012) (-66.47860699999995 64.92915300000004) (-66.38861099999997 64.91331500000001) (-66.379166 64.91220100000004) (-66.36805700000002 64.91360500000002) (-66.36389200000002 64.91748000000001) (-66.36193800000001 64.92359900000002) (-66.36361699999992 64.9285890000001) (-66.33473200000003 64.93470800000011) (-66.17777999999993 64.88026400000007) (-66.148346 64.86886600000003) (-66.17721599999999 64.79637100000002) (-66.18472300000002 64.78442400000006) (-66.19193999999993 64.77887000000004) (-66.19943199999994 64.77499399999999) (-66.20333900000003 64.77388000000002) (-66.21333300000003 64.75610400000005) (-66.21916199999998 64.72608900000012) (-66.21888699999994 64.69081100000011) (-66.21221899999995 64.68553199999997) (-66.18472300000002 64.68165600000003) (-66.16694599999994 64.68109100000004) (-66.16111799999993 64.68248) (-66.15834000000001 64.68414300000012) (-66.151947 64.68914799999999) (-66.14778100000001 64.69581599999998) (-66.14723200000003 64.70138500000013) (-66.14723200000003 64.70416299999994) (-66.15028399999994 64.71748400000007) (-66.14973399999991 64.73359700000015) (-66.145554 64.74026500000014) (-66.13639799999999 64.75416600000011) (-66.11694299999999 64.78137200000015) (-66.09167500000001 64.80970800000006) (-66.08084100000002 64.81915300000009) (-66.05833399999995 64.83276400000005) (-66.03721599999994 64.84498600000006) (-66.02084399999995 64.84971600000006) (-66.01139799999999 64.84832799999998) (-66.011124 64.84637500000002) (-66.008621 64.78915400000011) (-66.00917099999987 64.77804600000007) (-66.0125119999999 64.69941700000004) (-65.89999399999999 64.67330900000007) (-65.84666400000003 64.676086) (-65.85221899999999 64.68026700000007) (-65.86138900000003 64.68914799999999) (-65.88944999999995 64.71971100000013) (-65.89917000000003 64.73275799999999) (-65.95861799999994 64.87776199999996) (-65.95666499999993 64.88610800000009) (-65.95333899999997 64.88832100000002) (-65.94193999999999 64.89054899999996) (-65.93138099999993 64.89137299999993) (-65.92471299999994 64.89137299999993) (-65.83860800000002 64.882477) (-65.72721899999993 64.84359700000005) (-65.71777299999997 64.84027100000003) (-65.67443800000001 64.81805400000013) (-65.66416899999996 64.80831900000004) (-65.66166699999997 64.80442800000014) (-65.660278 64.799149) (-65.665009 64.79693600000002) (-65.68331899999993 64.79220600000002) (-65.69833399999999 64.78471400000006) (-65.72027599999996 64.76666300000011) (-65.73611499999998 64.75027500000004) (-65.74249299999991 64.7410890000001) (-65.74276699999996 64.73526000000004) (-65.73693800000001 64.72608900000012) (-65.726944 64.71138000000008) (-65.71083099999998 64.69303900000006) (-65.70472699999993 64.6874850000001) (-65.70306399999993 64.69220000000013) (-65.70944199999997 64.71276900000004) (-65.71055599999994 64.71859699999999) (-65.71000700000002 64.73220800000013) (-65.708618 64.73609900000002) (-65.68415799999997 64.76110799999998) (-65.67610200000001 64.76554899999991) (-65.66528299999993 64.77137800000014) (-65.648056 64.77499399999999) (-65.64277600000003 64.77499399999999) (-65.62721299999993 64.7711030000001) (-65.59889199999992 64.75637799999998) (-65.56639100000001 64.73748800000004) (-65.56111099999987 64.73304700000011) (-65.55749500000002 64.72831700000006) (-65.55583199999995 64.72331200000002) (-65.55638099999993 64.717758) (-65.57223499999992 64.664154) (-65.57667500000002 64.65248100000002) (-65.58332799999994 64.64276100000012) (-65.58639499999992 64.64027400000003) (-65.65472399999999 64.60247800000002) (-65.66250599999995 64.59832800000004) (-65.71417200000002 64.57054100000005) (-65.73083500000001 64.51776100000001) (-65.73222399999997 64.50804099999993) (-65.72555499999993 64.49803199999997) (-65.72166400000003 64.49414100000007) (-65.70834400000001 64.48664900000011) (-65.69554099999999 64.48580900000007) (-65.665009 64.49220300000013) (-65.64334099999996 64.49498) (-65.57333399999999 64.49859600000008) (-65.52471899999995 64.49971000000005) (-65.51806599999998 64.49971000000005) (-65.50639299999995 64.4974820000001) (-65.50418100000002 64.49581899999998) (-65.50556899999998 64.46887200000003) (-65.39611799999994 64.52137799999997) (-65.38417099999998 64.52415500000006) (-65.3658289999999 64.52693199999999) (-65.21055599999988 64.53610200000003) (-65.203888 64.53387499999997) (-65.144455 64.51138300000008) (-65.08500699999996 64.47970599999996) (-65.07778899999994 64.47581500000007) (-65.07583599999998 64.47137500000002) (-65.07417299999997 64.46192900000005) (-65.07167099999998 64.440811) (-65.07194500000003 64.43081699999999) (-65.07362399999994 64.42608600000005) (-65.19499199999996 64.31025700000009) (-65.20249899999999 64.30636600000003) (-65.21083099999998 64.30386399999998) (-65.28472899999991 64.2916560000001) (-65.2952729999999 64.29026799999997) (-65.30943300000001 64.29136699999998) (-65.3433379999999 64.294983) (-65.37721299999998 64.30331400000011) (-65.38639799999993 64.30664100000007) (-65.40888999999993 64.31248500000004) (-65.45167499999997 64.31999200000001) (-65.49888599999986 64.32276900000011) (-65.5250089999999 64.32331800000003) (-65.55416899999994 64.32331800000003) (-65.56332399999991 64.32249499999995) (-65.65583799999996 64.30886800000007) (-65.66166699999997 64.30748) (-65.65833999999995 64.30276500000014) (-65.654449 64.30081200000001) (-65.61860699999994 64.29304500000006) (-65.60194399999995 64.29359400000004) (-65.59194899999994 64.29609699999997) (-65.57223499999992 64.29859900000008) (-65.50584400000002 64.30247500000013) (-65.46583599999997 64.30304000000001) (-65.43415800000002 64.29914900000011) (-65.42277499999994 64.29637100000014) (-65.250565 64.20832800000005) (-65.24610899999999 64.20498700000002) (-65.24276699999996 64.20027199999998) (-65.265015 64.17886400000009) (-65.16194200000001 64.13804600000014) (-65.04943800000001 64.07222000000002) (-65.05387899999994 64.06776400000007) (-65.06054699999993 64.06498699999997) (-65.093887 64.05219999999997) (-65.103882 64.049149) (-65.13667299999992 64.04136700000004) (-65.15833999999995 64.03831500000007) (-65.19610599999993 64.04026800000003) (-65.20611599999995 64.04026800000003) (-65.21665999999999 64.038589) (-65.22138999999993 64.03637700000013) (-65.22555499999993 64.03276100000011) (-65.22193899999996 64.028595) (-65.21417200000002 64.02554300000008) (-65.18998699999992 64.02026400000011) (-65.09666399999998 64.00915500000002) (-65.08805799999999 64.00943000000007) (-64.94915800000001 64.01499900000005) (-64.80055199999998 64.02777100000003) (-64.68638599999997 64.03915400000005) (-64.676941 64.036652) (-64.66805999999997 64.03305100000011) (-64.66111799999999 64.028595) (-64.63055400000002 63.978324999999984) (-64.63137799999998 63.97470900000013) (-64.63276699999994 63.97276300000004) (-64.63833599999998 63.96915400000006) (-64.64805599999994 63.96693400000004) (-64.65888999999999 63.96554600000013) (-64.66999800000002 63.96638500000006) (-64.689438 63.96610300000003) (-64.70056199999999 63.963882000000126) (-64.81750499999998 63.923607000000004) (-64.87527499999999 63.9011000000001) (-64.88890100000003 63.89499699999999) (-64.97471599999994 63.85193600000014) (-64.98500099999995 63.82916300000005) (-64.98750299999995 63.82305100000008) (-64.98416099999992 63.81388100000004) (-64.95417799999996 63.776382000000126) (-64.94888299999991 63.77443700000009) (-64.77806099999998 63.747772000000055) (-64.68360899999999 63.74638399999998) (-64.58444199999985 63.704711999999915) (-64.55943299999996 63.694153000000085) (-64.54028299999999 63.68443300000001) (-64.52749599999999 63.676941000000056) (-64.52250700000002 63.672768000000076) (-64.50834700000001 63.65082600000005) (-64.50666799999999 63.63694000000004) (-64.50750699999998 63.630821000000026) (-64.515015 63.62027000000012) (-64.52194199999991 63.61193800000012) (-64.53666699999997 63.581108000000086) (-64.529449 63.534996000000035) (-64.52250700000002 63.514717000000076) (-64.50167799999997 63.4438780000001) (-64.49888599999997 63.42916100000008) (-64.49554399999994 63.32777399999998) (-64.51083399999999 63.30777000000006) (-64.58889799999986 63.3219380000001) (-64.608337 63.32388300000008) (-64.61999499999996 63.32332600000001) (-64.62222300000002 63.32221999999996) (-64.62471 63.318054000000075) (-64.61999499999996 63.31332400000002) (-64.61471599999999 63.30971500000004) (-64.58778399999994 63.299721000000034) (-64.577225 63.29666099999997) (-64.56639099999995 63.29388400000005) (-64.52555799999993 63.29055000000005) (-64.50083899999998 63.28999299999998) (-64.48889200000002 63.28833000000009) (-64.48277300000001 63.28582799999998) (-64.48194899999987 63.28221100000002) (-64.53111299999995 63.24971800000009) (-64.53805499999993 63.24832900000007) (-64.65833999999995 63.249161000000015) (-64.76750199999992 63.32388300000008) (-64.82695000000001 63.45249199999995) (-64.85055499999993 63.51082600000001) (-64.94249000000002 63.63221000000004) (-64.95500199999992 63.64027400000003) (-64.973053 63.646942000000024) (-64.99499499999996 63.652488999999946) (-65.04638699999992 63.662209000000075) (-65.06361400000003 63.66805300000004) (-65.07084700000001 63.67193600000002) (-65.166946 63.747772000000055) (-65.16639700000002 63.77332300000012) (-65.15333599999991 63.771102999999925) (-65.15083300000003 63.772217000000126) (-65.15417499999995 63.77693900000003) (-65.15943900000002 63.78110500000008) (-65.20472699999993 63.80332199999998) (-65.29360999999994 63.812767000000065) (-65.29861499999993 63.81249200000002) (-65.30139200000002 63.81082200000003) (-65.303879 63.806938) (-65.30027799999993 63.799995000000024) (-65.281677 63.788887000000045) (-65.21556099999992 63.75471500000009) (-65.15566999999993 63.72532699999999) (-65.13528400000001 63.71527100000014) (-65.05305499999997 63.63804600000009) (-65.03916900000002 63.57416500000011) (-65.06973299999999 63.568886000000134) (-65.08583099999993 63.563881000000094) (-65.09194899999994 63.55971499999998) (-65.09999099999993 63.54721799999999) (-65.10221899999999 63.541664000000026) (-65.10221899999999 63.53665899999993) (-65.0994419999999 63.526381999999955) (-65.026947 63.3991620000001) (-64.96501199999994 63.36943800000006) (-64.95249899999988 63.362213) (-64.94249000000002 63.353049999999996) (-64.90916399999998 63.280548000000124) (-64.90110800000002 63.237495000000024) (-64.90861499999994 63.235550000000046) (-64.92138699999992 63.235825000000034) (-65.04638699999992 63.24832900000007) (-65.068893 63.25249499999995) (-65.08250399999997 63.260826000000066) (-65.10333299999996 63.27777100000003) (-65.11416600000001 63.28499600000009) (-65.12332199999997 63.28833000000009) (-65.136124 63.29083300000002) (-65.141953 63.28943600000008) (-65.14862099999999 63.286110000000065) (-65.14695699999987 63.28138000000001) (-65.08332799999994 63.20388000000014) (-65.05777 63.174713) (-65.05499299999991 63.17221799999999) (-65.046112 63.171104000000014) (-65.01652499999994 63.171516) (-64.99861099999993 63.176102000000014) (-64.94471699999991 63.18332700000008) (-64.92027299999995 63.18415800000008) (-64.91139199999992 63.18082400000009) (-64.81166099999996 63.13749700000005) (-64.79750099999995 63.130547000000035) (-64.78388999999999 63.12221500000004) (-64.75500499999993 63.099158999999986) (-64.75334199999992 63.09665700000011) (-64.76251199999996 63.0472180000001) (-64.77139299999999 62.98333000000008) (-64.70333899999997 62.95332300000007) (-64.69610599999987 62.952217000000076) (-64.67639200000002 62.94165800000002) (-64.64555399999995 62.92166099999997) (-64.63444499999997 62.9124910000001) (-64.62721299999998 62.90415999999999) (-64.62693799999994 62.899994000000106) (-64.62998999999996 62.897491000000116) (-64.63833599999998 62.89444000000009) (-64.733612 62.87887599999999) (-64.76945499999994 62.86221300000011) (-64.85526999999996 62.865273) (-64.88194299999986 62.867493000000024) (-64.903885 62.872490000000084) (-64.92332499999998 62.87887599999999) (-65.00500499999998 62.90776800000009) (-65.16221599999994 62.943047000000035) (-65.225281 62.95499399999994) (-65.23611499999998 62.95777100000004) (-65.24305699999996 62.9616620000001) (-65.24833699999994 62.965828000000045) (-65.25140399999998 62.97054300000008) (-65.25500499999993 62.97971300000012) (-65.25473 62.98526800000002) (-65.26916499999993 62.95999100000006) (-65.19444299999992 62.87887599999999) (-65.19027699999992 62.87526700000001) (-65.17500299999995 62.862495000000024) (-65.15388499999995 62.84693900000002) (-65.14805599999994 62.843323) (-65.129166 62.83638000000002) (-65.11527999999998 62.82888000000008) (-64.98472600000002 62.714157) (-64.97833299999996 62.70471199999997) (-64.94888299999991 62.648604999999975) (-64.964722 62.6336060000001) (-64.98083499999996 62.623604000000114) (-65.06277499999999 62.58749400000005) (-65.07112099999995 62.58443500000004) (-65.087219 62.57888000000014) (-65.11471599999999 62.57166300000006) (-65.14500399999991 62.56582600000007) (-65.18749999999994 62.56221000000005) (-65.19776899999988 62.56304899999998) (-65.20500199999998 62.56610100000012) (-65.212219 62.56999200000001) (-65.22084000000001 62.57833100000005) (-65.28860500000002 62.659988) (-65.29499799999996 62.669441000000006) (-65.29666099999997 62.67416399999996) (-65.29055800000003 62.678878999999995) (-65.27389499999998 62.68526500000013) (-65.26777600000003 62.69026900000006) (-65.26695299999994 62.694435) (-65.27917500000001 62.696654999999964) (-65.321121 62.694435) (-65.32749899999999 62.691658000000075) (-65.32972699999993 62.685546999999985) (-65.32806399999998 62.66610000000014) (-65.33721899999995 62.66666400000008) (-65.34695399999987 62.67582700000008) (-65.35388199999994 62.68443300000001) (-65.35665899999992 62.69499200000007) (-65.33972199999994 62.83749399999999) (-65.39195299999994 62.843605000000025) (-65.43666100000002 62.81944299999998) (-65.56666599999994 62.811661000000015) (-65.57917800000001 62.81193499999995) (-65.60194399999995 62.817772000000105) (-65.60943599999996 62.820831000000055) (-65.61610399999995 62.82471500000008) (-65.74694799999986 62.917770000000075) (-65.90943899999996 62.92582700000003) (-65.93331899999998 62.95582600000006) (-65.910278 62.96776599999998) (-65.839722 63.02082800000005) (-65.83473199999997 63.02638200000007) (-65.833328 63.03138000000007) (-65.83833300000003 63.03333300000003) (-65.84973100000002 63.032767999999976) (-65.86639400000001 63.028602999999976) (-65.92610199999996 63.00833100000011) (-65.94972200000001 62.997772000000055) (-65.95500199999998 62.994155999999975) (-65.95556599999986 62.990829000000076) (-65.94638099999997 62.98304700000011) (-65.94583099999994 62.97887400000013) (-65.95056199999999 62.97582200000005) (-65.96083099999993 62.974433999999974) (-65.97389199999986 62.97387700000007) (-65.987213 62.97470900000013) (-66.01445000000001 62.97887400000013) (-66.03138699999994 62.98471799999999) (-66.03971899999999 62.988602000000014) (-66.05221599999999 62.99665800000008) (-66.14973399999991 63.059990000000084) (-66.15556300000003 63.08138300000002) (-66.16278099999994 63.08998900000012) (-66.17443800000001 63.09638200000006) (-66.26695299999994 63.13082099999997) (-66.27583299999998 63.13388100000003) (-66.28250100000002 63.133331) (-66.287781 63.12971500000009) (-66.291946 63.12526700000012) (-66.29333500000001 63.120543999999995) (-66.291382 63.11610400000012) (-66.206955 63.04083300000008) (-66.19665499999996 63.03166199999998) (-66.18276999999989 63.023604999999975) (-66.12165800000002 63.00110600000005) (-66.10555999999997 62.99388099999999) (-66.098343 62.99027300000006) (-66.091385 62.983604000000014) (-66.08972199999988 62.97860000000003) (-66.09777799999995 62.95249200000006) (-66.10305800000003 62.946655000000135) (-66.10777299999995 62.94387800000004) (-66.11610399999995 62.940544000000045) (-66.13583399999993 62.93665299999998) (-66.14723200000003 62.936104) (-66.15916399999998 62.93665299999998) (-66.16888399999999 62.938881000000094) (-66.19221500000003 62.95443700000004) (-66.22083999999995 62.96943700000003) (-66.28472899999991 62.99027300000006) (-66.29388399999988 62.992767000000015) (-66.34500099999997 62.999161000000015) (-66.35166899999996 62.99860399999994) (-66.366104 62.99249300000008) (-66.37860099999989 62.99249300000008) (-66.39277599999997 62.99499500000013) (-66.40888999999993 63.00193800000011) (-66.44444299999986 63.020546000000024) (-66.46444699999995 63.032211000000075) (-66.51834099999996 63.06526900000006) (-66.525284 63.074715000000026) (-66.551941 63.17943600000001) (-66.62638899999996 63.252220000000136) (-66.64666699999998 63.32638499999996) (-66.63833599999998 63.34027100000014) (-66.63751200000002 63.349998000000085) (-66.63694800000002 63.35833000000008) (-66.63778699999995 63.36277000000007) (-66.64277600000003 63.37248999999997) (-66.65083299999998 63.37499200000008) (-66.65750099999997 63.374435000000005) (-66.66416900000002 63.37165800000008) (-66.73554999999999 63.299438000000066) (-66.73860200000001 63.29415900000009) (-66.74082899999996 63.288048) (-66.74027999999993 63.283607000000075) (-66.73111 63.27471200000002) (-66.72055099999994 63.266388000000006) (-66.68554699999999 63.248046999999985) (-66.67138699999987 63.24276700000013) (-66.64695699999993 63.23915900000003) (-66.63917499999997 63.23610700000012) (-66.60749800000002 63.21027400000014) (-66.60249299999998 63.2052690000001) (-66.600281 63.20082900000011) (-66.558334 63.08721200000002) (-66.53778099999988 62.99804700000004) (-66.54028299999993 62.994155999999975) (-66.54666099999992 62.99137900000011) (-66.55722000000003 62.99193600000001) (-66.67304999999999 63.023048000000074) (-66.68222000000003 63.02638200000007) (-66.76306199999993 63.08305400000006) (-66.76806599999992 63.08776899999992) (-66.77389499999992 63.09638200000006) (-66.77444499999996 63.100548) (-66.778885 63.14360799999997) (-66.78916900000002 63.21138000000002) (-66.80665599999998 63.272491000000116) (-66.80749500000002 63.27332300000006) (-66.81166100000002 63.274437000000034) (-66.82028200000002 63.27332300000006) (-66.82917799999996 63.27166000000011) (-66.83778399999994 63.267769000000044) (-66.84695399999993 63.25750000000005) (-66.84916699999997 63.25138900000013) (-66.84916699999997 63.24554400000005) (-66.84611499999994 63.22971300000006) (-66.84472700000003 63.22665400000011) (-66.837219 63.21804800000001) (-66.82833899999997 63.20916) (-66.81945799999994 63.20027200000004) (-66.81388899999996 63.196098000000006) (-66.80387899999994 63.186378000000104) (-66.80139199999996 63.18249500000013) (-66.79972799999996 63.17749000000009) (-66.79943799999995 63.172492999999974) (-66.80166600000001 63.16638200000011) (-66.80665599999998 63.16054500000013) (-66.81834399999997 63.15415999999993) (-66.835556 63.14916199999993) (-66.84416199999993 63.147217000000126) (-66.85527000000002 63.147217000000126) (-66.86833200000001 63.14888000000008) (-66.87777699999998 63.15193199999999) (-67.01834099999996 63.238883999999985) (-67.02389499999998 63.243050000000096) (-67.02500899999995 63.246658000000025) (-67.02444500000001 63.25027499999999) (-67.023056 63.25277700000004) (-67.006393 63.26221500000008) (-66.971115 63.38971700000002) (-66.97277799999995 63.3949970000001) (-66.97778299999999 63.399719000000005) (-66.98889199999996 63.402489) (-67.01112399999994 63.39999399999999) (-67.01722699999999 63.39721700000007) (-67.04083299999996 63.33554799999996) (-67.03916899999996 63.33055100000007) (-67.03582799999992 63.3252720000001) (-67.02500899999995 63.31110400000006) (-67.01611300000002 63.29666099999997) (-67.01417499999997 63.28638500000005) (-67.01722699999999 63.281105000000025) (-67.03332499999993 63.27526899999992) (-67.05194099999994 63.27332300000006) (-67.171112 63.27388000000013) (-67.17971799999992 63.27555100000001) (-67.20388799999995 63.28527100000008) (-67.431671 63.412765999999976) (-67.49999999999994 63.442764000000125) (-67.62165800000002 63.54888199999999) (-67.68331899999998 63.619438) (-67.83889799999992 63.72971300000012) (-67.89750699999996 63.75305200000014) (-67.91471899999999 63.759438000000046) (-67.92332499999992 63.761108000000036) (-67.92610200000001 63.75916300000006) (-67.92527799999993 63.75471500000009) (-67.92138699999998 63.74443800000006) (-67.91805999999985 63.739159000000086) (-67.82000699999998 63.596382000000006) (-67.710556 63.45860300000004) (-67.68331899999998 63.43166400000007) (-67.675003 63.4180530000001) (-67.67193599999996 63.41249099999999) (-67.66776999999996 63.403046000000074) (-67.66639699999996 63.394439999999975) (-67.66665599999999 63.388046000000145) (-67.67832900000002 63.3730470000001) (-67.685272 63.36888099999999) (-67.69444299999998 63.36638599999998) (-67.71665999999993 63.3638840000001) (-67.72416699999997 63.364159000000086) (-67.737213 63.36638599999998) (-67.74638400000003 63.36943800000006) (-67.82055700000001 63.40026900000004) (-67.827225 63.4052660000001) (-67.83750900000001 63.42416400000002) (-67.854446 63.45277400000003) (-67.858047 63.457497000000046) (-67.87165800000002 63.46471400000013) (-67.95083599999998 63.506660000000124) (-68.02528399999994 63.540832999999964) (-68.03332499999993 63.54388399999999) (-68.041382 63.546104000000014) (-68.05305499999992 63.54527300000001) (-68.06166100000002 63.54332700000009) (-68.07556199999999 63.544159000000036) (-68.36582900000002 63.64527099999998) (-68.38861099999986 63.655548000000124) (-68.40028399999994 63.66387900000001) (-68.40556300000003 63.66860200000002) (-68.42832899999996 63.69638100000003) (-68.54276999999996 63.732490999999925) (-68.6458439999999 63.74749000000003) (-68.71362299999998 63.74249300000008) (-68.70973200000003 63.73804500000011) (-68.71139499999992 63.73471799999999) (-68.71610999999996 63.73220799999996) (-68.72361799999999 63.72971300000012) (-68.795547 63.728600000000085) (-68.80444299999994 63.73027000000002) (-68.87609900000001 63.744713000000104) (-68.91583300000002 63.75721699999997) (-68.92443799999995 63.75888800000001) (-68.96250899999995 63.75916300000006) (-68.99472000000003 63.75555400000002) (-68.99694799999992 63.75360900000004) (-68.99833699999999 63.745270000000005) (-68.99527 63.74137900000011) (-68.98971599999999 63.73749500000008) (-68.97778299999993 63.72971300000012) (-68.93305999999995 63.71193699999998) (-68.91944899999999 63.704994) (-68.82472200000001 63.64388300000007) (-68.81304899999998 63.63555100000008) (-68.80943300000001 63.630821000000026) (-68.80722000000003 63.62582400000014) (-68.80943300000001 63.621658000000025) (-68.79333499999996 63.589157000000114) (-68.76611300000002 63.55665600000003) (-68.75473 63.548607000000004) (-68.71777299999991 63.52860300000009) (-68.55776999999995 63.45249199999995) (-68.49583399999995 63.421378999999945) (-68.35943599999996 63.34471099999996) (-68.28860500000002 63.298332000000016) (-68.27055399999995 63.28499600000009) (-68.20639 63.22721100000001) (-68.20249899999993 63.21693399999998) (-68.20639 63.21249399999999) (-68.18638599999997 63.18832400000014) (-68.156113 63.158324999999934) (-68.146118 63.15026900000004) (-68.13917500000002 63.14860500000003) (-68.128601 63.14804800000013) (-68.11555499999997 63.15248900000006) (-68.08277900000002 63.16360500000002) (-68.06388899999996 63.16360500000002) (-67.95222499999994 63.14554600000008) (-67.92639200000002 63.141106000000036) (-67.91749599999997 63.13721499999997) (-67.91665599999993 63.133049000000085) (-67.92332499999992 63.12943300000006) (-67.91278099999994 63.083327999999995) (-67.64611799999994 63.10027299999996) (-67.632767 63.09887700000013) (-67.610275 63.09415400000012) (-67.60499600000003 63.08998900000012) (-67.59999099999999 63.08443499999993) (-67.59999099999999 63.07888000000003) (-67.601944 63.073326000000066) (-67.61500499999994 63.06360599999999) (-67.62416099999996 63.06110400000006) (-67.636124 63.0597150000001) (-67.68221999999992 63.05777000000012) (-67.68971299999993 63.05804400000005) (-67.70916699999992 63.05665599999992) (-67.71945199999993 63.054993000000024) (-67.72749299999992 63.05165900000003) (-67.77305599999994 63.02582600000005) (-67.77250700000002 62.962212000000136) (-67.76972999999998 62.95832799999994) (-67.76362599999999 62.95555100000007) (-67.74804699999999 62.953049000000135) (-67.73860200000001 62.95332300000007) (-67.72805800000003 62.95499399999994) (-67.72183199999995 62.96265800000009) (-67.718842 62.96449300000006) (-67.71816999999999 62.96732700000007) (-67.71932999999996 62.9704900000001) (-67.72444200000001 62.984161000000086) (-67.72999599999997 62.98832700000014) (-67.73693800000001 62.99554400000011) (-67.73388699999998 63.000832000000116) (-67.69804399999992 63.02082800000005) (-67.68693499999995 63.026657000000114) (-67.65943899999996 63.03416400000003) (-67.56527699999998 63.04943800000012) (-67.55305499999992 63.04860700000012) (-67.52999899999998 63.03694200000001) (-67.510559 63.02471200000008) (-67.49999999999994 63.01554900000008) (-67.49972499999996 63.00777399999998) (-67.50917099999992 63.00193800000011) (-67.531387 62.99526999999995) (-67.55055199999998 62.99193600000001) (-67.57333399999999 62.99027300000006) (-67.593613 62.98749500000008) (-67.63082899999995 62.97637900000012) (-67.65139799999992 62.96749099999994) (-67.670998 62.944323999999995) (-67.671829 62.94132200000013) (-67.67266799999999 62.937996000000055) (-67.672775 62.92332499999998) (-67.66583300000002 62.91888400000005) (-67.65916400000003 62.916664000000026) (-67.654922 62.917282) (-67.64889499999992 62.92110400000007) (-67.64666699999998 62.925270000000125) (-67.63833599999998 62.931938000000116) (-67.57250999999991 62.963882000000126) (-67.566956 62.96554600000013) (-67.47027599999996 62.98526800000002) (-67.462784 62.98526800000002) (-67.39805599999994 62.96720900000008) (-67.19471699999991 62.87027000000006) (-67.04834 62.77137800000014) (-67.01222199999995 62.73443600000013) (-66.95777899999996 62.681107) (-66.91332999999992 62.66999100000004) (-66.82472200000001 62.67916100000008) (-66.81332399999985 62.67999299999997) (-66.741104 62.673882000000106) (-66.73306300000002 62.67166100000003) (-66.726944 62.66860200000002) (-66.72888199999994 62.66610000000014) (-66.735275 62.66249099999993) (-66.74444599999993 62.66027100000014) (-66.752792 62.65693699999997) (-66.760559 62.653602999999976) (-66.76806599999992 62.64887999999996) (-66.77305599999988 62.64305099999996) (-66.77500900000001 62.636940000000095) (-66.77305599999988 62.63249200000013) (-66.60694899999999 62.604996000000085) (-66.42500299999995 62.445267000000115) (-66.35943600000002 62.44748700000014) (-66.35166899999996 62.44499200000013) (-66.34916699999997 62.44137600000005) (-66.32749899999993 62.384438000000046) (-66.33056599999998 62.37915800000002) (-66.33778399999989 62.37499200000008) (-66.42639199999996 62.349433999999974) (-66.43554699999993 62.349158999999986) (-66.45861799999994 62.35193600000008) (-66.46916199999998 62.35193600000008) (-66.47582999999997 62.348602000000085) (-66.478882 62.34332300000011) (-66.478882 62.338325999999995) (-66.47694399999995 62.335823000000005) (-66.47000099999997 62.33221400000002) (-66.37471 62.286110000000065) (-66.32917799999996 62.267494000000056) (-66.31861900000001 62.26471700000013) (-66.35583499999996 62.30777000000006) (-66.35916099999997 62.312492000000134) (-66.36389200000002 62.32305100000002) (-66.36138900000003 62.32694200000009) (-66.35555999999985 62.33194000000009) (-66.351944 62.334991000000116) (-66.33277900000002 62.341934000000094) (-66.3125 62.344993999999986) (-66.29415899999998 62.34471100000002) (-66.285553 62.34360500000014) (-66.2083439999999 62.33221400000002) (-66.16528299999993 62.291382) (-66.16027799999989 62.271378000000084) (-66.16722099999998 62.25443999999999) (-66.20195000000001 62.26055100000008) (-66.25666799999999 62.26610599999998) (-66.26139799999987 62.26305400000007) (-66.25723299999987 62.25972000000007) (-66.241104 62.253326000000015) (-66.2125089999999 62.24527000000012) (-66.16639700000002 62.23526799999996) (-66.08168 62.226379000000065) (-66.05860899999988 62.2241590000001) (-66.051941 62.22470900000013) (-66.04583699999995 62.227486) (-66.04361 62.23360400000013) (-66.03889500000002 62.23943299999996) (-66.03388999999999 62.24499500000013) (-66.02861000000001 62.248604000000114) (-66.02500899999995 62.24971800000009) (-66.01501499999995 62.25138900000013) (-66 62.247772) (-65.99305700000002 62.244155999999975) (-65.939438 62.208602999999925) (-65.93305999999995 62.20416300000011) (-65.92916899999989 62.198044000000095) (-65.93055699999996 62.19332100000008) (-65.93443299999996 62.19165799999996) (-65.95278899999994 62.18915600000008) (-65.96333299999998 62.186935000000005) (-65.96916199999993 62.18471499999998) (-66.04361 62.151657) (-66.05082700000003 62.147774000000084) (-66.13249200000001 62.089432000000045) (-66.11000100000001 62.01749400000011) (-66.041946 61.95804600000008) (-66.03582799999992 61.95277399999998) (-66.03306600000002 61.95249200000012) (-66.019455 61.954994) (-66.00306699999999 61.96221200000002) (-65.99943499999995 61.96305100000012) (-65.99221799999987 61.962769000000094) (-65.98860200000001 61.958885000000066) (-65.949432 61.9124910000001) (-65.94665500000002 61.906936999999914) (-65.94665500000002 61.89916200000005) (-65.94888299999997 61.89527099999998) (-65.95500199999998 61.89027400000003) (-65.96194500000001 61.88638300000014) (-65.97084000000001 61.88388100000009) (-66.05777 61.86971300000005) (-66.066101 61.868599000000074) (-66.27583299999998 61.858330000000024) (-66.287781 61.858330000000024) (-66.39500399999986 61.87082700000002) (-66.404449 61.87276500000013) (-66.52166699999992 61.896942000000024) (-66.54333499999996 61.89888000000013) (-66.55555700000002 61.90138200000001) (-66.62609900000001 61.917213000000004) (-66.632767 61.91888400000005) (-66.65916399999998 61.93360100000007) (-66.66528299999993 61.94137599999999) (-66.662216 61.946655000000135) (-66.74694799999992 62.00777400000004) (-66.75556899999992 62.011108000000036) (-66.78138699999988 62.015549000000135) (-66.80332900000002 62.01693700000004) (-66.81277499999999 62.01666300000011) (-66.82583599999992 62.011940000000095) (-67.091949 62.030823) (-67.10472099999998 62.03221100000013) (-67.25472999999994 62.07804900000008) (-67.3452759999999 62.119437999999946) (-67.46305799999993 62.13943500000005) (-67.49999999999994 62.13865700000014) (-67.73165899999992 62.158356000000026) (-67.75723299999993 62.160544999999956) (-67.79833999999994 62.166100000000085) (-68.00306699999999 62.213882000000126) (-68.11389200000002 62.21610300000003) (-68.2330629999999 62.21971100000013) (-68.256958 62.220825000000104) (-68.26916499999987 62.22304500000013) (-68.29943800000001 62.23220800000013) (-68.32528699999995 62.234993000000145) (-68.40167199999996 62.23943299999996) (-68.46945199999999 62.24276700000013) (-68.51972999999992 62.24471300000005) (-68.54804999999993 62.248604000000114) (-68.56471299999993 62.25193800000011) (-68.61582899999996 62.26388500000007) (-68.72222899999991 62.302216000000044) (-68.72555499999987 62.30471) (-68.72694399999995 62.30777000000006) (-68.75917099999992 62.32804900000002) (-68.88221699999997 62.3605500000001) (-68.92250100000001 62.36554700000005) (-68.99583399999995 62.37332200000009) (-69.03900099999998 62.38135500000004) (-69.12138400000003 62.410820000000115) (-69.16000399999996 62.42527000000007) (-69.19305400000002 62.43804200000005) (-69.23167399999988 62.4552690000001) (-69.270554 62.4783250000001) (-69.36082499999992 62.53638500000005) (-69.40834000000001 62.56999200000001) (-69.43055699999996 62.584160000000054) (-69.42666600000001 62.55443600000001) (-69.42832900000002 62.548332000000016) (-69.44221500000003 62.54749300000003) (-69.44972199999995 62.551102000000014) (-69.51916499999999 62.602493000000095) (-69.58389299999999 62.6519320000001) (-69.59722899999991 62.66249099999993) (-69.59750400000001 62.665268000000026) (-69.56555199999997 62.71804800000007) (-69.55721999999997 62.72637900000001) (-69.54333500000001 62.732765000000086) (-69.52555799999993 62.73804499999994) (-69.50389100000001 62.74137899999994) (-69.48249799999996 62.763611000000026) (-69.72749299999998 62.77999100000011) (-69.90638699999988 62.76859999999999) (-70.12193299999996 62.748878000000104) (-70.21749899999986 62.74777200000011) (-70.22917199999995 62.748878000000104) (-70.24027999999998 62.751389000000074) (-70.35499599999991 62.78832999999997) (-70.36000099999995 62.79027600000006) (-70.36776700000001 62.79388399999999) (-70.47778299999999 62.84832800000004) (-70.49943499999995 62.864441000000056) (-70.50805699999995 62.86582899999996) (-70.66555800000003 62.88054700000009) (-70.83029199999993 62.89666000000011) (-70.85333299999996 62.899994000000106) (-70.88555899999994 62.90721100000002) (-70.896118 62.91443600000008) (-70.89306599999998 62.917770000000075) (-70.88583399999999 62.920547) (-70.87138400000003 62.924713000000054) (-70.86361699999998 62.92555200000004) (-70.848343 62.924713000000054) (-70.84777799999989 62.947212000000036) (-70.97483799999998 62.98943700000001) (-70.97734100000002 62.983768000000055) (-71.01306199999999 62.98999000000009) (-71.06027199999994 62.98110200000008) (-71.07167099999998 62.979431000000034) (-71.12083399999995 62.979431000000034) (-71.13583399999993 62.98082000000005) (-71.152222 62.98526800000002) (-71.15666199999998 62.989159000000086) (-71.15666199999998 62.99943499999995) (-71.13667299999997 63.028602999999976) (-71.11810300000002 63.032219000000055) (-71.09138499999995 63.02999100000005) (-71.02088899999995 63.0442700000001) (-71.01372499999997 63.04360200000002) (-71.00738499999994 63.04343799999998) (-71.00321999999994 63.044768999999974) (-70.86389200000002 63.112213000000054) (-70.85638399999999 63.13943499999999) (-70.90888999999999 63.17083000000008) (-70.92054699999994 63.16888399999999) (-70.95249899999999 63.16276600000003) (-70.97138999999993 63.158882000000006) (-70.97694399999995 63.15665400000006) (-70.99027999999998 63.14804800000013) (-70.99749800000001 63.14166299999994) (-71.00195300000001 63.128044000000045) (-71.002792 63.123322000000144) (-71.00140399999998 63.118881000000044) (-70.99333200000001 63.112770000000125) (-70.99082900000002 63.10833000000014) (-70.98998999999998 63.10249299999998) (-70.993607 63.09804500000001) (-71.02972399999999 63.07193799999999) (-71.041672 63.06944299999992) (-71.12721299999998 63.071663000000115) (-71.13861099999991 63.073326000000066) (-71.19526699999994 63.03166199999998) (-71.195831 63.026657000000114) (-71.19860799999998 63.01998900000012) (-71.208618 63.01166500000005) (-71.23277300000001 63.00193800000011) (-71.24388099999999 63.00110600000005) (-71.25584400000002 63.00193800000011) (-71.26251200000002 63.00416600000011) (-71.40055799999999 63.05165900000003) (-71.40833999999995 63.05526700000013) (-71.41389500000002 63.060546999999985) (-71.42138699999998 63.071663000000115) (-71.45472699999993 63.10193600000008) (-71.465012 63.1033250000001) (-71.60583499999996 63.134995) (-71.62499999999994 63.14083100000005) (-71.70666499999993 63.17499500000008) (-71.71389799999997 63.179161000000136) (-71.77000399999991 63.25638600000002) (-71.79499800000002 63.326660000000004) (-71.79554699999994 63.38472000000007) (-71.80583199999995 63.382767) (-72.00917099999998 63.391106000000036) (-72.06304899999992 63.39638500000001) (-72.07640099999998 63.398048000000074) (-72.08306900000002 63.40054299999997) (-72.14167800000001 63.436104000000114) (-72.146118 63.43998700000003) (-72.145554 63.44609800000012) (-72.12666299999995 63.450271999999984) (-72.023056 63.44804399999998) (-71.93331899999993 63.443321000000026) (-71.82583599999998 63.43526500000013) (-71.785278 63.431938) (-71.74804699999999 63.428047000000106) (-71.71112099999993 63.42276800000013) (-71.68305999999995 63.41971600000005) (-71.63473499999992 63.41971600000005) (-71.61500499999994 63.422493000000145) (-71.59944200000001 63.42582700000014) (-71.41166699999991 63.48582499999998) (-71.31695599999995 63.530823000000055) (-71.22749299999992 63.598877000000016) (-71.22972099999998 63.60471300000006) (-71.23472600000002 63.608047000000056) (-71.24562099999997 63.61093900000009) (-71.261124 63.612495000000024) (-71.29527300000001 63.612495000000024) (-71.30694599999998 63.611381999999935) (-71.32362399999994 63.60527000000013) (-71.32806399999998 63.602218999999934) (-71.33168 63.59832800000004) (-71.33306900000002 63.583603000000096) (-71.33250399999997 63.58166499999999) (-71.32806399999998 63.57694200000003) (-71.32556199999999 63.571938000000046) (-71.32611099999991 63.57054900000003) (-71.33168 63.56554399999999) (-71.3352809999999 63.564437999999996) (-71.37999000000002 63.56554399999999) (-71.40750100000002 63.567771999999934) (-71.41416899999996 63.57054900000003) (-71.41639700000002 63.57276900000005) (-71.37805200000003 63.59526800000003) (-71.36749299999997 63.60193599999997) (-71.36361699999998 63.60721600000005) (-71.362503 63.61332700000014) (-71.37748699999997 63.632767000000115) (-71.39666699999992 63.635826000000066) (-71.40777600000001 63.63555100000008) (-71.41139199999998 63.63443799999999) (-71.41805999999997 63.62999000000002) (-71.45249899999999 63.60443900000013) (-71.441101 63.59082799999999) (-71.439438 63.58804299999997) (-71.44694499999991 63.580826) (-71.45584100000002 63.57888000000014) (-71.47027599999996 63.578049000000135) (-71.56166100000002 63.58027599999997) (-71.57695000000001 63.58166499999999) (-71.58056599999998 63.58387800000014) (-71.58138999999994 63.59304800000001) (-71.583618 63.64971900000012) (-71.569458 63.67555200000004) (-71.56221 63.685546999999985) (-71.58111600000001 63.714995999999985) (-71.58500700000002 63.71665999999999) (-71.6158289999999 63.72221399999995) (-71.62916599999994 63.72387700000007) (-71.63806199999988 63.72109999999998) (-71.66000400000001 63.70694000000009) (-71.66471899999988 63.70304900000002) (-71.66722099999993 63.697212000000036) (-71.70056199999999 63.69638100000003) (-71.82389799999987 63.78054800000001) (-71.83000199999998 63.78443900000008) (-71.89111300000002 63.80832700000002) (-71.904449 63.80998999999997) (-71.91555800000003 63.810272) (-71.93859900000001 63.80804400000005) (-71.95834400000001 63.802490000000034) (-71.97055099999994 63.795830000000024) (-71.98554999999993 63.78193700000003) (-72.000565 63.76138300000002) (-72.00418100000002 63.752776999999924) (-71.99972500000001 63.748328999999956) (-71.991104 63.74610100000001) (-71.972778 63.7480470000001) (-71.966949 63.75110600000005) (-71.95472699999993 63.76527400000009) (-71.94665499999996 63.77027100000004) (-71.93916299999995 63.77249100000006) (-71.93443300000001 63.77276600000005) (-71.853882 63.76138300000002) (-71.84861799999999 63.759438000000046) (-71.843887 63.75555400000002) (-71.87943999999999 63.681937999999946) (-71.88276699999994 63.67804700000005) (-71.92027300000001 63.655548000000124) (-71.93388400000003 63.649437000000034) (-71.96362299999998 63.64916200000005) (-72.05194099999994 63.67860399999995) (-72.15417500000001 63.7355500000001) (-72.16944899999999 63.748604) (-72.21305799999999 63.68387600000011) (-72.21278399999994 63.68055000000004) (-72.21389799999992 63.677772999999945) (-72.218887 63.67388200000005) (-72.22389199999986 63.67221800000004) (-72.23416099999997 63.670273000000066) (-72.24526999999995 63.669715999999994) (-72.28694200000001 63.67166099999997) (-72.31750499999998 63.67416400000013) (-72.32417299999997 63.67665899999997) (-72.32749899999999 63.67971799999998) (-72.36389199999996 63.749435000000005) (-72.36361699999998 63.754440000000045) (-72.35777299999995 63.76138300000002) (-72.35278299999999 63.76527400000009) (-72.34249899999998 63.77137800000014) (-72.32472200000001 63.77693900000003) (-72.31777999999991 63.77777100000009) (-72.30277999999993 63.776657000000114) (-72.29138199999994 63.77360500000003) (-72.27000399999991 63.787216) (-72.215012 63.86776700000007) (-72.20973200000003 63.89305100000007) (-72.223053 63.92943600000001) (-72.2327729999999 63.94832599999995) (-72.23889200000002 63.95249200000006) (-72.24638400000003 63.95027200000004) (-72.25056499999994 63.94776900000005) (-72.36471599999993 63.845543000000134) (-72.38305699999995 63.81554399999993) (-72.37638899999996 63.812209999999936) (-72.37165800000002 63.809158000000025) (-72.36694299999999 63.80471000000006) (-72.36555499999992 63.80027000000007) (-72.36305199999993 63.79110700000007) (-72.36805699999996 63.7824940000001) (-72.372772 63.77860300000003) (-72.43611099999993 63.78166199999998) (-72.51583899999997 63.786384999999996) (-72.52639799999992 63.78777300000007) (-72.531387 63.79110700000007) (-72.53222700000003 63.79666100000003) (-72.531387 63.79943800000012) (-72.51972999999992 63.80471000000006) (-72.49665800000002 63.803604000000064) (-72.47416699999991 63.80471000000006) (-72.46389799999997 63.806655999999975) (-72.45973199999997 63.809158000000025) (-72.45611600000001 63.81443800000011) (-72.456955 63.815826000000015) (-72.46501199999994 63.81916000000001) (-72.52111799999994 63.84027100000003) (-72.537216 63.844154) (-72.585556 63.852776000000006) (-72.63473499999998 63.85249300000004) (-72.63751200000002 63.87360400000006) (-72.64111299999996 63.904434000000094) (-72.61166399999996 63.94304699999998) (-72.59277299999985 64.01805100000013) (-72.59277299999985 64.02221700000007) (-72.6583399999999 64.07666) (-72.66471899999993 64.08055100000007) (-72.67471299999994 64.083328) (-72.68249500000002 64.07971199999997) (-72.68554699999993 64.07638500000002) (-72.68804899999998 64.07054099999999) (-72.70472699999999 64.01554900000008) (-72.70584100000002 64.00915500000002) (-72.70249899999993 64.00555399999996) (-72.69694500000003 64.00305200000008) (-72.66833500000001 63.996101000000124) (-72.66000400000001 63.992493000000024) (-72.658615 63.98777000000007) (-72.66639699999996 63.980545000000006) (-72.67887899999994 63.972488000000055) (-72.69249000000002 63.966660000000104) (-72.69972200000001 63.96443900000003) (-72.72000099999997 63.96110500000003) (-72.75334199999992 64.00027499999999) (-72.75834699999996 64.00416600000005) (-72.779449 64.01054400000004) (-72.83612099999999 64.01971400000008) (-72.93138099999999 64.05247500000002) (-72.94027699999998 64.05859400000003) (-72.94137599999999 64.06359900000007) (-72.93971299999987 64.06776400000007) (-72.93331899999998 64.07638500000002) (-72.92555199999987 64.08415200000013) (-72.91972399999992 64.08692900000005) (-72.91111799999993 64.08859300000006) (-72.88806199999999 64.08610500000009) (-72.87832600000002 64.08665500000012) (-72.874435 64.08859300000006) (-72.87083399999995 64.09387200000003) (-72.86888099999993 64.09915200000012) (-72.86833200000001 64.10832199999999) (-72.89723200000003 64.15693700000003) (-72.90527299999991 64.1649930000001) (-72.91166699999997 64.16886899999997) (-73.22389199999992 64.31164600000011) (-73.27111799999989 64.28387500000002) (-73.26722699999999 64.27388000000013) (-73.27000399999997 64.26582300000013) (-73.273056 64.26249700000011) (-73.27917499999995 64.25860600000004) (-73.33972199999994 64.25804099999999) (-73.36582900000002 64.26193200000006) (-73.38055400000002 64.26860000000005) (-73.38417099999998 64.27249100000012) (-73.3869479999999 64.27748099999997) (-73.4177699999999 64.37109399999991) (-73.41555800000003 64.44581600000004) (-73.32695000000001 64.476089) (-73.16777000000002 64.57666000000012) (-73.16471899999993 64.57971200000003) (-73.16471899999993 64.60554499999995) (-73.16555799999998 64.60748300000012) (-73.16944899999987 64.609985) (-73.29695099999992 64.65693700000008) (-73.30277999999993 64.65887500000002) (-73.30943300000001 64.65860000000004) (-73.34222399999993 64.64415000000008) (-73.34666400000003 64.641098) (-73.34750400000001 64.63499500000006) (-73.34111000000001 64.62608300000005) (-73.32611099999997 64.609985) (-73.31443799999994 64.59803800000003) (-73.308044 64.593323) (-73.30221599999999 64.58387800000008) (-73.29861499999993 64.55941800000011) (-73.29916399999996 64.54498299999995) (-73.30332899999996 64.53831500000001) (-73.30749499999996 64.53581200000002) (-73.31527699999992 64.53221100000013) (-73.32417299999986 64.52998400000007) (-73.42416400000002 64.509995) (-73.46333300000003 64.50248699999997) (-73.47222899999997 64.5044400000001) (-73.47582999999992 64.50804099999993) (-73.47721899999999 64.51220700000005) (-73.473053 64.55358900000004) (-73.44871499999994 64.56542200000001) (-73.46722399999999 64.61276200000009) (-73.59500099999997 64.62969999999996) (-73.65556300000003 64.63165300000009) (-73.65556300000003 64.62359600000013) (-73.66749600000003 64.57720900000004) (-73.7502899999999 64.53637700000007) (-73.75389100000001 64.53526300000004) (-73.76445000000001 64.53749100000005) (-73.78778099999994 64.54803500000008) (-73.80305499999992 64.555252) (-73.821121 64.56749000000008) (-73.837784 64.57971200000003) (-73.84944200000001 64.58749399999999) (-73.86138899999997 64.59443699999997) (-73.87666299999995 64.60081500000013) (-73.88694799999996 64.60359200000005) (-73.91027799999995 64.60582) (-73.92027299999995 64.60525500000011) (-73.92944299999999 64.60220300000003) (-73.93249500000002 64.5935970000001) (-73.931107 64.58387800000008) (-73.84472699999998 64.501938) (-73.92555199999993 64.46026599999993) (-73.97277799999989 64.43026700000013) (-73.99943499999989 64.32804899999996) (-74.06277499999999 64.33442700000012) (-74.10221899999988 64.36747699999995) (-74.12805199999991 64.533051) (-74.12748699999997 64.53442400000012) (-74.10583500000001 64.53581200000002) (-74.08222999999992 64.53498800000006) (-74.06527699999992 64.533051) (-74.05555700000002 64.61053500000003) (-74.05055199999998 64.72499100000005) (-74.05387899999994 64.7285920000001) (-74.06054699999999 64.7333220000001) (-74.089722 64.75109900000001) (-74.09611499999994 64.75138900000002) (-74.11444099999994 64.7458190000001) (-74.120544 64.74192800000003) (-74.19526699999989 64.66304000000002) (-74.20889299999993 64.61415100000005) (-74.212784 64.60276800000008) (-74.22471599999994 64.59248400000001) (-74.24027999999998 64.58027600000014) (-74.38194299999992 64.56999200000013) (-74.390289 64.56971699999991) (-74.39750700000002 64.57222000000007) (-74.535278 64.62220800000006) (-74.65750099999997 64.7002720000001) (-74.70167500000002 64.732483) (-74.7041779999999 64.73553500000008) (-74.70083599999987 64.74026500000014) (-74.68331899999993 64.75833100000011) (-74.56750499999998 64.83276400000005) (-74.50111399999997 64.83360300000004) (-74.48777799999993 64.83415200000002) (-74.478882 64.83581500000008) (-74.47639500000002 64.83888200000001) (-74.47694399999995 64.84165999999999) (-74.54055799999998 64.88916) (-74.54583699999995 64.89221200000009) (-74.56111099999993 64.89610299999998) (-74.62193299999996 64.90386999999993) (-74.63999899999993 64.90359500000011) (-74.64862099999993 64.90138200000013) (-74.66027799999989 64.89637800000003) (-74.73277300000001 64.85470599999996) (-74.74137899999994 64.84748800000011) (-74.74305700000002 64.84220900000014) (-74.74194299999999 64.83581500000008) (-74.73889200000002 64.8313750000001) (-74.72222899999997 64.82222000000002) (-74.71472199999994 64.81553599999995) (-74.71000700000002 64.81053200000002) (-74.70666499999999 64.80053700000008) (-74.70666499999999 64.79498300000012) (-74.71083099999998 64.78276100000011) (-74.71888699999994 64.77360499999998) (-74.72639499999997 64.77082800000011) (-74.837219 64.77859500000005) (-74.86833200000001 64.78193699999997) (-74.89334100000002 64.78471400000006) (-74.90222199999994 64.78804000000008) (-74.90916400000003 64.79136700000004) (-74.91583300000002 64.79582200000004) (-74.92443800000001 64.799149) (-74.94415300000003 64.80358900000004) (-74.95500199999998 64.80442800000014) (-74.97555499999987 64.80137600000006) (-74.98527499999994 64.79582200000004) (-74.98554999999988 64.79026800000008) (-74.98249800000002 64.78526300000004) (-74.978882 64.78137200000015) (-74.96333299999998 64.77360499999998) (-74.83473200000003 64.71638500000012) (-74.73332199999999 64.68553199999997) (-74.69444299999998 64.676376) (-74.67555199999998 64.67025800000005) (-74.66000399999996 64.66387900000001) (-74.61305199999993 64.64027400000003) (-74.54527300000001 64.60220300000003) (-74.512787 64.5836030000001) (-74.47528099999994 64.56137100000001) (-74.47000099999997 64.55747999999994) (-74.47084000000001 64.555542) (-74.51362599999987 64.5333250000001) (-74.52027900000002 64.53221100000013) (-74.58583099999998 64.48027000000008) (-74.68554699999999 64.39193699999998) (-74.68582199999997 64.37109399999991) (-74.79777499999994 64.38081399999999) (-74.974716 64.41609199999999) (-74.98527499999994 64.41886900000009) (-75.01055899999994 64.42997700000012) (-75.05638099999999 64.45220899999998) (-75.14250199999998 64.48332199999999) (-75.174713 64.49275200000005) (-75.18276999999995 64.49247700000006) (-75.18859899999995 64.48942600000004) (-75.1888889999999 64.48332199999999) (-75.18721 64.47360200000008) (-75.18249500000002 64.46832300000011) (-75.17721599999999 64.46470599999998) (-75.15139799999992 64.46026599999993) (-75.14611799999994 64.45721400000002) (-75.14416499999993 64.45304900000002) (-75.15055799999999 64.447205) (-75.15444899999994 64.44470200000006) (-75.19972199999995 64.42804000000007) (-75.20777900000002 64.42776500000002) (-75.21556099999998 64.42886400000003) (-75.22416699999991 64.43220500000007) (-75.29527299999995 64.46665999999999) (-75.32389799999999 64.48193400000008) (-75.33250399999997 64.49081400000011) (-75.34416199999993 64.49914600000011) (-75.34973100000002 64.50221300000004) (-75.38166799999999 64.51361100000003) (-75.40916400000003 64.5227660000001) (-75.47972099999993 64.53915399999994) (-75.49082900000002 64.53970300000009) (-75.56610099999995 64.54998800000004) (-75.66639699999996 64.56387300000011) (-75.693329 64.56999200000013) (-75.70388799999995 64.57276900000005) (-75.72138999999999 64.57916300000005) (-75.73693800000001 64.58610499999998) (-75.74722300000002 64.59443699999997) (-75.76362599999999 64.60498000000013) (-75.77389499999992 64.60832200000004) (-75.79695100000004 64.61219800000015) (-75.82417299999997 64.611649) (-75.84306300000003 64.6077580000001) (-75.84722899999991 64.60443099999998) (-75.837219 64.56137100000001) (-75.82362399999994 64.53581200000002) (-75.818893 64.53082300000005) (-75.80749500000002 64.52526900000004) (-75.729172 64.50305199999997) (-75.64472999999992 64.46887200000003) (-75.63944999999995 64.46527100000003) (-75.63055400000002 64.45721400000002) (-75.63166799999999 64.453598) (-75.63612399999994 64.44914200000005) (-75.641388 64.44802899999996) (-75.69665500000002 64.43942300000009) (-75.70834399999995 64.43775900000003) (-75.72778299999993 64.44247400000006) (-75.74694799999997 64.45304900000002) (-75.76583900000003 64.46527100000003) (-75.77305599999994 64.46748400000013) (-75.87471 64.48692300000005) (-75.89527900000002 64.48803700000002) (-75.90833999999995 64.48719800000003) (-75.92027300000001 64.484421) (-75.92250099999995 64.48109400000004) (-75.910553 64.47831700000012) (-75.87527499999999 64.47387700000013) (-75.85777299999995 64.46804800000007) (-75.72083999999995 64.38333100000006) (-75.71722399999999 64.37970000000001) (-75.718887 64.37441999999999) (-75.72332799999992 64.36970500000012) (-75.726944 64.36720300000002) (-75.83805799999999 64.36914100000001) (-75.86166400000002 64.37109399999991) (-75.95056199999993 64.39915500000001) (-76.04388399999999 64.36831700000005) (-76.25361599999997 64.35775799999999) (-76.26445000000001 64.31915300000003) (-76.214722 64.31498699999997) (-76.20556599999998 64.313309) (-76.19665500000002 64.31080600000007) (-76.18832399999985 64.30693100000008) (-76.18971299999993 64.301376) (-76.19721999999996 64.29693600000013) (-76.20584099999996 64.29470800000001) (-76.30055199999998 64.27886999999998) (-76.48472599999997 64.266663) (-76.493607 64.26860000000005) (-76.50306699999999 64.2752690000001) (-76.50695799999994 64.284424) (-76.50556899999992 64.289154) (-76.50361599999991 64.29109199999994) (-76.50250199999994 64.29525800000005) (-76.50666799999993 64.29748500000011) (-76.541382 64.30470300000007) (-76.591949 64.31053199999991) (-76.70584099999996 64.30081200000001) (-76.71945199999993 64.29664600000012) (-76.73388699999987 64.29054300000001) (-76.73666400000002 64.28581200000008) (-76.73889200000002 64.27638200000001) (-76.72166399999998 64.23831200000006) (-76.714722 64.23387099999997) (-76.70611599999995 64.23136900000009) (-76.68472299999996 64.22776800000003) (-76.67443800000001 64.22499099999993) (-76.66722099999993 64.22192400000006) (-76.660278 64.218323) (-76.65472399999993 64.20915200000002) (-76.65472399999993 64.19664000000006) (-76.65834000000001 64.18997200000007) (-76.66221599999994 64.18664600000005) (-76.67054699999994 64.18414300000006) (-76.84722899999997 64.23054500000012) (-76.9683379999999 64.25972000000002) (-77.13833599999998 64.28942900000004) (-77.27610800000002 64.2563780000001) (-77.29611199999994 64.25193800000005) (-77.32749899999999 64.24636799999996) (-77.351944 64.24386600000008) (-77.366104 64.24386600000008) (-77.37999000000002 64.2452550000001) (-77.38137799999998 64.246643) (-77.38221699999997 64.2494200000001) (-77.38137799999998 64.253601) (-77.37887599999993 64.25694300000009) (-77.43415800000002 64.320267) (-77.58833299999998 64.36831700000005) (-77.65222199999994 64.38804600000009) (-77.660278 64.38638300000002) (-77.664444 64.3836060000001) (-77.6658329999999 64.37692300000015) (-77.66471899999999 64.37414600000005) (-77.65888999999999 64.36499000000009) (-77.67971799999998 64.32110599999999) (-77.74722299999996 64.33776900000004) (-77.83138999999994 64.41249099999999) (-77.97027600000001 64.45443699999993) (-78.17805499999997 64.56749000000008) (-78.18331899999993 64.57249500000012) (-78.16857899999997 64.62619799999993) (-78.160553 64.69053600000007) (-78.18443300000001 64.73109399999998) (-78.07362399999994 64.81359900000012) (-78.064438 64.84942600000005) (-78.06527699999987 64.85359199999999) (-78.06639100000001 64.85582000000011) (-78.07362399999994 64.859421) (-78.10249299999998 64.86886600000003) (-78.11721799999992 64.876083) (-78.120834 64.88108800000003) (-78.12971500000003 64.89387500000004) (-78.146118 64.938309) (-78.148056 64.94386299999996) (-78.14973399999997 64.95220900000004) (-78.14527900000002 64.95748900000012) (-77.973053 65.04136699999998) (-77.67971799999998 65.12330600000001) (-77.54361 65.1397090000001) (-77.50306699999993 65.138596) (-77.48832699999991 65.13943499999993) (-77.47972099999998 65.14109800000006) (-77.34472699999998 65.17330900000013) (-77.32861299999996 65.17886400000003) (-77.32278399999996 65.18331900000004) (-77.31582599999996 65.19053600000001) (-77.31304899999998 65.19581600000004) (-77.31555200000003 65.1994170000001) (-77.3824919999999 65.2474820000001) (-77.39723200000003 65.25499000000013) (-77.42277499999994 65.26443500000005) (-77.44471699999991 65.27554300000003) (-77.49804699999999 65.30664100000001) (-77.51306199999993 65.31887799999998) (-77.515015 65.32582099999996) (-77.51222200000001 65.33055100000001) (-77.471115 65.37136800000002) (-77.466949 65.37525900000009) (-77.46112099999988 65.37914999999998) (-77.45249899999988 65.38081399999999) (-77.43804899999992 65.37970000000001) (-77.41361999999998 65.37164300000006) (-77.40249599999999 65.36914100000013) (-77.3458399999999 65.35859700000009) (-77.337784 65.35748300000012) (-77.32305899999994 65.35775799999993) (-77.30610699999994 65.35971100000006) (-77.295547 65.36192299999993) (-77.29194599999994 65.36387600000006) (-77.28750599999995 65.367752) (-77.287216 65.37525900000009) (-77.28999299999992 65.37886000000015) (-77.29527300000001 65.38333100000006) (-77.319458 65.393326) (-77.32695000000001 65.39553800000004) (-77.341949 65.40165700000006) (-77.36749299999991 65.4124910000001) (-77.39862099999993 65.42665100000005) (-77.42027299999995 65.43997200000001) (-77.42832900000002 65.44775400000015) (-77.43443299999996 65.45694000000009) (-77.43055699999991 65.45887800000003) (-77.42166099999997 65.46138000000008) (-77.385559 65.46804800000007) (-77.33667000000003 65.47137500000002) (-77.26528899999988 65.47192399999994) (-77.23805199999993 65.46943700000008) (-77.154449 65.44581599999998) (-77.13473499999998 65.43942300000003) (-77.12443499999989 65.434143) (-77.11582899999996 65.42970300000013) (-77.11166399999996 65.426086) (-77.11111499999993 65.42137100000014) (-77.10638399999999 65.41360500000008) (-77.09944200000001 65.40914900000001) (-77.08666999999997 65.40721100000007) (-76.962784 65.40721100000007) (-76.956955 65.41053799999997) (-76.95249899999999 65.41499300000004) (-76.95611600000001 65.42137100000014) (-76.95556599999998 65.42275999999998) (-76.95167500000002 65.42526200000003) (-76.94444299999998 65.42776500000002) (-76.920837 65.42942800000014) (-76.84999099999999 65.42831399999994) (-76.82472200000001 65.42526200000003) (-76.62693799999994 65.39888000000013) (-76.36193799999995 65.34220900000003) (-76.23500100000001 65.31275900000014) (-76.164444 65.29609700000015) (-76.07250999999991 65.27720599999992) (-75.96665999999999 65.25582900000012) (-75.953888 65.25526400000007) (-75.92527799999993 65.25721700000003) (-75.92027300000001 65.258331) (-75.91221599999994 65.25721700000003) (-75.89834599999995 65.25387599999999) (-75.80555699999996 65.22970599999996) (-75.78555299999994 65.22442600000011) (-75.76916499999999 65.21887200000009) (-75.76501499999989 65.21666000000005) (-75.76000999999991 65.21081500000014) (-75.741379 65.17387400000001) (-75.73998999999992 65.16832) (-75.57084700000001 65.12081899999993) (-75.52861000000001 65.10887100000008) (-75.47500600000001 65.08610500000009) (-75.46665999999999 65.08221400000002) (-75.45722999999992 65.07470700000005) (-75.44694500000003 65.06581100000011) (-75.42805499999997 65.04832499999998) (-75.42443800000001 65.04386900000009) (-75.41055299999994 65.0247040000001) (-75.41555799999998 64.97747800000008) (-75.42027300000001 64.97221400000006) (-75.42805499999997 64.968323) (-75.49694799999997 64.94053600000007) (-75.50723299999999 64.938309) (-75.51916499999993 64.93691999999999) (-75.53361499999994 64.93691999999999) (-75.55722000000003 64.94026200000013) (-75.63473499999992 64.94720500000011) (-75.65444899999994 64.94636500000007) (-75.66305499999993 64.9452510000001) (-75.66749600000003 64.94081100000005) (-75.601944 64.86775200000005) (-75.59416199999998 64.86025999999993) (-75.5875089999999 64.85664400000007) (-75.56806899999998 64.85054000000002) (-75.55555700000002 64.84860200000008) (-75.46139499999992 64.811646) (-75.38917500000002 64.73609900000002) (-75.37304699999999 64.7149960000001) (-75.31666599999994 64.71943700000003) (-75.30833399999989 64.72109999999998) (-75.29818699999998 64.72576900000013) (-75.29472399999997 64.72804300000013) (-75.29138199999989 64.73387100000008) (-75.289444 64.73997500000007) (-75.29138199999989 64.74443100000002) (-75.30221599999993 64.75109900000001) (-75.31054699999993 64.75499000000008) (-75.32972699999999 64.76110799999998) (-75.33389299999999 64.76332100000013) (-75.34416199999993 64.77221700000007) (-75.37388599999991 64.83305400000012) (-75.35722399999992 64.8977660000001) (-75.422775 64.89027399999998) (-75.45167500000002 64.87525900000003) (-75.46083099999998 64.87164300000012) (-75.46972700000003 64.86943100000008) (-75.55749499999996 64.87414600000011) (-75.56332399999997 64.87719700000014) (-75.56555200000003 64.87942500000008) (-75.56750499999998 64.88360599999999) (-75.56527699999998 64.88693200000006) (-75.47389199999992 64.93580600000001) (-75.390289 64.97943099999998) (-75.38473499999998 64.98193400000014) (-75.3760989999999 64.98332200000004) (-75.36305199999998 64.98414600000001) (-75.35333299999996 64.98359700000009) (-75.34416199999993 64.9810940000001) (-75.335556 64.97776800000008) (-75.26417500000002 64.96609500000005) (-75.19610599999999 65.06860400000011) (-75.18916300000001 65.07971200000009) (-75.18554699999987 65.09136999999993) (-75.18693499999995 65.101654) (-75.19249000000002 65.10554500000006) (-75.19665500000002 65.10720799999996) (-75.21250899999995 65.10942100000011) (-75.22555499999999 65.10942100000011) (-75.24082899999996 65.10832199999993) (-75.25917099999998 65.10220300000009) (-75.26362599999999 65.0977630000001) (-75.26556399999993 65.09165999999999) (-75.26251200000002 65.08055100000007) (-75.26000999999985 65.07276900000011) (-75.261124 65.05914299999995) (-75.26306199999993 65.05219999999997) (-75.27999899999998 65.03526299999999) (-75.29972799999996 65.0247040000001) (-75.34861799999993 65.00387600000005) (-75.36000100000001 65.00387600000005) (-75.36749299999997 65.0063780000001) (-75.37304699999999 65.00943000000001) (-75.37887599999999 65.01666300000005) (-75.379166 65.02137800000008) (-75.38110399999994 65.02581800000007) (-75.40249599999987 65.0558170000001) (-75.41000399999996 65.063873) (-75.42555199999998 65.07720899999993) (-75.44137599999999 65.089157) (-75.44804399999998 65.09414700000002) (-75.51640299999985 65.138596) (-75.72805800000003 65.22415199999995) (-75.76194799999996 65.23776200000003) (-75.78167699999995 65.24304200000012) (-75.835556 65.25526400000007) (-75.86416600000001 65.258331) (-75.89056399999998 65.26915000000008) (-75.93971299999998 65.29248000000001) (-75.94387799999998 65.29525799999999) (-75.95083599999998 65.3163760000001) (-75.950287 65.31832900000006) (-75.941101 65.32138099999997) (-75.93110699999988 65.32222000000013) (-75.904449 65.32222000000013) (-75.87388599999991 65.3205410000001) (-75.85777299999995 65.31915300000003) (-75.60305799999998 65.29553199999992) (-75.59222399999993 65.28720100000004) (-75.57556199999993 65.27804600000002) (-75.5663909999999 65.27499400000005) (-75.55526700000001 65.27360500000009) (-75.495834 65.26915000000008) (-75.48443599999996 65.26832600000012) (-75.21194500000001 65.25054900000003) (-75.18666100000002 65.25193800000005) (-75.153885 65.25694300000009) (-75.114441 65.26638799999995) (-75.10166900000002 65.27137800000003) (-75.09388699999994 65.27499400000005) (-75.083618 65.28610200000008) (-75.08167999999989 65.29220600000008) (-75.07084700000001 65.33027600000003) (-75.09083599999991 65.355545) (-75.10916099999986 65.37997400000012) (-75.11082499999998 65.38472000000007) (-75.11111499999998 65.38888500000007) (-75.11054999999993 65.391098) (-75.10804699999994 65.39305100000013) (-75.097778 65.39498900000007) (-75.08277899999996 65.39498900000007) (-74.82362399999994 65.37747200000007) (-74.660553 65.34637499999997) (-74.64584400000001 65.3413700000001) (-74.63500999999997 65.338593) (-74.62416100000002 65.33665500000006) (-74.58944699999995 65.33248900000012) (-74.54666099999992 65.33137499999998) (-74.52444500000001 65.33332800000011) (-74.508621 65.33665500000006) (-74.49694799999997 65.34082000000006) (-74.35777300000001 65.39860499999998) (-74.34783899999996 65.40718100000004) (-74.32389799999999 65.43775900000003) (-74.31889299999995 65.447205) (-74.31527699999998 65.45803799999999) (-74.31138599999991 65.46388200000001) (-74.18277 65.52526900000004) (-74.10583500000001 65.53498800000006) (-73.84527600000001 65.53221100000013) (-73.791382 65.524429) (-73.76777600000003 65.52082800000011) (-73.74722299999996 65.51748700000007) (-73.73693799999995 65.5147090000001) (-73.73277299999995 65.511932) (-73.73138399999993 65.50694300000004) (-73.73083500000001 65.50416600000011) (-73.73500100000001 65.50166299999995) (-73.74027999999998 65.49693300000013) (-73.74082900000002 65.49081400000011) (-73.73693799999995 65.48776199999998) (-73.71167000000003 65.47109999999998) (-73.70306399999993 65.4669340000001) (-73.69415299999991 65.46443200000004) (-73.66389500000002 65.45694000000009) (-73.65139799999997 65.45471199999992) (-73.64111300000002 65.45526100000006) (-73.5599979999999 65.46249400000005) (-73.50056499999994 65.47442600000005) (-73.56361400000003 65.56219499999997) (-73.61833200000001 65.61970500000007) (-73.66221599999994 65.65859999999998) (-73.68415799999991 65.71527100000009) (-73.68499799999995 65.730545) (-73.70472699999993 65.75804100000005) (-73.70973199999992 65.762497) (-73.72055099999989 65.76944000000015) (-73.81082199999997 65.81109600000013) (-73.84111000000001 65.81999200000007) (-73.88417099999998 65.82193000000001) (-73.886124 65.82138100000003) (-73.92361499999998 65.82443200000006) (-73.93167099999994 65.82554600000003) (-73.94249000000002 65.82832300000013) (-74.01194799999996 65.85470599999991) (-74.02917499999995 65.86192300000005) (-74.05804399999994 65.87553400000002) (-74.12943999999999 65.92469799999998) (-74.258896 66.00166300000006) (-74.29695099999998 66.01832600000012) (-74.337784 66.03665200000012) (-74.37388599999997 66.05386399999998) (-74.38806199999993 66.06164600000011) (-74.42555199999993 66.08471700000013) (-74.44499200000001 66.09693900000008) (-74.45556599999986 66.10582000000005) (-74.47138999999999 66.12719700000008) (-74.47277799999995 66.13304100000005) (-74.47250400000001 66.13916000000012) (-74.47000099999997 66.14582800000005) (-74.46611000000001 66.1519320000001) (-74.44665500000002 66.1685940000001) (-74.43443299999996 66.178314) (-74.406113 66.19581600000004) (-74.36665299999993 66.21415700000006) (-74.34222399999999 66.22526600000009) (-74.31639099999995 66.23525999999993) (-74.30665599999998 66.238876) (-74.18721 66.26971399999996) (-74.07778899999994 66.30081200000001) (-73.86082499999992 66.38832100000008) (-73.74499500000002 66.43775900000003) (-73.66610700000001 66.47192400000012) (-73.60665899999998 66.49525499999999) (-73.52999899999998 66.52276600000005) (-73.460556 66.54443400000014) (-73.44415300000003 66.55108600000005) (-73.43055699999991 66.55831900000004) (-73.42027299999995 66.57165500000002) (-73.41833500000001 66.57971199999997) (-73.41833500000001 66.58471700000001) (-73.41639699999996 66.58998100000002) (-73.40028399999994 66.61164900000011) (-73.39695699999999 66.61554000000001) (-73.37971499999998 66.63247700000005) (-73.351944 66.64999400000005) (-73.32833900000003 66.6602630000001) (-73.29638699999998 66.66581700000006) (-73.26722699999999 66.6727600000001) (-73.10861199999994 66.72331199999996) (-73.00111400000003 66.81553600000012) (-72.87388599999997 66.93193099999996) (-72.85249299999998 66.9685970000001) (-72.837784 66.99803199999997) (-72.83138999999989 67.01332100000008) (-72.83111599999995 67.01832600000012) (-72.82806399999993 67.02499400000005) (-72.82417299999997 67.0294340000001) (-72.80665599999992 67.03720100000004) (-72.79167199999995 67.04332000000005) (-72.73889199999991 67.06303400000002) (-72.71665999999993 67.06860400000005) (-72.68499799999995 67.076096) (-72.62609900000001 67.08471700000013) (-72.55082700000003 67.082764) (-72.52583299999998 67.08332800000011) (-72.46417200000002 67.08998100000008) (-72.43110699999994 67.09609999999992) (-72.39944500000001 67.10359200000005) (-72.368607 67.11248799999998) (-72.35139499999997 67.11970500000012) (-72.337784 67.12637300000006) (-72.31555200000003 67.1394350000001) (-72.28250100000002 67.16110200000014) (-72.27610800000002 67.16693099999998) (-72.2583469999999 67.24803199999991) (-72.28694200000001 67.29081700000006) (-72.36361699999998 67.353317) (-72.43638599999991 67.47221400000012) (-72.48111 67.609711) (-72.48582499999992 67.62303199999997) (-72.49082900000002 67.62831100000011) (-72.49749799999995 67.63304099999993) (-72.508896 67.63638300000008) (-72.597778 67.6397090000001) (-72.66639699999996 67.68414300000006) (-72.67639199999996 67.69386299999996) (-72.67777999999998 67.69941699999998) (-72.67500299999995 67.70526099999995) (-72.66888399999993 67.71054100000003) (-72.66166699999991 67.71470600000004) (-72.61389200000002 67.73525999999998) (-72.59695399999993 67.740814) (-72.59194899999989 67.74331699999999) (-72.58332799999988 67.75027499999999) (-72.60888699999998 67.78581200000008) (-72.612503 67.79026800000003) (-72.61944599999993 67.79470800000001) (-72.73500100000001 67.84165999999993) (-72.82000700000003 67.85108900000012) (-72.833328 67.84999100000005) (-72.84388699999994 67.85081500000001) (-72.84805299999994 67.8535920000001) (-72.94221500000003 67.92526200000009) (-72.94444299999998 67.92804000000007) (-72.94499200000001 67.93081699999999) (-72.94387799999987 67.93775900000009) (-72.94249000000002 67.94108599999998) (-72.92999299999997 67.94886799999995) (-72.92277499999994 67.95277400000003) (-72.90417500000001 67.95971700000001) (-72.90249599999993 67.96388200000001) (-72.89611799999994 68.01416) (-72.910553 68.05415300000004) (-72.91389500000002 68.06080600000001) (-72.94110099999995 68.07832300000007) (-72.956955 68.09498600000012) (-72.98111 68.13916000000006) (-72.99276700000001 68.19859300000007) (-72.99388099999999 68.21220400000004) (-73.16111799999999 68.22886699999992) (-73.19027699999992 68.24887100000007) (-73.189438 68.25471500000003) (-73.18998699999992 68.25943000000007) (-73.19471699999997 68.26527400000009) (-73.20083599999998 68.26971400000014) (-73.21556099999992 68.27276600000005) (-73.27111799999989 68.28193699999997) (-73.30332899999996 68.27843499999994) (-73.31449900000001 68.27843499999994) (-73.33667000000003 68.27560400000004) (-73.355186 68.26783) (-73.395554 68.25860599999993) (-73.49610899999993 68.27554299999997) (-73.41000400000001 68.31080600000013) (-73.39916999999997 68.31498700000003) (-73.35467499999993 68.32921599999997)) ((-124.43055699999996 73.8785860000001) (-124.45028699999995 73.8785860000001) (-124.46721600000001 73.8808140000001) (-124.515289 73.89498900000001) (-124.53666699999991 73.90248099999991) (-124.546112 73.90664700000002) (-124.55055199999998 73.91220100000004) (-124.55277999999993 73.91693100000003) (-124.53056299999997 73.91748000000001) (-124.5133439999999 73.91665600000005) (-124.43250299999994 73.91276600000003) (-124.42027300000001 73.90914900000007) (-124.41583300000002 73.90498400000007) (-124.40888999999993 73.90026900000004) (-124.40943899999996 73.89332600000006) (-124.42027300000001 73.882477) (-124.43055699999996 73.8785860000001)) ((-99.80455799999993 73.8890990000001) (-99.73277300000001 73.8499910000001) (-99.71362299999987 73.84637500000002) (-99.58972199999988 73.8377690000001) (-99.53138699999994 73.83194000000009) (-99.49388099999999 73.82582100000008) (-99.48028599999998 73.82193000000001) (-99.2350009999999 73.73776199999992) (-99.115005 73.74859600000002) (-98.97193900000002 73.75054899999992) (-98.82917799999996 73.75166300000012) (-98.756393 73.75610400000005) (-98.71665999999999 73.76666300000005) (-98.68832399999997 73.77201800000012) (-98.641953 73.77720600000004) (-98.51444999999995 73.78749099999999) (-98.42443799999995 73.7935940000001) (-98.29083299999996 73.80165100000005) (-98.20722999999992 73.80525200000011) (-98.19055200000003 73.80358899999999) (-98.17999299999991 73.80415299999993) (-98.13417099999987 73.80970800000006) (-98.09500099999997 73.81553600000012) (-98.07167099999992 73.81944300000009) (-97.976944 73.84275800000006) (-97.96028100000001 73.84693899999996) (-97.94833399999999 73.851654) (-97.9430539999999 73.85693400000008) (-97.94276399999995 73.86276200000003) (-97.94137599999999 73.86804200000006) (-97.93638599999991 73.87831100000011) (-97.91833500000001 73.89027399999998) (-97.90834000000001 73.89471400000014) (-97.88751200000002 73.899429) (-97.80526700000001 73.91110200000003) (-97.78805499999999 73.91276600000003) (-97.76194800000002 73.911926) (-97.58195499999994 73.89387500000004) (-97.56277499999999 73.89082300000007) (-97.54472399999992 73.88610800000004) (-97.52917500000001 73.87970000000007) (-97.52084400000001 73.87387100000007) (-97.51417500000002 73.86775200000005) (-97.50028999999995 73.86192300000005) (-97.47138999999999 73.85775800000005) (-97.456955 73.85775800000005) (-97.39973399999991 73.85887100000014) (-97.35777299999995 73.8624880000001) (-97.34584000000001 73.86499000000015) (-97.32749899999999 73.86581400000011) (-97.26028400000001 73.8602600000001) (-97.22361799999993 73.85636900000003) (-96.97250400000001 73.74414100000001) (-96.96221899999989 73.73858600000011) (-96.95584100000002 73.73248299999995) (-96.93721 73.70359800000011) (-96.93277 73.69220000000007) (-96.93472300000002 73.68692000000004) (-96.96389799999997 73.63998399999997) (-96.968613 73.633331) (-96.98889199999996 73.62469500000009) (-97.00195300000001 73.6202550000001) (-97.18499800000001 73.56219499999997) (-97.20249899999993 73.55720500000012) (-97.43611099999993 73.52554299999997) (-97.62388599999986 73.53887900000012) (-97.63806199999993 73.53858900000012) (-97.64111299999996 73.53359999999992) (-97.66833500000001 73.48332199999999) (-97.66749600000003 73.47943100000009) (-97.66305499999993 73.4727630000001) (-97.65472399999993 73.4669340000001) (-97.63833599999998 73.4602660000001) (-97.62332199999997 73.45637500000004) (-97.60722399999997 73.45471199999997) (-97.579453 73.45498700000013) (-97.56277499999999 73.45915200000013) (-97.53416399999998 73.47387700000007) (-97.52223200000003 73.4785920000001) (-97.50389100000001 73.48304699999994) (-97.43721 73.49192800000009) (-97.41722099999998 73.49331700000005) (-97.401947 73.49304200000006) (-97.23222399999992 73.47442600000005) (-97.19721999999996 73.46971100000002) (-97.18305999999995 73.46499599999999) (-97.17222599999997 73.4602660000001) (-97.16610699999995 73.454163) (-97.15722699999992 73.39553800000004) (-97.150284 73.38998400000003) (-97.16944899999999 73.35664399999996) (-97.17193599999996 73.35276800000008) (-97.18388399999992 73.35054000000014) (-97.20750399999997 73.3483280000001) (-97.2369379999999 73.34860200000003) (-97.24305700000002 73.35470600000002) (-97.37554899999992 73.34721400000012) (-97.64500399999986 73.31805400000002) (-97.660278 73.3160860000001) (-97.70861799999994 73.30470300000007) (-97.84138499999989 73.27331500000008) (-97.84445199999999 73.26832600000012) (-97.84805299999994 73.2544400000001) (-97.847778 73.24942000000004) (-97.84861799999999 73.24498000000006) (-97.86250299999989 73.23387100000014) (-97.983612 73.1810910000001) (-98.02917500000001 73.16526800000008) (-98.07667499999997 73.15138200000013) (-98.112503 73.14248700000007) (-98.15167200000002 73.13108799999998) (-98.202789 73.11053500000008) (-98.22277799999995 73.09999100000005) (-98.22999600000003 73.09082000000012) (-98.23138399999988 73.08554100000015) (-98.23500100000001 73.07971199999992) (-98.24082900000002 73.0752720000001) (-98.319458 73.05053700000008) (-98.36582900000002 73.03776600000015) (-98.450287 73.02026400000011) (-98.45916699999992 72.99331699999999) (-98.45361300000002 72.89860500000009) (-98.45056199999999 72.8749850000001) (-98.445831 72.86581400000011) (-98.43859899999995 72.86053500000014) (-98.42805499999992 72.85609400000004) (-98.41999800000002 72.85859700000003) (-98.41332999999997 72.86415100000005) (-98.40333599999997 72.88136300000002) (-98.40333599999997 72.88720700000005) (-98.40583800000002 72.891663) (-98.402222 72.89749100000006) (-98.39778099999995 72.90277100000014) (-98.38806199999999 72.90803499999993) (-98.26640299999985 72.97276300000004) (-98.25500499999993 72.97747800000008) (-98.22721899999988 72.98748799999998) (-98.176941 72.99859600000013) (-97.99499499999996 73.0374910000001) (-97.98055999999997 73.03970299999997) (-97.86416600000001 73.04748500000011) (-97.84695399999998 73.04859899999991) (-97.68443300000001 73.03305100000011) (-97.66833500000001 73.03137200000009) (-97.52749599999999 73.01138300000014) (-97.44248999999996 72.999146) (-97.29972800000002 72.96971100000013) (-97.28332499999999 72.96388200000007) (-97.22972099999998 72.943039) (-97.22500600000001 72.93997200000013) (-97.25805699999995 72.88360599999999) (-97.26640299999997 72.87858599999998) (-97.265289 72.84887700000013) (-97.20361300000002 72.82582100000008) (-97.08167999999995 72.77998400000007) (-97.03028899999998 72.74136400000009) (-97.023056 72.73220800000013) (-97.023056 72.72720300000009) (-97.02972399999999 72.71665999999993) (-97.079453 72.70193499999999) (-97.10583499999996 72.69636500000013) (-97.13444499999991 72.68830900000006) (-97.16111799999999 72.67804000000001) (-97.17054699999989 72.67359900000008) (-97.17944299999999 72.66748000000007) (-97.18305999999995 72.66192600000005) (-97.19027699999998 72.64054900000002) (-97.19833399999993 72.609985) (-97.19665500000002 72.60443099999998) (-97.185272 72.6019290000001) (-97.16555799999992 72.60165400000011) (-97.09056099999998 72.60525499999994) (-97.08100899999994 72.60592700000012) (-97.07028200000002 72.60859700000009) (-97.04277000000002 72.62330600000013) (-97.03582799999998 72.62886000000015) (-97.00556899999987 72.64471400000002) (-96.98222399999997 72.65525800000012) (-96.96888699999994 72.66026299999999) (-96.91555800000003 72.67858899999999) (-96.61193800000001 72.74693300000007) (-96.51750199999992 72.71470600000009) (-96.52194199999991 72.67442300000005) (-96.45973199999992 72.6077580000001) (-96.40527299999997 72.55941800000011) (-96.37471 72.53442400000012) (-96.33694500000001 72.50082400000002) (-96.32556199999999 72.48831200000006) (-96.30221599999993 72.43386800000002) (-96.29750100000001 72.42164600000001) (-96.29833999999994 72.415817) (-96.53860500000002 72.34332300000005) (-96.66833500000001 72.309708) (-96.69694500000003 72.31053199999997) (-96.73889200000002 72.32110599999999) (-96.77639799999997 72.32331800000003) (-96.83139 72.32360800000004) (-96.86833200000001 72.32193000000012) (-96.87193299999996 72.32110599999999) (-96.86444099999994 72.31776400000007) (-96.771118 72.29887400000007) (-96.66888399999988 72.27915999999999) (-96.57833900000003 72.278595) (-96.56111099999998 72.27554300000003) (-96.554169 72.26388500000002) (-96.48721299999988 72.13610800000004) (-96.48500100000001 72.129974) (-96.48306299999996 72.11303700000002) (-96.487503 72.101654) (-96.49833699999994 72.09027099999997) (-96.50834699999996 72.08499100000012) (-96.52111799999994 72.07998700000013) (-96.537216 72.07499700000011) (-96.55722000000003 72.07193000000001) (-96.72166399999992 72.05276500000002) (-96.77305599999994 72.05304000000007) (-96.789444 72.05220000000003) (-96.86694299999999 72.04109199999999) (-96.853882 72.03637699999996) (-96.828888 72.030823) (-96.67250100000001 72.01277199999998) (-96.63500999999997 72.01388500000007) (-96.61805700000002 72.018326) (-96.60916099999992 72.02415500000001) (-96.60055499999999 72.02777100000003) (-96.56777999999997 72.03360000000009) (-96.52111799999994 72.03887900000007) (-96.50195300000001 72.03858900000006) (-96.48860199999996 72.034988) (-96.48999000000003 72.018326) (-96.49082900000002 72.01220699999999) (-96.49305699999996 72.00109899999995) (-96.502228 71.97554000000014) (-96.50584399999997 71.96971100000013) (-96.51278699999989 71.96443199999999) (-96.52250699999996 71.95915200000007) (-96.55444299999994 71.949142) (-96.56555200000003 71.94693000000012) (-96.57389799999999 71.94831800000003) (-96.589447 71.95443700000004) (-96.60278299999999 71.9580380000001) (-96.61749299999991 71.95999100000006) (-96.63833599999998 71.95748899999995) (-96.73332199999993 71.92886399999998) (-96.74916099999996 71.92387400000007) (-96.76194799999996 71.91859400000004) (-96.76445000000001 71.91499299999998) (-96.76139799999993 71.90971400000001) (-96.74972500000001 71.90304600000002) (-96.73638900000003 71.89942900000005) (-96.72416699999997 71.89860500000009) (-96.70083599999992 71.8999940000001) (-96.64527899999996 71.91748000000001) (-96.60722399999997 71.92692599999998) (-96.56555200000003 71.93220500000001) (-96.52278100000001 71.93441800000011) (-96.50917099999992 71.93304400000011) (-96.50389099999995 71.93165600000003) (-96.49166899999989 71.92608599999994) (-96.49110399999995 71.91943400000008) (-96.49305699999996 71.914154) (-96.52583299999998 71.86886600000008) (-96.55776999999995 71.82943699999998) (-96.5708469999999 71.81944299999998) (-96.57972699999993 71.81498700000003) (-96.591949 71.81080599999996) (-96.61332700000003 71.80720500000012) (-96.72666899999996 71.79359399999993) (-96.74472000000003 71.79220600000002) (-96.73805199999998 71.824997) (-96.79138199999994 71.82777400000003) (-96.983612 71.77581799999996) (-97.01306199999999 71.74914600000005) (-97.08416699999992 71.7002720000001) (-97.16500899999994 71.67553700000008) (-97.21000699999996 71.66360500000008) (-97.43443300000001 71.617752) (-97.47055099999994 71.61248799999998) (-97.50500499999998 71.611649) (-97.65638699999994 71.61470000000003) (-97.69665500000002 71.61970500000007) (-97.71333299999998 71.62387100000001) (-97.72639500000002 71.628311) (-97.78721599999994 71.64414999999997) (-97.97471599999994 71.66081200000013) (-97.98805199999998 71.66192600000011) (-98.03527799999995 71.65332000000001) (-98.05332900000002 71.64833100000004) (-98.07278400000001 71.64166300000005) (-98.11277799999993 71.63693200000012) (-98.13110399999994 71.63804600000009) (-98.17887899999994 71.64166300000005) (-98.19665499999991 71.6436000000001) (-98.20750399999997 71.64610300000004) (-98.21806300000003 71.64971900000012) (-98.24082900000002 71.65971400000001) (-98.25279199999989 71.66609199999999) (-98.33111600000001 71.708328) (-98.34916699999991 71.71859700000005) (-98.3558349999999 71.7227630000001) (-98.35972599999997 71.72804300000001) (-98.35943600000002 71.73387100000008) (-98.333328 71.78749099999999) (-98.32556199999993 71.79832500000009) (-98.32139599999994 71.80331400000006) (-98.31527699999992 71.80914300000006) (-98.27917499999995 71.83471700000007) (-98.25917099999992 71.84471100000007) (-98.228882 71.86219800000009) (-98.21194499999996 71.87858599999998) (-98.20861799999994 71.88443000000001) (-98.20916699999998 71.88916) (-98.22193899999996 71.89498900000001) (-98.25527999999997 71.90248099999997) (-98.26722699999999 71.90415999999999) (-98.28277600000001 71.89915500000012) (-98.291382 71.89471400000002) (-98.45056199999999 71.79414399999996) (-98.46250899999995 71.78387499999997) (-98.47778299999993 71.76721200000009) (-98.48889200000002 71.74941999999999) (-98.49749799999995 71.73332199999999) (-98.49749799999995 71.72164900000013) (-98.49388099999999 71.71388200000001) (-98.38137799999998 71.653595) (-98.36749299999991 71.647491) (-98.17999299999991 71.57193000000012) (-98.04138199999989 71.53082300000005) (-98.03750600000001 71.526657) (-98.120544 71.46054099999998) (-98.18083199999995 71.42359899999997) (-98.19804399999998 71.41470300000003) (-98.46611000000001 71.31330900000006) (-98.50556899999992 71.29914900000011) (-98.54138199999994 71.28942900000004) (-98.55471799999998 71.2872010000001) (-98.70167500000002 71.271927) (-98.72084000000001 71.26998900000007) (-98.72972099999993 71.27053800000004) (-98.75111400000003 71.27415499999995) (-98.81639099999995 71.28915400000005) (-98.829453 71.29386900000009) (-98.84472699999998 71.30554200000012) (-98.88221699999997 71.33387800000003) (-98.93832399999985 71.36914100000001) (-98.96028100000001 71.379974) (-98.978882 71.382477) (-98.995544 71.3827510000001) (-99.01472499999994 71.38165300000003) (-99.03443899999996 71.37886000000003) (-99.04277000000002 71.37441999999999) (-99.04554699999994 71.36859099999998) (-99.05139200000002 71.36303699999996) (-99.05972300000002 71.35859700000015) (-99.07749899999999 71.3535920000001) (-99.11582900000002 71.35054000000002) (-99.2208399999999 71.34220900000008) (-99.23805199999998 71.344986) (-99.28805499999987 71.40277100000009) (-99.31332399999997 71.43942300000009) (-99.46278399999994 71.59304800000001) (-99.52972399999999 71.605255) (-99.55860899999988 71.61303700000013) (-99.57417299999997 71.61970500000007) (-99.578888 71.62275700000004) (-99.59167500000001 71.635269) (-99.67639200000002 71.72526600000009) (-99.67777999999993 71.72915600000005) (-99.67721599999999 71.73692300000005) (-99.6744379999999 71.74275200000005) (-99.67304999999999 71.74914600000005) (-99.67388900000003 71.7538760000001) (-99.67639200000002 71.75860599999999) (-99.67832899999996 71.7605440000001) (-99.84222399999999 71.834991) (-99.95916699999998 71.85415599999993) (-99.97721899999999 71.85581999999994) (-100.05110200000001 71.865814) (-100.067497 71.87052900000003) (-100.10193599999997 71.88472000000002) (-100.31471299999993 71.97997999999995) (-100.3219529999999 71.98498500000005) (-100.33222999999998 71.99720800000006) (-100.33583099999993 72.00665300000014) (-100.579453 72.15443400000004) (-100.63445299999995 72.18553200000008) (-100.64417300000002 72.18830899999995) (-100.72000099999997 72.20166000000012) (-100.88527699999997 72.20776400000011) (-100.88999899999988 72.20748900000012) (-100.92388900000003 72.19941699999998) (-100.95140099999992 72.17109700000015) (-100.96777299999997 72.17414900000006) (-101.01334399999996 72.19108600000004) (-101.02084400000001 72.19636500000001) (-101.054169 72.23165899999992) (-101.05555700000002 72.236649) (-101.11776700000001 72.284424) (-101.19444299999998 72.324432) (-101.20861799999994 72.32971200000009) (-101.220551 72.33221400000014) (-101.23889200000002 72.33387799999997) (-101.27667200000002 72.32832300000007) (-101.32528699999995 72.31498699999997) (-101.395554 72.28692600000005) (-101.40416699999997 72.28137200000003) (-101.40972899999986 72.27554300000003) (-101.46945199999999 72.26554900000002) (-101.50917099999998 72.28305100000006) (-101.58556399999998 72.301376) (-101.63474299999996 72.30693100000008) (-101.65638699999994 72.30525200000005) (-101.66416900000002 72.30165099999999) (-101.672234 72.29275500000006) (-101.6849979999999 72.28776600000009) (-101.69444299999986 72.28804000000002) (-101.776947 72.29971300000005) (-101.83056599999992 72.31915300000003) (-101.84472699999992 72.324432) (-101.88834399999996 72.35859700000015) (-101.94167299999987 72.45193500000005) (-101.98131599999999 72.47811100000013) (-102.08033799999993 72.51600600000012) (-102.22222899999991 72.54220600000008) (-102.258621 72.54914900000006) (-102.37721299999998 72.57748400000008) (-102.46584299999995 72.60470600000002) (-102.6219329999999 72.66470300000015) (-102.73638899999992 72.719986) (-102.74166899999989 72.72415200000006) (-102.75583599999993 72.76138300000002) (-102.76471699999996 72.784988) (-102.76306199999999 72.790817) (-102.75306699999999 72.81109600000013) (-102.74944299999999 72.81721499999998) (-102.74305699999996 72.82249500000006) (-102.73500100000001 72.82609600000012) (-102.69860799999992 72.83665499999995) (-102.66361999999992 72.85331699999995) (-102.64666699999992 72.86442600000004) (-102.61277799999993 72.89665200000013) (-102.59722899999991 72.91360500000002) (-102.59361299999995 72.919983) (-102.59166699999997 72.92553699999996) (-102.59306300000003 72.93165600000003) (-102.59416199999998 72.94274899999999) (-102.593887 72.949142) (-102.59166699999997 72.95498700000007) (-102.576683 72.97970600000002) (-102.56304899999998 72.99108900000004) (-102.51306199999993 73.02609300000012) (-102.50110599999994 73.03054800000012) (-102.38806199999999 73.06275900000003) (-102.36805699999996 73.06749000000013) (-102.27610800000002 73.08248900000001) (-102.24694799999997 73.08387800000003) (-102.1372219999999 73.08692900000005) (-102.08444199999985 73.08415200000013) (-102.014183 73.07971199999992) (-101.97083999999995 73.07054099999999) (-101.88417099999992 73.0247040000001) (-101.81777999999991 72.9666600000001) (-101.810272 72.96054100000003) (-101.75527999999997 72.93054200000006) (-101.74109599999991 72.92414900000006) (-101.67527799999999 72.90971400000012) (-101.59528399999994 72.90220599999992) (-101.52166699999998 72.87831100000011) (-101.50974299999996 72.87164299999995) (-101.40444899999989 72.78248600000012) (-101.41332999999997 72.74832200000009) (-101.37249800000001 72.72720300000009) (-101.36665299999999 72.72526600000003) (-101.29750099999995 72.70999100000006) (-101.03333299999997 72.68969700000014) (-100.91583299999996 72.68803400000002) (-100.88221699999991 72.68969700000014) (-100.82778899999994 72.70582600000006) (-100.81945799999994 72.7102660000001) (-100.81220999999994 72.71554599999996) (-100.81194299999999 72.71971099999996) (-100.79833999999994 72.74359099999998) (-100.70722999999998 72.755829) (-100.53307299999994 72.75138900000002) (-100.50917099999992 72.74914600000005) (-100.49833699999994 72.74803200000008) (-100.47582999999997 72.742752) (-100.44803599999995 72.73553500000008) (-100.43443300000001 72.73692299999999) (-100.41221599999994 72.74192800000003) (-100.34973100000002 72.7705380000001) (-100.340843 72.77499399999999) (-100.33168 72.78054800000001) (-100.314438 72.79637100000002) (-100.31555199999997 72.80137600000006) (-100.35077699999994 72.85132600000009) (-100.35160799999994 72.85366099999999) (-100.35711699999996 72.8591540000001) (-100.46916199999998 72.95027200000004) (-100.48638899999992 72.949142) (-100.49889399999995 72.95054600000014) (-100.49973299999999 72.95637499999998) (-100.46305799999993 73.01470900000004) (-100.45194999999995 73.02053800000004) (-100.421944 73.03498799999994) (-100.36776700000001 73.04693600000002) (-100.35637700000001 73.04942300000005) (-100.34221600000001 73.04414400000007) (-100.31667299999992 73.03414900000001) (-100.30943299999996 73.02804600000007) (-100.31555199999997 73.02249099999995) (-100.34306300000003 73.01388500000007) (-100.3577729999999 73.01054400000004) (-100.38137799999998 72.949142) (-100.3289949999999 72.89137299999999) (-100.31732899999992 72.88887) (-100.285278 72.87359600000008) (-100.21721599999995 72.87664799999999) (-100.196663 72.87776200000002) (-100.09638999999993 72.88638300000008) (-100.06722999999994 72.90220599999992) (-100.031387 72.93498200000005) (-100.04750099999995 72.95721400000014) (-100.11277799999999 73.02581800000007) (-100.16972399999992 73.07859800000011) (-100.23222399999997 73.13443000000012) (-100.24445299999996 73.136932) (-100.25446299999999 73.13720699999999) (-100.28888699999993 73.13581800000003) (-100.32362399999994 73.13333100000011) (-100.345551 73.13026400000001) (-100.38249200000001 73.12275700000009) (-100.39138799999995 73.11831700000005) (-100.41443600000002 73.10470600000008) (-100.44275699999997 73.08720400000004) (-100.51862299999993 73.0977630000001) (-100.58667000000003 73.1327510000001) (-100.60193599999997 73.14082300000007) (-100.60777300000001 73.14637800000014) (-100.58612099999999 73.16748000000013) (-100.58000199999987 73.17303500000003) (-100.49082900000002 73.23081999999994) (-100.40666199999987 73.28027300000008) (-100.39778100000001 73.28471399999995) (-100.37832600000002 73.28997800000013) (-100.36110699999995 73.29026799999997) (-100.28138699999994 73.27915999999999) (-100.1347429999999 73.22110000000004) (-100.05332899999996 73.18637100000001) (-100.03751399999999 73.18386800000002) (-100.021118 73.18304400000005) (-100.00418099999996 73.1833190000001) (-99.84111000000001 73.19136000000015) (-99.80166600000001 73.19552600000003) (-99.77166699999998 73.20109600000012) (-99.77027899999996 73.20387300000004) (-99.77166699999998 73.20803800000004) (-99.78639199999992 73.21249399999994) (-99.81193499999995 73.21554600000007) (-99.84944200000001 73.21527100000003) (-99.886124 73.21331800000007) (-99.92582700000003 73.21499600000004) (-99.945267 73.21666000000005) (-99.96444699999995 73.21943699999997) (-100.07749899999999 73.25138900000007) (-100.09500100000002 73.25721700000003) (-100.15915699999994 73.28942899999998) (-100.19943199999994 73.31860400000005) (-100.27223199999992 73.35859700000009) (-100.32362399999994 73.3836060000001) (-100.33332799999994 73.38832100000013) (-100.358047 73.393326) (-100.37389399999995 73.39582800000005) (-100.38417099999987 73.39637800000008) (-100.38806199999993 73.39553800000004) (-100.4058379999999 73.36137400000001) (-100.387787 73.338593) (-100.56166099999996 73.28665200000012) (-100.583618 73.28359999999998) (-100.823059 73.26081800000009) (-100.84056099999992 73.25972000000002) (-100.88945000000001 73.26443500000005) (-100.97749299999998 73.28027300000008) (-101.30499299999991 73.36164900000006) (-101.31276700000001 73.37109400000008) (-101.311394 73.38275100000004) (-101.31054699999999 73.39248700000002) (-101.311394 73.39833100000004) (-101.31723 73.40165700000006) (-101.47055099999994 73.43609600000013) (-101.55832700000002 73.44664) (-101.58084099999996 73.4502720000001) (-101.61665299999993 73.4852600000001) (-101.62138400000003 73.49026500000014) (-101.44055200000003 73.54914900000006) (-101.42748999999992 73.55220000000008) (-101.40083299999992 73.55358900000004) (-101.31582599999996 73.55081199999995) (-101.2808379999999 73.55247500000007) (-101.26888999999994 73.55609099999992) (-101.25974300000001 73.56164600000005) (-101.25527999999997 73.56776399999995) (-101.25222799999995 73.57887300000004) (-101.25306699999993 73.584991) (-101.25110599999994 73.58970600000004) (-101.24194299999994 73.59526100000011) (-101.23082699999998 73.60026600000015) (-101.21721600000001 73.60415599999993) (-101.199432 73.60554500000012) (-100.92639200000002 73.60026600000015) (-100.90943900000002 73.59971600000011) (-100.890289 73.59610000000009) (-100.87748699999997 73.59027100000003) (-100.77084400000001 73.53997800000008) (-100.71749899999992 73.50915500000008) (-100.70667299999997 73.49942000000004) (-100.70221699999996 73.49443100000008) (-100.70140100000003 73.48858599999994) (-100.69721999999996 73.482483) (-100.69110099999995 73.47692900000004) (-100.67278299999998 73.46443200000004) (-100.51834099999996 73.41693099999998) (-100.49973299999999 73.41249099999993) (-100.46472199999988 73.40721100000007) (-100.44444299999992 73.40637200000009) (-100.43055700000002 73.40693699999997) (-100.41722099999998 73.41331500000007) (-100.41500899999994 73.41804500000012) (-100.42971799999998 73.43026700000007) (-100.45500199999998 73.44192499999997) (-100.484734 73.45193500000005) (-100.50279199999989 73.45748900000001) (-100.531387 73.46609499999994) (-100.58389299999993 73.48220800000001) (-100.59221599999995 73.48637400000007) (-100.59861799999999 73.4910890000001) (-100.60611 73.49720799999994) (-100.61000099999995 73.50305200000014) (-100.610817 73.50915500000008) (-100.60804699999994 73.5149990000001) (-100.60388199999994 73.52110299999998) (-100.55915799999997 73.54609700000009) (-100.54387700000001 73.55636600000014) (-100.541382 73.56219499999997) (-100.54277000000002 73.57388300000002) (-100.54998799999993 73.59471100000007) (-100.55166600000001 73.59887699999996) (-100.573624 73.59664900000001) (-100.628601 73.593323) (-100.76750199999998 73.60386700000004) (-100.89167799999996 73.61998000000006) (-100.91139199999998 73.62275699999998) (-100.91194200000001 73.62525900000003) (-100.91139199999998 73.63053900000011) (-100.87943999999999 73.63581800000009) (-100.86472300000003 73.641663) (-100.86110699999995 73.645828) (-100.85360699999995 73.66220100000004) (-100.858047 73.66720599999991) (-100.97444199999995 73.67915300000004) (-100.99194299999999 73.67886399999998) (-101.03333299999997 73.67137100000014) (-101.04695099999998 73.67303500000014) (-101.057503 73.67665099999999) (-101.11833199999995 73.72331200000002) (-101.120003 73.72720300000009) (-101.01390100000003 73.79721100000006) (-100.9974979999999 73.80247500000002) (-100.98222399999997 73.80581699999999) (-100.95973199999997 73.809143) (-100.93804899999998 73.81025699999998) (-100.82861300000002 73.81553600000012) (-100.79527300000001 73.81248499999992) (-100.77583300000003 73.81219500000009) (-100.754997 73.81248499999992) (-100.73416099999997 73.81526200000002) (-100.714447 73.82026700000006) (-100.69915800000001 73.82609600000006) (-100.66416900000002 73.84498600000006) (-100.64835399999993 73.84832799999998) (-100.554169 73.85470599999996) (-100.52999899999998 73.85359199999994) (-100.41777000000002 73.84553499999998) (-100.39555399999995 73.84082000000012) (-100.38945000000001 73.83859300000006) (-100.370003 73.82804900000002) (-100.34999099999993 73.818604) (-100.33612099999993 73.81469700000002) (-100.06304899999998 73.76499900000005) (-99.86582899999996 73.8377690000001) (-99.85777300000001 73.84275800000006) (-99.87010999999995 73.86154199999999) (-99.86910999999992 73.86737099999999) (-99.86978099999993 73.87020100000001) (-99.87710599999991 73.87654100000003) (-99.88677199999995 73.8822100000001) (-99.89244099999996 73.88353699999993) (-99.96194499999996 73.87330600000007) (-99.97166399999998 73.86804200000006) (-99.98805199999993 73.85693400000008) (-99.99082900000002 73.851089) (-99.99749800000001 73.84553499999998) (-100.00834699999996 73.84136999999998) (-100.02639799999997 73.83692900000005) (-100.04943800000001 73.83276400000005) (-100.13667299999997 73.82748400000003) (-100.175003 73.82804900000002) (-100.24944299999993 73.83387800000003) (-100.26139799999993 73.83831800000007) (-100.29972799999996 73.8602600000001) (-100.29695100000004 73.86581400000011) (-100.29222099999993 73.872208) (-100.27860999999996 73.888596) (-100.26583900000003 73.89999400000005) (-100.252792 73.905258) (-100.24305700000002 73.907486) (-100.14306599999992 73.92997700000001) (-100.12721299999993 73.9333190000001) (-100.104446 73.93637100000001) (-100.03751399999999 73.94247399999995) (-99.98110999999994 73.9458160000001) (-99.93859900000001 73.94609100000008) (-99.89695699999999 73.94413800000001) (-99.85610999999989 73.94081100000005) (-99.81610099999995 73.93609600000002) (-99.80082700000003 73.93165599999998) (-99.80055199999993 73.92581200000001) (-99.81332399999997 73.92137100000008) (-99.80622099999994 73.90210000000002) (-99.81005899999997 73.89876600000002) (-99.81088999999997 73.8949280000001) (-99.80822799999999 73.89193700000004) (-99.80455799999993 73.8890990000001)) ((-89.98889200000002 73.98831200000012) (-90.00778199999996 73.984985) (-90.05804399999994 73.99247700000012) (-90.158615 74.00138900000013) (-90.21777299999997 74.00443999999999) (-90.25029 74.00999500000006) (-90.265015 74.01470899999998) (-90.28111299999989 74.02165199999996) (-90.28472899999991 74.0249940000001) (-90.28500399999996 74.02970900000014) (-90.27639799999986 74.038589) (-90.27111799999994 74.04332000000011) (-90.24055499999997 74.05386399999998) (-90.20611599999995 74.05775500000004) (-89.99194299999994 74.066666) (-89.97193900000002 74.06469700000014) (-89.94137599999999 74.05748) (-89.91444399999995 74.04748500000011) (-89.90194699999995 74.03776600000009) (-89.903885 74.03137200000009) (-89.91860999999994 74.01054399999998) (-89.92832900000002 74.00555400000013) (-89.98889200000002 73.98831200000012)) ((-98.91861 73.8060910000001) (-98.96166999999997 73.80525200000011) (-99.104172 73.81442300000009) (-99.14083899999991 73.81805400000013) (-99.36361699999992 73.86442600000004) (-99.38194299999992 73.86914100000007) (-99.42971799999992 73.89166299999994) (-99.43749999999994 73.89694199999991) (-99.43638599999997 73.90220600000009) (-99.42971799999992 73.9080350000001) (-99.42250100000001 73.91110200000003) (-99.406113 73.91526799999991) (-99.28250099999997 73.93691999999999) (-99.22389199999998 73.94026200000008) (-99.09277299999991 73.95220900000004) (-99.02027900000002 73.97970600000002) (-98.93804899999992 73.99859600000013) (-98.80166600000001 74.01805100000013) (-98.66194200000001 74.03137200000009) (-98.57583599999998 74.03137200000009) (-98.53250100000002 74.03221100000002) (-98.49194299999994 74.03414899999996) (-98.42527799999999 74.04386900000003) (-98.3558349999999 74.05748) (-98.27583299999992 74.07388300000008) (-98.25500499999993 74.07859800000011) (-98.23028599999998 74.08332799999994) (-98.17083699999995 74.09248400000007) (-98.03999299999998 74.10582000000005) (-97.99444599999993 74.10942100000011) (-97.80610699999988 74.11943100000002) (-97.75834699999996 74.11859099999998) (-97.737213 74.11747700000001) (-97.70361300000002 74.11387600000012) (-97.69082600000002 74.11137400000007) (-97.65360999999996 74.09999100000005) (-97.64805599999994 74.0977630000001) (-97.64222699999993 74.08720400000004) (-97.637787 74.07554600000003) (-97.63833599999998 74.063873) (-97.64944499999996 74.05247499999996) (-97.65666199999998 74.04693599999996) (-97.67332499999986 74.03553799999997) (-97.71722399999999 74.00972000000002) (-97.72805800000003 74.00416600000005) (-97.76362599999993 73.98831200000012) (-97.82305899999989 73.9685970000001) (-98.12416100000002 73.8785860000001) (-98.14500399999991 73.87359600000008) (-98.16833499999996 73.87081899999998) (-98.39277600000003 73.84526100000005) (-98.478882 73.8374940000001) (-98.777222 73.81359900000012) (-98.91861 73.8060910000001)) ((-92.63806199999988 74.10304300000013) (-92.36860699999994 74.04109199999999) (-92.35694899999999 74.03804000000002) (-92.33444199999991 74.03137200000009) (-92.31138599999997 74.02165199999996) (-92.29695100000004 74.01443500000005) (-92.289444 74.00915500000002) (-92.28277599999996 74.00332599999996) (-92.27362099999999 73.99054000000007) (-92.27278100000001 73.98442100000005) (-92.28195199999999 73.97499099999999) (-92.29110700000001 73.96971100000007) (-92.31054699999993 73.96110499999998) (-92.32778899999994 73.95138500000007) (-92.33000199999998 73.94552600000009) (-92.32972699999999 73.94247399999995) (-92.30943300000001 73.94081100000005) (-92.1324919999999 73.94636500000001) (-92.118607 73.94914200000011) (-92.11665299999999 73.95109599999995) (-92.11332700000003 73.95637499999998) (-92.1100009999999 73.96470600000004) (-92.11305199999998 73.97442600000011) (-92.114441 73.97665400000005) (-92.11305199999998 73.98136899999992) (-92.10777300000001 73.98471100000006) (-92.09416199999998 73.98915100000005) (-91.92555199999998 74.01277199999993) (-91.87721299999998 74.01693699999993) (-91.83833299999998 74.0188750000001) (-91.57084700000001 74.02581800000007) (-91.52833599999991 74.02442900000005) (-91.13999899999993 74.00999500000006) (-91.09750400000001 74.00833100000006) (-91.06500199999999 74.006104) (-91.04695100000004 74.00416600000005) (-90.73554999999993 73.968323) (-90.66000399999996 73.95387300000004) (-90.63305699999995 73.94831799999997) (-90.44137599999993 73.91970800000013) (-90.40666199999998 73.91470300000009) (-90.364441 73.91165200000006) (-90.35472099999998 73.91220100000004) (-90.34495500000003 73.91436800000008) (-90.34167499999995 73.91720600000008) (-90.33972199999994 73.9205320000001) (-90.34111000000001 73.92414900000006) (-90.33555599999994 73.92581200000001) (-90.31777999999997 73.92526199999998) (-90.22500600000001 73.90859999999998) (-90.195831 73.90193199999999) (-90.19444299999992 73.899719) (-90.20417800000001 73.88832100000002) (-90.23028599999998 73.86219800000003) (-90.24194299999999 73.85192900000004) (-90.25140399999998 73.84664900000013) (-90.26445000000001 73.84165999999999) (-90.27528399999994 73.83859300000006) (-90.28306600000002 73.83831800000007) (-90.36000099999995 73.80081200000012) (-90.474716 73.72164900000007) (-90.58139 73.65776100000005) (-90.72471599999994 73.58305400000012) (-90.84973100000002 73.54026800000008) (-90.92138699999992 73.49525500000004) (-90.93028300000003 73.48387100000008) (-90.93221999999997 73.48193400000008) (-91.08917200000002 73.38415500000002) (-91.152222 73.36109900000002) (-91.17138699999998 73.35108900000006) (-91.18055700000002 73.3458250000001) (-91.18638599999991 73.34027100000009) (-91.23860200000001 73.27998400000013) (-91.25306699999987 73.26915000000008) (-91.26222200000001 73.26388500000002) (-91.36776700000001 73.20082100000013) (-91.569458 73.06330900000006) (-91.64277600000003 73.02110300000004) (-91.64750699999996 73.01666300000005) (-91.64500399999997 72.99803200000002) (-91.77084400000001 72.91304000000002) (-91.79972799999996 72.89721699999996) (-91.80833399999989 72.8919370000001) (-91.81277499999999 72.88581800000009) (-91.81304899999992 72.88026400000007) (-91.81138599999997 72.86804200000012) (-91.818893 72.86219800000009) (-91.84973100000002 72.84610000000004) (-92.06610099999989 72.75248700000009) (-92.0958399999999 72.743042) (-92.12748699999992 72.73442100000011) (-92.16639699999996 72.72553999999997) (-92.23222399999997 72.71304300000003) (-92.27471899999989 72.70748900000001) (-92.314438 72.70498700000013) (-92.33528099999995 72.7044370000001) (-92.39334099999991 72.70721399999996) (-92.431107 72.71054100000009) (-92.524719 72.72053499999993) (-92.74526999999989 72.73997500000013) (-92.898346 72.75027500000004) (-93.07749899999988 72.76943999999997) (-93.24888599999991 72.78970300000003) (-93.337784 72.8077550000001) (-93.34916699999985 72.80247500000007) (-93.36665299999999 72.79776000000004) (-93.39195299999994 72.79414400000013) (-93.412216 72.79220600000002) (-93.58000199999992 72.77804600000007) (-93.67999299999991 72.77970900000003) (-93.7261049999999 72.7810970000001) (-93.76445000000001 72.78137200000015) (-93.93276999999995 72.77415500000001) (-94.03860499999996 72.76638800000006) (-94.09916699999997 72.76416000000012) (-94.13249200000001 72.76470900000004) (-94.17054699999994 72.76748700000007) (-94.18249499999996 72.76943999999997) (-94.24610899999999 72.77388000000002) (-94.26278699999989 72.77415500000001) (-94.29804999999999 72.77026399999994) (-94.31555200000003 72.76304600000014) (-94.32194499999997 72.75943000000007) (-94.32749899999999 72.75444000000005) (-94.33444199999997 72.73803699999996) (-94.33277900000002 72.73193400000002) (-94.32749899999999 72.72164900000013) (-94.319458 72.71748400000013) (-94.3125 72.71554599999996) (-94.29750100000001 72.71331800000002) (-94.26916499999993 72.71914700000002) (-94.26528899999994 72.72387700000007) (-94.26390100000003 72.72998000000001) (-94.25834699999996 72.732483) (-94.23638899999992 72.73498500000005) (-94.160278 72.72943100000003) (-94.1036069999999 72.71859699999999) (-94.09333799999996 72.71499599999993) (-94.00140399999992 72.704163) (-93.98500099999995 72.70387299999993) (-93.88667299999997 72.70471200000009) (-93.839447 72.71720900000008) (-93.79834 72.70220899999993) (-93.82305899999989 72.65304600000002) (-93.81722999999994 72.64221199999997) (-93.80166599999995 72.63443000000001) (-93.78611799999993 72.62914999999998) (-93.76945499999988 72.62498499999998) (-93.75778200000002 72.62303200000002) (-93.6866609999999 72.62220800000006) (-93.67443800000001 72.61886600000008) (-93.589722 72.58137499999998) (-93.56861900000001 72.57083100000011) (-93.49888599999997 72.52192700000012) (-93.46333300000003 72.4622040000001) (-93.46611000000001 72.45138500000002) (-93.46945199999999 72.43969700000002) (-93.62805200000003 72.34193400000004) (-93.64527899999996 72.33720400000004) (-93.66639700000002 72.33360299999998) (-93.68832399999991 72.33109999999999) (-93.74861099999998 72.32971200000009) (-93.76722699999999 72.3272090000001) (-93.787216 72.32276900000011) (-93.80139200000002 72.31776400000007) (-93.81973299999993 72.30720500000001) (-93.82749899999999 72.30192600000004) (-93.91332999999997 72.24165299999993) (-93.92527799999993 72.23304700000006) (-94.01417500000002 72.16387900000012) (-94.03666699999985 72.14221200000009) (-94.04028299999999 72.13749700000005) (-94.04361 72.13136300000002) (-94.04554699999989 72.12692299999998) (-94.04472399999997 72.11581400000011) (-94.04222099999993 72.10664400000007) (-94.04388399999993 72.09693900000013) (-94.04833999999994 72.09109499999994) (-94.05471799999992 72.08526599999993) (-94.06666599999994 72.07666) (-94.08084099999996 72.06693999999993) (-94.09167500000001 72.061646) (-94.12768599999993 72.05636600000008) (-94.14334100000002 72.05748000000006) (-94.17250099999995 72.0577550000001) (-94.18666099999996 72.05581699999993) (-94.19888300000002 72.05276500000002) (-94.18872099999999 72.0452580000001) (-94.19505300000003 72.04209100000008) (-94.19838700000003 72.03910100000013) (-94.199547 72.03643800000003) (-94.196053 72.03243299999997) (-94.18838499999998 72.03093000000013) (-94.17204299999992 72.02959400000009) (-94.14988699999992 72.02943399999998) (-94.13738299999989 72.03176900000011) (-94.13055400000002 72.03310400000004) (-94.12521400000003 72.03509500000013) (-94.091385 72.03776600000015) (-94.06082200000003 72.03526299999999) (-94.02972399999993 71.99941999999999) (-94.06304899999992 71.97831700000006) (-94.08222999999998 71.97608900000012) (-94.19171900000003 71.99431600000008) (-94.35388199999994 72.01805099999996) (-94.37193300000001 72.01944000000015) (-94.41805999999991 72.02276599999999) (-94.44972199999995 72.02331500000014) (-94.74388099999993 72.01138300000002) (-94.78028899999998 72.006104) (-94.82556199999999 71.99748199999999) (-94.90222199999988 71.9891510000001) (-95.12193299999996 71.96609500000005) (-95.16111799999993 71.96470600000009) (-95.17582699999997 71.96693400000004) (-95.20777899999996 71.98887600000012) (-95.21333300000003 71.99443100000002) (-95.20666499999999 72.09748800000011) (-95.204453 72.10276799999997) (-95.19665499999996 72.10664400000007) (-95.039444 72.13136300000002) (-94.981674 72.13943499999999) (-94.92971799999992 72.14359999999999) (-94.89999399999999 72.14444000000003) (-94.86805700000002 72.1455380000001) (-94.752228 72.15332000000006) (-94.76083399999993 72.15498400000007) (-94.80610699999994 72.15914900000007) (-94.8391719999999 72.15859999999998) (-94.96139499999998 72.155258) (-95.02749599999999 72.14498900000001) (-95.12110899999999 72.13665800000007) (-95.13999899999993 72.1355440000001) (-95.15888999999999 72.13581800000003) (-95.17111199999994 72.13915999999995) (-95.20666499999999 72.18081700000005) (-95.21167000000003 72.18719499999997) (-95.21362299999998 72.19331399999999) (-95.21472199999994 72.20027199999998) (-95.21472199999994 72.20526099999995) (-95.20388799999989 72.22192400000006) (-95.19137599999999 72.2452550000001) (-95.17111199999994 72.28332499999999) (-95.13333099999988 72.46026599999999) (-95.200287 72.524429) (-95.22639499999997 72.53166200000004) (-95.2830659999999 72.53553800000009) (-95.31610099999995 72.53970300000009) (-95.321396 72.54609700000015) (-95.34445199999993 72.58137499999998) (-95.34666400000003 72.58749399999999) (-95.345551 72.593323) (-95.33167999999995 72.59832800000004) (-95.31332399999997 72.60108900000006) (-95.31582600000002 72.60636899999992) (-95.35555999999997 72.63777199999998) (-95.36444099999989 72.64332600000012) (-95.45861799999994 72.68220500000001) (-95.47555499999999 72.68637100000012) (-95.4927669999999 72.68803400000002) (-95.50556899999998 72.68637100000012) (-95.52555799999999 72.68165600000009) (-95.53582799999992 72.68136600000003) (-95.54861499999993 72.68220500000001) (-95.57611099999997 72.68997199999995) (-95.59056099999992 72.69552599999997) (-95.60221899999993 72.70220899999993) (-95.6661069999999 72.80137600000006) (-95.67361499999998 72.81387300000006) (-95.67555199999998 72.82499700000011) (-95.67527799999993 72.841095) (-95.67193600000002 72.85247800000002) (-95.653885 72.87692300000003) (-95.64584400000001 72.91276600000009) (-95.65556300000003 73.01998900000007) (-95.68331899999998 73.07582100000002) (-95.58250399999997 73.12776200000013) (-95.57501200000002 73.1649930000001) (-95.60054000000002 73.283905) (-95.65083299999998 73.32527200000004) (-95.64666699999998 73.33082600000006) (-95.61361699999998 73.342758) (-95.62361099999998 73.36109900000002) (-95.65361000000001 73.41249099999993) (-95.681671 73.44413800000007) (-95.68388400000003 73.4502720000001) (-95.700287 73.55386400000009) (-95.66836499999994 73.58178700000008) (-95.61256399999996 73.61097699999999) (-95.65605900000003 73.63186600000012) (-95.676086 73.66506199999998) (-95.68194599999998 73.711929) (-95.67304999999999 73.72331200000002) (-95.65888999999999 73.73248299999995) (-95.64584400000001 73.73553500000008) (-95.45083599999998 73.7711030000001) (-95.42832900000002 73.77276599999999) (-95.29972799999996 73.7711030000001) (-95.28361499999994 73.76914999999997) (-95.26640299999991 73.76416000000012) (-95.23693800000001 73.75221299999998) (-95.160278 73.71304299999997) (-95.15472399999999 73.70694000000003) (-95.13833599999992 73.70082100000002) (-95.10694899999999 73.69192500000008) (-95.07640100000003 73.68331899999998) (-95.02417000000003 73.67164600000012) (-94.95666499999993 73.65914900000013) (-94.89056399999993 73.64915500000012) (-94.84555099999994 73.64415000000008) (-94.82861300000002 73.64305100000007) (-94.81221 73.64332600000012) (-94.652222 73.64860500000009) (-94.63417099999992 73.64942900000005) (-94.61805699999991 73.65138200000001) (-94.61915599999998 73.6544340000001) (-94.63806199999999 73.66581700000012) (-94.64944500000001 73.67082199999999) (-94.67639200000002 73.67665099999999) (-94.73277300000001 73.68136600000003) (-94.773056 73.67997700000001) (-94.81471299999987 73.6808170000001) (-94.866104 73.68719500000003) (-94.883331 73.69220000000007) (-95.07556199999988 73.77331500000014) (-95.08917200000002 73.78332500000005) (-95.11193799999995 73.80108600000005) (-95.11610399999995 73.80664100000013) (-95.108047 73.81219500000009) (-95.07084700000001 73.822769) (-95.03666699999991 73.82943699999993) (-95.00556899999998 73.83248900000007) (-94.97666899999996 73.83110000000005) (-94.958054 73.83194000000009) (-94.96333299999998 73.83831800000007) (-94.98249799999996 73.84553499999998) (-95.00500499999998 73.85276799999997) (-95.02444500000001 73.85525500000006) (-95.04554699999994 73.85554500000006) (-95.07667500000002 73.85247799999996) (-95.10916099999997 73.84359700000005) (-95.11639399999996 73.839157) (-95.12721299999993 73.82582100000008) (-95.13612399999994 73.82360800000009) (-95.15417499999995 73.82360800000009) (-95.26306199999999 73.86276200000003) (-95.304169 73.8808140000001) (-95.31138599999991 73.88526900000011) (-95.32333399999993 73.89694199999991) (-95.32778899999988 73.90914900000007) (-95.32972699999999 73.91998299999995) (-95.32611099999997 73.94413800000001) (-95.32472199999995 73.95248400000008) (-95.31916799999988 73.96415700000011) (-95.29834 73.98082) (-95.24527 74.010269) (-95.22778299999999 74.01416000000006) (-95.22000100000002 74.01470899999998) (-95.19248999999996 74.00888100000009) (-95.17443800000001 74.00888100000009) (-95.04083300000002 74.02638200000001) (-94.90695199999999 74.04748500000011) (-94.850281 74.05886800000013) (-94.80610699999994 74.06805400000007) (-94.78750600000001 74.07276900000011) (-94.75527999999991 74.08720400000004) (-94.74583399999995 74.09220900000008) (-94.73222399999997 74.095261) (-94.61833200000001 74.09027100000014) (-94.46028100000001 74.09443700000003) (-94.43693499999995 74.09582499999993) (-94.42721599999993 74.10081500000001) (-94.421112 74.10582000000005) (-94.412781 74.11526500000014) (-94.40611299999995 74.11886599999997) (-94.39222699999999 74.12191800000011) (-94.21749899999998 74.13165299999997) (-94.17777999999993 74.1336060000001) (-94.09306300000003 74.13638300000002) (-93.99249299999991 74.138596) (-93.95195000000001 74.13888500000007) (-93.91416900000002 74.13610799999998) (-93.90194699999995 74.13333100000011) (-93.75834699999996 74.09693900000013) (-93.76139799999999 74.12915000000004) (-93.75944500000003 74.13916000000012) (-93.754456 74.14471400000008) (-93.73083500000001 74.15416000000005) (-93.69055199999997 74.16220099999998) (-93.64111299999996 74.16775499999994) (-93.58361799999989 74.17082200000004) (-93.515015 74.17303500000003) (-93.431671 74.17221100000006) (-93.32749899999999 74.16998300000012) (-93.24388099999999 74.16499300000004) (-93.028885 74.14999399999999) (-92.979446 74.14582800000011) (-92.79638699999998 74.12498500000004) (-92.63806199999988 74.10304300000013)) ((-98.65722699999998 74.29942299999999) (-98.74694799999997 74.29803500000008) (-98.81027199999994 74.29832500000009) (-98.83167999999995 74.29914900000006) (-98.85943600000002 74.30137600000012) (-98.86221299999994 74.30247500000013) (-98.86471599999999 74.30470300000007) (-98.86305199999998 74.30748) (-98.85722399999997 74.31137100000007) (-98.75250199999994 74.33415200000007) (-98.71833800000002 74.33665500000001) (-98.630829 74.34248400000007) (-98.61665299999999 74.34193400000004) (-98.58583099999998 74.338593) (-98.57362399999994 74.334991) (-98.535278 74.3288730000001) (-98.52166699999998 74.32470699999999) (-98.511124 74.318329) (-98.51556399999993 74.31414799999993) (-98.52500900000001 74.31053200000008) (-98.5686189999999 74.30470300000007) (-98.65722699999998 74.29942299999999)) ((-120.14998600000001 74.27249100000006) (-119.86472300000003 74.23776200000003) (-119.84528399999999 74.23580900000007) (-119.79527299999995 74.234421) (-119.72501399999993 74.23387100000014) (-119.60916099999997 74.23332199999999) (-119.63971699999996 74.19303900000011) (-119.65139799999997 74.18165599999992) (-119.67250099999995 74.165817) (-119.69082599999996 74.15693699999997) (-119.70249899999999 74.15304600000007) (-119.72305299999994 74.14471400000008) (-119.79415899999998 74.11526500000014) (-119.80332900000002 74.11053500000008) (-119.82417299999992 74.09471100000013) (-119.833618 74.082764) (-119.83612099999999 74.07582100000002) (-119.83277900000002 74.06414799999999) (-119.8272169999999 74.05914300000012) (-119.77916699999997 74.03387500000002) (-119.76806599999986 74.03027300000008) (-119.74481199999997 74.02551300000005) (-119.72860699999995 74.02915999999999) (-119.72609699999992 74.03581200000008) (-119.72638699999993 74.04193100000009) (-119.73777799999999 74.05802900000015) (-119.650284 74.11859099999998) (-119.51000999999991 74.20915200000002) (-119.50083899999998 74.21388200000001) (-119.48916599999995 74.21748399999996) (-119.46528599999994 74.22110000000004) (-119.44972199999995 74.221924) (-119.25723299999999 74.21832300000011) (-119.18472300000002 74.21693399999992) (-119.16528299999987 74.21499599999999) (-119.14862099999999 74.2122040000001) (-119.137787 74.20860300000004) (-119.12110899999993 74.1997070000001) (-119.11554699999999 74.19497700000005) (-119.10193600000002 74.17942800000014) (-119.09638999999999 74.16832) (-119.090843 74.15693699999997) (-119.07055700000001 74.11470000000008) (-119.06527699999998 74.10331700000006) (-119.07084699999996 74.08998099999997) (-119.08084099999996 74.07777399999998) (-119.08805799999999 74.07276900000011) (-119.10166900000002 74.06971699999997) (-119.11972000000003 74.06805400000007) (-119.14723199999997 74.06219500000003) (-119.15222199999994 74.05609100000004) (-119.18721 73.99414100000013) (-119.18721 73.98776200000009) (-119.16750299999995 73.98719800000015) (-118.98889200000002 73.99803200000002) (-118.973053 74.00027499999999) (-118.96362299999993 74.00499000000002) (-118.80777 74.09054600000013) (-118.80055199999998 74.09582499999993) (-118.79028299999993 74.10775799999999) (-118.78751399999999 74.11470000000008) (-118.79277000000002 74.125809) (-118.79804999999999 74.13081400000004) (-118.80695299999996 74.13388099999997) (-118.82333399999999 74.13638300000002) (-118.83693699999992 74.1394350000001) (-118.84805299999994 74.143326) (-118.86721799999998 74.15138200000007) (-118.88333099999994 74.16638200000006) (-118.88612399999994 74.17192100000005) (-118.881104 74.17804000000007) (-118.84388699999994 74.18830900000012) (-118.72000100000002 74.21276899999992) (-118.67388899999997 74.21998600000006) (-118.60722399999997 74.22831700000012) (-118.50583599999999 74.23997499999996) (-118.17999299999991 74.27221700000013) (-118.12249799999995 74.27581800000002) (-118.10193600000002 74.27638200000013) (-118.031387 74.2752690000001) (-117.97361799999999 74.26915000000002) (-117.91860999999989 74.26220700000005) (-117.62832599999996 74.24498000000006) (-117.51251199999996 74.238586) (-117.43859900000001 74.22943099999992) (-117.422234 74.22692900000004) (-117.37609899999995 74.21832300000011) (-117.28943599999997 74.1997070000001) (-117.15722700000003 74.16775499999994) (-116.82833899999997 74.072495) (-116.78500400000001 74.059708) (-116.735817 74.03970300000015) (-116.6224979999999 73.990814) (-116.52806099999998 73.94970699999999) (-116.441101 73.91360500000002) (-116.348053 73.87553400000002) (-116.33805799999999 73.87164300000012) (-116.32778899999988 73.86775200000005) (-116.31471299999993 73.86442600000004) (-116.29888900000003 73.86164900000011) (-116.20805399999995 73.83831800000007) (-116.05583199999995 73.79275500000011) (-116.00556899999998 73.77331500000014) (-115.97638699999999 73.75555400000002) (-115.91443599999997 73.72637900000012) (-115.89444699999996 73.71859699999999) (-115.817497 73.69831800000003) (-115.603882 73.65220599999998) (-115.402222 73.568329) (-115.36694299999999 73.5458220000001) (-115.34889199999998 73.53193700000003) (-115.33194700000001 73.51165800000007) (-115.31500199999999 73.47970599999991) (-115.32305899999994 73.47442600000005) (-115.449432 73.42665100000005) (-115.46140300000002 73.42303499999997) (-115.69943199999989 73.36886600000014) (-115.83473199999997 73.33998100000008) (-115.862213 73.33442700000012) (-116.26750199999998 73.27304100000015) (-116.33556399999998 73.26721199999992) (-116.37249800000001 73.26554900000002) (-116.42500299999995 73.26165800000012) (-116.45612299999993 73.25749200000001) (-116.46945199999999 73.25471500000015) (-116.69304699999992 73.20387300000004) (-116.80943299999996 73.168045) (-116.94803599999995 73.12498500000004) (-117.02639799999997 73.10693400000002) (-117.16915899999998 73.08194000000009) (-117.39388999999994 73.04859899999991) (-117.42639200000002 73.04498300000006) (-117.46610999999996 73.03637700000013) (-117.708054 72.97776800000008) (-117.83667000000003 72.93858300000011) (-117.891953 72.919983) (-117.925003 72.90887500000002) (-117.97501399999993 72.89637800000003) (-118.01611300000002 72.88832100000002) (-118.11527999999993 72.87081899999998) (-118.21806300000003 72.85470599999996) (-118.27362099999999 72.84443699999991) (-118.314438 72.83610499999992) (-118.36609599999997 72.82443200000012) (-118.38999899999993 72.81776400000012) (-118.44444299999998 72.79887400000001) (-118.45333900000003 72.79443400000014) (-118.46000700000002 72.78915400000011) (-118.46472199999994 72.7833250000001) (-118.48528299999992 72.76748700000007) (-118.49610899999999 72.76361099999997) (-118.53472899999991 72.75471500000003) (-118.54943799999995 72.75248700000009) (-118.58528100000001 72.75027500000004) (-118.65805099999994 72.74803200000008) (-118.70861799999994 72.74359099999998) (-118.75306699999999 72.73692299999999) (-118.77861000000001 72.73109399999998) (-119.11444099999994 72.63943500000005) (-119.1375119999999 72.63247700000005) (-119.15888999999999 72.62498499999998) (-119.16750299999995 72.62052900000003) (-119.30943300000001 72.43887300000006) (-119.3163909999999 72.42581200000012) (-119.33000199999987 72.39414999999997) (-119.33249699999999 72.38720699999999) (-119.33000199999987 72.38165300000014) (-119.32501200000002 72.3766480000001) (-119.30999800000001 72.368042) (-119.30277999999993 72.36303700000013) (-119.30248999999998 72.35664400000002) (-119.31111099999993 72.35220300000009) (-119.40444899999994 72.32554599999997) (-119.429169 72.31971699999997) (-119.51555599999989 72.3058170000001) (-119.62666300000001 72.27832000000012) (-119.65750099999991 72.26721199999997) (-119.67804699999999 72.25943000000001) (-119.760559 72.22886700000004) (-119.80139200000002 72.22137500000008) (-119.837784 72.21971100000007) (-119.97250399999996 72.22110000000009) (-120.12372599999998 72.23259700000011) (-120.13405599999999 72.23375699999997) (-120.13871799999998 72.23642000000007) (-120.13621499999994 72.23992900000013) (-120.12888299999992 72.24192800000014) (-120.14362299999993 72.2494200000001) (-120.12943999999999 72.25166300000006) (-120.12721299999993 72.25860600000004) (-120.12999000000002 72.26416000000006) (-120.13999899999993 72.26776100000006) (-120.15750099999997 72.26971400000002) (-120.17582699999997 72.2688750000001) (-120.24109599999997 72.26249700000011) (-120.251106 72.25860600000004) (-120.25945299999995 72.246643) (-120.26139799999987 72.23970000000003) (-120.25862099999995 72.23414600000001) (-120.23144500000001 72.21481299999999) (-120.225281 72.21247900000014) (-120.21028899999999 72.20881700000001) (-120.19810499999994 72.20432299999999) (-120.18894999999998 72.19915000000009) (-120.18578299999996 72.19615199999998) (-120.14527900000002 72.14999400000005) (-120.14499699999993 72.14359999999999) (-120.17582699999997 72.09443700000008) (-120.19415299999997 72.07832300000013) (-120.30526699999996 72.01304600000009) (-120.329453 71.99914600000005) (-120.34750399999996 71.99081400000006) (-120.383621 71.98165899999998) (-120.41332999999986 71.97137499999997) (-120.423317 71.96748400000007) (-120.4391629999999 71.95832800000011) (-120.445267 71.95304899999996) (-120.4491579999999 71.94693000000012) (-120.45278899999994 71.93470799999994) (-120.45249899999993 71.92776500000014) (-120.44972200000001 71.92221099999995) (-120.439438 71.91220100000004) (-120.43167099999994 71.90803499999998) (-120.391953 71.89305100000007) (-120.38445300000001 71.88888500000002) (-120.37917299999998 71.88388100000003) (-120.380829 71.87831099999994) (-120.41500899999994 71.77638200000013) (-120.42278299999998 71.76416000000012) (-120.42471299999994 71.75721699999997) (-120.42639199999996 71.74443100000002) (-120.423607 71.73887599999995) (-120.41332999999986 71.72886699999998) (-120.40805099999994 71.72387700000007) (-120.40055799999993 71.71943700000008) (-120.37998999999996 71.69970700000005) (-120.37748699999992 71.69413800000007) (-120.37693799999994 71.68803400000007) (-120.380829 71.68193100000008) (-120.43611099999998 71.61192299999993) (-120.473053 71.56553600000007) (-120.49665799999997 71.54414400000002) (-120.54332699999992 71.516663) (-120.60166900000002 71.49359100000004) (-120.63639799999999 71.48553500000014) (-120.78028899999998 71.45721400000008) (-120.80750299999988 71.45248400000003) (-120.87721299999998 71.44136000000015) (-120.921944 71.43553200000002) (-121.13333099999994 71.40942400000006) (-121.33249699999993 71.386932) (-121.39444700000001 71.38026400000001) (-121.42916899999994 71.37831100000005) (-121.44833399999999 71.37942500000003) (-121.59056099999998 71.39637800000014) (-121.60305799999998 71.399429) (-121.59137699999991 71.40277100000009) (-121.57611099999997 71.40443400000004) (-121.54915599999993 71.40914900000007) (-121.53751399999999 71.41249099999999) (-121.53195199999993 71.417755) (-121.52861000000001 71.42387400000001) (-121.531677 71.42942799999997) (-121.53694200000001 71.43441800000005) (-121.54998799999993 71.44358800000009) (-121.56973299999999 71.45166000000006) (-121.59638999999999 71.45694000000015) (-121.63027999999991 71.46054099999998) (-121.66860999999994 71.46276899999998) (-121.70361300000002 71.46081500000014) (-121.74388099999999 71.45332300000001) (-121.75556899999998 71.45027199999998) (-121.77639799999997 71.44303899999994) (-121.81220999999994 71.4266510000001) (-121.82917800000001 71.41832) (-121.84612299999998 71.40971400000006) (-121.901947 71.3785860000001) (-121.96528599999999 71.34275800000006) (-122.07501199999996 71.28692600000005) (-122.12165799999991 71.26721199999997) (-122.14417300000002 71.26081799999992) (-122.21056399999986 71.24832200000003) (-122.25446299999999 71.24247700000012) (-122.29833999999994 71.23637400000001) (-122.35526999999996 71.22776800000008) (-122.43028299999997 71.21415700000011) (-122.50556899999992 71.19775400000003) (-122.593887 71.17804000000012) (-122.60500299999995 71.17498800000004) (-122.61638600000003 71.17164600000007) (-122.64584400000001 71.16053800000009) (-122.66221599999994 71.15193199999999) (-122.67832900000002 71.14332600000006) (-122.7069469999999 71.12442000000004) (-122.74249299999997 71.101089) (-122.76999699999988 71.08915700000006) (-122.781113 71.08610499999992) (-122.79611199999988 71.08415200000002) (-122.84944199999995 71.0816650000001) (-123.07611099999986 71.07916300000005) (-123.09500099999997 71.07998700000002) (-123.1260989999999 71.08387800000008) (-123.162781 71.09275800000012) (-123.22332799999998 71.11415099999999) (-123.25945300000001 71.12970000000013) (-123.29305999999985 71.14610299999998) (-123.31696299999999 71.15859999999998) (-123.37027 71.18887300000011) (-123.3952789999999 71.20776399999994) (-123.42999299999997 71.2369230000001) (-123.44860799999998 71.25776700000011) (-123.46640000000002 71.28553799999997) (-123.51390099999998 71.34915200000006) (-123.56696299999993 71.40609699999993) (-123.63417099999992 71.47248799999994) (-123.66583299999996 71.49636800000013) (-123.67971799999998 71.50526400000007) (-123.84388699999994 71.58332800000011) (-123.88722200000001 71.62359599999996) (-123.89917000000003 71.63304100000005) (-123.94888299999997 71.65832500000005) (-123.97582999999997 71.6702580000001) (-124.01334400000002 71.68580600000007) (-124.02390300000002 71.68914800000005) (-124.07055700000001 71.70193500000005) (-124.11138900000003 71.70999100000012) (-124.13694800000002 71.71443200000004) (-124.38474299999996 71.75471500000009) (-124.458054 71.76638800000012) (-124.609734 71.78804000000014) (-124.65278599999994 71.79525799999999) (-124.678879 71.80081200000012) (-124.700287 71.80636600000014) (-124.83194700000001 71.84082000000001) (-124.86665299999993 71.85054000000008) (-125.07694999999995 71.90914900000013) (-125.16000400000001 71.92468300000007) (-125.23638900000003 71.94191000000006) (-125.24722300000002 71.94551100000012) (-125.25361599999997 71.95025599999997) (-125.24472000000003 71.95442200000008) (-125.04804999999999 71.95553600000005) (-124.98029300000002 71.94358799999998) (-124.96945199999999 71.93997200000013) (-124.953888 71.93803400000002) (-124.94275699999997 71.93997200000013) (-124.93804899999998 71.94552599999992) (-124.93554699999999 71.95165999999995) (-124.93971299999998 71.95694000000003) (-124.94833399999999 71.96110500000003) (-124.98777799999999 71.96971100000013) (-125.02278100000001 71.97250400000013) (-125.23277300000001 71.97552499999995) (-125.35221899999999 71.97468600000002) (-125.41639700000002 71.97413599999999) (-125.47833300000002 71.97276300000004) (-125.59111000000001 71.96638500000012) (-125.62666299999995 71.96360800000002) (-125.68639399999995 71.95498700000007) (-125.72165699999994 71.9522090000001) (-125.76139799999993 71.95082100000002) (-125.80139199999996 71.9522090000001) (-125.93582199999992 71.95860299999998) (-125.97361799999999 71.96054100000009) (-125.984444 71.96388200000013) (-125.99333200000001 71.96804800000001) (-125.997772 71.97360200000003) (-125.99333200000001 71.9788670000001) (-125.97778299999999 71.97970600000002) (-125.966949 71.97637900000012) (-125.90055799999999 71.96249400000005) (-125.88054699999992 71.96331800000002) (-125.8497309999999 71.96720900000008) (-125.80999799999995 71.97554000000014) (-125.787781 71.98220800000013) (-125.77887699999991 71.98637400000001) (-125.765289 71.99609400000008) (-125.75418100000002 72.006104) (-125.74082899999996 72.02275100000003) (-125.73388699999998 72.034134) (-125.724716 72.0519260000001) (-125.71777299999985 72.07054099999999) (-125.71528599999994 72.08360300000004) (-125.71528599999994 72.09027099999997) (-125.71749899999992 72.09637500000002) (-125.72165699999994 72.10192900000004) (-125.72833299999996 72.10664400000007) (-125.73944099999989 72.1102600000001) (-125.714447 72.15748599999995) (-125.57389799999993 72.24746700000014) (-125.51445000000001 72.29107699999997) (-125.46777299999997 72.3510740000001) (-125.43221999999997 72.40358000000003) (-125.43666099999996 72.40913400000005) (-125.30055199999993 72.48330700000002) (-125.29110699999995 72.48718300000007) (-125.27971600000001 72.49052400000011) (-125.25787399999996 72.49512500000014) (-125.247772 72.49523899999997) (-125.17194399999994 72.51359600000006) (-125.1394499999999 72.52413899999999) (-125.02806099999998 72.56607100000008) (-125 72.60525499999994) (-124.94055199999997 72.70248400000014) (-124.9719389999999 72.755829) (-125.02610800000002 72.82109100000008) (-124.95916699999998 72.85636900000009) (-124.89334100000002 72.87387100000012) (-124.87917299999998 72.876373) (-124.801941 72.88749700000005) (-124.76695299999994 72.89082300000013) (-124.72749299999987 72.88859600000006) (-124.68804899999986 72.88749700000005) (-124.66944899999993 72.88888499999996) (-124.63667299999997 72.89276100000006) (-124.60611 72.89721699999996) (-124.591949 72.89999400000005) (-124.49722300000002 72.91970799999996) (-124.48554999999999 72.92303500000008) (-124.47582999999997 72.92720000000008) (-124.473053 72.93331899999993) (-124.49305700000002 72.97164900000007) (-124.49722300000002 72.97720300000003) (-124.62138399999992 73.00138900000013) (-124.71250899999995 73.00387600000005) (-124.72609699999998 73.00665300000014) (-124.73777799999999 73.010269) (-124.76972999999992 73.02137800000008) (-124.82417299999992 73.04609700000003) (-124.83332799999994 73.05026200000003) (-124.84916699999997 73.059418) (-124.862503 73.06887800000004) (-124.86694299999994 73.07443200000006) (-124.86888099999999 73.08055100000007) (-124.86389200000002 73.08610500000009) (-124.79472399999992 73.13472000000013) (-124.78500400000001 73.13888500000013) (-124.71362299999987 73.149429) (-124.59916699999985 73.22776800000003) (-124.58640299999996 73.23803700000008) (-124.57389799999993 73.24832199999997) (-124.56360599999988 73.25915500000013) (-124.50805699999995 73.32638500000013) (-124.44583099999994 73.41110200000014) (-124.44055199999997 73.41665599999993) (-124.43306000000001 73.42137099999997) (-124.40556299999997 73.434143) (-124.30555699999991 73.4785920000001) (-124.29332699999998 73.48165900000004) (-124.252228 73.48359699999997) (-124.22833300000002 73.48332199999999) (-124.20916699999998 73.48165900000004) (-124.18998699999997 73.48165900000004) (-124.17304999999999 73.48359699999997) (-124.160553 73.48692300000005) (-124.07000699999998 73.54609700000009) (-124.041946 73.58221400000008) (-124.03888699999993 73.58692900000011) (-124.07167099999998 73.61775200000011) (-124.0786129999999 73.62275699999998) (-124.07611099999991 73.64305100000007) (-124.073059 73.64915500000012) (-124.06777999999991 73.65470900000014) (-124.05526700000001 73.65803499999998) (-123.94554099999993 73.68165600000003) (-123.86138899999997 73.69581599999998) (-123.83389299999999 73.70027200000004) (-123.774719 73.7644350000001) (-123.80471799999987 73.79693600000002) (-123.83833300000003 73.82110600000004) (-123.847778 73.82527199999993) (-123.93639399999995 73.84054600000002) (-123.95834399999995 73.84136999999998) (-123.98055999999991 73.84082000000012) (-124.01999699999999 73.83831800000007) (-124.06639100000001 73.83943200000004) (-124.08583099999998 73.841095) (-124.13417099999992 73.84832799999998) (-124.16306299999985 73.8541560000001) (-124.19860799999992 73.86469999999997) (-124.21749899999986 73.87275700000009) (-124.36860699999988 74.01443500000005) (-124.41166699999991 74.05636600000003) (-124.42666600000001 74.10971100000012) (-124.43415800000002 74.13443000000007) (-124.600281 74.26832600000006) (-124.61805699999996 74.26638800000012) (-124.66082799999992 74.26470899999993) (-124.68083200000001 74.26609800000011) (-124.69304699999986 74.26944000000003) (-124.77500900000001 74.31915299999997) (-124.784157 74.32998700000007) (-124.781387 74.33610499999998) (-124.77084400000001 74.34027100000009) (-124.75556899999992 74.342758) (-124.69722000000002 74.34721400000006) (-124.40471600000001 74.36914100000013) (-124.108612 74.39276100000012) (-123.89527899999996 74.39637800000008) (-123.85694899999987 74.39942900000011) (-123.676941 74.41832000000011) (-123.63834399999996 74.42137100000014) (-123.57444800000002 74.42414900000011) (-123.41887700000001 74.42831400000011) (-123.20584100000002 74.44303900000006) (-123.02250700000002 74.444702) (-122.68998699999992 74.45387299999999) (-122.43804899999998 74.46499599999993) (-122.33750900000001 74.47109999999998) (-122.118607 74.49192800000003) (-122.06610099999995 74.49803200000008) (-121.93859900000001 74.518326) (-121.766663 74.53970300000003) (-121.73000299999995 74.54332) (-121.65194699999995 74.54859899999997) (-121.61028299999992 74.55053700000013) (-121.56416300000001 74.55108600000005) (-121.51862299999993 74.54887400000001) (-121.31082200000003 74.53166199999998) (-121.25361599999997 74.52581800000013) (-121.13612399999994 74.50694300000004) (-121.08389299999993 74.49359099999998) (-121.05777 74.48664900000006) (-121.01112399999988 74.47221400000012) (-121.00222799999995 74.46775800000006) (-120.98998999999998 74.45803799999999) (-120.98055999999991 74.4474790000001) (-120.97693599999991 74.44192500000008) (-120.97556299999991 74.42970300000013) (-120.90638699999994 74.41526800000003) (-120.70584100000002 74.37359600000013) (-120.48166700000002 74.32998700000007) (-120.2172159999999 74.282486) (-120.14998600000001 74.27249100000006)) ((-97.65278599999999 74.45582600000006) (-97.67555199999998 74.45498700000013) (-97.69193999999999 74.45526100000006) (-97.70889299999999 74.45721400000002) (-97.777222 74.47637900000012) (-97.789444 74.47998000000001) (-97.79249599999991 74.48580900000002) (-97.781387 74.49720800000011) (-97.76861600000001 74.5080410000001) (-97.76167299999992 74.512497) (-97.75389099999995 74.51554899999996) (-97.61805700000002 74.55220000000003) (-97.53222700000003 74.60636900000009) (-97.51362599999999 74.61137400000013) (-97.47000100000002 74.62109400000003) (-97.445831 74.626083) (-97.42277499999994 74.62942499999991) (-97.40695199999993 74.62831100000011) (-97.389725 74.626373) (-97.36805699999996 74.62275699999998) (-97.35777299999995 74.62136800000013) (-97.29138199999994 74.60525500000011) (-97.26722699999993 74.59721400000001) (-97.26167299999992 74.59471100000007) (-97.256958 74.59054600000007) (-97.26194800000002 74.58387800000008) (-97.29998799999987 74.55137600000006) (-97.37609899999995 74.51165800000007) (-97.38751199999996 74.50637799999998) (-97.60638399999999 74.46192900000005) (-97.65278599999999 74.45582600000006)) ((-95.31111099999998 74.49775700000009) (-95.33139 74.49609399999997) (-95.35333299999996 74.49636800000007) (-95.45889299999999 74.49859600000002) (-95.48055999999991 74.5) (-95.52278100000001 74.50499000000008) (-95.60305799999992 74.51554899999996) (-95.66166699999997 74.52360500000003) (-95.69776899999994 74.52970900000003) (-95.71665999999999 74.53387499999997) (-95.80943299999996 74.55442799999997) (-95.84500099999997 74.56387300000006) (-95.862213 74.56999200000007) (-95.86639400000001 74.57415800000001) (-95.86054999999999 74.57916300000005) (-95.85749799999996 74.58055100000013) (-95.68249500000002 74.634995) (-95.653885 74.64221199999992) (-95.63806199999999 74.64332600000012) (-95.62416100000002 74.641663) (-95.628601 74.64082300000013) (-95.51750199999992 74.63026400000007) (-95.49749800000001 74.62719700000014) (-95.441101 74.613876) (-95.40360999999996 74.60331699999995) (-95.33444199999997 74.58082599999994) (-95.31777999999997 74.57388300000014) (-95.29194599999994 74.56025700000004) (-95.26028399999996 74.54054300000007) (-95.25111400000003 74.53414900000007) (-95.24499500000002 74.52777100000009) (-95.24638399999998 74.52165200000007) (-95.25111400000003 74.51609800000006) (-95.25917099999998 74.5105440000001) (-95.27111799999994 74.50555400000002) (-95.28944399999995 74.50138900000002) (-95.31111099999998 74.49775700000009)) ((-97.17582700000003 75.24414100000007) (-97.19444299999998 75.24275200000005) (-97.21611000000001 75.24470500000001) (-97.22500600000001 75.24803199999991) (-97.23194899999993 75.25444000000005) (-97.27806099999998 75.3435970000001) (-97.275284 75.347488) (-97.25805699999995 75.34942600000011) (-97.20861799999994 75.34220900000003) (-97.19055199999997 75.33526599999999) (-97.16166699999985 75.32222000000007) (-97.15306099999992 75.31526200000008) (-97.14889499999992 75.29776000000004) (-97.14695699999999 75.27998400000007) (-97.14750700000002 75.27388000000008) (-97.15583800000002 75.25526400000001) (-97.16166699999985 75.25000000000006) (-97.17582700000003 75.24414100000007)) ((-103.9175029999999 75.05497700000001) (-104.22917199999995 75.01805100000007) (-104.261124 75.01832600000012) (-104.45944199999991 75.02886999999998) (-104.662216 75.06248500000004) (-104.84722899999991 75.10914600000007) (-104.85722399999992 75.16470300000003) (-104.82000699999998 75.17776500000002) (-104.79998799999998 75.18942300000003) (-104.79305999999997 75.19470200000006) (-104.74472000000003 75.24609399999997) (-104.76862299999999 75.28193700000003) (-104.71083099999993 75.32222000000007) (-104.68222000000003 75.33776899999998) (-104.67360699999995 75.34166000000005) (-104.49722299999996 75.40637200000003) (-104.42804699999994 75.42082199999999) (-104.37777699999998 75.42804000000001) (-104.33000199999992 75.43304399999994) (-104.18222000000003 75.43553199999997) (-104.15177900000003 75.4345550000001) (-104.11416600000001 75.43026700000007) (-103.97112299999998 75.4044340000001) (-103.953056 75.3999940000001) (-103.935272 75.39498900000007) (-103.848053 75.36499000000003) (-103.81054699999993 75.34860200000014) (-103.74166899999994 75.28610200000003) (-103.587219 75.16998300000006) (-103.58306899999997 75.16470300000003) (-103.59028599999999 75.15942400000006) (-103.60888699999992 75.14915500000001) (-103.7302929999999 75.09999099999999) (-103.76390100000003 75.08888200000013) (-103.79943799999995 75.07748400000008) (-103.81777999999997 75.07249499999995) (-103.88999899999999 75.05831899999998) (-103.9175029999999 75.05497700000001)) ((-100.17223399999995 75.60137900000001) (-100.15722700000003 75.58943200000004) (-100.15778399999994 75.58499100000012) (-100.17639200000002 75.57998699999996) (-100.23332199999993 75.56915300000009) (-100.383331 75.55358899999999) (-100.45417800000001 75.54637100000002) (-100.47972099999993 75.54582200000004) (-100.47556299999997 75.54998799999998) (-100.45749699999999 75.55415299999999) (-100.43195299999991 75.55831900000004) (-100.40666199999987 75.56137099999995) (-100.36110699999995 75.56553599999995) (-100.31777999999986 75.57304399999998) (-100.30332900000002 75.57748400000003) (-100.29361 75.584427) (-100.30332900000002 75.58859300000006) (-100.31973299999999 75.59082000000012) (-100.33917199999996 75.59136999999998) (-100.36332699999997 75.59027100000003) (-100.52778599999994 75.57720899999998) (-100.74973299999994 75.55802900000003) (-100.86527999999998 75.54721100000006) (-100.88555899999994 75.54582200000004) (-100.90862300000003 75.54637100000002) (-100.950287 75.54971300000011) (-100.99445300000002 75.55497700000012) (-101.02333099999993 75.55998199999999) (-101.03333299999997 75.56303400000007) (-101.03943600000002 75.56721500000015) (-101.02583299999998 75.57054099999999) (-100.84277299999991 75.58692900000005) (-100.70249899999993 75.58888200000001) (-100.68055699999996 75.58943200000004) (-100.65583800000002 75.59165999999999) (-100.64167800000001 75.59610000000004) (-100.62027 75.60609400000004) (-100.59861799999999 75.61025999999993) (-100.51112399999994 75.61914100000007) (-100.39444700000001 75.62303199999997) (-100.27639799999997 75.62303199999997) (-100.23500099999995 75.62303199999997) (-100.21777299999997 75.621918) (-100.204453 75.61747700000006) (-100.19499200000001 75.61331200000006) (-100.17223399999995 75.60137900000001)) ((-94.36389200000002 75.59082000000012) (-94.32695000000001 75.57971199999997) (-94.24388099999993 75.54971300000011) (-94.20527599999991 75.52970900000003) (-94.01028399999996 75.44220000000007) (-93.98971599999999 75.4349820000001) (-93.83972199999994 75.38804600000003) (-93.74249299999997 75.3644260000001) (-93.49916099999996 75.2647090000001) (-93.48750299999995 75.25665300000003) (-93.49333199999995 75.24720799999994) (-93.52917500000001 75.17637600000006) (-93.48889200000002 75.07249499999995) (-93.43415799999997 74.966385) (-93.406387 74.88360599999999) (-93.45805399999995 74.7149960000001) (-93.46250899999995 74.70860299999993) (-93.46777299999997 74.70304899999996) (-93.48472600000002 74.68775900000014) (-93.49610899999999 74.68193100000002) (-93.53056300000003 74.66775500000006) (-93.56332399999997 74.65942400000012) (-93.69166599999994 74.63998400000014) (-93.71722399999987 74.63693200000006) (-93.741379 74.63554399999998) (-94.04028299999999 74.64082300000013) (-94.24999999999989 74.64637800000003) (-94.38806199999999 74.63526900000011) (-94.47111499999988 74.62664800000005) (-94.51194799999996 74.62330600000007) (-94.5475009999999 74.62136800000013) (-94.64334099999996 74.62359600000008) (-94.68777499999993 74.62831100000011) (-95.02471899999995 74.67303500000008) (-95.08000199999998 74.68081700000005) (-95.08583099999998 74.68719500000003) (-95.07694999999995 74.69747900000004) (-95.07278399999996 74.7022090000001) (-95.104446 74.74414100000013) (-95.26640299999991 74.79331999999994) (-95.28332499999999 74.79803499999997) (-95.29834 74.80026200000003) (-95.40333599999991 74.80386399999998) (-95.43415800000002 74.801376) (-95.45750399999997 74.79832499999998) (-95.479172 74.78804000000008) (-95.4830629999999 74.78332500000005) (-95.48277299999995 74.77943399999998) (-95.47555499999999 74.76998900000007) (-95.462219 74.75665300000014) (-95.54722600000002 74.76110799999998) (-95.62582399999991 74.80748000000006) (-95.70556599999998 74.82998700000013) (-95.7408289999999 74.82388300000008) (-95.77139299999993 74.82360800000009) (-95.86416600000001 74.82609600000006) (-95.959473 74.85636900000003) (-96.00250199999988 74.87275700000009) (-96.00666799999993 74.87692300000015) (-96.07722499999994 74.90277100000009) (-96.1352839999999 74.95109600000012) (-96.14167800000001 74.95721400000008) (-96.13694800000002 74.96304300000008) (-96.12470999999994 74.97581500000007) (-96.09472699999998 74.99136400000003) (-96.07084700000001 75.00193800000005) (-96.05638099999999 75.01026899999994) (-96.05555700000002 75.01609799999994) (-96.06054699999999 75.01944000000009) (-96.07417299999986 75.02360500000009) (-96.08306899999997 75.02442900000005) (-96.14222699999999 75.01776100000006) (-96.14750700000002 75.01361100000008) (-96.20083599999992 74.95471200000003) (-96.20333900000003 74.95166000000006) (-96.20666499999993 74.943039) (-96.20388799999995 74.93691999999993) (-96.20584099999996 74.92025799999999) (-96.20973200000003 74.91554300000013) (-96.22138999999999 74.91026300000004) (-96.24777199999988 74.90554800000001) (-96.26834100000002 74.9038700000001) (-96.31527699999998 74.90248100000008) (-96.337219 74.90359500000005) (-96.35749799999996 74.90664700000002) (-96.37361099999998 74.91026300000004) (-96.38722199999995 74.91470300000009) (-96.39666699999992 74.91970800000013) (-96.40306099999998 74.92581200000012) (-96.386124 74.97387700000013) (-96.35749799999996 74.97137500000008) (-96.341385 74.972488) (-96.32806399999998 74.9747010000001) (-96.32055700000001 74.97943099999998) (-96.31834399999997 74.98220800000007) (-96.32223499999986 75.00138900000007) (-96.3311159999999 75.00471500000015) (-96.47666900000002 75.0044400000001) (-96.50083899999993 75.00277700000004) (-96.523056 74.99914599999994) (-96.53388999999999 74.99470500000007) (-96.55972300000002 74.98609899999997) (-96.58029199999999 74.98414600000001) (-96.59999099999999 74.98332200000004) (-96.61416599999995 74.98498499999994) (-96.61694299999999 74.99108899999999) (-96.60472099999998 75.063309) (-96.57139599999994 75.10108900000012) (-96.46305799999993 75.19331399999993) (-96.45639 75.19693000000001) (-96.37860099999995 75.21665999999999) (-96.077789 75.27249100000006) (-95.94804399999998 75.2833250000001) (-95.92250099999995 75.28610200000003) (-95.90333599999991 75.28997800000008) (-95.91055299999994 75.29525799999999) (-95.93443300000001 75.29721100000012) (-95.97805800000003 75.29887400000001) (-96.02667199999996 75.29914900000006) (-96.04998799999993 75.29693600000007) (-96.061935 75.31526200000008) (-96.00361599999997 75.34304799999995) (-95.9324949999999 75.35304300000007) (-95.93471499999998 75.35017399999998) (-95.93472300000002 75.34776299999999) (-95.91999800000002 75.34693900000002) (-95.890289 75.349152) (-95.88744399999996 75.36026800000013) (-95.83677699999987 75.36992600000002) (-95.83078 75.37142900000003) (-95.82978100000003 75.37258900000012) (-95.83061199999986 75.37442800000002) (-95.83278699999994 75.37592300000011) (-95.848274 75.37843299999997) (-95.90677599999998 75.38742800000006) (-95.92777999999987 75.39804100000015) (-96.03332499999993 75.40109300000006) (-96.05526700000001 75.40081800000007) (-96.07888799999989 75.39610300000004) (-96.07917800000001 75.391098) (-96.083618 75.38554399999998) (-96.09973099999996 75.38026400000012) (-96.12609900000001 75.37692300000009) (-96.15110800000002 75.37498499999992) (-96.17527799999999 75.37942499999997) (-96.178879 75.38443000000001) (-96.16194199999995 75.39553799999999) (-96.14973399999991 75.40081800000007) (-96.13500999999997 75.40637200000003) (-96.0958399999999 75.41775500000006) (-96.0625 75.4249880000001) (-95.97416699999997 75.43609600000008) (-95.95834400000001 75.43637100000007) (-95.93638599999997 75.43414300000012) (-95.87416099999996 75.42387400000007) (-95.83104699999996 75.41531400000008) (-95.83254999999997 75.41365100000013) (-95.83322099999998 75.40998800000011) (-95.83104699999996 75.40698200000008) (-95.82588199999998 75.40332000000012) (-95.81438399999996 75.40032200000007) (-95.76955399999986 75.40032200000007) (-95.69110099999995 75.40525800000006) (-95.68249500000002 75.40832499999999) (-95.67610200000001 75.41581700000012) (-95.67832899999996 75.421921) (-95.68472300000002 75.42831400000011) (-95.691666 75.42970300000013) (-95.71583599999991 75.4291530000001) (-95.73416099999992 75.426086) (-95.75862099999995 75.42553700000002) (-95.781677 75.42804000000001) (-95.80055199999993 75.43165600000003) (-95.82501199999996 75.43997200000013) (-95.83000199999992 75.4433140000001) (-95.83694500000001 75.45359800000011) (-95.83805799999999 75.45915200000007) (-95.835556 75.46443199999999) (-95.83222999999998 75.4705350000001) (-95.82417299999997 75.47776799999991) (-95.80055199999993 75.49136400000009) (-95.76222200000001 75.50804100000005) (-95.74972500000001 75.51332100000013) (-95.47000099999997 75.56693999999999) (-95.27528399999994 75.59942600000005) (-95.26417500000002 75.59387200000009) (-95.23443600000002 75.58471700000001) (-95.212784 75.58248900000007) (-95.178604 75.584427) (-95.12470999999988 75.59526100000005) (-95.104172 75.60026600000009) (-95.09333800000002 75.60359199999999) (-95.08583099999998 75.60720800000001) (-95.08416699999998 75.60914600000012) (-95.07528699999995 75.61442600000004) (-95.06332399999991 75.61886600000003) (-95.04444899999987 75.62164300000012) (-94.91776999999996 75.63720700000005) (-94.90167200000002 75.63749700000005) (-94.74137899999994 75.62414600000011) (-94.55972299999996 75.6124880000001) (-94.511124 75.61109900000008) (-94.46556099999998 75.60832199999999) (-94.40417500000001 75.59915200000012) (-94.36389200000002 75.59082000000012)) ((-95.9100039999999 75.56025699999998) (-95.91111799999999 75.55415299999999) (-95.93472300000002 75.54054300000007) (-96.170837 75.4580380000001) (-96.22027600000001 75.45555100000007) (-96.23889200000002 75.45665000000002) (-96.25500499999998 75.46138000000008) (-96.39917000000003 75.51638800000006) (-96.41722099999998 75.52331500000014) (-96.42471299999994 75.52859500000005) (-96.45099599999998 75.52999100000005) (-96.44116199999996 75.53598799999997) (-96.4158329999999 75.54364800000013) (-96.41265900000002 75.54615000000001) (-96.41166699999991 75.54881999999998) (-96.41799200000003 75.55265800000006) (-96.43116799999996 75.55548900000002) (-96.44183299999997 75.55566400000009) (-96.45099599999998 75.55315400000006) (-96.50383799999992 75.53515600000003) (-96.50799599999993 75.53298200000012) (-96.51816599999995 75.526321) (-96.52516199999991 75.51932500000004) (-96.5536039999999 75.50888099999992) (-96.55221599999999 75.50332600000002) (-96.5494379999999 75.49720800000011) (-96.545547 75.49220300000007) (-96.54110700000001 75.48803700000013) (-96.53332499999993 75.48275799999999) (-96.51750199999992 75.47804300000013) (-96.50334199999998 75.47137499999997) (-96.500565 75.4649960000001) (-96.50418099999996 75.4602660000001) (-96.51194800000002 75.45582600000006) (-96.65834000000001 75.38859600000006) (-96.83361799999994 75.35247800000002) (-96.8511049999999 75.35026600000015) (-96.862213 75.35081500000013) (-96.87609899999995 75.35359199999999) (-96.93249499999996 75.376083) (-97.03083800000002 75.45443700000004) (-97.05305499999992 75.49220300000007) (-97.05305499999992 75.49720800000011) (-97.00695799999994 75.50833100000011) (-96.94082599999996 75.52165200000002) (-96.91361999999992 75.52638200000007) (-96.89167799999996 75.52916000000005) (-96.666946 75.55276500000002) (-96.469383 75.58842500000003) (-96.46655299999992 75.59193399999992) (-96.46772799999991 75.59909100000004) (-96.47005499999989 75.60226400000005) (-96.42250099999995 75.62359600000008) (-96.42443800000001 75.6355440000001) (-96.41500899999994 75.64694199999997) (-96.39639299999999 75.64999400000005) (-96.37971500000003 75.651093) (-96.34722899999991 75.65138200000013) (-96.335556 75.65081800000002) (-96.314438 75.6477660000001) (-96.241104 75.62997400000006) (-96.13333099999994 75.60664400000007) (-96.11582900000002 75.60386699999998) (-96.101944 75.60359199999999) (-96.02543600000001 75.60284400000006) (-95.95777899999996 75.58360300000004) (-95.93888900000002 75.57748400000003) (-95.92388899999997 75.57165500000002) (-95.91639700000002 75.56637599999999) (-95.9100039999999 75.56025699999998)) ((-96.954453 75.59553499999998) (-96.9750059999999 75.59471100000002) (-96.99665800000002 75.59776299999993) (-97.00500499999998 75.60443100000009) (-97.00195300000001 75.61080900000007) (-96.98860199999996 75.61804200000006) (-96.97860700000001 75.62303199999997) (-96.96083099999998 75.62747200000013) (-96.779449 75.6602630000001) (-96.75195299999996 75.66470300000009) (-96.72972099999998 75.66526799999997) (-96.720551 75.66415399999994) (-96.71583599999997 75.65998800000006) (-96.718887 75.6538700000001) (-96.722305 75.65295400000002) (-96.74027999999993 75.64694199999997) (-96.84916699999997 75.61331200000006) (-96.954453 75.59553499999998)) ((-96.5791779999999 75.7369230000001) (-96.69665500000002 75.73082) (-96.710556 75.73359700000009) (-96.71722399999999 75.73970000000003) (-96.67860399999995 75.77748100000002) (-96.666946 75.78665200000012) (-96.66082799999998 75.78942900000004) (-96.54110700000001 75.82221999999996) (-96.52528399999994 75.82638499999996) (-96.50750699999998 75.82832300000013) (-96.48443599999996 75.82720899999993) (-96.46806299999992 75.822495) (-96.45584100000002 75.81776400000007) (-96.45750399999997 75.801086) (-96.45916699999998 75.78942900000004) (-96.53971899999999 75.74331699999999) (-96.5536039999999 75.73858600000005) (-96.5791779999999 75.7369230000001)) ((-111.79998799999998 75.839157) (-111.823624 75.83859300000006) (-111.86582899999996 75.84054599999996) (-111.900284 75.84359699999999) (-111.91722099999993 75.84693900000013) (-111.92250100000001 75.85276799999997) (-111.91972399999997 75.85775799999999) (-111.90139799999997 75.86387600000012) (-111.85665899999992 75.867752) (-111.79972799999996 75.87109399999997) (-111.61305199999993 75.88192700000013) (-111.59528399999999 75.8827510000001) (-111.58306899999991 75.88192700000013) (-111.5786129999999 75.879974) (-111.58194699999996 75.87608300000011) (-111.59306300000003 75.87303200000008) (-111.62917299999992 75.85693400000002) (-111.64806399999998 75.85192899999998) (-111.75695799999994 75.84165999999993) (-111.79998799999998 75.839157)) ((-122.340843 75.86276199999998) (-122.36277799999999 75.8580320000001) (-122.39862099999993 75.85942100000011) (-122.66471899999993 75.89387499999998) (-122.69167299999998 75.90026900000004) (-122.693604 75.90220600000004) (-122.69554099999993 75.90803500000004) (-122.68277 75.911652) (-122.633331 75.91970800000007) (-122.58222999999998 75.92192100000005) (-122.53751399999993 75.922485) (-122.37917299999992 75.915817) (-122.35305800000003 75.9144290000001) (-122.337784 75.91137700000002) (-122.32833900000003 75.905823) (-122.32417299999997 75.899719) (-122.33473200000003 75.86914100000001) (-122.340843 75.86276199999998)) ((-121.09306299999997 75.72608900000006) (-121.1100009999999 75.72470099999998) (-121.14306599999992 75.72581500000013) (-121.27555799999993 75.74748199999999) (-121.28832999999997 75.75277700000004) (-121.28582799999998 75.75888100000009) (-121.27194199999997 75.77053799999999) (-121.26306199999993 75.77415499999995) (-121.11694299999999 75.79582199999999) (-121.04332699999992 75.80886800000013) (-121.02944899999989 75.81137100000012) (-121.01917299999997 75.81805400000007) (-121.01500699999997 75.82470700000005) (-121.00083899999993 75.85664400000002) (-120.99833699999988 75.867752) (-121.00695799999988 75.87970000000007) (-121.01363399999997 75.88472000000007) (-121.04222099999998 75.89414999999997) (-121.04750099999995 75.89999399999999) (-121.04250299999995 75.90554800000001) (-121.03859699999998 75.9083250000001) (-120.997772 75.92637600000006) (-120.98000300000001 75.92942799999997) (-120.87777699999998 75.93609600000013) (-120.86776700000001 75.92469800000015) (-120.86776700000001 75.91331500000013) (-120.86972000000003 75.88108799999998) (-120.87110899999993 75.87553400000013) (-120.88474300000001 75.844986) (-120.89835399999998 75.82582100000002) (-120.921112 75.80331400000011) (-120.93804899999998 75.79054300000001) (-120.99388099999993 75.75776700000011) (-121.01862299999993 75.74443100000013) (-121.03278399999994 75.73776200000009) (-121.05248999999992 75.7327580000001) (-121.09306299999997 75.72608900000006)) ((-95.79276999999996 75.899719) (-95.80943299999996 75.89471400000014) (-95.818893 75.90721100000007) (-95.82556199999999 75.91331500000013) (-95.84777799999989 75.92942799999997) (-95.862503 75.93609600000013) (-95.88249200000001 75.94108600000004) (-95.89695699999999 75.94775399999997) (-95.89999399999999 75.95387300000004) (-95.89083900000003 75.959427) (-95.86000100000001 75.96666000000005) (-95.79666099999997 75.97331200000008) (-95.770554 75.9749910000001) (-95.74694799999992 75.97387700000013) (-95.73582499999992 75.96832300000011) (-95.73693800000001 75.9624940000001) (-95.75195299999996 75.92747500000007) (-95.76194799999996 75.91609200000005) (-95.77972399999993 75.90498400000007) (-95.79276999999996 75.899719)) ((-94.40556300000003 75.75082400000008) (-94.5827789999999 75.74581900000004) (-94.629166 75.74609400000008) (-94.67610200000001 75.74775699999998) (-94.72084000000001 75.75387600000005) (-94.739441 75.75749200000007) (-94.77749599999993 75.76860000000005) (-94.79527299999995 75.77581800000007) (-94.80915799999997 75.78248600000006) (-94.82223499999998 75.79414400000007) (-94.89889499999992 75.91276599999998) (-94.90278599999999 75.91943400000014) (-94.90527299999997 75.92553700000008) (-94.90611299999995 75.93081699999999) (-94.904449 75.9369200000001) (-94.89527899999996 75.94220000000001) (-94.87998999999996 75.94552600000003) (-94.86555499999997 75.94747899999999) (-94.81361399999997 75.95054600000009) (-94.73777799999999 75.95220899999998) (-94.69972200000001 75.95555100000013) (-94.53832999999986 75.98609900000008) (-94.48194899999993 75.97442600000005) (-94.46694899999989 75.96859700000005) (-94.45333899999991 75.96192900000011) (-94.44972199999995 75.95526100000012) (-94.443604 75.93830900000012) (-94.42027299999995 75.86859099999998) (-94.41027799999995 75.86192299999999) (-94.37083399999995 75.84220900000008) (-94.32223499999998 75.81498699999997) (-94.30555700000002 75.80304000000001) (-94.28778099999994 75.78387500000002) (-94.28805499999999 75.77748100000002) (-94.291382 75.77221700000001) (-94.29695099999998 75.766388) (-94.31027199999994 75.76138300000014) (-94.32640099999998 75.75721700000008) (-94.35388199999994 75.75387600000005) (-94.40556300000003 75.75082400000008)) ((-103.137787 75.74275200000011) (-103.20667300000002 75.74275200000011) (-103.3011019999999 75.74470500000007) (-103.32389799999999 75.74720800000006) (-103.36888099999999 75.75387600000005) (-103.38082899999995 75.75943000000001) (-103.382767 75.76554900000002) (-103.31139399999995 75.80525200000005) (-103.07749899999999 75.89082300000007) (-103.05943300000001 75.89637800000014) (-103.03751399999993 75.90165700000011) (-103.01194799999996 75.9060970000001) (-102.98693800000001 75.90942400000006) (-102.69611399999997 75.94664) (-102.59889199999986 75.953598) (-102.52278099999995 75.95803800000004) (-102.43360899999999 75.96415700000006) (-102.291382 75.97720300000015) (-102.21749899999998 75.98553500000014) (-102.19138299999997 75.98969999999997) (-102.16471899999993 75.99054000000001) (-102.07861300000002 75.97137500000008) (-101.98916599999995 75.95082100000008) (-101.98332199999987 75.94581600000004) (-101.98860200000001 75.93441800000005) (-102.020554 75.92553700000008) (-102.09472700000003 75.911652) (-102.14639299999993 75.90332000000001) (-102.19638099999997 75.899719) (-102.29638699999998 75.89498900000012) (-102.31916799999999 75.89305100000001) (-102.346657 75.88943499999993) (-102.39417299999997 75.88081400000004) (-102.43055699999991 75.86998) (-102.44082600000002 75.86442599999998) (-102.44943199999994 75.85832199999993) (-102.45584099999996 75.85247800000013) (-102.46000699999996 75.84721400000012) (-102.47165699999988 75.81832900000006) (-102.48277300000001 75.80636600000003) (-102.49694799999992 75.79553199999998) (-102.50917099999998 75.78942900000004) (-102.54527300000001 75.77970900000014) (-102.59028599999994 75.77053799999999) (-102.61165599999998 75.76721199999997) (-102.636124 75.76470899999998) (-102.86638599999998 75.753601) (-103.015289 75.74720800000006) (-103.137787 75.74275200000011)) ((-122.81916799999999 76.06053200000008) (-122.78056300000003 76.05720500000012) (-122.68776700000001 76.05998200000005) (-122.66194200000001 76.05693100000002) (-122.64277599999997 76.05247500000013) (-122.630829 76.04664600000012) (-122.72501399999987 76.02360500000009) (-122.88194299999998 76.01110800000009) (-122.89250199999998 76.01361100000003) (-122.89611799999994 76.02693199999999) (-122.89222699999999 76.03109699999999) (-122.85082999999997 76.05720500000012) (-122.81916799999999 76.06053200000008)) ((-102.38999899999993 76.0836030000001) (-102.37554899999998 76.07916300000011) (-102.37138399999998 76.07916300000011) (-102.36805699999996 76.0772090000001) (-102.3563769999999 76.07582099999996) (-102.35333300000002 76.07388300000002) (-102.33889799999997 76.06944300000004) (-102.33249699999999 76.06553600000007) (-102.32167099999998 76.0535890000001) (-102.31639100000001 76.036926) (-102.31889299999989 76.03109699999999) (-102.319458 76.02470400000004) (-102.32972699999993 76.01582300000013) (-102.34388699999994 76.01026900000011) (-102.36582900000002 76.00582900000012) (-102.41665599999999 76.0002750000001) (-102.51722699999993 75.99108899999999) (-102.56777999999991 75.98553500000014) (-102.695267 75.97331200000008) (-102.71472199999988 75.97026100000005) (-102.73972299999997 75.96804800000012) (-102.79055800000003 75.96138000000013) (-102.81139399999995 75.95999099999995) (-102.93611099999998 75.94802900000002) (-103.01027699999997 75.94303899999994) (-103.08528099999995 75.93580600000013) (-103.15695199999993 75.92581200000012) (-103.21888699999994 75.9202580000001) (-103.26500699999997 75.9144290000001) (-103.28943600000002 75.91304000000014) (-103.339447 75.90803500000004) (-103.37998999999996 75.9060970000001) (-103.39639299999993 75.90443400000004) (-103.43305999999995 75.90332000000001) (-103.45333899999997 75.90165700000011) (-103.52443699999998 75.89888000000002) (-103.59277299999997 75.89721700000007) (-103.61332700000003 75.8955380000001) (-103.63474300000001 75.89109800000006) (-103.65556300000003 75.888596) (-103.6997219999999 75.887497) (-103.72332799999987 75.88916000000012) (-103.77111799999994 75.89637800000014) (-103.81166100000002 75.89942899999994) (-103.88806199999993 75.89804100000003) (-103.901947 75.89860499999998) (-103.91471899999993 75.90248100000008) (-103.91500899999994 75.90776099999994) (-103.91722099999993 75.91360500000013) (-103.92555199999998 75.91914400000013) (-103.93611099999998 75.924149) (-103.964722 75.93441800000005) (-103.97165699999994 75.93830900000012) (-103.94220699999994 75.9427490000001) (-103.901947 75.94386299999991) (-103.82556199999999 75.95082100000008) (-103.80248999999998 75.95387300000004) (-103.78527799999995 75.95748900000007) (-103.77139299999988 75.96304300000008) (-103.75834700000001 75.96666000000005) (-103.7083439999999 75.97248800000011) (-103.6877669999999 75.97387700000013) (-103.598343 75.97720300000015) (-103.57444799999996 75.97665400000005) (-103.55471799999998 75.97526600000015) (-103.5225069999999 75.97554000000008) (-103.49694799999997 75.97998000000007) (-103.474716 75.98525999999998) (-103.45694700000001 75.99081400000011) (-103.41306299999997 76.00166300000001) (-103.391388 76.00610400000011) (-103.36582899999996 76.00942999999995) (-103.34028599999988 76.01388499999996) (-103.31500199999999 76.01721200000009) (-103.29028299999999 76.01859999999999) (-103.26363399999997 76.01944000000009) (-103.22138999999993 76.01915000000002) (-103.196663 76.02053799999999) (-103.178879 76.02499400000005) (-103.15666199999993 76.03665200000006) (-103.13667299999992 76.04165600000005) (-103.120003 76.04332000000005) (-103.05110200000001 76.04359399999998) (-103.00639299999995 76.04470799999996) (-102.98110999999989 76.04693600000013) (-102.95556599999998 76.05026199999998) (-102.91555800000003 76.06025700000009) (-102.88971700000002 76.06442300000015) (-102.86833199999995 76.06694000000005) (-102.86028299999992 76.06666600000011) (-102.85582699999992 76.06776400000001) (-102.75666799999993 76.0730440000001) (-102.708618 76.07748400000008) (-102.68138099999999 76.07916300000011) (-102.65805099999994 76.08221400000014) (-102.60777299999995 76.08581499999997) (-102.53138699999994 76.08943199999993) (-102.46806300000003 76.09027100000009) (-102.42804699999999 76.08943199999993) (-102.40416699999997 76.08776900000004) (-102.39639299999999 76.08665500000006) (-102.38999899999993 76.0836030000001)) ((-118.31639100000001 75.57249500000006) (-118.35472099999993 75.55886800000002) (-118.58306900000002 75.49941999999999) (-118.60472099999998 75.49636800000007) (-118.7036129999999 75.50305200000008) (-118.72250400000001 75.50444000000005) (-118.82749899999999 75.53276100000011) (-118.87361099999998 75.547485) (-118.87777699999998 75.553314) (-118.92804699999999 75.56275900000009) (-118.95305599999995 75.56469700000002) (-119.08194700000001 75.56776400000012) (-119.130829 75.56693999999999) (-119.19695299999995 75.56248499999992) (-119.22250400000001 75.56526200000002) (-119.34028599999999 75.57943699999993) (-119.36749299999991 75.58415199999996) (-119.38333099999994 75.58915700000006) (-119.39527899999996 75.59471100000002) (-119.40583800000002 75.60054000000002) (-119.408051 75.60582000000011) (-119.40471600000001 75.61192300000005) (-119.39750700000002 75.6183170000001) (-119.37554899999998 75.63108800000003) (-119.27528399999994 75.67469800000003) (-119.18831599999987 75.70248400000008) (-119.11389200000002 75.72053500000004) (-118.95472699999999 75.778595) (-118.78888699999999 75.84304800000007) (-118.762787 75.85693400000002) (-118.75834699999996 75.86219800000003) (-118.75334199999992 75.86637900000011) (-118.71694899999994 75.8827510000001) (-118.61916399999996 75.91554300000007) (-118.58139 75.92498799999998) (-118.56388899999996 75.92858900000004) (-118.40444899999994 75.96081500000008) (-118.36776699999996 75.966385) (-118.34028599999999 75.96748400000001) (-118.19415300000003 75.96748400000001) (-118.16832699999998 75.96832300000011) (-118.15222199999994 75.97137500000008) (-118.13751200000002 75.97970599999996) (-118.13137799999998 75.98553500000014) (-118.13137799999998 75.99136399999998) (-118.12748699999992 75.9974820000001) (-118.10500299999995 76.02388000000008) (-118.08860800000002 76.0294340000001) (-118.07140400000003 76.03414900000013) (-118.03751399999987 76.03831500000001) (-117.99804699999993 76.03997800000013) (-117.95722999999992 76.04304500000006) (-117.93360899999993 76.04748500000005) (-117.89972699999998 76.05748) (-117.88971699999996 76.06080600000001) (-117.88500999999997 76.0660860000001) (-117.89138799999995 76.07222000000013) (-117.89277600000003 76.07748400000008) (-117.88612399999988 76.07971200000003) (-117.77887699999991 76.10859700000009) (-117.72609699999998 76.11554000000007) (-117.70694700000001 76.11720300000002) (-117.662216 76.11775199999994) (-117.64111299999996 76.11665299999999) (-117.62304699999999 76.1144260000001) (-117.51944700000001 76.099716) (-117.49166899999989 76.09498600000012) (-117.47138999999993 76.08888200000007) (-117.46389799999997 76.083054) (-117.48916600000001 76.04693600000013) (-117.57305899999994 75.98193400000008) (-117.681107 75.92109700000009) (-117.70445299999989 75.91693099999998) (-117.74694799999997 75.91081200000013) (-117.77555799999993 75.89888000000002) (-117.83833299999998 75.85998500000005) (-117.93721 75.78526299999999) (-117.94499199999996 75.77915999999999) (-117.95221700000002 75.771927) (-117.95638999999994 75.76582299999995) (-117.95638999999994 75.75999500000006) (-117.97138999999993 75.72886700000004) (-118.01583899999997 75.69941699999998) (-118.06221 75.68580600000001) (-118.096947 75.6785890000001) (-118.11389200000002 75.67387400000007) (-118.14277599999997 75.66387900000012) (-118.22193900000002 75.63388100000003) (-118.26363400000002 75.61692800000009) (-118.2675089999999 75.61285399999997) (-118.266953 75.60998500000011) (-118.26834099999991 75.59165999999999) (-118.31639100000001 75.57249500000006)) ((-78.92639199999996 75.875809) (-78.91416900000002 75.87303200000008) (-78.9041749999999 75.86720300000007) (-78.88137799999998 75.85331700000006) (-78.87666300000001 75.84915200000006) (-78.87943999999993 75.84414700000002) (-78.89778100000001 75.83970600000009) (-78.921112 75.83749400000005) (-79.04888900000003 75.836929) (-79.06777999999997 75.84027100000014) (-79.07278399999996 75.84443700000003) (-79.06861899999996 75.8483280000001) (-79.05749499999996 75.85331700000006) (-79.04249599999991 75.8580320000001) (-79.02166699999992 75.86747700000001) (-79.03167699999995 75.8708190000001) (-79.05471799999998 75.87275700000004) (-79.26889 75.87525900000014) (-79.31945799999994 75.87359600000002) (-79.34306300000003 75.87109399999997) (-79.36138900000003 75.86692800000003) (-79.40833999999995 75.85276799999997) (-79.42027300000001 75.84803800000009) (-79.42805499999997 75.84248400000013) (-79.45861799999994 75.81080600000007) (-79.59805299999994 75.86137400000007) (-79.62027 75.86276199999998) (-79.70584099999996 75.86053500000008) (-79.726944 75.86109900000002) (-79.73999000000003 75.86442599999998) (-79.75222799999989 75.8785860000001) (-79.58000199999998 75.94525100000004) (-79.56750499999998 75.94914200000011) (-79.39695699999999 76.00193800000005) (-79.375 76.00555400000007) (-79.27278099999995 76.02804599999996) (-79.13778699999995 76.0772090000001) (-79.12971499999998 76.082764) (-79.12193299999996 76.088593) (-79.11305199999993 76.10054000000014) (-79.09138499999989 76.1144260000001) (-79.081955 76.11637900000005) (-78.92388899999997 76.12109400000008) (-78.9041749999999 76.11970500000007) (-78.89306599999998 76.11554000000007) (-78.82167099999992 76.09832800000004) (-78.80583200000001 76.09304800000001) (-78.79804999999988 76.08638000000002) (-78.79916400000002 76.07998700000007) (-78.82583599999992 76.05802900000009) (-78.83389299999999 76.05247500000013) (-78.845551 76.04748500000005) (-78.86138900000003 76.04332000000005) (-78.92166099999992 76.03193700000003) (-78.99861099999998 76.01499899999999) (-79.06973299999993 75.99832200000014) (-79.08500700000002 75.99386600000008) (-79.14472999999998 75.97526600000015) (-79.15611299999995 75.96998600000006) (-79.16665599999993 75.96415700000006) (-79.17193600000002 75.95887800000008) (-79.17639200000002 75.95277400000003) (-79.17694099999994 75.94636500000001) (-79.17443799999995 75.93942300000009) (-79.16833500000001 75.93193100000013) (-79.14028899999994 75.91886899999997) (-79.11193800000001 75.91026300000004) (-79.029449 75.88832100000013) (-79.01028400000001 75.88472000000007) (-78.98944099999994 75.88192700000013) (-78.943604 75.87803600000007) (-78.92639199999996 75.875809)) ((-94.843613 76.12220800000006) (-94.83111600000001 76.09664900000007) (-94.87027 76.06887799999998) (-94.88917500000002 76.05802900000009) (-94.90556299999992 76.05386400000009) (-94.92860399999995 76.05108600000011) (-95.00666799999999 76.04748500000005) (-95.02722199999994 76.0477600000001) (-95.04888899999997 76.05081200000001) (-95.06249999999994 76.05609099999998) (-95.08639499999992 76.06805400000002) (-95.10194399999995 76.07777400000009) (-95.139725 76.10775799999993) (-95.14416499999993 76.11192299999993) (-95.14723200000003 76.11692799999997) (-95.14639299999999 76.118042) (-95.12110899999999 76.1185910000001) (-95.09445199999999 76.11360200000013) (-95.07694999999995 76.1083220000001) (-95.06054699999999 76.10582) (-95.03056299999997 76.10470600000002) (-95.01306199999993 76.10582) (-94.99276700000001 76.10942100000005) (-94.854446 76.13665800000001) (-94.843613 76.12220800000006)) ((-81.327789 76.14721700000001) (-81.33860799999997 76.14637800000008) (-81.45249899999988 76.15582299999994) (-81.46250899999995 76.15887500000008) (-81.456955 76.16360500000008) (-81.41583300000002 76.17692600000004) (-81.37805199999997 76.184418) (-81.34889199999998 76.1874850000001) (-81.29444899999993 76.18775900000003) (-81.26722699999999 76.18775900000003) (-81.22166399999998 76.18553199999997) (-81.20333899999997 76.18109100000004) (-81.20140100000003 76.17776500000002) (-81.20861799999994 76.172211) (-81.30610699999988 76.15109300000012) (-81.327789 76.14721700000001)) ((-102.53083800000002 76.22331200000002) (-102.52722199999994 76.2169340000001) (-102.53138699999994 76.21165500000012) (-102.58056599999986 76.15248100000002) (-102.636124 76.12553400000007) (-102.65055799999999 76.11998000000011) (-102.67138699999998 76.1141510000001) (-102.73665599999998 76.09860199999997) (-102.78056300000003 76.08970600000004) (-102.80638099999999 76.08554100000003) (-102.85777300000001 76.0788730000001) (-102.93360899999999 76.07083100000011) (-103.34221599999995 76.03665200000006) (-103.36472300000003 76.03581200000002) (-103.67999299999997 76.03414900000013) (-103.82000700000003 76.03137200000003) (-103.86638600000003 76.03082300000005) (-103.91443599999997 76.03166200000004) (-103.962219 76.03471400000012) (-103.97277799999995 76.03970300000009) (-103.92388899999997 76.04081700000006) (-103.87832599999996 76.04386900000003) (-103.86945299999996 76.04748500000005) (-103.88861099999997 76.049713) (-103.98332199999999 76.05720500000012) (-104.06054699999999 76.06219500000003) (-104.08677699999998 76.06053200000008) (-104.08743999999996 76.05819699999995) (-104.13082899999989 76.05636600000003) (-104.39111300000002 76.07832300000007) (-104.40833999999995 76.08221400000014) (-104.47833300000002 76.13581799999997) (-104.48277299999995 76.14221199999997) (-104.46389799999992 76.15887500000008) (-104.45417800000001 76.16442900000004) (-104.31582600000002 76.20803799999999) (-104.29804999999993 76.21249400000005) (-104.27250700000002 76.21609500000011) (-104.24722300000002 76.21859699999999) (-104.17223399999995 76.22415200000012) (-104.14806399999986 76.2227630000001) (-104.07472200000001 76.22221399999995) (-103.9569469999999 76.23304700000011) (-103.91805999999997 76.23997500000013) (-103.85138699999999 76.25000000000006) (-103.59445199999999 76.26527400000009) (-103.33693699999998 76.27998400000007) (-103.13137799999993 76.30304000000007) (-103.11000100000001 76.30470300000002) (-103.05999799999995 76.30636600000014) (-102.86472299999997 76.31109599999996) (-102.81696299999999 76.31219499999997) (-102.765556 76.311646) (-102.72693599999997 76.30581699999999) (-102.66915899999992 76.2958220000001) (-102.66555799999998 76.29470800000013) (-102.65222199999994 76.28776600000003) (-102.64277599999997 76.26998900000012) (-102.633621 76.25749199999996) (-102.62554899999992 76.251938) (-102.6036069999999 76.24552900000009) (-102.55832700000002 76.23580900000002) (-102.54055799999998 76.22943100000009) (-102.53083800000002 76.22331200000002)) ((-89.39889499999998 76.43553200000008) (-89.425003 76.43553200000008) (-89.59916699999997 76.44026200000013) (-89.61361699999998 76.44081100000005) (-89.62554899999998 76.444977) (-89.615005 76.449142) (-89.55915800000002 76.4705350000001) (-89.53306599999996 76.47665400000011) (-89.49499499999996 76.47248800000006) (-89.48832700000003 76.46804800000001) (-89.46583599999991 76.46220399999999) (-89.44638099999992 76.457764) (-89.40834000000001 76.45054600000014) (-89.38612399999994 76.44775400000009) (-89.37805199999997 76.44413800000001) (-89.38055399999996 76.43914799999999) (-89.39889499999998 76.43553200000008)) ((-83.962784 76.42637599999995) (-83.98611499999998 76.42330900000002) (-84.00917099999992 76.42581200000001) (-84.10943600000002 76.44442700000013) (-84.12388599999997 76.451096) (-84.13944999999995 76.50721700000008) (-84.12805200000003 76.50999500000006) (-84.0975039999999 76.50665300000014) (-84.01362599999993 76.49803200000002) (-83.99249299999985 76.49498000000011) (-83.976944 76.49108900000004) (-83.91833499999996 76.46943700000003) (-83.90805099999994 76.4649960000001) (-83.962784 76.42637599999995)) ((-104.053879 76.56303400000007) (-104.03388999999999 76.559708) (-103.87888299999997 76.57360800000009) (-103.86860699999994 76.579163) (-103.86665299999993 76.58499100000012) (-103.87138400000003 76.59664900000013) (-103.86721799999998 76.60304300000001) (-103.85944399999994 76.60720800000001) (-103.82640100000003 76.61831700000005) (-103.804169 76.62191800000011) (-103.78751399999993 76.62052900000015) (-103.58194699999996 76.54775999999998) (-103.58805799999993 76.54193099999998) (-103.59249899999998 76.53581200000013) (-103.59166700000003 76.53137200000009) (-103.587784 76.52499399999994) (-103.57028199999996 76.5211030000001) (-103.404449 76.49470500000012) (-103.38445299999995 76.49220300000002) (-103.321121 76.49498000000011) (-103.24500299999994 76.48553500000003) (-103.05777 76.457764) (-103.03666699999991 76.4538730000001) (-103.01418299999995 76.44775400000009) (-103.0080569999999 76.44165000000004) (-103.00446299999999 76.43525700000009) (-103.00446299999999 76.42997700000001) (-103.011124 76.42330900000002) (-103.01917300000002 76.41804500000006) (-103.0297159999999 76.41249100000005) (-103.0425029999999 76.40637200000003) (-103.098343 76.38472000000002) (-103.17250099999995 76.36276200000003) (-103.20472699999993 76.35470599999996) (-103.281387 76.33692900000011) (-103.37805200000003 76.32554600000009) (-103.55444299999999 76.31025700000004) (-103.70056199999993 76.30415299999999) (-103.75195299999996 76.30358900000004) (-103.848343 76.31025700000004) (-104.06194299999993 76.31749000000002) (-104.11165599999998 76.31637600000005) (-104.33500699999996 76.318604) (-104.37888299999992 76.32331799999997) (-104.396118 76.32777400000003) (-104.40471599999995 76.33332800000005) (-104.404449 76.334427) (-104.38971700000002 76.34275800000012) (-104.37581599999993 76.34832800000004) (-104.362213 76.35220299999997) (-104.34333799999996 76.3541560000001) (-104.32972699999999 76.35803200000004) (-104.328056 76.363876) (-104.39111300000002 76.46110500000003) (-104.43388399999998 76.484985) (-104.44888300000002 76.49108900000004) (-104.47332799999998 76.49331699999999) (-104.48249800000002 76.49054000000012) (-104.483612 76.48580899999996) (-104.49749800000001 76.48109399999993) (-104.52278100000001 76.480545) (-104.56388900000002 76.48220800000013) (-104.65888999999987 76.54582200000004) (-104.66583300000002 76.55165100000005) (-104.63722200000001 76.60331700000012) (-104.56304899999998 76.61276199999998) (-104.53666699999997 76.61720300000007) (-104.445267 76.63581800000003) (-104.40666199999987 76.6455380000001) (-104.37416100000002 76.65582300000005) (-104.35193600000002 76.66026300000004) (-104.31500199999994 76.66387900000012) (-104.26750199999998 76.66720600000002) (-104.21665999999999 76.66832000000005) (-104.13417099999998 76.66943400000002) (-104.05332899999996 76.66470300000009) (-104.031113 76.66165200000006) (-103.96333299999998 76.64999400000005) (-103.93971299999998 76.64471400000014) (-103.926941 76.63804600000014) (-103.9225009999999 76.63360599999999) (-103.92610200000001 76.62191800000011) (-103.93831599999999 76.61053500000014) (-103.95861799999994 76.59915200000012) (-104.02778599999988 76.579163) (-104.051941 76.56887800000004) (-104.053879 76.56303400000007)) ((-98.41805999999991 76.66832000000005) (-98.403885 76.66137700000002) (-98.41393999999991 76.64749100000006) (-98.42360699999995 76.64148699999993) (-98.42578099999997 76.63848900000005) (-98.42527799999999 76.63564300000013) (-98.429169 76.62692299999998) (-98.41972399999992 76.62248200000005) (-98.37609900000001 76.61192300000005) (-98.35777300000001 76.60832199999999) (-98.281387 76.60220300000015) (-98.18055700000002 76.58692900000005) (-98.18971299999998 76.58027600000008) (-98.24276699999996 76.57165500000013) (-98.258621 76.57331800000009) (-98.27833599999997 76.58110000000005) (-98.29834 76.5852660000001) (-98.319458 76.58859300000006) (-98.36250299999995 76.59332300000011) (-98.395554 76.59443700000008) (-98.40194699999995 76.5919340000001) (-98.39889499999992 76.58137500000004) (-98.37805199999997 76.57222000000002) (-98.35777300000001 76.56553600000012) (-98.32278400000001 76.56109600000013) (-98.08056599999998 76.5310970000001) (-97.94444299999998 76.51805100000013) (-97.8977809999999 76.51582300000001) (-97.80777 76.5144350000001) (-97.76445000000001 76.51054400000004) (-97.75029 76.50694299999998) (-97.69332899999995 76.48776200000009) (-97.68472299999996 76.47164900000007) (-97.66221599999994 76.42526199999998) (-97.6625059999999 76.41943400000008) (-97.67027300000001 76.41499299999998) (-97.70695499999994 76.40554800000007) (-97.718887 76.40109300000006) (-97.72721899999999 76.39553799999999) (-97.731674 76.38998400000014) (-97.76139799999999 76.334991) (-97.728882 76.282761) (-97.7261049999999 76.27832000000006) (-97.699432 76.26666300000011) (-97.64805599999994 76.25027500000004) (-97.61054999999999 76.24220300000007) (-97.59167499999995 76.23692299999999) (-97.57556199999999 76.23136900000003) (-97.523056 76.20582600000012) (-97.51695299999994 76.19999700000005) (-97.50917099999998 76.188873) (-97.4949949999999 76.14888000000013) (-97.49444599999987 76.13888500000007) (-97.50306699999987 76.12747200000007) (-97.51777600000003 76.11914100000013) (-97.54249600000003 76.1083220000001) (-97.56332399999997 76.097488) (-97.58833300000003 76.080826) (-97.65638699999994 75.97276299999999) (-97.64750700000002 75.94442700000008) (-97.64555399999989 75.93887300000006) (-97.64222699999993 75.9327550000001) (-97.612503 75.9019320000001) (-97.597778 75.88943499999993) (-97.597778 75.84693900000013) (-97.6541749999999 75.79832499999998) (-97.66416900000002 75.79332000000011) (-97.693604 75.78581200000008) (-97.70750399999997 75.78332499999999) (-97.837219 75.76554900000002) (-97.91332999999997 75.75166300000006) (-97.93055700000002 75.74693300000001) (-97.93859899999995 75.74136400000003) (-97.87054399999994 75.73054499999995) (-97.82722499999988 75.7269290000001) (-97.69027699999987 75.72053500000004) (-97.42555199999998 75.69220000000007) (-97.40444899999994 75.68803400000013) (-97.38667299999997 75.68275499999999) (-97.37582399999985 75.67637600000012) (-97.36999500000002 75.6708220000001) (-97.368607 75.65942400000012) (-97.36915599999998 75.65332000000006) (-97.38473499999998 75.64332600000006) (-97.39445499999994 75.63832100000002) (-97.41000399999996 75.62081899999998) (-97.41194200000001 75.61554000000001) (-97.42388900000003 75.52859500000005) (-97.42250100000001 75.50637799999998) (-97.41749599999997 75.49470500000012) (-97.40139799999986 75.45860299999998) (-97.398056 75.45248400000014) (-97.37832600000002 75.43414300000012) (-97.34973099999996 75.419983) (-97.33056599999992 75.414154) (-97.29388399999999 75.40554800000007) (-97.28500399999996 75.40220599999998) (-97.2808379999999 75.39694199999997) (-97.29333499999996 75.39082300000013) (-97.30555700000002 75.39027400000003) (-97.32055700000001 75.391098) (-97.34167500000001 75.3938750000001) (-97.441666 75.41499299999998) (-97.46916199999998 75.4227600000001) (-97.48416099999992 75.42942800000009) (-97.49610899999999 75.44220000000007) (-97.49888599999997 75.469986) (-97.49665800000002 75.4785920000001) (-97.57362399999988 75.51304600000014) (-97.7119449999999 75.56666600000005) (-97.728882 75.57026700000006) (-97.74415599999998 75.57110600000004) (-97.76251199999996 75.56805400000013) (-97.81806199999988 75.54898100000014) (-97.82755299999991 75.545815) (-97.82705699999991 75.53981799999997) (-97.82172400000002 75.53732300000013) (-97.81156199999992 75.53515600000003) (-97.802055 75.53532400000006) (-97.801941 75.52442900000011) (-97.78999299999992 75.51887499999998) (-97.77416999999991 75.50833100000011) (-97.758896 75.49664300000006) (-97.74804699999987 75.48442100000011) (-97.74472000000003 75.47831700000006) (-97.74333200000001 75.47192400000012) (-97.74526999999995 75.4666600000001) (-97.75639299999995 75.46220400000004) (-97.78332499999988 75.45748900000001) (-97.80749499999996 75.45665000000002) (-97.83583099999998 75.46081500000003) (-97.84083599999985 75.4649960000001) (-97.84500100000002 75.469986) (-97.8556749999999 75.48448200000001) (-97.85600299999993 75.48748800000004) (-97.85800199999989 75.49464400000005) (-97.85916900000001 75.49798599999997) (-97.86983499999991 75.50116000000008) (-97.88233899999994 75.5034940000001) (-97.90834000000001 75.51332100000013) (-97.93249500000002 75.512497) (-97.95195000000001 75.50749200000013) (-98.041672 75.4833220000001) (-98.04333500000001 75.48136899999997) (-97.98554999999999 75.45721400000014) (-97.95750399999991 75.44720499999994) (-97.93331899999998 75.44802900000013) (-97.91111799999993 75.44609099999997) (-97.78277600000001 75.42831400000011) (-97.77471899999995 75.42303500000014) (-97.79361 75.41304000000002) (-97.80860899999993 75.40887500000002) (-97.9344329999999 75.40748600000006) (-97.98472600000002 75.40887500000002) (-98.00472999999988 75.41360500000008) (-98.02806099999992 75.41387900000001) (-98.01989000000003 75.40704299999999) (-98.0287249999999 75.40454100000011) (-98.03238699999991 75.40087900000015) (-98.02955600000001 75.39837599999998) (-98.02122500000002 75.39521000000002) (-97.96055599999994 75.38472000000002) (-97.92027299999995 75.38081399999993) (-97.90139799999992 75.37997400000006) (-97.88444500000003 75.37637300000006) (-97.872772 75.37081900000004) (-97.8766629999999 75.36499000000003) (-97.88778699999995 75.36053500000003) (-97.91027799999995 75.35664400000013) (-97.92639200000002 75.35554500000012) (-97.99055499999997 75.35582) (-98.04276999999996 75.35914600000001) (-98.07010700000001 75.36470000000003) (-98.07076999999998 75.36708800000008) (-98.07411200000001 75.36903399999994) (-98.08277900000002 75.37003300000003) (-98.1077729999999 75.371918) (-98.12471 75.36720299999996) (-98.13639799999999 75.3619230000001) (-98.141953 75.35664400000013) (-98.15361000000001 75.34553500000004) (-98.16528299999999 75.33415200000002) (-98.16471899999993 75.32916300000005) (-98.129166 75.30192599999998) (-98.120544 75.29776000000004) (-98.10139500000002 75.29193100000003) (-98.06471299999993 75.28581200000002) (-97.91305499999999 75.26415999999995) (-97.87388599999997 75.270264) (-97.75584399999991 75.22943100000009) (-97.74360699999994 75.2249910000001) (-97.73500100000001 75.20721400000002) (-97.73693799999995 75.2044370000001) (-97.75973499999998 75.188583) (-97.676941 75.16415400000005) (-97.62860099999989 75.15109300000012) (-97.60249299999992 75.14721700000007) (-97.59750399999996 75.14915500000001) (-97.60583499999996 75.15832500000005) (-97.61444099999989 75.16276600000015) (-97.61305199999998 75.16470300000003) (-97.597778 75.16470300000003) (-97.57861300000002 75.15887500000008) (-97.56777999999997 75.15248100000002) (-97.56750499999993 75.147491) (-97.58250399999991 75.137497) (-97.61944599999993 75.11859099999992) (-97.63999899999999 75.11637900000005) (-97.74694799999997 75.11164900000006) (-97.84388699999994 75.11026000000004) (-97.86250299999989 75.11109900000002) (-97.88137799999993 75.11692800000003) (-98.024719 75.16249099999993) (-98.033615 75.17164600000001) (-98.03443899999996 75.18165600000009) (-98.02694699999995 75.18719500000009) (-98.02027899999996 75.19664) (-98.01916499999999 75.20109600000006) (-98.02583300000003 75.21081500000008) (-98.04138199999989 75.216385) (-98.06166100000002 75.22026100000005) (-98.08528100000001 75.2227630000001) (-98.09861799999993 75.2227630000001) (-98.14666699999987 75.18081699999993) (-98.14666699999987 75.16387900000007) (-98.14555399999995 75.159988) (-98.136124 75.15416000000005) (-98.12138400000003 75.147491) (-98.08139 75.130539) (-98.03916900000002 75.11637900000005) (-98.02555799999993 75.11360199999996) (-98.00306699999993 75.11276199999992) (-97.98167399999994 75.11080900000002) (-97.966949 75.10415599999999) (-97.9472199999999 75.07998700000007) (-97.9388889999999 75.06971699999997) (-97.93859899999995 75.06498699999992) (-97.945831 75.026657) (-97.949997 75.02110300000004) (-97.9600069999999 75.01748700000013) (-97.98249799999991 75.01527399999998) (-98.00306699999993 75.01554900000002) (-98.02027899999996 75.01832600000012) (-98.10888699999998 75.02249100000012) (-98.25917099999992 75.0227660000001) (-98.276947 75.02221700000001) (-98.30027799999993 75.02110300000004) (-98.36971999999997 75.01443500000005) (-98.44444299999998 75.00499000000013) (-98.46833799999996 75.00305200000003) (-98.63473499999998 74.99247700000006) (-98.72389199999992 74.98942600000004) (-98.78500400000001 74.99498000000006) (-98.98500100000001 75.00000000000011) (-99.06695599999995 74.99636800000013) (-99.35444599999988 74.984421) (-99.37666299999995 74.98553499999997) (-99.39416499999999 74.98803700000008) (-99.406113 74.99331699999993) (-99.39361599999995 75.02720599999998) (-99.38751200000002 75.03776600000009) (-99.335556 75.0705410000001) (-99.29943799999995 75.092758) (-99.28195199999999 75.10276800000008) (-99.27694699999995 75.1080320000001) (-99.27223200000003 75.11581400000006) (-99.281387 75.12248199999999) (-99.308044 75.12248199999999) (-99.32583599999992 75.11831699999999) (-99.34056099999998 75.11303700000013) (-99.44554099999993 75.05831899999998) (-99.48249799999996 75.03776600000009) (-99.49665799999997 75.02638200000001) (-99.5 75.02053799999999) (-99.49610899999993 75.01470899999998) (-99.48028599999998 75.00915500000013) (-99.44554099999993 75.00387599999999) (-99.43249500000002 75.0002750000001) (-99.42721599999993 74.99636800000013) (-99.42639199999996 74.99136400000003) (-99.53860500000002 74.974152) (-99.56249999999994 74.97221400000006) (-99.60278299999999 74.97110000000004) (-99.61971999999997 74.97137500000008) (-99.70167500000002 74.97360200000014) (-99.99055499999992 74.984421) (-100.05722000000003 74.9869230000001) (-100.14584400000001 74.99108899999999) (-100.21056399999998 74.997208) (-100.25306699999993 75.00277700000004) (-100.34777799999995 75.0169370000001) (-100.36389200000002 75.02137800000003) (-100.38945000000001 75.03109700000005) (-100.39388999999994 75.03720100000004) (-100.396118 75.04359400000004) (-100.3975069999999 75.05554200000006) (-100.39723199999997 75.06666600000011) (-100.39472999999998 75.07832300000007) (-100.38583399999999 75.0955350000001) (-100.38054699999986 75.10192899999998) (-100.37805200000003 75.11331199999995) (-100.39806399999998 75.15860000000009) (-100.41221599999994 75.16804500000012) (-100.43250299999994 75.17359899999997) (-100.45333900000003 75.17720000000003) (-100.47693599999997 75.17942800000014) (-100.51112399999994 75.184143) (-100.528343 75.18775900000003) (-100.54444899999993 75.19303900000011) (-100.54695099999998 75.1994170000001) (-100.53859699999998 75.20471199999997) (-100.46333299999998 75.22360200000008) (-100.43859900000001 75.226654) (-100.41722099999998 75.22747800000013) (-100.32528699999995 75.23054500000006) (-100.30222299999997 75.23082000000011) (-100.27999899999998 75.22886699999998) (-100.24833699999999 75.22387700000007) (-100.22556299999997 75.22303799999997) (-100.031387 75.22692900000004) (-100.00778200000002 75.22804300000001) (-99.99055499999992 75.23136900000003) (-99.98777799999999 75.23609900000008) (-99.99526999999995 75.23997500000013) (-100.00945300000001 75.24220300000007) (-100.11945300000002 75.24859600000008) (-100.20333900000003 75.25332600000007) (-100.22609699999998 75.25416599999994) (-100.314438 75.25082400000002) (-100.354172 75.25166300000001) (-100.37554899999986 75.25526400000001) (-100.39388999999994 75.26026900000011) (-100.406113 75.26666300000011) (-100.40278599999999 75.27249100000006) (-100.33444199999991 75.274429) (-100.31166100000002 75.27720600000009) (-100.29387700000001 75.28137199999998) (-100.279449 75.28665200000006) (-100.25805700000001 75.29776000000004) (-100.24445299999996 75.30886800000002) (-100.25723299999993 75.31330899999995) (-100.28222699999992 75.31025700000004) (-100.33277900000002 75.30220000000008) (-100.35944399999994 75.299713) (-100.49999999999989 75.29248000000001) (-100.52306399999998 75.293045) (-100.60888699999998 75.30581700000005) (-100.62249799999995 75.30914300000006) (-100.76555599999989 75.34637500000008) (-100.77887699999991 75.35054000000008) (-100.76888999999994 75.35525500000011) (-100.67639199999996 75.37664800000005) (-100.652222 75.37858599999998) (-100.63305700000001 75.37803600000012) (-100.61805700000002 75.37664800000005) (-100.60221899999993 75.37359600000013) (-100.61833199999995 75.36886600000008) (-100.64389 75.36470000000003) (-100.67999299999997 75.3619230000001) (-100.69833399999993 75.35664400000013) (-100.68222000000003 75.35026600000015) (-100.63806199999999 75.34582500000005) (-100.61472299999997 75.34610000000009) (-100.59472699999998 75.347488) (-100.44748699999991 75.36998000000006) (-100.43277 75.37525900000003) (-100.4283289999999 75.38053900000011) (-100.44055200000003 75.38665800000012) (-100.56527699999998 75.422211) (-100.58444199999997 75.426376) (-100.60694899999999 75.42804000000001) (-100.67555199999993 75.42692600000004) (-100.71694899999989 75.4291530000001) (-100.723053 75.43248) (-100.697769 75.43637100000007) (-100.67331699999994 75.43858299999994) (-100.43388399999998 75.44581599999998) (-100.339722 75.4474790000001) (-100.27084400000001 75.44859300000007) (-100.17666600000001 75.449142) (-100.11138899999997 75.451096) (-100.06276700000001 75.45443700000004) (-100.01194800000002 75.46138000000008) (-100.00917099999992 75.46609500000011) (-100.01944700000001 75.46859699999999) (-100.10056299999997 75.4705350000001) (-100.19193999999999 75.467758) (-100.21528599999988 75.467758) (-100.30695300000002 75.47164900000007) (-100.30555699999996 75.47360200000003) (-100.12999000000002 75.52581800000013) (-100.03415699999988 75.52943399999998) (-99.96694899999994 75.53332500000005) (-99.84500099999997 75.540817) (-99.83139 75.54414400000013) (-99.83222999999998 75.54553200000004) (-99.84500099999997 75.547485) (-99.85638399999999 75.54803500000003) (-99.89999399999999 75.547485) (-99.94665500000002 75.54470800000007) (-99.99027999999998 75.54443400000014) (-100.03859699999998 75.549149) (-100.03943600000002 75.55415299999999) (-100.02806099999998 75.55720500000007) (-99.82362399999994 75.58415199999996) (-99.80055199999993 75.58665500000012) (-99.756393 75.58804300000003) (-99.73693800000001 75.5872040000001) (-99.71250899999995 75.58915700000006) (-99.67277499999994 75.60609400000004) (-99.66777000000002 75.61109900000008) (-99.68582199999997 75.613876) (-99.79083300000002 75.6166530000001) (-99.84056099999998 75.6124880000001) (-99.86305199999998 75.61442600000004) (-99.862503 75.61886600000003) (-99.82362399999994 75.651657) (-99.81750499999993 75.655258) (-99.78805499999993 75.65832499999993) (-99.45861799999994 75.67248500000005) (-99.22666900000002 75.67553700000013) (-99.20249899999999 75.67553700000013) (-99.08361799999994 75.67581200000001) (-99.03306600000002 75.67720000000008) (-98.98277300000001 75.68109099999998) (-98.92971799999992 75.68637100000001) (-98.90556299999992 75.68997200000007) (-98.88999899999999 75.69525100000004) (-98.891388 75.69914199999994) (-98.90777599999996 75.70471200000003) (-98.92582700000003 75.70748900000012) (-98.95028699999989 75.709991) (-98.97193900000002 75.71026600000005) (-99.329453 75.69525100000004) (-99.55749499999996 75.69192500000003) (-99.61999500000002 75.69413800000001) (-99.64389 75.69413800000001) (-99.7408289999999 75.69081100000005) (-99.84973100000002 75.67747500000007) (-100.031677 75.66442899999998) (-100.256393 75.651657) (-100.37332199999997 75.65470900000008) (-100.39723199999997 75.65443400000004) (-100.54028299999993 75.64553799999993) (-100.62888299999997 75.63472000000013) (-100.65416699999997 75.63165300000003) (-100.80471799999998 75.61499000000015) (-100.82972699999999 75.61303700000002) (-101.22556299999991 75.5874940000001) (-101.24916100000002 75.5872040000001) (-101.30638099999999 75.591095) (-101.37721299999993 75.59887700000013) (-101.38806199999999 75.60026600000009) (-101.471657 75.60220300000015) (-101.4955369999999 75.60192900000004) (-101.74944299999999 75.57443200000006) (-101.89835399999998 75.5560910000001) (-101.97250399999996 75.54832500000003) (-101.99638399999998 75.54721100000006) (-102.06723 75.54609700000009) (-102.13639799999993 75.553314) (-102.159157 75.55497700000012) (-102.20667300000002 75.553314) (-102.35193599999997 75.54220600000002) (-102.39916999999997 75.53720099999998) (-102.44860799999998 75.53054799999995) (-102.49916099999996 75.5211030000001) (-102.534157 75.51138300000002) (-102.67304999999999 75.51470900000004) (-102.86694299999999 75.601089) (-102.87805200000003 75.60775800000005) (-102.88194299999992 75.61331200000006) (-102.88390400000003 75.61914100000007) (-102.87777699999992 75.62469500000003) (-102.86054999999999 75.62831100000011) (-102.8125 75.63108800000003) (-102.79305999999991 75.63053900000006) (-102.70140100000003 75.62886000000003) (-102.68916299999995 75.6705320000001) (-102.58168 75.71276899999998) (-102.563606 75.718323) (-102.53888699999993 75.72137499999991) (-102.37748699999992 75.72915599999999) (-102.35193599999997 75.72915599999999) (-102.311394 75.72665400000011) (-102.26390100000003 75.72192400000006) (-102.16832699999992 75.70915200000007) (-102.15416700000003 75.7061000000001) (-102.07861300000002 75.688309) (-102.05776999999995 75.69081100000005) (-102.03666699999997 75.69413800000001) (-102.01862299999999 75.69941699999998) (-102.00917099999998 75.70304899999991) (-102.00805700000001 75.70498700000007) (-102.09166699999997 75.72192400000006) (-102.120003 75.77638200000001) (-102.10185200000001 75.78424799999999) (-102.09361299999989 75.79109199999999) (-102.112213 75.79359400000004) (-102.23277299999995 75.78665200000012) (-102.28222700000003 75.78193700000008) (-102.32668299999995 75.77998399999996) (-102.34388699999994 75.78193700000008) (-102.36609599999997 75.78997800000002) (-102.37165800000002 75.79582199999999) (-102.37332200000003 75.80165099999999) (-102.37082700000002 75.80748000000006) (-102.36250299999995 75.81805400000007) (-102.339447 75.83499100000006) (-102.31667299999998 75.84664900000013) (-102.29028299999993 75.85720800000013) (-102.26640299999997 75.86192299999999) (-102.16306299999997 75.87886000000003) (-102.13806199999993 75.88108799999998) (-101.864441 75.90220600000004) (-101.82640099999992 75.89833100000004) (-101.80526700000001 75.89193700000004) (-101.79943800000001 75.88665800000007) (-101.77194199999997 75.86859099999998) (-101.74833699999999 75.85914600000007) (-101.74109599999991 75.85693400000002) (-101.55638099999987 75.82110599999999) (-101.47028399999999 75.77221700000001) (-101.46888699999994 75.766388) (-101.45973199999997 75.76110799999992) (-101.43859900000001 75.75555400000013) (-101.41416899999996 75.75248700000003) (-101.301941 75.74609400000008) (-101.254997 75.74470500000007) (-101.24416400000001 75.74693300000001) (-101.23388699999998 75.75138900000013) (-101.20249899999993 75.76721199999997) (-101.18221999999997 75.77970900000014) (-101.23110999999994 75.77720599999998) (-101.328056 75.77442900000005) (-101.34777799999995 75.7749940000001) (-101.35555999999991 75.77943399999992) (-101.358612 75.78498800000011) (-101.35193599999991 75.79054300000001) (-101.34137699999997 75.79609700000003) (-101.326683 75.80165099999999) (-101.323624 75.80748000000006) (-101.32501200000002 75.81330900000006) (-101.33500700000002 75.8252720000001) (-101.34056099999992 75.83027600000003) (-101.35637700000001 75.84304800000007) (-101.36389199999996 75.8477630000001) (-101.37805199999997 75.85192899999998) (-101.39277600000003 75.85443100000003) (-101.40833999999995 75.85582000000005) (-101.42388900000003 75.85636900000003) (-101.48889199999996 75.85415600000005) (-101.52694699999995 75.85832199999993) (-101.537216 75.86137400000007) (-101.54638699999992 75.86747700000001) (-101.57917799999996 75.90860000000009) (-101.56500199999988 75.92970300000002) (-101.49665800000002 75.95498700000002) (-101.47778299999999 75.96026599999999) (-101.45221700000002 75.96360800000008) (-101.39417299999997 75.97554000000008) (-101.30915800000002 76.008331) (-101.30277999999987 76.01304600000003) (-101.31582599999996 76.01915000000002) (-101.33556399999992 76.020828) (-101.36971999999992 76.0169370000001) (-101.38249200000001 76.01081800000009) (-101.39195299999989 76.00054900000003) (-101.40833999999995 75.99552900000015) (-101.61721799999998 75.98082000000011) (-101.641953 75.97970599999996) (-101.67832900000002 75.97970599999996) (-101.68388399999998 75.98027000000008) (-101.728882 75.9874880000001) (-101.80638099999999 76.00749200000001) (-101.83249699999999 76.016663) (-101.84889199999992 76.02470400000004) (-101.89362299999993 76.06025700000009) (-101.90055799999999 76.06666600000011) (-101.90722700000003 76.07859800000006) (-101.90862299999998 76.08442700000006) (-101.90750099999997 76.09610000000009) (-101.902222 76.10775799999993) (-101.88861099999991 76.11914100000013) (-101.761124 76.17414899999994) (-101.71140300000002 76.184708) (-101.685272 76.18775900000003) (-101.60833699999995 76.19442700000002) (-101.53362299999998 76.20526100000006) (-101.48860200000001 76.21360800000002) (-101.46556099999998 76.21887200000003) (-101.39611799999989 76.24331700000005) (-101.38500999999997 76.24887100000007) (-101.387787 76.251938) (-101.44193999999993 76.24165300000004) (-101.49694799999992 76.23387100000008) (-101.69888299999997 76.21943700000008) (-101.74973299999999 76.21582000000012) (-101.77471899999995 76.21554600000002) (-102.051941 76.21360800000002) (-102.11444099999994 76.21554600000002) (-102.1330569999999 76.219986) (-102.14835399999998 76.226654) (-102.16583300000002 76.23831200000001) (-102.15972899999997 76.24304200000006) (-102.133621 76.24636800000007) (-102.08222999999998 76.25082400000002) (-102.06388899999996 76.25526400000001) (-102.05803700000001 76.25915500000008) (-102.001106 76.35276800000003) (-102.029449 76.3808140000001) (-102.051941 76.38638300000008) (-102.05332900000002 76.39221199999992) (-102.05082700000003 76.39804100000015) (-102.03999299999998 76.40359500000011) (-102.01862299999999 76.40942399999994) (-101.88583399999993 76.444977) (-101.86221299999994 76.45027200000004) (-101.80832699999996 76.45416300000011) (-101.78333299999991 76.45443700000004) (-101.671112 76.449142) (-101.45667300000002 76.43637100000007) (-101.43472300000002 76.43441800000011) (-101.41166699999997 76.43081700000005) (-101.31582599999996 76.41442899999998) (-101.30249000000003 76.40832499999999) (-101.29138199999994 76.401657) (-101.28362300000003 76.39610299999998) (-101.27667200000002 76.38943500000005) (-101.24027999999993 76.371643) (-101.22805800000003 76.36692800000014) (-101.20612299999993 76.36137400000013) (-101.13694799999996 76.35081500000007) (-101.06806899999998 76.33194000000015) (-101.05832700000002 76.3269350000001) (-101.09388699999994 76.283051) (-101.00446299999993 76.23776199999998) (-100.98111 76.2352600000001) (-100.92832899999996 76.22581500000001) (-100.91000399999996 76.22221399999995) (-100.86582900000002 76.21220400000004) (-100.783073 76.19108599999998) (-100.75110599999994 76.18220500000001) (-100.71056399999998 76.166382) (-100.63027999999991 76.13333100000006) (-100.43998699999992 76.105255) (-100.31582600000002 76.05137600000012) (-100.30943299999996 76.04803500000008) (-100.13166799999993 75.95248400000003) (-100.047234 75.91387900000007) (-99.98249800000002 75.89054899999991) (-99.88833599999998 75.88638300000002) (-99.75361599999991 75.90637200000015) (-99.73083499999996 75.91053800000003) (-99.71556099999998 75.91609200000005) (-99.67832899999996 75.93136600000014) (-99.587784 75.94999700000011) (-99.508621 75.95748900000007) (-99.48361199999994 75.95860300000004) (-99.45750399999997 75.96138000000013) (-99.44249000000002 75.96581999999995) (-99.439438 75.97053499999998) (-99.45461999999992 75.97480800000005) (-99.49444599999998 75.97360200000008) (-99.65777600000001 75.96138000000013) (-99.78527799999995 75.95138500000002) (-99.81111099999998 75.94831799999992) (-99.85943600000002 75.93525699999998) (-99.86332699999997 75.93553200000002) (-99.89862099999999 75.95027199999998) (-100.07749899999999 76.03887900000012) (-100.08249699999999 76.04386900000003) (-100.09221600000001 76.05497700000001) (-100.14222699999999 76.11219800000015) (-100.15278599999994 76.13247700000011) (-100.12499999999994 76.14888000000013) (-100.10388199999994 76.15332000000001) (-100.07167099999998 76.15582299999994) (-100.031113 76.15554800000012) (-100.01139799999999 76.15387000000004) (-99.86833200000001 76.13998400000003) (-99.73083499999996 76.11747700000012) (-99.68083200000001 76.1185910000001) (-99.65083299999998 76.12747200000007) (-99.60916099999997 76.13581799999997) (-99.556107 76.14166300000005) (-99.50222799999995 76.14610300000004) (-99.4830629999999 76.14694200000002) (-99.42971799999992 76.15387000000004) (-99.414444 76.15832500000005) (-99.42138699999992 76.16026299999999) (-99.445267 76.16137700000013) (-99.49888599999991 76.15776100000011) (-99.54888899999997 76.15332000000001) (-99.66805999999991 76.13970900000004) (-99.69305400000002 76.13859600000012) (-99.716949 76.13970900000004) (-99.87443499999989 76.17053199999998) (-99.91583300000002 76.18026700000007) (-99.94888299999997 76.18969700000014) (-100.15028399999994 76.1933140000001) (-100.17832900000002 76.19081100000011) (-100.20140099999998 76.18997200000001) (-100.22556299999997 76.19081100000011) (-100.43888900000002 76.21249400000005) (-100.47222899999991 76.22637899999995) (-100.49861099999998 76.23776199999998) (-100.51278699999989 76.24914600000005) (-100.514183 76.25416600000011) (-100.51112399999994 76.25972000000013) (-100.49944299999999 76.26527400000009) (-100.465012 76.27499399999999) (-100.43804899999998 76.2788700000001) (-100.41665599999999 76.28027299999997) (-100.36638600000003 76.28166199999998) (-100.26917300000002 76.27859500000005) (-100.18276999999995 76.27082800000011) (-100.111107 76.26638800000006) (-99.89555399999995 76.27470399999999) (-99.86999499999996 76.27581799999996) (-99.84472700000003 76.28027299999997) (-99.84861799999993 76.28387499999997) (-100.03859699999998 76.3188780000001) (-100.27722199999994 76.37858599999998) (-100.30166600000001 76.38275099999998) (-100.32362399999994 76.38415500000013) (-100.35056299999991 76.38443000000001) (-100.37444299999999 76.38275099999998) (-100.48137700000001 76.37387100000012) (-100.55332899999996 76.37109400000003) (-100.67360699999995 76.371918) (-100.69444299999998 76.3749850000001) (-100.95249899999999 76.47470099999998) (-100.97222899999997 76.48526000000004) (-100.98388699999992 76.49443099999996) (-100.98554999999993 76.499146) (-100.98249800000002 76.50499000000002) (-100.962784 76.510269) (-100.93943799999988 76.5144350000001) (-100.89277600000003 76.51944000000015) (-100.82972699999999 76.51971400000008) (-100.80526700000001 76.52221700000007) (-100.737213 76.5310970000001) (-100.72083999999995 76.54609700000003) (-100.72341899999998 76.55109400000015) (-100.72332799999992 76.55609100000004) (-100.71250899999995 76.56053199999997) (-100.65306099999992 76.57638500000002) (-100.45861799999994 76.61360200000001) (-100.383827 76.6275020000001) (-100.36389200000002 76.63108799999998) (-100.318893 76.6355440000001) (-100.21665999999988 76.64305100000001) (-100.19193999999999 76.64221200000009) (-100.05222300000003 76.63136300000002) (-99.981674 76.62220799999994) (-99.91111799999999 76.61303700000002) (-99.88500999999991 76.61053500000014) (-99.83778399999989 76.60859699999997) (-99.81138599999991 76.60971099999995) (-99.796112 76.61387599999995) (-99.79527299999995 76.61831700000005) (-99.770554 76.62776200000013) (-99.74194299999999 76.6327510000001) (-99.72582999999992 76.63472000000013) (-99.68443300000001 76.63333100000011) (-99.58833300000003 76.62387100000007) (-99.569458 76.62052900000015) (-99.36694299999994 76.52638200000007) (-99.25695799999994 76.4705350000001) (-99.260559 76.46470600000009) (-99.25527999999991 76.45359800000006) (-99.18443300000001 76.41581700000012) (-99.16361999999992 76.40914900000013) (-99.12332200000003 76.40081800000002) (-99.09999099999999 76.39804100000015) (-99.07972699999999 76.39721700000001) (-99.066101 76.39860500000009) (-99.06639100000001 76.4044340000001) (-99.08361799999994 76.4160920000001) (-99.11000100000001 76.42665099999999) (-99.11833200000001 76.43304400000011) (-99.13722199999995 76.45193499999999) (-99.133896 76.45665000000002) (-99.12249800000001 76.46110500000003) (-98.99415599999998 76.47109999999992) (-98.98083499999996 76.47164900000007) (-98.95527600000003 76.46914700000002) (-98.94694500000003 76.46304299999997) (-98.94804399999992 76.45277399999992) (-98.95028699999989 76.44636500000007) (-98.943604 76.44081100000005) (-98.92582700000003 76.43609600000002) (-98.90638699999988 76.43331899999998) (-98.882767 76.43136600000003) (-98.85777300000001 76.43136600000003) (-98.846115 76.43609600000002) (-98.85611 76.46388200000013) (-98.86527999999993 76.46914700000002) (-98.89862099999999 76.48109399999993) (-98.953888 76.499146) (-99.03805499999999 76.52970899999997) (-99.05055199999998 76.53610200000014) (-99.051941 76.53997800000002) (-99.02722199999994 76.60108899999994) (-98.99916099999996 76.60498000000001) (-98.97166399999998 76.60775800000005) (-98.86082499999992 76.61442599999998) (-98.71472199999994 76.61415099999999) (-98.61111499999998 76.6102600000001) (-98.58917200000002 76.61137400000007) (-98.56639100000001 76.61360200000001) (-98.53889499999997 76.61637900000011) (-98.51806599999998 76.62136800000007) (-98.511124 76.62525900000014) (-98.489731 76.6447070000001) (-98.48832699999997 76.65081800000002) (-98.54695100000004 76.6580350000001) (-98.5911099999999 76.66165200000006) (-98.59500099999997 76.65942400000012) (-98.59249899999998 76.6538700000001) (-98.59861799999999 76.651093) (-98.62304699999987 76.64721700000013) (-98.67443800000001 76.64387499999998) (-98.74444599999998 76.64387499999998) (-98.81416300000001 76.65359500000005) (-98.85110500000002 76.66165200000006) (-98.85777300000001 76.66387900000012) (-98.85583499999996 76.67025799999999) (-98.85249299999992 76.67164600000007) (-98.82139599999994 76.67692599999992) (-98.733612 76.68275499999999) (-98.71250900000001 76.68304400000005) (-98.50472999999994 76.68109099999992) (-98.48028599999992 76.67915299999999) (-98.43998699999997 76.67303500000008) (-98.41805999999991 76.66832000000005)) ((-99.99694799999997 76.734421) (-99.97639500000002 76.73359700000003) (-99.86999499999996 76.73637400000013) (-99.81945799999988 76.73831200000006) (-99.74833699999999 76.74275200000011) (-99.72083999999995 76.74581900000004) (-99.69387799999998 76.74775699999998) (-99.64639299999999 76.74803199999997) (-99.62249800000001 76.7452550000001) (-99.52888499999995 76.72554000000008) (-99.447769 76.7061000000001) (-99.43055699999996 76.69941699999993) (-99.43388399999998 76.69470200000012) (-99.52806099999998 76.67442299999999) (-99.556107 76.6705320000001) (-99.58168 76.67025799999999) (-99.626938 76.67303500000008) (-99.65777600000001 76.67776500000008) (-99.73332199999999 76.70248400000003) (-99.8883899999999 76.71865100000014) (-99.90022299999993 76.72015399999998) (-99.91555799999998 76.72015399999998) (-100.01112399999988 76.71914700000013) (-100.02999899999992 76.71582000000001) (-100.05139200000002 76.71554600000007) (-100.09750400000001 76.71720900000003) (-100.12138399999998 76.71971100000007) (-100.128601 76.72192400000006) (-100.12805199999997 76.72303800000003) (-100.10193599999997 76.74470500000007) (-100.08277899999996 76.74803199999997) (-100.05526700000001 76.75082400000008) (-100.03778099999988 76.75138900000013) (-99.99943499999995 76.75109900000007) (-99.97222899999991 76.747208) (-99.97500600000001 76.74247700000006) (-99.99415599999998 76.73915100000005) (-100.004997 76.73553500000003) (-99.99694799999997 76.734421)) ((-120.883621 76.73970000000003) (-120.886124 76.72859199999999) (-120.90334299999995 76.72387699999996) (-120.94499199999996 76.71775800000012) (-120.97000100000002 76.71666000000005) (-121.0908429999999 76.71887200000009) (-121.11749299999991 76.71971100000007) (-121.16000400000001 76.72331200000013) (-121.18110699999994 76.72720300000003) (-121.1847229999999 76.7310940000001) (-121.181671 76.73220800000007) (-121.15666199999998 76.73359700000003) (-121.12832600000002 76.73082) (-121.083618 76.72915599999993) (-121.05972300000002 76.73136900000009) (-121.05638099999999 76.73248300000006) (-121.01806599999998 76.75138900000013) (-120.99082900000002 76.75471500000015) (-120.97833300000002 76.75526400000007) (-120.91443599999997 76.754166) (-120.89083900000003 76.7497100000001) (-120.88474300000001 76.74552900000003) (-120.883621 76.73970000000003)) ((-101.38054699999992 76.55358899999999) (-101.40416699999997 76.55276500000002) (-101.45388799999989 76.5541530000001) (-101.54083300000002 76.56080600000007) (-101.56471299999993 76.56359900000007) (-101.62332199999992 76.57276899999994) (-101.68831599999999 76.58638000000008) (-101.57556199999999 76.61415099999999) (-101.52194199999991 76.62387100000007) (-101.38583399999993 76.64248700000007) (-101.31777999999991 76.64276100000001) (-101.21362299999993 76.65193199999999) (-101.05999800000001 76.68580599999996) (-101.04250300000001 76.69053600000001) (-101.03943600000002 76.69636500000001) (-101.04028299999993 76.70220900000004) (-101.03307299999994 76.70803800000004) (-101.00583599999993 76.71887200000009) (-100.983612 76.72470099999992) (-100.95749699999999 76.72915599999993) (-100.90249599999993 76.73637400000013) (-100.74388099999999 76.75332600000013) (-100.69193999999999 76.75471500000015) (-100.53443900000002 76.75721700000003) (-100.50917099999992 76.7563780000001) (-100.484734 76.75471500000015) (-100.26888999999989 76.73719800000009) (-100.248894 76.73471100000006) (-100.25917099999998 76.72859199999999) (-100.266663 76.72637900000007) (-100.29305999999997 76.72192400000006) (-100.297234 76.72192400000006) (-100.31723 76.71666000000005) (-100.48721299999988 76.68441800000005) (-100.761124 76.63581800000003) (-100.92304999999999 76.6102600000001) (-101.19275699999997 76.57138100000003) (-101.27390300000002 76.56080600000007) (-101.326683 76.55636600000008) (-101.38054699999992 76.55358899999999)) ((-89.93443299999996 76.47665400000011) (-89.978882 76.46971100000013) (-89.99972500000001 76.470261) (-90.04083300000002 76.47692899999993) (-90.08168 76.484985) (-90.15110800000002 76.50443999999999) (-90.18443300000001 76.51527400000003) (-90.21444699999995 76.528595) (-90.22666900000002 76.53553800000003) (-90.412216 76.63610800000004) (-90.47805800000003 76.66220099999998) (-90.504456 76.67526199999992) (-90.56361400000003 76.709991) (-90.57333399999999 76.71582000000001) (-90.59445199999999 76.72970599999996) (-90.60028099999994 76.734985) (-90.60082999999997 76.74108899999999) (-90.59999099999999 76.746643) (-90.59777799999995 76.75000000000011) (-90.58666999999997 76.76138300000014) (-90.57917800000001 76.7669370000001) (-90.57028200000002 76.771927) (-90.54444899999999 76.78305100000006) (-90.51028400000001 76.79332000000011) (-90.474716 76.79971300000005) (-90.23055999999997 76.82804899999996) (-90.10305800000003 76.83610500000003) (-90.025284 76.83915699999994) (-89.98306300000002 76.836929) (-89.92777999999998 76.8288730000001) (-89.86527999999998 76.8160860000001) (-89.82583599999998 76.80609100000004) (-89.77944899999989 76.7852630000001) (-89.67388899999997 76.73748799999993) (-89.67388899999997 76.73136900000009) (-89.68777499999999 76.70887800000008) (-89.702225 76.68969700000002) (-89.729446 76.67330900000002) (-89.74415599999998 76.66943400000002) (-89.76806599999998 76.668045) (-89.81973299999993 76.66720600000002) (-89.83721899999989 76.66304000000014) (-89.84083599999991 76.65721100000013) (-89.86277799999999 76.60386699999998) (-89.86250299999995 76.59748800000011) (-89.85833699999995 76.59109499999994) (-89.81750499999998 76.54693600000002) (-89.79444899999993 76.53332500000005) (-89.75611900000001 76.52470399999993) (-89.72166399999998 76.51971400000008) (-89.69915799999995 76.51693699999998) (-89.68443300000001 76.51165800000001) (-89.67138699999998 76.50416600000005) (-89.67388899999997 76.50221299999993) (-89.75750700000003 76.48609900000002) (-89.78361499999988 76.48304700000006) (-89.93443299999996 76.47665400000011)) ((-108.65110800000002 76.81359900000001) (-108.65110800000002 76.80886800000007) (-108.65527299999991 76.80386399999998) (-108.67804699999999 76.78498800000011) (-108.68443299999996 76.78054800000007) (-108.69055200000003 76.77442900000005) (-108.69249000000002 76.76998900000007) (-108.68831599999999 76.766098) (-108.67971799999992 76.76332100000008) (-108.66278099999994 76.76138300000014) (-108.596947 76.76081800000009) (-108.55248999999992 76.76138300000014) (-108.527222 76.76026899999994) (-108.50389099999995 76.75610399999994) (-108.48889199999996 76.75166300000006) (-108.46333299999998 76.73915100000005) (-108.45500199999998 76.73332200000004) (-108.44638099999997 76.72360200000014) (-108.44220699999994 76.71775800000012) (-108.43804899999998 76.70803800000004) (-108.44193999999999 76.69636500000001) (-108.45889299999988 76.68470800000006) (-108.54472399999997 76.64637800000014) (-108.56555200000003 76.64166300000011) (-108.58667000000003 76.64166300000011) (-108.60749800000002 76.64248700000007) (-108.628601 76.645264) (-108.65387699999997 76.64721700000013) (-108.68110699999994 76.64776600000005) (-108.70417799999996 76.64637800000014) (-108.72083999999995 76.64248700000007) (-108.72721899999999 76.63804600000014) (-108.72693600000002 76.63415500000008) (-108.69915800000001 76.60554500000006) (-108.69055200000003 76.60054000000002) (-108.62721299999998 76.57554600000003) (-108.61054999999993 76.56971700000003) (-108.58389299999993 76.47747800000008) (-108.58112299999999 76.43914799999999) (-108.55803699999996 76.40859999999998) (-108.475281 76.40693700000008) (-108.36389200000002 76.39999400000005) (-108.328888 76.39665200000013) (-108.31861900000001 76.39415000000008) (-108.28971899999993 76.38443000000001) (-108.26917300000002 76.3749850000001) (-108.07749899999999 76.28054800000001) (-108.11472299999997 76.26138300000002) (-108.252228 76.19692999999995) (-108.33139 76.18193100000008) (-108.38027999999997 76.16526800000003) (-108.39222699999993 76.159424) (-108.40862300000003 76.14776599999999) (-108.396118 76.04609700000015) (-108.35193600000002 76.04887400000007) (-108.02555799999999 76.06219500000003) (-108.00140399999998 76.06303399999996) (-107.916946 76.06303399999996) (-107.83833300000003 76.06137100000007) (-107.81221 76.05609099999998) (-107.73665599999998 76.03942899999998) (-107.72471599999994 76.03553800000009) (-107.63834399999996 75.99636800000013) (-107.63249200000001 75.99108899999999) (-107.63305699999995 75.98136900000009) (-107.639183 75.976089) (-107.65139799999997 75.97026100000005) (-107.785553 75.91998300000012) (-107.84221599999995 75.89999399999999) (-107.901947 75.8961030000001) (-107.91805999999997 75.8913730000001) (-107.93028300000003 75.88554400000004) (-108.031113 75.822495) (-108.04361 75.80219999999997) (-108.02417000000003 75.78387500000002) (-108.02027900000002 75.78082300000011) (-108.00639299999995 75.77943399999992) (-107.9569469999999 75.78471400000001) (-107.91332999999986 75.78942900000004) (-107.87361099999993 75.79803500000014) (-107.82084699999996 75.829163) (-107.778343 75.85470600000008) (-107.75974299999996 75.86970500000012) (-107.75974299999996 75.87441999999999) (-107.739441 75.87915000000004) (-107.51555599999995 75.89999399999999) (-107.36945299999996 75.911652) (-107.33750899999995 75.91137700000002) (-107.18666099999996 75.90387000000004) (-107.08000199999998 75.89276100000001) (-107.08583099999998 75.87248200000005) (-107.09028599999994 75.86747700000001) (-107.10500300000001 75.83471700000013) (-107.098053 75.82304399999992) (-107.03167699999995 75.77110300000004) (-106.96362299999993 75.73858600000005) (-106.89666699999998 75.72026100000011) (-106.88027999999991 75.76582299999995) (-106.83056599999998 75.78581200000008) (-106.79444899999993 75.7916560000001) (-106.74471999999992 75.79553199999998) (-106.72277799999995 75.79582199999999) (-106.67944299999999 75.79359400000004) (-106.6558379999999 75.79359400000004) (-106.636124 75.79443400000008) (-106.61582899999996 75.797211) (-106.62110899999993 75.80331400000011) (-106.6383439999999 75.80693100000008) (-106.67944299999999 75.8124850000001) (-106.72666900000002 75.813873) (-106.78611799999993 75.81330900000006) (-106.829453 75.816666) (-106.85082999999992 75.81999200000001) (-106.87000299999994 75.82499700000005) (-106.88890100000003 75.83471700000013) (-106.89584400000001 75.84443700000003) (-106.89666699999998 75.93525699999998) (-106.89611799999994 75.94108600000004) (-106.89334100000002 75.94747899999999) (-106.86971999999997 75.96415700000006) (-106.63890099999998 76.05304000000012) (-106.60610999999994 76.05775499999999) (-106.58583099999993 76.05859399999997) (-106.368607 76.05581700000005) (-106.33667000000003 76.05470300000007) (-106.30082699999997 76.05137600000012) (-106.01611299999996 76.01971400000002) (-105.93721 76.01026900000011) (-105.89998600000001 76.00555400000007) (-105.837219 75.99693299999996) (-105.73500100000001 75.9749910000001) (-105.66832699999998 75.95555100000013) (-105.61945299999996 75.93942300000009) (-105.60637699999995 75.93470800000006) (-105.59528399999988 75.92970300000002) (-105.47888199999994 75.86303699999996) (-105.46528599999999 75.85192899999998) (-105.45333900000003 75.84165999999993) (-105.445831 75.83055100000007) (-105.40028399999989 75.69442700000008) (-105.38834399999996 75.65637200000003) (-105.391953 75.63888500000013) (-105.48750299999995 75.56080600000013) (-105.49638399999998 75.55525200000011) (-105.51666299999994 75.55053700000008) (-105.54083300000002 75.54693600000002) (-105.60444599999988 75.53997800000002) (-105.63667299999997 75.53360000000009) (-105.68582200000003 75.51944000000015) (-105.74082900000002 75.49497999999994) (-105.75140399999998 75.48970000000008) (-105.74804699999999 75.48580900000002) (-105.73693799999995 75.48275799999999) (-105.68666100000002 75.48304700000011) (-105.67166099999986 75.48109399999998) (-105.61138900000003 75.47164900000007) (-105.59277299999997 75.46748400000007) (-105.593613 75.46276900000004) (-105.64639299999993 75.36526500000002) (-105.65110799999997 75.35942100000005) (-105.66055299999994 75.34971600000011) (-105.72666900000002 75.31303400000013) (-105.7386019999999 75.30941800000005) (-105.76251199999996 75.30497699999995) (-105.79361 75.30220000000008) (-105.81304899999998 75.29942299999999) (-105.82140399999992 75.2958220000001) (-105.86694299999999 75.27581800000002) (-105.87526699999995 75.27110299999998) (-105.9377669999999 75.21443200000004) (-105.93888900000002 75.20860300000004) (-105.93582199999997 75.20277400000003) (-105.929169 75.19775400000015) (-105.89222699999999 75.190811) (-105.87249800000001 75.171921) (-105.876938 75.14582800000005) (-105.88527699999997 75.14027400000009) (-105.90499899999998 75.13638300000002) (-105.92582699999997 75.135269) (-106.00361599999991 75.13554400000004) (-106.01889 75.13388100000009) (-106.07028200000002 75.10664400000002) (-106.07945299999989 75.09693900000008) (-106.07333399999993 75.08720399999999) (-106.01862299999999 75.07415800000007) (-106.00446299999999 75.06805400000002) (-105.99416399999996 75.06219500000003) (-105.99333199999995 75.05581700000005) (-106.011124 75.05081200000001) (-106.23528299999998 75.02137800000003) (-106.26000999999997 75.01915000000008) (-106.45500199999992 75.00582900000012) (-106.54554699999989 75.00166300000001) (-106.564438 75.00082400000008) (-106.66332999999992 75.004166) (-106.72556299999997 75.00221300000004) (-106.77111799999989 74.996643) (-106.78639199999998 74.99192800000014) (-106.78307299999994 74.98997500000002) (-106.78333299999997 74.98609899999997) (-106.78582799999992 74.98054500000012) (-106.79194599999994 74.97526600000015) (-106.807503 74.96971100000007) (-106.93055699999996 74.93359400000008) (-106.97222899999997 74.92608600000005) (-107.01000999999991 74.922485) (-107.05110200000001 74.92164600000007) (-107.07362399999994 74.91998300000012) (-107.16000399999996 74.91053800000009) (-107.19722000000002 74.91081200000002) (-107.215843 74.911926) (-107.46417199999996 74.93441800000005) (-107.506958 74.93997200000007) (-107.630829 74.96110499999998) (-107.66251399999999 74.96666000000005) (-107.68804899999998 74.97637900000007) (-107.69554099999999 74.98220800000007) (-107.72389199999998 75.016388) (-107.72389199999998 75.02026400000005) (-107.71972699999998 75.02609300000006) (-107.704453 75.03082300000011) (-107.68138099999999 75.04248000000001) (-107.67944299999994 75.04859900000008) (-107.68110699999994 75.05304000000001) (-107.69499199999996 75.07527200000004) (-107.70584100000002 75.08610500000003) (-107.716949 75.09082000000006) (-107.739441 75.0958250000001) (-107.75834700000001 75.09693900000008) (-107.77333099999998 75.09609999999992) (-107.78307299999994 75.09359699999999) (-107.77999899999998 75.07222000000013) (-107.77084400000001 75.06581100000011) (-107.75778200000002 75.06053199999991) (-107.74500299999994 75.05415300000004) (-107.739441 75.04887400000007) (-107.73972299999997 75.04304500000006) (-107.74388099999993 75.03720100000004) (-107.77778599999999 75.0294340000001) (-107.89499699999999 75.003601) (-107.94193999999999 74.93081699999999) (-107.95527600000003 74.92858900000004) (-107.97749299999998 74.92747500000007) (-108.02417000000003 74.92915299999999) (-108.13417099999992 74.92776500000008) (-108.21083099999987 74.92359900000002) (-108.37304699999999 74.91053800000009) (-108.3916779999999 74.91137700000002) (-108.436394 74.91526800000008) (-108.45500199999998 74.91832) (-108.52971599999995 74.936646) (-108.54110700000001 74.94053600000001) (-108.548607 74.94636500000001) (-108.547958 74.95165300000002) (-108.55055199999998 74.9563750000001) (-108.55999800000001 74.96081500000014) (-108.67971799999992 74.97026100000011) (-108.781113 74.97998000000007) (-108.80721999999997 74.98359700000003) (-108.80721999999997 74.984711) (-108.796112 74.98580900000013) (-108.74553699999996 74.984421) (-108.63890100000003 74.9810940000001) (-108.614441 74.97970599999996) (-108.55999800000001 74.97637900000007) (-108.53028899999993 74.97331200000013) (-108.51139799999999 74.97554000000008) (-108.52667199999996 75.00166300000001) (-108.53056300000003 75.00555400000007) (-108.53806299999985 75.00943000000001) (-108.628601 75.04609699999997) (-108.65139799999992 75.05386399999998) (-108.79472399999997 75.06915300000003) (-108.83249699999993 75.06999200000001) (-108.92777999999993 75.05192599999998) (-108.94972200000001 75.04026799999997) (-109.001106 75.00499000000013) (-109.11971999999997 74.97943099999998) (-109.34584000000001 74.94470200000006) (-109.36416600000001 74.93969700000002) (-109.39998600000001 74.91832) (-109.40722700000003 74.91249099999999) (-109.40695199999993 74.90859999999992) (-109.420547 74.89305100000001) (-109.50805700000001 74.86637900000011) (-109.52278099999995 74.86331200000001) (-109.56861900000001 74.85775800000005) (-109.58721899999995 74.85664400000002) (-109.66139199999992 74.85636900000003) (-109.76944700000001 74.85942100000011) (-109.79750099999995 74.86360200000001) (-109.81111099999993 74.86804200000006) (-109.83361799999994 74.86970499999995) (-109.87249800000001 74.86914100000001) (-109.93472300000002 74.86080900000002) (-109.95500199999987 74.85720800000001) (-109.99471999999997 74.84832799999998) (-110.01640299999991 74.84220900000008) (-110.13971700000002 74.83305400000006) (-110.30444299999994 74.84637500000002) (-110.32501200000002 74.84748800000011) (-110.34555099999989 74.84693900000013) (-110.36000100000001 74.84387200000003) (-110.37053700000001 74.83998099999997) (-110.40416699999997 74.82666) (-110.39620999999994 74.81368999999995) (-110.39666699999998 74.7994230000001) (-110.43666100000002 74.79331999999994) (-110.58999599999993 74.77804600000007) (-110.59137699999997 74.72415200000006) (-110.75666799999993 74.68525700000009) (-110.77250699999996 74.68081700000005) (-110.78639199999998 74.67469800000003) (-110.79638699999998 74.66886900000003) (-110.807503 74.657486) (-110.83389299999993 74.65193199999999) (-110.98111 74.62136800000013) (-111.28056300000003 74.56776400000012) (-111.38722200000001 74.56303400000007) (-111.409157 74.56275900000009) (-111.43055699999996 74.56053200000002) (-111.55888399999998 74.52748100000008) (-111.64250199999992 74.50138900000002) (-111.67722300000003 74.49331700000005) (-111.700287 74.49136400000009) (-111.82389799999999 74.48332199999993) (-111.94554099999993 74.474426) (-111.98416099999997 74.46887200000003) (-112.087219 74.45220899999993) (-112.29305999999991 74.42776500000002) (-112.37053699999996 74.41859400000004) (-112.43831599999999 74.41442900000004) (-112.54194599999988 74.409424) (-112.75306699999993 74.40138200000001) (-112.85694899999993 74.39833099999998) (-112.91999799999991 74.39749099999995) (-113.00890400000003 74.39804099999998) (-113.25723299999993 74.40525800000012) (-113.406113 74.41331500000007) (-113.42832899999996 74.41470300000015) (-113.47168699999997 74.41891499999997) (-113.64083900000003 74.4374850000001) (-113.69638099999997 74.44609100000002) (-113.84221600000001 74.47970600000008) (-113.94167299999998 74.50360100000006) (-114.053879 74.530823) (-114.12110899999993 74.54998799999998) (-114.29834 74.60276800000003) (-114.34861799999999 74.61886600000008) (-114.37470999999994 74.6291500000001) (-114.39695699999993 74.63916) (-114.43804899999986 74.65942400000012) (-114.44360399999994 74.664154) (-114.44776899999994 74.67469800000003) (-114.42859599999991 74.69192500000003) (-114.41972399999992 74.69802900000008) (-114.40750099999997 74.70416300000011) (-114.39444700000001 74.70832800000011) (-114.21444699999995 74.75555400000013) (-114.10166899999996 74.77665700000006) (-114.01027699999992 74.79054300000007) (-113.73166699999996 74.82720899999998) (-113.71000699999996 74.82971199999992) (-113.55695300000002 74.839157) (-113.41861 74.84275800000006) (-113.28278399999999 74.84860200000008) (-113.25334199999998 74.87359600000002) (-113.22269399999988 74.89646900000002) (-113.15194699999995 74.92498799999998) (-113.1205369999999 74.93248000000011) (-113.00750699999992 74.95416300000005) (-112.91111799999987 74.97082500000005) (-112.86749299999997 74.97554000000008) (-112.84528399999994 74.9769290000001) (-112.57224299999996 74.99275200000011) (-112.52416999999991 74.99552900000003) (-112.5 74.99601000000001) (-112.453056 74.99693300000001) (-112.37444299999993 74.99832199999997) (-112.01500699999991 75.00248699999997) (-111.962219 75.00138900000007) (-111.935272 74.99887100000012) (-111.89890299999996 74.99498000000006) (-111.86527999999993 74.98831200000006) (-111.84056099999998 74.98637400000013) (-111.76444999999995 74.98165900000009) (-111.75334199999998 74.98165900000009) (-111.718613 74.986649) (-111.62666300000001 75.00387599999999) (-111.589722 75.00637800000004) (-111.55139200000002 75.01138300000014) (-111.535278 75.01499899999999) (-111.28971899999999 75.08610500000003) (-111.02916700000003 75.17109700000003) (-110.920547 75.22360200000008) (-110.91361999999998 75.22859199999994) (-110.91278099999994 75.23387100000014) (-110.91750300000001 75.23969999999997) (-111.05249000000003 75.270264) (-111.06806899999987 75.27192700000012) (-111.23082699999998 75.26415999999995) (-111.248894 75.25915500000008) (-111.25195300000001 75.25416599999994) (-111.25083899999993 75.24859600000008) (-111.25167799999997 75.24304200000006) (-111.25611900000001 75.23664900000011) (-111.26112399999994 75.23220800000001) (-111.27778599999994 75.22053499999998) (-111.33416699999992 75.19747899999993) (-111.39167800000001 75.1810910000001) (-111.47501399999999 75.161652) (-111.56082200000003 75.1461030000001) (-111.57721700000002 75.1436000000001) (-111.59612299999998 75.143326) (-111.69526699999989 75.14582800000005) (-111.70584100000002 75.15109300000012) (-111.787216 75.16665599999993) (-111.958054 75.13499500000006) (-112.22833300000002 75.12469499999997) (-112.39055599999995 75.12303200000002) (-112.40972899999997 75.12359600000002) (-112.42916899999994 75.12525900000009) (-112.439438 75.12858600000004) (-112.44833399999999 75.13304100000005) (-112.47084000000001 75.14637800000008) (-112.46833800000002 75.15138200000007) (-112.46166999999997 75.15443399999998) (-112.45249899999999 75.155823) (-112.41197199999993 75.15901200000008) (-112.36860699999994 75.16914400000013) (-112.358337 75.17303500000003) (-112.29472399999992 75.19802899999996) (-112.295837 75.20277400000003) (-112.339447 75.22360200000008) (-112.39750700000002 75.2410890000001) (-112.40888999999993 75.24081400000011) (-112.4366609999999 75.23054500000006) (-112.46193700000003 75.21887200000003) (-112.46417200000002 75.21304300000003) (-112.46305799999999 75.208328) (-112.45056199999999 75.20471199999997) (-112.43749999999994 75.19886800000012) (-112.43221999999997 75.19331399999993) (-112.43250299999994 75.1869200000001) (-112.44471699999997 75.18331900000004) (-112.46665999999999 75.17997700000006) (-112.56111099999993 75.178314) (-112.59249899999998 75.18165600000009) (-112.60888699999992 75.18525699999998) (-112.62554899999998 75.190811) (-112.6347429999999 75.19636500000013) (-112.63722200000001 75.20498700000013) (-112.63694800000002 75.21054100000015) (-112.632767 75.21582000000012) (-112.61609599999997 75.22387700000007) (-112.59472699999998 75.23027000000008) (-112.58583099999998 75.23915099999999) (-112.59472699999998 75.25000000000006) (-112.61277799999999 75.25943000000012) (-112.65167200000002 75.27526900000004) (-112.66583300000002 75.27859500000011) (-112.679169 75.27777100000014) (-112.71305799999999 75.25610400000011) (-112.718887 75.25027500000004) (-112.735817 75.20332300000013) (-112.73416099999992 75.19747899999993) (-112.72888199999994 75.1927490000001) (-112.71584299999995 75.18719500000009) (-112.698036 75.17776500000002) (-112.68859899999995 75.171921) (-112.699997 75.13832100000013) (-112.80695300000002 75.11581400000006) (-112.89417300000002 75.10331700000006) (-112.95667300000002 75.09721400000012) (-113.25446299999999 75.076096) (-113.29888899999997 75.0730440000001) (-113.343887 75.07222000000013) (-113.610817 75.06275900000014) (-113.68083200000001 75.05192599999998) (-113.699432 75.05137599999995) (-113.89417299999997 75.05219999999991) (-113.91750299999995 75.0535890000001) (-113.94138299999986 75.05693100000008) (-113.950287 75.06053199999991) (-113.96888699999994 75.07527200000004) (-113.97305299999994 75.08665500000006) (-113.97305299999994 75.09637499999997) (-113.93138099999999 75.18914800000005) (-113.82055700000001 75.31442300000015) (-113.80583199999995 75.32666000000012) (-113.78278399999999 75.33776899999998) (-113.72805800000003 75.34582500000005) (-113.66055299999994 75.35137900000007) (-113.64222699999993 75.35359199999999) (-113.573624 75.36692800000014) (-113.34056099999992 75.41331500000007) (-113.381104 75.41832000000011) (-113.47112300000003 75.42776499999997) (-113.577789 75.41165200000012) (-113.66027799999995 75.39860500000009) (-113.74445299999996 75.38581800000009) (-113.83389299999988 75.37692300000009) (-113.87138400000003 75.374146) (-113.902222 75.3744200000001) (-113.91139199999998 75.37803600000012) (-113.92111199999994 75.38388100000003) (-113.958618 75.41110200000008) (-113.98166700000002 75.43109100000004) (-113.98416099999992 75.43775899999997) (-113.99221799999998 75.44831800000003) (-114.02416999999997 75.46110500000003) (-114.04083300000002 75.46388200000013) (-114.06500199999988 75.46609500000011) (-114.08389299999999 75.46470600000009) (-114.08693699999998 75.46249400000005) (-114.08917199999996 75.45860299999998) (-114.093887 75.41081200000008) (-114.09166699999992 75.40498400000013) (-114.08583099999993 75.4002690000001) (-114.07778899999988 75.39415000000008) (-114.06610099999995 75.38916000000006) (-114.05638099999987 75.383331) (-114.04472399999992 75.37303200000002) (-114.04055800000003 75.36775200000011) (-114.04055800000003 75.36219800000009) (-114.04750100000001 75.35054000000008) (-114.13751200000002 75.24498) (-114.15805099999994 75.23332199999999) (-114.17083699999989 75.22692900000004) (-114.18666100000002 75.22331200000008) (-114.203056 75.22137500000002) (-114.22277799999995 75.2227630000001) (-114.26363399999991 75.22970599999991) (-114.28472899999997 75.23498500000011) (-114.319458 75.24470500000001) (-114.34638999999993 75.25471500000009) (-114.35082999999997 75.26638800000012) (-114.34916699999985 75.27137800000014) (-114.35109699999992 75.276093) (-114.35888699999992 75.28137199999998) (-114.49999999999994 75.31219499999997) (-114.51278699999995 75.31469700000008) (-114.52806099999992 75.31442300000015) (-114.54276999999996 75.31303400000013) (-114.60973399999995 75.27998400000007) (-114.61527999999993 75.27499400000005) (-114.61138900000003 75.26527399999998) (-114.598343 75.26165800000007) (-114.57972699999999 75.26332100000002) (-114.57250999999997 75.26443499999999) (-114.54666099999997 75.26693700000004) (-114.49638399999998 75.26554899999996) (-114.46806299999997 75.26220700000005) (-114.44304699999986 75.25721699999997) (-114.41278099999994 75.24803199999991) (-114.39723200000003 75.238876) (-114.30249000000003 75.1827550000001) (-114.297234 75.17915299999993) (-114.29472399999997 75.17330900000013) (-114.29804999999999 75.16665599999993) (-114.30860899999993 75.15470900000003) (-114.32112099999995 75.143326) (-114.33528099999995 75.13108799999992) (-114.34944199999995 75.11914099999996) (-114.36749299999985 75.10693400000002) (-114.39499699999993 75.09054600000013) (-114.42971799999987 75.0730440000001) (-114.46640000000002 75.06053199999991) (-114.48332199999987 75.05609099999998) (-114.51889 75.05026199999998) (-114.60082999999997 75.03831500000001) (-114.72416699999997 75.01193200000006) (-114.76342799999998 75.00247200000001) (-114.825287 74.98803700000008) (-114.88861099999991 74.97747800000002) (-114.94915800000001 74.96998600000006) (-115.03222699999992 74.96165500000001) (-115.05082700000003 74.96110499999998) (-115.066101 74.96165500000001) (-115.160553 74.97943099999998) (-115.18582200000003 74.98525999999998) (-115.195267 74.98997500000002) (-115.22609699999992 75.04971300000005) (-115.22638699999993 75.05831899999998) (-115.225281 75.06414799999999) (-115.21861299999995 75.07083100000011) (-115.21167000000003 75.07638500000013) (-115.199432 75.082764) (-115.18331899999993 75.08888200000013) (-115.17415599999993 75.09414700000002) (-115.17304999999999 75.09999099999999) (-115.17278299999992 75.10775799999999) (-115.17832899999996 75.11581400000006) (-115.216949 75.16748000000013) (-115.23554999999993 75.17469800000009) (-115.24861099999998 75.178314) (-115.25695799999994 75.17997700000006) (-115.26083399999993 75.17997700000006) (-115.25611900000001 75.17804000000007) (-115.252228 75.17387400000013) (-115.25361599999991 75.1644290000001) (-115.256393 75.15803500000004) (-115.26139799999999 75.1519320000001) (-115.27916699999997 75.14082300000001) (-115.291382 75.13443000000007) (-115.33640300000002 75.11665299999999) (-115.35305799999998 75.11109900000002) (-115.37304699999999 75.10582000000005) (-115.38694799999996 75.10220300000009) (-115.40416700000003 75.09887700000002) (-115.42666600000001 75.09803800000009) (-115.451683 75.09887700000002) (-115.48361199999994 75.10609399999998) (-115.51944700000001 75.117752) (-115.62389399999995 75.12136800000002) (-115.60472099999993 75.10859700000009) (-115.54888899999997 75.05581700000005) (-115.53971899999993 75.04443400000008) (-115.53751399999993 75.03942900000004) (-115.53751399999993 75.02720599999998) (-115.54527300000001 75.01582300000013) (-115.5516659999999 75.00915500000013) (-115.57472200000001 74.99832199999997) (-115.60249299999998 74.98553499999997) (-115.61833200000001 74.97915599999993) (-115.658051 74.96720899999997) (-115.67194399999988 74.96470600000004) (-115.69055200000003 74.96415700000006) (-115.73500100000001 74.96720899999997) (-115.75723299999999 74.96998600000006) (-115.847778 74.98553499999997) (-116.16306299999991 75.04026799999997) (-116.27916699999997 75.099426) (-116.28639199999992 75.13108799999992) (-116.27694699999995 75.135269) (-116.26889 75.14137300000004) (-116.2455369999999 75.16276600000015) (-116.24109599999997 75.16886900000009) (-116.23860200000001 75.19693000000001) (-116.23916599999995 75.20138500000002) (-116.24694799999992 75.20526100000006) (-116.26834100000002 75.20610000000005) (-116.287216 75.20555100000007) (-116.527222 75.184708) (-116.56054699999999 75.17915299999993) (-116.58084100000002 75.1744230000001) (-116.59388699999994 75.1702580000001) (-116.60249299999998 75.16499300000004) (-116.618607 75.15248100000002) (-116.66332999999997 75.12248199999999) (-116.679169 75.11720300000002) (-116.69415299999997 75.11665299999999) (-116.71721599999995 75.11665299999999) (-117.16860999999994 75.15748600000006) (-117.38417099999992 75.17858899999999) (-117.41915899999992 75.18248000000006) (-117.45777899999996 75.188873) (-117.47501399999993 75.19220000000013) (-117.66361999999998 75.23915099999999) (-117.67832900000002 75.24443100000008) (-117.68305999999995 75.24859600000008) (-117.68388400000003 75.25305200000014) (-117.67166099999997 75.28887900000012) (-117.666946 75.29414400000002) (-117.66194199999995 75.29803500000008) (-117.53666699999997 75.361649) (-117.45527599999997 75.4002690000001) (-117.42054699999994 75.41331500000007) (-117.35360699999995 75.43748500000004) (-117.32112099999995 75.44859300000007) (-117.26139799999993 75.46887199999998) (-117.24054699999999 75.47360200000003) (-117.218887 75.47637900000012) (-117.14666699999998 75.48027000000002) (-117.10305799999998 75.48220800000013) (-117.041382 75.48359700000015) (-116.89778100000001 75.48248299999995) (-116.87748699999997 75.48136899999997) (-116.75334199999998 75.47943100000003) (-116.13474300000001 75.47637900000012) (-116.11554699999994 75.47692899999998) (-116.02194199999997 75.48498500000005) (-115.97332799999998 75.492752) (-115.92250100000001 75.50387600000005) (-115.81833599999987 75.52970900000003) (-115.68888900000002 75.56442300000009) (-115.64639299999999 75.57360799999992) (-115.61972000000003 75.57887299999999) (-115.56527699999987 75.58387800000003) (-115.53056299999997 75.58499100000012) (-115.50611900000001 75.5872040000001) (-115.46305799999999 75.59193399999992) (-115.36609599999997 75.60276800000003) (-115.28832999999997 75.62052900000015) (-115.28611799999993 75.62442000000004) (-115.277222 75.63053900000006) (-115.26777600000003 75.63581800000003) (-115.20333900000003 75.65721100000013) (-115.18611099999993 75.66276600000003) (-115.09665699999994 75.68719499999997) (-115.08194700000001 75.68942300000015) (-115.07028200000002 75.68997200000007) (-115.04250300000001 75.68969700000008) (-114.99973299999994 75.69081100000005) (-114.99804699999999 75.6958160000001) (-115.00556899999992 75.698868) (-115.028343 75.70166000000012) (-115.05277999999998 75.70304899999991) (-115.07611099999991 75.70248400000008) (-115.10305800000003 75.70082100000013) (-115.14555399999995 75.69413800000001) (-115.21721600000001 75.67932100000007) (-115.27916699999997 75.667755) (-115.32472199999995 75.65998800000006) (-115.38305700000001 75.6538700000001) (-115.40194699999995 75.65248099999997) (-115.47193900000002 75.65026900000004) (-115.51888999999994 75.64999400000005) (-115.60637700000001 75.651093) (-115.66750299999995 75.64721700000013) (-115.714447 75.64248700000013) (-115.889183 75.61442600000004) (-116.09166700000003 75.58055100000013) (-116.108047 75.57415799999995) (-116.11916400000001 75.572769) (-116.34750399999996 75.559143) (-116.38971700000002 75.5577550000001) (-116.46028099999995 75.55748000000006) (-116.48610699999995 75.5577550000001) (-116.84361299999989 75.56498700000003) (-117.19499200000001 75.57360799999992) (-117.21556099999998 75.5747070000001) (-117.23277300000001 75.57693500000005) (-117.24276700000001 75.58055100000013) (-117.25 75.58610500000009) (-117.25110599999994 75.59748800000011) (-117.24833699999999 75.60304300000001) (-117.23999000000003 75.61499000000015) (-117.23361199999994 75.62052900000015) (-117.21362299999993 75.633331) (-117.07805599999995 75.70721400000008) (-117.06443799999994 75.71415700000011) (-117.03971899999999 75.72581500000013) (-117.02362099999993 75.73248300000012) (-117.01666299999994 75.73719800000015) (-116.95556599999992 75.76193200000012) (-116.923317 75.7747040000001) (-116.88667299999992 75.78692600000005) (-116.86888099999999 75.79054300000001) (-116.85056299999991 75.79304500000012) (-116.81639099999995 75.79637100000014) (-116.76278699999995 75.7999880000001) (-116.71972699999998 75.80165099999999) (-116.58860799999997 75.80331400000011) (-116.53056300000003 75.80276500000002) (-116.32417299999992 75.80470300000013) (-116.10582699999998 75.80693100000008) (-116.03721599999994 75.809708) (-115.82305899999994 75.82720899999993) (-115.80444299999994 75.82998700000013) (-115.79444899999999 75.83415200000013) (-115.78415699999994 75.845261) (-115.77971600000001 75.85220300000009) (-115.76500699999997 75.85443100000003) (-115.74944299999999 75.85498000000001) (-115.73693800000001 75.85443100000003) (-115.72638699999993 75.85331700000006) (-115.69193999999993 75.8483280000001) (-115.67388900000003 75.84414700000002) (-115.65943900000002 75.83970600000009) (-115.62277199999994 75.83442700000012) (-115.59445199999999 75.833328) (-115.50723299999993 75.83499100000006) (-115.40499899999998 75.83804300000003) (-115.38194299999992 75.83970600000009) (-115.36416599999995 75.84414700000002) (-115.35193599999997 75.85220300000009) (-115.31360599999994 75.855255) (-115.13945000000001 75.85942100000011) (-115.07277699999986 75.85775799999999) (-115.04998799999998 75.85582000000005) (-115.00083899999998 75.85331700000006) (-114.98082699999992 75.85304300000013) (-114.932503 75.85664400000002) (-114.91194199999995 75.85971100000012) (-114.83860799999997 75.87441999999999) (-114.817497 75.88081400000004) (-114.80444299999994 75.886932) (-114.798607 75.89221200000003) (-114.80999800000001 75.89942899999994) (-114.82417299999986 75.9041600000001) (-114.83667000000003 75.905823) (-114.88166799999993 75.90748600000012) (-114.90722700000003 75.90637200000015) (-115.01806599999992 75.89888000000002) (-115.0641629999999 75.89471400000014) (-115.10527000000002 75.888596) (-115.221657 75.88026400000001) (-115.29277000000002 75.87831100000005) (-115.39472999999992 75.87776200000013) (-115.54055799999998 75.88136299999996) (-115.68222000000003 75.88832100000013) (-115.74694799999986 75.88943499999993) (-115.83029199999993 75.88777200000004) (-115.86888099999999 75.88443000000007) (-116.00472999999994 75.86859099999998) (-116.0533289999999 75.86554000000012) (-116.10665899999998 75.86415099999994) (-116.13474300000001 75.86442599999998) (-116.15083299999992 75.86470000000008) (-116.48277299999995 75.87387100000007) (-116.623894 75.88192700000013) (-116.64972699999998 75.88499500000012) (-116.67666600000001 75.88970900000004) (-116.69972199999995 75.89498900000012) (-116.71501199999994 75.90026900000004) (-116.72444200000001 75.90637200000015) (-116.73416099999992 75.922485) (-116.733612 75.92858900000004) (-116.73137699999995 75.94525100000004) (-116.72666899999996 75.95138500000002) (-116.71389799999997 75.95664999999991) (-116.69972199999995 75.95999099999995) (-116.67748999999998 75.96388200000001) (-116.63221699999997 75.96914700000008) (-116.58528099999995 75.971924) (-116.561394 75.97276299999999) (-116.53721599999994 75.97248800000011) (-116.51611300000002 75.97110000000004) (-116.48528299999998 75.966385) (-116.470551 75.96887200000009) (-116.46193700000003 75.9749910000001) (-116.46833800000002 75.98637400000013) (-116.52834299999995 76.02748099999997) (-116.60221899999993 76.02221699999996) (-116.645554 76.02304100000009) (-116.66944899999999 76.02581800000002) (-116.6875 76.02915999999999) (-116.69888300000002 76.03442400000012) (-116.70556599999998 76.039154) (-116.708618 76.04386900000003) (-116.70777900000002 76.04998800000004) (-116.70612299999999 76.05386400000009) (-116.70168299999995 76.05998200000005) (-116.69638099999992 76.06498700000009) (-116.641388 76.11331200000012) (-116.53388999999999 76.15332000000001) (-116.51611300000002 76.15776100000011) (-116.34221599999995 76.183044) (-116.296112 76.188583) (-116.21362299999998 76.19497700000005) (-116.16361999999992 76.197205) (-116.08416699999998 76.19831800000009) (-116.05943300000001 76.19802900000013) (-115.95889299999999 76.19413800000007) (-115.90862300000003 76.19192499999991) (-115.86554699999999 76.18830900000006) (-115.81582600000002 76.18692000000004) (-115.64334099999996 76.18609600000008) (-115.59500100000002 76.18775900000003) (-115.44721999999996 76.18692000000004) (-115.32749899999999 76.184708) (-115.27306399999998 76.18220500000001) (-115.154449 76.16943400000008) (-115.13027999999997 76.16581699999995) (-115.02166699999998 76.15637200000009) (-114.87554899999998 76.14971900000012) (-114.85109699999992 76.14942900000011) (-114.790771 76.15107700000004) (-114.72833300000002 76.15304600000007) (-114.68499799999995 76.15609700000005) (-114.66972399999997 76.15832500000005) (-114.66251399999999 76.16053799999997) (-114.662781 76.16165199999995) (-114.68083199999995 76.16499299999998) (-114.70639 76.16720599999996) (-114.80082699999997 76.16859400000004) (-114.85056299999997 76.17025800000005) (-114.89862099999993 76.17248500000011) (-114.94499200000001 76.176086) (-114.99305700000002 76.18248000000006) (-115.00974299999996 76.1874850000001) (-115.01444999999995 76.19274900000005) (-115.02250700000002 76.19692999999995) (-115.04527300000001 76.20220899999998) (-115.08944699999995 76.20887800000003) (-115.15972899999997 76.21859699999999) (-115.27223200000003 76.23027000000002) (-115.37304699999999 76.23082000000005) (-115.54943800000001 76.23054500000006) (-115.75666799999993 76.23414600000012) (-115.78195199999993 76.2352600000001) (-115.8272169999999 76.23942599999998) (-115.847778 76.24304200000006) (-115.86665299999993 76.24748200000005) (-115.88194299999992 76.25277699999992) (-115.91471899999993 76.27526900000004) (-115.92166099999997 76.28109699999993) (-115.92500299999989 76.28665200000006) (-115.90943899999996 76.34553500000004) (-115.90139799999997 76.3499910000001) (-115.86054999999999 76.3624880000001) (-115.64835399999998 76.42025800000005) (-115.62638899999996 76.42581200000001) (-115.51471700000002 76.45138500000013) (-115.49973299999994 76.45471200000009) (-115.46665999999993 76.45582600000006) (-115.26944700000001 76.46110500000003) (-115.02139299999993 76.47470099999998) (-115.00167799999997 76.47720300000009) (-114.978882 76.48165899999998) (-114.95638999999994 76.48719800000015) (-114.94638099999992 76.49247700000012) (-114.93360899999999 76.50499000000002) (-114.92999299999997 76.510269) (-114.91944899999999 76.5144350000001) (-114.89972699999987 76.51693699999998) (-114.74054699999988 76.51721200000003) (-114.71112099999999 76.51693699999998) (-114.70194999999995 76.51527400000003) (-114.69611399999991 76.51138299999997) (-114.69833399999999 76.50749200000013) (-114.720551 76.50109900000012) (-114.70694699999996 76.48970000000003) (-114.61028299999992 76.48831200000012) (-114.45140099999998 76.49693300000007) (-114.29361 76.48026999999996) (-114.25167799999991 76.47499099999999) (-114.20722999999987 76.46804800000001) (-114.17471299999994 76.46026600000005) (-114.14806399999998 76.45138500000013) (-114.13555899999989 76.44636500000007) (-114.11833199999995 76.43525700000009) (-114.11193800000001 76.42942800000009) (-114.10333299999996 76.41886900000003) (-114.096947 76.40359500000011) (-114.09111000000001 76.38888500000002) (-114.10611 76.35554500000012) (-114.11749299999997 76.353317) (-114.12943999999993 76.31191999999993) (-114.05972299999996 76.21775800000006) (-113.99665800000002 76.19274900000005) (-113.98332199999999 76.19026200000002) (-113.9583439999999 76.188873) (-113.94833399999999 76.18942300000003) (-113.70889299999999 76.20359800000011) (-113.685272 76.20610000000005) (-113.63890100000003 76.2127690000001) (-113.61609599999997 76.21832300000005) (-113.52443700000003 76.23580900000002) (-113.36501299999992 76.25860599999993) (-113.32333399999993 76.26277200000004) (-113.26055899999994 76.26443499999999) (-112.99916100000002 76.26748700000007) (-112.95667300000002 76.26361100000003) (-112.90972899999997 76.25749199999996) (-112.89222699999993 76.2538760000001) (-112.86860699999994 76.24470499999995) (-112.85888699999998 76.23997500000013) (-112.85305800000003 76.23414600000012) (-112.75055700000001 76.20054600000003) (-112.71721599999995 76.19831800000009) (-112.62138399999998 76.19831800000009) (-112.59028599999999 76.19663999999995) (-112.48194899999999 76.18136600000008) (-112.46278399999994 76.17831399999994) (-112.453888 76.176376) (-112.42500299999995 76.16775500000011) (-112.43138099999993 76.16192600000011) (-112.43859900000001 76.15887500000008) (-112.47721899999999 76.15138200000001) (-112.49416400000001 76.14665200000002) (-112.50389099999995 76.13859600000012) (-112.52610800000002 76.11053500000003) (-112.52806099999998 76.10386700000004) (-112.52278100000001 76.099152) (-112.42278299999987 76.04721100000012) (-112.41332999999992 76.04248000000001) (-112.38555899999994 76.03665200000006) (-112.29888900000003 76.0294340000001) (-112.15416699999997 76.01499899999999) (-112.06861899999996 76.00332600000013) (-112.04332699999992 75.99887100000012) (-111.9786069999999 75.98136900000009) (-111.78443900000002 75.9497070000001) (-111.76390100000003 75.94693000000001) (-111.75279199999994 75.9427490000001) (-111.72778299999999 75.92164600000001) (-111.72666900000002 75.915817) (-111.729446 75.91110199999997) (-111.736107 75.90498400000007) (-111.77749599999999 75.89471400000014) (-111.87138400000003 75.887497) (-111.94444299999998 75.88499500000012) (-112.00945300000001 75.88165299999997) (-112.03472899999997 75.879974) (-112.05222300000003 75.87803600000007) (-112.07501200000002 75.87387100000007) (-112.165009 75.85192899999998) (-112.17971799999998 75.84803800000009) (-112.18694299999993 75.844986) (-112.22556299999997 75.81109600000008) (-112.218613 75.80802900000015) (-112.20834399999995 75.80664100000007) (-112.19248999999996 75.8058170000001) (-112.02834299999995 75.81526199999996) (-111.85861199999988 75.82693499999999) (-111.69082599999996 75.82276900000011) (-111.64499699999993 75.82165500000013) (-111.604446 75.82666) (-111.53971899999993 75.83831800000002) (-111.49638400000003 75.83970600000009) (-111.47638699999999 75.839157) (-111.45195000000001 75.83665500000006) (-111.44499200000001 75.83221399999996) (-111.35527000000002 75.72442600000011) (-111.35388199999994 75.7185970000001) (-111.35500299999995 75.7144320000001) (-111.38971700000002 75.66303999999997) (-111.40834000000001 75.62081899999998) (-111.40722700000003 75.61499000000015) (-111.35360700000001 75.57249500000006) (-111.31861900000001 75.5452580000001) (-111.27139299999999 75.522491) (-111.24722299999996 75.51805100000001) (-111.221657 75.51693699999998) (-110.995003 75.52916000000005) (-110.97222899999997 75.53248600000012) (-110.89943700000003 75.55026200000009) (-110.79499799999996 75.56526200000002) (-110.77166699999992 75.56666600000005) (-110.54222099999993 75.5688780000001) (-110.49553699999996 75.56915300000009) (-110.47582999999992 75.56832900000012) (-110.45612299999999 75.56553599999995) (-110.43110699999994 75.55415299999999) (-110.42443799999995 75.54887399999996) (-110.42223399999995 75.54553200000004) (-110.33389299999993 75.53915400000005) (-110.19583099999994 75.53970300000003) (-110.06777999999997 75.54054300000007) (-109.97416699999991 75.53749099999999) (-109.75 75.52970900000003) (-109.55304699999999 75.52165200000002) (-109.30444299999999 75.51499900000005) (-109.25389100000001 75.51416000000012) (-109.18360899999999 75.5086060000001) (-109.07472199999995 75.49832200000009) (-108.936394 75.47665399999994) (-108.89943699999998 75.47637900000012) (-108.89584399999995 75.47720300000009) (-108.891953 75.48027000000002) (-108.91639700000002 75.51332100000013) (-108.92443800000001 75.52388000000002) (-108.83612099999993 75.61276200000003) (-108.8269499999999 75.68664600000005) (-108.84277299999991 75.69135999999997) (-108.88194299999998 75.69220000000007) (-108.91332999999992 75.69108600000004) (-108.94499199999996 75.69497699999994) (-109.05832699999996 75.72804300000007) (-109.05860899999993 75.73304700000006) (-109.0627669999999 75.73776200000009) (-109.12638900000002 75.7494200000001) (-109.21000699999996 75.76277199999998) (-109.26555599999995 75.77026400000005) (-109.30526700000001 75.77110300000004) (-109.45221700000002 75.78305100000006) (-109.62943999999993 75.7999880000001) (-109.63751200000002 75.82276900000011) (-109.62805200000003 75.829163) (-109.62638900000002 75.83248900000001) (-109.65722699999992 75.86637900000011) (-109.66361999999998 75.8708190000001) (-109.72972099999998 75.87664799999993) (-109.737503 75.87664799999993) (-109.845551 75.86303699999996) (-109.85722399999992 75.86080900000002) (-109.88390400000003 75.84999100000005) (-109.90778399999994 75.84999100000005) (-109.9363939999999 75.85664400000002) (-110.05555699999996 75.89054899999991) (-110.05583200000001 75.89443999999997) (-110.04055800000003 75.89860499999998) (-109.92610200000001 75.92776500000008) (-109.826683 75.93054199999995) (-109.697769 75.94026200000008) (-109.672234 75.94386299999991) (-109.65666199999998 75.94802900000002) (-109.42138699999998 76.03581200000002) (-109.30499299999991 76.10054000000014) (-109.30943300000001 76.1060940000001) (-109.313606 76.10914600000007) (-109.396118 76.13304100000005) (-109.69999699999994 76.21887200000003) (-109.72250400000001 76.22221399999995) (-109.80943300000001 76.23442100000011) (-109.83416699999998 76.23609900000002) (-109.858612 76.23580900000002) (-109.882767 76.23387100000008) (-109.89666699999992 76.23027000000002) (-109.902222 76.22608900000012) (-109.90167199999996 76.22109999999998) (-109.88305699999995 76.19886800000012) (-109.88667299999997 76.19497700000005) (-109.89666699999992 76.19358800000003) (-109.91944899999993 76.19663999999995) (-109.94055200000003 76.20248400000014) (-110.01471700000002 76.22970600000008) (-110.06833599999993 76.25000000000006) (-110.08528100000001 76.25582900000006) (-110.12332199999997 76.26609800000006) (-110.15306099999998 76.27388000000002) (-110.201683 76.28553800000003) (-110.24109599999991 76.29054300000013) (-110.26583900000003 76.2913670000001) (-110.33138999999989 76.29081700000006) (-110.35804699999994 76.29220600000002) (-110.372772 76.29443399999997) (-110.38362099999995 76.29776000000004) (-110.39306599999986 76.3919370000001) (-110.38527699999986 76.42303500000008) (-110.38390400000003 76.42747500000013) (-110.28943600000002 76.43304400000011) (-110.095551 76.45416300000011) (-109.80721999999997 76.49054000000012) (-109.74638400000003 76.50555399999996) (-109.71833799999996 76.51527400000003) (-109.70639 76.5211030000001) (-109.70694700000001 76.52609300000012) (-109.71140300000002 76.52998400000001) (-109.72416699999997 76.5316620000001) (-109.74916100000002 76.5316620000001) (-109.81111099999993 76.52720600000004) (-109.83222999999992 76.52916000000005) (-109.84722899999991 76.53248600000006) (-109.83750900000001 76.53887900000007) (-109.75527999999997 76.57276899999994) (-109.70667299999997 76.5874940000001) (-109.64666699999998 76.59332300000011) (-109.56082199999997 76.64082300000007) (-109.5097429999999 76.70832800000005) (-109.30277999999998 76.79693600000013) (-109.222778 76.80802900000015) (-109.12777699999992 76.81944300000004) (-109.02583299999998 76.82276900000011) (-108.97444199999995 76.8160860000001) (-108.95084400000002 76.81164600000011) (-108.93582200000003 76.80941799999994) (-108.91887699999995 76.80941799999994) (-108.88945000000001 76.81414799999999) (-108.84500099999997 76.82360800000004) (-108.8219529999999 76.82998700000007) (-108.81331599999999 76.83387800000014) (-108.813606 76.83776900000004) (-108.81582600000002 76.84304800000001) (-108.81388899999996 76.84748800000006) (-108.78859699999992 76.85720800000013) (-108.77362099999999 76.85775799999999) (-108.74804699999999 76.85582000000005) (-108.65556300000003 76.81749000000008) (-108.65110800000002 76.81359900000001)) ((-97.04527299999995 76.7977600000001) (-97.075287 76.79332000000011) (-97.093887 76.79693600000013) (-97.18859899999995 76.82276900000011) (-97.20056199999999 76.82943700000004) (-97.20083599999992 76.83415200000007) (-97.20083599999992 76.85748299999995) (-97.18749999999994 76.86026000000004) (-97.14917000000003 76.85971100000012) (-97.12887599999999 76.85775799999999) (-97.08694500000001 76.85108900000012) (-97.00500499999998 76.81971699999997) (-96.99722299999996 76.813309) (-97.00917099999998 76.80748) (-97.02639799999992 76.80247500000013) (-97.04527299999995 76.7977600000001)) ((-113.46610999999996 76.766388) (-113.61361699999992 76.71304300000008) (-113.628601 76.70803800000004) (-113.65249599999999 76.70443699999998) (-113.67999299999985 76.70443699999998) (-113.70417799999996 76.70637499999992) (-113.78472899999997 76.71720900000003) (-113.83667000000003 76.71998600000006) (-113.889183 76.7185970000001) (-114.05471799999992 76.70359800000006) (-114.16194200000001 76.71693399999998) (-114.21444699999995 76.72053500000004) (-114.501106 76.73414600000001) (-114.73416099999997 76.746643) (-114.78694200000001 76.75027499999993) (-114.82501200000002 76.753601) (-114.85888699999998 76.75804099999999) (-114.87304699999993 76.76081800000009) (-114.87526700000001 76.76554900000002) (-114.87581599999999 76.770828) (-114.85526999999996 76.79443400000008) (-114.83721899999989 76.80165099999999) (-114.80444299999994 76.813309) (-114.76666299999988 76.82388300000008) (-114.62416099999996 76.86192299999999) (-114.60637700000001 76.86581400000006) (-114.58583099999993 76.86747699999995) (-114.33693700000003 76.87719700000008) (-114.13834400000002 76.88443000000007) (-113.96221899999995 76.88998400000008) (-113.885559 76.89166300000005) (-113.80750299999994 76.8894350000001) (-113.7625119999999 76.88443000000007) (-113.73444399999994 76.87914999999998) (-113.49804699999993 76.83332800000011) (-113.48750299999989 76.82777399999998) (-113.44915799999995 76.77720599999998) (-113.453888 76.77276599999993) (-113.46610999999996 76.766388)) ((-109.06610099999995 76.90054300000008) (-109.07444800000002 76.89471400000008) (-109.12581599999987 76.89860499999998) (-109.229172 76.90693699999997) (-109.254997 76.91081200000013) (-109.29888899999997 76.92221100000006) (-109.30777 76.92804000000007) (-109.30387899999994 76.93386799999996) (-109.28278399999999 76.93775900000003) (-109.256958 76.93887300000006) (-109.20527600000003 76.93525699999998) (-109.17944299999999 76.93248000000006) (-109.12721299999998 76.92387399999996) (-109.09249899999992 76.91220099999992) (-109.07695000000001 76.9060970000001) (-109.06610099999995 76.90054300000008)) ((-97.25639299999995 76.96748400000013) (-97.28416400000003 76.96582000000012) (-97.33500700000002 76.96804800000007) (-97.40943900000002 76.97303799999997) (-97.458618 76.97720300000015) (-97.47305299999994 76.98054500000006) (-97.42388900000003 77.00582900000006) (-97.37470999999994 77.02249100000006) (-97.28611799999987 77.0333250000001) (-97.24305700000002 77.03749100000005) (-97.19915800000001 77.03776600000003) (-97.15472399999993 77.03027300000002) (-97.13667299999997 77.02554299999997) (-97.09222399999999 77.01081800000003) (-97.09306300000003 77.00499000000013) (-97.23110999999994 76.97137500000002) (-97.25639299999995 76.96748400000013)) ((-95.65972899999991 77.05886800000007) (-95.58555599999988 77.05331400000006) (-95.56082200000003 77.05358900000004) (-95.46528599999994 77.0583190000001) (-95.41776999999996 77.05693100000002) (-95.38667299999997 77.05247500000007) (-95.36833199999995 77.04859900000002) (-95.33721899999995 77.03997800000008) (-95.28805499999987 77.02249100000006) (-95.22471599999994 77.00637800000004) (-95.18194599999993 76.99636800000013) (-95.16833499999996 76.99414100000007) (-95.11582900000002 76.99581899999998) (-95 76.99054000000001) (-94.90638699999988 76.976089) (-94.8138889999999 76.97137500000002) (-94.72860699999995 76.97276299999993) (-94.71417200000002 76.97387700000013) (-94.68859900000001 76.97526600000009) (-94.636124 76.97692900000004) (-94.59306300000003 76.97554000000002) (-94.52639799999997 76.96943700000008) (-94.51000999999991 76.966095) (-94.49415599999992 76.96026599999993) (-94.48971599999999 76.95610000000005) (-94.40194699999995 76.91832) (-94.25778200000002 76.89637800000008) (-94.25473 76.89137300000004) (-94.23889199999996 76.8894350000001) (-94.20722999999992 76.88804600000009) (-94.15972899999997 76.887497) (-94.09638999999999 76.88888500000007) (-94.08168 76.89027400000009) (-94.05499299999985 76.89471400000008) (-94.03222699999992 76.90332000000001) (-94.02610799999997 76.90914900000001) (-94.010559 76.91914400000013) (-94.00111399999992 76.92359899999997) (-93.98666399999996 76.92886400000003) (-93.964722 76.93248000000006) (-93.94360399999994 76.93386799999996) (-93.89999399999994 76.93331900000004) (-93.75500499999993 76.922485) (-93.73916600000001 76.92082200000004) (-93.6583399999999 76.909988) (-93.64944500000001 76.90803500000004) (-93.641953 76.90525800000012) (-93.63583399999999 76.89888000000002) (-93.48860200000001 76.83970600000009) (-93.30139200000002 76.76860000000005) (-93.208054 76.74693300000001) (-93.20278899999994 76.74748199999993) (-93.19221499999998 76.747208) (-93.18749999999994 76.74552900000003) (-93.17971799999992 76.74108899999999) (-93.16972399999997 76.68691999999999) (-93.17443800000001 76.67498799999998) (-93.18638599999997 76.66081200000002) (-93.30027799999988 76.55219999999997) (-93.30665599999992 76.54664600000001) (-93.46139499999998 76.49832200000003) (-93.59527600000001 76.46249399999999) (-93.62998999999996 76.45193499999999) (-93.641953 76.44720500000011) (-93.651947 76.44165000000004) (-93.65222199999994 76.43775900000014) (-93.650284 76.43553200000008) (-93.54833999999988 76.38610800000009) (-93.52860999999996 76.38472000000002) (-93.50944500000003 76.38665800000012) (-93.49833699999999 76.38888500000002) (-93.46362299999987 76.39942900000005) (-93.456955 76.40359500000011) (-93.4674 76.40792799999997) (-93.48055999999997 76.40992700000004) (-93.50083899999998 76.4102630000001) (-93.508896 76.40664700000008) (-93.520554 76.40582300000011) (-93.537781 76.407486) (-93.55499299999997 76.41137700000007) (-93.57084699999996 76.41638200000011) (-93.58056599999998 76.42303500000008) (-93.57640100000003 76.42665099999999) (-93.53306599999996 76.44303900000006) (-93.51889 76.44831800000003) (-93.50140399999992 76.4522090000001) (-93.476562 76.45477299999993) (-93.45422399999995 76.45643600000005) (-93.42222600000002 76.45832800000011) (-93.39277600000003 76.46165500000006) (-93.37027 76.46638500000006) (-93.35722399999992 76.4705350000001) (-93.12361099999993 76.57304399999998) (-93.11111499999993 76.58027600000008) (-93.09527600000001 76.59054600000002) (-93.09695399999993 76.59664900000013) (-93.09973100000002 76.601654) (-93.04638699999992 76.6160890000001) (-92.945831 76.62248200000005) (-92.90306099999998 76.62191800000011) (-92.88027999999997 76.62081899999998) (-92.85722399999992 76.61831700000005) (-92.78971899999993 76.60914600000012) (-92.70527600000003 76.59443700000008) (-92.68360899999999 76.59248400000013) (-92.65499899999998 76.59471100000002) (-92.64250199999998 76.59803799999997) (-92.632767 76.60247800000013) (-92.61805700000002 76.607483) (-92.60583499999996 76.61053500000014) (-92.56443799999994 76.6160890000001) (-92.5411069999999 76.61775200000005) (-92.506393 76.61747700000001) (-92.46833800000002 76.61303700000002) (-92.44082599999996 76.60331700000012) (-92.42111199999988 76.59803799999997) (-92.40055799999999 76.594986) (-92.38694800000002 76.59387200000003) (-92.36860699999994 76.59443700000008) (-92.33084099999996 76.59721400000001) (-92.18331899999998 76.61469999999991) (-92.07749899999999 76.63720700000005) (-92.04360999999989 76.64694200000008) (-92.00433299999992 76.65789799999993) (-91.99194299999999 76.66081200000002) (-91.97000100000002 76.66442899999998) (-91.93859900000001 76.66832000000005) (-91.9100039999999 76.6705320000001) (-91.77555799999993 76.67970300000002) (-91.66860999999994 76.68470800000006) (-91.53582799999992 76.68887300000006) (-91.41055299999994 76.6891480000001) (-91.38528399999996 76.68830900000012) (-91.132767 76.66442899999998) (-91.00889599999994 76.65165700000011) (-90.98611499999998 76.64915500000006) (-90.88389599999994 76.62664799999999) (-90.87138399999998 76.62275700000009) (-90.85472099999998 76.61554000000001) (-90.84999099999987 76.60914600000012) (-90.84416199999993 76.6035920000001) (-90.83721899999995 76.59915200000012) (-90.81777999999997 76.59359700000005) (-90.77999899999998 76.58581500000008) (-90.741104 76.58055100000007) (-90.67443800000001 76.57331800000009) (-90.62638899999996 76.56999200000007) (-90.58250399999997 76.56526200000002) (-90.56361400000003 76.559708) (-90.50306699999993 76.53137200000009) (-90.49861099999993 76.52499399999994) (-90.468613 76.47915599999999) (-90.46806300000003 76.47303800000009) (-90.48332199999993 76.46804800000001) (-90.51083399999999 76.46388200000013) (-90.53805499999993 76.46138000000002) (-90.61610399999995 76.45637499999998) (-90.63833599999992 76.45582600000006) (-90.77917500000001 76.46110500000003) (-90.82640099999998 76.46304299999997) (-91.09056099999992 76.47804300000013) (-91.304169 76.50416600000005) (-91.34973100000002 76.50943000000007) (-91.37388599999986 76.51110799999998) (-91.41471899999993 76.51277199999998) (-91.441101 76.51277199999998) (-91.56416299999995 76.50082399999997) (-91.566666 76.49887100000001) (-91.41639699999996 76.46026600000005) (-91.40249599999999 76.45748899999995) (-91.27111799999994 76.4538730000001) (-91.14750699999996 76.45082100000002) (-91.05721999999997 76.45054600000014) (-90.99110399999995 76.44775400000009) (-90.97416699999997 76.44609100000014) (-90.79777499999994 76.42692599999998) (-90.64222699999999 76.41053799999992) (-90.41444399999995 76.40304600000002) (-90.36833199999995 76.39999400000005) (-90.31722999999994 76.39471400000002) (-90.281387 76.38916) (-90.06361400000003 76.36164899999994) (-89.83138999999994 76.34027100000003) (-89.54388399999993 76.31693999999999) (-89.36776699999996 76.30415299999999) (-89.30555700000002 76.299149) (-89.29249600000003 76.29609700000009) (-89.23055999999991 76.27276600000005) (-89.21777299999991 76.26666300000011) (-89.20861799999994 76.26081800000003) (-89.20111099999991 76.25416600000011) (-89.19221499999998 76.24220300000007) (-89.19249000000002 76.23609900000002) (-89.19860799999987 76.22526600000009) (-89.20916699999998 76.22109999999998) (-89.29554699999994 76.19775400000015) (-89.32640099999992 76.18942300000003) (-89.34973099999996 76.18359400000003) (-89.37805199999997 76.18026700000007) (-89.58833299999992 76.16581699999995) (-89.831955 76.16081200000008) (-89.88861099999991 76.16609199999999) (-89.90417500000001 76.16886900000009) (-89.97610500000002 76.17387400000013) (-90.37332200000003 76.18136600000008) (-90.39778099999995 76.18054200000012) (-90.416946 76.17886399999998) (-90.43859899999995 76.17553700000008) (-90.45361300000002 76.17053199999998) (-90.45584099999996 76.16720599999996) (-90.45556599999998 76.16554300000001) (-90.43859899999995 76.1622010000001) (-90.41444399999995 76.15998799999994) (-90.25695799999994 76.14694200000002) (-90.22222899999997 76.14444000000015) (-90.1516719999999 76.14166300000005) (-90.0641629999999 76.13693200000012) (-90.04861499999998 76.13275100000004) (-90.06361400000003 76.12776200000008) (-90.0852809999999 76.1244200000001) (-90.11082499999998 76.124146) (-90.30888400000003 76.13832100000008) (-90.44860799999998 76.15498400000001) (-90.66639700000002 76.16693099999998) (-90.78611799999999 76.17137100000014) (-90.93720999999994 76.1808170000001) (-91.11221299999988 76.19192499999991) (-91.20472699999993 76.2127690000001) (-91.21972699999998 76.21832300000005) (-91.25695799999994 76.22720300000009) (-91.27444499999996 76.23027000000002) (-91.42361499999998 76.2538760000001) (-91.44583099999994 76.25665300000003) (-91.57139599999994 76.26527400000009) (-91.59722899999997 76.2649990000001) (-91.61361699999998 76.26220699999999) (-91.59973099999996 76.25610400000005) (-91.579453 76.25166300000012) (-91.41665599999999 76.22526600000009) (-91.33277900000002 76.214157) (-91.33666999999997 76.17858899999999) (-91.27194199999991 76.15582299999994) (-91.22027600000001 76.16165199999995) (-91.20333900000003 76.16137700000013) (-91.16332999999997 76.15971400000001) (-91.11665299999999 76.15637200000009) (-90.88249199999996 76.1372070000001) (-90.700287 76.11943100000013) (-90.67971799999998 76.11720300000002) (-90.665009 76.11219800000015) (-90.75750699999998 76.07638500000013) (-90.78527799999995 76.07276900000005) (-90.80943299999996 76.07193000000007) (-90.833618 76.07276900000005) (-90.85527000000002 76.07222000000013) (-90.86250299999995 76.06999200000013) (-90.866104 76.06721500000003) (-90.86471599999999 76.06498700000009) (-90.84889199999998 76.06080600000001) (-90.71578199999999 76.06343099999998) (-90.70360599999992 76.06492600000001) (-90.66394000000003 76.07426500000003) (-90.66094199999986 76.07643100000001) (-90.61166400000002 76.08471700000007) (-90.59916699999997 76.08804299999997) (-90.57501200000002 76.09027100000009) (-90.54833999999994 76.0913700000001) (-90.47416699999997 76.08970600000004) (-90.42944299999999 76.08831800000013) (-90.408615 76.08638000000002) (-90.19444299999992 76.06275900000014) (-90.19055200000003 76.06109600000002) (-90.19387799999998 76.055252) (-90.20249899999999 76.05026199999998) (-90.215012 76.04582199999993) (-90.23388699999992 76.0410920000001) (-90.27416999999997 76.03442400000012) (-90.30166600000001 76.032486) (-90.32861300000002 76.03137200000003) (-90.40472399999993 76.03109699999999) (-90.63594799999998 76.02815200000003) (-90.71845200000001 76.02265899999998) (-90.90417500000001 76.01554900000002) (-90.92916899999989 76.01554900000002) (-91.00527999999997 76.02499400000005) (-91.14472999999998 76.02110299999998) (-91.16082799999992 76.01805100000007) (-91.15527299999991 76.01416) (-91.06973299999993 75.99026500000002) (-90.95028699999995 75.9622040000001) (-90.94193999999999 75.95555100000013) (-90.93859899999995 75.95138500000002) (-90.94193999999999 75.94552600000003) (-90.94888299999997 75.93997200000001) (-90.96806300000003 75.9310910000001) (-91.016953 75.92553700000008) (-91.07055700000001 75.922485) (-91.100281 75.9185940000001) (-91.11888099999993 75.91387900000007) (-91.12943999999999 75.90860000000009) (-91.14334099999996 75.89721700000007) (-91.12582399999985 75.857483) (-91.13249200000001 75.85192899999998) (-91.13583399999993 75.84609999999998) (-91.13417099999992 75.84248400000013) (-91.12999000000002 75.839157) (-91.10749800000002 75.84054599999996) (-91.09167500000001 75.84332300000005) (-91.07945299999994 75.84803800000009) (-91.0533289999999 75.88108799999998) (-90.93998699999997 75.91526800000008) (-90.90306099999992 75.92469800000015) (-90.89584400000001 75.92720000000003) (-90.886124 75.93165599999998) (-90.847778 75.95220899999998) (-90.833618 75.96026599999999) (-90.827789 75.966385) (-90.80555700000002 75.98553500000014) (-90.79388399999999 75.99470500000001) (-90.77749599999999 75.99609400000003) (-90.75584399999997 75.99498000000006) (-90.71722399999993 75.98915100000005) (-90.56945799999994 75.97998000000007) (-90.48332199999993 75.98027000000008) (-90.464447 75.97859199999999) (-90.44471699999997 75.97415199999995) (-90.43331899999998 75.97026100000005) (-90.42944299999999 75.96832300000011) (-90.43415800000002 75.96331800000007) (-90.44249000000002 75.95971700000001) (-90.49221799999998 75.94581600000004) (-90.51916499999999 75.93609600000013) (-90.52610799999997 75.93054199999995) (-90.52833599999991 75.92553700000008) (-90.53138699999994 75.91360500000013) (-90.53167699999995 75.90359500000005) (-90.52999899999986 75.89833100000004) (-90.521118 75.8955380000001) (-90.50472999999994 75.89526399999994) (-90.49694799999997 75.89776600000005) (-90.34722899999997 75.9494170000001) (-90.34222399999999 75.95304900000008) (-90.337784 75.96304300000008) (-90.339447 75.96832300000011) (-90.25695799999994 75.96693399999998) (-90.11805700000002 75.94192499999997) (-90.11444099999994 75.94775399999997) (-90.10249299999998 75.96165499999995) (-90.07250999999997 75.99552900000015) (-90.060272 76.00471500000009) (-90.05277999999998 76.00721700000003) (-90.03750600000001 76.00915500000013) (-90.015015 76.01026900000011) (-89.96665999999988 76.00860599999999) (-89.947495 76.00721700000003) (-89.92971799999992 76.00471500000009) (-89.92443799999995 76.00221300000004) (-89.90916399999998 75.96499599999999) (-89.82501200000002 75.94303899999994) (-89.68749999999994 75.89999399999999) (-89.68998699999992 75.89498900000012) (-89.702225 75.87970000000007) (-89.70944199999991 75.87414600000005) (-89.72444199999995 75.86303699999996) (-89.75029 75.84664900000013) (-89.77278100000001 75.83638000000008) (-89.778885 75.83166500000004) (-89.78222700000003 75.82582100000002) (-89.77639799999997 75.79275500000006) (-89.77500899999995 75.7874910000001) (-89.76501499999995 75.78581200000008) (-89.73889199999996 75.78665200000012) (-89.69249000000002 75.79637100000014) (-89.68638599999997 75.80247499999996) (-89.68804899999998 75.80442800000009) (-89.68916299999995 75.809708) (-89.68554699999999 75.81414799999999) (-89.61999499999996 75.8535920000001) (-89.61111499999993 75.85720800000013) (-89.58750899999995 75.85914600000007) (-89.558334 75.857483) (-89.43916300000001 75.845261) (-89.42277499999994 75.8419340000001) (-89.41027799999995 75.82971200000009) (-89.39250199999998 75.82110599999999) (-89.37777699999998 75.816666) (-89.32000700000003 75.80386399999998) (-89.27749599999993 75.79832499999998) (-89.20140100000003 75.78692600000005) (-89.172775 75.78054800000012) (-89.16416900000002 75.7747040000001) (-89.160278 75.76805100000013) (-89.16055299999994 75.75582899999995) (-89.166946 75.7452550000001) (-89.25389099999995 75.63108800000003) (-89.262787 75.62776199999996) (-89.27500899999995 75.62776199999996) (-89.33667000000003 75.62776199999996) (-89.54305999999997 75.61053500000014) (-89.64917000000003 75.61554000000001) (-89.76306199999999 75.57748400000003) (-89.76528899999988 75.57554600000009) (-89.73944099999994 75.57360799999992) (-89.72250400000001 75.57415799999995) (-89.68194599999987 75.57998699999996) (-89.64999399999999 75.5872040000001) (-89.60555999999991 75.58970599999998) (-89.58833299999992 75.58859300000006) (-89.550995 75.57971199999997) (-89.54249600000003 75.57054099999999) (-89.54861499999998 75.56608599999998) (-89.56806899999998 75.5619200000001) (-89.62832599999996 75.56137099999995) (-89.67639200000002 75.56219499999992) (-89.69249000000002 75.56109600000013) (-89.706955 75.55748000000006) (-89.70083599999998 75.55304000000007) (-89.64555399999995 75.54832500000003) (-89.57667499999997 75.54775999999998) (-89.55082700000003 75.54887399999996) (-89.52639799999992 75.5519260000001) (-89.515015 75.55415299999999) (-89.500565 75.55886800000002) (-89.49194299999999 75.56553599999995) (-89.47361799999987 75.5747070000001) (-89.458618 75.57943699999993) (-89.441666 75.583328) (-89.431671 75.584427) (-89.40333599999997 75.5872040000001) (-89.35166900000002 75.58915700000006) (-89.30221599999999 75.58915700000006) (-89.23582499999998 75.58665500000012) (-89.21722399999999 75.58499100000012) (-89.18277 75.57720899999998) (-89.17443800000001 75.572769) (-89.16833500000001 75.56666600000005) (-89.15638699999994 75.54971300000011) (-89.15499899999998 75.54443400000014) (-89.14917000000003 75.53221100000007) (-89.14306599999998 75.52442900000011) (-89.09973100000002 75.48414600000007) (-88.96389799999997 75.43193100000008) (-88.95056199999993 75.42970300000013) (-88.92138699999998 75.42719999999997) (-88.87110899999999 75.43414300000012) (-88.84167500000001 75.43637100000007) (-88.81861899999996 75.43692000000004) (-88.79695100000004 75.4349820000001) (-88.77972399999999 75.43248) (-88.76888999999994 75.434708) (-88.74777199999994 75.4708250000001) (-88.75 75.47499100000005) (-88.80139200000002 75.53137200000015) (-88.86582900000002 75.58610500000009) (-88.75500499999998 75.67665099999994) (-88.73889200000002 75.67942800000003) (-88.72277799999989 75.67915300000004) (-88.67832900000002 75.67526199999998) (-88.63166799999999 75.66720600000008) (-88.60082999999992 75.65942400000012) (-88.57417299999992 75.64888000000008) (-88.54277000000002 75.63581800000003) (-88.50778200000002 75.61943100000008) (-88.44888300000002 75.59526100000005) (-88.39944500000001 75.579163) (-88.36416600000001 75.5688780000001) (-88.31582600000002 75.55636600000008) (-88.228882 75.5394290000001) (-88.20361300000002 75.5310970000001) (-88.19888299999997 75.52859500000005) (-88.19694500000003 75.52276600000005) (-88.19860799999998 75.51721200000003) (-88.20140100000003 75.51220699999999) (-88.21749899999992 75.50972000000007) (-88.24082899999996 75.50915500000008) (-88.29083300000002 75.49693300000007) (-88.3058319999999 75.49220300000007) (-88.30139199999996 75.48803700000013) (-88.29527300000001 75.48498500000005) (-88.26306199999993 75.47608900000012) (-88.228882 75.47109999999998) (-88.21305799999999 75.4705350000001) (-88.20083599999992 75.47192400000012) (-88.148056 75.48887600000012) (-88.12249799999995 75.50109900000001) (-88.06806899999998 75.52192700000006) (-87.958054 75.54414400000013) (-87.75140399999992 75.57666000000006) (-87.71611000000001 75.57527199999993) (-87.69776899999994 75.57360799999992) (-87.66139199999992 75.56721500000015) (-87.648346 75.5619200000001) (-87.495544 75.48580900000002) (-87.49499500000002 75.48387100000008) (-87.49888599999991 75.47804300000013) (-87.50473 75.474426) (-87.52999899999992 75.46527100000014) (-87.56388900000002 75.45915200000007) (-87.58860799999997 75.45637500000004) (-87.60139499999997 75.45332300000007) (-87.60638399999993 75.44970700000005) (-87.59472699999998 75.44636500000007) (-87.58277899999996 75.444702) (-87.56834400000002 75.44358800000003) (-87.54861499999993 75.44442700000013) (-87.53361499999988 75.44609099999997) (-87.5 75.4522090000001) (-87.45973200000003 75.46138000000008) (-87.44583099999994 75.46527100000014) (-87.43443300000001 75.46887199999998) (-87.4183349999999 75.47970600000008) (-87.41639700000002 75.48526000000004) (-87.43028300000003 75.50109900000001) (-87.43777499999999 75.5086060000001) (-87.44444299999992 75.51388500000007) (-87.46665999999999 75.5211030000001) (-87.46278399999994 75.56303400000007) (-87.39306599999998 75.6041560000001) (-87.38110399999994 75.609421) (-87.35472099999998 75.61303700000002) (-87.28555299999988 75.62025500000004) (-87.26333599999998 75.62109400000003) (-87.25111400000003 75.62109400000003) (-87.23416099999992 75.6183170000001) (-87.08805799999993 75.57998699999996) (-87.07917800000001 75.56666600000005) (-87.07278399999996 75.55998199999999) (-87.05526700000001 75.54693600000002) (-87.01194800000002 75.53137200000015) (-86.96749899999998 75.518326) (-86.931107 75.50804100000005) (-86.914444 75.50387600000005) (-86.86277799999993 75.49165300000004) (-86.80749500000002 75.47915600000005) (-86.77111799999994 75.47554000000014) (-86.72222899999997 75.47499100000005) (-86.64334099999996 75.47804300000013) (-86.631104 75.47776799999991) (-86.60194399999995 75.47637900000012) (-86.58389299999988 75.47470100000004) (-86.56750499999998 75.47221400000012) (-86.48332199999993 75.45665000000002) (-86.464722 75.45277399999998) (-86.37554899999998 75.42747500000013) (-86.36555499999997 75.42330900000007) (-86.36888099999999 75.41832000000011) (-86.38917500000002 75.40776100000005) (-86.400284 75.40220599999998) (-86.41528299999999 75.39888000000013) (-86.50639299999995 75.38804600000003) (-86.55387899999994 75.38136300000008) (-86.57667500000002 75.37719700000002) (-86.61111499999998 75.36831699999999) (-86.61527999999998 75.36554000000007) (-86.59666399999998 75.361649) (-86.54472399999997 75.35914600000001) (-86.52027900000002 75.36025999999998) (-86.49194299999994 75.36276200000009) (-86.37609900000001 75.37637300000006) (-86.35833699999995 75.37969999999996) (-86.24527 75.40193200000004) (-86.19860799999992 75.41609199999994) (-86.16999799999996 75.41859400000004) (-86.08250399999997 75.42137100000014) (-86.03138699999994 75.42248500000011) (-85.833618 75.41609199999994) (-85.68055700000002 75.40803499999998) (-85.67443800000001 75.41832000000011) (-85.90861499999994 75.4602660000001) (-86.00639299999989 75.47221400000012) (-86.10972600000002 75.48193400000002) (-86.12471 75.48553500000008) (-86.13833599999992 75.48997500000007) (-86.14944500000001 75.49636800000007) (-86.154449 75.50082399999997) (-86.14306599999998 75.50804100000005) (-86.11332699999997 75.51499900000005) (-86.09695399999998 75.51776099999995) (-86.00389100000001 75.53137200000015) (-85.90861499999994 75.54386899999992) (-85.86555499999997 75.54470800000007) (-85.76306199999999 75.54609700000009) (-85.44387799999987 75.56025699999998) (-85.32917800000001 75.56109600000013) (-85.30332899999996 75.5688780000001) (-85.18998699999992 75.61192300000005) (-85.07417299999992 75.65193199999999) (-85.05444299999999 75.65609699999999) (-85.03916900000002 75.657761) (-84.92694099999994 75.65887499999997) (-84.87916599999988 75.65693700000003) (-84.79722600000002 75.65277100000014) (-84.76306199999993 75.65026900000004) (-84.71833799999996 75.64276100000006) (-84.68388399999992 75.63443000000012) (-84.62249799999995 75.62803600000007) (-84.59973100000002 75.62664799999999) (-84.57223499999998 75.626373) (-84.524719 75.62803600000007) (-84.4974979999999 75.63165300000003) (-84.50306699999999 75.633331) (-84.51945499999994 75.63610800000004) (-84.53999299999998 75.6377720000001) (-84.55722000000003 75.63888500000013) (-84.60777300000001 75.63916) (-84.63110399999988 75.64054899999996) (-84.65110799999997 75.64359999999999) (-84.65722699999992 75.64749100000006) (-84.66361999999998 75.68609600000002) (-84.644455 75.68719499999997) (-84.48277300000001 75.69442700000008) (-84.35055499999987 75.69775400000003) (-84.32278399999996 75.69914199999994) (-84.29916400000002 75.70277400000009) (-84.07055699999995 75.76193200000012) (-83.92944299999988 75.81080600000007) (-83.87815099999995 75.81896200000006) (-83.76722699999993 75.82415800000012) (-83.74055499999997 75.82443200000006) (-83.72250399999996 75.822495) (-83.70388799999995 75.81832900000006) (-83.69804399999992 75.81442300000003) (-83.70638999999994 75.81219500000009) (-83.72193900000002 75.81080600000007) (-83.74888599999997 75.80664100000007) (-83.752228 75.801376) (-83.73693800000001 75.79525800000005) (-83.69860799999998 75.79026800000003) (-83.67277499999994 75.78887900000001) (-83.61999500000002 75.78942900000004) (-83.56610099999989 75.7916560000001) (-83.51528899999988 75.78970300000015) (-83.49526999999995 75.78637700000013) (-83.47972099999993 75.78221100000002) (-83.464722 75.77609300000012) (-83.45834400000001 75.77026400000005) (-83.447769 75.75582899999995) (-83.43360899999999 75.75027499999999) (-83.41915899999987 75.74887099999995) (-83.29222099999993 75.73776200000009) (-83.12361099999998 75.73442100000005) (-83.06527699999992 75.73915100000005) (-82.96000700000002 75.756104) (-82.82028200000002 75.78193700000008) (-82.79943799999995 75.78610200000008) (-82.66471899999999 75.81137100000012) (-82.46640000000002 75.82804899999996) (-82.32722499999994 75.836929) (-82.27917500000001 75.83665500000006) (-82.13999899999988 75.82693499999999) (-81.95666499999993 75.81526199999996) (-81.885559 75.81109600000008) (-81.66082799999992 75.81137100000012) (-81.53694199999995 75.809418) (-81.45056199999999 75.80081200000006) (-81.21250900000001 75.77137800000008) (-81.22084000000001 75.70471200000003) (-81.27667199999996 75.66832000000005) (-81.281677 75.66360500000002) (-81.285278 75.657486) (-81.271118 75.65138200000013) (-81.256958 75.649719) (-81.01000999999997 75.633331) (-80.98388699999998 75.633331) (-80.85777299999995 75.634995) (-80.77999899999992 75.6377720000001) (-80.54722600000002 75.65081800000002) (-80.50250199999994 75.65220600000009) (-80.48055999999997 75.651093) (-80.46665999999999 75.649429) (-80.31695599999995 75.63053900000006) (-80.275284 75.6249850000001) (-80.25611900000001 75.62164300000012) (-80.19915800000001 75.60887100000014) (-80.101944 75.58692900000005) (-80.06834400000002 75.57887299999999) (-79.95361299999996 75.54026800000008) (-79.94860799999992 75.53414900000001) (-79.95611599999995 75.530823) (-80.0850069999999 75.50776699999994) (-80.19166599999988 75.48997500000007) (-80.25250199999999 75.48580900000002) (-80.35526999999996 75.47387700000007) (-80.37193299999996 75.46887199999998) (-80.37304699999993 75.46304299999997) (-80.358337 75.45860299999998) (-80.33860799999991 75.45637500000004) (-80.30665599999992 75.45609999999999) (-80.10804699999994 75.46914700000002) (-80.0002899999999 75.47692899999998) (-79.92916899999994 75.47970600000008) (-79.73332199999993 75.47192400000012) (-79.714722 75.4705350000001) (-79.64416499999999 75.46249400000005) (-79.58639499999998 75.45471200000009) (-79.5747219999999 75.44999700000005) (-79.581955 75.44636500000007) (-79.635559 75.44581599999998) (-79.656387 75.44413800000007) (-79.67555199999993 75.44136000000003) (-79.68305999999995 75.43580600000007) (-79.68249500000002 75.4308170000001) (-79.62222300000002 75.40248099999997) (-79.60555999999997 75.39804100000015) (-79.56166099999996 75.39498900000007) (-79.52000399999997 75.391098) (-79.50306699999999 75.38859600000006) (-79.48805199999993 75.383331) (-79.48693799999995 75.37997400000006) (-79.48860199999996 75.36248799999993) (-79.51000999999997 75.33804300000008) (-79.52749599999993 75.32222000000007) (-79.53944399999989 75.31776399999995) (-79.56332399999997 75.31860400000005) (-79.59666400000003 75.31608600000004) (-79.6100009999999 75.31080600000001) (-79.61471599999993 75.305542) (-79.61193800000001 75.29832500000009) (-79.5875089999999 75.28749100000005) (-79.57084700000001 75.283051) (-79.54888900000003 75.28109699999999) (-79.443085 75.28019000000006) (-79.50695799999988 75.22998000000007) (-79.571121 75.19914200000005) (-79.62943999999999 75.17498799999993) (-79.65167200000002 75.172485) (-79.73194899999993 75.16470300000003) (-79.77417000000003 75.16720599999996) (-79.835556 75.16026299999999) (-79.92944299999988 75.14054900000008) (-79.94415299999991 75.13638300000002) (-79.95472699999993 75.12692300000009) (-79.95584100000002 75.11387600000012) (-79.95527599999997 75.10664400000002) (-79.95584100000002 75.10026600000003) (-79.96055599999988 75.09471100000013) (-79.97416699999985 75.08998100000008) (-80.12887599999999 75.06805400000002) (-80.15083299999998 75.06553600000007) (-80.215012 75.063309) (-80.296112 75.05886800000007) (-80.44055200000003 75.03804000000002) (-80.42748999999992 75.02998400000013) (-80.40249599999993 75.02110300000004) (-80.32749899999999 74.99859600000013) (-80.31054699999999 74.99636800000013) (-80.29722599999997 74.996643) (-80.23889200000002 74.99443100000013) (-80.19444299999998 74.98997500000002) (-80.18221999999992 74.986649) (-80.17388899999992 74.98248300000006) (-80.18415800000002 74.97943099999998) (-80.21611000000001 74.976089) (-80.24305700000002 74.97303800000003) (-80.25834700000001 74.96971100000007) (-80.27194199999997 74.96499600000004) (-80.27888499999995 74.95942700000006) (-80.27888499999995 74.95721400000008) (-80.27417000000003 74.95109600000012) (-80.26611299999996 74.94664000000006) (-80.24082899999996 74.94664000000006) (-80.03361499999994 74.97442600000011) (-80.0269469999999 74.97998000000007) (-80.01306199999999 74.9869230000001) (-79.975281 74.9994200000001) (-79.94276400000001 75.00694300000009) (-79.91915899999992 75.01054399999998) (-79.79527300000001 75.02748099999997) (-79.776947 75.02832000000012) (-79.71640000000002 75.02886999999998) (-79.69276399999995 75.02804600000002) (-79.61389199999996 75.01998900000001) (-79.59722899999997 75.01748700000013) (-79.58250399999991 75.01443500000005) (-79.50500499999993 74.99832199999997) (-79.50195300000001 74.99581900000004) (-79.50723299999999 74.99304200000012) (-79.53582799999992 74.9916530000001) (-79.55555700000002 74.98719800000009) (-79.55194099999994 74.98165900000009) (-79.464722 74.9333190000001) (-79.4424899999999 74.92164600000007) (-79.42639200000002 74.91720600000002) (-79.391953 74.91110200000003) (-79.35722399999986 74.90748600000012) (-79.33860800000002 74.90332000000006) (-79.33473200000003 74.89999399999999) (-79.33361799999994 74.89637800000014) (-79.33361799999994 74.89444000000003) (-79.33583099999993 74.88916000000012) (-79.370544 74.87637300000011) (-79.39083900000003 74.87248200000005) (-79.50195300000001 74.85942100000011) (-79.53028899999993 74.85775800000005) (-79.58000199999998 74.85832199999999) (-79.73277300000001 74.83665500000012) (-79.85194399999995 74.81887800000004) (-79.86054999999999 74.81469700000014) (-79.8805539999999 74.81303400000007) (-79.93055700000002 74.81330900000006) (-80.06806899999998 74.83638000000008) (-80.25306699999993 74.87081899999998) (-80.27417000000003 74.88108799999998) (-80.28195199999999 74.88998400000008) (-80.29388399999993 74.91998300000012) (-80.29361 74.92637600000006) (-80.29695100000004 74.93109099999992) (-80.30638099999999 74.9391480000001) (-80.32167099999998 74.93775900000009) (-80.33528099999995 74.93304400000005) (-80.362213 74.92359900000002) (-80.38612399999988 74.91360499999996) (-80.396118 74.90859999999992) (-80.41305499999999 74.89776600000005) (-80.41665599999993 74.89387499999998) (-80.41610700000001 74.88888500000013) (-80.36111499999998 74.86886600000003) (-80.34777799999995 74.86499000000015) (-80.32972699999999 74.86137400000007) (-80.29695100000004 74.85693400000008) (-80.261124 74.85276799999997) (-80.22416699999997 74.84942600000005) (-80.18638599999997 74.84332300000011) (-80.15360999999996 74.83665500000012) (-80.108612 74.82443200000006) (-80.097778 74.82026700000006) (-80.10166899999996 74.78915400000005) (-80.15916400000003 74.73026999999996) (-80.19137599999993 74.69802900000008) (-80.15611299999995 74.63693200000006) (-80.14889499999992 74.63108800000003) (-80.14666699999998 74.62692300000003) (-80.14944499999996 74.6224820000001) (-80.16139199999992 74.61219800000009) (-80.231674 74.57804900000008) (-80.24804699999999 74.57609600000012) (-80.253716 74.57605000000007) (-80.33999599999999 74.58055100000013) (-80.38500999999997 74.5816650000001) (-80.454453 74.58082599999994) (-80.46888699999994 74.57943699999998) (-80.48889199999996 74.57554600000009) (-80.59167499999995 74.56442300000009) (-80.75306699999999 74.56330900000012) (-80.84416199999998 74.56275900000009) (-80.95195000000001 74.56608600000004) (-80.97471599999994 74.56693999999999) (-80.99415599999992 74.56971700000008) (-81.02999899999998 74.57666000000006) (-81.04972799999996 74.57916300000005) (-81.06945799999988 74.57971199999997) (-81.21916199999998 74.57138100000009) (-81.26972999999998 74.56608600000004) (-81.28750599999995 74.56303400000007) (-81.51083399999999 74.51443499999993) (-81.67083699999995 74.4785920000001) (-81.75917099999992 74.46110500000009) (-81.78500399999996 74.45776400000005) (-81.81082199999997 74.45694000000009) (-81.85472099999998 74.45942700000012) (-82.06054699999993 74.47554000000002) (-82.08168 74.47720300000009) (-82.10139500000002 74.47970600000008) (-82.32749899999999 74.5105440000001) (-82.511124 74.52720600000004) (-82.55721999999997 74.5147090000001) (-82.57472200000001 74.51165800000007) (-82.59249899999998 74.5105440000001) (-82.61527999999998 74.51110800000004) (-82.74749799999995 74.51805100000001) (-82.78361499999994 74.520264) (-82.87193300000001 74.53858900000006) (-82.91416900000002 74.549149) (-82.95361300000002 74.565811) (-83.01834099999991 74.59443699999991) (-83.05638099999999 74.61554000000001) (-83.07972699999993 74.63026400000007) (-83.08860799999997 74.63665800000012) (-83.09249899999998 74.64137299999999) (-83.10221899999993 74.65415999999999) (-83.12388599999997 74.68498200000005) (-83.12805199999997 74.69192500000003) (-83.13194299999998 74.70832800000011) (-83.12805199999997 74.71748400000007) (-83.10777299999995 74.74803200000002) (-83.09083599999985 74.75776700000011) (-83.07501200000002 74.76220699999993) (-83.04138199999994 74.76998900000007) (-83.02888499999995 74.77499399999994) (-83.02305599999994 74.78054800000012) (-83.02417000000003 74.78332500000005) (-83.08168 74.81805400000007) (-83.09584000000001 74.82388300000008) (-83.10526999999996 74.82666) (-83.116104 74.82859799999994) (-83.15583799999996 74.82693500000005) (-83.20306399999998 74.820831) (-83.22778299999987 74.82054099999999) (-83.24888599999997 74.82360800000009) (-83.29972799999996 74.83554100000015) (-83.33666999999997 74.84942600000005) (-83.380829 74.86637900000011) (-83.40222199999994 74.87525900000014) (-83.47555499999993 74.89665200000007) (-83.51139799999999 74.90165700000011) (-83.52806099999998 74.90165700000011) (-83.54750099999995 74.89749100000006) (-83.55972300000002 74.89248700000007) (-83.56054699999999 74.88720699999999) (-83.55943300000001 74.88081400000004) (-83.55694599999993 74.87525900000014) (-83.527222 74.84526100000005) (-83.51861600000001 74.83943200000004) (-83.47250400000001 74.81526200000002) (-83.45861799999994 74.80802899999998) (-83.42999299999991 74.79748499999994) (-83.39416499999999 74.79026800000003) (-83.37527499999993 74.78692600000011) (-83.35499599999997 74.784424) (-83.32749899999993 74.77916000000005) (-83.318893 74.77499399999994) (-83.32417299999997 74.75526400000012) (-83.32749899999993 74.75) (-83.45472699999999 74.591095) (-83.47444199999995 74.57971199999997) (-83.48416099999997 74.57499699999994) (-83.59889199999998 74.5435940000001) (-83.61166400000002 74.540817) (-83.72083999999995 74.54553200000004) (-83.78555299999994 74.54859899999997) (-83.80555699999996 74.55081200000012) (-83.83084099999996 74.55137600000006) (-83.85527000000002 74.55081200000012) (-83.90750100000002 74.54693600000007) (-84.03778099999994 74.53414900000007) (-84.06332399999997 74.530823) (-84.10749800000002 74.52331499999997) (-84.14584400000001 74.51554899999996) (-84.21640000000002 74.50721699999997) (-84.23889200000002 74.50555400000002) (-84.28555299999994 74.50360100000006) (-84.3327789999999 74.5038760000001) (-84.35583500000001 74.50444000000005) (-84.396118 74.50749200000013) (-84.64167800000001 74.50694300000004) (-84.850281 74.50221299999998) (-84.87138400000003 74.50138900000002) (-84.88945000000001 74.50221299999998) (-84.89944500000001 74.50332600000007) (-84.91194200000001 74.5080410000001) (-84.91665599999993 74.51110800000004) (-84.98306300000002 74.57054100000005) (-84.985275 74.57916300000005) (-84.97471599999994 74.61747700000006) (-84.96028100000001 74.65693700000008) (-84.95500199999987 74.66276600000009) (-84.95083599999998 74.66886900000003) (-84.95083599999998 74.6727600000001) (-84.95249899999999 74.67915300000004) (-84.95556599999998 74.68470800000011) (-84.96417200000002 74.69192500000003) (-84.97332799999987 74.69609100000014) (-84.99055499999997 74.69802900000008) (-85.00334199999998 74.69747900000004) (-85.06388899999996 74.651657) (-85.07250999999997 74.64109800000011) (-85.04472399999992 74.61219800000009) (-85.03750600000001 74.54109200000005) (-85.03694199999995 74.53526300000004) (-85.03860499999996 74.5288700000001) (-85.04360999999994 74.52331499999997) (-85.07417299999992 74.50888099999997) (-85.08778399999989 74.50499000000008) (-85.10472099999998 74.50166300000012) (-85.12527499999993 74.49859600000002) (-85.21444699999995 74.49192800000003) (-85.25944500000003 74.49054000000012) (-85.35305799999998 74.49859600000002) (-85.36361699999998 74.501938) (-85.36999500000002 74.50943000000007) (-85.36389199999996 74.53749099999999) (-85.36555499999997 74.54414400000013) (-85.37027 74.55247500000007) (-85.468613 74.65887500000002) (-85.47416699999991 74.66442899999998) (-85.48277300000001 74.67164600000012) (-85.49499499999996 74.67915300000004) (-85.50445599999995 74.68331899999993) (-85.520554 74.68803399999996) (-85.52722199999988 74.68887300000011) (-85.54333500000001 74.68637100000007) (-85.54998799999998 74.68193100000002) (-85.52417000000003 74.59860200000014) (-85.52084400000001 74.59304800000012) (-85.50917099999998 74.57998700000002) (-85.48693800000001 74.56109600000013) (-85.48194899999993 74.55415299999999) (-85.47999600000003 74.54776000000004) (-85.47917199999995 74.54165599999999) (-85.48028599999992 74.53720099999998) (-85.50389100000001 74.5205380000001) (-85.52722199999988 74.51026900000005) (-85.54222099999993 74.50555400000002) (-85.56054699999993 74.50138900000002) (-85.58084099999996 74.49832200000009) (-85.604172 74.49581899999993) (-86.01333599999998 74.47943100000009) (-86.05943300000001 74.4785920000001) (-86.08250399999997 74.47915600000005) (-86.120834 74.48220799999996) (-86.12304699999987 74.48332199999993) (-86.12277199999994 74.48997500000013) (-86.10110500000002 74.51138300000002) (-86.085556 74.52943400000004) (-86.07917800000001 74.53915400000011) (-86.07778899999994 74.54525799999993) (-86.08277900000002 74.55525199999994) (-86.15361000000001 74.60914600000001) (-86.17777999999993 74.61526500000002) (-86.19749499999995 74.61526500000002) (-86.21583599999985 74.61080900000007) (-86.22444199999995 74.60775800000005) (-86.23500100000001 74.60192900000004) (-86.24055499999997 74.59693900000002) (-86.24276699999996 74.59137000000004) (-86.23443599999996 74.5811000000001) (-86.22749299999998 74.57527199999998) (-86.22305299999994 74.56219499999997) (-86.23222399999997 74.54026800000008) (-86.235275 74.53526300000004) (-86.24471999999997 74.52388000000002) (-86.278885 74.50860599999993) (-86.33277900000002 74.49026500000014) (-86.39917000000003 74.47943100000009) (-86.42332499999998 74.47886699999992) (-86.443604 74.48109399999998) (-86.46250899999995 74.48553500000008) (-86.633331 74.526093) (-86.66416899999996 74.53471400000006) (-86.69110099999989 74.54414400000013) (-86.708618 74.55108600000005) (-86.7208399999999 74.55859400000008) (-86.75917099999998 74.58638000000013) (-86.76278699999995 74.59193399999998) (-86.76167299999997 74.59803799999997) (-86.75140399999987 74.60386699999998) (-86.74610899999999 74.60887100000014) (-86.75111400000003 74.61360200000007) (-86.76695299999994 74.61608899999999) (-86.78527799999995 74.61692800000014) (-86.79943799999995 74.61526500000002) (-86.80110199999996 74.61137400000013) (-86.80055199999993 74.55220000000003) (-86.79722600000002 74.5435940000001) (-86.79444899999999 74.53997800000008) (-86.70556599999998 74.50027500000004) (-86.69360399999994 74.46804800000007) (-86.90583800000002 74.46054100000009) (-87.22582999999992 74.4669340000001) (-87.27027899999996 74.46832300000005) (-87.304169 74.47164900000013) (-87.32084699999996 74.476654) (-87.35278299999993 74.49525499999999) (-87.47444199999995 74.47581500000001) (-87.508621 74.46775800000006) (-87.527222 74.46554599999996) (-87.57472200000001 74.46192900000005) (-87.66999800000002 74.45999100000006) (-87.71083099999993 74.46081500000003) (-87.73222399999997 74.46638500000012) (-87.75500499999998 74.47943100000009) (-87.848053 74.47608900000012) (-87.90361000000001 74.47221400000012) (-88.03611799999993 74.47692899999998) (-88.26362599999999 74.48359700000015) (-88.35610999999994 74.48915099999999) (-88.49694799999986 74.49775700000009) (-88.51722699999999 74.49971) (-88.52972399999999 74.501938) (-88.53527799999995 74.50360100000006) (-88.53999299999998 74.50610400000005) (-88.571121 74.54998799999998) (-88.57084699999996 74.5560910000001) (-88.56082199999997 74.59304800000012) (-88.54222099999998 74.61608899999999) (-88.406387 74.73609899999997) (-88.34750400000001 74.78471400000001) (-88.48472599999997 74.85775800000005) (-88.52806099999987 74.90193199999999) (-88.537216 74.90693700000003) (-88.54777499999994 74.907761) (-88.55722000000003 74.90664700000002) (-88.56806899999998 74.90138200000013) (-88.66471899999993 74.844986) (-88.67582700000003 74.83692900000005) (-88.74360699999994 74.78387500000008) (-88.7497249999999 74.77777100000003) (-88.75250199999999 74.768326) (-88.75306699999993 74.756104) (-88.7497249999999 74.74970999999994) (-88.74888599999991 74.74136400000003) (-88.74943499999995 74.72608900000006) (-88.75334199999992 74.71415700000011) (-88.811935 74.67221100000012) (-88.821396 74.66638200000011) (-88.835556 74.66137700000007) (-88.848343 74.65914900000013) (-88.862213 74.65887500000002) (-88.87388599999991 74.6602630000001) (-88.88305699999995 74.66526799999997) (-88.889725 74.67053199999992) (-88.91722099999998 74.71971100000013) (-88.91805999999985 74.73248300000012) (-88.91416899999996 74.749146) (-88.910278 74.75499000000002) (-88.90556300000003 74.75999500000006) (-88.90417499999995 74.76554900000008) (-88.906387 74.77304100000003) (-88.90972899999986 74.77777100000003) (-88.92694099999994 74.78387500000008) (-89.07362399999988 74.83387800000003) (-89.08860800000002 74.83720400000004) (-89.097778 74.83610500000009) (-89.09916699999997 74.8352660000001) (-89.05999800000001 74.79748499999994) (-89.05332900000002 74.79359400000004) (-89.0427699999999 74.78970299999997) (-89.01112399999994 74.78082299999994) (-89.01028399999996 74.77554300000008) (-89.01278699999995 74.77053800000004) (-89.041382 74.73026999999996) (-89.04750100000001 74.722488) (-89.05583200000001 74.71914699999996) (-89.07778899999988 74.71720900000003) (-89.10221899999999 74.71943700000003) (-89.17887899999994 74.73220800000013) (-89.17887899999994 74.73526000000004) (-89.181107 74.73970000000003) (-89.19055199999997 74.74443099999996) (-89.223053 74.75248700000003) (-89.24305700000002 74.75526400000012) (-89.26501499999995 74.7563780000001) (-89.271118 74.75471500000003) (-89.21640000000002 74.72110000000009) (-89.20249899999993 74.71388200000013) (-89.18971299999993 74.70860299999993) (-89.14111299999996 74.69802900000008) (-89.12249799999995 74.69609100000014) (-89.10527000000002 74.69303900000006) (-89.09583999999995 74.68803399999996) (-89.09583999999995 74.68193100000002) (-89.125 74.61692800000014) (-89.13194299999992 74.61137400000013) (-89.15055799999993 74.59971600000011) (-89.185272 74.5874940000001) (-89.19694500000003 74.584427) (-89.43888900000002 74.55081200000012) (-89.45500199999992 74.54859899999997) (-89.48971599999999 74.54553200000004) (-89.58056599999998 74.54026800000008) (-89.92860399999995 74.530823) (-89.94610599999999 74.53221100000013) (-90.10665899999998 74.54942299999993) (-90.22389199999992 74.56359900000012) (-90.24499500000002 74.56693999999999) (-90.26333599999992 74.57054100000005) (-90.36305199999998 74.59471100000007) (-90.45666499999993 74.60081500000007) (-90.49638400000003 74.60165400000005) (-90.52999899999986 74.60525500000011) (-90.589722 74.61331200000006) (-90.60722399999992 74.616379) (-90.61999500000002 74.61998000000006) (-90.70805399999989 74.64804100000015) (-90.73167399999994 74.664154) (-90.73693800000001 74.66943400000002) (-90.739441 74.67387400000007) (-90.747772 74.70304899999996) (-90.75111400000003 74.71638500000006) (-90.86749299999991 74.70248400000008) (-90.87582399999997 74.69192500000003) (-90.885559 74.68359399999997) (-90.89561499999996 74.68113700000009) (-91.01362599999999 74.69886800000006) (-91.02471899999995 74.70277400000009) (-91.02362099999999 74.70694000000003) (-91.01222199999995 74.71720900000003) (-90.97833299999996 74.73970000000003) (-90.965012 74.74775700000004) (-90.94583099999994 74.75138900000013) (-90.93859899999995 74.75082399999997) (-90.92610199999996 74.75166300000006) (-90.896118 74.75749200000007) (-90.88389599999994 74.76165800000001) (-90.85139500000002 74.77609300000012) (-90.75805700000001 74.83110000000005) (-90.75279199999994 74.83581500000008) (-90.74082900000002 74.84748800000011) (-90.74249299999991 74.85276799999997) (-90.74665800000002 74.86053500000008) (-90.75778200000002 74.88081400000004) (-90.77223200000003 74.88499500000012) (-90.816956 74.88360599999999) (-90.84111000000001 74.87942500000008) (-90.85388199999994 74.87525900000014) (-90.86389200000002 74.86998) (-90.87027 74.86442599999998) (-90.874435 74.85914600000012) (-90.87388599999997 74.85304300000001) (-90.883331 74.84165999999999) (-90.97500600000001 74.7994230000001) (-91 74.78970299999997) (-91.07528699999995 74.76110799999998) (-91.10194399999995 74.75109900000012) (-91.132767 74.74443099999996) (-91.14472999999998 74.74748199999999) (-91.14416499999993 74.75138900000013) (-91.14666699999992 74.75555400000013) (-91.17166099999997 74.75749200000007) (-91.18859900000001 74.75277700000004) (-91.21611000000001 74.73887600000006) (-91.22582999999992 74.73359700000009) (-91.22888199999994 74.72776800000008) (-91.226944 74.722488) (-91.18527199999994 74.68470800000011) (-91.17748999999998 74.67803999999995) (-91.15499899999998 74.66554299999996) (-91.11471599999993 74.645828) (-91.10583500000001 74.63998400000014) (-91.09805299999988 74.633331) (-91.09973099999996 74.62831100000011) (-91.10665899999998 74.62580900000006) (-91.13305699999995 74.62442000000004) (-91.256393 74.62858599999998) (-91.45584100000002 74.63970899999998) (-91.53999299999992 74.64637800000003) (-91.55332899999996 74.64833099999998) (-91.6761019999999 74.67192100000011) (-91.68499800000001 74.67776500000014) (-91.67166099999997 74.68969700000008) (-91.66416900000002 74.69331400000004) (-91.63417099999998 74.69609100000014) (-91.62193299999996 74.70027200000004) (-91.62027 74.70498700000007) (-91.624435 74.70999100000006) (-91.63583399999993 74.71527100000009) (-91.65167199999996 74.71998600000012) (-91.708618 74.72747800000008) (-91.75418100000002 74.72776800000008) (-91.779449 74.72581500000013) (-91.79888899999992 74.72221400000006) (-91.81111099999998 74.71804800000001) (-91.81249999999989 74.71304299999997) (-91.80296299999992 74.70618400000001) (-91.79888899999992 74.69941699999998) (-91.81555199999997 74.69470200000012) (-91.83306900000002 74.69609100000014) (-91.85110500000002 74.69886800000006) (-91.86665299999993 74.7022090000001) (-91.87666300000001 74.70694000000003) (-91.87527499999993 74.711929) (-91.85916099999997 74.72110000000009) (-91.89222699999993 74.75082399999997) (-91.96194499999996 74.76416000000006) (-91.99861099999998 74.77304100000003) (-92.01583899999997 74.77832000000001) (-92.045547 74.78970299999997) (-92.05749499999996 74.79664600000001) (-92.06361399999997 74.80358899999999) (-92.06527699999992 74.80720500000001) (-92.06639100000001 74.81330900000006) (-92.05749499999996 74.82499700000011) (-92.05166599999995 74.83055100000007) (-92.04333499999996 74.83638000000008) (-92.01916499999993 74.84609999999998) (-92.01306199999999 74.85192899999998) (-92.00805699999995 74.86360200000001) (-92.006393 74.88804600000014) (-92.01333599999992 74.9083250000001) (-92.01528899999994 74.91360499999996) (-92.04333499999996 74.9519350000001) (-92.04804999999999 74.95832800000005) (-92.06332399999997 74.96388200000007) (-92.0916749999999 74.97164900000001) (-92.1058349999999 74.97665400000005) (-92.16416900000002 74.99803199999997) (-92.20973200000003 75.03858899999994) (-92.228882 75.07110599999999) (-92.22582999999992 75.07388300000008) (-92.21556099999998 75.07638500000013) (-92.18638599999991 75.08137499999998) (-92.15249599999999 75.08387800000014) (-92.11166400000002 75.08194000000003) (-92.04618800000003 75.08496100000008) (-92.02999899999992 75.08638000000002) (-92.01251199999996 75.095261) (-92.01000999999997 75.10108900000012) (-92.05139200000002 75.14694200000002) (-92.05555700000002 75.15026899999998) (-92.0705569999999 75.15304600000007) (-92.083618 75.15332000000001) (-92.10526999999996 75.1519320000001) (-92.193329 75.143326) (-92.32556199999999 75.15165700000006) (-92.49082900000002 75.21360800000008) (-92.46888699999994 75.28471400000012) (-92.428604 75.39444000000009) (-92.38833599999992 75.44192500000008) (-92.32806399999998 75.4891510000001) (-92.22027600000001 75.54609700000009) (-92.21028100000001 75.55137600000006) (-92.19943199999994 75.55386400000003) (-92.15583800000002 75.55664100000013) (-92.100281 75.56275900000009) (-92.08583099999998 75.56498700000003) (-92.069458 75.5688780000001) (-92.05665599999998 75.57304399999998) (-92.01390100000003 75.58915700000006) (-92.00500499999993 75.59498600000006) (-92.00834699999996 75.66137700000007) (-92.04360999999989 75.68553200000008) (-92.05749499999996 75.69135999999997) (-92.08999599999999 75.70027200000004) (-92.13751200000002 75.72110000000009) (-92.15666199999998 75.7310940000001) (-92.17443799999995 75.74443100000013) (-92.17555199999993 75.75054900000009) (-92.139725 75.77831999999995) (-92.11915599999992 75.78915400000005) (-92.11277799999999 75.79470800000001) (-92.10472099999998 75.80525200000005) (-92.10055499999993 75.82304399999992) (-92.10388199999994 75.84136999999993) (-92.10526999999996 75.84748800000006) (-92.108612 75.85887100000008) (-92.11332700000003 75.86360200000001) (-92.12971499999998 75.87637300000011) (-92.13806199999999 75.879974) (-92.15110800000002 75.8830410000001) (-92.17277499999994 75.88554400000004) (-92.215012 75.88832100000013) (-92.23832699999997 75.8913730000001) (-92.31777999999991 75.90498400000007) (-92.33639499999987 75.90860000000009) (-92.408615 75.92858900000004) (-92.43306000000001 75.93637100000001) (-92.44444299999992 75.94108600000004) (-92.583618 76.00888100000003) (-92.63583399999999 76.10415599999999) (-92.63583399999999 76.10971100000006) (-92.63722200000001 76.115814) (-92.79388399999993 76.20748900000001) (-92.80943300000001 76.21249400000005) (-92.94665499999996 76.24581899999993) (-93.066956 76.299149) (-93.07667499999991 76.31693999999999) (-93.05722000000003 76.32666000000006) (-93.05499299999997 76.33248900000007) (-93.05638099999987 76.33859300000012) (-93.05915800000002 76.34387200000009) (-93.07194500000003 76.353317) (-93.083618 76.35803200000004) (-93.11527999999993 76.363876) (-93.13806199999993 76.366379) (-93.186935 76.3683170000001) (-93.21278399999994 76.36804200000012) (-93.23998999999998 76.3666530000001) (-93.31527699999992 76.36025999999998) (-93.34527599999996 76.35609400000004) (-93.38137799999993 76.34637500000008) (-93.449997 76.32638500000007) (-93.56193499999995 76.29721100000006) (-93.58778399999989 76.292755) (-93.61749299999997 76.29109200000005) (-93.63583399999999 76.29165599999999) (-93.6583399999999 76.29386899999997) (-93.66639700000002 76.29859899999997) (-93.65333599999991 76.30276500000008) (-93.62443499999989 76.30581699999999) (-93.62361099999993 76.31080600000013) (-93.636124 76.32666000000006) (-93.6541749999999 76.32582100000013) (-93.67887899999994 76.32222000000007) (-93.718887 76.31248499999998) (-93.73138399999999 76.30693099999996) (-93.76390100000003 76.28637700000002) (-93.76390100000003 76.28221100000013) (-93.76194800000002 76.28027299999997) (-93.75389099999995 76.27581799999996) (-93.74110399999995 76.27192700000006) (-93.720551 76.26776100000001) (-93.69722000000002 76.26388500000013) (-93.78443900000002 76.25305200000014) (-93.954453 76.257767) (-93.95611600000001 76.257767) (-93.95834399999995 76.257767) (-94.09750400000001 76.25943000000012) (-94.11888099999999 76.26138300000002) (-94.13417099999987 76.2647090000001) (-94.14138799999995 76.26998900000012) (-94.1516719999999 76.27415500000006) (-94.16861 76.27832000000006) (-94.21250900000001 76.280823) (-94.47083999999995 76.28109699999993) (-94.64167799999996 76.29332) (-94.78028899999998 76.28887900000007) (-94.78999299999998 76.28360000000009) (-94.80332900000002 76.27832000000006) (-94.83860800000002 76.26832600000006) (-95.02917499999995 76.23609900000002) (-95.35499599999991 76.23414600000012) (-95.37609900000001 76.23442100000011) (-95.38694799999996 76.23580900000002) (-95.38806199999993 76.28360000000009) (-95.374435 76.29776000000004) (-95.36694299999994 76.30137600000006) (-95.35722399999997 76.30276500000008) (-95.34306300000003 76.30026200000009) (-95.31806899999998 76.29081700000006) (-95.27917500000001 76.28137200000015) (-95.258896 76.282761) (-95.11833200000001 76.29803500000003) (-95.09277299999991 76.30276500000008) (-95.07556199999988 76.30775499999993) (-95.06973299999993 76.31330900000012) (-95.06655899999998 76.319862) (-95.05888399999998 76.32470699999993) (-95.01055899999994 76.3311000000001) (-94.98388699999998 76.33248900000007) (-94.95889299999999 76.33221400000008) (-94.91500899999988 76.32971199999997) (-94.86639400000001 76.32554600000009) (-94.84973100000002 76.32331799999997) (-94.84056099999998 76.31971700000008) (-94.84999099999987 76.31442300000009) (-94.86277799999988 76.30998199999999) (-94.86166399999996 76.30693099999996) (-94.843613 76.30386400000003) (-94.82861300000002 76.3060910000001) (-94.80860899999993 76.31137100000001) (-94.80248999999998 76.31553600000001) (-94.80082699999997 76.32165500000002) (-94.81416300000001 76.32916300000005) (-94.83444199999997 76.334427) (-94.89472999999992 76.34166000000005) (-94.965012 76.34748799999994) (-95.132767 76.36137400000013) (-95.274719 76.372208) (-95.29943799999995 76.3724820000001) (-95.32640100000003 76.37081900000004) (-95.33167999999995 76.36526500000002) (-95.34138499999995 76.359711) (-95.38890099999998 76.35192900000004) (-95.39999399999999 76.353317) (-95.44722000000002 76.36581399999994) (-95.64527900000002 76.38415500000013) (-95.66833500000001 76.38610800000009) (-95.71583599999991 76.39221199999992) (-95.73750299999995 76.39387500000004) (-95.85110500000002 76.40109300000006) (-95.995834 76.43691999999999) (-96.08167999999989 76.47804300000013) (-96.10694899999999 76.49443099999996) (-96.10417199999995 76.5) (-96.09916699999991 76.50555399999996) (-96.09056099999998 76.510269) (-96.06555200000003 76.52137800000008) (-96.05248999999992 76.52415500000001) (-95.99722299999996 76.51944000000015) (-95.94499199999996 76.518326) (-95.80638099999993 76.51638800000006) (-95.77860999999996 76.5188750000001) (-95.69415299999997 76.5452580000001) (-95.68055700000002 76.55053700000008) (-95.65777600000001 76.56137100000012) (-95.59388699999994 76.59304800000007) (-95.58416699999998 76.59832799999998) (-95.587784 76.6035920000001) (-95.59944199999995 76.60525500000006) (-95.61971999999997 76.60609400000004) (-95.63890100000003 76.60415600000005) (-95.66027799999995 76.59942600000005) (-95.69610599999999 76.58415200000013) (-95.69554099999999 76.58027600000008) (-95.69665499999996 76.57443200000006) (-95.712784 76.56860399999994) (-95.75917099999998 76.55358899999999) (-95.78056299999992 76.54887400000013) (-95.99249299999997 76.54803499999997) (-96.016953 76.549149) (-96.15861499999994 76.583328) (-96.17860399999995 76.59414700000008) (-96.22528099999988 76.625809) (-96.27027899999996 76.6327510000001) (-96.33944699999995 76.63220199999995) (-96.35583500000001 76.6330410000001) (-96.38137799999987 76.63581800000003) (-96.40333599999991 76.6397090000001) (-96.42138699999998 76.64610299999998) (-96.445831 76.65721100000013) (-96.45417800000001 76.66249099999999) (-96.46139499999992 76.66859399999998) (-96.46112099999999 76.67359900000002) (-96.46444699999995 76.67970300000002) (-96.47027599999996 76.68553200000002) (-96.52778599999994 76.693039) (-96.61193800000001 76.70248400000003) (-96.636124 76.70443699999998) (-96.66166699999997 76.70471200000003) (-96.73693800000001 76.69720500000005) (-96.76417500000002 76.69552600000009) (-96.78971899999993 76.6958160000001) (-96.81639100000001 76.69747899999999) (-96.85777299999995 76.7019350000001) (-96.87999000000002 76.705826) (-96.91583299999996 76.7144320000001) (-96.94665499999996 76.72360200000014) (-96.95916699999998 76.72915599999993) (-96.964447 76.73332200000004) (-96.900284 76.79525800000005) (-96.88722199999995 76.80554200000006) (-96.87388599999991 76.81080600000007) (-96.85499599999997 76.81303400000002) (-96.839722 76.81025700000009) (-96.724716 76.78332499999999) (-96.67971799999992 76.77026400000005) (-96.59249899999992 76.75888100000003) (-96.42610200000001 76.74470500000007) (-96.33029199999993 76.75027499999993) (-96.311935 76.75138900000013) (-96.30555699999996 76.75387599999999) (-96.31555199999997 76.80247500000013) (-96.32055700000001 76.80664100000007) (-96.36694299999994 76.81275899999997) (-96.45361299999996 76.81526200000013) (-96.50111400000003 76.81805400000007) (-96.54722600000002 76.82276900000011) (-96.7975009999999 76.86137400000001) (-96.81361400000003 76.868042) (-96.84889199999992 76.887497) (-96.86582900000002 76.89804100000003) (-96.86915599999998 76.90416000000005) (-96.86944599999998 76.91387900000007) (-96.86416600000001 76.91970800000007) (-96.85777299999995 76.92498799999993) (-96.83361799999994 76.9327550000001) (-96.79638699999998 76.93748499999992) (-96.77194199999997 76.93775900000003) (-96.761124 76.93775900000003) (-96.72389199999998 76.93525699999998) (-96.708054 76.93331900000004) (-96.69860799999998 76.934143) (-96.66082799999998 76.947205) (-96.65916399999998 76.94914200000005) (-96.66776999999996 76.95443699999993) (-96.67777999999998 76.95776400000005) (-96.69694500000003 76.96054100000015) (-96.718887 76.96304300000003) (-96.765289 76.96527100000003) (-96.80833399999995 76.966095) (-96.8244479999999 76.96775800000006) (-96.82778899999994 76.96887200000003) (-96.82556199999999 76.97442600000005) (-96.810272 76.9791560000001) (-96.77203400000002 76.98101800000012) (-96.74203499999999 76.98220800000001) (-96.67332499999998 76.98220800000001) (-96.622772 76.97998000000007) (-96.483612 76.97110000000004) (-96.353882 76.99304200000006) (-96.39111300000002 77.02693199999999) (-96.387787 77.03054800000001) (-96.37332199999997 77.03193700000003) (-96.28472899999997 77.03942899999998) (-96.27305599999994 77.04026799999991) (-96.24499499999996 77.04193100000003) (-96.22610500000002 77.043045) (-96.10305799999998 77.04470800000013) (-95.96665999999999 77.05304000000012) (-95.88806199999993 77.06109600000002) (-95.75250199999999 77.06860400000005) (-95.73472600000002 77.06860400000005) (-95.70750399999991 77.06694000000005) (-95.65972899999991 77.05886800000007)) ((-113.328888 77.07998700000002) (-113.353882 77.07748400000008) (-113.40888999999999 77.07887300000004) (-113.45140099999992 77.08166499999999) (-113.49194299999999 77.08554100000003) (-113.4974979999999 77.08831800000013) (-113.49027999999998 77.09248400000001) (-113.34472700000003 77.12776200000002) (-113.33528099999995 77.12608300000005) (-113.31471299999998 77.11775200000011) (-113.29332699999986 77.10748300000012) (-113.28694200000001 77.09637500000008) (-113.29110700000001 77.08998100000008) (-113.30471799999998 77.08526600000005) (-113.328888 77.07998700000002)) ((-113.77861000000001 77.10415599999999) (-113.80695299999991 77.10415599999999) (-113.85333300000002 77.10554499999995) (-113.88054699999992 77.10803200000004) (-113.90888999999999 77.11303700000008) (-113.92443800000001 77.1185910000001) (-113.93138099999999 77.1244200000001) (-113.93138099999999 77.12969999999996) (-113.92722300000003 77.135269) (-113.920837 77.141098) (-113.90110800000002 77.14637800000003) (-113.880829 77.14971900000006) (-113.859444 77.15138200000001) (-113.798607 77.15248100000002) (-113.77417000000003 77.15165700000006) (-113.72250399999996 77.14804100000015) (-113.69915800000001 77.14471400000002) (-113.67555199999993 77.14027400000003) (-113.66443599999997 77.13472000000002) (-113.65778399999999 77.12914999999992) (-113.66416900000002 77.12303200000002) (-113.67916899999989 77.11692800000014) (-113.703056 77.111649) (-113.72778299999993 77.10803200000004) (-113.75306699999993 77.10554499999995) (-113.77861000000001 77.10415599999999)) ((-104.25250199999999 77.07276900000005) (-104.30277999999998 77.07222000000007) (-104.354172 77.07388300000002) (-104.37721299999998 77.07666000000012) (-104.40222199999994 77.0811000000001) (-104.421944 77.08720399999999) (-104.43167099999994 77.09887700000002) (-104.42639200000002 77.11637900000005) (-104.42027300000001 77.12220800000006) (-104.40556299999997 77.12776200000002) (-104.31973299999999 77.15165700000006) (-104.30082700000003 77.15525800000006) (-104.27333099999998 77.15971400000001) (-104.18360899999993 77.16720599999996) (-104.11389199999996 77.16609199999999) (-104.07140399999997 77.16137700000013) (-104.061394 77.15887500000002) (-104.031113 77.15109300000006) (-104.01972999999998 77.14610300000004) (-104.001106 77.13581800000009) (-103.99889399999995 77.12387099999995) (-104.00945300000001 77.11804200000012) (-104.02416999999991 77.11248799999998) (-104.04778299999992 77.10693400000014) (-104.15028399999994 77.08638000000002) (-104.196663 77.07748400000008) (-104.25250199999999 77.07276900000005)) ((-95.22444200000001 77.16720599999996) (-95.24527 77.164154) (-95.291382 77.16499299999998) (-95.314438 77.1666560000001) (-95.36277799999993 77.171921) (-95.41999800000002 77.18193100000008) (-95.57250999999985 77.21304299999997) (-95.61305199999993 77.22192400000012) (-95.63417099999992 77.22804300000013) (-95.63890100000003 77.23220800000013) (-95.63999899999993 77.23776199999998) (-95.63667299999997 77.23915099999994) (-95.63137799999993 77.23970000000008) (-95.60804699999989 77.24081400000006) (-95.511124 77.243042) (-95.43804899999998 77.24443100000002) (-95.38751200000002 77.24081400000006) (-95.37222300000002 77.23803700000013) (-95.35611 77.23637400000007) (-95.31361400000003 77.22915600000005) (-95.24415599999992 77.21388200000013) (-95.21639999999996 77.20166) (-95.20666499999999 77.18914799999999) (-95.206955 77.17776499999997) (-95.214447 77.17248500000011) (-95.22444200000001 77.16720599999996)) ((-90.93305999999995 77.25444000000005) (-90.90916400000003 77.25166300000012) (-90.81500199999999 77.24026500000014) (-90.77223200000003 77.23136899999997) (-90.73638899999997 77.22082499999993) (-90.71833800000002 77.20721399999996) (-90.71362299999998 77.20082100000002) (-90.72416699999991 77.18331899999998) (-90.73194899999999 77.17776499999997) (-90.77917500000001 77.15664700000008) (-90.81138599999991 77.14665199999996) (-90.83555599999994 77.14221199999997) (-90.86833199999995 77.13832100000008) (-90.89999399999999 77.13693200000006) (-90.9786069999999 77.13777199999993) (-91.04972800000002 77.14553799999999) (-91.18472300000002 77.16360500000008) (-91.22166400000003 77.17025800000005) (-91.23889200000002 77.17442300000005) (-91.26251200000002 77.18414300000012) (-91.28639199999992 77.19664000000012) (-91.295547 77.20332300000007) (-91.29750100000001 77.20721399999996) (-91.29916400000002 77.217758) (-91.277222 77.22747800000013) (-91.24749799999995 77.23580900000002) (-91.18971299999998 77.24803200000008) (-91.162216 77.25138900000002) (-91.10722399999992 77.25471500000003) (-91.08473200000003 77.25444000000005) (-91.07223499999992 77.25332600000007) (-91.05721999999997 77.25444000000005) (-90.987503 77.25499000000008) (-90.93305999999995 77.25444000000005)) ((-116.35109699999998 77.53915400000005) (-116.20333900000003 77.51998900000007) (-116.09056099999992 77.49108900000004) (-116.073624 77.48553500000003) (-115.88027999999991 77.4333190000001) (-115.52055399999995 77.36442600000004) (-115.49526999999989 77.359421) (-115.458054 77.34860200000008) (-115.44611399999985 77.34304800000012) (-115.389183 77.31219499999992) (-115.390289 77.30636600000008) (-115.54332699999986 77.26554899999991) (-115.59110999999996 77.25999500000012) (-115.61694299999999 77.25833100000011) (-115.66915899999992 77.25694299999998) (-115.69499199999996 77.25526400000001) (-115.77250700000002 77.24775700000004) (-115.81973299999999 77.23748800000004) (-115.83084099999991 77.2333220000001) (-115.85888699999998 77.22082499999993) (-115.87777699999992 77.21527100000014) (-115.9469529999999 77.20887799999997) (-116.112503 77.19386300000002) (-116.13806199999999 77.19220000000013) (-116.19055200000003 77.1916500000001) (-116.21777299999997 77.19274900000005) (-116.26917300000002 77.19026199999996) (-116.28056300000003 77.18359400000003) (-116.31416300000001 77.14444000000009) (-116.31973299999999 77.11775200000011) (-116.28028899999998 77.06721500000003) (-116.26917300000002 77.05581700000005) (-116.24249299999991 77.04414400000002) (-116.17360699999989 77.02720600000009) (-116.06388900000002 77.00749200000001) (-116.00583599999999 76.9974820000001) (-115.95028699999995 76.99136399999998) (-115.860817 76.9791560000001) (-115.75499699999995 76.96081500000008) (-115.73889199999996 76.95526100000006) (-115.73137700000001 76.9497070000001) (-115.72833300000002 76.94386300000008) (-115.729446 76.93803400000007) (-115.73222399999997 76.93165600000009) (-115.74610899999999 76.92526200000009) (-115.80695300000002 76.90637200000009) (-115.829453 76.90081800000013) (-115.85333299999996 76.89721700000007) (-115.903343 76.89387499999992) (-115.92859599999997 76.89305099999996) (-115.98194899999993 76.89553800000004) (-116.06388900000002 76.90277100000009) (-116.11501299999992 76.90914900000001) (-116.25389100000001 76.93248000000006) (-116.306107 76.93609600000013) (-116.32721699999996 76.93553200000002) (-116.35166899999996 76.9327550000001) (-116.36527999999993 76.92637600000006) (-116.36721799999998 76.91554300000007) (-116.36332699999997 76.90887500000008) (-116.35555999999985 76.90332000000001) (-116.34612299999992 76.89833100000004) (-116.32972699999999 76.89276099999995) (-116.18360899999993 76.8458250000001) (-116.16388699999999 76.8416600000001) (-116.10749800000002 76.83360299999998) (-116.031113 76.820267) (-116.00029 76.81137100000007) (-115.89472999999992 76.70332300000001) (-115.891388 76.69747899999999) (-115.89666699999998 76.69164999999998) (-116.07140400000003 76.625809) (-116.09306299999992 76.61914100000001) (-116.11582900000002 76.61442599999998) (-116.160553 76.61109900000008) (-116.23194899999999 76.60304300000001) (-116.25446299999999 76.59860200000008) (-116.32250999999997 76.58110000000005) (-116.37351999999993 76.58180200000004) (-116.73277300000001 76.572495) (-116.75890399999992 76.56999200000007) (-116.97112299999998 76.54859899999997) (-116.99471999999992 76.54582200000004) (-117.01750199999992 76.54220599999996) (-117.03999299999992 76.53749099999993) (-117.053879 76.53305100000011) (-117.06861900000001 76.52609300000012) (-117.07556199999993 76.52053800000004) (-117.07749899999999 76.51416000000006) (-117.07640099999998 76.50888100000009) (-117.07277699999997 76.50305200000008) (-117.05695299999996 76.49165299999999) (-117.04360999999989 76.48692299999999) (-117.01750199999992 76.48248300000012) (-117.00389099999995 76.47747800000008) (-116.983612 76.45498700000007) (-116.94082599999996 76.38693200000006) (-116.93916299999995 76.38053900000011) (-116.93582200000003 76.35192900000004) (-116.93859900000001 76.34637500000008) (-117.09555099999994 76.29525799999993) (-117.13971700000002 76.286926) (-117.31973299999999 76.257767) (-117.345551 76.25637799999998) (-117.36888099999999 76.25694300000004) (-117.52390300000002 76.26361100000003) (-117.5750119999999 76.26887499999998) (-117.60305799999998 76.27388000000002) (-117.62304699999999 76.2788700000001) (-117.639183 76.28414900000007) (-117.65778399999999 76.29332) (-117.64917000000003 76.305542) (-117.64890299999996 76.31137100000001) (-117.65527299999997 76.31749000000002) (-117.67304999999993 76.32222000000007) (-117.69915800000001 76.32415800000001) (-117.72416699999997 76.32443200000012) (-117.87777699999998 76.34193399999998) (-117.889183 76.35581999999994) (-117.90139799999997 76.36720300000013) (-117.90695199999993 76.372208) (-117.99722299999996 76.39694199999997) (-118.02139299999999 76.40193200000004) (-118.04444899999999 76.40498400000013) (-118.05999800000001 76.40914900000013) (-118.04750100000001 76.44165000000004) (-118.02749599999999 76.48471100000006) (-117.97332799999998 76.59637500000002) (-117.92832899999996 76.6766510000001) (-117.91915899999992 76.68803400000013) (-117.90666199999993 76.69413799999995) (-117.883331 76.70054600000009) (-117.86444099999994 76.70416300000005) (-117.848053 76.70832800000005) (-117.81331599999999 76.71943699999997) (-117.79638699999998 76.72581500000013) (-117.78806299999997 76.73220800000007) (-117.73889200000002 76.77221700000001) (-117.73444399999994 76.77832000000012) (-117.73860200000001 76.78414900000013) (-117.79888899999997 76.81776400000001) (-117.81667299999998 76.82138099999997) (-117.84221600000001 76.82388300000008) (-117.86665299999999 76.82222000000013) (-117.88806199999999 76.81887800000004) (-117.90499899999992 76.81219500000003) (-117.91777000000002 76.79998800000004) (-117.92610200000001 76.78804000000002) (-117.96056399999998 76.76998900000007) (-118.00583599999993 76.76138300000014) (-118.02971600000001 76.75860600000004) (-118.08222999999998 76.75694300000009) (-118.10611 76.75749200000007) (-118.15695199999999 76.76249700000011) (-118.21362299999998 76.76915000000008) (-118.29361 76.77304100000015) (-118.319458 76.77304100000015) (-118.33750900000001 76.76832600000012) (-118.49500299999994 76.71220399999993) (-118.47471599999994 76.67970300000002) (-118.45973199999997 76.67387400000001) (-118.428879 76.66387900000012) (-118.40306099999998 76.657761) (-118.35804699999989 76.64888000000002) (-118.34137699999997 76.64359999999999) (-118.33473199999992 76.63749700000005) (-118.316101 76.5747070000001) (-118.50279199999994 76.50972000000007) (-118.52390299999996 76.50387600000005) (-118.546112 76.5) (-118.57084699999996 76.499146) (-118.59694699999989 76.5) (-118.62361099999993 76.50193800000011) (-118.65167200000002 76.50555399999996) (-118.67804699999994 76.50999500000006) (-118.70916699999998 76.51998900000007) (-118.71333299999998 76.52581800000013) (-118.71362299999998 76.5316620000001) (-118.72222899999991 76.5372010000001) (-118.73473399999995 76.54248000000007) (-118.76139799999999 76.54693600000002) (-118.81471299999998 76.55304000000007) (-118.84166700000003 76.55497700000006) (-118.94415299999997 76.51805100000013) (-118.96806300000003 76.50526400000012) (-118.97582999999992 76.49887100000001) (-118.97609699999998 76.49636800000002) (-118.97250399999996 76.49165299999999) (-118.96777299999997 76.48831200000012) (-118.95527600000003 76.48304700000006) (-118.93110699999994 76.47915599999999) (-118.82195300000001 76.47137499999997) (-118.68195300000002 76.4452510000001) (-118.64862099999999 76.42886399999992) (-118.612503 76.4002690000001) (-118.59416199999993 76.38388100000003) (-118.56610099999995 76.34304800000012) (-118.567497 76.33665500000001) (-118.58168 76.32470699999993) (-118.62554899999998 76.29443399999997) (-118.63751200000002 76.28804000000014) (-118.65556299999997 76.28414900000007) (-118.67916899999994 76.28221100000013) (-118.70556599999992 76.28166199999998) (-118.78083799999996 76.28248600000012) (-118.82833900000003 76.28193700000003) (-118.8766629999999 76.27748100000008) (-118.89584400000001 76.27221700000013) (-118.91139199999992 76.26554899999996) (-118.91915899999998 76.25943000000012) (-118.92443799999995 76.25277699999992) (-118.942207 76.21054100000015) (-118.93776699999995 76.20471199999992) (-118.92331699999994 76.19413800000007) (-118.91278099999994 76.18803400000002) (-118.90471600000001 76.16914400000007) (-118.95527600000003 76.13247700000011) (-118.96501199999994 76.1266480000001) (-119.07584399999996 76.08332800000011) (-119.10109699999998 76.08415200000007) (-119.12471 76.08804299999997) (-119.22972099999993 76.10720800000007) (-119.24526999999995 76.11137400000001) (-119.26000999999997 76.11720300000002) (-119.28250099999997 76.12747200000007) (-119.29943800000001 76.13859600000012) (-119.30832699999996 76.1499940000001) (-119.31054699999999 76.15525800000012) (-119.30583200000001 76.16775500000011) (-119.30082699999997 76.17442300000005) (-119.29499799999996 76.18026700000007) (-119.29527300000001 76.18609600000008) (-119.30166600000001 76.19136000000009) (-119.36916399999996 76.22970600000008) (-119.54915599999998 76.32415800000001) (-119.5864029999999 76.318604) (-119.65499899999992 76.30304000000007) (-119.67527799999993 76.26416000000012) (-119.67500299999995 76.24581899999993) (-119.64555399999995 76.23054500000006) (-119.59445199999999 76.20304900000002) (-119.58583099999998 76.1974790000001) (-119.57277699999992 76.18637100000012) (-119.56806899999987 76.18054200000012) (-119.56582600000002 76.17526200000003) (-119.56696299999999 76.16886900000009) (-119.57277699999992 76.16304000000008) (-119.64334099999996 76.11248799999998) (-119.74527 76.11665299999999) (-119.76999699999993 76.11637900000005) (-119.79305999999991 76.1144260000001) (-119.80499299999997 76.10887100000002) (-119.79723399999995 76.10415599999999) (-119.7727809999999 76.09942599999994) (-119.74416400000001 76.097488) (-119.64723200000003 76.08166499999999) (-119.62666300000001 76.07666000000012) (-119.50389100000001 76.04081700000006) (-119.491379 76.03553800000009) (-119.47833299999996 76.02415500000012) (-119.47389199999998 76.01859999999999) (-119.47222899999997 76.00082400000002) (-119.47609699999998 75.98248300000006) (-119.48110999999989 75.97082500000005) (-119.48916599999995 75.96554600000002) (-119.50974299999996 75.96054099999998) (-119.53555299999994 75.9624940000001) (-119.54638699999998 75.96832300000011) (-119.56111099999998 75.97886699999998) (-119.57195299999995 75.98498500000011) (-119.58583099999998 75.98969999999997) (-119.612503 75.99247700000006) (-119.63694800000002 75.99220300000013) (-119.64890300000002 75.98664900000011) (-119.699997 75.94859300000013) (-119.70333900000003 75.9427490000001) (-119.6875 75.93830900000012) (-119.612503 75.91026300000004) (-119.81082199999997 75.86943100000002) (-119.870003 75.857483) (-119.93554699999993 75.8483280000001) (-119.98000300000001 75.84332300000005) (-120.02583300000003 75.83998099999997) (-120.04915599999987 75.83888200000013) (-120.07640100000003 75.86720300000007) (-120.08500700000002 75.87275700000004) (-120.11416600000001 75.88832100000013) (-120.12805199999997 75.89305100000001) (-120.14916999999997 75.89637800000014) (-120.16639700000002 75.89248700000007) (-120.18028299999997 75.879974) (-120.18331899999993 75.87387100000007) (-120.19722000000002 75.86137400000007) (-120.21501199999994 75.84860200000003) (-120.22582999999992 75.84220900000008) (-120.26972999999992 75.82193000000012) (-120.28888699999987 75.81608599999993) (-120.30915800000002 75.81109600000008) (-120.33222999999998 75.80748000000006) (-120.35555999999997 75.80636600000003) (-120.37805200000003 75.80664100000007) (-120.40387699999991 75.80831899999998) (-120.43028300000003 75.81109600000008) (-120.45445299999994 75.81581100000011) (-120.46694899999994 75.82110599999999) (-120.47582999999997 75.82666) (-120.48528299999998 75.8377690000001) (-120.4886019999999 75.84414700000002) (-120.48972300000003 75.84999100000005) (-120.48832699999997 75.85554500000006) (-120.46305799999999 75.91638200000006) (-120.46000700000002 75.922485) (-120.44860799999987 75.93553200000002) (-120.406113 75.95498700000002) (-120.40583800000002 75.97137500000008) (-120.4349979999999 76.00305200000003) (-120.45889299999999 76.01165800000012) (-120.46749899999998 76.01220700000005) (-120.53333299999991 76.00305200000003) (-120.56054699999999 75.9916530000001) (-120.56331599999993 75.98553500000014) (-120.57417299999997 75.9791560000001) (-120.59388699999994 75.97804300000001) (-120.61361699999998 75.98193400000008) (-120.64306599999986 75.99247700000006) (-120.696663 76.01388499999996) (-120.70722999999998 76.01887500000004) (-120.71611000000001 76.02442900000005) (-120.729446 76.03942899999998) (-120.75167799999997 76.09942599999994) (-120.751106 76.10582) (-120.74833699999999 76.11192299999993) (-120.74305700000002 76.11775199999994) (-120.73222399999997 76.124146) (-120.71193699999998 76.12914999999998) (-120.72749299999992 76.15860000000004) (-120.85722399999986 76.19663999999995) (-120.883621 76.19831800000009) (-120.90249599999999 76.19636500000013) (-120.95639 76.17776500000002) (-120.96806300000003 76.172211) (-121.00890400000003 76.14414999999991) (-121.01251199999996 76.13916000000006) (-121.016953 76.12109400000008) (-121.02528399999989 76.07331800000003) (-121.02278100000001 76.05914300000006) (-120.99328600000001 76.02681700000011) (-120.97961399999997 76.01965300000012) (-120.970123 76.0134890000001) (-120.93195300000002 75.95999099999995) (-120.93306000000001 75.95694000000015) (-120.94583099999994 75.94859300000013) (-120.98082699999998 75.94164999999998) (-120.99944299999999 75.93969700000002) (-121.01445000000001 75.9427490000001) (-121.01722699999999 75.94802900000002) (-121.01112399999988 75.97082500000005) (-121.00055699999996 75.97720300000015) (-120.98610699999995 75.98414599999995) (-121.00761399999999 75.98898299999996) (-121.01527399999998 75.9921490000001) (-121.030441 75.99247700000006) (-121.09277299999997 75.9933170000001) (-121.11389199999996 75.9916530000001) (-121.25945299999995 75.96443200000004) (-121.26583900000003 75.95832800000005) (-121.271118 75.94609100000008) (-121.27887699999985 75.92776500000008) (-121.34861799999993 75.92804000000007) (-121.423317 75.93386800000002) (-121.436394 75.93914800000005) (-121.422775 75.9464650000001) (-121.41665599999988 75.95304900000008) (-121.42415599999993 75.95664999999991) (-121.479446 75.97637900000001) (-121.58306899999997 76.00360100000012) (-121.59500100000002 76.00555400000007) (-121.83473200000003 76.03442400000012) (-122.13417099999998 76.03637700000007) (-122.14499699999999 76.03082300000005) (-122.14472999999992 75.99693299999996) (-122.16944899999999 75.97804300000001) (-122.33583099999998 75.94247400000012) (-122.37666300000001 75.93386800000002) (-122.41639700000002 75.92858900000004) (-122.442207 75.92747500000007) (-122.48916599999995 75.92720000000003) (-122.51666299999994 75.928314) (-122.563606 75.93193100000013) (-122.67610200000001 75.95166000000006) (-122.69638099999997 75.95555100000013) (-122.72250400000001 75.96887200000009) (-122.728882 75.97303799999997) (-122.66915899999998 75.97692900000004) (-122.64943699999998 75.98220800000001) (-122.59111000000001 76.00166300000001) (-122.57640100000003 76.00749200000001) (-122.5625 76.01443499999999) (-122.47556299999997 76.10443100000003) (-122.47112300000003 76.11026000000004) (-122.47193899999996 76.11499000000003) (-122.48554999999993 76.1202550000001) (-122.49833699999994 76.12052900000003) (-122.60134900000003 76.11509700000005) (-122.62222300000002 76.11137400000001) (-122.67832900000002 76.11137400000001) (-122.69999699999994 76.11219800000015) (-122.70445299999994 76.1144260000001) (-122.69554099999993 76.11775199999994) (-122.58721899999995 76.13415500000002) (-122.50195299999996 76.13638300000014) (-122.48999000000003 76.141098) (-122.57417299999992 76.16609199999999) (-122.595551 76.17082200000004) (-122.62027 76.17442300000005) (-122.64666699999998 76.17581200000006) (-122.67027300000001 76.17442300000005) (-122.693604 76.17053199999998) (-122.73361199999994 76.1624910000001) (-122.84277299999997 76.13108800000009) (-122.885559 76.10443100000003) (-122.90194699999995 76.09803800000003) (-122.92138699999987 76.092758) (-123.01139799999993 76.08332800000011) (-123.037781 76.08471700000007) (-122.97917199999995 76.12580900000012) (-122.84861799999999 76.20887800000003) (-122.72112299999998 76.23136900000003) (-122.636124 76.2647090000001) (-122.63166799999999 76.2705380000001) (-122.63751200000002 76.28804000000014) (-122.64527899999996 76.299713) (-122.63249199999996 76.32998700000002) (-122.62638900000002 76.33638000000013) (-122.61776700000001 76.34220899999997) (-122.59889199999998 76.34832800000004) (-122.57861300000002 76.35359199999999) (-122.39890300000002 76.39694199999997) (-122.30943300000001 76.40887500000002) (-122.01471699999996 76.43248) (-121.826683 76.4227600000001) (-121.78195199999999 76.42025800000005) (-121.73805199999998 76.42109700000015) (-121.54998799999993 76.43470800000011) (-121.53307299999994 76.43719500000003) (-121.51445000000001 76.44413800000001) (-121.421944 76.49359099999992) (-121.31220999999994 76.572495) (-121.30695300000002 76.57832300000013) (-121.31388899999996 76.58970599999998) (-121.30915800000002 76.59387200000003) (-121.21250899999995 76.649719) (-121.118607 76.67330900000002) (-121.10109699999992 76.66832000000005) (-121.079453 76.66832000000005) (-121.05666399999996 76.67137100000002) (-120.923317 76.68997200000007) (-120.900284 76.69331399999999) (-120.88417099999998 76.698868) (-120.86193800000001 76.71192900000011) (-120.84777799999989 76.72470099999992) (-120.83249699999993 76.73136900000009) (-120.81220999999994 76.73719800000009) (-120.76611299999996 76.7435910000001) (-120.66915899999998 76.75109900000007) (-120.64083899999997 76.74859600000013) (-120.62581599999999 76.74636799999996) (-120.604172 76.74636799999996) (-120.58112299999999 76.7494200000001) (-120.40167200000002 76.797211) (-120.38194299999992 76.80415300000004) (-120.36776700000001 76.81025700000009) (-120.36609599999997 76.813309) (-120.36527999999993 76.83610500000003) (-120.09137699999997 77.00305199999997) (-120.06916799999999 77.00804099999993) (-120.03888699999999 77.01332100000002) (-120.02278100000001 77.01527399999998) (-119.99722300000002 77.01638800000012) (-119.97693600000002 77.01332100000002) (-119.96112099999993 77.009995) (-119.94999699999994 77.01249700000005) (-119.92027299999995 77.02360500000003) (-119.839447 77.05693100000002) (-119.83167999999995 77.06303400000013) (-119.83249699999999 77.06915300000014) (-119.83583099999987 77.07527199999998) (-119.83721899999995 77.07971200000003) (-119.83556399999998 77.08526600000005) (-119.825287 77.09109500000005) (-119.8125 77.09664900000001) (-119.77639799999992 77.1060940000001) (-119.60056299999991 77.145828) (-119.43331899999998 77.17359900000008) (-119.41082799999998 77.17858899999993) (-119.389183 77.184418) (-119.360817 77.20332300000007) (-119.354446 77.20915200000013) (-119.346947 77.22137499999997) (-119.34583999999995 77.22776799999997) (-119.33389299999993 77.23997500000007) (-119.31582599999996 77.2580410000001) (-119.295837 77.27665700000011) (-119.26834099999996 77.28915400000011) (-119.25306699999999 77.2952580000001) (-119.22222899999991 77.30636600000008) (-119.20111099999991 77.31303400000007) (-119.15334299999995 77.32582100000008) (-119.11444099999994 77.32748400000003) (-119.08666999999997 77.32666000000006) (-119.00110599999988 77.32110600000004) (-118.94138299999992 77.31971700000008) (-118.91694599999994 77.32249500000006) (-118.89389 77.32748400000003) (-118.87000299999994 77.33387800000008) (-118.75723299999999 77.35247800000002) (-118.73249800000002 77.35554500000012) (-118.65110799999997 77.36053500000014) (-118.44972199999995 77.35887100000014) (-118.224716 77.35609400000004) (-118.19721999999996 77.35498000000007) (-118.16583300000002 77.35525500000006) (-118.14111299999996 77.35803199999998) (-118.12805200000003 77.36442600000004) (-118.12721299999998 77.36943100000008) (-118.125 77.3724820000001) (-118.10694899999993 77.37803600000012) (-118.08750899999995 77.3791500000001) (-117.91111799999993 77.38693200000006) (-117.86721799999992 77.38859600000006) (-117.85056299999991 77.38443000000012) (-117.781113 77.36303700000002) (-117.76806599999998 77.35775800000005) (-117.756958 77.35165400000005) (-117.75083899999998 77.34664899999996) (-117.73860200000001 77.34193399999992) (-117.72444200000001 77.33804300000008) (-117.61193800000001 77.32777400000003) (-117.45084400000002 77.31219499999992) (-117.27639799999997 77.28915400000011) (-117.02306399999998 77.290817) (-117.01478600000002 77.29670000000004) (-117.01711999999992 77.30020899999994) (-117.02749599999993 77.31025699999998) (-117.06082199999997 77.32666000000006) (-117.10555999999997 77.33998100000002) (-117.11582900000002 77.34165999999999) (-117.11805699999996 77.33859300000012) (-117.1324919999999 77.33332800000005) (-117.15416699999997 77.33248900000007) (-117.16999800000002 77.33581500000008) (-117.18195300000002 77.34027100000003) (-117.181671 77.34637500000002) (-117.17666600000001 77.35220300000015) (-117.15888999999987 77.35887100000014) (-117.14277600000003 77.36137400000013) (-117.11945300000002 77.35998500000011) (-117.06082199999997 77.35331700000012) (-117.00749999999994 77.34303999999997) (-116.94666299999994 77.32943699999998) (-116.87638900000002 77.31805400000013) (-116.848343 77.315811) (-116.795837 77.31749000000002) (-116.77887699999997 77.31915300000009) (-116.65167199999996 77.37776199999996) (-116.64835399999998 77.383331) (-116.65167199999996 77.38804600000003) (-116.66278099999994 77.391663) (-116.741379 77.395264) (-116.87082699999996 77.40081800000002) (-116.89917000000003 77.399429) (-116.97582999999997 77.39332600000006) (-116.99471999999992 77.39444000000003) (-117.01112399999994 77.39888000000008) (-117.15306099999992 77.45166000000012) (-117.14998599999996 77.45721400000014) (-117.13890100000003 77.46054100000003) (-117.08306899999997 77.47442599999994) (-117.06667299999998 77.4769290000001) (-117.0613939999999 77.47608900000006) (-117.03833799999995 77.47100100000006) (-116.991669 77.4666600000001) (-116.91972399999997 77.47053500000004) (-116.89444700000001 77.47331200000013) (-116.78527799999995 77.499146) (-116.75723299999993 77.51165800000001) (-116.76944699999996 77.516388) (-116.85109699999998 77.51666300000005) (-116.87917299999987 77.51776100000012) (-116.9058379999999 77.52026400000011) (-116.926941 77.5247040000001) (-116.92054699999994 77.528595) (-116.900284 77.53221100000002) (-116.875 77.53498800000011) (-116.83306900000002 77.53360000000004) (-116.75418100000002 77.534424) (-116.64750699999996 77.53776600000015) (-116.58583099999998 77.54054300000001) (-116.53611799999993 77.54443400000008) (-116.48777799999999 77.55026200000003) (-116.35109699999998 77.53915400000005)) ((-85.285278 77.58749400000005) (-85.25973499999998 77.58665500000012) (-85.23527499999994 77.58665500000012) (-85.10722399999997 77.58109999999999) (-85.01112399999994 77.57388300000008) (-84.99527 77.56944300000009) (-84.82250999999997 77.50526400000012) (-84.81388900000002 77.49720800000006) (-84.82444799999996 77.49192799999997) (-84.84306299999992 77.48719800000015) (-84.93443300000001 77.47026099999994) (-84.96083099999998 77.46638500000006) (-85.027222 77.45971700000007) (-85.095551 77.45443700000004) (-85.12693799999994 77.45304899999991) (-85.15360999999996 77.45443700000004) (-85.16833500000001 77.45693999999997) (-85.178604 77.46415700000011) (-85.1725009999999 77.47360199999997) (-85.15916400000003 77.48414600000001) (-85.14472999999992 77.4894260000001) (-85.13861099999997 77.49498000000011) (-85.14083900000003 77.50166300000006) (-85.15278599999999 77.50776700000011) (-85.17027300000001 77.51165800000001) (-85.24888599999991 77.52748100000002) (-85.27084399999995 77.52998400000001) (-85.31973299999993 77.53221100000002) (-85.34416199999998 77.53221100000002) (-85.39916999999997 77.53387500000008) (-85.53832999999997 77.53997800000002) (-85.53555299999994 77.54386900000009) (-85.35221899999993 77.58276400000005) (-85.31138599999997 77.58665500000012) (-85.285278 77.58749400000005)) ((-90.60305800000003 77.62831100000005) (-90.521118 77.62608300000011) (-90.49249299999997 77.62608300000011) (-90.43859899999995 77.630539) (-90.41444399999995 77.63108799999998) (-90.38806199999988 77.62942500000003) (-90.33917200000002 77.62387100000007) (-90.24249299999985 77.61248800000004) (-90.21916199999998 77.60887100000008) (-90.20889299999993 77.60304299999996) (-90.21000700000002 77.59748800000006) (-90.20666499999999 77.59165999999999) (-90.19665499999996 77.58720400000004) (-90.17777999999993 77.58248900000001) (-90.05972299999996 77.56637599999999) (-89.93721 77.53276100000005) (-89.91722099999987 77.52720599999998) (-89.84110999999996 77.50416600000005) (-89.80665599999992 77.49247700000012) (-89.75361599999997 77.47303800000003) (-89.71916199999998 77.45832800000011) (-89.636124 77.33915700000006) (-89.640289 77.33332800000005) (-89.67471299999994 77.31025699999998) (-89.70777899999996 77.29414400000013) (-89.84973099999996 77.25) (-89.882767 77.23997500000007) (-89.91999800000002 77.23027000000002) (-90 77.21381400000001) (-90.00917099999998 77.211929) (-90.08889799999992 77.19970700000005) (-90.11805700000002 77.19859300000007) (-90.129166 77.20054600000003) (-90.25917099999992 77.20109600000006) (-90.36694299999999 77.19775400000009) (-90.41665599999999 77.21304299999997) (-90.68331899999993 77.27192700000006) (-90.70472699999993 77.27638200000007) (-90.72721899999993 77.27998400000001) (-90.84306300000003 77.29275499999994) (-90.90972899999997 77.30304000000007) (-90.94665500000002 77.30941800000005) (-91.14666699999992 77.36219800000009) (-91.18249499999996 77.38693200000006) (-91.18721 77.39027399999998) (-91.20889299999993 77.4149930000001) (-91.206955 77.56860400000011) (-91.18443300000001 77.60859700000015) (-91.17361499999993 77.61303699999996) (-91.15834000000001 77.61720300000007) (-91.10943599999996 77.62498500000004) (-90.90638699999994 77.65304600000013) (-90.88082899999995 77.65443400000004) (-90.82640099999998 77.65443400000004) (-90.80166600000001 77.65165700000011) (-90.72749299999998 77.64221200000003) (-90.68360899999993 77.63333100000011) (-90.60305800000003 77.62831100000005)) ((-105.01027699999986 77.40803499999993) (-104.98665599999998 77.4044340000001) (-104.96193700000003 77.4044340000001) (-104.90805099999994 77.40693700000003) (-104.82584400000002 77.41360500000002) (-104.77166699999998 77.41665600000005) (-104.74109599999997 77.41442899999998) (-104.73277300000001 77.41137700000007) (-104.53832999999997 77.33831800000007) (-104.48889199999996 77.318604) (-104.39555399999995 77.27638200000007) (-104.38834400000002 77.27137800000014) (-104.38137799999998 77.2644350000001) (-104.37998999999996 77.26193199999994) (-104.36554699999999 77.23027000000002) (-104.36749299999997 77.224426) (-104.40499899999992 77.17248500000011) (-104.416946 77.16192600000005) (-104.43804899999998 77.15054300000003) (-104.47250400000001 77.13749700000011) (-104.5 77.13304099999999) (-104.52250699999996 77.13053900000011) (-104.74027999999993 77.10859700000009) (-104.79028299999999 77.10887100000002) (-104.83249699999993 77.11331200000012) (-104.85333300000002 77.11747700000012) (-104.86916400000001 77.12359600000013) (-104.883331 77.13554399999998) (-104.89250199999992 77.14193699999993) (-104.906387 77.14749100000012) (-104.92250099999995 77.15248100000002) (-104.945267 77.15721100000002) (-104.993607 77.16499299999998) (-105.04444899999993 77.17137100000014) (-105.09583999999995 77.176086) (-105.11971999999997 77.17665099999999) (-105.13751200000002 77.176086) (-105.15167200000002 77.17137100000014) (-105.24694799999997 77.19386300000002) (-105.40888999999999 77.28166199999998) (-105.41722099999998 77.28471400000006) (-105.45527599999997 77.29193099999998) (-105.48111 77.29498300000012) (-105.50666799999993 77.299149) (-105.531677 77.30525200000011) (-105.55027799999999 77.311646) (-105.57195300000001 77.32331799999992) (-105.67916899999994 77.44747900000004) (-105.691101 77.49720800000006) (-105.83444199999997 77.6102600000001) (-105.858337 77.62692300000015) (-105.878601 77.6397090000001) (-105.88890100000003 77.645264) (-105.93083200000001 77.66304000000014) (-105.94776899999994 77.66886899999997) (-105.98000299999995 77.67942799999997) (-106.01471700000002 77.68858300000005) (-106.08361799999989 77.71026599999999) (-106.09166699999997 77.71527100000003) (-106.09472700000003 77.72415199999995) (-106.08917199999996 77.72886699999998) (-106.07945299999989 77.73275800000005) (-106.04055800000003 77.74498000000006) (-106.01222200000001 77.75054900000003) (-105.94167299999987 77.75972000000002) (-105.91388699999999 77.76249700000005) (-105.70056199999999 77.75360099999995) (-105.64890299999996 77.74859600000008) (-105.55248999999998 77.72943099999998) (-105.50666799999993 77.71971100000007) (-105.47028399999999 77.70915200000002) (-105.38971699999996 77.68386800000002) (-105.17360699999995 77.61219800000003) (-105.15695199999999 77.60609399999998) (-105.03971899999999 77.55219999999997) (-105.02778599999994 77.54637100000014) (-104.968613 77.51443500000005) (-104.95916699999998 77.50804100000005) (-104.94888300000002 77.49609400000008) (-104.94499199999996 77.484985) (-104.946663 77.47915599999999) (-104.95249899999999 77.47442599999994) (-104.96749899999998 77.46887200000015) (-105.01027699999986 77.4586030000001) (-105.01194800000002 77.45277400000009) (-105.01806599999986 77.411926) (-105.01027699999986 77.40803499999993)) ((-95.40583800000002 77.76388500000002) (-95.40888999999993 77.75221300000004) (-95.406113 77.74609400000003) (-95.38972499999994 77.73942600000004) (-95.36389200000002 77.73719800000009) (-95.343887 77.73803700000008) (-95.118607 77.74971000000005) (-95.08778399999994 77.75221300000004) (-95.05943300000001 77.75665300000009) (-95.02917499999995 77.76721199999992) (-95.01083399999999 77.77777100000014) (-94.981674 77.78082300000005) (-94.95167499999997 77.782486) (-94.752228 77.78858900000012) (-94.72888199999994 77.78831500000001) (-94.62332199999997 77.78359999999998) (-94.5727839999999 77.78054800000007) (-94.54222099999993 77.77388000000008) (-94.521118 77.76776100000006) (-94.47749299999992 77.76470899999998) (-94.44860799999998 77.76527399999998) (-94.35665899999987 77.76748700000013) (-94.25250199999994 77.77221699999996) (-94.08999599999993 77.76582300000013) (-94.03028899999998 77.76054399999998) (-93.95111099999997 77.73553500000014) (-93.93582199999997 77.73248300000006) (-93.93138099999999 77.73248300000006) (-93.82667500000002 77.73942600000004) (-93.82000700000003 77.74498000000006) (-93.81777999999997 77.75082400000008) (-93.80665599999992 77.75637800000004) (-93.78666699999997 77.76110800000009) (-93.68638599999997 77.77388000000008) (-93.65695199999999 77.776657) (-93.62943999999993 77.77609300000006) (-93.546112 77.770828) (-93.241669 77.73387100000014) (-93.23388699999987 77.73248300000006) (-93.17471299999994 77.70416300000005) (-93.101944 77.66249099999999) (-93.10665899999992 77.66026300000004) (-93.14834599999989 77.6455380000001) (-93.16416900000002 77.64027400000009) (-93.19638099999997 77.63720699999999) (-93.22250400000001 77.638596) (-93.24916100000002 77.64166300000011) (-93.27722199999994 77.64359999999994) (-93.30305499999997 77.64359999999994) (-93.35943599999996 77.63581800000003) (-93.37943999999999 77.63081400000004) (-93.39028899999994 77.62553399999996) (-93.39723200000003 77.61998) (-93.48638899999997 77.54553199999998) (-93.50250199999999 77.50305200000008) (-93.47778299999999 77.49247700000012) (-93.47471599999994 77.48748799999998) (-93.47416699999991 77.47637900000007) (-93.475281 77.47137499999991) (-93.48083499999996 77.4666600000001) (-93.537781 77.4458160000001) (-93.55305499999992 77.44081100000005) (-93.57055699999995 77.43775900000014) (-93.90666199999998 77.4333190000001) (-93.93388400000003 77.43359399999997) (-94.25167799999997 77.45526100000001) (-94.319458 77.4685970000001) (-94.34500100000002 77.472488) (-94.468887 77.4769290000001) (-94.8011019999999 77.48027000000013) (-95.03222699999998 77.46998600000012) (-95.12361099999998 77.46388200000007) (-95.204453 77.46081499999997) (-95.25279199999994 77.46081499999997) (-95.29499800000002 77.46638500000006) (-95.34638999999999 77.46998600000012) (-95.47749299999998 77.47387700000002) (-95.53277600000001 77.47360199999997) (-95.72610500000002 77.47026099999994) (-95.82362399999994 77.46638500000006) (-95.83889799999986 77.46249399999999) (-95.86416600000001 77.46220399999999) (-95.88945000000001 77.4644320000001) (-96 77.47998000000013) (-96.06138599999986 77.49165299999999) (-96.083328 77.49775699999998) (-96.09973099999996 77.50443999999999) (-96.25917099999998 77.57192999999995) (-96.31834399999997 77.59887700000007) (-96.328888 77.60498000000001) (-96.25556899999992 77.68969700000002) (-96.241104 77.69497700000011) (-96.19444299999998 77.70498700000002) (-96.07722499999994 77.72692900000004) (-95.93443300000001 77.75305200000003) (-95.91805999999997 77.75555400000007) (-95.89723199999997 77.75749200000001) (-95.86944599999993 77.75721700000003) (-95.848053 77.75526400000007) (-95.74276700000001 77.76220700000005) (-95.63055399999996 77.77110299999998) (-95.58389299999993 77.77970900000008) (-95.57000700000003 77.78414900000013) (-95.566101 77.78776600000009) (-95.56555200000003 77.79275500000006) (-95.55277999999993 77.79609700000015) (-95.52888499999995 77.80108600000011) (-95.49610899999999 77.80554200000006) (-95.46528599999994 77.80802900000009) (-95.42777999999998 77.80331400000006) (-95.41833500000001 77.79887400000007) (-95.41082799999998 77.79248000000001) (-95.40695199999999 77.78720100000004) (-95.404449 77.77638199999996) (-95.40583800000002 77.76388500000002)) ((-77.851944 77.77442900000005) (-77.87527499999987 77.77442900000005) (-77.88806199999988 77.78137200000003) (-77.93055699999996 77.80886800000007) (-77.95500199999992 77.83027600000003) (-77.952225 77.833054) (-77.93638599999991 77.83915700000011) (-77.906387 77.84443700000003) (-77.88027999999991 77.84803800000003) (-77.821121 77.85443100000003) (-77.71777299999997 77.86303700000013) (-77.67610200000001 77.86470000000003) (-77.62277199999994 77.86276200000009) (-77.59638999999999 77.86080899999996) (-77.58277900000002 77.8580320000001) (-77.57528699999995 77.85498000000013) (-77.56861900000001 77.849716) (-77.57556199999999 77.82360800000004) (-77.57917800000001 77.81860400000005) (-77.59277299999991 77.813309) (-77.62805200000003 77.80415300000004) (-77.65888999999999 77.79693600000013) (-77.68055700000002 77.79275500000006) (-77.851944 77.77442900000005)) ((-101.71140300000002 77.90165700000006) (-101.671944 77.893326) (-101.62082699999996 77.88443000000007) (-101.52443700000003 77.86998000000011) (-101.450287 77.86109899999997) (-101.36833200000001 77.8538670000001) (-101.26555599999995 77.842758) (-101.23777799999993 77.83888200000013) (-101.19138299999997 77.83082600000006) (-101.16139199999992 77.82276900000005) (-100.96056399999992 77.75915500000013) (-100.92639200000002 77.7433170000001) (-100.92555199999998 77.73719800000009) (-100.928879 77.73136900000009) (-100.94055200000003 77.72692900000004) (-100.96472199999994 77.72554000000008) (-101.096947 77.71943699999991) (-101.21694899999994 77.721924) (-101.26777599999997 77.72581500000007) (-101.31806899999992 77.726089) (-101.50695799999994 77.7249910000001) (-101.53527799999995 77.72360200000014) (-101.56471299999993 77.72053500000004) (-101.58583099999993 77.71527100000003) (-101.593613 77.709427) (-101.60582699999992 77.70387300000004) (-101.62249799999995 77.69859300000013) (-101.65222199999994 77.69442700000008) (-101.79888900000003 77.67637600000006) (-101.82640099999992 77.67608600000005) (-102.01695299999994 77.67970300000002) (-102.06777999999997 77.68220500000007) (-102.1416779999999 77.690811) (-102.43639399999995 77.72970599999996) (-102.44444299999998 77.73193400000008) (-102.51083399999999 77.78610200000008) (-102.52971600000001 77.83415200000007) (-102.51806599999992 77.84414699999996) (-102.498894 77.855545) (-102.45889299999999 77.87109400000008) (-102.44249000000002 77.8766480000001) (-102.41665599999999 77.88192700000008) (-102.38778699999995 77.88415500000002) (-102.13999899999999 77.89637800000008) (-102.08389299999999 77.89721700000007) (-102.04915599999998 77.89694200000002) (-101.91583299999996 77.8938750000001) (-101.83194699999996 77.8938750000001) (-101.779449 77.89637800000008) (-101.74973299999999 77.89971900000012) (-101.71140300000002 77.90165700000006)) ((-114.07305899999994 77.98165900000004) (-113.9813769999999 77.9349820000001) (-113.97501399999993 77.93109100000004) (-113.97222899999997 77.92526200000003) (-113.97222899999997 77.91998300000006) (-113.9583439999999 77.91499300000004) (-113.92388900000003 77.91081200000013) (-113.89499699999993 77.90832500000005) (-113.84028599999999 77.9060970000001) (-113.72666899999996 77.89610300000004) (-113.70639 77.89166300000005) (-113.58556399999998 77.82582099999996) (-113.57861300000002 77.81999199999996) (-113.57611099999997 77.81414799999999) (-113.58750899999995 77.80802900000009) (-113.61916399999996 77.79582199999999) (-113.65972899999997 77.78332499999999) (-113.78832999999992 77.74525500000004) (-113.90833999999995 77.72637900000001) (-113.93472300000002 77.72387700000013) (-114.11444099999989 77.70664999999991) (-114.19304699999998 77.69802900000002) (-114.223053 77.698868) (-114.277222 77.70220900000004) (-114.33112299999999 77.70971700000001) (-114.415009 77.73136900000009) (-114.514183 77.76527399999998) (-114.66251399999999 77.80386399999992) (-114.70916699999998 77.81359900000001) (-114.73029300000002 77.81887799999998) (-114.84834299999994 77.85470600000002) (-115.07721699999996 77.938583) (-115.11138900000003 77.95387299999999) (-115.11501299999992 77.95637500000004) (-115.11609599999991 77.958328) (-115.108337 77.96138000000008) (-115.090843 77.96360800000008) (-115.06054699999993 77.96388200000001) (-115.03388999999993 77.96220400000004) (-114.93028299999997 77.96054100000015) (-114.81973299999993 77.97303799999992) (-114.79778299999992 77.97554000000002) (-114.77749599999993 77.98165900000004) (-114.74027999999998 78.00000000000006) (-114.60582699999998 78.03054800000001) (-114.40083299999998 78.06749000000002) (-114.35500300000001 78.07054100000005) (-114.32694999999995 78.0711060000001) (-114.30332899999996 78.07054100000005) (-114.28694200000001 78.06608600000004) (-114.07305899999994 77.98165900000004)) ((-109.58805799999999 78.06469700000002) (-109.58056599999998 78.0583190000001) (-109.58112299999988 78.0413670000001) (-109.58528100000001 78.03553800000009) (-109.66972399999997 77.97164900000013) (-109.68305999999995 77.96582000000012) (-109.70556599999986 77.95999100000012) (-109.76027699999997 77.95109600000006) (-109.81527699999992 77.9427490000001) (-109.84249899999998 77.938873) (-109.89750699999996 77.93275500000004) (-110.00723299999987 77.92137100000014) (-110.14499699999999 77.91192600000011) (-110.162781 77.90693699999997) (-110.16665599999999 77.90109300000012) (-110.19611399999991 77.89665200000002) (-110.22112299999998 77.8938750000001) (-110.24889399999995 77.8938750000001) (-110.48999000000003 77.88388100000009) (-110.62666300000001 77.87303200000002) (-110.65416700000003 77.87191800000005) (-110.79250299999995 77.8708190000001) (-110.846947 77.86637900000005) (-110.873894 77.86219800000015) (-110.89584400000001 77.85609399999993) (-110.90139799999992 77.849716) (-110.90471600000001 77.84387200000015) (-110.90360999999996 77.83804299999997) (-110.90028399999994 77.832764) (-110.89444699999996 77.82693499999999) (-110.88639799999987 77.82083100000011) (-110.74388099999993 77.77360500000009) (-110.71556099999992 77.76887500000004) (-110.65888999999999 77.75972000000002) (-110.63110399999994 77.75804099999999) (-110.60138699999999 77.75888100000003) (-110.51972999999992 77.76332100000002) (-110.41583299999996 77.770828) (-110.39306599999986 77.77304100000015) (-110.368607 77.77638199999996) (-110.28916899999996 77.782486) (-110.16111799999999 77.78414900000013) (-110.13305700000001 77.78054800000007) (-110.10500299999995 77.77499400000005) (-110.09028599999994 77.76915000000008) (-110.08029199999993 77.76332100000002) (-110.04055800000003 77.637497) (-110.08029199999993 77.56359900000007) (-110.08416699999992 77.55775500000004) (-110.09221599999995 77.55192600000004) (-110.11749299999997 77.53997800000002) (-110.20333899999997 77.51138300000014) (-110.22501399999987 77.50526400000012) (-110.27055399999995 77.49581900000004) (-110.29695100000004 77.49165299999999) (-110.502228 77.46026600000005) (-110.81500199999999 77.42498800000004) (-110.82749899999999 77.41914400000002) (-110.85082999999992 77.41442899999998) (-110.87721299999998 77.41137700000007) (-110.95639 77.407486) (-111.00974299999996 77.40609699999999) (-111.06527699999998 77.40609699999999) (-111.11721799999992 77.40887499999997) (-111.172234 77.4160920000001) (-111.29998799999993 77.41914400000002) (-111.46305799999999 77.39305100000007) (-111.61833200000001 77.37387100000012) (-111.82501199999996 77.34887700000013) (-112.031113 77.3247070000001) (-112.05722000000003 77.32331799999992) (-112.083618 77.32304399999998) (-112.13694800000002 77.32331799999992) (-112.16639700000002 77.32527199999998) (-112.41306299999997 77.35609400000004) (-112.43888900000002 77.36109900000008) (-112.48222399999992 77.37109400000003) (-112.5 77.37823500000002) (-112.50778200000002 77.38136300000002) (-112.52139299999999 77.38943499999999) (-112.52333099999993 77.395264) (-112.526947 77.39971900000006) (-112.545547 77.41581700000006) (-112.587784 77.44914199999994) (-112.60109699999992 77.45526100000001) (-112.626938 77.45942700000006) (-112.65387699999997 77.45887800000014) (-112.68222000000003 77.45693999999997) (-112.69721999999996 77.45526100000001) (-112.73889200000002 77.4458160000001) (-112.764183 77.44165000000004) (-112.79083300000002 77.4410860000001) (-112.80249000000003 77.442474) (-112.92887899999994 77.46415700000011) (-112.95777899999996 77.46943699999997) (-112.96389799999992 77.474152) (-112.96806299999992 77.48580900000013) (-112.96806299999992 77.49220300000002) (-112.97028399999999 77.49803200000002) (-112.978882 77.50332600000002) (-112.99445300000002 77.50888100000009) (-113.01167299999997 77.51277199999998) (-113.03751399999999 77.51582300000001) (-113.06500199999999 77.51721199999997) (-113.14611799999994 77.51776100000012) (-113.17388900000003 77.51944000000015) (-113.198036 77.52388000000013) (-113.20472699999999 77.52943399999998) (-113.23805199999998 77.58137500000004) (-113.24027999999993 77.58720400000004) (-113.16251399999993 77.60914600000012) (-113.1875 77.73942600000004) (-113.20556599999998 77.74443100000008) (-113.26251200000002 77.75555400000007) (-113.283073 77.76110800000009) (-113.29444899999999 77.766663) (-113.30387899999994 77.77304100000015) (-113.31054699999993 77.77859500000011) (-113.31500199999994 77.78387500000002) (-113.31973299999999 77.79553199999992) (-113.31973299999999 77.80720499999995) (-113.31749699999995 77.81303399999996) (-113.30638099999993 77.83720399999999) (-113.23473399999989 77.90165700000006) (-113.23082699999992 77.903595) (-113.20973200000003 77.90887500000008) (-113.12721299999998 77.9122010000001) (-113.09973100000002 77.91276600000015) (-113.07167099999998 77.9122010000001) (-113.04666099999997 77.90776100000011) (-113.03971899999999 77.9019320000001) (-112.943604 77.91192600000011) (-112.80499299999985 77.933044) (-112.78333299999997 77.93719500000009) (-112.766663 77.94247400000006) (-112.74194299999988 77.95166) (-112.57444799999996 77.97943100000009) (-112.46694899999994 77.99247700000001) (-112.29499800000002 78.0105440000001) (-112.12526699999995 78.00610400000005) (-111.97944599999994 78.01859999999999) (-111.787216 78.03359999999992) (-111.77610800000002 78.02804600000013) (-111.756393 78.024429) (-111.73055999999997 78.02415500000006) (-111.70556599999998 78.02693199999999) (-111.63221699999991 78.04081700000006) (-111.34583999999995 78.0769350000001) (-111.31833599999999 78.08027600000014) (-111.28832999999997 78.08194000000015) (-111.09333800000002 78.09248400000001) (-111.048607 78.0935970000001) (-111.02749599999999 78.093323) (-110.99861099999993 78.09054600000007) (-110.99749799999995 78.08471700000007) (-111.00110599999994 78.07998700000002) (-110.995003 78.07415800000001) (-110.903343 78.06219499999997) (-110.861107 78.061646) (-110.83306899999997 78.06303400000013) (-110.80555700000002 78.06526200000008) (-110.78778099999994 78.0711060000001) (-110.77500899999995 78.0769350000001) (-110.77139299999999 78.08276400000011) (-110.76334399999996 78.08888200000007) (-110.74553700000001 78.09471100000007) (-110.72721899999988 78.09776299999999) (-110.67051700000002 78.101089) (-110.54998799999998 78.1060940000001) (-110.46584299999995 78.10859700000003) (-110.23777799999999 78.11080900000013) (-110.10082999999992 78.10859700000003) (-109.95916699999987 78.10470599999996) (-109.78916899999996 78.09971600000011) (-109.67777999999998 78.09193399999998) (-109.65387699999985 78.08831800000013) (-109.60527000000002 78.0711060000001) (-109.58805799999999 78.06469700000002)) ((-101.65139799999997 78.14471400000002) (-101.67527799999999 78.14444000000009) (-101.859444 78.15525800000006) (-101.87917299999992 78.15832499999999) (-101.88194299999998 78.16220100000004) (-101.77610800000002 78.21638500000012) (-101.75334199999992 78.22720300000009) (-101.73137700000001 78.23248300000012) (-101.70722999999987 78.23275799999999) (-101.68472299999996 78.230545) (-101.68167099999994 78.22747800000008) (-101.67250100000001 78.22608900000012) (-101.633621 78.21081500000003) (-101.62277199999988 78.20471200000009) (-101.61582899999996 78.19941699999998) (-101.60360700000001 78.18748500000004) (-101.59999099999993 78.18109099999998) (-101.59861799999993 78.17526199999998) (-101.59973100000002 78.16442900000004) (-101.60527000000002 78.15914900000013) (-101.61305199999998 78.15359499999994) (-101.62581599999993 78.14804100000015) (-101.65139799999997 78.14471400000002)) ((-103.05695300000002 78.11970500000007) (-103.11444099999994 78.11775200000011) (-103.19444299999992 78.11914100000007) (-103.212784 78.12052900000003) (-103.23029300000002 78.12387100000012) (-103.25862099999995 78.134995) (-103.27027900000002 78.14109799999994) (-103.277222 78.14694199999997) (-103.28222700000003 78.15776100000005) (-103.27971600000001 78.16360500000008) (-103.274719 78.169983) (-103.26750199999998 78.17553700000002) (-103.23916600000001 78.19220000000007) (-103.22721899999993 78.19775400000009) (-103.17027300000001 78.21998599999995) (-103.12471 78.23664900000006) (-103.06276700000001 78.25804100000005) (-103.04138199999994 78.26361099999997) (-102.98693800000001 78.27276599999999) (-102.93415800000002 78.27276599999999) (-102.89750700000002 78.26914999999997) (-102.82556199999993 78.25888100000009) (-102.8125 78.255829) (-102.79860699999995 78.25027499999999) (-102.78916899999996 78.24443100000002) (-102.78222700000003 78.23858600000005) (-102.78028899999993 78.23275799999999) (-102.77639799999986 78.21554600000013) (-102.77639799999986 78.21026600000005) (-102.781387 78.20498700000007) (-102.79332699999998 78.19941699999998) (-102.85527000000002 78.18887299999994) (-102.89806399999992 78.17804000000001) (-102.93195300000002 78.16693100000009) (-102.97721899999999 78.1502690000001) (-103.01777599999997 78.13360600000004) (-103.04167199999995 78.122208) (-103.05695300000002 78.11970500000007)) ((-94.36665299999999 78.15914900000013) (-94.37805199999997 78.15776100000005) (-94.40444899999994 78.15998800000011) (-94.50611899999996 78.1727600000001) (-94.52000399999986 78.17747500000013) (-94.67111199999988 78.24081400000006) (-94.68306000000001 78.24720800000006) (-94.69415299999991 78.2586060000001) (-94.69221500000003 78.26470900000004) (-94.68110699999988 78.27415500000001) (-94.66082799999992 78.27916000000005) (-94.63555899999994 78.28387500000008) (-94.60221899999999 78.28720099999992) (-94.57223499999992 78.28776600000015) (-94.54638699999998 78.28442400000006) (-94.51501499999989 78.27804600000007) (-94.48194899999993 78.268326) (-94.36111499999987 78.22164900000007) (-94.34472699999998 78.21470600000009) (-94.316666 78.19747900000004) (-94.30943300000001 78.1910860000001) (-94.30694599999993 78.18498200000005) (-94.30915799999997 78.17915300000004) (-94.36665299999999 78.15914900000013)) ((-88.28721599999994 78.24331699999999) (-88.36000100000001 78.23776199999992) (-88.38194299999998 78.24247699999995) (-88.39361600000001 78.24887100000001) (-88.40472399999999 78.25999500000006) (-88.40750099999991 78.2644350000001) (-88.41111799999993 78.27387999999996) (-88.40972899999997 78.29220599999996) (-88.404449 78.29803500000003) (-88.23527499999989 78.42692599999998) (-88.11305199999998 78.45526099999995) (-88.09445199999999 78.45694000000015) (-88.07028199999996 78.45471200000003) (-88.06138599999991 78.45248400000008) (-88.05277999999993 78.44552600000009) (-88.04972800000002 78.44442700000008) (-88.04333499999996 78.43664600000005) (-88.04444899999993 78.42442299999999) (-88.04499799999996 78.42137100000008) (-88.04666099999997 78.41886899999997) (-88.05722000000003 78.40748599999995) (-88.16639699999996 78.30802900000003) (-88.18777499999999 78.29165599999993) (-88.245544 78.2527770000001) (-88.25500499999998 78.24720800000006) (-88.28721599999994 78.24331699999999)) ((-109.64806399999992 78.58804299999997) (-109.569458 78.58638000000008) (-109.54998799999998 78.58665500000006) (-109.50055700000001 78.582764) (-109.40527299999997 78.55693100000008) (-109.33416699999998 78.52415500000012) (-109.26055899999994 78.48719800000009) (-109.25556899999998 78.48248300000006) (-109.254997 78.47859199999999) (-109.26055899999994 78.455826) (-109.31806899999992 78.35803199999998) (-109.32721700000002 78.35220300000015) (-109.40499899999992 78.30636600000008) (-109.42859599999997 78.303314) (-109.59583999999995 78.30276500000002) (-109.766953 78.29414400000013) (-109.82444799999996 78.29386900000009) (-109.85333300000002 78.29664600000001) (-109.882767 78.30137600000006) (-109.89306599999998 78.30720500000007) (-109.89835399999998 78.3119200000001) (-109.90862299999998 78.31776400000007) (-109.92610200000001 78.32304399999998) (-109.95527599999997 78.32582100000008) (-109.98388699999998 78.32554600000003) (-110.01251200000002 78.32360800000009) (-110.19638099999997 78.30386400000003) (-110.22444199999995 78.29998799999993) (-110.25250199999999 78.29582200000004) (-110.279449 78.284988) (-110.29778299999992 78.2810970000001) (-110.354446 78.27665700000006) (-110.4119419999999 78.27720600000004) (-110.484734 78.28442400000006) (-110.57167099999992 78.28970300000003) (-110.65833999999995 78.29304500000012) (-110.71556099999992 78.29248000000013) (-110.78778099999994 78.30693100000013) (-110.85665899999987 78.32720899999998) (-110.85888699999998 78.3377690000001) (-110.97501399999999 78.363876) (-111.00250199999999 78.36804200000006) (-111.14138799999995 78.38610800000004) (-111.16999799999996 78.38415500000008) (-111.27778599999994 78.37220799999994) (-111.27139299999999 78.34610000000004) (-111.30610699999994 78.32110600000004) (-111.41000400000001 78.27720600000004) (-111.42304999999993 78.27221700000007) (-111.43888899999996 78.2686000000001) (-111.46250899999995 78.26748700000002) (-111.50527999999997 78.26693699999998) (-111.57556199999999 78.27053800000004) (-111.65249599999993 78.27276599999999) (-111.73832700000003 78.27276599999999) (-111.76666299999994 78.27137800000008) (-111.79527299999995 78.2711030000001) (-111.82000700000003 78.27360499999998) (-111.86472300000003 78.29637099999997) (-111.88221699999997 78.30693100000013) (-111.88861099999997 78.3124850000001) (-111.89277599999997 78.31805400000013) (-111.89167800000001 78.32222000000002) (-111.91861 78.33276400000005) (-111.939438 78.33831800000007) (-112.13305700000001 78.36554000000001) (-112.21501199999994 78.36526500000014) (-112.43776700000001 78.35443100000009) (-112.58306899999997 78.34359700000005) (-112.68443299999996 78.33137500000004) (-112.73916599999995 78.32304399999998) (-112.78721599999989 78.31053199999997) (-112.89083900000003 78.29248000000013) (-112.94499199999996 78.28387500000008) (-113.026947 78.27276599999999) (-113.05499299999997 78.27137800000008) (-113.14222699999999 78.268326) (-113.16860999999994 78.2686000000001) (-113.18831599999999 78.26998900000012) (-113.21777299999985 78.27777100000003) (-113.27333099999998 78.29637099999997) (-113.28195199999999 78.29971300000011) (-113.287781 78.30247500000002) (-113.33249699999993 78.32887299999999) (-113.33416699999998 78.33276400000005) (-113.21611000000001 78.38526900000011) (-113.1241609999999 78.4208220000001) (-113.11527999999987 78.42303500000008) (-113.03832999999997 78.43691999999999) (-112.71167000000003 78.48471100000006) (-112.60749800000002 78.4994200000001) (-112.36305199999998 78.53332499999999) (-112.31166100000002 78.53997799999996) (-112.23805199999998 78.547211) (-112.12970699999994 78.55192600000004) (-111.98805199999987 78.55276499999997) (-111.90360999999996 78.54887400000007) (-111.87304699999999 78.54443400000008) (-111.85305800000003 78.54275500000006) (-111.8097229999999 78.54525800000005) (-111.75250199999994 78.55053700000002) (-111.67777999999993 78.56303400000002) (-111.641953 78.57415800000007) (-111.60082999999997 78.5852660000001) (-111.57224299999996 78.588593) (-111.45556599999998 78.592758) (-111.39195299999994 78.61192299999999) (-111.378601 78.617752) (-111.3799899999999 78.62275700000004) (-111.36305199999998 78.64276099999995) (-111.160553 78.69164999999992) (-110.95612299999993 78.71832300000011) (-110.79110700000001 78.73525999999993) (-110.6375119999999 78.74859600000008) (-110.46028100000001 78.75749200000001) (-110.43055700000002 78.75860599999999) (-110.410553 78.757767) (-110.39527900000002 78.75610400000011) (-110.3844529999999 78.75138900000007) (-110.271118 78.72776800000003) (-110.16416900000002 78.70915199999996) (-110.07778899999988 78.69497700000005) (-109.99722300000002 78.68386800000002) (-109.86165599999998 78.66693099999998) (-109.85582699999998 78.66026299999999) (-109.86000100000001 78.65443399999998) (-109.86165599999998 78.64915500000001) (-109.86110699999995 78.643326) (-109.85526999999996 78.637497) (-109.67054699999989 78.5913700000001) (-109.64806399999992 78.58804299999997)) ((-74.30694599999998 78.67665100000005) (-74.33416699999992 78.67526200000009) (-74.36721799999998 78.67608600000005) (-74.41944899999999 78.68165599999992) (-74.61416600000001 78.70277400000003) (-74.70472699999993 78.72276299999993) (-74.71000700000002 78.72747799999996) (-74.71028100000001 78.73109400000004) (-74.70666499999999 78.7374880000001) (-74.64500399999997 78.77249100000006) (-74.63221699999997 78.77720600000009) (-74.61582900000002 78.77859500000011) (-74.59110999999996 78.7788700000001) (-74.55555700000002 78.776093) (-74.35694899999993 78.75582900000006) (-74.31204200000002 78.75000000000006) (-74.28195199999999 78.74609400000003) (-74.19248999999996 78.72970599999996) (-74.16777000000002 78.71998600000006) (-74.16361999999992 78.716095) (-74.17277499999989 78.71138000000013) (-74.23638899999997 78.68719499999992) (-74.25666799999993 78.6827550000001) (-74.28443900000002 78.67886400000003) (-74.30694599999998 78.67665100000005)) ((-96.76806599999998 78.684143) (-96.70889299999999 78.6827550000001) (-96.64500399999997 78.68609600000013) (-96.61305199999998 78.68553200000002) (-96.58500700000002 78.68331900000004) (-96.53361499999994 78.6769260000001) (-96.510559 78.672485) (-96.46639999999996 78.66192600000011) (-96.39527900000002 78.64054900000008) (-96.379166 78.63443000000007) (-96.35610999999994 78.62776200000008) (-96.31582600000002 78.618042) (-96.29388399999993 78.61526500000008) (-96.265015 78.61886600000014) (-96.23554999999999 78.62776200000008) (-96.20249899999988 78.63026400000001) (-96.18443299999996 78.62858600000004) (-96.16749599999997 78.62330600000001) (-96.15888999999987 78.61720300000007) (-96.15249599999999 78.61137400000001) (-96.21640000000002 78.56053199999997) (-96.17805499999992 78.5188750000001) (-96.00944500000003 78.49247700000012) (-95.85777300000001 78.49498000000006) (-95.82000699999992 78.5022130000001) (-95.74665800000002 78.51499899999999) (-95.71665999999999 78.51971400000002) (-95.68472300000002 78.52110300000004) (-95.652222 78.52137800000003) (-95.601944 78.51971400000002) (-95.53721599999994 78.51470899999998) (-95.481674 78.50888100000003) (-95.40777599999996 78.49720800000006) (-95.20638999999994 78.46165500000001) (-95.08694499999996 78.43775900000009) (-94.89500399999997 78.39582800000011) (-94.87777699999992 78.3913730000001) (-94.86082499999992 78.38472000000013) (-94.83167999999995 78.36469999999997) (-94.82917799999996 78.35887100000014) (-94.83084099999991 78.35276799999997) (-94.83750899999995 78.34721400000001) (-94.8533329999999 78.3419340000001) (-94.94193999999999 78.31637599999999) (-94.96694899999994 78.31137100000012) (-95.09638999999993 78.29026800000003) (-95.36361699999992 78.24136400000009) (-95.38806199999993 78.23637400000001) (-95.39917000000003 78.23109399999998) (-95.39862099999999 78.22692899999998) (-95.38890099999998 78.22248800000006) (-95.36888099999999 78.21859699999999) (-95.34583999999995 78.217758) (-95.25527999999991 78.21804800000001) (-95.22749299999998 78.2166600000001) (-95.130829 78.19413800000001) (-95.11305199999993 78.18858300000011) (-95.10694899999999 78.18525700000009) (-95.108612 78.17942800000009) (-95.11193799999995 78.17414900000011) (-95.11193799999995 78.16748000000001) (-95.10610999999994 78.16192600000005) (-95.089722 78.15498400000013) (-95.06806899999992 78.14804100000015) (-94.98332199999993 78.13304099999999) (-94.90695199999999 78.11720300000013) (-94.88999899999999 78.10887099999997) (-94.88694799999996 78.10276800000003) (-94.91166699999985 78.055252) (-95.01139799999999 77.99136399999992) (-95.04388399999993 77.97499100000005) (-95.0574949999999 77.96914700000008) (-95.08528099999995 77.95887800000003) (-95.10055499999993 77.95359799999994) (-95.112503 77.95138500000002) (-95.13751199999996 77.95054600000003) (-95.16250600000001 77.95359799999994) (-95.18638599999986 77.95776400000005) (-95.21167000000003 77.96110500000009) (-95.23693800000001 77.964157) (-95.26583899999997 77.96609500000011) (-95.321396 77.96775800000006) (-95.37998999999996 77.96638499999995) (-95.400284 77.9627690000001) (-95.41332999999986 77.95942699999995) (-95.42555199999993 77.94802900000013) (-95.44972200000001 77.9433140000001) (-95.54972800000002 77.934143) (-95.75805700000001 77.91192600000011) (-95.83084099999996 77.89888000000013) (-95.93859900000001 77.88581799999997) (-96.18943799999994 77.86608900000004) (-96.28555299999994 77.85942100000005) (-96.31750499999993 77.8583220000001) (-96.345551 77.85859700000009) (-96.36527999999998 77.859985) (-96.386124 77.86276200000009) (-96.40417499999995 77.8685910000001) (-96.41194200000001 77.87498499999998) (-96.41082799999992 77.88081399999999) (-96.40527299999997 77.88638299999997) (-96.410553 77.89054900000008) (-96.416946 77.8938750000001) (-96.43582200000003 77.89860499999998) (-96.45666499999999 77.90165700000006) (-96.54110700000001 77.89721700000007) (-96.73443600000002 77.87275700000004) (-96.73500099999995 77.86692800000003) (-96.710556 77.855545) (-96.69638099999992 77.85081500000013) (-96.66722099999993 77.84915200000006) (-96.58500700000002 77.85636899999997) (-96.55888400000003 77.85942100000005) (-96.53971899999999 77.8644260000001) (-96.51611300000002 77.86943099999996) (-96.49166899999989 77.87025499999993) (-96.51556399999998 77.8455350000001) (-96.54277000000002 77.84193400000004) (-96.62832599999996 77.84054600000013) (-96.68720999999988 77.84054600000013) (-96.71166999999997 77.83970600000009) (-96.73416099999997 77.83554100000009) (-96.74861099999993 77.83027600000003) (-96.82945299999994 77.789154) (-96.84999099999999 77.78720100000004) (-96.88055399999996 77.78692600000005) (-96.900284 77.78831500000001) (-96.90777600000001 77.79054299999996) (-96.912216 77.79304500000006) (-96.93388400000003 77.79748500000005) (-97.01417499999997 77.80415300000004) (-97.05749500000002 77.80554200000006) (-97.07250999999991 77.80415300000004) (-97.09695399999993 77.80331400000006) (-97.10221899999999 77.80748) (-97.11972000000003 77.86526500000008) (-97.11999499999996 77.87025499999993) (-97.10749799999996 77.87637300000006) (-97.08138999999994 77.88665800000001) (-97.01556399999998 77.90416000000005) (-97.002228 77.90860000000004) (-96.99221799999998 77.91415400000005) (-96.99249299999991 77.91886900000009) (-96.99499500000002 77.92109700000003) (-97.14277599999997 77.9349820000001) (-97.28167699999995 77.94831800000009) (-97.30999799999995 77.95109600000006) (-97.354446 77.96220400000004) (-97.38027999999997 77.969986) (-97.431671 77.98692300000005) (-97.45472699999993 77.99275200000005) (-97.50306699999987 78.00248699999992) (-97.57223499999998 78.01249700000005) (-97.60278299999993 78.01554899999996) (-97.67361499999998 78.02137800000014) (-97.75556899999998 78.02554299999997) (-97.766953 78.0288700000001) (-97.77555799999999 78.03498800000006) (-97.666946 78.08804300000008) (-97.64778100000001 78.09082000000001) (-97.61833199999995 78.09166000000005) (-97.56750499999993 78.08970600000004) (-97.51306199999999 78.08665500000001) (-97.43249499999996 78.08055100000013) (-97.323624 78.0769350000001) (-97.297775 78.07638500000007) (-97.0244449999999 78.07470699999993) (-96.997772 78.07527199999998) (-96.910278 78.07916300000005) (-96.88751199999996 78.08305400000012) (-96.85555999999991 78.10415599999993) (-96.85638399999999 78.10803200000004) (-96.870544 78.133331) (-96.88555899999994 78.13804600000003) (-96.98388699999992 78.15081800000007) (-97.05915799999997 78.15776100000005) (-97.13806199999993 78.16581700000012) (-97.164444 78.16886900000003) (-97.18472299999996 78.17248500000011) (-97.19499200000001 78.17692599999998) (-97.20083599999992 78.18359399999997) (-97.21250900000001 78.18942299999998) (-97.29943800000001 78.20471200000009) (-97.32112099999995 78.20748899999995) (-97.34916699999997 78.20860299999998) (-97.40777600000001 78.207764) (-97.63555899999994 78.20665000000002) (-97.829453 78.21914700000002) (-97.84944199999995 78.23471100000012) (-97.81750499999998 78.23275799999999) (-97.773056 78.23887600000012) (-97.76333599999992 78.24443100000002) (-97.77778599999988 78.25) (-97.86776699999996 78.27970900000003) (-97.881104 78.28360000000009) (-97.90417500000001 78.28804000000008) (-97.93055700000002 78.290817) (-98.01278699999995 78.29693600000002) (-98.05471799999992 78.30165100000005) (-98.06834399999997 78.30802900000003) (-98.07084699999996 78.31359900000007) (-98.04361 78.38943499999999) (-98.14834599999995 78.4038700000001) (-98.17222600000002 78.40498400000007) (-98.19833399999999 78.40859999999998) (-98.347778 78.443039) (-98.36665299999999 78.44941699999998) (-98.38806199999999 78.46748400000001) (-98.410553 78.49026500000002) (-98.41139199999992 78.4952550000001) (-98.41027799999995 78.50804099999999) (-98.30888400000003 78.53387500000002) (-98.17138699999998 78.52970900000014) (-98.05444299999999 78.53360000000004) (-98.02223199999992 78.53637700000013) (-98.01916499999999 78.54275500000006) (-98.02806099999992 78.563309) (-98.04222099999993 78.56971699999997) (-98.08000199999992 78.582764) (-98.115005 78.59387199999998) (-98.13999899999999 78.599426) (-98.16915899999992 78.60304300000013) (-98.23500100000001 78.61914100000001) (-98.31527699999992 78.64387499999998) (-98.32695000000001 78.65054299999991) (-98.32806399999993 78.65220600000004) (-98.37165800000002 78.71998600000006) (-98.366104 78.76361100000003) (-98.36471599999993 78.76805100000007) (-98.17332499999992 78.81275900000014) (-98.144455 78.81666600000011) (-98.06138599999997 78.81887799999998) (-97.77778599999988 78.81526200000008) (-97.65695199999999 78.81137100000001) (-97.59973100000002 78.80747999999994) (-97.48860200000001 78.79664600000007) (-97.46194500000001 78.792755) (-97.43693499999989 78.786926) (-97.385559 78.77693199999999) (-97.35916099999997 78.77304100000009) (-97.27362099999999 78.76443499999999) (-97.160278 78.75888100000003) (-97.07806399999998 78.74971000000005) (-97.02528399999994 78.74192800000009) (-96.99972500000001 78.73692300000005) (-96.95472699999993 78.72637900000001) (-96.92250099999995 78.71331800000007) (-96.91389500000002 78.70694000000009) (-96.90388499999995 78.70166000000006) (-96.88639799999999 78.69664) (-96.76806599999998 78.684143)) ((-86.319458 78.88360600000004) (-86.38806199999988 78.88304100000005) (-86.41471899999993 78.88443000000001) (-86.44444299999998 78.8872070000001) (-86.46916199999993 78.88970899999998) (-86.48443600000002 78.89276100000012) (-86.47694399999989 78.89637800000008) (-86.43638599999997 78.91110200000008) (-86.38667299999997 78.9249880000001) (-86.366104 78.92970300000013) (-86.346115 78.93969700000014) (-86.32861300000002 78.95082100000002) (-86.29277000000002 78.98304700000011) (-86.28527799999995 78.99331700000005) (-86.28361499999994 78.99803200000008) (-86.04695100000004 79.03858900000006) (-85.99082899999996 79.04693600000007) (-85.92443799999995 79.05386400000003) (-85.89611799999994 79.05693100000013) (-85.82000700000003 79.06137100000001) (-85.71250900000001 79.06414800000005) (-85.646118 79.06442300000009) (-85.32139599999994 79.05386400000003) (-85.26333599999992 79.04887400000001) (-85.2161099999999 79.04136700000004) (-85.19972200000001 79.03749099999999) (-85.18249500000002 79.03137200000015) (-85.16722099999993 79.02082800000011) (-85.16944899999999 79.01470900000004) (-85.17639199999996 79.00888099999997) (-85.18666100000002 79.0027770000001) (-85.20944199999991 78.99359099999998) (-85.22582999999997 78.98858600000011) (-85.24694799999997 78.98414600000007) (-85.30139200000002 78.97526600000003) (-85.46611000000001 78.958328) (-85.54666099999997 78.95248400000014) (-85.76556399999998 78.93414300000012) (-86.026947 78.91026299999999) (-86.21389799999997 78.89166300000005) (-86.24499500000002 78.88832100000008) (-86.28416399999998 78.885269) (-86.319458 78.88360600000004)) ((-103.59388699999988 79.32582100000002) (-103.39835399999993 79.2999880000001) (-103.33556399999998 79.2999880000001) (-103.26251200000002 79.2999880000001) (-103.13999899999993 79.28776600000015) (-103.09777799999995 79.28248600000006) (-103.08361799999994 79.27943399999998) (-103.06806899999992 79.27388000000013) (-102.921112 79.21748400000007) (-102.92666600000001 79.21110500000003) (-102.92639199999996 79.20664999999997) (-102.921944 79.20027200000004) (-102.90194699999995 79.17221100000012) (-102.89167800000001 79.16665600000005) (-102.87444299999987 79.16499299999992) (-102.76862299999993 79.13888499999996) (-102.620003 79.09721400000001) (-102.61165599999998 79.09304800000012) (-102.60582699999998 79.07443200000012) (-102.60637700000001 79.06805400000013) (-102.612213 79.05664100000013) (-102.654449 78.99414100000001) (-102.66555799999998 78.98275799999999) (-102.67582700000003 78.97747800000013) (-102.69860799999992 78.97192400000012) (-102.72084000000001 78.93830900000006) (-102.59500099999997 78.87664800000005) (-102.57945299999994 78.87303200000002) (-102.56082200000003 78.86970500000007) (-102.55082700000003 78.86943100000013) (-102.52887699999985 78.87303200000002) (-102.39195299999994 78.93165600000009) (-102.37638900000002 78.94636500000013) (-102.38054699999998 78.9627690000001) (-102.39806399999992 78.98719800000003) (-102.36305199999998 79.0149990000001) (-102.27944899999989 79.01805100000001) (-102.09361299999989 79.04414400000013) (-102.04943799999995 79.05442799999997) (-102.01500699999997 79.06498700000003) (-101.99333199999995 79.07609600000012) (-101.975281 79.08082599999994) (-101.942207 79.08471700000001) (-101.90249599999993 79.08638000000013) (-101.88194299999998 79.08610499999992) (-101.64890299999996 79.07582100000008) (-101.62805200000003 79.07193000000001) (-101.54194599999994 79.04470800000007) (-101.5202789999999 79.03831500000013) (-101.30803699999996 78.97581500000001) (-101.23166699999996 78.95942700000012) (-101.20472699999999 78.954163) (-101.17666600000001 78.95387299999993) (-101.15222199999988 78.95665000000002) (-101.14334100000002 78.96249400000005) (-101.14472999999992 78.96832300000005) (-101.14083900000003 78.97415200000006) (-101.09388699999994 78.96360800000002) (-101.00556899999998 78.94303900000006) (-100.98665599999998 78.93719500000009) (-100.98528299999998 78.93136600000003) (-101.11694299999988 78.85693400000014) (-101.15278599999999 78.83998100000008) (-101.19304699999992 78.82443199999994) (-101.20056199999999 78.82083100000011) (-101.20333899999997 78.81581100000005) (-101.20084399999996 78.81191999999999) (-101.186394 78.80276500000014) (-101.17278299999998 78.80053700000013) (-100.99194299999999 78.78887900000012) (-100.86389199999991 78.78137200000003) (-100.83056599999992 78.78970300000009) (-100.80055199999998 78.79332000000005) (-100.70556599999998 78.799713) (-100.61389200000002 78.79803500000008) (-100.587784 78.79914900000006) (-100.55915799999997 78.80442800000003) (-100.55027799999993 78.80998200000005) (-100.53639199999998 78.81553600000001) (-100.52443700000003 78.81805400000002) (-100.35109699999998 78.82832300000001) (-100.34445199999993 78.82666000000012) (-100.32389799999999 78.80220000000008) (-100.32250999999997 78.79721100000012) (-100.33249699999993 78.782761) (-100.32333399999993 78.77804600000013) (-100.283073 78.76776100000006) (-100.22778299999993 78.7605440000001) (-100.14334099999996 78.75221300000004) (-100.12416100000002 78.75000000000006) (-100.03250099999997 78.73942600000004) (-100.004997 78.73580900000007) (-99.95249899999999 78.72554000000002) (-99.93638599999997 78.71998600000006) (-99.89639299999993 78.69581600000004) (-99.89388999999994 78.69303900000011) (-99.89306599999998 78.6869200000001) (-99.91332999999992 78.67970300000002) (-99.97277799999995 78.659988) (-100.0625 78.63888500000007) (-100.0625 78.63554400000004) (-100.01666299999988 78.61665300000004) (-99.98889199999991 78.61387600000012) (-99.96305799999999 78.61499000000009) (-99.90972899999997 78.62387100000001) (-99.85333299999996 78.63304100000005) (-99.81750499999993 78.630539) (-99.573624 78.5955350000001) (-99.55027799999988 78.59027100000014) (-99.53332499999999 78.58360299999998) (-99.52972399999999 78.57804899999996) (-99.53416400000003 78.57222000000013) (-99.66111799999993 78.48553500000003) (-99.6702729999999 78.47970600000002) (-99.68415799999997 78.47442600000011) (-99.71250899999995 78.46943699999997) (-99.777222 78.46138000000002) (-99.83139 78.45082100000013) (-99.85943600000002 78.44220000000001) (-99.86776700000001 78.43748499999998) (-99.865005 78.43441800000005) (-99.821396 78.42747500000007) (-99.80139199999996 78.4208220000001) (-99.78666699999997 78.41470300000009) (-99.77667200000002 78.40859999999998) (-99.761124 78.39637800000014) (-99.75361599999991 78.3897090000001) (-99.74833699999999 78.38360599999999) (-99.74916099999996 78.3724820000001) (-99.77860999999996 78.33221400000002) (-99.79777499999994 78.30859400000003) (-99.79943799999995 78.303314) (-99.79388399999988 78.29721100000006) (-99.77583299999998 78.29248000000013) (-99.74137899999994 78.28997800000002) (-99.67304999999999 78.290817) (-99.62054399999994 78.29026800000003) (-99.55110200000001 78.28610200000014) (-99.529449 78.28248600000006) (-99.51445000000001 78.27720600000004) (-99.47972099999998 78.24914600000005) (-99.447769 78.22415200000006) (-99.42832900000002 78.21165500000006) (-99.41389499999997 78.20526100000001) (-99.39862099999999 78.19999700000005) (-99.18859900000001 78.13304099999999) (-98.98916600000001 78.07304400000004) (-98.96916199999993 78.068329) (-98.94583099999988 78.061646) (-98.94583099999988 78.05581699999999) (-98.96278399999994 78.00915500000008) (-98.97166399999998 77.99775700000009) (-98.98083499999996 77.99220300000007) (-98.99888599999991 77.98692300000005) (-99.02166699999987 77.98165900000004) (-99.08111599999995 77.97192399999994) (-99.09472700000003 77.96638499999995) (-99.09916699999997 77.96081500000008) (-99.09889199999992 77.95498700000013) (-99.0786129999999 77.92553700000008) (-99.06916799999999 77.91360500000008) (-99.04138199999994 77.90081800000007) (-99.02278100000001 77.89444000000015) (-99.01333599999998 77.88832100000013) (-99.02223199999997 77.88247700000011) (-99.23805199999998 77.83776900000004) (-99.39666699999998 77.82415800000007) (-99.525284 77.81359900000001) (-99.54943800000001 77.81248500000004) (-99.71305799999993 77.81080600000001) (-99.853882 77.79220600000008) (-99.85943600000002 77.78692600000005) (-99.87693799999994 77.78137200000003) (-99.90695199999999 77.77859500000011) (-100.21000699999996 77.80998200000005) (-100.32972699999999 77.82527200000004) (-100.49889399999995 77.85165400000011) (-100.60637699999995 77.87997400000012) (-100.75527999999997 77.95555100000007) (-100.78611799999999 77.97415200000012) (-100.81749699999995 77.99914600000005) (-100.82389799999999 78.00444000000005) (-100.83833299999998 78.02276600000005) (-100.83778399999994 78.03498800000006) (-100.83693700000003 78.04026800000008) (-100.83444199999991 78.04414399999996) (-100.82694999999995 78.04887400000001) (-100.853882 78.09664900000001) (-100.87581599999999 78.09999099999993) (-100.99861099999998 78.13165300000009) (-101.00974300000001 78.13665800000012) (-101.02194199999991 78.1477660000001) (-101.01889 78.15693700000008) (-101.01528899999994 78.16276600000009) (-101.01363399999997 78.17359900000008) (-101.01390100000003 78.18470799999994) (-101.02027900000002 78.18969700000008) (-101.035553 78.19609100000014) (-101.06276699999995 78.19859300000002) (-101.089447 78.19802900000008) (-101.23137700000001 78.18386800000007) (-101.28943599999997 78.18248) (-101.31667299999998 78.18498200000005) (-101.34249899999998 78.18942299999998) (-101.41722099999998 78.20887800000014) (-101.432503 78.21527100000009) (-101.43138099999999 78.22137499999997) (-101.43276999999989 78.22747800000008) (-101.45638999999994 78.23220800000013) (-101.47416699999991 78.23471100000012) (-101.49665800000002 78.23719800000015) (-101.833328 78.26499900000005) (-102.1330569999999 78.28276100000011) (-102.15750100000002 78.28248600000006) (-102.18221999999997 78.2810970000001) (-102.29888900000003 78.27331500000014) (-102.34722899999997 78.26776100000012) (-102.38890100000003 78.26081799999997) (-102.47138999999999 78.24887100000001) (-102.50167799999997 78.2458190000001) (-102.561394 78.24108900000004) (-102.59056099999987 78.23970000000008) (-102.61860699999994 78.24136400000009) (-102.64527900000002 78.24552900000009) (-102.73222399999992 78.26388500000007) (-102.781387 78.27609300000012) (-102.79778299999998 78.28221100000007) (-102.80943300000001 78.28831500000013) (-102.8163909999999 78.29443400000014) (-102.81833599999999 78.30026200000003) (-102.81360599999994 78.31080600000013) (-102.80803700000001 78.31693999999993) (-102.74999999999989 78.33831800000007) (-102.736107 78.34248400000013) (-102.686394 78.35054000000002) (-102.6658329999999 78.35859699999997) (-102.67083699999995 78.36303700000002) (-102.69499199999996 78.36775200000005) (-102.72250400000001 78.37136800000007) (-102.77778599999994 78.37637299999994) (-102.80610699999994 78.37776200000013) (-102.83583099999998 78.37637299999994) (-102.88999899999999 78.36914100000007) (-102.92027299999995 78.36581400000011) (-102.93804899999992 78.36469999999997) (-102.96694899999989 78.36415099999999) (-103.02443699999998 78.36526500000014) (-103.13390400000003 78.36914100000007) (-103.16388699999999 78.36692800000009) (-103.21417200000002 78.35664400000007) (-103.23832700000003 78.35054000000002) (-103.26471699999996 78.34526100000005) (-103.38110399999988 78.3316650000001) (-103.41111799999999 78.3294370000001) (-103.49804699999999 78.32777400000003) (-103.52749599999987 78.32638500000002) (-103.58473200000003 78.32193000000001) (-103.67999299999997 78.3119200000001) (-103.751106 78.30137600000006) (-103.78195199999999 78.29609700000003) (-103.80803700000001 78.29054300000007) (-103.829453 78.284988) (-103.87721299999998 78.27221700000007) (-103.89417300000002 78.25221299999993) (-103.89890299999996 78.2458190000001) (-103.910278 78.24108900000004) (-103.93331899999998 78.23719800000015) (-103.96305799999999 78.23359700000009) (-103.99194299999999 78.23304700000006) (-104.02250699999996 78.23414600000007) (-104.04277000000002 78.23692299999999) (-104.06984699999987 78.24217199999998) (-104.08306899999997 78.24414099999996) (-104.110817 78.24664300000006) (-104.19027699999998 78.25166300000012) (-104.30471799999992 78.25221299999993) (-104.36361699999998 78.25443999999999) (-104.41251399999999 78.25776700000011) (-104.46749899999998 78.26527400000009) (-104.49445300000002 78.27053800000004) (-104.82055700000001 78.35582000000011) (-104.99194299999999 78.43775900000009) (-104.99999999999994 78.44386299999996) (-105.05055199999998 78.48803700000008) (-105.05139200000002 78.49443100000013) (-105.04305999999991 78.50582900000012) (-105.01194800000002 78.52165199999996) (-104.95361299999996 78.5374910000001) (-104.86860699999994 78.56053199999997) (-104.83139 78.56999200000001) (-104.806107 78.572495) (-104.69638099999992 78.5788730000001) (-104.66665599999999 78.57971200000009) (-104.39778100000001 78.56999200000001) (-104.35500300000001 78.56637599999993) (-104.287781 78.55525200000005) (-104.26278699999995 78.54942300000005) (-104.21221899999995 78.53997799999996) (-104.1661069999999 78.53276100000005) (-104.14277600000003 78.5294340000001) (-104.08833300000003 78.52415500000012) (-104.03388999999999 78.51998900000007) (-103.93055699999996 78.516098) (-103.87110899999993 78.51805100000013) (-103.78250100000002 78.51971400000002) (-103.7225039999999 78.51721199999997) (-103.66583299999996 78.51249700000011) (-103.58860799999997 78.50387599999999) (-103.53333299999991 78.49636799999996) (-103.52362099999999 78.49609400000003) (-103.51834100000002 78.49693300000001) (-103.465843 78.51748699999996) (-103.37805200000003 78.58610500000003) (-103.39998599999996 78.61554000000012) (-103.44666299999994 78.62136800000007) (-103.50611900000001 78.62136800000007) (-103.74082900000002 78.61970500000012) (-103.98554999999999 78.61692800000003) (-104.01000999999991 78.61720300000007) (-104.04215999999991 78.62068199999993) (-104.04222099999998 78.62997399999995) (-104.03278399999988 78.63526900000005) (-103.98916600000001 78.6461030000001) (-103.85193600000002 78.66943400000014) (-103.82611099999997 78.67192100000005) (-103.77223200000003 78.67109700000009) (-103.65834000000001 78.66499300000004) (-103.62888299999992 78.6644290000001) (-103.53943600000002 78.66499300000004) (-103.50917099999987 78.66638200000006) (-103.48361199999994 78.66914400000013) (-103.49082899999996 78.67498799999998) (-103.50306699999999 78.6810910000001) (-103.51306199999993 78.68748499999992) (-103.52778599999999 78.6994170000001) (-103.525284 78.70526100000012) (-103.51806599999998 78.71081500000008) (-103.48860200000001 78.71582000000012) (-103.439438 78.72026100000005) (-103.41221599999989 78.72026100000005) (-103.38861099999997 78.71693399999992) (-103.35804699999994 78.71859700000005) (-103.33389299999999 78.72248800000011) (-103.31916799999999 78.72859199999999) (-103.31639099999995 78.734421) (-103.31889299999995 78.74026499999997) (-103.41665599999999 78.7788700000001) (-103.43916300000001 78.78498800000006) (-103.46806300000003 78.78749100000005) (-103.63971699999996 78.76527399999998) (-103.66915899999992 78.7605440000001) (-103.71056399999998 78.75000000000006) (-103.796112 78.73580900000007) (-103.70249899999999 78.78831500000001) (-103.69526699999994 78.79386899999997) (-103.698036 78.799713) (-103.72693599999997 78.80220000000008) (-103.86054999999999 78.80609099999998) (-103.87053699999996 78.80636599999997) (-103.886124 78.80442800000003) (-103.9083399999999 78.79914900000006) (-103.90556299999997 78.79414400000002) (-103.89639299999993 78.78471400000012) (-103.89083900000003 78.78027300000002) (-103.89527899999996 78.77499400000005) (-103.90527299999997 78.76887500000004) (-103.92916899999994 78.76499899999993) (-103.96056399999992 78.76138300000008) (-103.99109599999991 78.75888100000003) (-104.02166699999992 78.75749200000001) (-104.04943800000001 78.75637800000004) (-104.07389799999993 78.757767) (-104.170547 78.76582300000007) (-104.19888300000002 78.770264) (-104.21167000000003 78.776093) (-104.21972699999998 78.78221100000013) (-104.21528599999999 78.79359399999998) (-104.16722099999998 78.8163760000001) (-104.13305700000001 78.82748400000008) (-104.04834 78.83888200000007) (-103.98665599999998 78.85026599999998) (-103.86054999999999 78.87664800000005) (-103.83139 78.88693200000012) (-103.82389799999999 78.89248700000002) (-103.82167099999992 78.89833099999998) (-103.82472199999995 78.90331999999995) (-103.86749299999997 78.91609199999999) (-103.96305799999999 78.92997700000006) (-103.98998999999998 78.93275500000004) (-104.00639299999995 78.93553199999997) (-104.029449 78.9416500000001) (-104.04750099999995 78.94775400000009) (-104.05332899999996 78.95220899999993) (-104.053879 78.95748900000001) (-104.05222300000003 78.96138000000008) (-104.04778299999992 78.96665999999993) (-104.048607 78.97109999999998) (-104.05777 78.97415200000006) (-104.08112299999999 78.97943100000003) (-104.12943999999999 78.98580900000002) (-104.17859599999991 78.99026500000014) (-104.20361300000002 78.99165300000004) (-104.23388699999998 78.99192800000003) (-104.265556 78.98858600000011) (-104.45500199999998 78.95609999999999) (-104.47193899999996 78.95054600000003) (-104.51112399999994 78.91026299999999) (-104.53832999999997 78.88192700000002) (-104.56416300000001 78.86470000000003) (-104.57888799999989 78.85859700000009) (-104.78582799999998 78.80664100000001) (-104.81749699999995 78.80220000000008) (-104.87860099999995 78.79803500000008) (-104.909157 78.79664600000007) (-104.96888699999994 78.79721100000012) (-104.98832700000003 78.79832500000009) (-105.01194800000002 78.8035890000001) (-105.02250699999996 78.80998200000005) (-105.02861000000001 78.81526200000008) (-105.02916699999997 78.82165500000008) (-105.028343 78.83276399999994) (-105.01222200000001 78.84471100000007) (-104.83389299999999 78.92665099999999) (-104.68859899999995 78.99359099999998) (-104.678879 78.99971) (-104.674713 79.00499000000008) (-104.68110699999994 79.01666300000011) (-104.69415300000003 79.02276600000005) (-104.70805399999995 79.02777100000009) (-104.737213 79.03193699999997) (-104.90249599999993 79.04971299999994) (-104.98638899999997 79.043045) (-105.01334399999996 79.03831500000013) (-105.09916699999991 79.02388000000002) (-105.12526700000001 79.0211030000001) (-105.15638699999988 79.01943999999997) (-105.39527900000002 79.01165800000007) (-105.42610200000001 79.01110800000004) (-105.48388699999998 79.01304600000014) (-105.51363399999997 79.01609800000006) (-105.54332699999998 79.02026399999994) (-105.5625 79.02442899999994) (-105.58138999999994 79.03054800000001) (-105.59084299999995 79.03442400000006) (-105.59944200000001 79.04026800000008) (-105.60665899999992 79.0519260000001) (-105.628601 79.16137700000007) (-105.62053699999996 79.1727600000001) (-105.48277300000001 79.30636600000008) (-105.45973199999997 79.32415800000012) (-105.43998699999997 79.329163) (-105.40862299999992 79.32887299999999) (-105.38305699999995 79.32693500000005) (-105.33277899999996 79.31944300000009) (-105.19721999999996 79.29971300000011) (-105.16111799999999 79.29748500000011) (-105.12721299999998 79.29748500000011) (-105.108612 79.29887400000013) (-105.01611300000002 79.31053199999997) (-104.95472699999993 79.31526200000002) (-104.85916099999997 79.31915300000009) (-104.74276700000001 79.322495) (-104.583328 79.3294370000001) (-104.54860699999989 79.33137500000004) (-104.49082900000002 79.339157) (-104.46083099999998 79.34220900000008) (-104.181671 79.35887100000008) (-104.00723299999999 79.36775200000005) (-103.97778299999999 79.36886600000003) (-103.9491579999999 79.36804200000006) (-103.83500699999996 79.36442599999998) (-103.7225039999999 79.35693400000002) (-103.69526699999994 79.35220300000009) (-103.62053700000001 79.33055100000007) (-103.59388699999988 79.32582100000002)) ((-99.47166399999998 80.109711) (-99.43666100000002 80.10720800000001) (-99.40472399999993 80.10803199999998) (-99.29804999999999 80.11886600000003) (-99.13667299999992 80.13304099999993) (-99.11054999999988 80.13053900000006) (-99.08168 80.12469500000003) (-98.86888099999999 80.07777400000003) (-98.85665899999992 80.07249500000006) (-98.774719 80.01527400000009) (-98.70584100000002 79.96582000000006) (-98.64416499999987 79.80026199999992) (-98.64416499999987 79.79414400000002) (-98.64862099999988 79.78359999999992) (-98.67304999999999 79.77192700000012) (-98.77917500000001 79.70220899999998) (-98.83000199999992 79.6644290000001) (-98.86805700000002 79.70082100000008) (-98.93611099999998 79.71971100000002) (-98.96777299999991 79.72415200000012) (-99.13999899999993 79.74081400000011) (-99.24305699999996 79.74859600000008) (-99.27362099999993 79.75138900000002) (-99.30139199999991 79.75471500000009) (-99.31723 79.75860599999999) (-99.32444800000002 79.76249700000005) (-99.32556199999999 79.76748700000007) (-99.32250999999991 79.77137800000014) (-99.31304899999992 79.776093) (-99.30471799999992 79.78221100000013) (-99.30277999999998 79.78749099999999) (-99.29750100000001 79.81275900000009) (-99.295837 79.83332800000005) (-99.29638699999992 79.83915700000006) (-99.30221599999987 79.84526100000011) (-99.31582600000002 79.84860200000014) (-99.36888099999999 79.8577580000001) (-99.55665599999992 79.88888500000002) (-99.58444199999997 79.8919370000001) (-99.61416600000001 79.89332600000012) (-99.64778100000001 79.89305100000007) (-99.67971799999998 79.88804600000003) (-99.70083599999987 79.88275099999998) (-99.73222399999997 79.87886000000009) (-99.80082700000003 79.87664800000005) (-100.00556899999998 79.8744200000001) (-100.03582799999992 79.87469500000009) (-100.07028199999996 79.87692300000003) (-100.097778 79.88108800000003) (-100.12110899999999 79.88665800000012) (-100.14389 79.89305100000007) (-100.15862299999998 79.89860500000009) (-100.17748999999998 79.90998800000011) (-100.17832900000002 79.91581700000012) (-100.193329 80.03387500000008) (-100.08167999999989 80.084427) (-100.06555200000003 80.08998099999997) (-100.02362099999993 80.09971600000006) (-99.827225 80.14359999999999) (-99.79527299999995 80.1477660000001) (-99.75917099999998 80.149719) (-99.726944 80.15054299999997) (-99.62554899999992 80.14888000000008) (-99.59999099999999 80.145264) (-99.59388699999988 80.13916) (-99.57112099999995 80.1327510000001) (-99.47166399999998 80.109711)) ((-99.15556300000003 80.17469799999998) (-99.12721299999993 80.168045) (-99.11389199999996 80.16387900000012) (-99.13806199999999 80.16249100000005) (-99.160553 80.16304000000014) (-99.18499800000001 80.167755) (-99.2519529999999 80.17303500000008) (-99.27749599999999 80.17303500000008) (-99.31361399999997 80.17109700000015) (-99.34138499999995 80.1660920000001) (-99.33306900000002 80.15942400000012) (-99.30360399999995 80.1538700000001) (-99.30555699999991 80.1483310000001) (-99.34249899999992 80.1455380000001) (-99.37527499999993 80.14721700000013) (-99.40055799999993 80.15081800000002) (-99.41805999999997 80.15721100000013) (-99.41833500000001 80.16304000000014) (-99.41332999999997 80.16886899999997) (-99.38694799999996 80.17886400000009) (-99.36694299999994 80.18220500000012) (-99.2391659999999 80.18386800000007) (-99.21194499999996 80.18220500000012) (-99.15556300000003 80.17469799999998)) ((-95.0308379999999 80.67025800000005) (-94.96945199999993 80.64027400000003) (-94.970551 80.635269) (-94.98138399999999 80.63192700000008) (-95.006958 80.62664800000005) (-95.19027699999992 80.60887100000002) (-95.22610499999996 80.60914600000001) (-95.45361300000002 80.62942499999997) (-95.61111499999998 80.64804099999998) (-95.67694099999994 80.65331999999995) (-95.71194500000001 80.65443399999998) (-95.74916099999996 80.65386999999998) (-95.78805499999993 80.65220599999998) (-95.82362399999994 80.64860499999992) (-95.86332699999997 80.64582800000005) (-96.061935 80.65664700000008) (-96.11805699999996 80.66053799999997) (-96.14916999999997 80.66470300000015) (-96.13944999999995 80.66970800000001) (-96.07667500000002 80.683044) (-96.02833599999997 80.68719500000009) (-96.00611900000001 80.68803400000002) (-95.491379 80.69999700000005) (-95.42443800000001 80.69970700000005) (-95.20056199999993 80.6974790000001) (-95.16694599999994 80.69525099999998) (-95.12887599999993 80.69192500000008) (-95.09666399999998 80.688583) (-95.06249999999994 80.68248000000006) (-95.06527699999992 80.68054200000012) (-95.04583699999995 80.67692600000004) (-95.0308379999999 80.67025800000005)) ((-92.72778299999993 81.30554200000006) (-92.53028899999998 81.28498800000011) (-92.21305799999999 81.24552900000003) (-92.148056 81.23637400000013) (-92.12470999999994 81.2327580000001) (-92.05248999999992 81.2185970000001) (-91.95584100000002 81.19636500000001) (-91.858047 81.167755) (-91.781677 81.09027100000014) (-91.78388999999993 81.08360299999998) (-91.79750100000001 81.08166500000004) (-91.83250399999997 81.08027600000008) (-91.88806199999993 81.08194000000009) (-91.914444 81.07804900000002) (-91.91389499999997 81.07499700000011) (-91.908615 81.07054099999999) (-91.89334100000002 81.06498699999997) (-91.86582899999996 81.05859400000003) (-91.76722699999993 81.04914899999994) (-91.72222899999997 81.04220599999996) (-91.53889500000002 80.98165899999998) (-91.52555799999999 80.97499099999999) (-91.52278100000001 80.96276900000004) (-91.53167699999995 80.951096) (-91.527222 80.93969700000008) (-91.51777600000003 80.93275499999999) (-91.481674 80.91943400000002) (-91.321121 80.88275099999998) (-91.306107 80.87553400000002) (-91.152222 80.78553800000003) (-91.15499899999998 80.78054800000001) (-91.14916999999997 80.770264) (-91.14056399999998 80.7647090000001) (-91.12165800000002 80.75471500000003) (-91.09944199999995 80.74803200000008) (-91.03472899999997 80.73748800000004) (-90.97277799999995 80.73027000000002) (-90.90527299999997 80.724426) (-90.777222 80.71775800000006) (-90.75418100000002 80.71499599999993) (-90.712784 80.70555100000007) (-90.66471899999999 80.684708) (-90.65249599999993 80.67804000000001) (-90.603882 80.65138200000001) (-90.59361299999995 80.64526400000011) (-90.59306300000003 80.64082300000001) (-90.60194399999995 80.63610799999998) (-90.61582900000002 80.63026400000012) (-90.67805499999997 80.61554000000007) (-90.71583599999991 80.605545) (-90.74249299999991 80.59471100000007) (-90.76306199999999 80.5836030000001) (-90.77166699999998 80.57748400000008) (-90.77278099999995 80.57193000000007) (-90.76640299999991 80.56553600000007) (-90.74137899999994 80.56219500000003) (-90.70611600000001 80.56137100000007) (-90.60722399999992 80.56137100000007) (-90.58306900000002 80.56137100000007) (-90.41805999999991 80.55220000000008) (-90.23889199999996 80.55053699999996) (-90.20333900000003 80.549713) (-90.17721599999999 80.54887400000007) (-90.04638699999992 80.54165600000005) (-90.01640299999997 80.53803999999997) (-90 80.53459199999998) (-89.98999000000003 80.532486) (-89.96139499999998 80.520264) (-89.95556599999998 80.51554899999996) (-89.93859899999995 80.508331) (-89.84056099999998 80.48136900000009) (-89.81639100000001 80.4749910000001) (-89.79028299999993 80.46943700000008) (-89.76251199999996 80.46499599999999) (-89.75111400000003 80.46443200000004) (-89.78416399999992 80.50082400000002) (-89.74833699999988 80.532761) (-89.58694500000001 80.5455320000001) (-89.546112 80.54748500000005) (-89.48277300000001 80.544983) (-89.4472199999999 80.54248000000001) (-89.354172 80.53498800000006) (-89.32640099999992 80.53193700000003) (-89.27278100000001 80.52331500000003) (-89.24499500000002 80.51721200000009) (-89.05915800000002 80.46138000000013) (-89.08750899999995 80.43858300000005) (-89.11527999999993 80.43386800000002) (-89.17610199999996 80.42665100000005) (-89.19833399999993 80.42164600000001) (-89.20944199999991 80.41775499999994) (-89.23500100000001 80.40803500000004) (-89.25 80.40220600000004) (-89.25723299999999 80.39694200000008) (-89.25361599999997 80.39276100000001) (-89.237213 80.388596) (-89.21694899999994 80.38970900000004) (-89.18971299999993 80.39414999999997) (-89.16749600000003 80.39915500000001) (-89.136124 80.40248100000008) (-89.09973100000002 80.40248100000008) (-89.08332799999988 80.39833100000004) (-89.07583599999992 80.39305100000001) (-89.10499599999991 80.33943199999999) (-89.11416599999995 80.33332799999994) (-89.12527499999993 80.32777399999998) (-89.14361600000001 80.32331800000003) (-89.16915899999998 80.31805400000007) (-89.2202759999999 80.30914300000012) (-89.24194299999994 80.3041530000001) (-89.25666799999999 80.29859900000008) (-89.26390099999998 80.29332000000011) (-89.26222199999995 80.28665200000012) (-89.25140399999998 80.27832000000012) (-89.180496 80.23817400000007) (-89.11389200000002 80.20803800000004) (-89.09222399999999 80.20082100000013) (-89.07278400000001 80.19552600000009) (-88.77667200000002 80.13136300000002) (-88.75 80.12664799999999) (-88.53472899999991 80.09887700000013) (-88.49888599999997 80.09887700000013) (-88.44193999999993 80.10054000000002) (-88.41471899999999 80.10498000000007) (-88.414444 80.10803199999998) (-88.36305199999993 80.12442000000004) (-88.23527499999989 80.10247799999996) (-88.16194199999995 80.09165999999999) (-88.145554 80.09387200000003) (-88.148346 80.09803799999997) (-88.26139799999993 80.18803400000013) (-88.27305599999994 80.19552600000009) (-88.29415899999998 80.20138500000007) (-88.35082999999997 80.20887800000008) (-88.422775 80.21054100000003) (-88.47999600000003 80.21360800000014) (-88.50695799999994 80.218323) (-88.59527600000001 80.2369230000001) (-88.61805700000002 80.24331699999999) (-88.63027999999991 80.249146) (-88.66139199999992 80.27249100000012) (-88.68443299999996 80.35859700000015) (-88.68582200000003 80.36554000000012) (-88.685272 80.37164300000006) (-88.68305999999995 80.37692300000015) (-88.67721599999993 80.38275100000004) (-88.64889499999992 80.3936000000001) (-88.61527999999993 80.40387000000004) (-88.51028400000001 80.42886400000003) (-88.48777799999999 80.43386800000002) (-88.46333300000003 80.43803400000007) (-88.420547 80.44220000000001) (-88.383896 80.44358800000009) (-88.30833399999995 80.4427490000001) (-88.11054999999993 80.4327550000001) (-87.91888399999999 80.42109700000009) (-87.718613 80.41110200000014) (-87.68388400000003 80.41026300000004) (-87.6663969999999 80.40387000000004) (-87.63612399999994 80.36692800000003) (-87.60749800000002 80.32415800000007) (-87.56388900000002 80.23332200000004) (-87.561935 80.18359399999991) (-87.56277499999993 80.17915300000004) (-87.57223499999992 80.17608600000011) (-87.67805499999992 80.15637199999998) (-87.72138999999999 80.15304600000013) (-87.93916299999995 80.14387500000004) (-87.96665999999999 80.13943499999999) (-88.04888900000003 80.125809) (-88.06555200000003 80.12081899999998) (-88.06054699999999 80.11747700000006) (-87.95666499999999 80.06971700000003) (-87.93804899999998 80.06442300000009) (-87.89138799999995 80.05554200000012) (-87.86000100000001 80.05358899999999) (-87.83612099999993 80.0577550000001) (-87.823059 80.06248499999992) (-87.76306199999993 80.07110600000004) (-87.72000099999991 80.0747070000001) (-87.68055700000002 80.07638500000002) (-87.64167800000001 80.07638500000002) (-87.365005 80.072769) (-87.29998799999998 80.06944300000009) (-87.27555799999988 80.06693999999993) (-87.25862099999995 80.06387300000006) (-87.23332199999999 80.05748000000006) (-87.21528599999999 80.05053700000008) (-87.04333499999996 79.9649960000001) (-87.09361299999995 79.92942800000009) (-87.314438 79.86608899999999) (-87.33612099999993 79.86137400000013) (-87.36833200000001 79.85720800000007) (-87.44665500000002 79.8560940000001) (-87.4719389999999 79.85247800000002) (-87.48306299999996 79.84721400000006) (-87.48944099999994 79.84137000000004) (-87.48554999999988 79.834991) (-87.46362299999998 79.83137499999992) (-87.43916299999995 79.83194000000015) (-87.412781 79.83332800000005) (-87.33860800000002 79.84082000000001) (-87.19082600000002 79.86608899999999) (-87.16555800000003 79.87109400000003) (-87.14695699999993 79.87553400000007) (-87.07972699999993 79.89610300000004) (-87.05139200000002 79.90664700000008) (-87.02471899999995 79.91609199999994) (-87.00306699999999 79.91775500000006) (-86.98582499999998 79.91775500000006) (-86.97389199999986 79.91638199999994) (-86.96139499999998 79.90998800000011) (-86.95777900000002 79.90359499999994) (-86.960556 79.89137299999999) (-87.05555700000002 79.73193400000008) (-87.13417099999992 79.64526400000011) (-87.14416499999993 79.63777199999998) (-87.15499899999998 79.6336060000001) (-87.17304999999999 79.62914999999998) (-87.25862099999995 79.61026000000004) (-87.34445199999993 79.59637499999997) (-87.42555199999998 79.57916300000011) (-87.44166599999994 79.57388300000002) (-87.44804399999998 79.56832900000006) (-87.46250900000001 79.53471399999995) (-87.44193999999999 79.52638200000001) (-87.40666199999998 79.51582300000013) (-87.39056399999993 79.51110800000009) (-87.36639400000001 79.50637800000004) (-87.34527600000001 79.50305200000003) (-87.30999800000001 79.50221300000004) (-87.28056300000003 79.50694300000009) (-87.26278699999995 79.51138300000008) (-87.24833699999999 79.5169370000001) (-87.19055200000003 79.54359399999998) (-87.18276999999995 79.54887400000007) (-87.17999299999997 79.55415300000004) (-87.16888399999999 79.5663760000001) (-87.16111799999993 79.57165500000008) (-87.07667500000002 79.58749399999999) (-87.02555799999999 79.5955350000001) (-87.00111399999997 79.59887700000002) (-86.96665999999993 79.60165400000011) (-86.93249500000002 79.60165400000011) (-86.84138499999995 79.59304800000001) (-86.823624 79.58776900000004) (-86.81973299999999 79.576096) (-86.82389799999999 79.5660860000001) (-86.839722 79.55581700000005) (-86.84638999999999 79.54998800000004) (-86.837784 79.54332000000005) (-86.816666 79.53970300000015) (-86.78999299999998 79.53887899999995) (-86.777222 79.54220600000008) (-86.69499199999996 79.56749000000008) (-86.693329 79.57360800000004) (-86.71055599999994 79.58720399999999) (-86.72389199999998 79.59443700000003) (-86.74638399999998 79.59999099999999) (-86.80248999999998 79.60609399999993) (-86.81304899999992 79.61192299999999) (-86.80638099999987 79.617752) (-86.79527299999995 79.62164300000006) (-86.77694699999995 79.62747200000007) (-86.76222200000001 79.63165300000014) (-86.68721 79.64526400000011) (-86.64083899999991 79.65332000000001) (-86.61305199999993 79.655823) (-86.57501200000002 79.65721100000007) (-86.547775 79.65637200000009) (-86.33416699999992 79.64553800000004) (-86.30277999999998 79.64276100000012) (-86.27944899999994 79.64027400000003) (-86.258896 79.63499500000006) (-86.10916099999997 79.595261) (-86.046112 79.56887799999998) (-86.04222099999993 79.56553600000007) (-86.02806099999992 79.4747010000001) (-86.05471799999998 79.47053500000004) (-86.160553 79.46360800000014) (-86.16749600000003 79.45776400000011) (-86.136124 79.44470200000006) (-86.120834 79.43997200000007) (-86.09889199999992 79.43580600000013) (-86.07084700000001 79.43414300000006) (-86.03500400000001 79.43637100000001) (-86.01194799999996 79.44026200000008) (-85.99055499999997 79.44497700000011) (-85.97582999999992 79.44914200000011) (-85.96417199999996 79.45443699999998) (-85.90110800000002 79.49359100000004) (-85.88722200000001 79.50526400000007) (-85.88528399999996 79.51138300000008) (-85.89334100000002 79.52331500000008) (-85.89916999999997 79.53637700000007) (-85.89666699999998 79.54914900000011) (-85.89334100000002 79.55470300000007) (-85.88778699999995 79.56109600000002) (-85.84750400000001 79.59637499999997) (-85.84028599999999 79.60192899999993) (-85.82833900000003 79.60748300000012) (-85.781387 79.61554000000012) (-85.743607 79.61692800000003) (-85.68194599999993 79.61331200000012) (-85.63917500000002 79.60415599999999) (-85.62388599999991 79.59915200000006) (-85.591385 79.58526600000005) (-85.53111299999995 79.55941800000011) (-85.48500099999995 79.51860000000005) (-85.402222 79.47360200000014) (-85.30665599999992 79.428314) (-85.27806099999998 79.41554300000013) (-85.15055799999993 79.38220200000012) (-85.13027999999997 79.3785860000001) (-85.03971899999988 79.35081500000001) (-84.93249499999996 79.30026200000003) (-84.92027300000001 79.29332000000011) (-84.90417500000001 79.27665700000006) (-84.90417500000001 79.26776100000012) (-84.90972899999986 79.26304600000009) (-84.93110699999994 79.25833100000006) (-85.09999099999993 79.2394260000001) (-85.15888999999993 79.23193399999997) (-85.21139499999987 79.22331199999996) (-85.23277299999995 79.21887200000015) (-85.24804699999987 79.21304299999997) (-85.26000999999991 79.207764) (-85.27194199999997 79.19720500000011) (-85.28056300000003 79.19220000000007) (-85.29722600000002 79.18719500000003) (-85.591385 79.15415999999999) (-85.77999899999992 79.13108800000003) (-85.87721299999998 79.12164299999995) (-86.00389100000001 79.11137400000013) (-86.15888999999999 79.10331699999995) (-86.27139299999999 79.09553499999998) (-86.34167499999995 79.08831800000007) (-86.42250100000001 79.07554600000009) (-86.48554999999999 79.06330900000012) (-86.55082700000003 79.04887400000001) (-86.55999799999995 79.04443400000014) (-86.55555700000002 79.04248000000013) (-86.55082700000003 79.03553800000003) (-86.55249000000003 79.02943400000004) (-86.55999799999995 79.01220699999999) (-86.58778399999994 78.98359700000015) (-86.59889199999992 78.97831700000006) (-86.61444099999994 78.97331200000002) (-86.67694099999989 78.95971700000013) (-86.70222499999994 78.95526100000006) (-86.74137899999994 78.95193499999999) (-86.765015 78.95359800000011) (-86.78500400000001 78.95721399999996) (-86.808334 78.96720900000008) (-86.90333599999985 79.00943000000007) (-86.91639699999996 79.01666300000011) (-86.92639199999996 79.03581200000013) (-86.93055699999996 79.04776000000004) (-86.94055199999997 79.05358900000004) (-86.94915800000001 79.05720500000007) (-86.96528599999994 79.05748000000011) (-86.98332199999993 79.05664100000013) (-86.98998999999998 79.04776000000004) (-87.004456 78.98719800000003) (-87.00250199999999 78.98136900000003) (-86.98693799999995 78.94970700000005) (-86.97999599999997 78.9433140000001) (-86.96694899999994 78.93637100000012) (-86.95083599999998 78.92942800000009) (-86.94276400000001 78.92248500000011) (-86.93777499999999 78.91693099999992) (-86.95249899999993 78.90664700000008) (-86.97084000000001 78.89610300000004) (-86.99749800000001 78.88247700000005) (-87.02166699999992 78.87303200000002) (-87.05249000000003 78.86276200000009) (-87.17944299999994 78.83055100000001) (-87.28277599999996 78.81025700000004) (-87.32806399999998 78.79470800000013) (-87.353882 78.78414900000007) (-87.52999899999992 78.6869200000001) (-87.53277600000001 78.66998300000012) (-87.54305999999997 78.66470300000003) (-87.57278399999996 78.65443399999998) (-87.591949 78.64971899999995) (-87.61582900000002 78.64526400000011) (-87.66305499999999 78.64248700000002) (-87.68443299999996 78.64498900000012) (-87.87277199999994 78.69497700000005) (-87.93777499999987 78.73831200000006) (-87.95361299999996 78.74971000000005) (-87.95916699999998 78.75526400000007) (-87.99388099999993 78.79525799999999) (-88.00334199999992 78.80720500000012) (-88.00140399999998 78.82415800000001) (-87.985275 78.95721399999996) (-87.98167399999988 78.96054100000009) (-87.96833800000002 78.96638500000012) (-87.89416499999999 78.97970600000008) (-87.83361799999994 78.99220300000007) (-87.81361400000003 78.99693300000007) (-87.79444899999999 79.00694300000004) (-87.72888199999994 79.06944299999998) (-87.72471599999994 79.07582100000008) (-87.73388699999998 79.08110000000005) (-87.74610899999993 79.08610499999992) (-87.752792 79.08554099999998) (-87.77278099999995 79.08082599999994) (-87.80638099999993 79.06999200000007) (-87.84916699999997 79.05497700000012) (-87.87277199999994 79.0452580000001) (-87.883331 79.03997800000008) (-87.894455 79.02832000000001) (-87.890289 79.02165200000007) (-87.89999399999999 79.01110800000004) (-87.92944299999999 79.00694300000004) (-88.000565 79.00360100000006) (-88.03277600000001 79.0038760000001) (-88.06138599999991 79.005829) (-88.09388699999994 79.00444000000005) (-88.16250600000001 78.99054000000012) (-88.20249899999993 78.97637900000012) (-88.21305799999999 78.96609500000011) (-88.21528599999994 78.96081500000003) (-88.21665999999993 78.94831800000003) (-88.22972099999998 78.80220000000008) (-88.224716 78.78915399999994) (-88.22222899999997 78.78332499999993) (-88.21806300000003 78.77693199999999) (-88.20111099999997 78.75721699999997) (-88.13221699999997 78.68081699999999) (-88.04415899999992 78.65860000000009) (-88.02416999999997 78.65664700000013) (-88.01083399999993 78.65277100000009) (-87.99305699999996 78.64526400000011) (-87.98277299999995 78.6394350000001) (-87.908615 78.59693900000008) (-87.89472999999998 78.58471700000013) (-87.89083900000003 78.57832300000007) (-87.89695699999987 78.56637599999993) (-87.90833999999995 78.54859900000008) (-87.98472599999997 78.49220299999996) (-88.01194800000002 78.48136900000009) (-88.05583200000001 78.47276299999999) (-88.20527600000003 78.45248400000008) (-88.23416099999997 78.45359800000006) (-88.24916099999996 78.45664999999997) (-88.38945000000001 78.52137800000003) (-88.5594329999999 78.60415600000005) (-88.57472199999995 78.60720800000013) (-88.723053 78.61581400000006) (-88.78860500000002 78.61276199999998) (-88.80416899999994 78.60971100000012) (-88.74610899999993 78.53581200000008) (-88.72500600000001 78.52415500000012) (-88.65916400000003 78.49108899999999) (-88.59527600000001 78.459991) (-88.5625 78.44470200000012) (-88.55221599999999 78.43748499999998) (-88.54388399999999 78.42608600000011) (-88.535553 78.41304000000014) (-88.53611799999993 78.40693700000003) (-88.53805499999999 78.40138200000013) (-88.541382 78.39665200000007) (-88.55305499999992 78.3855440000001) (-88.56111099999998 78.37942500000008) (-88.57055699999995 78.37387100000007) (-88.61471599999999 78.34832799999998) (-88.66332999999997 78.32138100000003) (-88.67250100000001 78.31608599999998) (-88.70417799999996 78.2711030000001) (-88.710556 78.26110799999998) (-88.71389799999986 78.25471500000003) (-88.71556099999998 78.24914600000005) (-88.71611000000001 78.243042) (-88.72111499999994 78.23109399999998) (-88.72610500000002 78.22526600000003) (-88.75140399999998 78.19693000000012) (-88.77667200000002 78.17608599999994) (-88.78443900000002 78.169983) (-88.79333499999996 78.16442900000004) (-88.81777999999991 78.1544340000001) (-88.84777799999995 78.15138200000001) (-88.97888199999994 78.16581700000012) (-89.00279199999994 78.16943400000008) (-89.06500199999988 78.18441800000011) (-89.07972699999999 78.18914799999999) (-89.11582899999996 78.20082100000002) (-89.22749299999998 78.24525499999999) (-89.25917099999992 78.26277199999998) (-89.26501499999995 78.268326) (-89.275284 78.28193699999997) (-89.35388199999989 78.33970599999998) (-89.364441 78.34414700000008) (-89.381104 78.3477630000001) (-89.51834100000002 78.39221200000009) (-89.67666599999995 78.44747899999999) (-89.803879 78.49443100000013) (-89.819458 78.50054900000009) (-89.89111300000002 78.55276499999997) (-89.92166099999997 78.57804899999996) (-89.945831 78.599426) (-89.95695499999988 78.605255) (-89.98055999999997 78.60971100000012) (-90.01472499999988 78.60942100000011) (-90.05139199999996 78.60582000000005) (-90.08833299999998 78.5958250000001) (-90.09249899999998 78.58998099999991) (-90.09973100000002 78.55525200000005) (-90.10082999999997 78.54971300000005) (-90.06471299999993 78.51332100000008) (-89.98500099999995 78.43609600000002) (-89.960556 78.43248000000011) (-89.93611099999998 78.43026700000001) (-89.91000400000001 78.42608600000011) (-89.86999500000002 78.417755) (-89.80972300000002 78.40470900000008) (-89.785278 78.39804100000009) (-89.77444500000001 78.39387499999998) (-89.74804699999993 78.38026400000001) (-89.61555499999986 78.30026200000003) (-89.60610999999994 78.29332) (-89.46167000000003 78.17553700000002) (-89.45584100000002 78.169983) (-89.45249899999999 78.16249100000005) (-89.46167000000003 78.15859999999998) (-89.47666899999996 78.15386999999998) (-89.50778199999996 78.1499940000001) (-89.53028899999998 78.14833099999998) (-89.54943799999995 78.14860500000009) (-89.56304899999992 78.14971900000006) (-89.59584000000001 78.15693700000008) (-89.61860699999994 78.16304000000002) (-89.63194299999998 78.16859400000004) (-89.63972499999994 78.17330900000007) (-89.64416499999999 78.17970300000007) (-89.646118 78.18470799999994) (-89.646118 78.19720500000011) (-89.64805599999994 78.2022090000001) (-89.65417499999995 78.20942700000012) (-89.65722699999998 78.21220399999999) (-89.67388899999997 78.21720900000008) (-89.70083599999998 78.21914700000002) (-89.74888599999991 78.21720900000008) (-89.78332499999993 78.21443199999999) (-89.847778 78.21304299999997) (-89.88694800000002 78.21527100000009) (-89.91111799999999 78.21887200000015) (-89.929169 78.22303800000009) (-89.95527600000003 78.2333220000001) (-89.96028100000001 78.23831199999995) (-89.96194500000001 78.24359099999992) (-89.95944199999997 78.25443999999999) (-89.95500199999992 78.26054400000004) (-89.98028599999992 78.27777100000003) (-90.02333099999998 78.29803500000003) (-90.060272 78.30802900000003) (-90.17250099999995 78.33110000000005) (-90.18611099999993 78.333328) (-90.21362299999998 78.33526599999993) (-90.24249299999985 78.33610500000009) (-90.27416999999997 78.33499100000012) (-90.34056099999998 78.33110000000005) (-90.41139199999992 78.32443200000006) (-90.478882 78.32110600000004) (-90.50778199999996 78.32054099999999) (-90.59445199999999 78.32276899999994) (-90.62026999999995 78.32554600000003) (-90.66777000000002 78.32748399999997) (-90.729446 78.32609600000006) (-90.74444599999998 78.32304399999998) (-90.74861099999998 78.32026700000006) (-90.73721299999994 78.31442300000003) (-90.71556099999992 78.309143) (-90.62277199999994 78.29109199999999) (-90.598343 78.28749099999993) (-90.54499800000002 78.28305100000011) (-90.46166999999997 78.27887000000004) (-90.41027799999995 78.27665700000006) (-90.36332700000003 78.25694299999998) (-90.27389499999998 78.19220000000007) (-90.26750199999992 78.18664600000011) (-90.26889 78.18275500000004) (-90.27278100000001 78.17692599999998) (-90.29388399999999 78.15998800000011) (-90.30110200000001 78.15525800000006) (-90.33029199999999 78.14610300000004) (-90.35388199999994 78.14332600000012) (-90.43388400000003 78.13638300000014) (-90.465012 78.13526899999994) (-90.49777199999994 78.134995) (-90.62443499999995 78.13443000000001) (-90.71112099999999 78.13581800000009) (-90.96722399999999 78.14276100000006) (-91.02139299999999 78.14610300000004) (-91.03971899999999 78.1502690000001) (-91.23838799999999 78.16659499999997) (-91.32667499999997 78.16859400000004) (-91.48971599999987 78.17692599999998) (-91.53999299999992 78.18136600000003) (-91.61389199999996 78.19192500000008) (-91.6619419999999 78.19970700000005) (-91.70722999999998 78.20942700000012) (-91.72471599999994 78.21470600000009) (-91.80777 78.23275799999999) (-91.83139 78.23692299999999) (-91.85749799999996 78.23970000000008) (-91.8875119999999 78.23942599999992) (-91.92027300000001 78.23719800000015) (-91.94638099999997 78.23275799999999) (-91.96333299999998 78.22776800000008) (-91.97444199999995 78.22331200000002) (-91.98611499999998 78.21470600000009) (-92.00306699999999 78.20971700000013) (-92.031113 78.20748899999995) (-92.058334 78.20887800000014) (-92.083328 78.21249400000005) (-92.10555999999997 78.217758) (-92.30833399999995 78.278595) (-92.537216 78.31053199999997) (-92.55665599999998 78.31469699999997) (-92.589447 78.32360800000009) (-92.94943199999989 78.43193100000002) (-92.96665999999999 78.44358799999992) (-92.98249800000002 78.45443699999998) (-92.98721299999994 78.46026599999999) (-92.98750299999995 78.46554600000007) (-92.97888199999994 78.48332200000004) (-92.96665999999999 78.48858600000005) (-92.86389199999996 78.50526400000012) (-92.84861799999999 78.50555400000013) (-92.69055199999997 78.49581900000004) (-92.64639299999993 78.48748799999993) (-92.62193300000001 78.48719800000009) (-92.60055499999999 78.48803700000008) (-92.57667500000002 78.49054000000007) (-92.52027900000002 78.49859600000013) (-92.493607 78.50332599999996) (-92.48721299999994 78.50776700000006) (-92.48777799999999 78.50943000000001) (-92.497772 78.51304600000003) (-92.56332399999997 78.52053799999999) (-92.52944899999994 78.52137800000003) (-92.24722300000002 78.52777100000003) (-92.21665999999993 78.52804600000002) (-92.07084700000001 78.52554300000003) (-92.01112399999994 78.526657) (-91.94999699999994 78.53027300000008) (-91.91861 78.534424) (-91.72639500000002 78.53054800000007) (-91.68249500000002 78.52609300000006) (-91.66082799999998 78.52693200000004) (-91.64611799999994 78.52998400000013) (-91.63612399999994 78.53360000000004) (-91.63249200000001 78.53942900000004) (-91.63528400000001 78.54609700000003) (-91.64750699999996 78.56025700000009) (-91.65750099999997 78.563873) (-91.67027299999995 78.56581100000011) (-91.945267 78.57222000000013) (-92.15139799999992 78.57943700000004) (-92.35194399999995 78.586929) (-92.55722000000003 78.59471100000013) (-92.58555599999994 78.59609999999998) (-92.60472099999998 78.59860200000003) (-92.697769 78.6141510000001) (-92.73306300000002 78.62359600000002) (-92.75778199999996 78.62803600000001) (-92.806107 78.6336060000001) (-92.828888 78.63192700000008) (-92.90722700000003 78.62303200000008) (-92.93554699999999 78.61886600000014) (-92.93582199999997 78.61499000000009) (-92.941666 78.60859700000015) (-92.95584100000002 78.6038670000001) (-92.99166899999994 78.599716) (-93.176941 78.58638000000008) (-93.210556 78.58415200000007) (-93.24249299999997 78.582764) (-93.271118 78.58415200000007) (-93.28443900000002 78.58749400000005) (-93.43415799999997 78.6336060000001) (-93.77139299999999 78.75054900000003) (-93.81361399999997 78.76582300000007) (-93.80277999999993 78.770264) (-93.68415800000002 78.782486) (-93.650284 78.78471400000012) (-93.589722 78.78359999999998) (-93.53443899999996 78.7788700000001) (-93.429169 78.76721200000009) (-93.37638899999996 78.7605440000001) (-93.35139499999997 78.75610400000011) (-93.29972800000002 78.74859600000008) (-93.24722300000002 78.74192800000009) (-93.19055199999997 78.73637400000013) (-93.16332999999997 78.73553500000014) (-93.09973100000002 78.73719800000009) (-93.05499299999997 78.73997499999996) (-93.04222099999987 78.74525500000004) (-93.039963 78.75000000000006) (-93.03944399999995 78.75109900000007) (-93.03527799999995 78.761932) (-93.03778099999994 78.76582300000007) (-93.11888099999999 78.77249100000006) (-93.17027300000001 78.77998400000007) (-93.27194199999997 78.79609700000015) (-93.34638999999993 78.80998200000005) (-93.36915599999998 78.81608600000004) (-93.391388 78.82083100000011) (-93.41639700000002 78.824997) (-93.56054699999993 78.83332800000011) (-93.589722 78.83471700000007) (-93.650284 78.83554100000003) (-93.74694799999997 78.834991) (-93.77972399999999 78.8336030000001) (-93.84277299999997 78.83248900000012) (-93.87470999999994 78.8336030000001) (-93.89250199999998 78.83804299999991) (-93.902222 78.84248400000001) (-93.906387 78.849152) (-93.91749599999997 78.86053500000003) (-93.93943799999994 78.871643) (-93.95944199999997 78.878311) (-94.05249000000003 78.90248100000002) (-94.09584000000001 78.91110200000008) (-94.25306699999999 78.95694000000003) (-94.26972999999998 78.96220400000004) (-94.28222700000003 78.96887200000003) (-94.28750600000001 78.98109399999998) (-94.28860500000002 78.98637400000007) (-94.24137899999988 78.99664300000006) (-94.00527999999991 79.02970900000003) (-93.91027799999995 79.04193099999998) (-93.87805199999997 79.04248000000013) (-93.85472099999993 79.04054300000007) (-93.81388900000002 79.03553800000003) (-93.78416400000003 79.03804000000014) (-93.60194399999989 79.06832899999995) (-93.472778 79.10887100000014) (-93.45556599999998 79.11970500000001) (-93.45249899999999 79.12553400000002) (-93.45666499999999 79.132202) (-93.46333300000003 79.13693200000006) (-93.46055599999994 79.14276100000006) (-93.44305400000002 79.14804100000009) (-93.36610399999995 79.16137700000007) (-93.32972699999993 79.16442899999998) (-93.29499799999991 79.16693100000009) (-93.25917099999992 79.16748000000001) (-93.22778299999993 79.16693100000009) (-93.00306699999999 79.1544340000001) (-92.89555399999995 79.14387500000004) (-92.86972000000003 79.13970899999993) (-92.84110999999996 79.14109800000011) (-92.816101 79.14553799999999) (-92.80139200000002 79.1502690000001) (-92.7933349999999 79.15582300000005) (-92.78028899999987 79.16110200000003) (-92.74694799999997 79.164154) (-92.50695799999994 79.15832499999999) (-92.47860699999995 79.15582300000005) (-92.40750099999991 79.14610299999998) (-92.30943300000001 79.14526400000005) (-92.24305700000002 79.14694199999997) (-91.89805599999994 79.16137700000007) (-91.69193999999999 79.17330900000002) (-91.43916299999995 79.18359399999997) (-91.20527599999997 79.19192500000003) (-91.00917099999987 79.20304899999996) (-90.81193499999995 79.2080380000001) (-90.60166900000002 79.21415700000011) (-90.56416299999995 79.21554600000013) (-90.52833599999991 79.21748400000007) (-90.49276700000001 79.2208250000001) (-90.39083900000003 79.23637400000001) (-90.36833199999995 79.243042) (-90.36326600000001 79.2468110000001) (-90.38221699999997 79.2494200000001) (-90.40556300000003 79.25193800000011) (-90.472778 79.25082399999991) (-90.50222799999995 79.2494200000001) (-90.73222399999997 79.23831200000012) (-90.88583399999999 79.24414100000013) (-91.13999899999993 79.24443100000013) (-91.19888300000002 79.24136400000003) (-91.47084000000001 79.22886700000004) (-91.86111499999993 79.21527100000009) (-92.02639799999997 79.20748900000012) (-92.053604 79.20526100000001) (-92.087784 79.20416300000011) (-92.18083200000001 79.20304899999996) (-92.21389799999997 79.20416300000011) (-92.23889200000002 79.20555100000001) (-92.51028400000001 79.23275799999993) (-92.62193300000001 79.24443100000013) (-92.67666600000001 79.25138900000013) (-92.69471699999997 79.25721700000008) (-92.69305399999996 79.2622070000001) (-92.62554899999998 79.29525800000005) (-92.60388199999994 79.30081200000006) (-92.57194499999997 79.3041530000001) (-92.52333099999993 79.30775500000004) (-92.454453 79.30859400000003) (-92.39472999999998 79.30859400000003) (-92.30332900000002 79.30636600000008) (-92.25500499999998 79.30442800000014) (-92.13137799999998 79.2999880000001) (-91.99499500000002 79.29525800000005) (-91.96194499999996 79.29553199999998) (-91.9324949999999 79.297211) (-91.89416499999999 79.301086) (-91.86527999999993 79.30554200000012) (-91.82945299999994 79.31469700000014) (-91.79554699999989 79.31915300000009) (-91.72749299999992 79.32609600000006) (-91.65888999999999 79.32998700000013) (-91.58972199999994 79.33221400000002) (-91.52888499999995 79.33305400000006) (-91.49388099999987 79.33248900000001) (-91.46749899999998 79.33360299999998) (-91.26777600000003 79.34582499999999) (-91.23167399999994 79.34803799999992) (-91.15834000000001 79.35609399999998) (-91.11999500000002 79.38638300000002) (-91.12916599999988 79.39082300000007) (-91.156387 79.39444000000003) (-91.19110099999995 79.39332600000006) (-91.23055999999997 79.38943499999999) (-91.42222599999997 79.37414600000005) (-91.508621 79.37330600000001) (-91.58084100000002 79.36914100000001) (-91.70222499999994 79.36137400000007) (-91.72972099999998 79.35942100000011) (-91.766663 79.35331700000012) (-91.78832999999997 79.34637500000002) (-91.83528100000001 79.34082000000012) (-91.86471599999999 79.33943199999999) (-91.89778100000001 79.339157) (-92.15083299999998 79.34443700000008) (-92.18110699999994 79.34582499999999) (-92.21000699999996 79.34832799999992) (-92.29083300000002 79.35803199999992) (-92.35194399999995 79.36276199999998) (-92.41194200000001 79.36442599999998) (-92.51000999999997 79.36415099999999) (-92.56193499999995 79.36581400000006) (-92.57167099999987 79.37052900000009) (-92.57749899999999 79.37915000000004) (-92.56750499999987 79.38415500000008) (-92.47999600000003 79.40443400000004) (-92.46250900000001 79.40693700000003) (-92.41194200000001 79.41165200000006) (-92.31361400000003 79.41859399999993) (-92.24388099999999 79.4266510000001) (-92.22860700000001 79.43136600000014) (-92.22778299999993 79.43525700000004) (-92.228882 79.43830900000012) (-92.23472600000002 79.44164999999998) (-92.24194299999994 79.44413800000012) (-92.25917099999998 79.44693000000007) (-92.28332499999999 79.44914200000011) (-92.33805799999999 79.45304900000008) (-92.41972399999997 79.45721400000008) (-92.58084100000002 79.45220900000004) (-92.60527000000002 79.45054600000009) (-92.63417099999998 79.44581600000004) (-92.67999299999997 79.43719499999997) (-92.77417000000003 79.417755) (-92.80305499999997 79.41304000000014) (-92.854446 79.407761) (-92.87609899999995 79.407761) (-92.90167199999996 79.40887499999997) (-92.92944299999994 79.41249099999999) (-92.95083599999998 79.41638200000006) (-92.97332799999998 79.42359899999997) (-93.02917500000001 79.46026599999999) (-93.03277599999996 79.46554600000007) (-93.03472899999991 79.47164900000001) (-93.04472399999992 79.476089) (-93.06304899999992 79.48054500000012) (-93.09056099999998 79.48220800000007) (-93.10722399999997 79.48220800000007) (-93.12666299999995 79.47998000000007) (-93.14388999999989 79.47581500000007) (-93.14666699999998 79.46998600000006) (-93.144455 79.46388200000007) (-93.125 79.45082100000013) (-93.10583499999996 79.43942300000009) (-93.08138999999994 79.42637600000006) (-93.06111099999998 79.41581700000006) (-93.03361499999994 79.40443400000004) (-93.01889 79.399719) (-93.00917099999998 79.395264) (-93.00695799999994 79.38916000000012) (-93.00834700000001 79.38804600000014) (-93.00944500000003 79.38720699999999) (-93.02139299999999 79.3827510000001) (-93.125 79.35971100000012) (-93.26417500000002 79.3535920000001) (-93.31249999999994 79.37275700000009) (-93.25111399999997 79.40498400000007) (-93.23611499999998 79.41526800000008) (-93.22972099999998 79.42553700000013) (-93.23138399999999 79.42997700000012) (-93.23500100000001 79.43525700000004) (-93.25250199999999 79.44192499999997) (-93.27583300000003 79.44664) (-93.29333499999996 79.44802900000002) (-93.32000700000003 79.44831799999997) (-93.33805799999993 79.44720500000005) (-93.354446 79.44136000000015) (-93.4244379999999 79.405258) (-93.4330599999999 79.387497) (-93.485275 79.35415600000005) (-93.64138799999989 79.31164600000011) (-93.75750700000003 79.28360000000004) (-93.80194099999989 79.2747040000001) (-93.86999500000002 79.26388500000007) (-93.90666199999998 79.26054400000004) (-93.96972699999998 79.25749200000007) (-93.99722300000002 79.25694299999998) (-94.04722599999997 79.25749200000007) (-94.206955 79.27249099999995) (-94.212219 79.27665700000006) (-94.162781 79.32222000000002) (-94.14805599999994 79.33360299999998) (-94.11972000000003 79.34471100000002) (-94.08860800000002 79.3535920000001) (-94.05638099999993 79.37970000000007) (-94.245834 79.4041600000001) (-94.36665299999999 79.41970800000013) (-94.38612399999994 79.42137100000002) (-94.49472000000003 79.42137100000002) (-94.50917099999998 79.41638200000006) (-94.5 79.37970000000007) (-94.48306300000002 79.375809) (-94.46305799999999 79.37915000000004) (-94.454453 79.3855440000001) (-94.43276999999995 79.3855440000001) (-94.398056 79.37525900000014) (-94.38999899999999 79.36886600000003) (-94.50666799999999 79.33720400000004) (-94.53805499999993 79.33360299999998) (-94.57362399999994 79.33110000000005) (-94.63890099999998 79.33248900000001) (-94.66999799999996 79.33137500000004) (-94.697495 79.32666) (-94.72000100000002 79.32165500000013) (-94.765015 79.31164600000011) (-94.95249899999993 79.28997800000002) (-94.97000099999997 79.28471400000001) (-94.97277799999989 79.27388000000013) (-94.97721899999999 79.27026400000011) (-94.98582499999998 79.26748700000002) (-95.01861600000001 79.26693699999998) (-95.08755500000001 79.27075200000013) (-95.16166699999997 79.28109700000005) (-95.30499299999997 79.32582100000002) (-95.31861900000001 79.33221400000002) (-95.32028200000002 79.3352660000001) (-95.29444899999999 79.33665500000012) (-95.28500400000001 79.35304299999996) (-95.295837 79.37942500000003) (-95.39416499999999 79.387497) (-95.47721899999999 79.38081400000004) (-95.65556300000003 79.39166300000011) (-95.75334199999998 79.40443400000004) (-95.77166699999998 79.40971400000006) (-95.77860999999996 79.41304000000014) (-95.779449 79.42581200000012) (-95.73638899999997 79.53749100000005) (-95.65750099999997 79.55331400000011) (-95.63612399999994 79.55748) (-95.56555200000003 79.55914300000012) (-95.30972299999996 79.56915300000003) (-95.17027300000001 79.57527200000004) (-95.05166599999995 79.58221400000014) (-94.83999599999987 79.59721400000012) (-94.80248999999998 79.60054000000014) (-94.699432 79.61219800000015) (-94.40695199999999 79.66775500000011) (-94.360275 79.67776500000002) (-94.329453 79.68830900000006) (-94.28277600000001 79.75749200000001) (-94.28694200000001 79.76277200000004) (-94.29834 79.76887499999998) (-94.31834400000002 79.77859500000005) (-94.33528100000001 79.78082300000005) (-94.36166400000002 79.78193700000003) (-94.38417099999998 79.77804600000013) (-94.57749899999993 79.73580900000007) (-94.59249899999998 79.73109400000004) (-94.59666399999998 79.72581500000001) (-94.60139500000002 79.71388200000001) (-94.60888699999992 79.708328) (-94.74833699999994 79.678314) (-94.77667199999996 79.67359899999997) (-94.81443799999994 79.6702580000001) (-94.87832599999996 79.66804500000012) (-94.94638099999997 79.66693099999998) (-94.98500100000001 79.66499300000004) (-95.09167500000001 79.65693699999997) (-95.15361000000001 79.647491) (-95.19082599999996 79.64414999999997) (-95.35555999999997 79.63832100000013) (-95.41999800000002 79.637497) (-95.48527499999994 79.63804600000009) (-95.7408289999999 79.64137300000004) (-95.79943799999995 79.64248700000002) (-95.85333299999996 79.6461030000001) (-95.90110799999997 79.65443399999998) (-95.93306000000001 79.6644290000001) (-95.95472699999999 79.671921) (-95.98083500000001 79.6827550000001) (-96.03222700000003 79.70694000000009) (-96.28250100000002 79.79887400000001) (-96.335556 79.81553600000001) (-96.36082499999998 79.82249500000006) (-96.38417099999992 79.82638500000007) (-96.49055499999997 79.83610499999998) (-96.57556199999993 79.84999099999993) (-96.589447 79.85247800000002) (-96.61054999999999 79.87776200000002) (-96.61500499999994 79.88388100000003) (-96.60943600000002 79.88859600000006) (-96.573624 79.9002690000001) (-96.458618 79.91442900000004) (-96.422775 79.91609199999994) (-96.39138799999995 79.91387900000001) (-96.38500999999991 79.90971400000001) (-96.37777699999998 79.89915500000012) (-96.19471699999991 79.90138200000001) (-96.15888999999987 79.90304600000002) (-96.13806199999999 79.90637200000003) (-96.14778099999995 79.9124910000001) (-96.16471899999999 79.91720599999991) (-96.23332199999993 79.93304399999994) (-96.26251200000002 79.93692000000004) (-96.32556199999999 79.94136000000003) (-96.39917000000003 79.9410860000001) (-96.49276699999996 79.94331400000004) (-96.52416999999997 79.9452510000001) (-96.55665599999998 79.94886800000006) (-96.58056599999998 79.95277399999998) (-96.59583999999995 79.95694000000003) (-96.60665899999992 79.96220400000004) (-96.675003 80.00833100000006) (-96.67944299999999 80.0144350000001) (-96.66194199999995 80.01998900000012) (-96.62805200000003 80.02442900000011) (-96.48277299999995 80.04109199999999) (-96.41915899999992 80.04193099999998) (-96.39416499999987 80.04386900000009) (-96.39167799999996 80.04582200000004) (-96.40583799999996 80.04832500000003) (-96.428879 80.05053700000008) (-96.479172 80.05386400000003) (-96.51222200000001 80.05497700000012) (-96.54861499999993 80.053314) (-96.58250399999991 80.04859899999997) (-96.59916699999991 80.04443400000014) (-96.62777699999992 80.0394290000001) (-96.67610199999996 80.04193099999998) (-96.69888299999997 80.04693600000002) (-96.737503 80.05802900000003) (-96.78167699999995 80.07666000000006) (-96.80139199999996 80.08692900000005) (-96.80277999999998 80.09082000000012) (-96.74888599999986 80.13472000000013) (-96.73443600000002 80.1397090000001) (-96.71112099999993 80.14498900000001) (-96.67582700000003 80.1455380000001) (-96.41000399999996 80.13888500000013) (-96.38110399999994 80.13638300000008) (-96.35139500000002 80.132477) (-96.32278400000001 80.12747200000013) (-96.16305499999987 80.09304800000007) (-96.077789 80.07804900000002) (-96.01777600000003 80.070831) (-95.84777799999989 80.053314) (-95.54583699999995 80.04054300000007) (-95.41888399999993 80.036652) (-95.32501199999996 80.03387500000008) (-95.19387799999998 80.03137200000009) (-95.06361400000003 80.02998400000001) (-95.03805499999999 80.03193699999997) (-95.01167299999992 80.03887900000007) (-94.98889200000002 80.04304500000012) (-94.95111099999986 80.04553200000004) (-94.92138699999992 80.04637100000002) (-94.88751200000002 80.04582200000004) (-94.85278299999987 80.04414400000013) (-94.82583599999992 80.04054300000007) (-94.71777299999997 80.02082800000005) (-94.60749800000002 80.0027770000001) (-94.56945799999994 79.99720800000011) (-94.416946 79.9788670000001) (-94.38362099999995 79.98248299999995) (-94.38778699999995 79.98776199999992) (-94.41389499999991 79.99775700000004) (-94.45167499999997 80.00972000000007) (-94.52555799999993 80.02276599999999) (-94.62110899999999 80.04304500000012) (-94.67111199999988 80.05693100000013) (-94.74888599999997 80.07998699999996) (-94.72888199999994 80.10554500000006) (-94.63276699999994 80.13108800000003) (-94.61193799999995 80.1355440000001) (-94.51055899999994 80.15443400000004) (-94.48055999999985 80.15914900000007) (-94.41639699999996 80.16360500000002) (-94.38722200000001 80.16331500000001) (-94.28582799999992 80.1649930000001) (-94.12110899999993 80.17025799999999) (-94.09167500000001 80.17248500000005) (-94.08389299999999 80.17553700000013) (-94.09638999999999 80.17915300000004) (-94.11999500000002 80.18304400000011) (-94.18443300000001 80.18664600000005) (-94.21777299999997 80.18803400000013) (-94.35417199999995 80.19081100000005) (-94.48500099999995 80.209991) (-94.64222699999999 80.199997) (-94.64999399999988 80.19442700000008) (-94.704453 80.17804000000012) (-94.74833699999994 80.16943400000002) (-94.816956 80.15971400000012) (-95.03332499999999 80.134995) (-95.10499600000003 80.12886000000003) (-95.26362599999999 80.1183170000001) (-95.333618 80.11804200000006) (-95.36776700000001 80.1183170000001) (-95.42027300000001 80.1224820000001) (-95.65888999999999 80.16859399999998) (-95.68388400000003 80.17387400000001) (-95.695831 80.17831400000006) (-95.69221500000003 80.18109099999998) (-95.67388900000003 80.18637100000001) (-95.62165800000002 80.19525100000004) (-95.58084100000002 80.19970699999999) (-95.54277000000002 80.20220900000004) (-95.47111499999994 80.20359800000006) (-95.40417500000001 80.20359800000006) (-95.370544 80.20471200000003) (-95.32778899999988 80.2086030000001) (-95.295837 80.21276899999998) (-95.26834100000002 80.21804799999995) (-95.25445599999995 80.22221400000006) (-95.2350009999999 80.23220800000007) (-95.22999600000003 80.23609899999997) (-95.2350009999999 80.24108899999999) (-95.24333199999995 80.2435910000001) (-95.258896 80.24498000000006) (-95.27806099999992 80.24386600000008) (-95.287216 80.24108899999999) (-95.32556199999999 80.23220800000007) (-95.39834599999989 80.22360200000014) (-95.46139499999987 80.21998600000012) (-95.49694799999997 80.21943699999997) (-95.54834 80.22026100000011) (-95.56695599999995 80.224152) (-95.57749899999999 80.22943099999998) (-95.58138999999989 80.23553500000003) (-95.58639499999992 80.24054000000007) (-95.601944 80.24220300000002) (-95.64584400000001 80.23970000000003) (-95.69027699999998 80.23248300000012) (-95.71055599999994 80.22776800000008) (-95.88417099999998 80.19914200000011) (-95.92250099999995 80.19413800000001) (-95.93360899999999 80.19442700000008) (-95.98443599999996 80.20027199999998) (-96.21665999999988 80.23580900000013) (-96.43499799999995 80.26971400000002) (-96.46444699999995 80.31303400000002) (-96.61389200000002 80.32998700000013) (-96.64584400000001 80.333054) (-96.67027299999995 80.336929) (-96.68167099999988 80.34220900000008) (-96.67610199999996 80.34693900000013) (-96.658051 80.35220300000009) (-96.63417099999998 80.35720800000013) (-96.60472099999998 80.36219800000003) (-96.59222399999999 80.36276199999998) (-96.44055200000003 80.35664400000002) (-96.40888999999999 80.3535920000001) (-96.36389200000002 80.34220900000008) (-96.25472999999994 80.33554100000009) (-96.23222399999997 80.33471700000013) (-96.21640000000002 80.33804299999997) (-96.22166400000003 80.34332300000005) (-96.25500499999998 80.35415600000005) (-96.27722199999994 80.35998500000005) (-96.28083800000002 80.36192299999999) (-96.26806599999992 80.36747700000001) (-96.24055499999997 80.37303200000008) (-96.08084100000002 80.38720699999999) (-96.04777499999989 80.38998400000008) (-95.97860699999995 80.388596) (-95.73249799999991 80.37275700000004) (-95.697495 80.36997999999994) (-95.63694800000002 80.36415099999994) (-95.61221299999994 80.36026000000004) (-95.56695599999995 80.35220300000009) (-95.54277000000002 80.34582499999993) (-95.51390099999998 80.34082000000006) (-95.48832699999997 80.33804299999997) (-95.46028099999995 80.336929) (-95.44082600000002 80.33831800000002) (-95.436935 80.34109500000011) (-95.45333899999997 80.37330600000001) (-95.45861799999994 80.37858600000004) (-95.46806300000003 80.38220200000012) (-95.49861099999998 80.38388099999997) (-95.56416299999995 80.38581799999997) (-95.62499999999994 80.39166300000011) (-95.653885 80.39665200000007) (-95.69499200000001 80.4060970000001) (-95.72166400000003 80.41276599999998) (-95.85221899999999 80.45416300000005) (-95.95722999999992 80.50499000000013) (-96.02055399999995 80.56749000000008) (-96.027222 80.57415800000007) (-96.02444500000001 80.57832300000007) (-96.00695799999988 80.58276399999994) (-95.97999600000003 80.58471700000007) (-95.94166599999994 80.58638000000002) (-95.67166099999997 80.58471700000007) (-95.53639199999998 80.59082000000001) (-95.49804699999987 80.59248400000007) (-95.42361499999998 80.5935970000001) (-95.31834399999991 80.59082000000001) (-95.24665800000002 80.58998100000008) (-95.17222600000002 80.59137000000004) (-95.13221699999997 80.59387200000015) (-95.06723 80.60137900000007) (-95.0308379999999 80.603317) (-94.99499499999996 80.60304300000007) (-94.96278399999994 80.59971599999994) (-94.90249599999999 80.58665500000001) (-94.84695399999993 80.57470699999999) (-94.823624 80.56971699999997) (-94.77194199999991 80.56137100000007) (-94.75279199999994 80.55998200000005) (-94.69665499999996 80.55693100000002) (-94.658615 80.55581700000005) (-94.55499299999991 80.55442800000003) (-94.37499999999994 80.55720500000012) (-94.23083500000001 80.55636599999997) (-94.010559 80.54942299999999) (-93.968887 80.54081700000006) (-93.968887 80.536926) (-93.96611000000001 80.53082300000005) (-93.95834399999995 80.52609300000006) (-93.89916999999997 80.51915000000002) (-93.86694299999999 80.51832600000006) (-93.839447 80.51859999999999) (-93.78639199999998 80.52554300000003) (-93.78306600000002 80.52970900000008) (-93.79083299999996 80.53442400000012) (-93.81054699999999 80.5413670000001) (-93.89472999999987 80.56581100000005) (-93.94915800000001 80.57804899999991) (-93.97361799999993 80.58193999999997) (-94.00500499999998 80.58526600000005) (-94.09361299999995 80.593323) (-94.308334 80.60636899999997) (-94.43777499999999 80.605545) (-94.45750399999991 80.60026599999998) (-94.48472600000002 80.59832800000004) (-94.52417000000003 80.59832800000004) (-94.54333500000001 80.59971599999994) (-94.561935 80.60582) (-94.660278 80.65138200000001) (-94.66944899999993 80.65776100000005) (-94.672775 80.66387900000001) (-94.67027300000001 80.66970800000001) (-94.66221599999994 80.67526200000003) (-94.650284 80.68136600000008) (-94.62832600000002 80.68580600000007) (-94.59695399999998 80.69053600000012) (-94.553604 80.69497700000005) (-94.51472499999994 80.69636500000013) (-94.43916300000001 80.6974790000001) (-94.33111600000001 80.69386300000002) (-94.23167399999988 80.69220000000013) (-94.19972200000001 80.69303900000006) (-94.11749299999997 80.69859300000007) (-94.08833299999998 80.70166) (-94.07556199999999 80.70609999999999) (-94.07695000000001 80.70915200000013) (-94.08639499999998 80.71304300000003) (-94.108337 80.71887200000003) (-94.140289 80.72192400000012) (-94.30444299999994 80.73387100000008) (-94.42304999999988 80.73498500000005) (-94.44915800000001 80.73027000000002) (-94.491104 80.72692899999998) (-94.54943800000001 80.72499100000005) (-94.65972899999997 80.72526600000009) (-94.69471699999997 80.726654) (-94.722778 80.7285920000001) (-94.895554 80.74775700000009) (-95.03582799999987 80.768326) (-95.03750599999995 80.77137800000014) (-95.03694200000001 80.776093) (-95.03388999999999 80.77804600000013) (-95.025284 80.8016510000001) (-95.24305699999996 80.78776600000003) (-95.28250100000002 80.78610199999997) (-95.33416699999992 80.78887900000007) (-95.44276400000001 80.79971299999994) (-95.47555499999999 80.80304000000007) (-95.50111399999997 80.80693100000013) (-95.52417000000003 80.81248499999998) (-95.53416400000003 80.8188780000001) (-95.52639799999997 80.83332800000005) (-95.50083899999987 80.83831800000007) (-95.44027699999998 80.84610000000004) (-95.37138400000003 80.85331699999995) (-95.212784 80.8683170000001) (-95.170837 80.87580900000006) (-95.15083299999992 80.88108800000003) (-95.14666699999992 80.88388100000003) (-95.170547 80.88472000000002) (-95.30082700000003 80.88526900000011) (-95.41332999999986 80.88526900000011) (-95.468887 80.89027399999998) (-95.48138399999999 80.89471400000002) (-95.48472600000002 80.89915500000012) (-95.47416699999997 80.9044340000001) (-95.46028099999995 80.90971399999995) (-95.422775 80.92082199999999) (-95.33416699999992 80.93470800000011) (-95.31193499999995 80.93914799999999) (-95.28361499999994 80.949997) (-95.26750199999998 80.96138000000002) (-95.25973499999992 80.97360200000003) (-95.25750699999998 80.97943100000003) (-95.25917099999998 80.984985) (-95.25500499999998 80.99664300000006) (-95.241104 81.006104) (-95.2208399999999 81.01138299999997) (-95.18306000000001 81.01971400000008) (-94.943329 81.04887400000013) (-94.81416300000001 81.0541530000001) (-94.66305499999999 81.04859899999991) (-94.5727839999999 81.03887900000001) (-94.546112 81.03332500000005) (-94.49388099999999 81.01748700000002) (-94.495544 80.9958190000001) (-94.50418100000002 80.99026500000008) (-94.50917099999998 80.98471100000006) (-94.50805700000001 80.97943100000003) (-94.49276700000001 80.97276300000004) (-94.472778 80.96914699999996) (-94.43415800000002 80.96554600000013) (-94.40861499999994 80.96554600000013) (-94.36555499999997 80.96887200000015) (-94.34472699999998 80.97415200000006) (-94.33000199999987 80.97970600000002) (-94.14361600000001 81.01582300000001) (-94.07167099999992 81.02499399999994) (-93.908051 81.03942900000004) (-93.906387 81.04054300000007) (-94.01333599999998 81.05358899999999) (-94.04222099999993 81.05554200000012) (-94.18249499999996 81.06805400000007) (-94.32861299999996 81.08943200000004) (-94.35749800000002 81.09526100000005) (-94.36221299999994 81.10054000000002) (-94.35360700000001 81.10609399999998) (-94.34555099999994 81.10942100000011) (-94.31304899999998 81.11553999999995) (-94.27833599999997 81.11720300000007) (-94.25527999999997 81.11553999999995) (-94.23083500000001 81.11053500000008) (-94.21472199999988 81.10636900000003) (-94.19583099999994 81.10026600000009) (-94.15472399999999 81.09387200000003) (-94.13027999999997 81.09275800000006) (-93.98971599999999 81.09248400000013) (-93.96083099999993 81.09414700000008) (-93.93527199999994 81.09832799999998) (-93.90722700000003 81.101654) (-93.86639400000001 81.10304300000001) (-93.79527300000001 81.09942600000005) (-93.689438 81.09304800000007) (-93.51722699999988 81.08442699999995) (-93.29998799999993 81.07971199999992) (-93.25584400000002 81.08276400000005) (-93.16305499999993 81.0919340000001) (-93.15222199999994 81.09471100000002) (-93.12332199999992 81.11526500000014) (-93.09555099999994 81.1541600000001) (-93.09167499999995 81.15998800000006) (-93.09583999999995 81.16526800000008) (-93.12110899999993 81.18275499999993) (-93.25973499999998 81.21220399999993) (-93.41944899999993 81.21998600000006) (-93.514725 81.21775800000012) (-93.68749999999994 81.21026599999999) (-93.72833300000002 81.20721400000008) (-93.85221899999993 81.20304900000008) (-93.928879 81.20387300000004) (-94.03138699999994 81.20887800000008) (-94.16639700000002 81.21804800000012) (-94.20056199999988 81.22110000000004) (-94.28222700000003 81.2310940000001) (-94.30248999999998 81.23498499999994) (-94.38166799999999 81.25082400000008) (-94.38806199999999 81.25499000000013) (-94.391388 81.26110800000009) (-94.38612399999994 81.2727660000001) (-94.37027 81.28471400000001) (-94.27861000000001 81.34193400000004) (-94.26861600000001 81.34609999999992) (-94.24082900000002 81.35081499999995) (-94.20056199999988 81.355545) (-94.15388499999995 81.35971100000012) (-94.06806899999998 81.36331199999995) (-94.035278 81.36331199999995) (-93.789444 81.34803800000009) (-93.75500499999993 81.34471100000013) (-93.69444299999992 81.33749400000005) (-93.66583300000002 81.332764) (-93.63890099999998 81.3272090000001) (-93.62193300000001 81.32165500000008) (-93.61138900000003 81.3163760000001) (-93.59445199999993 81.31053199999991) (-93.55332900000002 81.30554200000006) (-93.515289 81.31053199999991) (-93.4949949999999 81.31469700000008) (-93.48306300000002 81.31971699999997) (-93.483612 81.32527200000004) (-93.48805199999998 81.33055100000001) (-93.53332499999999 81.34860200000003) (-93.56054699999993 81.367752) (-93.56471299999993 81.3766480000001) (-93.55055199999993 81.38108799999992) (-93.51750199999998 81.38499500000006) (-93.34028599999999 81.37220800000006) (-93.17749000000003 81.35859700000009) (-93.01556399999987 81.3413700000001) (-92.92805499999997 81.33082600000006) (-92.83168 81.31776400000001) (-92.72778299999993 81.30554200000006)) ((-91.71833799999996 81.54914900000006) (-91.76167299999997 81.54803500000008) (-91.80139199999996 81.54859900000002) (-91.83750900000001 81.55108600000011) (-91.86361699999998 81.555252) (-91.95111099999991 81.58415200000002) (-91.95861799999994 81.58888200000007) (-91.960556 81.59498600000012) (-91.95611599999995 81.60081500000013) (-91.9324949999999 81.60582) (-91.90388499999995 81.60832200000004) (-91.86833200000001 81.60859700000009) (-91.82389799999999 81.60693400000014) (-91.789444 81.603317) (-91.72471599999994 81.59610000000009) (-91.597778 81.58055099999996) (-91.58222999999992 81.57804900000008) (-91.61999500000002 81.56248499999998) (-91.6436159999999 81.55748000000011) (-91.67361499999998 81.55276500000008) (-91.71833799999996 81.54914900000006)) ((-78.36582899999996 82.88360599999999) (-78.383331 82.88360599999999) (-78.41944899999999 82.89915500000006) (-78.41722099999993 82.93553200000002) (-78.41471899999993 82.94192500000003) (-78.40583800000002 82.94775400000003) (-78.38972499999988 82.95332300000001) (-78.36166399999996 82.9586030000001) (-78.32333399999987 82.96192900000011) (-78.27389499999987 82.96304300000008) (-78.22361799999999 82.96110499999998) (-78.14527900000002 82.95471200000003) (-78.11972000000003 82.94859299999996) (-78.11694299999999 82.94220000000001) (-78.12249800000001 82.93719499999997) (-78.15083300000003 82.92692599999992) (-78.212784 82.91137700000002) (-78.33639499999998 82.88804600000014) (-78.36582899999996 82.88360599999999)) ((-70.11193799999995 83.10942100000011) (-70.00140399999998 83.10775799999999) (-69.81221 83.11219799999998) (-69.74888599999997 83.11192299999999) (-69.70167500000002 83.11053500000008) (-69.665009 83.1083220000001) (-69.65916400000003 83.10304300000013) (-69.66221599999994 83.07415800000007) (-69.66416899999996 83.07083099999994) (-69.68055700000002 83.06498699999997) (-69.71610999999996 83.06109600000008) (-69.75750699999998 83.05775500000004) (-69.77389499999998 83.05192600000004) (-69.77528399999994 83.0477600000001) (-69.74444599999998 83.04553199999998) (-69.67193600000002 83.04109199999994) (-69.636124 83.03970300000015) (-69.47138999999999 83.03887900000001) (-69.45111099999997 83.03581200000008) (-69.51333599999998 83.01971400000002) (-69.53611799999999 83.01443500000005) (-69.56500199999994 83.009995) (-69.55972299999996 82.99414100000013) (-69.23306299999996 83.01026899999994) (-69.15638699999994 83.01748700000013) (-69.120544 83.02165200000013) (-69.09777799999995 83.026657) (-69.06361400000003 83.03804000000002) (-69.01556399999993 83.04081700000012) (-68.98306300000002 83.03665200000012) (-68.975281 83.02832000000012) (-68.97389199999998 83.01554900000002) (-68.97721899999999 83.00166300000006) (-68.90278599999994 82.98831200000006) (-68.70834400000001 82.97804300000007) (-68.66500899999994 82.98027000000013) (-68.630829 82.98525999999998) (-68.62666300000001 82.9869230000001) (-68.57972699999999 82.99693300000001) (-68.55055199999993 83.00166300000006) (-68.514725 83.00555400000013) (-68.46665999999999 83.00804099999999) (-68.40472399999999 83.008331) (-68.35804699999989 83.00610399999994) (-68.316101 83.00332600000013) (-68.19082600000002 82.99470500000007) (-68.15417500000001 82.99108899999999) (-68.14222699999993 82.98359700000003) (-68.15527299999997 82.972488) (-68.17777999999998 82.959991) (-68.18859900000001 82.94609100000008) (-68.17639199999996 82.93887300000006) (-68.145554 82.93498199999999) (-68.09973100000002 82.93359400000008) (-68.06806899999998 82.93525700000004) (-68.054169 82.93887300000006) (-67.88166799999993 82.95887800000008) (-67.666946 82.96971100000007) (-67.61082499999992 82.96887200000009) (-67.54415899999998 82.96220399999993) (-67.50140399999998 82.95721400000008) (-67.49999999999994 82.95701600000007) (-67.47610499999996 82.95359800000006) (-67.41000399999996 82.94664000000006) (-67.32778899999994 82.94081100000005) (-67.241669 82.93691999999999) (-67.19665500000002 82.93609600000002) (-67.13612399999994 82.93664600000005) (-67.11694299999999 82.94108600000004) (-67.122772 82.94914200000011) (-67.12165800000002 82.95526100000012) (-67.11332700000003 82.95942700000006) (-67.09222399999993 82.96110499999998) (-67.04110700000001 82.95971700000007) (-66.964722 82.95416300000005) (-66.93998699999992 82.95054600000009) (-66.93832399999991 82.94775400000003) (-66.818893 82.93525700000004) (-66.65306099999987 82.93637100000001) (-66.33000199999992 82.93386800000002) (-66.30139199999996 82.93193100000002) (-66.29943799999995 82.92942800000003) (-66.34750399999996 82.89804100000009) (-66.36915599999992 82.88832100000002) (-66.81138599999997 82.81526200000002) (-66.84111000000001 82.81080600000007) (-66.87666300000001 82.80720500000007) (-66.95973200000003 82.80081200000006) (-67.13833599999998 82.78387500000008) (-67.31527699999998 82.76470900000004) (-67.386124 82.75776700000011) (-67.45777899999996 82.75221299999993) (-67.49999999999994 82.74961100000013) (-67.597778 82.74359099999992) (-67.64472999999992 82.74165299999999) (-67.79916400000002 82.73165899999998) (-67.91416899999996 82.71998600000012) (-68.041382 82.7038730000001) (-68.08167999999995 82.70082100000002) (-68.13417099999998 82.69859300000002) (-68.23472600000002 82.69664000000012) (-68.27610800000002 82.69470199999995) (-68.35665899999998 82.68803400000002) (-68.4244379999999 82.67970300000007) (-68.633621 82.64860500000009) (-68.65583800000002 82.64360000000005) (-68.67222599999997 82.6377720000001) (-68.66722099999998 82.63247700000005) (-68.64250199999998 82.62858599999998) (-68.57362399999994 82.62886000000009) (-68.46501199999994 82.63943500000005) (-68.4244379999999 82.6419370000001) (-68.32583599999998 82.64553799999999) (-67.93499800000001 82.65832499999999) (-67.81277499999999 82.65914900000013) (-67.60665899999992 82.65554800000007) (-67.51806599999986 82.65109300000006) (-67.47084000000001 82.65220599999998) (-67.43055700000002 82.65554800000007) (-67.38194299999998 82.66276600000009) (-67.32806399999998 82.67719999999991) (-67.275284 82.68609600000002) (-67.245834 82.68969700000008) (-67.21083099999993 82.69358799999998) (-66.997772 82.71220399999999) (-66.900284 82.71943700000003) (-66.670837 82.74026500000008) (-66.65722700000003 82.74443099999996) (-66.63833599999998 82.74887100000001) (-66.122772 82.81303400000007) (-66.08667000000003 82.816666) (-65.81027199999994 82.84082000000012) (-65.76777600000003 82.84304800000007) (-65.72416699999991 82.84359700000005) (-65.54666099999992 82.83804300000003) (-65.46777299999985 82.833328) (-65.45472699999999 82.829163) (-65.481674 82.816666) (-65.495834 82.8119200000001) (-65.52722199999994 82.79748499999994) (-65.51806599999998 82.78997800000002) (-65.511124 82.786652) (-65.45861799999989 82.77943399999998) (-65.43083200000001 82.77748100000002) (-65.19749499999995 82.76416000000006) (-65.164444 82.76304600000009) (-65.15472399999999 82.76527400000003) (-65.16749600000003 82.76998900000007) (-65.25917099999992 82.7816620000001) (-65.32749899999999 82.78915400000005) (-65.33972199999994 82.79193099999998) (-65.35305799999998 82.797211) (-65.34445199999999 82.80192600000004) (-65.22193899999996 82.83276400000005) (-65.10278299999993 82.84803799999997) (-65.11000100000001 82.85276799999997) (-65.12805200000003 82.85609400000004) (-65.172775 82.85832199999999) (-65.27278100000001 82.86109900000008) (-65.30749499999996 82.86554000000001) (-65.28916899999996 82.87330600000001) (-65.25805700000001 82.87747200000013) (-65.10472099999998 82.89166300000011) (-64.98222399999997 82.901093) (-64.88473499999992 82.90582300000005) (-64.83555599999994 82.90693700000003) (-64.72972099999993 82.9041600000001) (-64.68472300000002 82.90165700000011) (-64.65556299999997 82.89694200000008) (-64.6641689999999 82.89027399999992) (-64.678604 82.88472000000013) (-64.71389799999992 82.87637299999994) (-64.75195300000001 82.87525900000014) (-64.79055800000003 82.875809) (-64.82972699999993 82.87776200000013) (-64.89028899999994 82.87803600000007) (-64.92250100000001 82.87637299999994) (-64.93693499999995 82.87136800000007) (-64.92361499999998 82.86469999999991) (-64.883896 82.86164900000011) (-64.83999599999999 82.86192300000005) (-64.74638400000003 82.86053500000014) (-64.723053 82.85636900000003) (-64.710556 82.85247800000013) (-64.71389799999992 82.84637500000002) (-64.72277799999995 82.84082000000012) (-64.74221799999992 82.834427) (-64.75083899999993 82.82832300000013) (-64.73777799999999 82.82222000000002) (-64.706955 82.81303400000007) (-64.64805599999994 82.79971300000011) (-64.47860700000001 82.7644350000001) (-64.44526699999994 82.76193200000012) (-64.41805999999991 82.76138299999997) (-64.41278099999994 82.76220699999993) (-64.398056 82.76693699999998) (-64.328888 82.7872010000001) (-64.18638599999997 82.81915300000009) (-64.13999899999999 82.82804900000002) (-64.10305800000003 82.83166500000004) (-64.05972299999996 82.833328) (-63.972770999999966 82.83499100000012) (-63.672775 82.83471700000001) (-63.623610999999926 82.83360300000004) (-63.52972399999999 82.82832300000013) (-63.49083699999994 82.8252720000001) (-63.43472300000002 82.816666) (-63.38916799999993 82.80497700000006) (-63.38249999999999 82.79832500000003) (-63.38221699999991 82.76776100000012) (-63.397223999999994 82.76138299999997) (-63.479163999999855 82.73942599999992) (-63.51028400000001 82.73248300000012) (-63.52583299999998 82.730545) (-63.590836000000024 82.73304700000006) (-63.666106999999954 82.73136899999997) (-63.81944999999996 82.72137499999997) (-63.83499899999998 82.71914700000002) (-63.850280999999995 82.71582000000006) (-63.76445000000001 82.71527100000009) (-63.67888599999992 82.717758) (-63.65166499999998 82.7149960000001) (-63.54000100000002 82.69442700000013) (-63.502040999999906 82.68276200000008) (-63.42222600000002 82.66554300000001) (-63.28694899999999 82.6544340000001) (-63.25444799999997 82.6502690000001) (-63.232215999999994 82.64498900000001) (-63.22610500000002 82.64027399999998) (-63.235557999999855 82.633331) (-63.25583599999999 82.62719700000014) (-63.28722399999998 82.6249850000001) (-63.339721999999995 82.62359600000008) (-63.37638899999996 82.61998000000006) (-63.380829000000006 82.61526500000002) (-63.36944599999998 82.61053499999997) (-63.34749599999998 82.60498000000007) (-63.315001999999936 82.601089) (-63.27222399999994 82.59860200000014) (-63.229720999999984 82.59721400000001) (-63.11361699999992 82.59748799999994) (-63.071113999999966 82.59637500000008) (-63.03361499999994 82.59443699999997) (-62.99639099999996 82.59027100000003) (-62.96416499999998 82.58554100000003) (-62.942496999999946 82.5816650000001) (-62.926109 82.57609600000012) (-62.93055700000002 82.56999200000007) (-62.960556 82.55775499999993) (-63.059440999999936 82.511932) (-63.08943899999997 82.46638500000012) (-63.1199949999999 82.46360800000002) (-63.243889000000024 82.45776400000005) (-63.285004000000015 82.45498700000013) (-63.346106999999904 82.44914200000005) (-63.36611199999999 82.44497700000005) (-63.36999500000002 82.438873) (-63.32861300000002 82.43775900000003) (-63.27722199999994 82.43914800000005) (-63.148888 82.44692999999995) (-63.07167099999998 82.45193500000005) (-63.01583899999997 82.45971699999996) (-62.990836999999885 82.46720900000008) (-62.92083699999995 82.4910890000001) (-62.823616000000015 82.50444000000005) (-62.678337 82.51609800000006) (-62.55332899999996 82.524429) (-62.50666799999988 82.52665700000011) (-62.28694899999999 82.52804600000013) (-62.24500299999994 82.52804600000013) (-62.17166900000001 82.52554299999997) (-62.17138699999998 82.52137800000014) (-62.322776999999974 82.51110800000004) (-62.33306099999999 82.50416600000011) (-62.353057999999976 82.48637400000007) (-62.35278299999993 82.48109399999998) (-62.300835000000006 82.482483) (-62.264449999999954 82.48580900000002) (-62.21566799999988 82.49192800000009) (-62.21249799999987 82.495766) (-62.098052999999936 82.50221299999998) (-61.88417099999998 82.49275200000005) (-61.691666 82.48803700000002) (-61.58250399999997 82.482483) (-61.53082999999987 82.47831700000012) (-61.5 82.47415200000012) (-61.44860799999998 82.46443199999999) (-61.32611099999997 82.43969700000014) (-61.28556100000003 82.43026700000007) (-61.17027999999988 82.39526400000011) (-61.14111300000002 82.38304100000005) (-61.13138599999991 82.37747200000007) (-61.11222099999992 82.36387600000006) (-61.09860999999995 82.35026600000003) (-61.076392999999996 82.32083100000011) (-61.07861300000002 82.30108600000011) (-61.084723999999994 82.29359399999998) (-61.107779999999934 82.26776100000006) (-61.130359999999996 82.25293700000009) (-61.135558999999944 82.2474820000001) (-61.15694400000001 82.23525999999998) (-61.19332899999995 82.22360200000008) (-61.28111299999995 82.20277400000003) (-61.306389000000024 82.19720500000005) (-61.38805400000001 82.18331900000004) (-61.43332700000002 82.17637600000006) (-61.46361499999989 82.172485) (-61.5341719999999 82.16554300000007) (-61.599441999999954 82.16081200000013) (-61.80444299999999 82.14665200000007) (-61.86999499999996 82.10664400000002) (-61.885001999999986 82.10053999999997) (-62.07778199999996 82.05358899999999) (-62.12694499999998 82.04386900000009) (-62.25417299999998 82.01998900000007) (-62.278885 82.01582299999995) (-62.31305699999996 82.01249700000011) (-62.35694899999993 82.010269) (-62.51361800000001 82.00471500000015) (-62.57028199999996 81.97608900000006) (-62.94499999999999 81.92221100000012) (-63.040557999999976 81.90971400000012) (-63.2925029999999 81.87776199999996) (-63.38722199999995 81.86775200000005) (-63.65610499999997 81.8374940000001) (-63.715003999999965 81.82083100000006) (-63.761116000000015 81.811646) (-63.81722300000001 81.80470300000002) (-63.849723999999924 81.80108600000005) (-63.925003000000004 81.7952580000001) (-63.96277599999996 81.79248000000013) (-64.01000999999997 81.79026800000008) (-64.05305499999992 81.78997800000002) (-64.08694500000001 81.79193099999998) (-64.11166399999996 81.79498300000012) (-64.13166799999999 81.799149) (-64.14222699999993 81.80304000000007) (-64.17777999999998 81.81053200000002) (-64.20750399999997 81.81442300000009) (-64.27166699999992 81.82165500000002) (-64.30139200000002 81.82415799999995) (-64.325287 81.8247070000001) (-64.323624 81.81915300000009) (-64.308044 81.81469700000002) (-64.25306699999999 81.8060910000001) (-64.23277299999995 81.80053700000008) (-64.12388599999997 81.768326) (-64.11805700000002 81.7644350000001) (-64.13473499999992 81.75471500000003) (-64.20777900000002 81.74192800000003) (-64.35526999999996 81.72637900000012) (-64.47250399999996 81.72137499999997) (-64.62943999999993 81.72248800000006) (-64.72000100000002 81.72387700000007) (-64.76777600000003 81.72581500000001) (-64.80166599999995 81.72831700000006) (-64.81221 81.73082000000005) (-64.83389299999993 81.73887600000012) (-64.83972199999994 81.74220300000007) (-64.885559 81.75082399999997) (-64.91000400000001 81.7527770000001) (-64.96221899999995 81.75221299999998) (-65.21665999999999 81.74552900000009) (-65.33750899999995 81.73776199999998) (-65.40972899999991 81.72831700000006) (-65.63137799999993 81.70248400000014) (-65.66833499999996 81.70082100000002) (-65.72555499999993 81.70166) (-65.77333099999998 81.70277399999998) (-65.92443799999995 81.70138500000013) (-66.01222199999995 81.69693000000012) (-66.03860500000002 81.692474) (-66.04222099999998 81.69053600000007) (-66.03028899999993 81.6849820000001) (-65.991379 81.68275500000004) (-65.82194499999997 81.68441799999994) (-65.612503 81.6808170000001) (-65.48777799999993 81.68748500000004) (-65.40417500000001 81.69081100000011) (-65.35249299999987 81.69192500000008) (-65.33667000000003 81.68803400000002) (-65.37083399999995 81.67886399999998) (-65.402222 81.67442300000005) (-65.52362099999999 81.65971400000001) (-65.61805699999991 81.64860500000009) (-65.78944399999995 81.63220200000006) (-65.87165799999991 81.62719700000002) (-65.910278 81.62969999999996) (-65.92639199999996 81.63415499999996) (-65.92721599999993 81.63554399999998) (-65.92443799999995 81.63970899999998) (-65.92721599999993 81.645828) (-65.94332899999989 81.65054300000003) (-65.98222399999992 81.65277100000003) (-66.02471899999995 81.65304600000002) (-66.04277000000002 81.651657) (-66.06471299999998 81.64776599999993) (-66.085556 81.64276100000006) (-66.10194399999995 81.6372070000001) (-66.14083899999997 81.62052900000003) (-66.17250100000001 81.61804200000012) (-66.21888699999994 81.61692800000014) (-66.35527000000002 81.61747700000012) (-66.39388999999994 81.61970500000007) (-66.43971299999998 81.62692300000009) (-66.47833300000002 81.62858599999998) (-66.57556199999993 81.626083) (-66.72749299999992 81.6202550000001) (-66.80499299999985 81.615814) (-66.89639299999993 81.6119230000001) (-67.15695199999999 81.60803200000004) (-67.50917099999992 81.60054000000008) (-67.55972300000002 81.599152) (-67.766663 81.59304799999995) (-67.79277000000002 81.58970600000004) (-68.11138900000003 81.56303400000013) (-68.15666199999998 81.56109600000002) (-68.23138399999999 81.56137100000001) (-68.27471899999995 81.56275900000009) (-68.30943300000001 81.56553600000001) (-68.33056599999992 81.56860400000005) (-68.35249299999998 81.57304400000004) (-68.41027799999989 81.58804300000008) (-68.45973199999997 81.597488) (-68.66139199999998 81.633331) (-68.71528599999999 81.64221199999997) (-68.976944 81.68441799999994) (-69.05888399999992 81.6974790000001) (-69.13999899999999 81.70887799999997) (-69.17639200000002 81.71249400000005) (-69.24722299999996 81.71748400000007) (-69.291382 81.71887199999998) (-69.29943800000001 81.71720900000008) (-69.30665599999998 81.71443199999999) (-69.291382 81.707764) (-69.26806599999998 81.70248400000014) (-69.21417200000002 81.6952510000001) (-69.12361099999998 81.68386800000013) (-69.00527999999991 81.66748000000007) (-68.902222 81.65138200000001) (-68.62471 81.60443099999998) (-68.44915800000001 81.57083100000006) (-68.37083399999989 81.55358900000004) (-68.35777299999995 81.54832500000009) (-68.35249299999998 81.54165600000005) (-68.37332200000003 81.53776600000003) (-68.40750099999997 81.53387499999997) (-68.50445599999995 81.53221100000013) (-68.55139199999996 81.532761) (-68.63751200000002 81.53553800000009) (-68.71528599999999 81.53970300000009) (-68.81082199999992 81.54859900000002) (-68.84889199999998 81.54914900000006) (-68.85694899999999 81.54776000000004) (-68.851944 81.54165600000005) (-68.83917200000002 81.536926) (-68.81304899999998 81.5333250000001) (-68.77749599999993 81.52970900000008) (-68.57945299999989 81.51443499999999) (-68.53666699999997 81.51332100000002) (-68.44665499999996 81.51748700000007) (-68.37609899999995 81.52276600000005) (-68.28582799999992 81.52693199999999) (-68.091949 81.5291600000001) (-68.05110199999996 81.53054800000001) (-68.01112399999994 81.533051) (-67.91000399999996 81.54220600000008) (-67.81973299999987 81.54693600000007) (-67.724716 81.55108600000011) (-67.38365199999998 81.56088299999999) (-67.18249500000002 81.56469700000008) (-67.15028399999994 81.56498700000009) (-67.10777300000001 81.56498700000009) (-67.06471299999998 81.56275900000009) (-66.85972600000002 81.54664600000007) (-66.79138199999989 81.54081700000006) (-66.76611299999996 81.53749100000005) (-66.62999000000002 81.51805100000001) (-66.608612 81.51277200000004) (-66.62388599999997 81.50637800000004) (-66.741104 81.49192800000009) (-66.887787 81.48054500000006) (-66.96278399999994 81.4749910000001) (-67.04333499999996 81.46971100000002) (-67.24833699999999 81.44999700000011) (-67.45750399999997 81.42303500000003) (-67.7538909999999 81.39166300000005) (-67.81834400000002 81.385269) (-67.99471999999997 81.368042) (-68.24472000000003 81.33998100000008) (-68.35583500000001 81.32388300000008) (-68.429169 81.31164600000011) (-68.48693800000001 81.30386399999998) (-68.61805700000002 81.29054300000001) (-68.79695100000004 81.2752690000001) (-69.02860999999996 81.25860600000004) (-69.319458 81.26026899999994) (-69.34056099999998 81.26388500000002) (-69.35777300000001 81.26832600000012) (-69.36277799999999 81.26887500000004) (-69.391388 81.27053799999999) (-69.42694099999994 81.26998900000001) (-69.45556599999998 81.26582300000013) (-69.468887 81.259995) (-69.46305799999999 81.25332600000013) (-69.43693499999995 81.24914599999994) (-69.36665299999999 81.24636800000013) (-69.319458 81.24359100000004) (-69.31221 81.24054000000007) (-69.32389799999993 81.23803700000008) (-69.54167199999995 81.21249399999994) (-69.91194199999995 81.18248000000011) (-69.99943499999995 81.17997700000012) (-70.15833999999995 81.18136600000014) (-70.20638999999994 81.17970300000002) (-70.21000700000002 81.17387400000001) (-70.12609899999995 81.16554300000013) (-70.05055199999998 81.16165200000006) (-69.96028100000001 81.16053800000009) (-69.90722700000003 81.16165200000006) (-69.864441 81.16415400000011) (-69.76000999999997 81.17303500000003) (-69.63806199999999 81.17747500000007) (-69.64750699999996 81.172485) (-69.831955 81.13720699999999) (-69.88778699999995 81.12915000000004) (-69.95306399999998 81.12220800000011) (-69.97694399999995 81.11886600000003) (-70.01306199999993 81.10914600000012) (-70.025284 81.10276799999997) (-70.02333099999998 81.10081500000001) (-69.99526999999995 81.09942600000005) (-69.95556599999998 81.09942600000005) (-69.92222599999997 81.10220300000015) (-69.83222999999998 81.11164900000011) (-69.63249200000001 81.13916000000012) (-69.60972600000002 81.14387499999998) (-69.59167500000001 81.14888000000002) (-69.54167199999995 81.16442899999993) (-69.52833599999991 81.16943400000002) (-69.46333300000003 81.18304400000005) (-69.43055699999996 81.18719499999997) (-69.35943600000002 81.19331399999999) (-68.87609900000001 81.2310940000001) (-68.76083399999993 81.23942600000004) (-68.37388599999997 81.266663) (-68.24694799999997 81.2727660000001) (-68.11665299999993 81.28027300000008) (-68.05277999999998 81.28610200000008) (-67.88722199999995 81.30304000000001) (-67.82362399999994 81.31025700000009) (-67.79110700000001 81.31553600000007) (-67.69082600000002 81.32943700000004) (-67.59306299999997 81.34027100000009) (-67.35665899999998 81.36360199999996) (-67.24749799999995 81.37191800000005) (-67.1241609999999 81.37970000000001) (-66.99055499999992 81.38554400000004) (-66.62138399999998 81.41387900000007) (-66.36582899999996 81.434708) (-66.29028299999999 81.44026200000002) (-66.16972399999986 81.44775400000015) (-66.13417099999992 81.45082100000008) (-66.05082700000003 81.45915200000013) (-65.98554999999999 81.46804800000007) (-65.83167999999995 81.484711) (-65.72471599999994 81.49386600000003) (-65.64361600000001 81.49887100000007) (-65.55749500000002 81.50305200000014) (-65.46640000000002 81.50637800000004) (-65.25279199999994 81.51721200000009) (-65.002792 81.53082300000005) (-64.612503 81.54498299999995) (-64.56639099999995 81.5455320000001) (-64.537781 81.54359399999998) (-64.52806099999992 81.54165600000005) (-64.51750199999998 81.53749100000005) (-64.44415299999997 81.49081400000011) (-64.43638599999991 81.47943100000009) (-64.45111099999997 81.4669340000001) (-64.49194299999999 81.44886800000012) (-64.50862099999995 81.44192499999997) (-64.52084400000001 81.4369200000001) (-64.554169 81.42581200000006) (-64.61665299999993 81.40498400000001) (-64.65888999999999 81.39305099999996) (-64.73527499999994 81.37414600000005) (-64.80860899999993 81.36053500000008) (-64.85583500000001 81.35276800000008) (-64.99499499999996 81.33332800000011) (-65.060272 81.326096) (-65.16805999999997 81.30998200000005) (-65.28639199999998 81.28720100000004) (-65.323624 81.27804600000002) (-65.44137599999993 81.25637800000004) (-65.49305700000002 81.25054900000003) (-65.52778599999999 81.24748199999993) (-65.57167099999998 81.24498000000006) (-65.747772 81.23580900000013) (-65.941101 81.22637900000007) (-65.98055999999991 81.22387700000013) (-66.01028400000001 81.22026100000011) (-66.1997219999999 81.18386800000002) (-66.24444599999987 81.17442299999999) (-66.26444999999995 81.16943400000002) (-66.41833500000001 81.12886000000003) (-66.43804899999998 81.12359600000002) (-66.48277299999995 81.10693400000008) (-66.50418099999996 81.09553499999998) (-66.50944500000003 81.08859300000006) (-66.52972399999999 81.07609600000006) (-66.54472399999997 81.07054099999999) (-66.60333300000002 81.05525200000011) (-66.68582199999997 81.03581200000013) (-66.75334199999998 81.021927) (-66.921112 80.99108900000004) (-67.16444399999995 80.94859300000002) (-67.208618 80.94192500000003) (-67.27917500000001 80.93553200000008) (-67.30915800000002 80.93441800000011) (-67.34944199999995 80.93637100000007) (-67.44082599999996 80.93664600000005) (-67.56221 80.93553200000008) (-67.59138499999995 80.93304400000011) (-67.60665899999992 80.92997700000001) (-67.60360700000001 80.92442299999999) (-67.58833300000003 80.91387899999995) (-67.56777999999997 80.90859999999998) (-67.54333500000001 80.90415999999999) (-67.53083799999996 80.89749100000012) (-67.53999299999998 80.89109800000011) (-67.583618 80.87664800000005) (-67.63444500000003 80.86080900000007) (-67.65360999999996 80.85636900000009) (-67.86389199999996 80.83415200000002) (-67.910278 80.8119200000001) (-67.96583599999991 80.797485) (-68.01139799999999 80.78831500000013) (-68.06555200000003 80.7791600000001) (-68.089447 80.776093) (-68.13833599999998 80.772491) (-68.20278899999994 80.76582300000007) (-68.22528099999994 80.76138300000002) (-68.6725009999999 80.66693099999992) (-68.73889199999991 80.64721700000001) (-68.81471299999998 80.62858600000004) (-68.95249899999988 80.60304300000007) (-69.14666699999992 80.52970900000008) (-69.171112 80.51748700000013) (-69.273056 80.46388200000001) (-69.28916899999996 80.45166000000006) (-69.291382 80.44413800000012) (-69.29055800000003 80.43719499999992) (-69.29777499999994 80.42469800000015) (-69.30555700000002 80.41832) (-69.31750499999998 80.41249099999999) (-69.33389299999993 80.40664700000013) (-69.38473499999992 80.39193700000004) (-69.42748999999998 80.38275100000004) (-69.47972099999998 80.37553400000013) (-69.55110200000001 80.36637900000011) (-69.59638999999987 80.36109900000002) (-69.72972099999993 80.35276799999997) (-69.9827729999999 80.344986) (-70.07278399999996 80.34443700000003) (-70.21888699999994 80.34637499999997) (-70.2844389999999 80.35108900000012) (-70.30526699999996 80.35609399999998) (-70.31082199999997 80.36303700000013) (-70.28582799999998 80.37248200000005) (-70.256393 80.38136299999996) (-70.24415599999992 80.38665800000001) (-70.22778299999999 80.40138200000007) (-70.22000100000002 80.41693099999998) (-70.2350009999999 80.42970300000002) (-70.27528399999994 80.44802900000002) (-70.31416300000001 80.46443200000004) (-70.49943499999995 80.51388499999996) (-70.53999299999992 80.52192700000012) (-70.68110699999994 80.54803500000008) (-70.70611600000001 80.55247500000013) (-70.75473 80.55941800000011) (-70.78306599999996 80.56303400000013) (-70.81249999999989 80.56275900000014) (-70.82528699999989 80.55859399999997) (-70.82749899999993 80.55137600000012) (-70.81304899999992 80.544983) (-70.796112 80.54054300000013) (-70.765289 80.53442400000012) (-70.74166899999994 80.53137200000003) (-70.670837 80.51805100000007) (-70.63778699999995 80.50915500000013) (-70.531387 80.47442600000005) (-70.49055499999992 80.46081500000008) (-70.47666900000002 80.45443699999998) (-70.42332499999998 80.42164600000001) (-70.43472299999996 80.39166300000011) (-70.45056199999999 80.38581799999997) (-70.45889299999999 80.38136299999996) (-70.47222899999991 80.368042) (-70.47138999999999 80.36248800000004) (-70.46916199999998 80.35498000000001) (-70.462219 80.34693900000013) (-70.44415300000003 80.34027100000014) (-70.42416400000002 80.33610500000003) (-70.35249299999992 80.32470700000005) (-70.30999800000001 80.31805400000007) (-70.25279199999994 80.31330900000006) (-70.15055799999999 80.29914900000011) (-70.035278 80.27832000000012) (-69.9911039999999 80.2688750000001) (-69.97416699999997 80.26304600000009) (-69.960556 80.2563780000001) (-69.96528599999994 80.2522130000001) (-69.99082899999996 80.24331699999999) (-70.12832600000002 80.19720500000011) (-70.145554 80.19358799999998) (-70.178604 80.1891480000001) (-70.21665999999999 80.18637100000001) (-70.24888599999997 80.18609600000002) (-70.31500199999988 80.18748499999998) (-70.61138899999997 80.19720500000011) (-70.645554 80.19914200000011) (-70.821121 80.19552600000009) (-71.12083399999995 80.17248500000005) (-71.18055699999991 80.16665600000005) (-71.23832699999991 80.15887499999997) (-71.38194299999998 80.13916) (-71.41861 80.13108800000003) (-71.44610599999993 80.12136800000013) (-71.46305799999993 80.11804200000006) (-71.50111400000003 80.11554000000001) (-71.65444899999994 80.11137400000007) (-71.69444299999998 80.11080900000007) (-71.73194899999993 80.11192300000005) (-71.762787 80.11442600000004) (-71.78999299999998 80.11775200000005) (-71.8116609999999 80.12359600000008) (-71.83612099999999 80.13192700000013) (-71.848053 80.14387500000004) (-71.87860099999995 80.16249100000005) (-71.90777600000001 80.17137100000008) (-71.95333900000003 80.180542) (-72.006393 80.18858300000011) (-72.05722000000003 80.19470200000012) (-72.08111600000001 80.19413800000001) (-72.09999099999987 80.19274899999999) (-72.12777699999992 80.18775900000014) (-72.16528299999999 80.18887300000011) (-72.18916300000001 80.19220000000001) (-72.22332799999998 80.20166000000012) (-72.241379 80.20748900000012) (-72.25639299999995 80.21388200000007) (-72.27444500000001 80.21971100000007) (-72.29444899999987 80.22331200000013) (-72.32972699999988 80.22554000000008) (-72.35888699999992 80.22608900000006) (-72.37805199999997 80.22470099999998) (-72.39111300000002 80.22164900000001) (-72.40028399999994 80.2185970000001) (-72.420837 80.21110499999998) (-72.41250600000001 80.20721400000008) (-72.18859899999995 80.16387900000012) (-72.14083900000003 80.15693700000003) (-72.08277900000002 80.15165699999994) (-72.05248999999998 80.149719) (-71.99694799999986 80.14305100000007) (-71.97721899999993 80.13943499999999) (-71.89695699999993 80.11554000000001) (-71.89555399999995 80.11415099999999) (-71.898056 80.10859700000003) (-71.90527299999997 80.10359199999994) (-71.92610200000001 80.0999910000001) (-71.95472699999993 80.09637500000002) (-72.11555499999997 80.0874940000001) (-72.25056499999994 80.08554100000015) (-72.39167799999996 80.08554100000015) (-72.39222699999999 80.08194000000009) (-72.358337 80.06498700000003) (-72.34056099999992 80.059143) (-72.30638099999999 80.05748000000006) (-72.17027299999995 80.05386400000003) (-72.137787 80.05358899999999) (-72.05305499999992 80.05748000000006) (-71.92083699999995 80.06637599999999) (-71.88583399999993 80.06721500000015) (-71.8497309999999 80.06776400000012) (-71.70195000000001 80.06414800000005) (-71.61805700000002 80.06442300000009) (-71.48916600000001 80.0688780000001) (-71.37609899999995 80.07693500000005) (-71.31666599999994 80.08194000000009) (-71.18638599999991 80.09387200000003) (-70.96806300000003 80.11499000000015) (-70.85472099999998 80.12831100000011) (-70.821121 80.13108800000003) (-70.76251200000002 80.13333099999994) (-70.65167199999996 80.13136300000002) (-70.62666300000001 80.13053900000006) (-70.50778200000002 80.09971600000006) (-70.50222799999995 80.09304800000007) (-70.49749800000001 80.08276400000005) (-70.48832699999997 80.05720500000007) (-70.49499500000002 80.05081200000012) (-70.50834699999996 80.04775999999998) (-70.56806899999992 80.04275500000011) (-70.59722899999997 80.0394290000001) (-70.64666699999998 80.03193699999997) (-70.662216 80.02665700000006) (-70.67304999999999 80.02082800000005) (-70.67971799999987 80.0144350000001) (-70.67277499999994 80.00637799999998) (-70.67250100000001 80.00138900000002) (-70.68971299999998 79.99331700000005) (-70.71945199999999 79.98637400000001) (-70.76722699999988 79.98165899999998) (-70.91610700000001 79.974426) (-70.95417800000001 79.97276300000004) (-71.08555599999994 79.96859699999999) (-71.241669 79.96081500000003) (-71.27027899999996 79.95721400000014) (-71.40110800000002 79.93553199999991) (-71.41639700000002 79.93026700000007) (-71.45361299999996 79.90637200000003) (-71.46055599999988 79.90138200000001) (-71.45889299999993 79.89498900000007) (-71.43859900000001 79.88998399999997) (-71.4158329999999 79.88665800000012) (-71.394455 79.884995) (-71.35278299999993 79.88693200000006) (-71.33860800000002 79.88859600000006) (-71.16833500000001 79.914154) (-71.10972599999997 79.91526799999997) (-71.06304899999998 79.91165200000012) (-70.94471699999997 79.89415000000008) (-70.92582700000003 79.89027400000003) (-70.910278 79.88581800000009) (-70.91639700000002 79.87942499999997) (-71.00584399999997 79.81971700000008) (-71.11665299999999 79.78970300000009) (-71.13612399999994 79.78498800000006) (-71.18388400000003 79.77748100000008) (-71.212784 79.774429) (-71.34361299999995 79.76388500000013) (-71.37609899999995 79.76081800000003) (-71.400284 79.75749200000001) (-71.44444299999992 79.74165300000004) (-71.46333300000003 79.73692300000005) (-71.49110399999995 79.73332199999999) (-71.69915800000001 79.70999100000012) (-71.73944099999994 79.70721400000002) (-71.781113 79.70610000000005) (-71.81750499999998 79.70359799999994) (-71.92250099999995 79.69552599999997) (-71.99027999999998 79.68914800000005) (-72.09666400000003 79.6749880000001) (-72.21777299999991 79.659988) (-72.26722699999993 79.65914900000001) (-72.28721599999994 79.659988) (-72.31777999999991 79.66720599999996) (-72.33084100000002 79.67248499999994) (-72.34805299999988 79.67804000000007) (-72.36721799999992 79.68165600000009) (-72.39222699999999 79.68359400000003) (-72.425003 79.68553199999997) (-72.46722399999993 79.684708) (-72.57417299999992 79.6791530000001) (-72.61944599999993 79.67776500000002) (-72.66139199999998 79.67719999999997) (-72.69722000000002 79.67804000000007) (-72.72999599999997 79.67970300000013) (-72.75611900000001 79.68220500000007) (-72.91278099999994 79.70220899999998) (-72.93276999999995 79.70637500000004) (-72.94444299999998 79.7102660000001) (-73.06277499999999 79.79942299999999) (-73.06111099999998 79.805252) (-73.04861499999998 79.8083190000001) (-73.02749599999999 79.80693100000002) (-73.01722699999993 79.80470300000002) (-73.00334199999998 79.80304000000012) (-72.97917199999995 79.80220000000008) (-72.945831 79.80415299999999) (-72.92443799999995 79.80636600000014) (-72.912216 79.80941800000005) (-72.90249599999993 79.81526200000008) (-72.92639200000002 79.81944299999998) (-73.05915800000002 79.82554600000009) (-73.09167500000001 79.82638500000007) (-73.1783289999999 79.822769) (-73.21806300000003 79.822769) (-73.28500399999996 79.82609600000012) (-73.34861799999999 79.83027600000014) (-73.37138399999998 79.83305400000012) (-73.39695699999999 79.834991) (-73.43360899999999 79.83581500000014) (-73.57640100000003 79.83276400000011) (-73.66777000000002 79.82971200000003) (-73.74527 79.82832300000001) (-73.78028899999998 79.82777400000009) (-73.8533329999999 79.82916300000005) (-73.86694299999999 79.830826) (-73.86471599999999 79.83581500000014) (-73.85360700000001 79.83970600000004) (-73.80166600000001 79.84637500000008) (-73.74554399999994 79.849152) (-73.74249299999985 79.84999099999993) (-73.74694799999997 79.85415599999993) (-73.7686159999999 79.85887099999997) (-73.89083900000003 79.87525900000003) (-73.94583099999988 79.88165300000009) (-74.01028400000001 79.88581800000009) (-74.11749299999997 79.88888500000002) (-74.15695199999993 79.88888500000002) (-74.23889199999996 79.8872070000001) (-74.28361499999994 79.88136300000008) (-74.30610699999994 79.87692300000003) (-74.383621 79.8685910000001) (-74.41528299999999 79.86526500000002) (-74.57640100000003 79.85693400000014) (-74.66749599999997 79.85359199999999) (-74.79527299999995 79.85081500000013) (-74.83306900000002 79.849152) (-74.84638999999999 79.84721400000006) (-74.84611499999994 79.84387200000009) (-74.71665999999999 79.79693600000007) (-74.69943199999994 79.792755) (-74.68388400000003 79.78997800000008) (-74.65499899999998 79.78887900000012) (-74.48889200000002 79.79165599999999) (-74.44499200000001 79.79470800000013) (-74.39222699999993 79.80026199999992) (-74.35166899999996 79.80247500000007) (-74.30943299999996 79.80331400000006) (-74.23638899999997 79.80192599999992) (-74.10638399999988 79.7955320000001) (-73.95140100000003 79.78442400000012) (-73.71472199999994 79.76638800000012) (-73.51083399999999 79.75637799999998) (-73.38473499999992 79.74887100000007) (-73.36665299999999 79.71804800000007) (-73.36082499999986 79.7127690000001) (-73.295547 79.688583) (-73.25695799999988 79.67804000000007) (-73.20666499999999 79.66360500000013) (-73.18888900000002 79.65803500000004) (-73.17443800000001 79.65165700000006) (-73.16833499999996 79.6461030000001) (-73.1260989999999 79.56944300000004) (-73.12582399999997 79.55831899999998) (-73.12887599999999 79.55415300000004) (-73.13583399999999 79.54971300000005) (-73.14862099999999 79.54359399999998) (-73.16305499999999 79.53887899999995) (-73.18083199999995 79.53414900000013) (-73.24722299999996 79.520828) (-73.29611199999994 79.5127720000001) (-73.35388199999994 79.50582900000012) (-73.44638099999992 79.49914599999994) (-73.65777600000001 79.49636800000013) (-73.69305400000002 79.49693300000001) (-73.729172 79.49859600000008) (-73.75805700000001 79.5002750000001) (-73.77999899999998 79.50305200000003) (-73.79194599999994 79.50665300000009) (-73.81722999999994 79.51554900000002) (-73.837784 79.52748099999997) (-73.86389200000002 79.54026799999997) (-73.87666299999995 79.54470800000001) (-73.91610699999995 79.55247500000013) (-73.95028699999989 79.55525200000005) (-73.965012 79.55470300000007) (-73.98889200000002 79.55192599999998) (-74.00111399999997 79.54582199999999) (-74.00029 79.54165600000005) (-73.99694799999997 79.53553799999992) (-73.98944099999994 79.52859500000011) (-73.96861299999989 79.5169370000001) (-73.95916699999992 79.50888100000003) (-73.94999699999994 79.49386600000008) (-73.94972199999995 79.47998000000007) (-73.95306399999998 79.47276299999999) (-73.96194500000001 79.46693399999998) (-73.98332199999993 79.45555100000013) (-73.99804699999999 79.45138500000007) (-74.02362099999999 79.44693000000007) (-74.08139 79.44053600000001) (-74.11610399999995 79.43803400000013) (-74.160278 79.43637100000001) (-74.19833399999999 79.43609599999996) (-74.54415899999992 79.43803400000013) (-74.61749299999985 79.43858300000005) (-74.67361499999993 79.44413800000012) (-74.6885989999999 79.44693000000007) (-74.93167099999994 79.49887100000012) (-74.93241099999989 79.50479899999999) (-74.94193999999999 79.51054399999998) (-74.96444699999995 79.51304600000003) (-74.987503 79.509995) (-75.04333499999996 79.49581900000004) (-75.06027199999988 79.49081399999994) (-75.05943300000001 79.48387100000014) (-74.99526999999995 79.453598) (-74.98306299999996 79.44970699999993) (-74.94888299999997 79.440811) (-74.91221599999994 79.42970300000002) (-74.89723199999997 79.42330899999996) (-74.88444499999997 79.41609200000005) (-74.8830569999999 79.4083250000001) (-74.91111799999999 79.39387499999998) (-74.93499799999995 79.38526900000005) (-74.95194999999995 79.38026400000001) (-75 79.37548800000008) (-75.016953 79.37414600000005) (-75.058334 79.37387100000007) (-75.21389799999997 79.37637300000011) (-75.31361400000003 79.379974) (-75.410278 79.38415500000008) (-75.531387 79.39248700000007) (-75.69526699999994 79.409988) (-75.79972800000002 79.43136600000014) (-75.90777600000001 79.42608600000005) (-75.93138099999999 79.42359899999997) (-75.95750399999997 79.42608600000005) (-75.985275 79.42970300000002) (-76.031387 79.43830900000012) (-76.04916400000002 79.443039) (-76.09750399999996 79.46192900000011) (-76.10916099999992 79.46775800000012) (-76.11527999999993 79.47248799999994) (-76.12416099999996 79.47637900000001) (-76.13861099999991 79.48136900000009) (-76.17582700000003 79.488876) (-76.203888 79.49247700000006) (-76.261124 79.49775699999998) (-76.3202819999999 79.50138900000007) (-76.636124 79.51944000000009) (-76.66528299999999 79.520828) (-76.71833800000002 79.51998900000001) (-76.79527300000001 79.51138300000008) (-76.83444199999997 79.50888100000003) (-76.872772 79.50860600000004) (-76.90583799999996 79.50972000000002) (-77.05027799999999 79.51860000000005) (-77.06973299999999 79.52388000000008) (-77.09277299999991 79.53970300000015) (-77.112213 79.54525800000005) (-77.14250199999987 79.54748500000005) (-77.16055299999994 79.54359399999998) (-77.19137599999993 79.51110800000009) (-77.18443300000001 79.50360099999995) (-77.178604 79.4997100000001) (-77.13444499999997 79.49026500000002) (-77.07167099999992 79.4869230000001) (-76.895554 79.48054500000012) (-76.86721799999992 79.47970599999996) (-76.612503 79.4747010000001) (-76.406387 79.47360200000014) (-76.20472699999999 79.46138000000013) (-76.17916899999989 79.45971700000007) (-76.15943899999996 79.4563750000001) (-76.14334100000002 79.44999699999994) (-76.13806199999993 79.44331399999999) (-76.13890100000003 79.44108600000004) (-76.14999399999999 79.43775900000009) (-76.15916400000003 79.43609599999996) (-76.18998699999997 79.4333190000001) (-76.208054 79.42970300000002) (-76.20556599999998 79.42469800000015) (-76.16749600000003 79.39610299999993) (-76.15750100000002 79.39166300000011) (-76.11721799999998 79.38443000000012) (-76.083328 79.37886000000003) (-76.05915799999997 79.37498500000004) (-75.902222 79.35720799999996) (-75.88194299999998 79.35331700000012) (-75.879166 79.35137899999995) (-75.88999899999988 79.34803799999992) (-75.90278599999988 79.34609999999998) (-76.08667000000003 79.33221400000002) (-76.12332200000003 79.33110000000005) (-76.35110499999996 79.3419340000001) (-76.68277 79.35276799999997) (-76.71777299999991 79.35331700000012) (-76.79055799999998 79.35331700000012) (-76.82917800000001 79.35081500000001) (-76.86971999999997 79.34942600000005) (-76.89416499999993 79.35331700000012) (-76.95944199999997 79.36720300000007) (-77.01889 79.38192700000013) (-77.07640100000003 79.3983310000001) (-77.09028599999994 79.40554800000001) (-77.10555999999991 79.41609200000005) (-77.108337 79.4208220000001) (-77.21250900000001 79.44775400000003) (-77.32640099999998 79.45416300000005) (-77.35916099999992 79.45555100000013) (-77.38612399999994 79.45277400000003) (-77.39750700000002 79.44720500000005) (-77.39500399999997 79.44026200000008) (-77.38444500000003 79.43304400000005) (-77.26222199999995 79.37248200000005) (-77.17250099999995 79.33638000000008) (-77.158615 79.329163) (-77.16389499999997 79.32470700000005) (-77.18777499999999 79.32276900000011) (-77.22805800000003 79.32165500000013) (-77.260559 79.32276900000011) (-77.31722999999994 79.32777399999998) (-77.36721799999998 79.33610500000009) (-77.38639799999999 79.33859300000006) (-77.41361999999998 79.34165999999999) (-77.46611000000001 79.34609999999998) (-77.47778299999993 79.34609999999998) (-77.59611499999994 79.34582499999999) (-77.63417099999992 79.34553499999998) (-77.70750399999997 79.34332300000005) (-77.73999000000003 79.34443700000008) (-77.76972999999998 79.34637500000002) (-77.81973299999999 79.351654) (-77.90527299999991 79.36526500000014) (-77.92250100000001 79.36637900000011) (-77.95722999999998 79.36387600000012) (-78.05139199999996 79.35470600000008) (-78.05888399999998 79.34942600000005) (-78.04361 79.34443700000008) (-78.02139299999993 79.33998099999997) (-77.90333599999997 79.322495) (-77.87609900000001 79.31971700000003) (-77.846115 79.31776400000007) (-77.80999800000001 79.316666) (-77.76000999999997 79.31637599999999) (-77.726944 79.31749000000013) (-77.65083300000003 79.31776400000007) (-77.62443499999995 79.31553600000012) (-77.52917500000001 79.30525200000011) (-77.47860700000001 79.29664600000001) (-77.32223499999998 79.26748700000002) (-77.32917800000001 79.26138300000014) (-77.34138499999995 79.25943000000001) (-77.35804699999994 79.25776700000011) (-77.42222600000002 79.25471499999998) (-77.45306399999998 79.25248700000003) (-77.48222399999997 79.24887100000001) (-77.49694799999992 79.24581900000004) (-77.48805199999998 79.24498000000011) (-77.424713 79.24609400000008) (-77.35833699999995 79.24999999999994) (-77.19193999999999 79.26388500000007) (-76.99972500000001 79.27331500000014) (-76.67138699999992 79.27748100000002) (-76.23777799999993 79.27110300000004) (-76.16805999999997 79.26998900000007) (-76.136124 79.2686000000001) (-76.10583499999996 79.26582300000001) (-76.06861900000001 79.25749200000007) (-76.05277999999998 79.25109900000012) (-76.03443900000002 79.24581900000004) (-75.99194299999999 79.23637400000001) (-75.93888900000002 79.23027000000013) (-75.80749500000002 79.22776800000008) (-75.77722199999994 79.22747800000008) (-75.73443600000002 79.22943100000003) (-75.67527799999999 79.23637400000001) (-75.63778699999995 79.2394260000001) (-75.60833699999995 79.23997500000007) (-75.465012 79.23997500000007) (-75.4058379999999 79.23748799999998) (-75.08306899999997 79.23526000000004) (-74.87609900000001 79.23803700000013) (-74.80027799999999 79.24054000000007) (-74.777222 79.24026500000008) (-74.52555799999999 79.22720300000003) (-74.49694799999997 79.22499099999999) (-74.47084000000001 79.22164900000007) (-74.464722 79.21998600000012) (-74.46722399999999 79.21554600000013) (-74.47416699999997 79.211929) (-74.52027900000002 79.20304899999996) (-74.57194499999991 79.19609100000014) (-74.601944 79.19274899999999) (-74.75805700000001 79.18553200000008) (-74.791946 79.18275499999999) (-74.81750499999993 79.17886400000009) (-74.82695000000001 79.17414900000006) (-74.81916799999993 79.16775500000006) (-74.795547 79.16360500000002) (-74.76695299999994 79.16137700000007) (-74.67250100000001 79.15693700000003) (-74.61749299999985 79.15138199999996) (-74.44583099999994 79.065811) (-74.43666100000002 79.0577550000001) (-74.44305399999996 79.04693600000007) (-74.45527600000003 79.04165599999999) (-74.47193900000002 79.036652) (-74.51445000000001 79.02859500000005) (-74.54388399999999 79.02526900000004) (-74.57833900000003 79.02331499999997) (-74.65417500000001 79.02221700000007) (-74.72500599999995 79.02276600000005) (-74.96000700000002 79.02832000000001) (-75.116104 79.03581200000013) (-75.24305700000002 79.043045) (-75.62666299999995 79.06608600000004) (-75.65556300000003 79.06832899999995) (-75.76333599999998 79.08055100000013) (-75.88528400000001 79.09748800000011) (-75.89138799999995 79.10220300000015) (-75.88722199999995 79.12831100000011) (-75.880829 79.134995) (-75.85665899999998 79.13970899999993) (-75.84861799999999 79.14498900000001) (-75.85777299999995 79.15220599999992) (-75.94444299999992 79.17303500000008) (-76.04777499999994 79.19220000000007) (-76.07167099999992 79.19609100000014) (-76.098053 79.199142) (-76.132767 79.19970699999999) (-76.30943300000001 79.19081100000005) (-76.51916499999999 79.19026200000013) (-76.85916099999997 79.18525700000009) (-76.97332799999992 79.18331899999993) (-77.04499800000002 79.18331899999993) (-77.08306900000002 79.18359399999997) (-77.11166399999996 79.18498200000005) (-77.16749600000003 79.18997200000013) (-77.20500199999998 79.1952510000001) (-77.250565 79.19802900000008) (-77.38890100000003 79.19970699999999) (-77.51083399999999 79.194977) (-77.54804999999993 79.19442700000013) (-77.64250199999992 79.19970699999999) (-77.695267 79.20471200000003) (-77.74999999999989 79.20832800000011) (-77.77749599999993 79.20887800000014) (-77.81750499999998 79.207764) (-78.15888999999999 79.18997200000013) (-78.21362299999998 79.18359399999997) (-78.23332199999999 79.17886400000009) (-78.24583399999995 79.17469800000003) (-78.25389100000001 79.169983) (-78.25306699999999 79.16442899999998) (-78.22860700000001 79.16053800000009) (-78.181671 79.15942400000012) (-78.08473200000003 79.16804500000006) (-78.056107 79.17192100000011) (-78.02639799999997 79.17469800000003) (-77.98889200000002 79.17747500000013) (-77.912216 79.17942800000003) (-77.84277299999997 79.1785890000001) (-77.47193900000002 79.16775500000006) (-77.23777799999999 79.15693700000003) (-77.20861799999994 79.15470900000008) (-77.181107 79.15386999999993) (-77.01861599999995 79.15359500000011) (-76.841949 79.15359500000011) (-76.70611599999995 79.15304599999996) (-76.63999899999999 79.15109300000006) (-76.61082499999992 79.14915500000012) (-76.48472599999997 79.13610800000009) (-76.43055700000002 79.132202) (-76.31973299999993 79.12469500000009) (-76.26000999999991 79.121918) (-76.23361199999994 79.12164299999995) (-76.19137599999993 79.12359600000008) (-76.15972899999997 79.122208) (-76.13667299999997 79.11914100000007) (-76.081955 79.09971600000011) (-76.0850069999999 79.09332300000011) (-76.09999099999987 79.08776899999998) (-76.11665299999993 79.08332800000005) (-76.14666699999998 79.07777400000003) (-76.17054699999989 79.07582100000008) (-76.21000699999996 79.0747070000001) (-76.26501499999995 79.07443200000012) (-76.36000100000001 79.07832300000001) (-76.515015 79.08581500000008) (-76.57556199999999 79.08943200000004) (-76.63722200000001 79.09054600000002) (-76.67639199999996 79.08943200000004) (-76.82833900000003 79.08276400000011) (-76.99638399999998 79.0747070000001) (-77.07333399999993 79.07083100000006) (-77.15278599999999 79.06608600000004) (-77.223053 79.06053200000002) (-77.32695000000001 79.0516510000001) (-77.35555999999997 79.04832500000003) (-77.42971799999992 79.03720099999998) (-77.44943199999994 79.03276099999994) (-77.464722 79.02777100000009) (-77.49499499999996 79.01776100000001) (-77.52917500000001 79.01805100000001) (-77.69305400000002 79.03360000000009) (-77.71972700000003 79.036652) (-77.74221799999992 79.04193099999998) (-77.78306600000002 79.06248499999998) (-77.79998799999993 79.06666600000005) (-77.84973100000002 79.06971700000008) (-77.91972399999992 79.0688780000001) (-78.03500400000001 79.06553600000001) (-78.10333300000002 79.06608600000004) (-78.13500999999997 79.06749000000002) (-78.16528299999993 79.06999200000007) (-78.214447 79.07527199999998) (-78.23416099999986 79.07832300000001) (-78.28999299999998 79.08332800000005) (-78.35110500000002 79.08638000000013) (-78.42527799999999 79.08305400000012) (-78.67138699999998 79.07193000000001) (-78.81834399999997 79.06944299999998) (-78.86000099999995 79.06721499999998) (-78.89138799999989 79.06330900000012) (-78.87943999999993 79.06025699999998) (-78.69248999999996 79.05859400000008) (-78.58833299999998 79.059143) (-78.40527299999997 79.06498700000003) (-78.28388999999999 79.06666600000005) (-78.23638899999997 79.06498700000003) (-78.15972899999997 79.05108600000005) (-78.108337 79.04664600000001) (-78.07055700000001 79.04664600000001) (-77.96611000000001 79.049149) (-77.86111499999987 79.049149) (-77.829453 79.04803500000003) (-77.7994379999999 79.0452580000001) (-77.785553 79.04109200000005) (-77.70834400000001 79.01304600000014) (-77.70333900000003 79.00694300000004) (-77.71665999999999 79.00332600000007) (-77.79611199999994 78.98858600000011) (-77.83500700000002 78.97943100000003) (-77.94694500000003 78.95166) (-77.94638099999992 78.94581599999998) (-77.95249899999993 78.93969700000014) (-78.04028299999999 78.90609700000005) (-78.14750699999996 78.86526500000008) (-78.28222700000003 78.80386400000009) (-78.28999299999998 78.79914900000006) (-78.29722600000002 78.78887900000012) (-78.29611199999994 78.783051) (-78.285553 78.77581800000002) (-78.26945499999994 78.77249100000006) (-78.24804699999993 78.770264) (-78.21556099999992 78.77053799999993) (-78.19610599999993 78.77221700000013) (-78.16833499999996 78.78082300000005) (-78.15972899999997 78.78498800000006) (-78.15943900000002 78.78997800000013) (-78.14584399999995 78.80081200000001) (-78.12943999999999 78.81219499999997) (-78.1052699999999 78.82859800000006) (-78.04276999999996 78.861649) (-78.0291749999999 78.86747700000012) (-77.902222 78.91276600000009) (-77.88722200000001 78.91775500000006) (-77.75167799999997 78.95748900000001) (-77.71194499999996 78.96609500000011) (-77.689438 78.96859699999999) (-77.52639799999997 78.97915600000005) (-77.37027 78.98442100000011) (-77.25834699999996 78.98637400000007) (-77.17749000000003 78.98970000000008) (-77.10749799999996 78.99552900000009) (-77.078888 78.99887100000007) (-77.02610799999997 79.00665299999997) (-76.96028100000001 79.01277200000004) (-76.75418099999996 79.02777100000009) (-76.710556 79.02832000000001) (-76.68331899999998 79.02777100000009) (-76.42416399999996 79.022491) (-76.36138900000003 79.01971400000014) (-75.98971599999993 78.99552900000009) (-75.73222399999997 78.96914700000002) (-75.72027600000001 78.96554599999996) (-75.769455 78.93997199999995) (-75.781113 78.934708) (-75.79695100000004 78.92970300000013) (-75.82556199999999 78.926086) (-75.85861199999994 78.92330900000007) (-75.896118 78.92082199999999) (-76.09527600000001 78.91026299999999) (-76.25 78.90220599999998) (-76.28721599999994 78.89971900000012) (-76.31555200000003 78.89610300000004) (-76.335556 78.89166300000005) (-76.37554899999992 78.88275099999998) (-76.415009 78.87387099999995) (-76.44610599999993 78.86387600000006) (-76.45638999999994 78.8577580000001) (-76.46000700000002 78.8519290000001) (-76.4583439999999 78.84498600000012) (-76.44027699999992 78.8394320000001) (-76.41194200000001 78.83720399999999) (-76.39445499999994 78.84082000000001) (-76.39111300000002 78.84387200000015) (-76.37470999999988 78.85108900000006) (-76.34472700000003 78.85887100000002) (-76.33000199999998 78.861649) (-76.231674 78.87914999999998) (-76.20472699999999 78.88108800000009) (-76.17832900000002 78.88026400000012) (-76.15834000000001 78.87914999999998) (-76.133331 78.87664800000005) (-76.07749899999999 78.87303200000002) (-75.97500600000001 78.87275699999998) (-75.79167199999995 78.88415500000002) (-75.46112099999999 78.89137299999999) (-75.316101 78.89221199999997) (-75.29222099999993 78.89027400000003) (-75.18055700000002 78.87914999999998) (-74.964722 78.8560940000001) (-74.77500900000001 78.82998700000007) (-74.760559 78.82360799999998) (-74.75279199999994 78.81694000000005) (-74.71972699999998 78.70748900000007) (-74.72721899999993 78.70138500000002) (-74.75584400000002 78.69802900000002) (-74.823059 78.69747899999999) (-74.84333799999996 78.69303900000011) (-74.86999499999996 78.67581200000012) (-74.86944599999993 78.6685940000001) (-74.85777300000001 78.63610799999998) (-74.81945799999988 78.62747200000007) (-74.78999299999998 78.5913700000001) (-74.862213 78.56721500000009) (-74.87805200000003 78.56248500000004) (-75.02416999999991 78.53193700000008) (-75.04804999999999 78.52804600000002) (-75.07250999999991 78.52777100000003) (-75.079453 78.53387500000002) (-75.10139499999997 78.53776600000009) (-75.13137799999993 78.539154) (-75.16722099999987 78.53970300000015) (-75.200287 78.5374910000001) (-75.21972699999998 78.53305100000006) (-75.235275 78.52804600000002) (-75.26167299999997 78.52331500000008) (-75.29055799999992 78.52053799999999) (-75.479446 78.50999500000006) (-75.83000199999998 78.50471500000015) (-75.88833599999992 78.506104) (-75.96501199999989 78.51081800000009) (-75.98999000000003 78.51388500000002) (-76.03056300000003 78.52110300000004) (-76.07305899999994 78.52970900000014) (-76.09555099999994 78.53360000000004) (-76.12027 78.53665200000012) (-76.15110799999997 78.538589) (-76.40444899999989 78.54803500000014) (-76.43721 78.54859900000008) (-76.46888699999994 78.54553199999998) (-76.64277599999997 78.52832000000012) (-76.68443300000001 78.52221700000001) (-76.691101 78.5188750000001) (-76.69276400000001 78.51470899999998) (-76.693604 78.50972000000002) (-76.6849979999999 78.50582900000012) (-76.66833500000001 78.50387599999999) (-76.64584400000001 78.50277700000004) (-76.53999299999998 78.50332599999996) (-76.46833800000002 78.50526400000012) (-76.36471599999993 78.51332100000008) (-76.32472200000001 78.51527400000003) (-76.289444 78.51554900000002) (-76.26194800000002 78.51361100000008) (-76.24305700000002 78.5122070000001) (-76.12499999999994 78.49414100000013) (-76.11416599999995 78.48831200000012) (-76.11277799999988 78.4810940000001) (-76.10888699999998 78.47499099999999) (-76.10055499999999 78.468323) (-76.08167999999995 78.4644320000001) (-76.05749500000002 78.46192900000011) (-75.761124 78.44386299999996) (-75.61721799999998 78.43803400000013) (-75.49888599999997 78.43304400000005) (-75.443604 78.430542) (-75.41082799999992 78.4266510000001) (-75.26972999999992 78.4041600000001) (-75.08999599999999 78.36886600000003) (-75.031387 78.33137500000004) (-75.03832999999992 78.32554600000003) (-75.05194099999989 78.315811) (-75.0625 78.309708) (-75.08667000000003 78.30636600000008) (-75.18998699999997 78.29971300000011) (-75.22193900000002 78.30026200000003) (-75.24610899999993 78.303314) (-75.27305599999988 78.30554200000012) (-75.30749500000002 78.30554200000012) (-75.35861199999994 78.30165100000005) (-75.37721299999998 78.29664600000001) (-75.38500999999991 78.29136700000004) (-75.39222699999993 78.28526299999999) (-75.39805599999994 78.272491) (-75.479172 78.22221400000012) (-75.49415599999998 78.21720900000008) (-75.51333599999992 78.21276900000004) (-75.58250399999991 78.201096) (-75.61361699999992 78.19802900000008) (-75.65028399999994 78.19693000000012) (-75.67944299999999 78.19831800000003) (-75.77639799999997 78.21054100000009) (-75.90249599999993 78.22415200000006) (-75.98554999999993 78.22997999999995) (-76.15722700000003 78.24054000000012) (-76.18888899999996 78.24108900000004) (-76.22582999999997 78.23997500000007) (-76.291946 78.23442100000005) (-76.32444799999996 78.23275799999999) (-76.36138900000003 78.23165899999998) (-76.39306599999998 78.23220800000013) (-76.47471599999994 78.23942599999992) (-76.5202789999999 78.24552900000009) (-76.54804999999988 78.24832200000009) (-76.57417299999992 78.24971) (-76.60833699999995 78.24941999999999) (-76.63055400000002 78.24775700000004) (-76.83168 78.23082000000005) (-76.85526999999996 78.22747800000008) (-76.88806199999999 78.21804800000001) (-76.89862099999993 78.21249400000005) (-76.912216 78.201096) (-76.90834000000001 78.19552599999992) (-76.88333099999994 78.19192500000008) (-76.68859900000001 78.16886900000003) (-76.664444 78.1660920000001) (-76.64167800000001 78.16442900000004) (-76.53778099999994 78.15832499999999) (-76.02139299999999 78.13804600000003) (-75.76390099999998 78.13165300000009) (-75.73554999999999 78.1308140000001) (-75.62193300000001 78.1244200000001) (-75.59722899999997 78.12081900000004) (-75.58138999999994 78.115814) (-75.57556199999993 78.1077580000001) (-75.575287 78.10137900000007) (-75.58889799999997 78.0894320000001) (-75.59916699999991 78.08332800000005) (-75.69276399999995 78.03997800000008) (-75.70750399999991 78.03498800000006) (-75.723053 78.03082300000005) (-75.761124 78.02249100000006) (-75.80943300000001 78.00833100000011) (-75.83860800000002 77.99832200000009) (-75.922775 77.95665000000008) (-75.96501199999989 77.97303799999992) (-75.98416099999986 77.97747800000013) (-76.15722700000003 78.01249700000005) (-76.214722 78.01527399999992) (-76.24610899999993 78.01582300000007) (-76.27667200000002 78.01277200000004) (-76.30305499999997 78.00943000000012) (-76.44471699999991 77.98858600000011) (-76.466949 77.98471099999995) (-76.48138399999993 77.97970600000008) (-76.49194299999999 77.96859700000005) (-76.49972500000001 77.958328) (-76.52610800000002 77.94914200000005) (-76.54834 77.94497700000005) (-76.59583999999995 77.93969700000014) (-76.66999800000002 77.93637100000012) (-76.69444299999986 77.93719500000009) (-76.73055999999991 77.93609600000008) (-76.75723299999999 77.93331900000004) (-76.78028899999993 77.92997700000006) (-76.80249000000003 77.9202580000001) (-76.80555700000002 77.91720599999996) (-76.80694599999993 77.91304000000008) (-76.825287 77.90832500000005) (-76.86221299999994 77.90277100000003) (-76.93110699999994 77.90138200000007) (-76.95973199999997 77.90248100000002) (-76.98611499999993 77.90470899999997) (-77.03639199999992 77.90971400000001) (-77.07778899999994 77.915817) (-77.08917199999996 77.91970800000007) (-77.09527600000001 77.92719999999997) (-77.104172 77.934418) (-77.12026999999989 77.93914800000005) (-77.1600039999999 77.94609100000002) (-77.21083099999998 77.94914200000005) (-77.24444599999998 77.94859300000007) (-77.27223200000003 77.94636500000013) (-77.29834 77.9427490000001) (-77.33612099999999 77.94081099999994) (-77.83889799999997 77.9427490000001) (-77.99749800000001 77.95721400000002) (-78.03694200000001 77.96638499999995) (-78.14083899999991 77.9852600000001) (-78.162216 77.98831200000001) (-78.23750299999995 77.99581899999998) (-78.26083399999993 77.99525499999999) (-78.41139199999992 77.91775500000011) (-78.420837 77.9124910000001) (-78.42639199999996 77.90637200000009) (-78.41972399999997 77.89888000000013) (-78.41055299999994 77.89221199999997) (-78.33084099999991 77.8685910000001) (-78.31710799999996 77.865814) (-78.28250099999997 77.86276200000009) (-78.2602839999999 77.86137400000001) (-78.17388900000003 77.859985) (-78.13945000000001 77.85720800000013) (-77.97193900000002 77.80720499999995) (-77.95861799999989 77.80220000000008) (-77.947769 77.79637100000008) (-77.94082600000002 77.76554900000002) (-77.94055199999997 77.759995) (-77.98110999999989 77.70138500000007) (-77.92027299999995 77.66998300000012) (-77.882767 77.661652) (-77.86277799999999 77.65637200000015) (-77.74276699999996 77.62220800000011) (-77.724716 77.61331200000001) (-77.71861299999995 77.60582000000005) (-77.72305299999994 77.59915200000006) (-77.73083500000001 77.59721400000012) (-77.87222300000002 77.56832900000012) (-77.952225 77.5558170000001) (-77.95834399999995 77.52970900000014) (-77.94444299999998 77.51138300000014) (-77.94610599999999 77.50471499999998) (-77.94860799999998 77.50193800000011) (-77.981674 77.48637400000001) (-77.99499499999996 77.4810940000001) (-78.25666799999993 77.38192699999996) (-78.303879 77.37330600000007) (-78.69055200000003 77.31553599999995) (-78.741104 77.30941800000005) (-78.777222 77.30720500000007) (-78.80665599999998 77.30720500000007) (-78.83416699999992 77.30831900000004) (-78.839722 77.31025699999998) (-78.83306900000002 77.31498700000003) (-78.78611799999999 77.33581500000008) (-78.73388699999998 77.36276200000003) (-78.726944 77.36747700000006) (-78.725281 77.37109400000003) (-78.72778299999999 77.37525900000003) (-78.76444999999995 77.3808140000001) (-78.7844389999999 77.3808140000001) (-78.816666 77.37803600000012) (-78.84111000000001 77.37442000000004) (-78.86166399999996 77.37025500000004) (-78.89805599999994 77.36080900000007) (-78.92027300000001 77.35081500000007) (-78.93998699999992 77.33888200000001) (-78.94804399999998 77.33248900000007) (-78.95556599999992 77.32832299999995) (-78.96833800000002 77.32331799999992) (-79.00418099999996 77.31387300000006) (-79.083328 77.29998799999998) (-79.139725 77.2935940000001) (-79.17138699999987 77.290817) (-79.20722999999998 77.28831500000013) (-79.270554 77.28692600000011) (-79.32167099999992 77.28858900000006) (-79.37332199999997 77.29304499999995) (-79.49333200000001 77.30442800000014) (-79.63137799999998 77.31666600000005) (-79.653885 77.318604) (-79.71221899999995 77.31832899999995) (-79.83666999999997 77.30693100000013) (-79.86082499999998 77.303314) (-79.88194299999998 77.29971300000011) (-79.896118 77.29582200000004) (-79.92332499999992 77.28526300000004) (-79.96055599999988 77.2769320000001) (-79.98832700000003 77.27360499999998) (-80.01916499999993 77.27221700000007) (-80.04249599999997 77.27276600000005) (-80.45611600000001 77.29609700000009) (-80.75334199999992 77.33055100000013) (-80.77583300000003 77.334427) (-80.87971499999992 77.35304300000001) (-81.00556899999992 77.37719700000014) (-81.015289 77.38136300000002) (-81.019455 77.39276100000006) (-81.027222 77.39804100000009) (-81.03527799999995 77.40109300000006) (-81.09527600000001 77.411926) (-81.12110899999993 77.41360500000002) (-81.15083300000003 77.41360500000002) (-81.2077789999999 77.41581700000006) (-81.25473 77.4205320000001) (-81.27749599999993 77.42442299999999) (-81.29444899999993 77.42915300000004) (-81.31054699999999 77.43498200000005) (-81.316666 77.43887300000011) (-81.321121 77.45027200000004) (-81.325287 77.45498700000007) (-81.33750900000001 77.46276900000004) (-81.35166900000002 77.46971100000007) (-81.37054399999994 77.47554000000014) (-81.38890100000003 77.48082) (-81.44221500000003 77.49136400000003) (-81.53388999999993 77.50694299999998) (-81.57362399999994 77.51277199999998) (-81.58778399999994 77.51748700000002) (-81.589722 77.52082800000005) (-81.608337 77.55358899999999) (-81.61054999999999 77.57609600000006) (-81.82028199999996 77.62191800000011) (-81.83972199999994 77.625809) (-81.84500100000002 77.62886000000003) (-81.84861799999999 77.63943499999993) (-81.847778 77.643326) (-81.83667000000003 77.65498400000007) (-81.8475039999999 77.665817) (-81.86000099999995 77.67137100000002) (-81.87666299999995 77.67747500000007) (-81.89527899999996 77.68248000000011) (-81.91389499999991 77.68553200000002) (-81.92832900000002 77.68580600000013) (-81.93028300000003 77.68498199999999) (-81.93554699999993 77.67804000000007) (-81.94915800000001 77.655258) (-81.94943199999994 77.64498900000012) (-81.91139199999992 77.60942100000011) (-81.89584400000001 77.60415600000005) (-81.85722399999997 77.59887700000007) (-81.81027199999994 77.595261) (-81.79804999999999 77.59165999999999) (-81.78750600000001 77.58749400000005) (-81.67805499999997 77.53831500000007) (-81.67054699999994 77.5316620000001) (-81.66722099999998 77.52526899999998) (-81.666946 77.5022130000001) (-81.67083699999995 77.49609400000008) (-81.69027699999992 77.48526000000004) (-81.710556 77.47499099999999) (-81.71945199999999 77.46998600000012) (-81.74804699999993 77.44802900000008) (-81.743607 77.4410860000001) (-81.739441 77.43637100000007) (-81.728882 77.42997700000001) (-81.70056199999988 77.4227600000001) (-81.52362099999999 77.37803600000012) (-81.48472600000002 77.372208) (-81.43222000000003 77.36804200000006) (-81.33667000000003 77.36859100000004) (-81.25140399999998 77.36914100000007) (-81.203888 77.37052900000015) (-81.18998699999992 77.36804200000006) (-81.17805499999997 77.36025999999993) (-81.172775 77.35470599999996) (-81.16776999999996 77.34275800000012) (-81.16583300000002 77.3372040000001) (-81.16583300000002 77.33276400000005) (-81.16944899999999 77.32249500000006) (-81.28388999999999 77.31526200000002) (-81.425003 77.30636600000008) (-81.53832999999997 77.30276500000008) (-81.87499999999994 77.29248000000013) (-81.95388799999995 77.30220000000003) (-82.09194899999994 77.31637600000005) (-82.15139799999997 77.30386400000003) (-82.16610700000001 77.29248000000013) (-82.08168 77.27276600000005) (-82.04333500000001 77.26554899999991) (-81.978882 77.25833100000011) (-81.90695199999999 77.19831800000003) (-81.90657799999997 77.1933140000001) (-81.902222 77.18719500000003) (-81.87609900000001 77.17469800000009) (-81.86805700000002 77.17164600000012) (-81.83416699999987 77.1624910000001) (-81.79666099999997 77.15748600000006) (-81.78694200000001 77.15748600000006) (-81.71583599999997 77.17692600000004) (-81.69665499999991 77.18136600000003) (-81.63444499999997 77.19386300000002) (-81.60749799999996 77.1974790000001) (-81.39500399999997 77.23165900000004) (-81.14917000000003 77.27470399999999) (-80.96028100000001 77.27137800000014) (-80.59277299999997 77.24247700000001) (-80.52639799999992 77.23498500000005) (-80.28028899999987 77.21360800000002) (-80.258621 77.21220400000004) (-80.20584099999996 77.20942700000012) (-80.15499899999998 77.20803799999993) (-80.13583399999999 77.20582600000006) (-80.116104 77.20138500000013) (-80.11471599999999 77.19552599999997) (-80.13694799999996 77.18609600000008) (-80.15278599999999 77.18165600000003) (-80.25500499999998 77.15332000000012) (-80.40167199999996 77.08665500000001) (-80.40972899999997 77.0811000000001) (-80.40972899999997 77.07666000000012) (-80.39445499999994 77.07276900000005) (-80.37304699999993 77.07138099999992) (-80.34584000000001 77.074997) (-80.32806399999993 77.07832300000001) (-80.20695499999994 77.10859700000009) (-80.15943899999996 77.12275699999998) (-80.13500999999997 77.13943500000005) (-80.118607 77.15081800000007) (-80.09472699999998 77.16110200000008) (-80.07250999999991 77.17053199999998) (-80.01333599999992 77.19053600000007) (-79.93582200000003 77.20665000000002) (-79.785278 77.23136899999997) (-79.72582999999992 77.23997500000007) (-79.66027799999995 77.24443100000002) (-79.63305700000001 77.24331700000005) (-79.44554099999999 77.23442100000011) (-79.4241639999999 77.23304700000011) (-79.25500499999998 77.21859699999999) (-79.216949 77.20971700000013) (-79.04194599999988 77.16110200000008) (-79.03306600000002 77.15664700000008) (-79.02806099999998 77.15054300000003) (-79.00389099999995 77.10359200000005) (-79.00500499999993 77.09693900000002) (-79.01333599999992 77.09137000000004) (-79.02972399999999 77.08692900000011) (-79.13249200000001 77.05358900000004) (-79.328888 76.97859199999994) (-79.36555499999992 76.96331800000007) (-79.37666300000001 76.95748900000007) (-79.39138799999995 76.947205) (-79.39500399999991 76.94053600000012) (-79.39306599999998 76.934143) (-79.38694800000002 76.92747500000002) (-79.37222300000002 76.92330900000013) (-79.34584000000001 76.91804500000012) (-79.31750499999993 76.91775500000011) (-79.24444599999993 76.92498799999993) (-79.1930539999999 76.92915299999993) (-79.00584399999991 76.93609600000013) (-78.98083500000001 76.93637100000012) (-78.95417800000001 76.93525699999998) (-78.886124 76.9269260000001) (-78.870834 76.92221100000006) (-78.86639400000001 76.91886900000009) (-78.91000400000001 76.88665800000001) (-78.91528299999999 76.83970600000009) (-78.74833699999994 76.82249499999995) (-78.72193899999996 76.82138099999997) (-78.71221899999995 76.82331800000003) (-78.70805399999995 76.82499700000005) (-78.56361400000003 76.90664700000013) (-78.566101 76.91360500000013) (-78.56750499999998 76.92720000000003) (-78.56277499999987 76.933044) (-78.55387899999994 76.938583) (-78.547775 76.94136000000009) (-78.38444499999991 76.99971000000005) (-78.34416199999993 77.007767) (-78.32028200000002 77.01165800000007) (-78.29277000000002 77.0147090000001) (-78.19694499999997 77.01944000000003) (-78.14083899999991 77.01998900000001) (-78.087219 77.01776100000001) (-78.07028200000002 77.01443499999999) (-77.89666699999998 76.95555100000013) (-77.88694799999996 76.94775400000015) (-77.881104 76.94026200000002) (-77.77944899999994 76.79136699999998) (-77.78944399999995 76.78166200000004) (-77.81332399999997 76.69274899999999) (-77.81361399999997 76.68775900000009) (-77.81304899999986 76.68193100000002) (-77.80499299999997 76.67526199999992) (-77.76945499999994 76.6583250000001) (-77.78443900000002 76.65026900000004) (-77.81027199999994 76.64082300000007) (-77.84111000000001 76.63333100000011) (-77.8616639999999 76.62970000000007) (-77.91833500000001 76.62831100000011) (-77.94721999999996 76.62942500000008) (-77.98500099999995 76.632477) (-78.01362599999999 76.63081400000004) (-78.02749599999999 76.62692299999998) (-78.089722 76.60942099999994) (-78.09777799999995 76.60609400000004) (-78.17832899999996 76.56608599999998) (-78.18611099999993 76.559708) (-78.20610799999997 76.53914600000013) (-78.25666799999993 76.50665300000014) (-78.364441 76.46249399999999) (-78.37748699999992 76.4580380000001) (-78.43510399999997 76.45317100000011) (-78.44332899999989 76.4522090000001) (-78.473053 76.45166000000012) (-78.51916499999999 76.45694000000003) (-78.55249000000003 76.46415700000011) (-78.60777299999995 76.48664900000006) (-78.61471599999993 76.48997500000007) (-78.61944599999998 76.49609400000008) (-78.61694299999999 76.49887100000001) (-78.61500499999988 76.5) (-78.61138899999992 76.49941999999993) (-78.59722899999991 76.50526400000012) (-78.591949 76.5086060000001) (-78.58833299999998 76.51304600000009) (-78.61332700000003 76.54775999999998) (-78.62721299999993 76.563873) (-78.75111400000003 76.57222000000002) (-78.77333099999998 76.57276899999994) (-78.79055800000003 76.57165500000013) (-78.86833199999995 76.5211030000001) (-78.88694799999996 76.49720800000006) (-78.90083300000003 76.4788670000001) (-78.93777499999999 76.44999700000005) (-78.94665500000002 76.444977) (-78.96945199999999 76.43414300000012) (-78.99415599999998 76.42442300000005) (-79.01306199999999 76.42025800000005) (-79.06138599999997 76.41276600000009) (-79.09028599999999 76.41137700000007) (-79.13917499999997 76.41165200000012) (-79.170837 76.40998800000011) (-79.18971299999987 76.40582300000011) (-79.19804399999987 76.4002690000001) (-79.261124 76.35220299999997) (-79.26556399999993 76.34610000000004) (-79.26640299999997 76.3394320000001) (-79.26278699999995 76.33194000000015) (-79.25418100000002 76.32026700000011) (-79.25306699999993 76.31469700000002) (-79.261124 76.30914300000006) (-79.27278099999995 76.30415299999999) (-79.31277499999999 76.297485) (-79.33860800000002 76.29637100000002) (-79.36582899999996 76.29664600000007) (-79.4141689999999 76.30108600000005) (-79.44554099999999 76.30664100000013) (-79.50083899999993 76.3141480000001) (-79.52528399999989 76.31442300000009) (-79.573624 76.311646) (-79.59666400000003 76.30859400000008) (-79.80555699999996 76.27832000000006) (-79.92443800000001 76.25360100000006) (-80.06138599999991 76.22692899999998) (-80.08721899999995 76.22360200000008) (-80.10722399999997 76.2227630000001) (-80.12165800000002 76.22442600000005) (-80.136124 76.22831700000012) (-80.15638699999988 76.23692299999999) (-80.17832900000002 76.23970000000008) (-80.20361300000002 76.24053999999995) (-80.23028599999998 76.23997500000013) (-80.261124 76.23831200000001) (-80.2933349999999 76.2352600000001) (-80.33833299999998 76.22831700000012) (-80.36694299999999 76.21804800000007) (-80.37554899999992 76.21304300000003) (-80.38305699999995 76.20748900000001) (-80.39666699999992 76.20220899999998) (-80.412216 76.19802900000013) (-80.42694099999989 76.19552599999997) (-80.50695799999994 76.19636500000013) (-80.60638399999999 76.1916500000001) (-80.62748699999992 76.18719500000009) (-80.637787 76.17053199999998) (-80.63972499999988 76.16748000000007) (-80.65417500000001 76.1624910000001) (-80.67250100000001 76.15832500000005) (-80.70333899999997 76.15664700000008) (-80.949997 76.14498900000007) (-81.05332900000002 76.12803600000001) (-81.07583599999992 76.12914999999998) (-81.08583099999993 76.13415500000002) (-81.09028599999994 76.13749699999994) (-81.095551 76.21220400000004) (-81.04750100000001 76.24941999999999) (-81.04110699999995 76.25360100000006) (-81.02639799999992 76.25833100000011) (-80.903885 76.31219499999997) (-80.783615 76.3749850000001) (-80.769455 76.38472000000002) (-80.761124 76.39415000000008) (-80.76000999999991 76.40415999999999) (-80.76362599999987 76.41110200000008) (-80.77166699999992 76.41914400000002) (-80.78472899999997 76.42387400000007) (-80.99166899999994 76.48304700000006) (-81.18888900000002 76.5188750000001) (-81.27500899999995 76.53332500000005) (-81.304169 76.51054400000004) (-81.33721899999989 76.49498000000011) (-81.351944 76.49026500000008) (-81.38890100000003 76.48136899999997) (-81.41111799999999 76.47747800000008) (-81.46083099999993 76.47137499999997) (-81.49249299999991 76.46943700000003) (-81.52194199999997 76.46859699999999) (-81.63694800000002 76.46887200000015) (-81.71665999999999 76.470261) (-81.78860500000002 76.47470099999998) (-81.87999000000002 76.48387100000002) (-82.03971899999993 76.50943000000007) (-82.05860899999999 76.51361099999997) (-82.07583599999998 76.5186000000001) (-82.08361799999994 76.52387999999996) (-82.03195199999999 76.55358899999999) (-81.98500099999995 76.57859799999994) (-81.98194899999993 76.58471700000001) (-81.99333199999995 76.59027099999997) (-82.04527300000001 76.6035920000001) (-82.05665599999986 76.60914600000012) (-82.04943800000001 76.61248800000004) (-81.95333899999991 76.63192700000013) (-81.87361099999987 76.64582800000011) (-81.85139499999997 76.649719) (-81.81416300000001 76.65859999999992) (-81.79028299999993 76.667755) (-81.78222700000003 76.67276000000004) (-81.776947 76.67747500000007) (-81.778885 76.68109099999992) (-81.78582799999992 76.68553200000002) (-81.79916399999996 76.68580599999996) (-81.819458 76.68275499999999) (-81.83805799999993 76.67831400000006) (-81.85278299999999 76.67359900000002) (-81.86193800000001 76.66914400000002) (-81.89334100000002 76.66081200000002) (-82.08111599999995 76.63108799999998) (-82.11555499999992 76.62886000000003) (-82.14555399999995 76.62803600000007) (-82.199997 76.6285860000001) (-82.27333099999993 76.63333100000011) (-82.29249599999997 76.6355440000001) (-82.32695000000001 76.6413730000001) (-82.346115 76.6455380000001) (-82.37748699999992 76.65748599999995) (-82.44249000000002 76.68498199999999) (-82.47027600000001 76.698868) (-82.47666899999996 76.70471200000003) (-82.487213 76.71775800000012) (-82.58029199999999 76.77638200000001) (-82.596115 76.782486) (-82.69860799999998 76.81248500000004) (-82.72500599999995 76.81915300000003) (-82.74972500000001 76.81860400000011) (-82.76722699999999 76.813309) (-82.76972999999992 76.81109600000008) (-82.76556399999987 76.80831899999998) (-82.74610899999999 76.80415300000004) (-82.72833300000002 76.79914900000011) (-82.69860799999998 76.788589) (-82.64056399999998 76.766388) (-82.556107 76.72303800000003) (-82.55833399999995 76.718323) (-82.56666599999994 76.70748900000012) (-82.56945799999994 76.70138500000007) (-82.56249999999994 76.68887300000006) (-82.54554699999994 76.67414900000006) (-82.53332499999999 76.66638200000006) (-82.460556 76.63610800000004) (-82.435272 76.62803600000007) (-82.41500899999988 76.62303199999991) (-82.30888400000003 76.60942099999994) (-82.208054 76.59304800000007) (-82.11389199999991 76.57222000000002) (-82.10221899999999 76.56887800000004) (-82.08111599999995 76.56109600000013) (-82.093887 76.55720500000007) (-82.17500299999995 76.54693600000002) (-82.19694499999997 76.54275500000011) (-82.21139499999992 76.53804000000008) (-82.22222899999997 76.53276100000011) (-82.225281 76.52665700000006) (-82.22471599999989 76.52026400000011) (-82.22250400000001 76.5144350000001) (-82.21639999999996 76.5086060000001) (-82.18943799999988 76.48664900000006) (-82.15805099999994 76.46609500000005) (-82.14723200000003 76.46110500000003) (-82.13555899999994 76.45332300000007) (-82.13137799999993 76.44859300000002) (-82.12721299999993 76.44165000000004) (-82.13221699999991 76.43691999999999) (-82.16250599999995 76.42192100000011) (-82.17971799999998 76.41693100000009) (-82.20944199999997 76.40998800000011) (-82.26028400000001 76.39860500000009) (-82.29333500000001 76.395828) (-82.34834299999994 76.39553799999999) (-82.48306300000002 76.39637800000003) (-82.704453 76.38693200000006) (-82.83332799999988 76.3977660000001) (-82.99055499999992 76.42665099999999) (-83.00361599999997 76.42915300000004) (-83.0625 76.45027200000004) (-83.09973099999996 76.46388200000013) (-83.10249299999998 76.46943700000003) (-83.09695399999998 76.47581499999995) (-83.08944699999995 76.48082) (-83.06500199999999 76.49108900000004) (-83.061935 76.49720800000006) (-83.07501200000002 76.53276100000011) (-83.08444199999997 76.54637099999997) (-83.11000100000001 76.57998700000013) (-83.11665299999999 76.58610500000009) (-83.19860799999998 76.61943100000008) (-83.33889799999986 76.66415400000011) (-83.38417099999998 76.73082) (-83.36527999999993 76.74054000000007) (-83.35861199999994 76.74609400000003) (-83.35583499999996 76.7522130000001) (-83.362213 76.75610399999994) (-83.37998999999996 76.75888100000003) (-83.40083300000003 76.759995) (-83.4100039999999 76.75776700000006) (-83.49749800000001 76.72387699999996) (-83.51834099999996 76.71331800000013) (-83.52362099999993 76.70664999999997) (-83.52333099999993 76.70082100000013) (-83.52055399999995 76.69525100000004) (-83.51501499999995 76.68997200000007) (-83.49916100000002 76.6766510000001) (-83.35221899999999 76.61248800000004) (-83.33111600000001 76.60331700000012) (-83.316101 76.59803799999997) (-83.29861499999998 76.59304800000007) (-83.27806099999992 76.58831800000007) (-83.25418100000002 76.5794370000001) (-83.24638399999998 76.57276899999994) (-83.20750399999991 76.50555399999996) (-83.1844329999999 76.42498800000004) (-83.18832399999997 76.41943400000008) (-83.20222499999994 76.41442899999998) (-83.22361799999987 76.41053799999992) (-83.25666799999999 76.407486) (-83.28582799999998 76.40637200000003) (-83.43998699999992 76.41110200000008) (-83.61999500000002 76.42359900000008) (-83.69110099999995 76.42886399999992) (-83.710556 76.43304400000011) (-83.73500099999995 76.44413800000001) (-83.73416099999992 76.449142) (-83.735275 76.45582600000006) (-83.74055499999997 76.46276900000004) (-83.75666799999999 76.46859699999999) (-83.89361600000001 76.50166300000006) (-83.98500100000001 76.52053800000004) (-84.01861600000001 76.52943399999998) (-84.03361499999994 76.53471400000006) (-84.04666099999997 76.54220599999996) (-84.058334 76.55304000000007) (-84.05888400000003 76.55886800000013) (-84.06166100000002 76.5852660000001) (-84.0708469999999 76.61665300000004) (-84.08667000000003 76.62414600000011) (-84.101944 76.62942500000008) (-84.11888099999999 76.63388099999997) (-84.13861099999991 76.63777200000004) (-84.261124 76.65554800000001) (-84.28443899999996 76.657761) (-84.31082200000003 76.6583250000001) (-84.31973299999987 76.65609699999999) (-84.32472200000001 76.65332000000006) (-84.33084100000002 76.64749100000006) (-84.31332399999991 76.64109800000011) (-84.25666799999999 76.6285860000001) (-84.220551 76.62220799999994) (-84.20249899999993 76.61720300000007) (-84.19305399999996 76.60998500000011) (-84.19444299999998 76.60693400000008) (-84.21694899999989 76.57165500000013) (-84.24972500000001 76.53692600000011) (-84.24833699999999 76.53054800000012) (-84.24499499999996 76.52499399999994) (-84.22111499999994 76.51081799999997) (-84.20861799999989 76.50526400000012) (-84.19249000000002 76.49941999999993) (-84.17971799999992 76.49192800000003) (-84.18083200000001 76.484985) (-84.19554099999993 76.45637499999998) (-84.20556599999998 76.451096) (-84.21583599999997 76.44802900000008) (-84.23693800000001 76.44358799999998) (-84.48916600000001 76.42915300000004) (-84.51861599999995 76.42776500000014) (-84.57084699999996 76.42886399999992) (-84.61972000000003 76.43165600000003) (-84.63694799999996 76.43441800000011) (-84.65278599999999 76.43803400000002) (-84.78388999999999 76.46998600000012) (-84.79277000000002 76.47499099999999) (-84.785278 76.48526000000004) (-84.78388999999999 76.48997500000007) (-84.79527300000001 76.50387600000005) (-84.84889199999992 76.53637700000013) (-84.86000100000001 76.54275500000011) (-84.95056199999993 76.57777399999998) (-84.97055099999994 76.58194000000009) (-84.99137899999994 76.58276400000005) (-85.01640299999991 76.57887299999999) (-85.02833599999997 76.57499700000011) (-85.03416399999998 76.56915300000009) (-85.05139199999996 76.51416000000006) (-85.02250700000002 76.45609999999999) (-84.97027600000001 76.42608600000011) (-84.96028100000001 76.42053199999998) (-84.94444299999998 76.41693100000009) (-84.90417500000001 76.41192600000005) (-84.72805800000003 76.39027399999998) (-84.43638599999997 76.33859300000012) (-84.39750699999996 76.33055100000013) (-84.38137799999993 76.32470699999993) (-84.37609899999995 76.31776400000012) (-84.38194299999998 76.31191999999993) (-84.39389 76.30802900000003) (-84.41305499999999 76.30470300000002) (-84.429169 76.30304000000007) (-84.53361499999994 76.30581699999999) (-84.71665999999993 76.30693099999996) (-84.77639799999997 76.303314) (-84.898056 76.28858900000006) (-84.92832899999996 76.28637700000002) (-85.17443800000001 76.28027299999997) (-85.23222399999992 76.29525799999993) (-85.36221299999994 76.303314) (-85.50500499999998 76.32193000000007) (-85.52305599999988 76.32666000000006) (-85.54444899999999 76.32998700000002) (-85.69833399999999 76.34887700000013) (-85.95249899999993 76.36859100000004) (-85.97805800000003 76.37052899999998) (-86.00418100000002 76.37081900000004) (-86.11027499999994 76.3683170000001) (-86.13473499999998 76.36943100000008) (-86.281677 76.37692300000003) (-86.33056599999998 76.3808140000001) (-86.37222300000002 76.38638300000008) (-86.412216 76.40776100000005) (-86.41500899999988 76.41276600000009) (-86.42138699999992 76.45694000000003) (-86.41861 76.46914700000002) (-86.40972899999991 76.47470099999998) (-86.398056 76.4788670000001) (-86.37887599999999 76.48387100000002) (-86.36082499999992 76.48776200000009) (-86.30776999999995 76.49552900000009) (-86.27778599999994 76.5) (-86.25611900000001 76.50387600000005) (-86.22222899999997 76.51332100000013) (-86.21305799999993 76.5186000000001) (-86.20777899999996 76.52442900000011) (-86.21194499999996 76.53526299999999) (-86.22610499999996 76.54275500000011) (-86.53277600000001 76.62330600000001) (-86.59416199999998 76.63499499999995) (-86.63034099999993 76.63513200000011) (-86.62582399999997 76.62942500000008) (-86.60110499999996 76.61998) (-86.51251200000002 76.58692900000005) (-86.36221299999994 76.54165599999993) (-86.34222399999999 76.51220699999993) (-86.5080569999999 76.48776200000009) (-86.64916999999997 76.45887800000014) (-86.66471899999999 76.41970800000001) (-86.71112099999999 76.34803799999997) (-86.71665999999999 76.34610000000004) (-86.770554 76.35081500000007) (-87.083328 76.37942499999991) (-87.130829 76.38415500000013) (-87.148346 76.38832100000008) (-87.15499899999998 76.39498900000001) (-87.15417500000001 76.40109300000006) (-87.225281 76.44802900000008) (-87.4266659999999 76.46859699999999) (-87.46278399999994 76.58692900000005) (-87.468887 76.59165999999999) (-87.52027900000002 76.61248800000004) (-87.53694200000001 76.61747700000001) (-87.56361399999997 76.61637900000011) (-87.58000199999998 76.61137400000007) (-87.583618 76.60498000000001) (-87.59861799999999 76.540817) (-87.59555099999994 76.53414900000001) (-87.553604 76.451096) (-87.54527300000001 76.44358799999998) (-87.53694200000001 76.43914799999999) (-87.516953 76.43248) (-87.50029 76.42886399999992) (-87.45527600000003 76.42387400000007) (-87.42999299999991 76.41775500000006) (-87.40249599999999 76.35276800000003) (-87.41639700000002 76.34803799999997) (-87.59138499999989 76.341095) (-87.64889499999987 76.33804300000008) (-87.71972699999998 76.34304800000012) (-87.74276700000001 76.34637500000008) (-87.760559 76.35220299999997) (-87.78860499999996 76.366379) (-87.81723 76.39054900000002) (-87.86416600000001 76.38998400000014) (-87.90083300000003 76.36303700000008) (-87.916946 76.359711) (-87.94833399999999 76.3577580000001) (-87.997772 76.35832200000004) (-88.3511049999999 76.384995) (-88.38999899999988 76.38970899999998) (-88.42971799999998 76.39804100000015) (-88.43443300000001 76.40220599999998) (-88.391953 76.45416300000011) (-88.37193299999996 76.47608900000006) (-88.35583500000001 76.48109399999993) (-88.34861799999999 76.48719800000015) (-88.34944199999995 76.5144350000001) (-88.35665899999998 76.5211030000001) (-88.44276400000001 76.59165999999999) (-88.51528899999994 76.63610800000004) (-88.50917099999998 76.69747899999999) (-88.48860199999996 76.76527400000003) (-88.47972099999993 76.77693200000004) (-88.47666900000002 76.78332499999999) (-88.47471599999989 76.78887900000001) (-88.47471599999989 76.794983) (-88.47778299999999 76.80775500000004) (-88.485275 76.81442299999998) (-88.49471999999997 76.81721500000009) (-88.51889 76.8160860000001) (-88.54194599999994 76.81275899999997) (-88.55444299999994 76.80748) (-88.55722000000003 76.8058170000001) (-88.70195000000001 76.70748900000012) (-88.68331899999998 76.7019350000001) (-88.64973399999997 76.68414300000006) (-88.591949 76.64276100000001) (-88.58444199999997 76.63581800000003) (-88.49554399999994 76.55219999999997) (-88.489441 76.50332600000002) (-88.49638399999998 76.49720800000006) (-88.57167099999992 76.47360200000003) (-88.59355899999997 76.45593300000002) (-88.60321799999997 76.44926500000003) (-88.60821499999997 76.44226100000014) (-88.60772700000001 76.43909500000001) (-88.608612 76.4160920000001) (-88.59973100000002 76.40998800000011) (-88.59750399999996 76.40582300000011) (-88.60804699999994 76.39999400000005) (-88.63194299999992 76.39721700000001) (-88.65638699999988 76.39833099999998) (-88.67721599999993 76.40193200000004) (-88.68998699999997 76.40832499999999) (-88.693604 76.41470300000015) (-88.693329 76.42082199999999) (-88.68499800000001 76.43248) (-88.67805499999997 76.44165000000004) (-88.65950800000002 76.4787060000001) (-88.64650699999999 76.48921200000001) (-88.640289 76.55859400000003) (-88.64416499999999 76.56526200000002) (-88.65167200000002 76.57193000000001) (-88.66027799999995 76.57777399999998) (-88.68888899999996 76.59136999999998) (-88.71000699999996 76.594986) (-88.73361199999994 76.59387200000003) (-88.74082899999996 76.5877690000001) (-88.79138199999994 76.51332100000013) (-88.79527300000001 76.47943100000003) (-88.78666699999991 76.47360200000003) (-88.78138699999994 76.46638500000006) (-88.78332499999999 76.46081500000003) (-88.79943800000001 76.44999700000005) (-88.90167199999996 76.40832499999999) (-88.92111199999994 76.40525800000006) (-88.94722000000002 76.40525800000006) (-88.99415599999992 76.40914900000013) (-89.16639699999996 76.42442300000005) (-89.21333299999998 76.42970300000007) (-89.231674 76.43359399999997) (-89.35333300000002 76.47997999999995) (-89.40722700000003 76.51582300000001) (-89.49027999999993 76.55748000000006) (-89.499435 76.54664600000001) (-89.515015 76.54165599999993) (-89.541382 76.54165599999993) (-89.66722099999998 76.56442300000003) (-89.67666599999995 76.56721500000015) (-89.67944299999999 76.57165500000013) (-89.61416600000001 76.6160890000001) (-89.60360700000001 76.62191800000011) (-89.57194500000003 76.63165300000003) (-89.52833599999997 76.64082300000007) (-89.48055999999997 76.649429) (-89.443329 76.6583250000001) (-89.43138099999999 76.66360500000002) (-89.41555800000003 76.67442299999999) (-89.41166699999997 76.68026699999996) (-89.4344329999999 76.72442600000011) (-89.47222899999997 76.78471400000001) (-89.49694799999992 76.820267) (-89.51444999999995 76.83581500000003) (-89.52917500000001 76.84721400000012) (-89.53332499999999 76.85359200000005) (-89.52139299999993 76.85887100000008) (-89.41777000000002 76.88665800000001) (-89.279449 76.90693699999997) (-89.23889200000002 76.91609199999999) (-89.14805599999994 76.92553700000008) (-88.98693800000001 76.95443699999993) (-88.97610499999996 76.95999100000012) (-88.89889499999998 76.98553500000014) (-88.76916499999999 76.99887100000007) (-88.74027999999993 77.00277699999998) (-88.71945199999993 77.00749200000001) (-88.70278899999994 77.01220700000005) (-88.50111400000003 77.07165500000008) (-88.47332799999998 77.09664900000001) (-88.54472399999992 77.09803800000003) (-88.545837 77.10026600000015) (-88.42639200000002 77.12081900000004) (-88.30721999999997 77.12886000000009) (-88.27833599999991 77.12969999999996) (-88.17250100000001 77.12803599999995) (-88.15417500000001 77.11608899999999) (-87.96722399999993 77.12747200000001) (-87.69055200000003 77.135269) (-87.67027299999995 77.13360600000004) (-87.65695199999993 77.13026400000012) (-87.64250199999998 77.12498499999992) (-87.626938 77.11747700000012) (-87.61971999999997 77.11080900000013) (-87.56889299999989 77.09942600000011) (-87.45584100000002 77.1019290000001) (-87.34916699999997 77.1060940000001) (-87.33778399999989 77.11025999999998) (-87.35360700000001 77.11470000000003) (-87.37222300000002 77.11720300000002) (-87.45140100000003 77.12275699999998) (-87.460556 77.12553400000007) (-87.45666499999999 77.13192700000002) (-87.452225 77.13638300000014) (-87.43221999999997 77.14971900000006) (-87.41610700000001 77.15664700000008) (-87.4041749999999 77.16081200000008) (-87.35638399999999 77.17553700000002) (-87.33666999999997 77.1791530000001) (-87.31277499999999 77.1808170000001) (-87.06916799999999 77.18275500000004) (-87.04444899999993 77.18054200000006) (-86.95916699999998 77.16192600000005) (-86.95167499999997 77.15832499999999) (-86.94694500000003 77.15443399999992) (-86.9519499999999 77.1499940000001) (-86.95140100000003 77.14471400000002) (-86.94249000000002 77.14193699999993) (-86.87527499999993 77.13220200000006) (-86.82917799999996 77.12776200000002) (-86.80444299999999 77.12719700000002) (-86.791382 77.13081399999999) (-86.73999000000003 77.17414900000011) (-86.77362099999993 77.18580600000007) (-86.96000699999996 77.19581599999998) (-87.15055799999999 77.19941700000004) (-87.148056 77.19802900000013) (-87.14695699999993 77.19581599999998) (-87.16111799999993 77.19442699999996) (-87.18276999999995 77.19693000000012) (-87.19610599999993 77.19999700000005) (-87.21055599999994 77.20526100000006) (-87.1744379999999 77.22943100000003) (-87.16694599999994 77.23387100000008) (-87.141388 77.23803700000013) (-87.00723299999999 77.255829) (-86.97666900000002 77.25749200000013) (-86.94888299999997 77.25555400000002) (-86.92832900000002 77.25526400000001) (-86.91055299999994 77.26026900000005) (-86.91915899999998 77.26609800000006) (-86.94749499999995 77.27165200000007) (-86.98443600000002 77.27470399999999) (-87.01222199999995 77.27499399999999) (-87.07806399999993 77.27360499999998) (-87.10611 77.27221700000007) (-87.13667299999997 77.27221700000007) (-87.18388400000003 77.27360499999998) (-87.197495 77.27526899999998) (-87.22917199999995 77.28553800000003) (-87.24527 77.29832500000003) (-87.24888599999997 77.303314) (-87.108612 77.33831800000007) (-87.09584000000001 77.34027100000003) (-87.06861899999996 77.34220900000014) (-87.037781 77.34220900000014) (-86.96278399999994 77.33915700000006) (-86.93472299999996 77.33888200000001) (-86.900284 77.34220900000014) (-86.84583999999995 77.34915200000012) (-86.82972699999999 77.35304300000001) (-86.83860800000002 77.35748300000006) (-86.851944 77.36053500000014) (-86.96333299999998 77.366379) (-87.06416299999995 77.36692800000009) (-87.09110999999996 77.366379) (-87.24137899999994 77.35609400000004) (-87.26306199999988 77.35165400000005) (-87.28083800000002 77.34693900000002) (-87.29415899999998 77.34165999999999) (-87.32611099999997 77.33387800000008) (-87.35888699999998 77.3313750000001) (-87.39111299999996 77.33055100000013) (-87.41639700000002 77.33082600000012) (-87.695831 77.35554500000012) (-87.71194500000001 77.35998500000011) (-87.71583599999991 77.36331200000006) (-87.775284 77.41554300000013) (-87.78028899999998 77.42109700000015) (-87.78472899999997 77.42970300000007) (-87.77500900000001 77.44136000000003) (-87.74833699999999 77.45166000000012) (-87.73083499999996 77.45637499999998) (-87.66953999999998 77.46923800000002) (-87.65194699999995 77.47499099999999) (-87.64250199999998 77.48027000000013) (-87.64611799999994 77.4869230000001) (-87.69444299999998 77.5372010000001) (-87.71112099999988 77.5416560000001) (-87.86888099999999 77.57859800000011) (-88.06304899999998 77.61886600000003) (-88.162216 77.62692300000015) (-88.18055699999996 77.63192700000013) (-88.20083599999992 77.64276100000001) (-88.214722 77.65054299999997) (-88.22361799999993 77.66249099999999) (-88.223053 77.66720600000002) (-88.22111499999988 77.67276000000004) (-88.162781 77.758331) (-88.06806899999998 77.820267) (-87.83583099999993 77.84027100000009) (-87.64056399999998 77.86248799999998) (-87.29472399999992 77.89804100000003) (-87.23138399999993 77.89888000000013) (-87.174713 77.897491) (-86.87609900000001 77.8836060000001) (-86.82417299999992 77.87942499999997) (-86.65167199999996 77.86026000000004) (-86.46166999999997 77.83610500000003) (-86.42222599999997 77.83082600000006) (-86.37748699999992 77.82276900000005) (-86.222778 77.79443400000002) (-86.19888300000002 77.78610200000008) (-85.98693800000001 77.71138000000013) (-85.97528099999988 77.70582599999994) (-85.88444500000003 77.6327510000001) (-85.718887 77.47221400000006) (-85.71583599999997 77.46720900000003) (-85.71722399999993 77.46249399999999) (-85.72721899999988 77.45193499999993) (-85.74861099999998 77.44693000000007) (-85.76916499999993 77.44358799999998) (-85.77583299999992 77.43997200000007) (-85.795837 77.42387400000007) (-85.79444899999993 77.41970800000013) (-85.776947 77.42137100000008) (-85.55139199999996 77.45832800000011) (-85.53056299999992 77.46192899999994) (-85.49333199999995 77.43026700000001) (-85.43638599999991 77.40415999999993) (-85.39973399999991 77.395828) (-85.3766629999999 77.39248700000013) (-85.29943800000001 77.3877720000001) (-85.27000399999991 77.38665800000012) (-85.15583800000002 77.38749700000005) (-84.97332799999987 77.37719700000014) (-84.95472699999993 77.37442000000004) (-84.9375 77.37081899999998) (-84.87527499999999 77.35165400000005) (-84.82528699999995 77.33415200000002) (-84.75917099999987 77.31832899999995) (-84.71972700000003 77.311646) (-84.64944499999996 77.30442800000014) (-84.601944 77.30053700000008) (-84.52917500000001 77.29582200000004) (-84.479446 77.29443400000014) (-84.46639999999996 77.29637100000002) (-84.46333300000003 77.30026200000009) (-84.47444200000001 77.3119200000001) (-84.48194899999999 77.31776400000012) (-84.49471999999997 77.32110600000004) (-84.52027900000002 77.32415799999995) (-84.553879 77.3313750000001) (-84.56916799999999 77.33970599999998) (-84.615005 77.38304099999999) (-84.61277799999988 77.38916) (-84.60388199999994 77.39359999999999) (-84.58555599999994 77.39804100000009) (-84.55027799999993 77.40138200000013) (-84.52084400000001 77.401657) (-84.49610899999999 77.399429) (-84.47055099999994 77.39637800000003) (-84.42944299999994 77.38888499999996) (-84.38639799999999 77.38388100000003) (-84.33444199999991 77.38304099999999) (-84.27027899999996 77.384995) (-84.15360999999996 77.39498900000001) (-84.06166100000002 77.39860500000003) (-84.00584399999997 77.39749100000006) (-83.985275 77.39553799999993) (-83.949997 77.38888499999996) (-83.86805700000002 77.37692300000003) (-83.79361 77.36914100000007) (-83.53195199999993 77.34637500000002) (-83.50584399999997 77.34471100000002) (-83.47805800000003 77.34414700000008) (-83.464722 77.34832799999998) (-83.46305799999988 77.34915200000012) (-83.46444699999995 77.35554500000012) (-83.47250400000001 77.38720700000005) (-83.55305499999997 77.39305100000007) (-83.65499899999998 77.39553799999993) (-83.71166999999991 77.40470900000008) (-83.72860700000001 77.40832499999993) (-83.77860999999996 77.42330900000002) (-83.82250999999997 77.442474) (-83.83389299999999 77.448868) (-83.835556 77.45526100000001) (-83.82472200000001 77.46054100000003) (-83.80139199999996 77.46470600000004) (-83.76806599999992 77.46693400000004) (-83.68222000000003 77.46804800000001) (-83.62083399999995 77.47192400000006) (-83.59388699999994 77.47554000000014) (-83.42610200000001 77.4997100000001) (-83.38945000000001 77.50776700000011) (-83.36332699999997 77.51805100000013) (-83.21611000000001 77.57777399999998) (-83.011124 77.665817) (-82.89500399999986 77.71748400000001) (-82.67443800000001 77.836929) (-82.65527299999985 77.84776300000004) (-82.54167199999995 77.92053200000004) (-82.52610799999997 77.96192900000005) (-82.577225 78.00332600000007) (-82.59083599999997 78.01110800000004) (-82.59167500000001 78.01748700000007) (-82.57972699999988 78.02276600000005) (-82.56361400000003 78.02777100000009) (-82.53805499999999 78.03109699999999) (-82.49749800000001 78.03414900000007) (-82.470551 78.03471400000012) (-82.40972899999997 78.03414900000007) (-82.37748699999992 78.03581200000002) (-82.36944599999993 78.03942899999993) (-82.32611099999997 78.06526200000008) (-82.31861900000001 78.07083100000006) (-82.32000700000003 78.07582100000013) (-82.33612099999999 78.07887300000004) (-82.51834100000002 78.07415800000001) (-82.54943800000001 78.07193000000007) (-82.652222 78.05609099999992) (-82.67250099999995 78.0516510000001) (-82.69248999999996 78.04498300000012) (-82.78028899999998 78.0149990000001) (-82.79028299999999 78.0105440000001) (-82.7927699999999 78.00582900000006) (-82.79415899999998 77.99498) (-82.78527799999995 77.969986) (-82.77528399999994 77.964157) (-82.735275 77.9474790000001) (-82.72888199999994 77.93997200000001) (-82.72860700000001 77.92970300000013) (-82.73611499999998 77.92414899999994) (-82.76916499999999 77.91499300000004) (-82.85221899999999 77.89694200000002) (-82.9491579999999 77.87469499999997) (-83.12304699999993 77.78054800000007) (-83.15666199999993 77.74498000000006) (-83.18554699999999 77.716385) (-83.19248999999996 77.71054099999998) (-83.20083599999987 77.70555100000013) (-83.38667299999992 77.61665300000004) (-83.42721599999999 77.60081500000001) (-83.52778599999994 77.57276900000011) (-83.648056 77.54081699999995) (-83.73500099999995 77.5188750000001) (-83.87304699999999 77.49331699999999) (-83.89834599999995 77.49054000000007) (-83.92054699999994 77.49165299999999) (-84.14389 77.50943000000001) (-84.19249000000002 77.51554900000008) (-84.22999599999997 77.52137800000008) (-84.38667299999992 77.528595) (-84.41999799999996 77.52777100000003) (-84.45222499999994 77.5249940000001) (-84.48332199999999 77.52165200000002) (-84.500565 77.51805100000013) (-84.55555700000002 77.51249700000011) (-84.57972699999999 77.51249700000011) (-84.76055899999994 77.51971400000008) (-84.77917499999995 77.52249099999995) (-84.85888699999992 77.54275500000011) (-84.86915599999998 77.56275900000003) (-84.87110899999999 77.56915300000009) (-84.86639399999996 77.57415800000012) (-84.837219 77.58387800000003) (-84.81555200000003 77.58888199999996) (-84.77362099999999 77.5977630000001) (-84.70722999999998 77.60998500000005) (-84.66528299999999 77.61886600000003) (-84.62748699999992 77.62803600000007) (-84.52000399999997 77.66470300000003) (-84.44193999999993 77.7061000000001) (-84.42999299999997 77.71832299999994) (-84.42832899999996 77.72276299999999) (-84.43110699999988 77.72637900000001) (-84.44305400000002 77.73637400000013) (-84.48693800000001 77.7502750000001) (-84.49527 77.75109900000007) (-84.50306699999999 77.74971000000005) (-84.48971599999993 77.74636800000013) (-84.48306299999996 77.74470500000001) (-84.475281 77.738876) (-84.47666900000002 77.72831699999995) (-84.48638899999997 77.71138000000013) (-84.49916100000002 77.6997070000001) (-84.52084400000001 77.6891480000001) (-84.53388999999999 77.68498199999999) (-84.54722600000002 77.68081699999999) (-84.715012 77.6397090000001) (-84.92250100000001 77.601654) (-84.95249899999999 77.60137900000012) (-84.9725039999999 77.60636900000003) (-85.1583399999999 77.64166300000011) (-85.29888900000003 77.66053800000003) (-85.31054699999999 77.66470300000003) (-85.34889199999992 77.72886699999998) (-85.34889199999992 77.73387100000014) (-85.33583099999998 77.73803700000008) (-85.19027699999987 77.77998400000013) (-85.05499299999997 77.79693600000013) (-85.05360399999995 77.83055100000001) (-85.14416499999999 77.81749000000008) (-85.297775 77.79721100000012) (-85.32806399999993 77.79832499999992) (-85.38194299999998 77.80775499999999) (-85.40028399999994 77.813309) (-85.40249599999993 77.81999199999996) (-85.40028399999994 77.83638000000002) (-85.389725 77.84193400000004) (-85.35333300000002 77.855545) (-85.32501200000002 77.86608900000004) (-85.281387 77.87441999999993) (-85.23194899999999 77.88165300000014) (-85.2077789999999 77.88388100000009) (-84.92555199999998 77.891098) (-84.837219 77.88749699999994) (-84.69249000000002 77.89860499999998) (-84.664444 77.90220600000004) (-84.61111499999993 77.90387000000004) (-84.498154 77.90011600000008) (-84.428879 77.89694200000002) (-84.38583399999993 77.891098) (-84.36805699999991 77.88720699999993) (-84.34277299999991 77.88499500000006) (-84.31861899999996 77.88693200000012) (-84.31361400000003 77.89193699999998) (-84.32501200000002 77.89610300000004) (-84.37971500000003 77.90637200000009) (-84.40167199999996 77.91026299999999) (-84.55943299999996 77.92303499999997) (-84.57556199999999 77.92387400000013) (-84.63444499999991 77.92692600000004) (-84.66305499999993 77.92526200000003) (-84.81666599999994 77.911652) (-84.84722899999991 77.90887500000008) (-85.05694599999998 77.90054300000008) (-85.16639699999996 77.90220600000004) (-85.20056199999999 77.90165700000006) (-85.26750199999992 77.89804100000003) (-85.303604 77.89471400000008) (-85.33168 77.89082300000001) (-85.37805199999997 77.88220200000006) (-85.42304999999999 77.87469499999997) (-85.47471599999994 77.8685910000001) (-85.515289 77.8836060000001) (-85.67887899999994 77.92942800000014) (-85.67971799999998 77.93664599999994) (-85.67527799999999 77.9416500000001) (-85.660278 77.94663999999995) (-85.45056199999999 77.9910890000001) (-85.28694200000001 78.02165200000007) (-85.06555199999991 78.05636600000014) (-85.03889499999991 78.05720500000012) (-85.00973499999992 78.055252) (-84.96305799999993 78.04414399999996) (-84.88417099999992 78.033051) (-84.81695599999995 78.02638200000013) (-84.78805499999999 78.02415500000006) (-84.76167299999992 78.02360500000003) (-84.72694399999995 78.02581799999996) (-84.70889299999999 78.02943400000004) (-84.69554099999993 78.03359999999992) (-84.68888899999996 78.03915400000011) (-84.67388899999997 78.04414399999996) (-84.65417500000001 78.04887400000001) (-84.57556199999999 78.06721500000003) (-84.54750100000001 78.0711060000001) (-84.5244449999999 78.07222000000007) (-84.36000100000001 78.07026700000011) (-84.3286129999999 78.07054100000005) (-84.30721999999997 78.07249500000006) (-84.28805499999993 78.07554600000009) (-84.29276999999996 78.07804900000008) (-84.29943800000001 78.07971200000003) (-84.32362399999994 78.08276400000011) (-84.41000399999996 78.08692900000011) (-84.5327759999999 78.08554100000003) (-84.55722000000003 78.0836030000001) (-84.62304699999999 78.07138100000009) (-84.67361499999998 78.0641480000001) (-84.7369379999999 78.0583190000001) (-84.76556399999998 78.05636600000014) (-84.79888899999997 78.055252) (-84.85583500000001 78.05693099999996) (-84.88194299999998 78.05914300000006) (-84.99388099999999 78.07415800000001) (-85.07749899999993 78.09082000000001) (-85.09445199999993 78.097488) (-85.08778399999989 78.103317) (-84.9949949999999 78.16304000000002) (-84.901947 78.17082199999999) (-84.82945299999994 78.16886900000003) (-84.79388399999999 78.17109699999997) (-84.761124 78.17442300000005) (-84.70861799999994 78.18248) (-84.68859899999995 78.18719500000003) (-84.65777599999996 78.19720500000011) (-84.63110399999988 78.19999700000005) (-84.54943799999995 78.19720500000011) (-84.43055700000002 78.18637100000007) (-84.31555199999997 78.17359900000008) (-84.28416400000003 78.16638199999994) (-84.222778 78.15887500000002) (-84.20111099999997 78.15693700000008) (-84.17388900000003 78.15776100000005) (-84.12777699999992 78.17109699999997) (-84.12666299999995 78.17997700000001) (-84.45361299999996 78.21470600000009) (-84.47972099999993 78.21693400000004) (-84.50666799999993 78.217758) (-84.693604 78.21720900000008) (-84.72250400000001 78.21693400000004) (-84.77749599999987 78.21026600000005) (-84.87721299999993 78.19303900000006) (-84.90972899999986 78.1910860000001) (-84.93777499999993 78.192474) (-84.95140099999998 78.19552599999992) (-84.968613 78.20248400000008) (-84.97389199999998 78.20860299999998) (-84.97027600000001 78.21415700000011) (-84.96722399999993 78.21804800000001) (-84.95611600000001 78.23220800000013) (-84.94276400000001 78.24386600000014) (-84.83444199999991 78.31498700000003) (-84.81527699999992 78.32165499999996) (-84.79249600000003 78.32499700000011) (-84.73138399999999 78.32554600000003) (-84.658615 78.3294370000001) (-84.62971500000003 78.333328) (-84.60527000000002 78.3374940000001) (-84.58528100000001 78.3419340000001) (-84.57556199999999 78.34637500000002) (-84.57278400000001 78.35054000000002) (-84.57194499999997 78.35554500000006) (-84.57583599999992 78.36137400000007) (-84.58167999999995 78.3660890000001) (-84.601944 78.36886600000003) (-84.63082899999995 78.36499000000015) (-84.66776999999996 78.34860200000008) (-84.68472299999996 78.34414700000008) (-84.70722999999998 78.34109499999994) (-84.73500100000001 78.34027099999997) (-84.77223199999997 78.34220900000014) (-84.81555200000003 78.34915200000012) (-84.86694299999999 78.36914100000007) (-84.86582900000002 78.37220799999994) (-84.785278 78.50166300000006) (-84.78250100000002 78.50582900000012) (-84.77471899999995 78.50915499999996) (-84.75917099999987 78.51416000000006) (-84.73860200000001 78.5188750000001) (-84.72416699999997 78.52442900000005) (-84.70445299999994 78.53498800000011) (-84.62582399999997 78.58415200000007) (-84.61944599999993 78.58831800000002) (-84.61999499999996 78.59054600000013) (-84.63861099999997 78.59414700000002) (-84.66111799999999 78.59248400000007) (-84.67527799999999 78.58831800000002) (-84.83833299999998 78.516663) (-84.84638999999993 78.51165800000012) (-84.97833300000002 78.4149930000001) (-84.97471599999994 78.35887100000014) (-84.97055099999994 78.35331700000012) (-84.96472199999994 78.34860200000008) (-84.96194500000001 78.34359700000005) (-84.96665999999999 78.33888200000001) (-85.04333500000001 78.299149) (-85.18804899999998 78.22831700000006) (-85.41833500000001 78.11886600000008) (-85.43331899999998 78.113876) (-85.45083599999992 78.10998499999994) (-85.48611499999993 78.10247800000002) (-85.50805700000001 78.099152) (-85.52305599999988 78.09942600000011) (-85.52806099999992 78.1019290000001) (-85.60888699999998 78.10081500000007) (-85.74082900000002 78.09304800000012) (-85.80471799999998 78.08888200000007) (-85.87666299999995 78.08166499999993) (-85.89416499999999 78.07804900000008) (-86.01028399999996 78.06608600000004) (-86.11999500000002 78.05636600000014) (-86.14834599999995 78.05470300000002) (-86.17805499999997 78.05497700000012) (-86.22332799999998 78.05748000000011) (-86.26722699999999 78.06637600000005) (-86.28222700000003 78.07165500000002) (-86.28832999999997 78.07638500000007) (-86.291382 78.0813750000001) (-86.29055800000003 78.08581500000014) (-86.25140399999998 78.15664700000008) (-86.23416099999997 78.16053799999997) (-86.13555899999994 78.16554300000001) (-86.11305199999987 78.17053199999998) (-86.098053 78.17553700000002) (-85.949997 78.22831700000006) (-85.93110699999994 78.23664900000006) (-85.83999599999999 78.32582100000008) (-85.83528100000001 78.33221400000002) (-85.82722499999994 78.34414700000008) (-85.82556199999993 78.34860200000008) (-85.83306899999997 78.379974) (-85.85333300000002 78.37915000000004) (-85.87805199999997 78.37692299999998) (-86.05277999999998 78.297485) (-86.060272 78.29248000000013) (-86.06054699999993 78.28054800000012) (-86.06527699999998 78.26361099999997) (-86.07362399999994 78.24859600000002) (-86.25917099999992 78.19636500000007) (-86.28527799999995 78.19331400000004) (-86.31111099999998 78.19331400000004) (-86.45361300000002 78.211929) (-86.47666899999996 78.21582000000006) (-86.49777199999994 78.21554600000013) (-86.51501499999995 78.21165500000006) (-86.53721599999994 78.19470199999995) (-86.54888899999997 78.18304400000011) (-86.56945799999994 78.17221099999995) (-86.71972699999998 78.121918) (-86.73693800000001 78.11804200000012) (-86.76306199999999 78.11499000000003) (-87.07972699999993 78.10276800000003) (-87.10943599999996 78.10304300000007) (-87.19665499999996 78.1060940000001) (-87.43971299999998 78.121643) (-87.50584399999991 78.12831099999994) (-87.52917499999995 78.132202) (-87.53860500000002 78.13804600000003) (-87.53500399999996 78.14305100000007) (-87.52667199999996 78.14915500000012) (-87.48388699999992 78.16442900000004) (-87.43055699999996 78.17831400000011) (-87.40750100000002 78.18304400000011) (-87.35221899999999 78.1910860000001) (-87.31416300000001 78.19386300000002) (-87.28999299999998 78.19470199999995) (-87.16694599999994 78.19552599999992) (-87.10499600000003 78.199142) (-87.08944699999995 78.20193499999999) (-87.087219 78.20609999999999) (-87.10583500000001 78.20942700000012) (-87.26222200000001 78.22665400000011) (-87.29360999999994 78.22608900000012) (-87.36389200000002 78.22109999999992) (-87.37165799999997 78.21943700000003) (-87.396118 78.21720900000008) (-87.42304999999993 78.21609500000005) (-87.47555499999987 78.21638500000012) (-87.49777199999994 78.21971100000013) (-87.51333599999992 78.22499099999999) (-87.51861600000001 78.230545) (-87.516953 78.24136400000009) (-87.51611300000002 78.2458190000001) (-87.49444599999998 78.29859899999997) (-87.50250199999988 78.30525200000011) (-87.51306199999999 78.31637599999999) (-87.51640299999997 78.32276899999994) (-87.52555799999999 78.41026300000004) (-87.52471899999995 78.41638200000011) (-87.51722699999999 78.42637600000012) (-87.50306699999999 78.43664600000005) (-87.47694399999995 78.44802900000002) (-87.31138599999991 78.50915499999996) (-87.29222099999993 78.51388500000002) (-87.15834000000001 78.54637100000014) (-87.14056399999998 78.55026200000003) (-87.01306199999999 78.5541530000001) (-86.89111299999996 78.54553199999998) (-86.86639400000001 78.54637100000014) (-86.85833699999995 78.5477600000001) (-86.85583499999996 78.55165099999999) (-86.85888699999998 78.56637599999993) (-86.864441 78.56887800000004) (-86.87777699999992 78.5730440000001) (-86.89862099999999 78.57582100000002) (-86.95777900000002 78.57499700000005) (-87.03167699999995 78.56915300000003) (-87.066101 78.56749000000013) (-87.09527599999996 78.56860400000011) (-87.11305199999993 78.5730440000001) (-87.12165800000002 78.57693499999999) (-87.12388599999997 78.58109999999999) (-87.12249800000001 78.58720400000004) (-86.94471699999997 78.70471199999997) (-86.93443299999996 78.70999100000012) (-86.92250100000001 78.71470599999998) (-86.85694899999993 78.73498500000011) (-86.63890100000003 78.79942299999999) (-86.61582900000002 78.80304000000012) (-86.37721299999998 78.80998200000005) (-86.13806199999999 78.81666600000011) (-86.06750499999998 78.81971699999991) (-86.03721599999994 78.82138099999997) (-85.64666699999987 78.84860200000014) (-85.60749799999996 78.85165400000011) (-85.57749899999993 78.85582) (-85.350281 78.88749700000011) (-85.32972699999993 78.89221199999997) (-85.29750099999995 78.90220599999998) (-85.25750700000003 78.91053799999997) (-85.09973100000002 78.91775500000006) (-85.06416300000001 78.91914400000007) (-85.03611799999999 78.91693099999992) (-85.008896 78.91331500000007) (-84.84584000000001 78.88888500000002) (-84.78832999999992 78.87803599999995) (-84.76640299999997 78.87303200000002) (-84.74055499999992 78.86998000000011) (-84.71278399999994 78.86775200000011) (-84.56332399999997 78.859985) (-84.412216 78.85554499999995) (-84.21278399999989 78.85693400000014) (-84.14500399999997 78.85554499999995) (-83.85082999999997 78.84526100000011) (-83.74694799999992 78.83692899999994) (-83.69444299999998 78.82971200000003) (-83.67443799999995 78.82554600000014) (-83.66000400000001 78.81999200000013) (-83.64056399999987 78.81387300000011) (-83.601944 78.80220000000008) (-83.57972699999993 78.79637100000008) (-83.53832999999992 78.78720100000004) (-83.51306199999999 78.78387499999997) (-83.48582499999998 78.78137200000003) (-83.428604 78.77915999999993) (-83.39416499999999 78.7788700000001) (-83.34584000000001 78.77360500000003) (-83.32749899999993 78.76971399999996) (-83.308334 78.76388500000013) (-83.29361 78.75610400000011) (-83.28492699999993 78.75000000000006) (-83.23693800000001 78.74054000000001) (-83.10139499999997 78.71443200000004) (-82.99472000000003 78.6997070000001) (-82.94193999999999 78.69552600000003) (-82.91082799999998 78.69470200000006) (-82.84500099999997 78.69747899999999) (-82.82250999999997 78.69525099999998) (-82.68971299999998 78.66415400000005) (-82.69638099999986 78.65776100000011) (-82.704453 78.6519320000001) (-82.69554099999999 78.64526400000011) (-82.61054999999993 78.61137400000001) (-82.506958 78.59109500000011) (-82.41722099999993 78.57415800000007) (-82.37388599999997 78.56860400000011) (-82.35749799999991 78.56749000000013) (-82.337784 78.56666599999994) (-82.308334 78.56887800000004) (-82.26222200000001 78.57804899999996) (-82.23693800000001 78.58831800000002) (-82.23554999999993 78.5958250000001) (-82.24471999999997 78.59887700000007) (-82.31027199999994 78.61665300000004) (-82.41665599999999 78.64276099999995) (-82.49638400000003 78.66192600000011) (-82.516953 78.66693099999998) (-82.535278 78.67275999999998) (-82.55943300000001 78.68220500000007) (-82.56555200000003 78.68525699999998) (-82.58473200000003 78.69552600000003) (-82.59445199999999 78.70304900000002) (-82.581955 78.708328) (-82.56916799999999 78.71138000000013) (-82.45666499999993 78.73082000000011) (-82.43554699999993 78.73165900000009) (-82.40777599999996 78.73082000000011) (-82.35055499999999 78.726089) (-82.27972399999999 78.71775800000006) (-82.25527999999991 78.71665999999999) (-82.23083500000001 78.71775800000006) (-82.22332799999998 78.71971100000002) (-82.21501199999989 78.72303799999997) (-82.22055099999989 78.73220800000001) (-82.23194899999999 78.73637400000013) (-82.25473 78.74081400000011) (-82.27917500000001 78.74414100000007) (-82.31082199999997 78.74693300000013) (-82.39639299999993 78.74914600000011) (-82.45666499999993 78.74914600000011) (-82.48083500000001 78.74832200000014) (-82.50611900000001 78.74581899999998) (-82.52555799999993 78.74220300000013) (-82.54277000000002 78.73719800000009) (-82.564438 78.73275800000005) (-82.61915599999998 78.72804300000001) (-82.66361999999992 78.72804300000001) (-82.75250199999994 78.72970599999996) (-82.781387 78.73109400000004) (-82.80972299999996 78.73414600000012) (-82.82695000000001 78.7374880000001) (-82.84333799999996 78.74220300000013) (-82.91166699999991 78.76638800000012) (-83.06973299999993 78.79220600000008) (-83.108612 78.79664600000007) (-83.21055599999994 78.79887400000007) (-83.22860700000001 78.80415300000004) (-83.25584400000002 78.82998700000007) (-83.25473 78.834991) (-83.24444599999993 78.8394320000001) (-83.2183379999999 78.8435970000001) (-83.1875 78.84721400000006) (-83.08583099999998 78.85554499999995) (-83.05694599999993 78.8560940000001) (-82.991669 78.85554499999995) (-82.81111099999998 78.84803800000003) (-82.67582699999997 78.84220900000003) (-82.65055799999999 78.83888200000007) (-82.62138400000003 78.83749399999999) (-82.46278399999994 78.83332800000011) (-82.42944299999999 78.83332800000011) (-82.28971899999999 78.83720399999999) (-82.25445599999995 78.84054600000007) (-82.11277799999999 78.85748300000012) (-82.07945299999994 78.85971100000006) (-81.947495 78.865814) (-81.91389499999991 78.865814) (-81.76417499999997 78.859985) (-81.74943499999995 78.85803200000004) (-81.74055499999992 78.85525499999994) (-81.76722699999999 78.853317) (-81.82444799999996 78.85386700000004) (-81.83860799999997 78.85137900000007) (-81.833618 78.84664900000001) (-81.82028199999996 78.84526100000011) (-81.74137899999988 78.83915700000011) (-81.71250900000001 78.83970600000004) (-81.69915799999995 78.84275799999995) (-81.66082799999992 78.87776200000002) (-81.65666199999987 78.88388100000009) (-81.65695199999999 78.88832100000008) (-81.66639700000002 78.89553799999999) (-81.68249499999996 78.90026899999992) (-81.73472599999997 78.90637200000009) (-81.75306699999999 78.9122010000001) (-81.75584399999997 78.91804500000012) (-81.69860799999992 78.97387700000007) (-81.69082599999996 78.98027000000002) (-81.68306000000001 78.98442100000011) (-81.553604 79.02415500000001) (-81.48611499999993 79.04165599999999) (-81.47721899999999 79.04721100000006) (-81.48666399999996 79.05247500000007) (-81.50306699999993 79.059143) (-81.521118 79.06109600000013) (-81.54861499999998 79.06135599999999) (-81.61776700000001 79.05108600000005) (-81.86582900000002 79.01361099999997) (-81.91027799999995 79.00499000000008) (-81.92832900000002 79) (-81.96112099999993 78.98692299999999) (-81.97222899999997 78.982483) (-81.97416699999997 78.97943100000003) (-81.99972500000001 78.9602660000001) (-82.09277299999991 78.91832000000011) (-82.11027499999994 78.91360500000008) (-82.34722899999997 78.89444000000009) (-82.50306699999993 78.88275099999998) (-82.55943300000001 78.88472000000002) (-82.68138099999999 78.90331999999995) (-82.81388899999996 78.92303500000014) (-82.839447 78.926376) (-82.92443800000001 78.9349820000001) (-83.06304899999998 78.93969700000014) (-83.12666300000001 78.94108599999993) (-83.26417500000002 78.93914799999999) (-83.51417499999997 78.93054200000006) (-83.57055700000001 78.92997700000006) (-83.63751200000002 78.9308170000001) (-83.69471699999991 78.934708) (-83.78721599999989 78.94247400000006) (-83.81277499999999 78.94581599999998) (-84.03416399999998 78.95665000000002) (-84.16555800000003 78.95694000000003) (-84.20056199999999 78.95721399999996) (-84.25917099999998 78.95942700000012) (-84.328888 78.96527100000014) (-84.36749299999997 78.97248800000006) (-84.38612399999988 78.97776799999997) (-84.42999299999997 78.98776199999998) (-84.47305299999994 78.99552900000009) (-84.57333399999987 79.00999500000012) (-84.65139799999997 79.01943999999997) (-84.67944299999999 79.02165200000007) (-84.72694399999995 79.02777100000009) (-84.74804699999999 79.03193699999997) (-84.766953 79.03720099999998) (-84.77917499999995 79.04664600000001) (-84.78971899999999 79.06414800000005) (-84.78916899999996 79.06944299999998) (-84.78388999999999 79.07443200000012) (-84.65167200000002 79.11469999999997) (-84.54415899999998 79.14137299999999) (-84.5286099999999 79.14332600000006) (-84.50361599999991 79.14444000000009) (-84.47305299999994 79.14305100000007) (-84.16389499999991 79.12414600000011) (-84.135559 79.121918) (-84.07556199999993 79.10443099999992) (-84.0625 79.09054600000002) (-84.04055800000003 79.07544700000005) (-83.99027999999998 79.0516510000001) (-83.95056199999993 79.0435940000001) (-83.89639299999999 79.03804000000014) (-83.74472000000003 79.02804600000007) (-83.60055499999993 79.02526900000004) (-83.504456 79.02360499999998) (-83.474716 79.02415500000001) (-83.45472699999999 79.02554299999997) (-83.386124 79.0394290000001) (-83.36860699999994 79.04443400000014) (-83.35861199999994 79.05081200000012) (-83.37361099999993 79.05636600000014) (-83.39944500000001 79.05970800000006) (-83.41555799999998 79.05998199999999) (-83.43083199999995 79.05831900000004) (-83.46167000000003 79.05220000000003) (-83.49388099999993 79.04332) (-83.521118 79.04136700000004) (-83.54611199999994 79.04248000000013) (-83.70666499999993 79.07777400000003) (-83.97639499999997 79.14109800000011) (-84.00361599999991 79.14860500000009) (-84.02999899999998 79.151657) (-84.02917500000001 79.15693700000003) (-84.01889 79.16137700000007) (-84.00500499999993 79.1660920000001) (-83.95249899999999 79.18026700000001) (-83.93998699999992 79.18553200000008) (-83.93331899999993 79.19192500000003) (-83.941101 79.21638500000006) (-83.95666499999999 79.22192400000006) (-83.97972099999993 79.22164900000007) (-84.01695299999994 79.21304299999997) (-84.04305999999991 79.20304899999996) (-84.05194099999994 79.19802900000008) (-84.06750499999998 79.192474) (-84.08612099999999 79.18803399999996) (-84.12193300000001 79.18470800000011) (-84.15850799999998 79.18330400000013) (-84.193329 79.18304400000011) (-84.30332900000002 79.18664600000005) (-84.32694999999995 79.18858300000011) (-84.32389799999987 79.19470200000012) (-84.31666599999994 79.20054600000014) (-84.31361400000003 79.20664999999997) (-84.335556 79.2522130000001) (-84.34445199999999 79.25804100000005) (-84.36277799999999 79.26499900000005) (-84.40110800000002 79.27526899999998) (-84.428879 79.29026800000003) (-84.452789 79.32887299999999) (-84.45222499999994 79.34165999999999) (-84.44665499999996 79.35386699999992) (-84.44610599999993 79.35887100000008) (-84.48472599999997 79.40637200000015) (-84.50334199999998 79.41304000000014) (-84.58111600000001 79.43386800000002) (-84.60611 79.43803400000013) (-84.660278 79.44413800000012) (-84.70916699999998 79.45166000000006) (-84.82112099999995 79.47303799999997) (-84.88249200000001 79.48609899999991) (-84.89695699999993 79.49247700000006) (-84.96945199999999 79.53749100000005) (-84.9725039999999 79.54220600000008) (-85.02223200000003 79.61109900000002) (-85.028885 79.61581400000006) (-85.05027799999999 79.62164300000006) (-85.06889299999995 79.62608300000005) (-85.25418099999996 79.66720599999996) (-85.3724979999999 79.684418) (-85.49333199999995 79.70054600000003) (-85.55139199999996 79.70582600000012) (-85.61582899999996 79.708328) (-85.68443300000001 79.70915200000013) (-85.76306199999999 79.70555100000007) (-85.94888299999991 79.708328) (-86.20333900000003 79.73580900000007) (-86.38751200000002 79.74748200000005) (-86.41583300000002 79.75054899999998) (-86.44583099999988 79.75416600000011) (-86.47193900000002 79.75972000000013) (-86.48638900000003 79.76361100000003) (-86.49360699999994 79.76832600000006) (-86.50222799999995 79.77526900000004) (-86.47193900000002 79.89054900000002) (-86.46028100000001 79.91970800000001) (-86.45028699999989 79.93109100000004) (-86.43638599999997 79.942474) (-86.42443799999995 79.94802900000008) (-86.389725 79.9580380000001) (-86.36721799999998 79.96276900000004) (-86.30027799999993 79.96859699999999) (-86.26333599999992 79.96914700000002) (-86.23028599999998 79.96804800000001) (-86.08389299999999 79.95748900000001) (-85.88583399999999 79.9410860000001) (-85.81973299999993 79.93858299999994) (-85.78500399999996 79.93803400000002) (-85.71139499999992 79.93748500000004) (-85.65695199999999 79.93803400000002) (-85.519455 79.92498800000004) (-85.4600069999999 79.91081200000008) (-85.41639700000002 79.90138200000001) (-85.38999899999993 79.89749100000012) (-85.36582900000002 79.89637800000003) (-85.308334 79.90054300000003) (-85.28916899999996 79.90498400000013) (-85.27500899999995 79.909424) (-85.26251199999996 79.91499299999998) (-85.25500499999993 79.92082199999999) (-85.271118 79.92387400000007) (-85.44082600000002 79.938309) (-85.64083900000003 79.96276900000004) (-86.19055200000003 80) (-86.30194099999994 79.99832200000009) (-86.34138499999995 79.99693300000007) (-86.41332999999997 79.99803200000008) (-86.44276399999995 79.99971) (-86.46640000000002 80.00387600000005) (-86.48277300000001 80.0086060000001) (-86.56555199999997 80.03581200000013) (-86.57945299999994 80.04304500000012) (-86.64250199999992 80.09803799999997) (-86.65861499999988 80.11775200000005) (-86.65943900000002 80.12803600000007) (-86.65583799999996 80.13526900000011) (-86.51472499999994 80.29914900000011) (-86.49305700000002 80.30442800000009) (-86.46833799999996 80.30859400000003) (-86.43443299999996 80.3124850000001) (-86.34500100000002 80.31915300000003) (-86.11610399999995 80.33360299999998) (-86.07611099999991 80.33360299999998) (-85.89750700000002 80.333054) (-85.74526999999995 80.320267) (-85.71749899999998 80.31637599999993) (-85.67193600000002 80.30693100000008) (-85.61665299999993 80.29887400000013) (-85.50917099999998 80.28581200000008) (-85.47917199999995 80.28276100000005) (-85.35417199999989 80.27304100000015) (-85.29083299999996 80.26860000000005) (-85.256958 80.26721199999997) (-85.09583999999995 80.2622070000001) (-84.9375 80.26721199999997) (-84.898346 80.26944000000009) (-84.77917499999995 80.27249100000012) (-84.70249899999993 80.27331500000008) (-84.589722 80.27360500000009) (-84.19665500000002 80.27137800000003) (-84.0494379999999 80.26776100000012) (-83.989441 80.26443500000005) (-83.92639200000002 80.25972000000002) (-83.81111099999998 80.249146) (-83.78195199999999 80.24581900000004) (-83.71611000000001 80.23387100000002) (-83.62638900000002 80.21360800000014) (-83.56082199999997 80.1958160000001) (-83.54638699999998 80.18942300000015) (-83.47805800000003 80.16442899999998) (-83.46139499999992 80.15914900000007) (-83.42471299999994 80.1483310000001) (-83.40306099999998 80.14221200000009) (-83.24499499999996 80.10359199999994) (-83.13890100000003 80.07832300000013) (-83.02972399999999 80.053314) (-82.89805599999994 80.02526899999998) (-82.80332900000002 80.00637799999998) (-82.73611499999998 79.99247699999995) (-82.60583500000001 79.96443199999999) (-82.28388999999999 79.89305100000007) (-82.15306099999998 79.85887099999997) (-82.10194399999995 79.83970600000004) (-82.09167500000001 79.83471700000007) (-82.06249999999994 79.81608600000004) (-82.04638699999998 79.8016510000001) (-81.976944 79.73580900000007) (-81.981674 79.72387700000007) (-81.978882 79.71832300000011) (-81.91665599999999 79.70332300000013) (-81.85305799999998 79.69358800000003) (-81.79943800000001 79.68664599999994) (-81.76750199999992 79.68498199999993) (-81.73388699999992 79.68637100000012) (-81.68472300000002 79.67581200000006) (-81.6163939999999 79.62330599999996) (-81.61860699999994 79.61831699999999) (-81.62805200000003 79.61470000000003) (-81.6516719999999 79.61026000000004) (-81.67805499999997 79.60720800000013) (-81.68777499999987 79.6080320000001) (-81.69471699999997 79.60971100000006) (-81.70973200000003 79.61554000000012) (-81.73416099999997 79.61970500000012) (-81.74861099999998 79.62109400000008) (-81.76750199999992 79.62052900000009) (-81.777222 79.61914099999996) (-81.78527799999989 79.61499000000009) (-81.78611799999993 79.60914600000007) (-81.78222700000003 79.60497999999995) (-81.76861600000001 79.60026600000003) (-81.75029 79.59471100000013) (-81.72833300000002 79.58970600000009) (-81.70666499999999 79.58665500000006) (-81.67527799999999 79.58499100000006) (-81.63945000000001 79.58499100000006) (-81.60583500000001 79.588593) (-81.57861300000002 79.59304800000001) (-81.56361400000003 79.59776300000004) (-81.54499800000002 79.60914600000007) (-81.50944499999991 79.624146) (-81.49527 79.62942500000003) (-81.47639500000002 79.63415500000002) (-81.45722999999998 79.63693200000012) (-81.424713 79.63665800000001) (-81.36805699999996 79.63443000000007) (-81.27999899999992 79.628311) (-81.25361599999997 79.62469499999997) (-81.01306199999988 79.59887700000002) (-80.69027699999998 79.56860400000005) (-80.63055400000002 79.56414799999999) (-80.598053 79.5660860000001) (-80.589722 79.56805400000002) (-80.591949 79.57360800000004) (-80.60861199999988 79.576096) (-80.62527499999993 79.58082600000006) (-80.641953 79.58804299999997) (-80.63417099999998 79.592758) (-80.61860699999988 79.59721400000012) (-80.598053 79.60137900000012) (-80.56916799999988 79.605255) (-80.50167799999997 79.61192299999999) (-80.100281 79.64444000000015) (-80.05665599999998 79.64694200000002) (-80.02528399999994 79.64721700000007) (-79.972778 79.64444000000015) (-79.93638599999997 79.64444000000015) (-79.90472399999999 79.64694200000002) (-79.89250199999992 79.64915500000001) (-79.76194799999996 79.69581600000004) (-79.75140399999992 79.70138500000002) (-79.76861600000001 79.70193500000005) (-80.041382 79.6974790000001) (-80.35665899999998 79.68525699999998) (-80.389725 79.68331900000004) (-80.43222000000003 79.67776500000002) (-80.47361799999999 79.66970800000007) (-80.51611300000002 79.6644290000001) (-80.61805700000002 79.65416000000005) (-80.65888999999993 79.65248100000002) (-80.79527300000001 79.64804100000003) (-80.82749899999999 79.64833100000004) (-80.910553 79.6519320000001) (-80.94221500000003 79.653595) (-80.95527599999997 79.65860000000004) (-80.95889299999993 79.66499300000004) (-80.97083999999995 79.67137099999997) (-80.97833300000002 79.67303499999997) (-81.07611099999997 79.688873) (-81.17193600000002 79.70332300000013) (-81.22778299999999 79.709427) (-81.29194599999988 79.71360800000008) (-81.385559 79.71360800000008) (-81.42443799999995 79.7127690000001) (-81.51972999999992 79.73082000000011) (-81.56945799999994 79.81971700000008) (-81.58277900000002 79.83692900000011) (-81.58778399999994 79.84166000000005) (-81.59973100000002 79.8519290000001) (-81.608337 79.85859700000003) (-81.63137799999998 79.872208) (-81.651947 79.88275099999998) (-81.65972899999997 79.88859600000006) (-81.66500899999994 79.89776599999993) (-81.66305499999999 79.90304600000002) (-81.64361600000001 79.90998800000011) (-81.54055799999992 79.9227600000001) (-81.51583900000003 79.92498800000004) (-81.41694599999994 79.92719999999997) (-81.402222 79.93248) (-81.40028399999994 79.93775899999997) (-81.42027299999995 79.94358799999998) (-81.55749500000002 79.96081500000003) (-81.589722 79.96249400000005) (-81.63945000000001 79.96220400000004) (-81.64334100000002 79.96220400000004) (-81.710556 79.96470600000009) (-81.74305699999996 79.96638500000012) (-81.83306899999997 79.97387700000002) (-82.00500499999998 79.993042) (-82.16833499999996 80.01361099999997) (-82.191101 80.0186000000001) (-82.28582799999998 80.04609700000009) (-82.34333799999996 80.06387300000006) (-82.35916099999992 80.06915300000009) (-82.61915599999998 80.15054299999997) (-82.94804399999998 80.24748199999999) (-83.12110899999999 80.29275500000006) (-83.16665599999993 80.301376) (-83.18693499999995 80.30664100000007) (-83.20140099999998 80.31330900000006) (-83.20388799999995 80.31805400000007) (-83.19665499999996 80.320831) (-83.16694599999994 80.32693499999999) (-83.13194299999998 80.33055100000007) (-82.94276400000001 80.3455350000001) (-82.85472099999998 80.35081500000001) (-82.78778099999994 80.35220300000009) (-82.70666499999999 80.35276799999997) (-82.57972699999988 80.3583220000001) (-82.27333099999993 80.37747200000007) (-82.03138699999994 80.39833100000004) (-81.987213 80.40026899999998) (-81.89917000000003 80.40165700000011) (-81.88221699999997 80.4019320000001) (-81.67388899999997 80.4060970000001) (-81.33444199999997 80.42053200000004) (-81.20472699999999 80.42720000000003) (-81.07972699999999 80.43609600000013) (-80.98611499999987 80.44358800000009) (-80.83500700000002 80.45277400000003) (-80.66000400000001 80.46081500000008) (-80.48111 80.4624940000001) (-80.412216 80.46054100000015) (-80.36776699999996 80.4622040000001) (-80.33612099999999 80.46581999999995) (-80.318893 80.47053499999998) (-80.30665599999992 80.47526600000009) (-80.29415899999987 80.48664900000011) (-80.297775 80.488876) (-80.31220999999994 80.4916530000001) (-80.34333800000002 80.49414100000007) (-80.35499600000003 80.49803199999997) (-80.35722399999992 80.50138900000007) (-80.22749299999992 80.51971399999996) (-80.19554099999993 80.52360500000003) (-80.15333599999997 80.52638200000013) (-80.11639400000001 80.52777100000014) (-80.05860899999993 80.52720600000009) (-79.94027699999992 80.52886999999993) (-79.558044 80.53637700000007) (-79.49055499999992 80.53970300000009) (-79.33999599999993 80.54998800000004) (-79.23277300000001 80.55331400000006) (-79.19055200000003 80.55386400000009) (-79.011124 80.55331400000006) (-78.81555199999991 80.55581700000005) (-78.59277299999997 80.56219500000003) (-78.46556099999998 80.56387300000011) (-78.34527600000001 80.56442300000015) (-78.09889199999992 80.56248500000004) (-78.06388900000002 80.56469700000008) (-78.03805499999993 80.56721500000003) (-78.01501499999995 80.58665500000001) (-78.01362599999999 80.59109500000005) (-78.01916499999999 80.59443699999997) (-78.03083800000002 80.59610000000009) (-78.08860800000002 80.59693900000008) (-78.35777300000001 80.60165400000011) (-78.74137899999994 80.60914600000001) (-78.851944 80.61248799999998) (-78.92527799999999 80.61665299999999) (-78.98110999999994 80.61608900000004) (-79.114441 80.61248799999998) (-79.25500499999998 80.60582) (-79.34722899999991 80.60108900000006) (-79.39222699999993 80.59971599999994) (-79.56527699999992 80.59610000000009) (-79.63417099999998 80.59553500000004) (-79.86332699999997 80.60304300000007) (-79.93443300000001 80.6060940000001) (-79.96055599999988 80.60803200000004) (-79.96028099999995 80.61470000000003) (-79.90722699999998 80.62387100000001) (-79.84777799999995 80.63192700000008) (-79.55943300000001 80.66998300000006) (-79.35360700000001 80.69664000000012) (-79.291946 80.70387299999999) (-79.17250100000001 80.71304300000003) (-78.99082900000002 80.72970600000008) (-78.80943299999996 80.74693300000013) (-78.62388599999997 80.76914999999997) (-78.58528099999995 80.77221700000007) (-78.50556899999998 80.77748100000008) (-78.23666400000002 80.79332) (-77.894455 80.81330900000012) (-77.80583200000001 80.818604) (-77.73306299999996 80.82554600000009) (-77.63917500000002 80.83027600000014) (-77.28778099999994 80.83526599999999) (-76.92639200000002 80.84193399999998) (-76.84500100000002 80.841095) (-76.729172 80.83804300000008) (-76.68138099999993 80.83859300000012) (-76.59083599999997 80.84275800000012) (-76.55665599999998 80.84637500000008) (-76.51167299999997 80.85443099999998) (-76.48472599999997 80.86554000000001) (-76.4850009999999 80.87109400000003) (-76.49082900000002 80.8749850000001) (-76.52667200000002 80.88638300000008) (-76.62110899999993 80.90081800000002) (-76.65666199999998 80.89804100000015) (-76.699432 80.89137299999999) (-76.73889200000002 80.88832100000002) (-76.79750099999995 80.88610800000009) (-76.84167500000001 80.88554399999998) (-77.16888399999993 80.88693200000006) (-77.20167500000002 80.8877720000001) (-77.30888400000003 80.89305100000007) (-77.42832900000002 80.90304600000002) (-77.45472699999999 80.90525800000006) (-77.5811159999999 80.91137700000007) (-77.76611300000002 80.90693700000008) (-77.98028599999992 80.90109300000006) (-78.421112 80.87942499999991) (-78.83639499999998 80.85386699999998) (-78.86944599999993 80.85220299999997) (-78.88528399999996 80.85359199999999) (-78.896118 80.85470599999996) (-78.908615 80.85887100000014) (-78.92222599999997 80.86608899999999) (-78.93499799999995 80.87553400000002) (-78.93638599999997 80.88136300000008) (-78.93055699999996 80.98193399999997) (-78.928604 80.99054000000007) (-78.839722 81.016098) (-78.79998799999998 81.02638200000007) (-78.7577819999999 81.03553799999997) (-78.63667299999997 81.05859400000003) (-78.52888499999995 81.08194000000009) (-78.50111399999997 81.09165999999999) (-78.45750399999997 81.10775800000005) (-78.42610199999996 81.12081899999998) (-78.41639699999996 81.12525900000014) (-78.39723199999992 81.13749700000005) (-78.39306599999992 81.14276100000001) (-78.40638699999994 81.14498899999995) (-78.46194500000001 81.14749100000006) (-78.47528099999994 81.149719) (-78.47582999999997 81.15248100000008) (-78.47277799999995 81.1583250000001) (-78.46362299999993 81.16081200000002) (-78.43859899999995 81.16470300000009) (-78.41139199999992 81.16747999999995) (-78.29083300000002 81.17469800000015) (-78.25473 81.17776500000008) (-78.2250059999999 81.18193099999996) (-78.15943900000002 81.19386299999996) (-78.05110200000001 81.2185970000001) (-78.03694200000001 81.22331200000013) (-78.016663 81.2327580000001) (-78.00917099999998 81.238586) (-77.97694399999989 81.24914599999994) (-77.87527499999987 81.2727660000001) (-77.85082999999992 81.27720599999998) (-77.612503 81.31887799999998) (-77.5769499999999 81.32249499999995) (-77.50306699999993 81.32832300000007) (-77.36639400000001 81.33610500000003) (-77.233612 81.35108900000012) (-77.11694299999994 81.367752) (-76.95527599999997 81.39387499999992) (-76.76501499999995 81.42858899999999) (-76.74861099999998 81.4327550000001) (-76.74526999999995 81.43914800000005) (-76.761124 81.4427490000001) (-76.77778599999988 81.44442700000002) (-76.80332899999996 81.44552600000003) (-76.85583500000001 81.44552600000003) (-76.95111099999997 81.44053600000012) (-77.02860999999996 81.43331900000004) (-77.20861799999994 81.40942400000006) (-77.26445000000001 81.40081800000013) (-77.41722099999987 81.380539) (-77.571396 81.36665299999999) (-77.60972600000002 81.36442599999992) (-77.8291779999999 81.34248400000007) (-77.89611799999994 81.33554100000009) (-78.17416399999996 81.30053700000002) (-78.22833300000002 81.29165600000005) (-78.27362099999993 81.28359999999998) (-78.29222099999987 81.27832000000012) (-78.30555700000002 81.2727660000001) (-78.32583599999992 81.26138300000014) (-78.351944 81.2502750000001) (-78.37027 81.2452550000001) (-78.41000400000001 81.23637400000013) (-78.43388399999992 81.23193400000014) (-78.487213 81.22303800000003) (-78.60499600000003 81.2063750000001) (-78.65249599999993 81.19720500000005) (-78.67527799999993 81.19192500000003) (-78.70195000000001 81.18165599999998) (-78.721115 81.17221100000006) (-78.72833300000002 81.16638200000006) (-78.75111400000003 81.14166300000011) (-78.75418100000002 81.13581800000003) (-78.74583399999995 81.12915000000004) (-78.71665999999999 81.12330600000001) (-78.69055200000003 81.12164300000012) (-78.69082599999996 81.11943100000002) (-78.81750499999993 81.10609399999998) (-78.89501999999993 81.09899900000005) (-78.916946 81.09803799999992) (-78.94137599999993 81.10108899999994) (-78.96362299999998 81.10775800000005) (-79.01501499999995 81.11553999999995) (-79.075287 81.12275700000009) (-79.16278099999994 81.13220199999995) (-79.21806299999997 81.136932) (-79.24276700000001 81.13998400000008) (-79.39917000000003 81.17469800000015) (-79.46362299999998 81.19331399999999) (-79.48611499999998 81.19497700000011) (-79.50167799999997 81.19358800000009) (-79.49943499999995 81.18997200000007) (-79.491669 81.18609599999996) (-79.47582999999997 81.180542) (-79.275284 81.12359600000002) (-79.21888699999994 81.11109900000008) (-79.17250100000001 81.10386699999998) (-79.08883700000001 81.09475700000007) (-79.073624 81.09082000000012) (-79.06361399999992 81.08554100000015) (-79.07278399999996 81.08082600000012) (-79.087784 81.07666) (-79.14222699999999 81.06915300000009) (-79.226944 81.06303400000007) (-79.25527999999991 81.05886800000013) (-79.30526699999996 81.02998400000001) (-79.31582600000002 81.02388000000013) (-79.32362399999994 81.018326) (-79.33666999999997 81.0086060000001) (-79.343887 80.99832200000003) (-79.33694500000001 80.99220300000002) (-79.32112099999989 80.98858600000005) (-79.29138199999989 80.984985) (-79.25834700000001 80.98442100000005) (-79.20527599999997 80.98776200000009) (-79.18472300000002 80.98637400000001) (-79.16471899999999 80.98304700000006) (-79.15888999999999 80.97776800000008) (-79.15834000000001 80.97276300000004) (-79.16528299999993 80.9666600000001) (-79.265289 80.92414900000006) (-79.60082999999992 80.82443200000012) (-79.61805699999996 80.81944299999998) (-79.883621 80.7833250000001) (-80.06555200000003 80.75972000000013) (-80.24749800000001 80.73692299999999) (-80.51112399999994 80.70582600000006) (-80.651947 80.69192500000008) (-80.720551 80.68414299999995) (-80.85555999999997 80.66331500000007) (-80.91944899999993 80.65554800000012) (-80.95666499999999 80.65193200000004) (-81.33639499999992 80.62330600000013) (-81.53332499999999 80.60720800000007) (-81.57556199999999 80.60415599999999) (-81.80888400000003 80.59304800000001) (-81.96611000000001 80.57971200000003) (-82.35388199999994 80.55636599999997) (-82.43499800000001 80.55304000000012) (-82.79888900000003 80.53942899999998) (-82.88110399999994 80.53665200000006) (-82.95639 80.53637700000007) (-83.02749599999993 80.53858900000012) (-83.09666400000003 80.54165600000005) (-83.1519469999999 80.54637100000008) (-83.165009 80.55192599999998) (-83.1702729999999 80.56414799999993) (-83.16805999999991 80.57666000000012) (-83.16528299999993 80.5894320000001) (-83.16139199999986 80.60108900000006) (-83.15611299999995 80.60664400000013) (-83.14666699999998 80.61219800000015) (-83.09695399999998 80.63943500000005) (-83.07806399999993 80.64498900000007) (-83.05638099999999 80.64915499999995) (-82.773056 80.68664600000011) (-82.52749599999999 80.70332300000013) (-82.43194599999998 80.70887800000003) (-82.25083899999993 80.71638500000012) (-82.21639999999996 80.71914700000002) (-82.13583399999987 80.72943100000009) (-82.02500900000001 80.74664300000006) (-81.94833399999993 80.75915500000008) (-81.90861499999994 80.76776100000001) (-81.76278699999989 80.81080600000013) (-81.758896 80.81303400000007) (-81.76750199999992 80.82138100000009) (-81.943604 80.83305400000012) (-81.96112099999993 80.83305400000012) (-81.99610899999993 80.83027600000014) (-82.05221599999993 80.822769) (-82.0997309999999 80.81359900000012) (-82.146118 80.80358900000004) (-82.19387799999998 80.79664600000007) (-82.33222999999998 80.78137200000015) (-82.51306199999993 80.76304600000014) (-82.52610799999997 80.7527770000001) (-82.53582799999987 80.74720800000011) (-82.54333499999996 80.74443100000002) (-82.56723 80.74081400000006) (-82.60166900000002 80.73803699999996) (-82.94055199999997 80.71443199999999) (-83.31193499999995 80.68775900000003) (-83.35694899999993 80.68553199999997) (-83.51611300000002 80.70138499999996) (-83.54110700000001 80.704163) (-83.54722600000002 80.70694000000009) (-83.569458 80.73915099999999) (-83.5625 80.74386600000003) (-83.52972399999999 80.74748200000005) (-83.45666499999999 80.75109900000001) (-83.42250099999995 80.7538760000001) (-83.39138799999995 80.7580410000001) (-83.26194799999996 80.78637700000002) (-83.13305700000001 80.8188780000001) (-83.12027 80.82331799999997) (-83.13249200000001 80.828598) (-83.158051 80.83360300000004) (-83.19110099999995 80.83581500000014) (-83.256958 80.83859300000012) (-83.29722599999997 80.83610499999998) (-83.32333399999993 80.8316650000001) (-83.32917799999996 80.82832300000001) (-83.33195499999994 80.82388300000014) (-83.353882 80.81359900000012) (-83.38137799999998 80.80386400000003) (-83.40722699999998 80.79942299999993) (-83.49333200000001 80.78776600000003) (-83.58721899999989 80.77526900000004) (-83.61054999999993 80.77165200000007) (-83.63082899999995 80.76693700000004) (-83.645554 80.76165800000007) (-83.64916999999997 80.75555400000002) (-83.65888999999987 80.751938) (-83.6677699999999 80.75) (-83.69665500000002 80.74664300000006) (-83.712784 80.74775700000009) (-83.82749899999993 80.76138300000002) (-83.85916099999997 80.75915500000008) (-83.86389200000002 80.75749200000013) (-83.83639499999998 80.71971099999996) (-83.82167099999998 80.70582600000006) (-83.81249999999994 80.69831800000009) (-83.80139199999996 80.69192500000008) (-83.78306599999996 80.68414299999995) (-83.75723299999993 80.66970800000001) (-83.73443600000002 80.65416000000005) (-83.72332799999992 80.6438750000001) (-83.72000099999991 80.63665800000001) (-83.71972699999998 80.63081399999999) (-83.73582499999992 80.61303700000008) (-83.77917500000001 80.57083100000011) (-83.79472399999997 80.56025700000004) (-83.82112099999995 80.55053699999996) (-83.84056099999987 80.5455320000001) (-83.87110899999993 80.5413670000001) (-83.93472300000002 80.53442400000012) (-83.97332799999998 80.53193700000003) (-84.31332399999991 80.51361100000003) (-84.381104 80.51220700000005) (-84.48971599999993 80.51443499999999) (-84.55139200000002 80.51776100000006) (-84.689438 80.52499400000005) (-84.76362599999999 80.52581800000002) (-84.84666400000003 80.52331500000003) (-84.89056399999998 80.52110299999998) (-84.964447 80.51443499999999) (-85.027222 80.50721700000003) (-85.066956 80.50526400000007) (-85.23277299999995 80.50888100000003) (-85.33473199999997 80.51361100000003) (-85.36665299999999 80.51748700000013) (-85.42582699999997 80.52304100000009) (-85.46221899999995 80.52499400000005) (-85.59472700000003 80.52915999999993) (-85.80943300000001 80.53193700000003) (-85.8641659999999 80.53553800000009) (-85.86582900000002 80.5413670000001) (-85.81277499999993 80.55914300000006) (-85.70584100000002 80.58970600000004) (-85.68916299999995 80.59387200000015) (-85.66500899999994 80.59860199999997) (-85.61305199999998 80.60636899999997) (-85.57194500000003 80.61526500000008) (-85.56471299999993 80.61943100000013) (-85.59445199999993 80.6202550000001) (-85.63639799999999 80.61914100000013) (-85.69471699999997 80.61360200000013) (-85.74471999999992 80.60636899999997) (-85.79305999999985 80.59693900000008) (-85.85472099999998 80.58221400000014) (-85.889725 80.57304400000004) (-85.92527799999999 80.56248500000004) (-85.95060699999999 80.55294799999996) (-85.95666499999993 80.54832500000009) (-85.98277300000001 80.53749100000005) (-86.01194799999996 80.53332499999993) (-86.03721599999994 80.53082300000005) (-86.08084099999996 80.52832000000006) (-86.14834599999995 80.53166200000004) (-86.17749000000003 80.53414900000013) (-86.42832900000002 80.56025700000004) (-86.63999899999993 80.583054) (-86.71806299999997 80.59304800000001) (-86.7391659999999 80.597488) (-86.74499500000002 80.60304300000007) (-86.73249800000002 80.61526500000008) (-86.68028299999997 80.65498400000001) (-86.66000399999996 80.66609199999999) (-86.63806199999999 80.67665100000005) (-86.51472499999994 80.72943100000009) (-86.49777199999994 80.7352600000001) (-86.46611000000001 80.74552900000009) (-86.41000400000001 80.76081800000003) (-86.33833300000003 80.77554299999997) (-86.24471999999997 80.79414400000013) (-86.22555499999993 80.799149) (-86.17443800000001 80.81442300000009) (-86.05027799999999 80.85664400000007) (-85.96417199999996 80.88693200000006) (-85.846115 80.9285890000001) (-85.82833900000003 80.93414300000012) (-85.77416999999997 80.94886800000006) (-85.69860799999992 80.96276900000004) (-85.60583500000001 80.97581500000013) (-85.556107 80.98193399999997) (-85.00306699999987 81.02832000000001) (-84.928879 81.03082299999994) (-84.72666900000002 81.0310970000001) (-84.40499899999992 81.04386900000009) (-84.36833200000001 81.04609700000003) (-84.20666499999993 81.06053199999997) (-84.1199949999999 81.06749000000013) (-84.02500900000001 81.070831) (-83.90805099999994 81.07138100000003) (-83.82362399999994 81.07360800000009) (-83.52999899999992 81.09027100000014) (-83.31138599999997 81.10331700000012) (-83.15055799999999 81.12052900000015) (-83.12332200000003 81.12303200000008) (-83.05332899999996 81.12330600000001) (-82.943604 81.12081899999998) (-82.86944599999993 81.12136800000007) (-82.82640100000003 81.12303200000008) (-82.78500400000001 81.12553400000002) (-82.76028399999996 81.12915000000004) (-82.73889199999996 81.13388099999997) (-82.70722999999998 81.14444000000003) (-82.68832399999997 81.1483310000001) (-82.64416499999993 81.15165700000011) (-82.59916699999997 81.15277100000009) (-82.53138699999994 81.14999399999999) (-82.50306699999993 81.14776600000005) (-82.46665999999993 81.1483310000001) (-82.37222300000002 81.17469800000015) (-82.364441 81.17942800000003) (-82.38999899999999 81.18026699999996) (-82.420837 81.17942800000003) (-82.48416099999997 81.16998300000012) (-82.52305599999994 81.16638200000006) (-82.56527699999992 81.16609200000005) (-82.665009 81.17442299999999) (-82.82806399999998 81.17330899999996) (-82.86665299999993 81.16970800000013) (-82.89416499999999 81.16526800000008) (-82.926941 81.16110200000003) (-82.96278399999994 81.1583250000001) (-83.14973399999991 81.15138200000013) (-83.45333899999997 81.13220199999995) (-83.75750700000003 81.11331200000001) (-84.116104 81.0977630000001) (-84.37277199999994 81.09220900000008) (-84.58555599999994 81.08638000000008) (-84.79750099999995 81.07832300000013) (-85.06555199999991 81.06637599999999) (-85.2119449999999 81.05693100000008) (-85.25 81.05525200000011) (-85.291382 81.05470300000013) (-85.40444899999994 81.05775500000004) (-85.48277300000001 81.05859400000003) (-85.57250999999997 81.05664100000007) (-85.68167099999994 81.0494230000001) (-85.75556899999998 81.04136700000004) (-85.81777999999997 81.03276100000011) (-85.98860200000001 81.00665300000014) (-86.14334099999991 80.97831700000006) (-86.30972300000002 80.94081100000005) (-86.351944 80.93054200000006) (-87.061935 80.72747800000013) (-87.07640100000003 80.7227630000001) (-87.083618 80.7169340000001) (-87.07907899999998 80.7070240000001) (-87.08029199999999 80.69914200000005) (-87.12138399999992 80.67747500000002) (-87.18055700000002 80.64915499999995) (-87.21501199999994 80.63832100000008) (-87.24055499999997 80.63415500000002) (-87.273056 80.63081399999999) (-87.31500199999994 80.62942499999997) (-87.458054 80.62776200000008) (-87.48971599999987 80.62747200000001) (-87.55943300000001 80.62747200000001) (-87.59472699999998 80.62858600000004) (-87.62805199999997 80.63220200000006) (-87.77722199999994 80.64888000000013) (-87.86416600000001 80.659424) (-87.95472699999988 80.67164599999995) (-88.139725 80.68525699999992) (-88.17721599999993 80.68692000000004) (-88.19610599999999 80.688583) (-88.22222899999997 80.69108599999998) (-88.34889199999992 80.70860299999998) (-88.40666199999993 80.7169340000001) (-88.48860199999996 80.73193400000002) (-88.566956 80.74859600000002) (-88.70611600000001 80.77276600000005) (-88.96749899999986 80.80859400000008) (-89.03416399999998 80.81637600000005) (-89.12582399999997 80.82582100000008) (-89.29055799999998 80.84942600000011) (-89.33473199999992 80.85748300000006) (-89.38249200000001 80.86970500000001) (-89.398056 80.876083) (-89.45056199999993 80.90332000000012) (-89.46221899999995 80.90998800000006) (-89.46611000000001 80.914154) (-89.46221899999995 80.91914400000002) (-89.4427639999999 80.92359900000002) (-89.38082899999989 80.93304400000011) (-89.23527499999994 80.94831800000003) (-89.18638599999997 80.95304899999996) (-88.90556300000003 80.97776800000008) (-88.858612 80.98136899999997) (-88.766861 80.98680100000001) (-88.59028599999999 80.99636800000002) (-88.51390100000003 80.99832200000003) (-88.28332499999999 81.0022130000001) (-88.08972199999994 81.003601) (-88.01139799999999 81.00332600000002) (-87.82667499999997 80.99803200000002) (-87.75500499999998 80.99498000000011) (-87.68943799999994 80.990814) (-87.62805199999997 80.98471100000006) (-87.59750400000001 80.98082) (-87.52416999999991 80.97720300000003) (-87.44638099999997 80.97692899999993) (-87.27944899999994 80.98193399999997) (-87.15943900000002 80.98692299999993) (-87.11971999999997 80.98970000000003) (-87.08917200000002 80.99414100000013) (-87.06471299999998 80.99887100000001) (-87.03056299999997 81.00193800000011) (-86.9830629999999 81.00387600000005) (-86.94610599999999 81.00416600000005) (-86.75500499999998 81.00109900000012) (-86.71167000000003 81.00248700000003) (-86.67193600000002 81.00526400000012) (-86.635559 81.00943000000007) (-86.541946 81.02026400000011) (-86.41944899999999 81.03610200000014) (-86.06111099999998 81.08276400000005) (-85.91639699999996 81.10498000000001) (-85.91639699999996 81.1102600000001) (-85.90722700000003 81.11387599999995) (-85.88751200000002 81.11886600000003) (-85.56277499999999 81.17942800000003) (-85.48306300000002 81.19274899999999) (-85.42527799999993 81.20166000000006) (-85.29750099999995 81.2185970000001) (-85.22193900000002 81.22637900000007) (-85.02027899999996 81.24498000000006) (-84.97639499999997 81.24859600000013) (-84.87638899999996 81.25471500000015) (-84.83250399999997 81.258331) (-84.80249000000003 81.26165800000012) (-84.77610800000002 81.26609799999994) (-84.73388699999998 81.28109700000005) (-84.73554999999999 81.28553799999997) (-84.745834 81.28942900000004) (-84.89999399999994 81.30497700000001) (-84.93666099999996 81.30775500000004) (-84.97555499999999 81.30748) (-85.02917500000001 81.30581700000005) (-85.27917499999995 81.28997800000013) (-85.36138899999997 81.28276100000005) (-85.76834099999996 81.24470500000007) (-85.95056199999999 81.2247010000001) (-86.01834100000002 81.21582000000001) (-86.07749899999993 81.20748900000007) (-86.15417499999995 81.19331399999999) (-86.22500600000001 81.17387400000001) (-86.24082900000002 81.16914399999996) (-86.25695799999994 81.16276600000003) (-86.2994379999999 81.14860500000003) (-86.33833300000003 81.138596) (-86.40499899999998 81.12970000000007) (-86.43804899999992 81.12608300000011) (-86.47277799999989 81.12275700000009) (-86.521118 81.11970499999995) (-86.65083300000003 81.11581400000011) (-86.95639 81.09942600000005) (-87.11138899999992 81.0877690000001) (-87.29722599999997 81.07693500000005) (-87.63751200000002 81.059418) (-87.678879 81.05859400000003) (-87.72000099999991 81.059418) (-87.841385 81.06275900000003) (-88.0625 81.06999200000001) (-88.21777299999985 81.07138100000003) (-88.33999599999999 81.06971700000003) (-88.43499799999995 81.06414800000005) (-88.57167099999992 81.05470300000013) (-88.65834000000001 81.051376) (-88.74082899999996 81.04971300000011) (-88.88999899999993 81.05192600000004) (-88.96472199999994 81.0494230000001) (-89.041672 81.04109199999999) (-89.210556 81.02665700000006) (-89.25556899999998 81.02388000000013) (-89.34167500000001 81.02026400000011) (-89.629166 81.00915500000002) (-89.74665800000002 81.00888100000009) (-89.78750599999995 81.00972000000007) (-89.82084700000001 81.01081799999997) (-89.87388599999997 81.016388) (-90.01194799999996 81.03305100000011) (-90.06361400000003 81.03970299999997) (-90.0952759999999 81.04470800000007) (-90.14917000000003 81.05497700000006) (-90.19776899999988 81.06971700000003) (-90.21000700000002 81.07499700000011) (-90.33805799999993 81.15165700000011) (-90.351944 81.16747999999995) (-90.32556199999993 81.18193099999996) (-90.277222 81.19720500000005) (-90.10221899999999 81.23027000000013) (-90.04305999999997 81.23942600000004) (-90.011124 81.24192800000014) (-89.972778 81.24275200000011) (-89.87054399999994 81.24220300000013) (-89.74610899999999 81.236649) (-89.66915899999987 81.21804800000012) (-89.63500999999991 81.21220399999993) (-89.573059 81.20694000000015) (-89.53500400000001 81.2061000000001) (-89.491104 81.2063750000001) (-89.4472199999999 81.20832800000005) (-89.35722399999997 81.2144320000001) (-89.281387 81.22164900000001) (-89.13667299999997 81.238876) (-89.08833300000003 81.24247700000006) (-89.04444899999999 81.24275200000011) (-88.98222399999997 81.24192800000014) (-88.95417800000001 81.24275200000011) (-88.94415299999997 81.24414100000007) (-88.93582199999997 81.24775699999998) (-88.9497219999999 81.253601) (-88.979446 81.258331) (-89.16221599999994 81.25582900000012) (-89.19860799999987 81.25332600000013) (-89.26501499999995 81.24443100000013) (-89.30722000000003 81.24054000000007) (-89.33528099999995 81.24275200000011) (-89.44360399999994 81.26054399999998) (-89.68777499999999 81.28997800000013) (-89.77500899999995 81.29637100000008) (-89.86805699999996 81.30609099999998) (-89.89862099999993 81.31053199999991) (-89.91722099999987 81.31442299999998) (-89.950287 81.32415800000007) (-89.95249899999988 81.32943700000004) (-89.94055200000003 81.33332800000011) (-89.9163969999999 81.336929) (-89.88221699999997 81.34027100000009) (-89.702225 81.35026600000003) (-89.62721299999998 81.35664400000002) (-89.24249299999997 81.42303500000003) (-89.05915800000002 81.45555100000007) (-88.92832899999996 81.48553500000014) (-88.90943900000002 81.49081400000011) (-88.84695399999998 81.49971000000005) (-88.71583599999997 81.51304599999997) (-88.54527299999995 81.52526900000004) (-88.49499500000002 81.52720600000009) (-88.406113 81.52832000000006) (-88.37110899999999 81.52693199999999) (-88.16139199999992 81.53027300000002) (-88.02999899999998 81.53581200000002) (-87.98416099999997 81.53581200000002) (-87.95973200000003 81.53471400000012) (-87.939438 81.53166199999998) (-87.89369999999997 81.52471200000014) (-87.80139199999996 81.51554899999996) (-87.67944299999994 81.51388500000013) (-87.49027999999998 81.50888099999997) (-87.43138099999993 81.50471500000009) (-87.39889499999998 81.50082400000002) (-87.34306300000003 81.49275200000005) (-87.31111099999998 81.488876) (-87.27667200000002 81.48580900000007) (-87.25140399999992 81.48748800000004) (-87.24471999999997 81.49026500000014) (-87.28639199999992 81.50555400000007) (-87.28832999999997 81.50610400000011) (-87.31555199999997 81.51332100000002) (-87.37860099999989 81.51721200000009) (-87.48916600000001 81.52331500000003) (-87.64584400000001 81.52748099999991) (-87.72166400000003 81.53221100000013) (-87.75195299999996 81.53526300000004) (-87.91500899999994 81.55276500000008) (-88.279449 81.57943699999998) (-88.30638099999993 81.58137499999992) (-88.35221899999999 81.57971200000003) (-88.39222699999999 81.57777400000009) (-88.44694499999997 81.57222000000007) (-88.55221599999999 81.55886800000002) (-88.64222699999993 81.5516510000001) (-88.66944899999999 81.55053700000013) (-88.76916499999999 81.55108600000011) (-88.84999099999999 81.55053700000013) (-88.90028399999989 81.54832500000009) (-88.99804699999999 81.54054300000013) (-89.07305899999994 81.53221100000013) (-89.14584400000001 81.52304100000009) (-89.28250099999991 81.50526400000001) (-89.54833999999988 81.47720300000015) (-89.585556 81.47303799999997) (-89.71028099999995 81.45526100000006) (-90.01139799999993 81.41693099999998) (-90.37083399999995 81.37525900000009) (-90.44305399999996 81.36665299999999) (-90.46749899999992 81.367752) (-90.50056499999994 81.37136800000002) (-90.53582799999998 81.37692300000009) (-90.55332900000002 81.38499500000006) (-90.525284 81.38859600000012) (-90.51722699999993 81.38916000000006) (-90.478882 81.39444000000015) (-90.48138399999999 81.39665200000002) (-90.48777799999993 81.39860499999998) (-90.516953 81.40248100000002) (-90.64361600000001 81.416382) (-90.67832899999996 81.41748000000013) (-90.74665800000002 81.42221100000006) (-90.77999899999998 81.42553700000008) (-90.81138599999991 81.42997700000006) (-90.84111000000001 81.43553199999997) (-90.85417199999995 81.44053600000012) (-90.85665899999992 81.44413800000007) (-90.85388199999994 81.45082100000008) (-90.84834299999994 81.45498700000013) (-90.80082699999997 81.46499599999999) (-90.770554 81.46971100000002) (-90.58306900000002 81.4974820000001) (-90.54028299999999 81.50166300000001) (-90.31221 81.53137199999998) (-90.1305539999999 81.56442300000015) (-89.87470999999994 81.599152) (-89.79750099999995 81.60247800000002) (-89.67443800000001 81.60165400000005) (-89.63249200000001 81.60470600000002) (-89.59750399999996 81.61415100000005) (-89.58500699999996 81.61970500000007) (-89.58500699999996 81.62580900000006) (-89.60194399999989 81.62776200000002) (-89.79888900000003 81.62997400000006) (-89.86805699999996 81.63026400000012) (-89.91416900000002 81.628311) (-89.96221899999995 81.62553400000007) (-90.06945799999994 81.63360600000004) (-90.11158 81.65674600000011) (-90.20472699999993 81.68637100000007) (-90.27139299999999 81.6974790000001) (-90.29695099999998 81.69859300000007) (-90.33029199999999 81.69609099999997) (-90.35305799999998 81.69053600000007) (-90.36082499999992 81.68525700000009) (-90.35527000000002 81.67359900000008) (-90.33721899999995 81.6624910000001) (-90.35472099999998 81.65138200000001) (-90.511124 81.65776100000005) (-90.60472099999993 81.66470300000015) (-90.63890100000003 81.66804500000006) (-90.678879 81.66886900000003) (-90.71888699999994 81.6666560000001) (-90.73472599999997 81.66081200000008) (-90.74221799999998 81.65554800000007) (-90.76362599999993 81.64553799999999) (-90.77972399999999 81.641098) (-90.803879 81.63610800000009) (-90.83473199999997 81.63136300000008) (-90.87805200000003 81.62747200000001) (-90.92388899999997 81.62525900000003) (-90.96694899999994 81.62109400000003) (-90.99110399999995 81.61608899999999) (-91.006958 81.59887699999996) (-91.00334199999992 81.59220900000003) (-90.98860200000001 81.57943699999998) (-90.98860200000001 81.55775499999999) (-91.07167099999998 81.53720099999998) (-91.091949 81.53387499999997) (-91.104446 81.53442400000012) (-91.11389199999996 81.53997800000008) (-91.23693800000001 81.54332000000005) (-91.31388899999996 81.53414900000007) (-91.40139799999997 81.52638200000013) (-91.44638099999997 81.524429) (-91.46333299999998 81.526093) (-91.46777299999991 81.52720600000009) (-91.45249899999993 81.53166199999998) (-91.428604 81.53665200000006) (-91.41111799999999 81.54193100000003) (-91.40638699999994 81.54776000000004) (-91.44415300000003 81.5836030000001) (-91.47444199999995 81.58888200000007) (-91.65417500000001 81.60582) (-91.74722300000002 81.60914600000001) (-91.85722399999986 81.61276200000009) (-91.87832600000002 81.61415100000005) (-91.900284 81.61692800000014) (-91.93859900000001 81.62553400000007) (-91.94860799999992 81.63108800000009) (-91.95666499999999 81.65860000000004) (-91.949432 81.6622010000001) (-91.926941 81.66499299999998) (-91.90222199999994 81.66693100000009) (-91.86776700000001 81.66331500000007) (-91.83889799999986 81.65860000000004) (-91.80110199999996 81.65860000000004) (-91.77084400000001 81.66331500000007) (-91.73721299999994 81.68692000000004) (-91.72582999999992 81.70665000000002) (-91.72361799999987 81.72164900000007) (-91.48554999999999 81.76998900000012) (-91.386124 81.77388000000002) (-91.35139500000002 81.77026400000011) (-91.28750600000001 81.76193199999994) (-91.25500499999998 81.75915500000008) (-91.2125089999999 81.75943000000007) (-91.0533289999999 81.76165800000001) (-91.03443900000002 81.76388500000007) (-91.03332499999999 81.76776099999995) (-91.05749499999996 81.77276600000005) (-91.09056099999992 81.77720600000004) (-91.11776699999996 81.78442400000006) (-91.14056399999998 81.79193099999998) (-91.15249599999993 81.79803500000003) (-91.14723200000003 81.80386400000003) (-91.13751199999996 81.80859400000008) (-91.10110499999996 81.8188780000001) (-91.05166599999995 81.82887299999999) (-91.00111399999997 81.83276400000005) (-90.85221899999999 81.84248399999996) (-90.72749299999998 81.841095) (-90.70417800000001 81.84359700000005) (-90.68998699999992 81.84860200000008) (-90.68637799999999 81.85396600000001) (-90.67832899999996 81.85859700000003) (-90.63500999999997 81.86886600000003) (-90.61000100000001 81.87387100000007) (-90.56527699999987 81.87803600000007) (-90.43666100000002 81.88749700000005) (-90.33805799999993 81.89305100000007) (-90.24527 81.89610299999998) (-90.154449 81.89665200000013) (-89.99082899999996 81.90554800000007) (-89.78332499999993 81.91720600000008) (-89.73582499999998 81.91748000000001) (-89.70083599999998 81.91554300000013) (-89.676941 81.9102630000001) (-89.68305199999998 81.89943700000015) (-89.6824949999999 81.883331) (-89.64944500000001 81.86331200000006) (-89.62998999999996 81.85636900000003) (-89.46139499999998 81.81805400000013) (-89.425003 81.81526200000002) (-89.35638399999993 81.81109600000013) (-89.24472000000003 81.84637500000002) (-89.22721899999999 81.85220300000015) (-89.20322399999998 81.87803600000007) (-89.19923399999999 81.88153799999992) (-89.19905900000003 81.88520800000003) (-89.21321899999998 81.88838200000009) (-89.32806399999993 81.90220600000009) (-89.36721799999992 81.90554800000007) (-89.39750699999996 81.90942400000012) (-89.41915899999998 81.91554300000013) (-89.41694599999994 81.92581200000001) (-89.3977809999999 81.93081700000005) (-89.37165800000002 81.93580600000001) (-89.33889799999997 81.94026200000008) (-89.28889500000002 81.943039) (-89.24972499999996 81.94108600000004) (-89.15739399999995 81.92836800000009) (-89.15621899999991 81.92520100000007) (-89.15255699999994 81.92137100000008) (-89.13305700000001 81.91853300000008) (-89.07472199999995 81.91165200000006) (-89.03332499999999 81.91220100000004) (-89.00723299999987 81.91554300000013) (-88.98971599999993 81.92109700000015) (-88.98638899999997 81.94497699999994) (-88.99276700000001 81.95138500000007) (-89.0119479999999 81.9586030000001) (-89.04834 81.97804300000007) (-89.05444299999999 81.98748799999998) (-89.04110699999995 81.99304199999995) (-89.02111799999994 81.99803200000002) (-88.96389799999997 82.00804100000005) (-88.77305599999994 82.03942900000004) (-88.62554899999998 82.06275900000003) (-88.58972199999994 82.066666) (-88.54305999999991 82.07054099999999) (-88.44305400000002 82.07499700000005) (-88.29666099999992 82.08027600000003) (-88.25 82.08082600000006) (-88.14500399999997 82.086929) (-88.11361699999992 82.09054599999996) (-88.09973100000002 82.09304800000007) (-88.09500100000002 82.09637499999997) (-88.08528100000001 82.10137900000012) (-88.07556199999993 82.10498000000001) (-88.03832999999997 82.1038670000001) (-87.91194200000001 82.09082000000006) (-87.71833799999996 82.08387800000003) (-87.70222499999994 82.086929) (-87.6663969999999 82.08943199999999) (-87.64195299999994 82.09027100000014) (-87.59973099999996 82.089157) (-87.50140399999998 82.08415200000013) (-87.40222199999994 82.07388300000008) (-87.35278299999993 82.06721500000009) (-87.33361799999989 82.06330900000006) (-87.27166699999998 82.04775999999993) (-87.23055999999997 82.03692600000005) (-87.195831 82.02638200000001) (-87.18360899999993 82.02249100000012) (-87.1744379999999 82.01470899999998) (-87.17332499999998 82.01110799999992) (-87.1786039999999 82.00776700000011) (-87.19776899999994 82.0022130000001) (-87.23277300000001 81.99331699999999) (-87.25805700000001 81.9894260000001) (-87.29998799999998 81.97915599999999) (-87.314438 81.97387700000002) (-87.30943299999996 81.96748400000001) (-87.26583900000003 81.95887800000014) (-87.16915899999998 81.94552600000009) (-87.10166900000002 81.93775900000014) (-87.06332399999991 81.93441800000011) (-86.939438 81.91886899999997) (-86.87721299999998 81.90942400000012) (-86.82888799999995 81.89749100000006) (-86.804169 81.89305100000007) (-86.76834100000002 81.89027399999998) (-86.72666900000002 81.8919370000001) (-86.726944 81.89721700000013) (-86.73416099999992 81.90277100000014) (-86.74583399999995 81.90664700000002) (-86.83473200000003 81.92776500000014) (-86.86361699999992 81.93359399999997) (-86.91944899999999 81.94274899999999) (-87.066101 81.95498700000007) (-87.09805299999994 81.95832800000011) (-87.12721299999993 81.96388200000007) (-87.13027999999986 81.968323) (-87.00140399999998 82.03610200000008) (-86.987213 82.03997800000002) (-86.93167099999994 82.04942300000005) (-86.89250199999998 82.0541530000001) (-86.84333799999996 82.05720500000001) (-86.79194599999994 82.05802900000015) (-86.58361799999994 82.05386399999998) (-86.35638399999999 82.05358899999999) (-86.27806099999998 82.05081200000006) (-86.23916600000001 82.04859900000008) (-86.202789 82.04553199999998) (-86.16915899999992 82.0416560000001) (-86.01611299999996 82.01666300000005) (-85.960556 82.00749200000007) (-85.91444399999995 81.99748199999999) (-85.81500199999999 81.97387700000002) (-85.76750199999992 81.96192899999994) (-85.73138399999988 81.949997) (-85.62887599999999 81.9160920000001) (-85.46722399999999 81.86720300000013) (-85.42250100000001 81.85748300000006) (-85.37943999999999 81.85693400000008) (-85.37165800000002 81.859711) (-85.37388599999997 81.863876) (-85.38583399999993 81.8749850000001) (-85.398056 81.88108800000003) (-85.44193999999999 81.89387500000004) (-85.46945199999988 81.899719) (-85.566101 81.92498800000004) (-85.65472399999999 81.95082100000013) (-85.73194899999999 81.98332200000004) (-85.72999600000003 81.98776200000009) (-85.72694399999995 81.99026500000008) (-85.69387799999998 81.99498000000011) (-85.65055799999993 81.99832200000003) (-85.55943299999996 82.00166300000006) (-85.258621 81.99693300000001) (-85.21749899999998 81.99552900000003) (-85.18832399999991 81.99275200000011) (-85.16583300000002 81.98525999999998) (-85.16000400000001 81.97970600000002) (-85.14056399999993 81.96609500000005) (-85.09638999999999 81.9458160000001) (-85.01889 81.91943400000002) (-84.98416099999992 81.91110200000003) (-84.87943999999999 81.88749700000005) (-84.83889799999992 81.882477) (-84.81688700000001 81.88536799999991) (-84.82188400000001 81.88821400000006) (-84.84422299999989 81.89488200000005) (-84.86389199999996 81.90026900000004) (-84.915009 81.918045) (-84.99471999999997 81.94859300000002) (-85.02528399999994 81.96081500000014) (-85.037216 81.96693399999998) (-85.04888900000003 81.97442600000011) (-85.06610099999995 81.98748799999998) (-85.05555699999996 81.990814) (-85.03832999999997 81.99414100000013) (-85.00111400000003 81.99414100000013) (-84.929169 81.99304199999995) (-84.88917499999997 81.99026500000008) (-84.85888699999992 81.98525999999998) (-84.83168 81.97943099999998) (-84.81666599999994 81.97082500000005) (-84.814438 81.96638500000006) (-84.81527699999992 81.96110499999998) (-84.82194500000003 81.94914199999994) (-84.79760699999997 81.93087000000014) (-84.78926799999999 81.92469800000003) (-84.75144199999994 81.91053800000009) (-84.74227899999994 81.90837899999997) (-84.68859899999995 81.8919370000001) (-84.656113 81.8877720000001) (-84.63528399999996 81.88610800000004) (-84.62193300000001 81.886932) (-84.60499600000003 81.88998400000014) (-84.714722 81.96998600000012) (-84.72972099999998 81.97720300000003) (-84.75167799999991 81.98471100000006) (-84.81527699999992 82.00082400000008) (-84.84083599999997 82.006104) (-84.89973399999991 82.01527400000003) (-84.93249499999996 82.01944000000009) (-85.03999299999998 82.028595) (-85.11694299999994 82.03305100000006) (-85.40583800000002 82.04220599999996) (-85.6783289999999 82.05442800000009) (-85.75584399999997 82.05886800000013) (-85.85166900000002 82.06721500000009) (-85.91583300000002 82.07748400000014) (-85.99972500000001 82.09414700000002) (-86.06220999999994 82.1038670000001) (-86.0911099999999 82.10443100000003) (-86.278885 82.10720800000013) (-86.48500100000001 82.11415099999994) (-86.56555199999997 82.11886599999997) (-86.63751199999996 82.12441999999999) (-86.70611600000001 82.13192700000013) (-86.73138399999993 82.13638300000002) (-86.752228 82.14109800000006) (-86.85665899999992 82.18470800000006) (-86.86915599999992 82.19525100000004) (-86.87609900000001 82.20220899999998) (-86.87193300000001 82.20776400000011) (-86.843613 82.2124940000001) (-86.76417499999997 82.22164900000001) (-86.66944899999993 82.22831699999995) (-86.61944599999998 82.22970599999996) (-86.57167099999998 82.23027000000008) (-86.52000399999991 82.22970599999996) (-86.316666 82.2247010000001) (-86.22888199999989 82.2247010000001) (-86.181107 82.22526600000015) (-86.137787 82.22692900000004) (-85.98443600000002 82.2374880000001) (-85.93415800000002 82.238876) (-85.84138499999995 82.23915100000005) (-85.79888900000003 82.23776200000003) (-85.75389099999995 82.2374880000001) (-85.70611599999995 82.23803700000002) (-85.66221599999994 82.23969999999997) (-85.61999499999996 82.24359100000004) (-85.603882 82.24914600000011) (-85.59889199999998 82.2544400000001) (-85.58056599999998 82.26443499999999) (-85.55777 82.26944000000009) (-85.50834700000001 82.27304100000009) (-85.41389500000002 82.27609300000006) (-85.37083399999995 82.27998400000013) (-85.35055499999993 82.28387500000002) (-85.34722899999997 82.28637700000007) (-85.36749299999991 82.2910920000001) (-85.39639299999999 82.29693600000013) (-85.45722999999998 82.30748) (-85.48167399999994 82.31359900000001) (-85.48999000000003 82.31971699999997) (-85.515015 82.343323) (-85.531677 82.36970500000007) (-85.50167799999997 82.3936000000001) (-85.50140399999992 82.39888000000013) (-85.515289 82.40332000000001) (-85.53416400000003 82.40748600000006) (-85.66944899999987 82.409424) (-85.86694299999999 82.421921) (-85.90499899999998 82.4249880000001) (-85.921112 82.42997700000006) (-85.91194199999995 82.43580600000007) (-85.81973299999993 82.4544370000001) (-85.79472399999997 82.45860299999998) (-85.74694799999997 82.46138000000008) (-85.70861799999994 82.46360800000002) (-85.50250199999999 82.47109999999998) (-85.29861499999993 82.47804299999996) (-85.04695099999998 82.48193400000002) (-85.00306699999987 82.48082000000005) (-84.69387799999993 82.47137500000002) (-84.662781 82.46859699999999) (-84.64167800000001 82.46554600000002) (-84.62222300000002 82.45915200000013) (-84.61639400000001 82.45359800000011) (-84.61332699999991 82.447205) (-84.61332699999991 82.4433140000001) (-84.63137799999998 82.44026200000002) (-84.787781 82.4349820000001) (-84.89527900000002 82.43359400000003) (-84.94055200000003 82.43193100000008) (-84.94387799999998 82.42581200000006) (-84.91665599999993 82.42053199999998) (-84.88861099999986 82.41693099999998) (-84.714722 82.40582299999994) (-84.5597229999999 82.39498900000007) (-84.48249800000002 82.3894350000001) (-84.449997 82.38610799999998) (-84.41833499999996 82.38108800000009) (-84.38806199999999 82.37109400000008) (-84.38417099999992 82.36608900000004) (-84.38722199999995 82.361649) (-84.37860099999995 82.35693399999997) (-84.34445199999999 82.35276800000008) (-84.30332900000002 82.35582) (-84.228882 82.36387600000006) (-84.18055699999996 82.368042) (-84.14695699999999 82.36970500000007) (-84.09555099999994 82.37109400000008) (-84.04722600000002 82.37136800000002) (-83.96139499999992 82.3685910000001) (-83.87693799999994 82.3641510000001) (-83.84194899999994 82.36137400000001) (-83.76750199999998 82.35304300000007) (-83.60638399999993 82.33137499999998) (-83.51640299999997 82.31694000000005) (-83.38473499999998 82.28221099999996) (-83.36860699999994 82.27638199999996) (-83.36000100000001 82.26944000000009) (-83.36000100000001 82.26361100000003) (-83.36915599999998 82.25166300000001) (-83.37193300000001 82.24470500000001) (-83.37193300000001 82.23915100000005) (-83.34445199999993 82.22720300000015) (-83.308334 82.21832300000011) (-83.24221799999998 82.20416300000005) (-83.18415799999997 82.19470200000006) (-83.13055399999996 82.18498199999999) (-83.08389299999993 82.17581200000012) (-83.02278100000001 82.15942400000006) (-83 82.151093) (-82.97666900000002 82.13832100000013) (-82.95306399999998 82.11998) (-82.95666499999993 82.10971100000012) (-82.95861799999994 82.10443100000003) (-82.96833800000002 82.09803800000009) (-82.97805800000003 82.09387200000003) (-83.00195300000001 82.089157) (-83.0625 82.08027600000003) (-83.12609899999995 82.072495) (-83.12805199999997 82.06721500000009) (-83.11193799999995 82.06526199999996) (-83.07640099999992 82.06192000000004) (-82.97416699999997 82.06498699999997) (-82.88833599999998 82.072495) (-82.79750100000001 82.07777399999998) (-82.75805700000001 82.07693499999999) (-82.67443800000001 82.07304399999992) (-82.63639799999999 82.07054099999999) (-82.42166099999997 82.0669400000001) (-82.28416399999998 82.06637599999999) (-82.199432 82.06414799999999) (-82.1222229999999 82.05859400000003) (-82.05555699999996 82.05081200000006) (-81.96362299999993 82.0372010000001) (-81.92610199999996 82.03471400000001) (-81.88999899999999 82.03498800000011) (-81.87805199999997 82.03637700000013) (-81.88473499999992 82.04109199999999) (-81.92416400000002 82.05886800000013) (-81.96611000000001 82.07110599999999) (-82.02084400000001 82.08221399999996) (-82.05860899999999 82.08471700000013) (-82.10249299999998 82.08554100000009) (-82.24305699999996 82.08499100000006) (-82.41749600000003 82.08720400000004) (-82.54638699999998 82.09027100000014) (-82.58444199999991 82.09275800000006) (-82.61971999999992 82.09609999999998) (-82.651947 82.10026600000003) (-82.67694099999994 82.10775799999999) (-82.68388400000003 82.11831700000005) (-82.68859900000001 82.12608300000011) (-82.697495 82.13136299999996) (-82.71722399999993 82.14276100000001) (-82.73138399999993 82.14999399999999) (-82.77223200000003 82.16331500000013) (-82.860275 82.18775900000009) (-82.88694799999996 82.19386299999991) (-82.94027699999998 82.203598) (-82.987503 82.21499599999999) (-83.01139799999999 82.22164900000001) (-83.02778599999988 82.23525999999998) (-83.02888499999995 82.26499899999999) (-83.02888499999995 82.276657) (-83.02555799999999 82.28332499999999) (-83.01916499999987 82.28887900000012) (-82.99082900000002 82.29248000000001) (-82.73554999999993 82.28610200000003) (-82.69360399999994 82.28471400000012) (-82.65444899999989 82.28221099999996) (-82.62165800000002 82.27804599999996) (-82.50889599999994 82.25804099999999) (-82.45278899999994 82.24942000000004) (-82.28666699999997 82.2291560000001) (-82.26306199999999 82.22221400000001) (-82.21112099999999 82.20471199999997) (-82.160278 82.19331399999999) (-82.10194399999995 82.18304400000005) (-82.011124 82.1685940000001) (-81.91805999999991 82.15498400000007) (-81.60888699999998 82.11859099999998) (-81.42527799999993 82.0977630000001) (-81.35305799999998 82.09165999999993) (-81.24916100000002 82.08137500000004) (-81.150284 82.06887800000004) (-81.09111000000001 82.059418) (-80.86833200000001 82.03137200000009) (-80.640289 82.01832600000012) (-80.43249499999996 81.99748199999999) (-80.22582999999997 81.98609899999997) (-80.15360999999996 81.98136899999992) (-80.0850069999999 81.97360200000014) (-80.03527799999995 81.96304299999991) (-79.88305699999995 81.92469800000003) (-79.6100009999999 81.851089) (-79.58972199999994 81.84414700000008) (-79.587784 81.83831800000007) (-79.57722499999994 81.82887299999999) (-79.56416300000001 81.82527199999993) (-79.53443900000002 81.82083100000006) (-79.49221799999992 81.81971700000003) (-79.24444599999993 81.81608599999998) (-79.22917199999995 81.81608599999998) (-79.452225 81.88998400000014) (-79.48998999999998 81.90026900000004) (-79.52111799999989 81.90554800000007) (-79.57972699999993 81.91360500000002) (-79.670837 81.92747500000007) (-79.84445199999993 81.97137499999991) (-79.83778399999994 82.00721700000008) (-79.83222999999987 82.01388500000002) (-79.85333300000002 82.0188750000001) (-79.880829 82.021927) (-79.91639700000002 82.02388000000013) (-80.21389799999986 82.03221100000002) (-80.33168 82.038589) (-80.368607 82.04109199999999) (-80.624435 82.06192000000004) (-80.65722699999992 82.06469700000014) (-80.72555499999999 82.07165500000013) (-80.79110700000001 82.0794370000001) (-80.82223499999992 82.08387800000003) (-80.87832600000002 82.09414700000002) (-80.92222600000002 82.1035920000001) (-80.94860799999998 82.1102600000001) (-80.962784 82.11637900000011) (-80.97555499999999 82.12359600000002) (-80.97555499999999 82.12776200000013) (-80.95666499999999 82.13720699999999) (-80.93138099999999 82.14221200000003) (-80.89973399999991 82.14637800000014) (-80.874435 82.151093) (-80.86805699999996 82.15498400000007) (-80.90916399999998 82.15664700000013) (-81.05139199999996 82.15470900000003) (-81.171112 82.15637200000015) (-81.25334199999992 82.15971400000006) (-81.32472200000001 82.16499300000004) (-81.42332499999998 82.1769260000001) (-81.79972800000002 82.22276299999999) (-81.82556199999993 82.22665400000005) (-81.88778699999995 82.23803700000002) (-82.170547 82.28665200000006) (-82.45472699999999 82.32804899999996) (-82.51306199999993 82.33776900000004) (-82.62554899999992 82.35914600000007) (-82.67999299999997 82.37081900000004) (-82.71167000000003 82.38247700000011) (-82.722778 82.38832100000008) (-82.7308349999999 82.39526400000011) (-82.73222399999997 82.40165700000006) (-82.72888199999994 82.40832500000005) (-82.71028100000001 82.41943400000008) (-82.69833399999999 82.4249880000001) (-82.539444 82.49720800000011) (-82.52055399999995 82.50248700000009) (-82.49833699999999 82.50637799999998) (-82.45889299999999 82.50833100000011) (-82.40638699999988 82.50915500000008) (-82.316956 82.50694300000004) (-82.09167500000001 82.50138900000002) (-81.66999799999991 82.49247700000001) (-81.541672 82.49609399999997) (-81.54222099999993 82.50499000000008) (-81.71333299999998 82.51527400000009) (-81.75140399999998 82.51693700000004) (-81.84722899999997 82.51554899999996) (-81.88055400000002 82.51776100000001) (-81.92748999999998 82.52276600000005) (-81.96640000000002 82.5288700000001) (-82.26390100000003 82.57666000000006) (-82.321121 82.58915700000006) (-82.34388699999994 82.59526100000011) (-82.390289 82.6119230000001) (-82.39472999999992 82.61747700000006) (-82.39222699999993 82.62275699999998) (-82.38110399999988 82.63472000000002) (-82.37193300000001 82.63970899999998) (-82.354446 82.64553799999999) (-82.33528100000001 82.65054300000003) (-82.28805499999999 82.65998800000011) (-82.25500499999993 82.66442899999998) (-82.21528599999999 82.66859399999998) (-82.15499899999992 82.67109700000015) (-82.060272 82.66970800000001) (-81.97222899999997 82.66638200000011) (-81.93138099999993 82.66387899999995) (-81.54333500000001 82.63720700000005) (-81.43249500000002 82.6291500000001) (-81.35972599999997 82.62081900000004) (-81.30082699999997 82.61109899999991) (-81.136124 82.57804900000008) (-80.989441 82.54721100000006) (-80.94972199999995 82.53804000000014) (-80.89195299999994 82.532761) (-80.58167999999995 82.543045) (-80.57806399999998 82.54609700000009) (-80.59916699999997 82.55442800000003) (-80.87388599999997 82.62970000000013) (-80.99444599999993 82.6502690000001) (-81.04998799999998 82.66081200000008) (-81.077225 82.66693100000009) (-81.09750399999996 82.67248500000005) (-81.12471 82.68691999999999) (-81.22361799999999 82.71582000000006) (-81.30583199999995 82.73387100000002) (-81.449997 82.75555399999996) (-81.50862099999995 82.76470900000004) (-81.57362399999994 82.78831500000007) (-81.58444199999991 82.79443400000014) (-81.58500699999996 82.80081200000006) (-81.57167099999992 82.80636600000008) (-81.55665599999998 82.81137100000012) (-81.53639199999992 82.816666) (-81.51417500000002 82.82110600000004) (-81.473053 82.82499700000011) (-81.41139199999992 82.82777399999998) (-81.35972599999997 82.82777399999998) (-81.02223200000003 82.82193000000001) (-80.97721899999993 82.82026700000006) (-80.801941 82.8124850000001) (-80.500565 82.79748499999994) (-80.41833499999996 82.79220599999996) (-80.381104 82.78887900000007) (-80.31861899999996 82.77998400000001) (-80.2933349999999 82.77442900000011) (-80.15834000000001 82.72776800000008) (-80.13890100000003 82.71998600000012) (-80.13944999999995 82.71582000000006) (-80.17832900000002 82.69999700000005) (-80.18249500000002 82.69470199999995) (-80.18138099999993 82.68775900000014) (-80.16027799999995 82.68136600000003) (-80.0708469999999 82.66554300000001) (-80.00306699999999 82.65637200000003) (-79.941666 82.64942900000005) (-79.86166400000002 82.64415000000008) (-79.81777999999991 82.64444000000009) (-79.80082700000003 82.64665200000013) (-79.803604 82.64999400000005) (-79.82250999999997 82.65776100000005) (-79.84861799999999 82.66387899999995) (-79.966949 82.68470800000011) (-79.98332199999999 82.68914799999999) (-79.97749299999998 82.69581599999992) (-79.96139499999992 82.70082100000002) (-79.928604 82.70555100000001) (-79.88583399999987 82.70860299999993) (-79.82972699999999 82.70887800000014) (-79.7875059999999 82.707764) (-79.74749799999995 82.70498700000007) (-79.68415800000002 82.69970699999999) (-79.61749299999991 82.69303900000006) (-79.46833800000002 82.67747500000013) (-79.38473499999998 82.6727600000001) (-79.14999399999994 82.66775500000006) (-78.843613 82.66499299999998) (-78.56555200000003 82.67469800000003) (-78.521118 82.67692599999998) (-78.502792 82.68109099999998) (-78.53195199999999 82.68441800000011) (-78.57667500000002 82.68691999999999) (-78.84083599999997 82.68081700000005) (-78.89500399999986 82.68026700000001) (-78.93194599999998 82.68165600000003) (-79.24305700000002 82.6952510000001) (-79.33168 82.69970699999999) (-79.40306099999998 82.70637499999998) (-79.62304699999999 82.72776800000008) (-79.8369449999999 82.75054900000009) (-79.88694800000002 82.75943000000007) (-79.91332999999992 82.76527400000003) (-79.93638599999997 82.77221700000007) (-79.99694799999997 82.803314) (-79.97582999999997 82.80859400000003) (-79.94248999999996 82.81137100000012) (-79.69221500000003 82.81805400000007) (-79.67443799999995 82.82026700000006) (-79.67222599999991 82.82388300000014) (-79.67388900000003 82.8247070000001) (-79.84777799999995 82.83499100000012) (-79.896118 82.83581500000008) (-80.00666799999993 82.834427) (-80.11000099999995 82.83471700000001) (-80.15834000000001 82.83554100000015) (-80.19415300000003 82.83831800000007) (-80.21972700000003 82.84165999999999) (-80.27722199999994 82.85081500000001) (-80.39306599999998 82.87553400000002) (-80.43028299999997 82.88749700000005) (-80.42971799999998 82.89415000000002) (-80.398056 82.899719) (-80.09583999999995 82.93719499999997) (-79.90472399999999 82.95109600000012) (-79.79333500000001 82.95748900000012) (-79.45834400000001 82.974152) (-79.414444 82.97526600000015) (-79.370544 82.974152) (-79.17748999999998 82.9519350000001) (-79.07333399999999 82.90193199999999) (-79.06443799999988 82.89582800000011) (-79.066101 82.88943499999999) (-78.92805499999997 82.89860500000003) (-78.825287 82.92804000000012) (-78.78028899999998 82.93803400000013) (-78.75611899999996 82.94247400000012) (-78.71972699999998 82.94664000000006) (-78.67111199999994 82.94552600000009) (-78.63194299999998 82.94136000000015) (-78.546112 82.9266510000001) (-78.52166699999992 82.92109700000009) (-78.50334199999992 82.91331499999995) (-78.50195300000001 82.907761) (-78.5041809999999 82.901093) (-78.52194199999997 82.88915999999995) (-78.53860500000002 82.87664799999999) (-78.55777 82.86053500000014) (-78.5533289999999 82.8535920000001) (-78.53443900000002 82.8477630000001) (-78.50056499999994 82.84553499999998) (-78.34167499999995 82.85054000000002) (-78.17555199999998 82.82720899999998) (-78.14416499999993 82.82331800000009) (-78.10916099999997 82.8252720000001) (-78.10665899999998 82.83194000000009) (-78.12887599999988 82.83665500000012) (-78.19444299999992 82.84582499999999) (-78.22361799999999 82.85108899999994) (-78.24137899999994 82.85887100000008) (-78.23889199999996 82.86526500000014) (-78.108337 82.89332600000006) (-78.08029199999999 82.8983310000001) (-77.98666399999996 82.90998800000006) (-77.94999699999988 82.91415400000011) (-77.86332700000003 82.92137100000002) (-77.81304899999986 82.92442299999999) (-77.76834099999996 82.92248500000005) (-77.70834400000001 82.91609200000005) (-77.68888900000002 82.91249099999999) (-77.61665299999999 82.90277100000009) (-77.52806099999992 82.89109800000011) (-77.46722399999999 82.88388099999997) (-77.40527299999991 82.87886000000003) (-77.319458 82.87330600000001) (-77.12832599999996 82.86331200000001) (-77.108047 82.85914600000012) (-77.08917199999996 82.85276799999997) (-76.96665999999999 82.80470300000013) (-76.95916699999992 82.77415500000001) (-76.941666 82.768326) (-76.898346 82.766098) (-76.85110499999996 82.76499900000005) (-76.81555200000003 82.76110799999998) (-76.78916899999996 82.75637799999993) (-76.766663 82.75082399999997) (-76.70861799999994 82.73304700000006) (-76.67443800000001 82.72137499999997) (-76.64416499999999 82.70915200000007) (-76.612503 82.69609100000014) (-76.598053 82.68887300000011) (-76.57055699999995 82.66665600000005) (-76.53832999999997 82.664154) (-76.38722199999995 82.65138200000001) (-76.09333799999996 82.62081900000004) (-76.05888400000003 82.61692800000014) (-75.91389500000002 82.59748799999994) (-75.89222699999999 82.59193399999998) (-75.89639299999999 82.58831800000007) (-75.91861 82.57998700000002) (-75.93832399999997 82.57582100000013) (-75.972778 82.57138100000009) (-76.03889500000002 82.55720500000007) (-76.19471699999997 82.51110800000004) (-76.20750399999997 82.50637799999998) (-76.21777299999991 82.50054899999998) (-76.25527999999997 82.47192400000012) (-76.26100200000002 82.46655299999998) (-76.2369379999999 82.44525099999998) (-76.23083500000001 82.444702) (-76.18415800000002 82.45387299999999) (-76.10278299999987 82.47053499999998) (-76.03778099999994 82.48442100000011) (-75.97500600000001 82.49971) (-75.88722199999995 82.52221700000013) (-75.80277999999998 82.54637100000002) (-75.77389499999992 82.55720500000007) (-75.67138699999992 82.58692900000011) (-75.648056 82.59166000000005) (-75.60638399999993 82.59582500000005) (-75.50083899999993 82.60026600000015) (-75.45167500000002 82.603317) (-75.42027300000001 82.60693400000014) (-75.396118 82.61469999999997) (-75.40972899999997 82.61914100000007) (-75.43472300000002 82.62387100000012) (-75.46888699999988 82.62776200000002) (-75.50361599999985 82.62886000000009) (-75.55749499999996 82.62858599999998) (-75.62554899999998 82.63304099999999) (-75.670547 82.64276100000006) (-75.80749500000002 82.65470900000008) (-76.10305799999998 82.68609600000002) (-76.23582499999998 82.71220399999999) (-76.25639299999995 82.71720900000003) (-76.27555799999993 82.724426) (-76.29998799999987 82.73970000000003) (-76.30665599999992 82.7458190000001) (-76.30915800000002 82.7527770000001) (-76.269455 82.76081799999997) (-76.22639500000002 82.7644350000001) (-76.17639199999996 82.76721200000003) (-76.05694599999998 82.77165200000002) (-76.014725 82.77581800000013) (-75.989441 82.77998400000001) (-75.97610499999996 82.78471400000006) (-75.99833699999994 82.78749099999993) (-76.18638599999997 82.78387500000008) (-76.241379 82.78360000000004) (-76.28860500000002 82.78471400000006) (-76.37527499999999 82.78915400000005) (-76.447495 82.79748499999994) (-76.50167799999997 82.8077550000001) (-76.52528399999994 82.813873) (-76.54527299999995 82.82110600000004) (-76.58639499999998 82.83859300000006) (-76.629166 82.85971099999995) (-76.66665599999999 82.87248200000005) (-76.71083099999998 82.88581800000003) (-76.752792 82.89498899999995) (-76.84416199999998 82.90914900000007) (-76.88194299999998 82.91360500000002) (-77.02583299999998 82.92776500000008) (-77.06639099999995 82.93081699999999) (-77.13166799999999 82.93997200000007) (-77.34472699999998 82.972488) (-77.3852839999999 82.983047) (-77.38137799999998 82.99443100000013) (-77.364441 83.00000000000011) (-77.341949 83.00555400000013) (-77.27610800000002 83.02026400000005) (-77.25222799999995 83.0252690000001) (-77.22277799999995 83.03054800000007) (-77.18388399999998 83.03387500000002) (-77.13473499999998 83.032486) (-77.1372219999999 83.02832000000012) (-77.17138699999998 83.01721199999997) (-77.16972399999997 83.01388500000002) (-77.13555899999994 83.01138300000014) (-76.86305199999993 83.01081800000009) (-76.55943299999996 83.01193200000006) (-76.36027499999994 83.02137800000003) (-76.266663 83.02915999999999) (-76.20666499999993 83.03665200000012) (-76.11332700000003 83.05053700000002) (-76.07917799999996 83.0535890000001) (-76.02861000000001 83.05442800000009) (-75.97972099999993 83.05304000000001) (-75.94860799999992 83.05192600000004) (-75.58084100000002 83.03804000000002) (-75.31332399999991 83.02748099999997) (-75.04695100000004 83.0416560000001) (-75 83.04388400000005) (-74.95639 83.04553199999998) (-74.79750100000001 83.04359400000004) (-74.70666499999999 83.04109199999994) (-74.43582200000003 83.02720599999998) (-74.40805099999989 83.0247040000001) (-74.27917500000001 83.009995) (-74.17277499999989 82.99108899999999) (-74.08416699999998 82.972488) (-74.01806599999998 82.95694000000015) (-73.87943999999987 82.89721700000013) (-73.85166899999996 82.86665300000004) (-73.81777999999997 82.85276799999997) (-73.60777299999995 82.81581099999994) (-73.54833999999994 82.80609100000004) (-73.28195199999993 82.76638800000006) (-73.24722299999996 82.76165800000001) (-73.160278 82.75138899999996) (-73.07501199999996 82.7458190000001) (-72.94972199999995 82.73887600000006) (-72.90666199999998 82.73580899999996) (-72.83583099999998 82.72859200000005) (-72.75 82.71470600000009) (-72.70083599999998 82.70332300000007) (-72.67222599999997 82.69859300000002) (-72.63389599999994 82.69442700000013) (-72.60333299999996 82.69581599999992) (-72.59472700000003 82.69747900000004) (-72.49888599999997 82.71832300000005) (-72.50250199999994 82.724426) (-72.64889499999992 82.74664300000006) (-72.71665999999993 82.75555399999996) (-72.912216 82.77665700000006) (-72.98388699999998 82.78387500000008) (-73.02722199999988 82.78692600000011) (-73.21139499999992 82.813873) (-73.25750699999992 82.82582100000008) (-73.40139799999992 82.87498500000004) (-73.42027299999995 82.89054899999996) (-73.43055699999991 82.89359999999999) (-73.46083099999993 82.89860500000003) (-73.49499499999996 82.90248100000008) (-73.577225 82.9080350000001) (-73.60749800000002 82.91304000000014) (-73.633331 82.91859399999998) (-73.65055799999999 82.92581199999995) (-73.64416499999987 82.93220500000012) (-73.63444499999997 82.93664600000005) (-73.61915599999998 82.94108600000004) (-73.26194800000002 83.00776700000006) (-73.03388999999993 83.03665200000012) (-72.94860799999998 83.05525200000005) (-72.92748999999998 83.06749000000008) (-72.65055799999993 83.09637499999997) (-72.59973100000002 83.09693900000008) (-72.57028200000002 83.092758) (-72.56861900000001 83.08776900000004) (-72.55665599999998 83.07971200000009) (-72.52389499999992 83.07693499999999) (-72.47749299999987 83.07665999999995) (-72.42416399999996 83.07916300000011) (-72.40777600000001 83.08360299999998) (-72.39361600000001 83.08943199999999) (-72.36582900000002 83.09414700000002) (-72.33639499999992 83.09776300000004) (-72.22694399999995 83.10137900000012) (-72.11193800000001 83.10108900000012) (-72.00556899999987 83.09915200000006) (-71.83168 83.09776300000004) (-71.71278399999989 83.09887700000002) (-71.6116639999999 83.09609999999998) (-71.58167999999995 83.09109500000011) (-71.59695399999987 83.08526600000005) (-71.65444899999994 83.06887800000004) (-71.69638099999992 83.05775500000004) (-71.75 83.04304500000006) (-71.7750089999999 83.03221100000002) (-71.7933349999999 83.02053799999999) (-71.79499800000002 83.01361100000008) (-71.79222099999998 83.00749200000007) (-71.77833599999991 83.00166300000006) (-71.56722999999994 82.94108600000004) (-71.493607 82.93220500000012) (-71.33666999999997 82.91470300000009) (-71.21972699999998 82.9149930000001) (-71.14416499999999 82.9083250000001) (-71.08416699999998 82.90054299999997) (-71.01834099999996 82.89193700000004) (-70.952225 82.88360599999999) (-70.87138400000003 82.88108799999998) (-70.83500699999996 82.8830410000001) (-70.84333799999996 82.88998400000008) (-70.85777300000001 82.89721700000013) (-70.90417499999995 82.9080350000001) (-70.96194499999996 82.91859399999998) (-71.08084100000002 82.93748499999998) (-71.30638099999993 82.98220800000007) (-71.47277799999995 83.00166300000006) (-71.49749800000001 83.00721700000003) (-71.48999000000003 83.01443500000005) (-71.47416699999985 83.01944000000009) (-71.42500299999995 83.0294340000001) (-71.12527499999999 83.08749400000005) (-70.8872219999999 83.09803800000009) (-70.69415299999997 83.10359200000005) (-70.58528099999995 83.10331700000006) (-70.47000099999997 83.10748299999995) (-70.37388599999997 83.11331199999995) (-70.26000999999997 83.11387600000012) (-70.16000399999996 83.11137400000001) (-70.11193799999995 83.10942100000011)))))))))) diff --git a/lisp-interpreter/tests/data/big_data_gen.json b/lisp-interpreter/tests/data/big_data_gen.json new file mode 100644 index 0000000..678bfd7 --- /dev/null +++ b/lisp-interpreter/tests/data/big_data_gen.json @@ -0,0 +1,20792 @@ +[ + { + "_id": "5ab30217581d62de8de4ff96", + "index": 0, + "guid": "cea9838d-608b-408b-be6d-5e0950b5bf8b", + "isActive": false, + "balance": "$1,351.04", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "blue", + "name": "Copeland Bowers", + "gender": "male", + "company": "OPPORTECH", + "email": "copelandbowers@opportech.com", + "phone": "+1 (820) 431-3741", + "address": "522 Sands Street, Clarktown, Puerto Rico, 4571", + "about": "Magna sunt sit commodo eu. Non velit incididunt labore sint aliquip est aliqua reprehenderit minim. Fugiat occaecat Lorem proident excepteur mollit in dolore quis ad fugiat aliqua exercitation. Magna laborum ullamco consectetur id magna consequat. Ullamco quis veniam laborum officia id voluptate occaecat amet do.\r\n", + "registered": "2015-12-28T09:45:33 +07:00", + "latitude": -85.042696, + "longitude": 157.76811, + "tags": [ + "labore", + "aute", + "consequat", + "non", + "consequat", + "non", + "irure" + ], + "friends": [ + { + "id": 0, + "name": "Conway Diaz" + }, + { + "id": 1, + "name": "Reyna Church" + }, + { + "id": 2, + "name": "Rochelle Stewart" + } + ], + "greeting": "Hello, Copeland Bowers! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217982d7fb5cf808f87", + "index": 1, + "guid": "e67a4297-6379-4018-a3d8-9f323b759213", + "isActive": true, + "balance": "$1,612.17", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "brown", + "name": "Porter Wong", + "gender": "male", + "company": "ZENTRY", + "email": "porterwong@zentry.com", + "phone": "+1 (929) 567-3212", + "address": "464 Sunnyside Court, Woodlake, Hawaii, 816", + "about": "Incididunt sint tempor elit tempor culpa. Voluptate irure dolor voluptate aliqua culpa in consequat Lorem. Adipisicing sunt dolore excepteur eu. Laboris cupidatat enim est quis sint sit Lorem commodo labore commodo commodo incididunt nostrud aliqua. Ex ex ipsum enim sint qui ea nostrud reprehenderit eiusmod irure mollit laboris. Sit qui magna aliqua nostrud reprehenderit ipsum minim cupidatat elit enim.\r\n", + "registered": "2017-01-11T02:02:40 +07:00", + "latitude": 19.167779, + "longitude": 56.707896, + "tags": [ + "exercitation", + "anim", + "Lorem", + "cillum", + "nulla", + "et", + "ullamco" + ], + "friends": [ + { + "id": 0, + "name": "Rodriguez Mcpherson" + }, + { + "id": 1, + "name": "Bailey Tate" + }, + { + "id": 2, + "name": "Alba Small" + } + ], + "greeting": "Hello, Porter Wong! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217a3ef61eb7990388a", + "index": 2, + "guid": "1c82373e-3264-4396-9e9f-c887b4a3df37", + "isActive": true, + "balance": "$2,028.25", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Dennis Galloway", + "gender": "male", + "company": "INSECTUS", + "email": "dennisgalloway@insectus.com", + "phone": "+1 (924) 505-3511", + "address": "367 Coleridge Street, Strykersville, American Samoa, 4836", + "about": "Enim aliquip minim voluptate est proident. Ullamco magna eiusmod et commodo anim consequat occaecat ea nostrud. Qui deserunt reprehenderit minim magna cillum sit ad fugiat. Reprehenderit ipsum cillum anim mollit aliquip aute aute.\r\n", + "registered": "2017-03-22T07:07:27 +06:00", + "latitude": -12.496226, + "longitude": -142.933785, + "tags": [ + "ea", + "qui", + "adipisicing", + "esse", + "velit", + "Lorem", + "ut" + ], + "friends": [ + { + "id": 0, + "name": "Terrell Henry" + }, + { + "id": 1, + "name": "Doyle Dorsey" + }, + { + "id": 2, + "name": "Dillon Eaton" + } + ], + "greeting": "Hello, Dennis Galloway! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217f427677b5ae3d97f", + "index": 3, + "guid": "f2279d93-fb22-4abb-86a8-cef53c077f58", + "isActive": false, + "balance": "$2,595.96", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Christine Delaney", + "gender": "female", + "company": "XUMONK", + "email": "christinedelaney@xumonk.com", + "phone": "+1 (936) 509-3390", + "address": "127 Lott Avenue, Lavalette, Indiana, 571", + "about": "Occaecat adipisicing eiusmod veniam ex est laborum sint est consectetur excepteur tempor veniam pariatur. Proident enim minim aute eu nulla laboris ut irure aliquip occaecat laboris ex. Consectetur dolore pariatur culpa in in quis sit mollit velit aliqua velit Lorem tempor. Esse sunt nulla nulla excepteur id fugiat excepteur in officia et eu.\r\n", + "registered": "2015-11-14T05:41:46 +07:00", + "latitude": -24.436392, + "longitude": -107.419735, + "tags": [ + "do", + "culpa", + "reprehenderit", + "in", + "elit", + "culpa", + "aute" + ], + "friends": [ + { + "id": 0, + "name": "Cornelia Glass" + }, + { + "id": 1, + "name": "Coleman Spears" + }, + { + "id": 2, + "name": "Fowler Haney" + } + ], + "greeting": "Hello, Christine Delaney! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217b05422cd8f19be76", + "index": 4, + "guid": "1f926b3a-68b9-4bb4-923e-f85cbbaa7138", + "isActive": false, + "balance": "$3,666.67", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "blue", + "name": "Melissa Chan", + "gender": "female", + "company": "CONCILITY", + "email": "melissachan@concility.com", + "phone": "+1 (936) 599-3104", + "address": "739 Fuller Place, Bartonsville, Missouri, 9787", + "about": "Est do id enim laborum amet eu. Ea proident enim sunt adipisicing nostrud et eu sint enim deserunt labore ad nulla. Exercitation mollit nulla sunt exercitation ad amet do anim ipsum ut incididunt veniam enim cupidatat. Proident elit ea labore sint occaecat laborum ullamco reprehenderit ex eiusmod tempor officia. Sit amet in reprehenderit ullamco exercitation. Dolore adipisicing voluptate deserunt nisi culpa.\r\n", + "registered": "2015-05-17T01:59:34 +06:00", + "latitude": 16.524842, + "longitude": 89.46242, + "tags": [ + "sunt", + "do", + "non", + "labore", + "aute", + "proident", + "eu" + ], + "friends": [ + { + "id": 0, + "name": "Hartman William" + }, + { + "id": 1, + "name": "Dickerson Hammond" + }, + { + "id": 2, + "name": "Diann Oneal" + } + ], + "greeting": "Hello, Melissa Chan! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217d109f7a108bd81fa", + "index": 5, + "guid": "b9fed8fc-5331-42a4-80b7-14c25cd723dc", + "isActive": false, + "balance": "$1,687.35", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Aguirre Randall", + "gender": "male", + "company": "ZILPHUR", + "email": "aguirrerandall@zilphur.com", + "phone": "+1 (870) 418-3816", + "address": "443 Clermont Avenue, Farmers, Guam, 8943", + "about": "Ea aute et eu adipisicing sunt. Irure Lorem do consectetur nulla non. Consequat elit exercitation tempor nostrud ipsum voluptate. Dolore commodo ullamco labore eiusmod do ut occaecat sint.\r\n", + "registered": "2017-05-31T11:35:10 +06:00", + "latitude": 75.028921, + "longitude": -149.218953, + "tags": [ + "voluptate", + "voluptate", + "nisi", + "dolor", + "ut", + "sit", + "deserunt" + ], + "friends": [ + { + "id": 0, + "name": "Newman Morales" + }, + { + "id": 1, + "name": "Megan Vance" + }, + { + "id": 2, + "name": "Meghan Horton" + } + ], + "greeting": "Hello, Aguirre Randall! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217be57f565410c5452", + "index": 6, + "guid": "b5168d3a-7cc6-48eb-a20d-82d8dcdd4ed3", + "isActive": false, + "balance": "$2,961.57", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "green", + "name": "Deleon Weiss", + "gender": "male", + "company": "ORBIN", + "email": "deleonweiss@orbin.com", + "phone": "+1 (962) 541-3427", + "address": "394 Apollo Street, Tryon, Minnesota, 9609", + "about": "Minim deserunt dolor do occaecat magna proident ex. Dolore dolore ea ea ipsum reprehenderit est veniam eiusmod exercitation dolore Lorem sit consequat non. Exercitation sint Lorem est ad ea et adipisicing consequat exercitation tempor non est laboris. Sunt veniam consequat qui do adipisicing enim nulla proident magna nostrud non dolore consectetur. Sint est mollit et nulla nulla nostrud adipisicing nisi veniam. Officia duis esse elit sint quis ex exercitation reprehenderit anim. Tempor non cupidatat laborum ullamco consequat incididunt quis anim.\r\n", + "registered": "2017-06-10T01:39:14 +06:00", + "latitude": 4.97346, + "longitude": 8.922837, + "tags": [ + "veniam", + "eu", + "anim", + "esse", + "laboris", + "Lorem", + "ipsum" + ], + "friends": [ + { + "id": 0, + "name": "Brandi Stein" + }, + { + "id": 1, + "name": "Hoover Buckley" + }, + { + "id": 2, + "name": "Good Sandoval" + } + ], + "greeting": "Hello, Deleon Weiss! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217a148db6e7931f215", + "index": 7, + "guid": "ddf3e850-bc67-4bb3-a0b5-a64b2ee9d2a5", + "isActive": true, + "balance": "$1,110.28", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "green", + "name": "Tanner Peterson", + "gender": "male", + "company": "REMOLD", + "email": "tannerpeterson@remold.com", + "phone": "+1 (909) 522-2603", + "address": "390 Gilmore Court, Wadsworth, Delaware, 629", + "about": "Labore aliqua duis et voluptate cillum sint reprehenderit in ex id labore tempor. Voluptate est amet proident minim in consectetur nisi esse sit in est. Amet eiusmod fugiat sit in pariatur minim labore consequat occaecat sint.\r\n", + "registered": "2017-05-05T07:46:12 +06:00", + "latitude": 46.939466, + "longitude": 104.417611, + "tags": [ + "Lorem", + "cupidatat", + "voluptate", + "tempor", + "adipisicing", + "id", + "et" + ], + "friends": [ + { + "id": 0, + "name": "Summer Lopez" + }, + { + "id": 1, + "name": "Zelma Ware" + }, + { + "id": 2, + "name": "Glover Kennedy" + } + ], + "greeting": "Hello, Tanner Peterson! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217ee5401de0ddd248c", + "index": 8, + "guid": "70a839c8-2460-475c-9119-17e76c608d6f", + "isActive": false, + "balance": "$2,040.77", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "blue", + "name": "Carney Sexton", + "gender": "male", + "company": "TALENDULA", + "email": "carneysexton@talendula.com", + "phone": "+1 (957) 512-3701", + "address": "143 Eldert Street, Coinjock, Kansas, 2802", + "about": "Ipsum duis aute cillum deserunt consequat pariatur ullamco deserunt. Enim reprehenderit aliqua proident nostrud. Voluptate veniam est reprehenderit in ex laboris non ad pariatur nostrud aliquip.\r\n", + "registered": "2014-10-03T03:17:39 +06:00", + "latitude": -34.26736, + "longitude": 90.761126, + "tags": [ + "nisi", + "ullamco", + "commodo", + "quis", + "dolor", + "est", + "Lorem" + ], + "friends": [ + { + "id": 0, + "name": "Chandler Petty" + }, + { + "id": 1, + "name": "Lynette Brady" + }, + { + "id": 2, + "name": "Mcneil Bennett" + } + ], + "greeting": "Hello, Carney Sexton! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217f0240f09da690ba0", + "index": 9, + "guid": "ac3647dc-2aee-4f42-97cd-094b6a59b8e4", + "isActive": false, + "balance": "$3,621.14", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "brown", + "name": "Tran Summers", + "gender": "male", + "company": "IMPERIUM", + "email": "transummers@imperium.com", + "phone": "+1 (911) 590-2947", + "address": "414 Ide Court, Haring, Washington, 4991", + "about": "Velit laborum pariatur occaecat cillum consequat. Quis proident adipisicing ut ut incididunt enim non. Commodo dolor anim adipisicing elit. Tempor anim non consequat consequat do.\r\n", + "registered": "2016-04-10T07:58:41 +06:00", + "latitude": 45.318806, + "longitude": -87.968456, + "tags": [ + "labore", + "excepteur", + "esse", + "cillum", + "in", + "tempor", + "Lorem" + ], + "friends": [ + { + "id": 0, + "name": "Short Wilkins" + }, + { + "id": 1, + "name": "Ida Mcguire" + }, + { + "id": 2, + "name": "Diaz Randolph" + } + ], + "greeting": "Hello, Tran Summers! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021714580d80374ec26a", + "index": 10, + "guid": "9748ff18-71a9-42f7-9aa3-7f1f3e67f39f", + "isActive": true, + "balance": "$1,751.52", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Gillespie Jordan", + "gender": "male", + "company": "NORSUP", + "email": "gillespiejordan@norsup.com", + "phone": "+1 (978) 498-3635", + "address": "785 Dewitt Avenue, Grahamtown, Oklahoma, 2138", + "about": "Excepteur quis in reprehenderit aliqua non consequat. Laborum laborum enim ea ut sunt. Sint cillum aliquip est do dolor. Irure dolor quis nulla reprehenderit ipsum culpa officia labore ad magna. Laborum quis velit labore adipisicing pariatur eiusmod commodo officia occaecat proident est qui occaecat. Dolore in eiusmod deserunt sunt adipisicing sit velit.\r\n", + "registered": "2018-01-09T09:17:27 +07:00", + "latitude": 2.331752, + "longitude": -123.208951, + "tags": [ + "non", + "adipisicing", + "Lorem", + "amet", + "et", + "consequat", + "nulla" + ], + "friends": [ + { + "id": 0, + "name": "Mara Webb" + }, + { + "id": 1, + "name": "Diana Merrill" + }, + { + "id": 2, + "name": "Frieda Tyson" + } + ], + "greeting": "Hello, Gillespie Jordan! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302177b49333940b103f6", + "index": 11, + "guid": "964d67e3-a970-4ab1-aff8-6ff8e192e75a", + "isActive": false, + "balance": "$2,364.22", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "blue", + "name": "Jarvis Chapman", + "gender": "male", + "company": "BLUPLANET", + "email": "jarvischapman@bluplanet.com", + "phone": "+1 (948) 561-3537", + "address": "984 Hall Street, Columbus, Kentucky, 7867", + "about": "Excepteur amet enim consectetur velit consectetur occaecat velit minim. Esse ut reprehenderit ut culpa eiusmod culpa mollit est reprehenderit. Cillum laborum occaecat ea magna labore velit occaecat labore. Qui commodo ea labore excepteur minim elit. Lorem labore sit anim pariatur dolor ullamco et do magna sint id Lorem. Mollit commodo non ex eiusmod proident.\r\n", + "registered": "2018-02-10T07:05:19 +07:00", + "latitude": -79.602083, + "longitude": -135.269162, + "tags": [ + "minim", + "nulla", + "ut", + "et", + "laborum", + "fugiat", + "cupidatat" + ], + "friends": [ + { + "id": 0, + "name": "Miriam Willis" + }, + { + "id": 1, + "name": "Angelique Fields" + }, + { + "id": 2, + "name": "Aisha Sullivan" + } + ], + "greeting": "Hello, Jarvis Chapman! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302171c5cc4fa924d914e", + "index": 12, + "guid": "85d16cc8-733f-4603-ba2d-478cc1493487", + "isActive": false, + "balance": "$1,174.21", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "blue", + "name": "Sandy Hansen", + "gender": "female", + "company": "XANIDE", + "email": "sandyhansen@xanide.com", + "phone": "+1 (840) 519-2414", + "address": "789 Falmouth Street, Winchester, Alabama, 940", + "about": "Aliquip consequat Lorem et amet velit aute labore. Fugiat aliqua sint labore minim ex ut. Do Lorem nisi pariatur Lorem nulla ad ex fugiat labore Lorem do aute pariatur magna. Occaecat elit do in amet ut officia excepteur ullamco incididunt. Fugiat eiusmod mollit esse magna ea. Officia amet ea ex consectetur incididunt enim elit.\r\n", + "registered": "2017-07-07T10:29:56 +06:00", + "latitude": 56.75512, + "longitude": -94.24494, + "tags": [ + "voluptate", + "aliqua", + "excepteur", + "reprehenderit", + "qui", + "est", + "in" + ], + "friends": [ + { + "id": 0, + "name": "Jamie Poole" + }, + { + "id": 1, + "name": "Oneill Cooley" + }, + { + "id": 2, + "name": "Koch Key" + } + ], + "greeting": "Hello, Sandy Hansen! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217e89092c1e40f4211", + "index": 13, + "guid": "1bea6de5-361c-4ab4-a6cd-cf91e491be02", + "isActive": true, + "balance": "$3,175.95", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "blue", + "name": "Murphy Parker", + "gender": "male", + "company": "MUSAPHICS", + "email": "murphyparker@musaphics.com", + "phone": "+1 (893) 550-2069", + "address": "959 Kings Place, Baden, West Virginia, 3438", + "about": "Aliqua ipsum cillum commodo ipsum aliqua irure amet. Officia id laborum nulla irure do deserunt fugiat ipsum proident velit. In cupidatat reprehenderit occaecat amet eu in. Minim sit aliqua minim sit magna.\r\n", + "registered": "2014-10-02T11:30:45 +06:00", + "latitude": -73.283668, + "longitude": 174.350664, + "tags": [ + "eiusmod", + "qui", + "cillum", + "qui", + "officia", + "Lorem", + "reprehenderit" + ], + "friends": [ + { + "id": 0, + "name": "Buchanan Foster" + }, + { + "id": 1, + "name": "Mayo Hensley" + }, + { + "id": 2, + "name": "Georgina Downs" + } + ], + "greeting": "Hello, Murphy Parker! You have 8 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302173e14bc9561946d2f", + "index": 14, + "guid": "fef73605-ae10-4b37-9721-c1ac6fc5046b", + "isActive": true, + "balance": "$2,537.02", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "green", + "name": "Doreen Cox", + "gender": "female", + "company": "VETRON", + "email": "doreencox@vetron.com", + "phone": "+1 (962) 459-3818", + "address": "175 Aitken Place, Veguita, Ohio, 9881", + "about": "Nulla laboris anim incididunt nostrud dolor nulla. Laboris sit aliquip deserunt officia non velit pariatur ex velit. Sint pariatur quis ad magna dolor ex exercitation esse pariatur proident tempor ullamco commodo dolor. Sint et ex ad culpa eiusmod aliquip reprehenderit proident dolore sunt pariatur in in cillum. Occaecat mollit mollit officia elit.\r\n", + "registered": "2017-08-27T05:03:13 +06:00", + "latitude": 40.359624, + "longitude": 48.74135, + "tags": [ + "velit", + "veniam", + "magna", + "fugiat", + "esse", + "laborum", + "Lorem" + ], + "friends": [ + { + "id": 0, + "name": "Frances Cook" + }, + { + "id": 1, + "name": "Christian Yates" + }, + { + "id": 2, + "name": "Janell Chambers" + } + ], + "greeting": "Hello, Doreen Cox! You have 8 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217126d23342116cef6", + "index": 15, + "guid": "44fc13d6-157e-40e8-959f-03007a0e1358", + "isActive": true, + "balance": "$3,964.74", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "blue", + "name": "Dixie Bradford", + "gender": "female", + "company": "CIRCUM", + "email": "dixiebradford@circum.com", + "phone": "+1 (866) 411-3595", + "address": "887 Atlantic Avenue, Cassel, Connecticut, 6205", + "about": "Occaecat id cillum mollit aliqua dolore pariatur fugiat ut culpa ut eu adipisicing laboris. Incididunt tempor ad ad eu quis sunt amet esse tempor. Proident labore sint amet enim magna aliqua. Excepteur do qui non enim dolor esse commodo velit minim anim fugiat.\r\n", + "registered": "2015-07-20T11:06:31 +06:00", + "latitude": 85.578093, + "longitude": -95.002626, + "tags": [ + "nulla", + "tempor", + "aliqua", + "amet", + "laboris", + "exercitation", + "nulla" + ], + "friends": [ + { + "id": 0, + "name": "Johns Myers" + }, + { + "id": 1, + "name": "Pate Roy" + }, + { + "id": 2, + "name": "Trujillo Odom" + } + ], + "greeting": "Hello, Dixie Bradford! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217cf80d0645a205c57", + "index": 16, + "guid": "ded8e64c-d4d9-405c-82df-e0bed55ad3ec", + "isActive": false, + "balance": "$3,101.16", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "brown", + "name": "Meadows Foreman", + "gender": "male", + "company": "GEOFORMA", + "email": "meadowsforeman@geoforma.com", + "phone": "+1 (868) 535-3078", + "address": "186 Rodney Street, Ruckersville, North Dakota, 2748", + "about": "Magna est elit adipisicing do. Commodo duis occaecat veniam consectetur proident incididunt nisi fugiat minim mollit mollit nulla enim. Ea ipsum amet anim ex eu deserunt proident. Labore sint Lorem duis minim mollit. Sunt do est adipisicing tempor laboris. Culpa ut ullamco eu incididunt ipsum deserunt deserunt mollit officia qui incididunt esse ipsum.\r\n", + "registered": "2015-10-17T10:03:14 +06:00", + "latitude": 17.749436, + "longitude": -88.474536, + "tags": [ + "voluptate", + "laborum", + "sunt", + "cillum", + "eu", + "tempor", + "aliquip" + ], + "friends": [ + { + "id": 0, + "name": "Janice Duffy" + }, + { + "id": 1, + "name": "Annie Brooks" + }, + { + "id": 2, + "name": "Wooten Sutton" + } + ], + "greeting": "Hello, Meadows Foreman! You have 1 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302178acb115f1f36ccc2", + "index": 17, + "guid": "b6a03f2c-c55f-4174-83d7-7b0328edae01", + "isActive": false, + "balance": "$2,972.70", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "brown", + "name": "Autumn Solomon", + "gender": "female", + "company": "MENBRAIN", + "email": "autumnsolomon@menbrain.com", + "phone": "+1 (891) 412-3049", + "address": "713 Mayfair Drive, Escondida, Mississippi, 3229", + "about": "Ullamco culpa ullamco eu exercitation ipsum ut eiusmod laboris aliqua nostrud mollit veniam aliquip. Pariatur ipsum nisi ad laboris sunt. Qui anim anim pariatur elit.\r\n", + "registered": "2014-03-28T07:32:55 +06:00", + "latitude": 5.377351, + "longitude": -150.614005, + "tags": [ + "commodo", + "id", + "Lorem", + "dolore", + "qui", + "eu", + "irure" + ], + "friends": [ + { + "id": 0, + "name": "Lorena Thomas" + }, + { + "id": 1, + "name": "Eaton Dominguez" + }, + { + "id": 2, + "name": "Bridges Massey" + } + ], + "greeting": "Hello, Autumn Solomon! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217b197ee47775e1335", + "index": 18, + "guid": "65b6f3f9-81e8-4a3c-ab0a-24558db3011a", + "isActive": true, + "balance": "$2,155.62", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "blue", + "name": "Baldwin Morrison", + "gender": "male", + "company": "SUPREMIA", + "email": "baldwinmorrison@supremia.com", + "phone": "+1 (983) 449-3559", + "address": "604 Vandervoort Place, Snyderville, New York, 2779", + "about": "Fugiat officia enim Lorem est aliquip dolor sint sunt consectetur non. Nostrud sit ad exercitation veniam aliquip veniam incididunt id sit reprehenderit nisi fugiat est esse. Anim non anim ullamco ea et.\r\n", + "registered": "2017-04-05T04:12:01 +06:00", + "latitude": -82.574105, + "longitude": -50.572693, + "tags": [ + "voluptate", + "quis", + "nisi", + "aliquip", + "laborum", + "aliqua", + "qui" + ], + "friends": [ + { + "id": 0, + "name": "Atkinson Cross" + }, + { + "id": 1, + "name": "Cochran Erickson" + }, + { + "id": 2, + "name": "Middleton Valenzuela" + } + ], + "greeting": "Hello, Baldwin Morrison! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302179dde3048218be7ec", + "index": 19, + "guid": "020579b0-8a4c-4282-b0cf-04e52772007b", + "isActive": true, + "balance": "$3,600.11", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "blue", + "name": "Donovan Sherman", + "gender": "male", + "company": "MANGELICA", + "email": "donovansherman@mangelica.com", + "phone": "+1 (870) 538-2513", + "address": "164 Manhattan Court, Ogema, Oregon, 4299", + "about": "Fugiat sit duis proident dolore in in veniam non. Fugiat aliqua id sunt sint. Incididunt deserunt duis tempor exercitation sunt velit pariatur tempor ex excepteur laborum aliquip eu elit. Sunt eiusmod ut sunt proident sint culpa. Adipisicing aliquip qui veniam minim laborum voluptate velit cillum commodo sint reprehenderit deserunt laboris eiusmod. Id cupidatat commodo cupidatat cillum ex veniam.\r\n", + "registered": "2017-10-27T01:37:58 +06:00", + "latitude": 17.945923, + "longitude": 156.110692, + "tags": [ + "et", + "consequat", + "amet", + "et", + "do", + "incididunt", + "esse" + ], + "friends": [ + { + "id": 0, + "name": "Burgess Bird" + }, + { + "id": 1, + "name": "Melanie Langley" + }, + { + "id": 2, + "name": "Pruitt Cortez" + } + ], + "greeting": "Hello, Donovan Sherman! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302170bee00873f83b951", + "index": 20, + "guid": "70b90eca-caf0-4012-bcd4-7f33844ad66d", + "isActive": false, + "balance": "$1,866.37", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "brown", + "name": "Le Washington", + "gender": "male", + "company": "FROLIX", + "email": "lewashington@frolix.com", + "phone": "+1 (875) 544-3392", + "address": "653 Eagle Street, Rockingham, New Jersey, 825", + "about": "Ipsum incididunt incididunt cupidatat mollit anim Lorem exercitation nisi laboris mollit voluptate. Incididunt tempor nostrud cupidatat Lorem. Et nulla sit voluptate culpa veniam dolor velit do ex esse culpa. Lorem officia ullamco aute consequat aliqua laboris veniam elit est enim laboris qui. Consectetur exercitation ullamco ipsum pariatur pariatur irure cupidatat pariatur ex sunt nisi cupidatat commodo fugiat. Duis proident laborum pariatur mollit non ipsum exercitation proident esse et. Officia veniam cillum occaecat quis.\r\n", + "registered": "2015-05-30T03:02:52 +06:00", + "latitude": 84.182804, + "longitude": -152.426654, + "tags": [ + "labore", + "veniam", + "in", + "enim", + "nisi", + "deserunt", + "sit" + ], + "friends": [ + { + "id": 0, + "name": "Jones Mccarty" + }, + { + "id": 1, + "name": "Valencia Bates" + }, + { + "id": 2, + "name": "Daphne Norman" + } + ], + "greeting": "Hello, Le Washington! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217768088f0710787e7", + "index": 21, + "guid": "63e46f38-2019-4752-889b-0696f5b4f6e4", + "isActive": false, + "balance": "$2,721.00", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "brown", + "name": "Mitchell Avery", + "gender": "male", + "company": "CUJO", + "email": "mitchellavery@cujo.com", + "phone": "+1 (968) 567-2827", + "address": "570 Varick Street, Nogal, Montana, 8809", + "about": "Sint labore incididunt non amet. Labore anim ad nulla officia irure ipsum ad aliqua ea. In enim anim do esse sunt Lorem ut adipisicing tempor proident. Velit ipsum ea sint adipisicing est. Ea laborum consectetur laboris fugiat laborum Lorem voluptate cillum. Amet sunt sit est nisi esse qui. Fugiat eu mollit consequat et.\r\n", + "registered": "2017-02-18T12:57:00 +07:00", + "latitude": -7.290183, + "longitude": -82.004467, + "tags": [ + "exercitation", + "enim", + "dolor", + "irure", + "proident", + "est", + "et" + ], + "friends": [ + { + "id": 0, + "name": "Jami Johnston" + }, + { + "id": 1, + "name": "Burt Rhodes" + }, + { + "id": 2, + "name": "Gould Mitchell" + } + ], + "greeting": "Hello, Mitchell Avery! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302173ddbd7b2508b0b02", + "index": 22, + "guid": "e394236e-3317-4bd3-924b-22846080ca75", + "isActive": true, + "balance": "$2,928.32", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "blue", + "name": "Goodman Garrison", + "gender": "male", + "company": "QUILCH", + "email": "goodmangarrison@quilch.com", + "phone": "+1 (953) 548-3598", + "address": "800 Cumberland Walk, Dennard, Nevada, 8255", + "about": "Dolor do cillum dolore in magna. Adipisicing id consectetur anim veniam nostrud anim. Et nisi enim ipsum aliquip ipsum duis irure eu et fugiat adipisicing do ut laborum. Do mollit laboris esse esse mollit non sint et eiusmod exercitation veniam amet anim ea.\r\n", + "registered": "2014-03-17T01:55:00 +06:00", + "latitude": 18.102407, + "longitude": -146.789592, + "tags": [ + "eiusmod", + "consequat", + "nostrud", + "sit", + "duis", + "nisi", + "in" + ], + "friends": [ + { + "id": 0, + "name": "Foreman Watson" + }, + { + "id": 1, + "name": "Mable Ramsey" + }, + { + "id": 2, + "name": "Barton Potter" + } + ], + "greeting": "Hello, Goodman Garrison! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217fd8b6bab5f21c6d5", + "index": 23, + "guid": "38c22341-ee90-48a5-b1d7-32791df624b2", + "isActive": true, + "balance": "$2,255.81", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "blue", + "name": "Beach Riley", + "gender": "male", + "company": "DYNO", + "email": "beachriley@dyno.com", + "phone": "+1 (888) 562-3949", + "address": "163 Woodbine Street, Vowinckel, Colorado, 8009", + "about": "Quis proident laborum quis labore irure cupidatat irure. Ad sint labore sit elit. Occaecat cupidatat qui esse sint tempor adipisicing aliqua quis sit duis eiusmod cupidatat qui. Est ex ut exercitation mollit nostrud culpa magna voluptate excepteur labore magna. Nostrud laborum non fugiat amet ut.\r\n", + "registered": "2016-02-07T12:16:37 +07:00", + "latitude": 68.812988, + "longitude": -128.436196, + "tags": [ + "elit", + "in", + "nostrud", + "est", + "nostrud", + "nostrud", + "officia" + ], + "friends": [ + { + "id": 0, + "name": "Mcpherson Dodson" + }, + { + "id": 1, + "name": "Dora Cantrell" + }, + { + "id": 2, + "name": "Ferrell Becker" + } + ], + "greeting": "Hello, Beach Riley! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021754d5b8634d5adb91", + "index": 24, + "guid": "355a2f46-1581-4857-98a0-31b3f0e24f8d", + "isActive": false, + "balance": "$1,320.82", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "blue", + "name": "Benjamin Patton", + "gender": "male", + "company": "MONDICIL", + "email": "benjaminpatton@mondicil.com", + "phone": "+1 (920) 575-3987", + "address": "964 Montana Place, Turah, New Mexico, 3677", + "about": "Consectetur exercitation non aliqua eu ut non nostrud et eu esse ex. Aliquip proident duis mollit sit esse est cillum fugiat fugiat qui. Magna excepteur consequat labore in esse. Commodo nulla eu nulla officia ipsum dolor dolor mollit deserunt eiusmod elit ea sit. Nisi voluptate fugiat qui nulla ad magna do est. Aliqua minim est do minim esse enim. Duis ipsum fugiat est consequat enim dolore culpa cillum nostrud.\r\n", + "registered": "2014-01-23T06:45:58 +07:00", + "latitude": -31.075216, + "longitude": -96.591157, + "tags": [ + "irure", + "qui", + "exercitation", + "aliquip", + "ut", + "eu", + "quis" + ], + "friends": [ + { + "id": 0, + "name": "Wilcox Bray" + }, + { + "id": 1, + "name": "Harmon Abbott" + }, + { + "id": 2, + "name": "Estes Garner" + } + ], + "greeting": "Hello, Benjamin Patton! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217f68da6ef748298f0", + "index": 25, + "guid": "3c1d7610-d22f-4a89-b001-c578d12d787f", + "isActive": false, + "balance": "$2,324.21", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "blue", + "name": "Freida Peters", + "gender": "female", + "company": "FIBRODYNE", + "email": "freidapeters@fibrodyne.com", + "phone": "+1 (906) 461-3853", + "address": "534 Lincoln Place, Aberdeen, Texas, 6075", + "about": "Ex nisi enim sunt esse nulla sit fugiat elit qui consequat. Enim ipsum dolore dolore sit occaecat minim laborum ullamco nisi quis magna. Elit adipisicing labore exercitation sit laboris nulla. Dolore sunt nisi officia sint pariatur laborum ipsum cupidatat proident. Do nostrud veniam nisi culpa voluptate aliquip est eu est dolor culpa eiusmod ipsum veniam. Reprehenderit tempor in Lorem do aliqua enim ea sint occaecat cillum. Velit nisi adipisicing ipsum sunt incididunt nisi mollit aliqua enim cillum excepteur dolor excepteur nisi.\r\n", + "registered": "2014-04-24T04:07:50 +06:00", + "latitude": -85.494052, + "longitude": -28.348258, + "tags": [ + "duis", + "aliqua", + "in", + "nisi", + "consectetur", + "est", + "mollit" + ], + "friends": [ + { + "id": 0, + "name": "Bridgett Ramos" + }, + { + "id": 1, + "name": "Shannon Schneider" + }, + { + "id": 2, + "name": "Imogene Snow" + } + ], + "greeting": "Hello, Freida Peters! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021795e73dab8ebdcb40", + "index": 26, + "guid": "e90740b6-23ba-40ff-8354-aba173842e5c", + "isActive": true, + "balance": "$3,892.71", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "blue", + "name": "Morton Owen", + "gender": "male", + "company": "QUORDATE", + "email": "mortonowen@quordate.com", + "phone": "+1 (989) 424-2052", + "address": "486 Coyle Street, Aguila, North Carolina, 845", + "about": "Minim esse enim officia est excepteur proident mollit nulla ex labore irure irure incididunt deserunt. Aliqua laborum quis qui aliquip tempor voluptate cupidatat qui duis nostrud do mollit. Reprehenderit sit exercitation tempor do nisi. Quis aute consequat consectetur mollit enim laboris proident proident amet. Laboris labore magna commodo cillum sunt nisi. Excepteur fugiat amet mollit velit irure consequat ut reprehenderit ea in labore magna in minim.\r\n", + "registered": "2014-09-05T03:12:40 +06:00", + "latitude": -32.30538, + "longitude": -116.586186, + "tags": [ + "velit", + "reprehenderit", + "eu", + "veniam", + "ex", + "sunt", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Moon Burke" + }, + { + "id": 1, + "name": "Latisha Soto" + }, + { + "id": 2, + "name": "Alicia Padilla" + } + ], + "greeting": "Hello, Morton Owen! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302178bdf922160a70e81", + "index": 27, + "guid": "212926db-17a4-47c0-9fcb-c6342c69d03f", + "isActive": false, + "balance": "$1,694.51", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "brown", + "name": "Suzanne Gross", + "gender": "female", + "company": "GAZAK", + "email": "suzannegross@gazak.com", + "phone": "+1 (998) 442-2644", + "address": "700 Harbor Lane, Springdale, Nebraska, 3542", + "about": "Ipsum labore cupidatat veniam in eu culpa ad sint voluptate excepteur voluptate sunt. Consectetur dolore aliquip labore nulla amet occaecat dolore do officia aliqua ex eiusmod nulla. Elit anim veniam adipisicing cupidatat aliqua labore exercitation est eu. Magna commodo est esse ullamco exercitation ullamco consectetur laborum. Laborum sunt id in aliqua sunt enim commodo laborum et adipisicing eiusmod ex.\r\n", + "registered": "2015-09-21T12:57:54 +06:00", + "latitude": -3.919427, + "longitude": -25.112961, + "tags": [ + "tempor", + "cupidatat", + "sunt", + "ullamco", + "non", + "reprehenderit", + "eu" + ], + "friends": [ + { + "id": 0, + "name": "Lesa Greene" + }, + { + "id": 1, + "name": "Lloyd Huff" + }, + { + "id": 2, + "name": "Whitaker Stuart" + } + ], + "greeting": "Hello, Suzanne Gross! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021720ac266f5d9ed123", + "index": 28, + "guid": "b8175c10-25c7-4af7-8e0d-9fc23f15ca0c", + "isActive": false, + "balance": "$2,605.38", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "green", + "name": "Elliott Gill", + "gender": "male", + "company": "LYRIA", + "email": "elliottgill@lyria.com", + "phone": "+1 (858) 400-2583", + "address": "287 Sharon Street, Wawona, Tennessee, 9753", + "about": "Pariatur exercitation consequat occaecat non irure id quis. Eu veniam veniam aute ut ex quis sit ad culpa elit aliquip culpa minim. Dolor sit ex sunt sunt esse tempor sit non ea occaecat ullamco veniam proident.\r\n", + "registered": "2015-03-20T02:43:55 +06:00", + "latitude": 63.235687, + "longitude": -136.445157, + "tags": [ + "irure", + "labore", + "non", + "ex", + "culpa", + "consequat", + "voluptate" + ], + "friends": [ + { + "id": 0, + "name": "Vazquez Romero" + }, + { + "id": 1, + "name": "Glenn Witt" + }, + { + "id": 2, + "name": "Melva Boone" + } + ], + "greeting": "Hello, Elliott Gill! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217b7e6532404b69553", + "index": 29, + "guid": "dc61b2b0-fa74-4a84-8c19-8d1fe5da573c", + "isActive": true, + "balance": "$1,575.67", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "brown", + "name": "Campos Serrano", + "gender": "male", + "company": "TELEQUIET", + "email": "camposserrano@telequiet.com", + "phone": "+1 (876) 480-3673", + "address": "637 Strong Place, Shaft, Utah, 902", + "about": "Laboris do consequat sint irure sunt. Dolor cupidatat dolor dolore labore anim exercitation veniam. Proident fugiat sunt cupidatat officia amet culpa reprehenderit tempor dolor amet excepteur sint proident.\r\n", + "registered": "2018-03-09T04:51:21 +07:00", + "latitude": 3.391849, + "longitude": -66.109532, + "tags": [ + "duis", + "veniam", + "eiusmod", + "reprehenderit", + "qui", + "laborum", + "sit" + ], + "friends": [ + { + "id": 0, + "name": "Kelly Jenkins" + }, + { + "id": 1, + "name": "Mathews Deleon" + }, + { + "id": 2, + "name": "Diane Bentley" + } + ], + "greeting": "Hello, Campos Serrano! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302177527fda515a9a75f", + "index": 30, + "guid": "28168181-b20a-4c38-bda1-d46adc73a048", + "isActive": false, + "balance": "$1,205.44", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "green", + "name": "Francisca Robertson", + "gender": "female", + "company": "NUTRALAB", + "email": "franciscarobertson@nutralab.com", + "phone": "+1 (885) 412-2513", + "address": "845 Wyckoff Avenue, Spokane, Marshall Islands, 8826", + "about": "Fugiat anim duis anim amet culpa nisi dolor do aliqua eu. Dolor nisi aute elit ex occaecat officia laboris esse nostrud laboris voluptate cillum. Ea qui magna non ea est. Consequat amet eu nostrud aliquip culpa culpa incididunt sunt esse culpa. Minim pariatur dolore ad consequat ut qui magna ex.\r\n", + "registered": "2016-07-31T10:36:32 +06:00", + "latitude": 84.528899, + "longitude": 87.901553, + "tags": [ + "deserunt", + "fugiat", + "quis", + "est", + "sint", + "in", + "aliqua" + ], + "friends": [ + { + "id": 0, + "name": "Darcy Frank" + }, + { + "id": 1, + "name": "Brandie English" + }, + { + "id": 2, + "name": "Tucker Velasquez" + } + ], + "greeting": "Hello, Francisca Robertson! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217687da0ab2a818d73", + "index": 31, + "guid": "a8fa7fe2-d5c3-486f-9244-114497279185", + "isActive": false, + "balance": "$3,233.24", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "blue", + "name": "Harper Olson", + "gender": "male", + "company": "HAWKSTER", + "email": "harperolson@hawkster.com", + "phone": "+1 (935) 471-3588", + "address": "618 Himrod Street, Edgewater, Georgia, 4647", + "about": "Dolore reprehenderit velit elit nisi duis pariatur commodo quis elit magna ex eiusmod. In esse ex adipisicing officia officia sit ex velit voluptate occaecat officia incididunt duis. Ut laborum proident excepteur exercitation esse ex id mollit amet velit cupidatat.\r\n", + "registered": "2017-02-23T12:09:51 +07:00", + "latitude": 4.047024, + "longitude": -32.488619, + "tags": [ + "incididunt", + "duis", + "est", + "aliquip", + "pariatur", + "aliqua", + "cupidatat" + ], + "friends": [ + { + "id": 0, + "name": "Ruthie Larson" + }, + { + "id": 1, + "name": "Carroll Warren" + }, + { + "id": 2, + "name": "Carlene Ochoa" + } + ], + "greeting": "Hello, Harper Olson! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217ab355086f920c5b1", + "index": 32, + "guid": "3194136f-e470-455b-bc77-271ae82a0f97", + "isActive": false, + "balance": "$1,968.16", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "blue", + "name": "Browning Mcgowan", + "gender": "male", + "company": "PYRAMIA", + "email": "browningmcgowan@pyramia.com", + "phone": "+1 (878) 588-3239", + "address": "157 Hausman Street, Otranto, Massachusetts, 7827", + "about": "Anim eu velit excepteur excepteur sit qui quis magna commodo ex cupidatat ad aute. Laboris eiusmod qui proident velit id occaecat exercitation laborum amet ea excepteur. Reprehenderit dolore commodo magna aute fugiat quis. Aliqua est elit sunt voluptate id tempor labore incididunt tempor. Duis esse deserunt esse tempor ex ipsum veniam tempor eu culpa culpa cupidatat ipsum Lorem. Commodo ea dolore Lorem do aute.\r\n", + "registered": "2016-09-02T10:26:22 +06:00", + "latitude": -41.944499, + "longitude": -121.407514, + "tags": [ + "deserunt", + "ad", + "proident", + "ex", + "ex", + "adipisicing", + "id" + ], + "friends": [ + { + "id": 0, + "name": "Shana Watts" + }, + { + "id": 1, + "name": "Abby Pena" + }, + { + "id": 2, + "name": "Dionne Bush" + } + ], + "greeting": "Hello, Browning Mcgowan! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021721459f3c8408e94a", + "index": 33, + "guid": "213e3c1c-b35f-4a11-ae63-88ae2a123d97", + "isActive": true, + "balance": "$1,784.80", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "brown", + "name": "Hill Gentry", + "gender": "male", + "company": "XYQAG", + "email": "hillgentry@xyqag.com", + "phone": "+1 (965) 501-2850", + "address": "666 Highland Place, Wollochet, Arizona, 2468", + "about": "Enim reprehenderit voluptate do adipisicing ut elit esse anim voluptate anim ut pariatur. Laboris elit id veniam sunt est fugiat veniam irure. Fugiat ut quis sint voluptate in.\r\n", + "registered": "2015-09-29T07:31:46 +06:00", + "latitude": -52.173613, + "longitude": -124.063955, + "tags": [ + "dolore", + "officia", + "excepteur", + "ex", + "labore", + "excepteur", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Dickson Velazquez" + }, + { + "id": 1, + "name": "Yvonne Turner" + }, + { + "id": 2, + "name": "Santos Cole" + } + ], + "greeting": "Hello, Hill Gentry! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021717d13c11b2e07049", + "index": 34, + "guid": "8d16510b-2e3c-4a9e-be28-061d7a80f6c3", + "isActive": true, + "balance": "$3,635.68", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "brown", + "name": "Higgins Rodriguez", + "gender": "male", + "company": "ZOXY", + "email": "higginsrodriguez@zoxy.com", + "phone": "+1 (854) 518-2812", + "address": "844 Malbone Street, Jeff, District Of Columbia, 7810", + "about": "Nisi eu nostrud irure velit officia. Cillum sit deserunt elit officia sit exercitation aute reprehenderit esse labore elit duis minim. Ad velit veniam irure consequat. Tempor amet aliqua id in laborum veniam commodo excepteur sit ipsum id officia.\r\n", + "registered": "2015-06-20T05:04:49 +06:00", + "latitude": -77.849689, + "longitude": 100.789693, + "tags": [ + "officia", + "voluptate", + "occaecat", + "sunt", + "deserunt", + "anim", + "ea" + ], + "friends": [ + { + "id": 0, + "name": "Berg Crosby" + }, + { + "id": 1, + "name": "Essie Fischer" + }, + { + "id": 2, + "name": "Stuart Mcfarland" + } + ], + "greeting": "Hello, Higgins Rodriguez! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021746b95b7ae7f41823", + "index": 35, + "guid": "725c7ec9-8d60-4817-a062-e8c62450117e", + "isActive": true, + "balance": "$3,170.74", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "green", + "name": "Lucia Pratt", + "gender": "female", + "company": "TERRAGO", + "email": "luciapratt@terrago.com", + "phone": "+1 (911) 484-2500", + "address": "345 Conselyea Street, Cumberland, Virgin Islands, 5886", + "about": "Eu enim occaecat dolore adipisicing nostrud laborum dolor veniam minim excepteur dolor. Sunt voluptate aliquip excepteur eu est dolore veniam laborum laborum. Non culpa elit sint cupidatat incididunt irure voluptate ex minim reprehenderit culpa quis veniam. Ut nisi nostrud laboris proident deserunt culpa. Ea adipisicing enim ipsum deserunt id commodo nisi duis sit voluptate. Ipsum incididunt consectetur nisi fugiat sunt consectetur commodo laboris nostrud exercitation cupidatat.\r\n", + "registered": "2016-09-23T11:19:48 +06:00", + "latitude": -25.048938, + "longitude": 39.390742, + "tags": [ + "sint", + "voluptate", + "incididunt", + "proident", + "nostrud", + "adipisicing", + "qui" + ], + "friends": [ + { + "id": 0, + "name": "Grace Greer" + }, + { + "id": 1, + "name": "Aimee Leach" + }, + { + "id": 2, + "name": "Rhonda Montgomery" + } + ], + "greeting": "Hello, Lucia Pratt! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302174d9215148d79e267", + "index": 36, + "guid": "7fdd7711-9293-4641-ae3f-a43659df9ec6", + "isActive": true, + "balance": "$2,282.47", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "green", + "name": "Ray Hartman", + "gender": "male", + "company": "SLOFAST", + "email": "rayhartman@slofast.com", + "phone": "+1 (880) 592-3808", + "address": "381 Pulaski Street, Outlook, South Dakota, 5606", + "about": "Velit est laboris nulla aute anim. Eu est pariatur elit ad Lorem mollit fugiat dolore aliquip. Amet elit consequat aliqua aute et do labore nisi voluptate duis mollit. Tempor officia aliquip quis labore officia nulla in dolore cillum. Ea ipsum adipisicing dolor sit reprehenderit non ex ad. Aliqua eiusmod mollit et magna anim anim dolore proident. Est duis occaecat ipsum mollit sunt irure magna magna Lorem eiusmod quis minim sint.\r\n", + "registered": "2016-09-28T06:25:59 +06:00", + "latitude": -49.246736, + "longitude": -81.122483, + "tags": [ + "reprehenderit", + "veniam", + "incididunt", + "culpa", + "ad", + "exercitation", + "non" + ], + "friends": [ + { + "id": 0, + "name": "Isabella Peck" + }, + { + "id": 1, + "name": "Abbott Woodard" + }, + { + "id": 2, + "name": "Watts Meyer" + } + ], + "greeting": "Hello, Ray Hartman! You have 1 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217094387319aaeb1a9", + "index": 37, + "guid": "093ebee7-7da6-4882-a5c7-aeac0f75c54b", + "isActive": true, + "balance": "$1,714.12", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "green", + "name": "Graciela Lyons", + "gender": "female", + "company": "AQUASURE", + "email": "gracielalyons@aquasure.com", + "phone": "+1 (982) 462-2037", + "address": "793 Fair Street, Marne, Virginia, 6538", + "about": "Enim ex irure sunt consequat amet velit occaecat proident. Sit commodo deserunt id eiusmod. Ex do enim aute qui occaecat ea proident cillum reprehenderit qui. Cupidatat in officia excepteur adipisicing ad aliqua officia eiusmod. Officia deserunt et reprehenderit voluptate ex labore ea. Dolor et esse cupidatat exercitation cupidatat nulla labore et nisi nostrud consequat Lorem in nostrud.\r\n", + "registered": "2014-10-09T04:12:23 +06:00", + "latitude": 5.376103, + "longitude": 50.986976, + "tags": [ + "officia", + "laboris", + "culpa", + "occaecat", + "culpa", + "mollit", + "deserunt" + ], + "friends": [ + { + "id": 0, + "name": "Kari Ingram" + }, + { + "id": 1, + "name": "Cote Barker" + }, + { + "id": 2, + "name": "Bradshaw Barr" + } + ], + "greeting": "Hello, Graciela Lyons! You have 2 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217e92ea23291d16b08", + "index": 38, + "guid": "d10c6463-521d-4d15-844f-c6ada7be0d50", + "isActive": true, + "balance": "$2,629.88", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "brown", + "name": "Rhodes Anthony", + "gender": "male", + "company": "ACRUEX", + "email": "rhodesanthony@acruex.com", + "phone": "+1 (970) 528-2775", + "address": "621 Tillary Street, Germanton, Michigan, 3551", + "about": "Duis deserunt in fugiat irure nulla do excepteur ea amet labore. Ex sit sunt commodo Lorem. Lorem enim incididunt id aliquip qui. Sit consequat ex nulla consequat sint irure ea dolore ipsum reprehenderit. In nisi do ad minim dolor non laborum ad commodo. Ex laborum non nostrud proident ea magna adipisicing mollit duis. Cillum est ea amet culpa eiusmod nisi sit cillum culpa aliquip voluptate proident.\r\n", + "registered": "2017-02-14T09:05:56 +07:00", + "latitude": 70.552636, + "longitude": 108.60357, + "tags": [ + "tempor", + "cupidatat", + "Lorem", + "non", + "ad", + "nulla", + "tempor" + ], + "friends": [ + { + "id": 0, + "name": "Dean Pacheco" + }, + { + "id": 1, + "name": "Christie Valentine" + }, + { + "id": 2, + "name": "Iris Mckenzie" + } + ], + "greeting": "Hello, Rhodes Anthony! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217299745f5e028d8e9", + "index": 39, + "guid": "952a8569-c90e-45f7-9b80-413d5949f554", + "isActive": true, + "balance": "$2,633.88", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "green", + "name": "Cecilia Chang", + "gender": "female", + "company": "SLUMBERIA", + "email": "ceciliachang@slumberia.com", + "phone": "+1 (857) 588-3053", + "address": "940 Boerum Street, Oceola, Northern Mariana Islands, 2834", + "about": "Ad sit laborum fugiat labore ut eu duis culpa mollit. Laborum elit labore ut ea in. Sint minim quis exercitation cillum dolore nulla id exercitation. Deserunt id incididunt nisi dolor dolor aute do culpa tempor aliqua elit. Cupidatat do fugiat ad veniam cillum aliquip labore ullamco cupidatat dolore do. Aute ut officia laborum veniam incididunt nisi. Incididunt elit nostrud eiusmod ullamco dolor ad consequat sit adipisicing aliquip incididunt ex.\r\n", + "registered": "2014-06-17T12:32:21 +06:00", + "latitude": 23.320177, + "longitude": 71.416317, + "tags": [ + "aute", + "do", + "consectetur", + "amet", + "non", + "dolor", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "Young Lloyd" + }, + { + "id": 1, + "name": "Graves Estes" + }, + { + "id": 2, + "name": "Woods Goodman" + } + ], + "greeting": "Hello, Cecilia Chang! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217eb08be14353c78f2", + "index": 40, + "guid": "48fe5dfb-468c-4afc-a993-72ad22dcdd7f", + "isActive": false, + "balance": "$3,731.55", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "brown", + "name": "Bianca Rivers", + "gender": "female", + "company": "LUNCHPAD", + "email": "biancarivers@lunchpad.com", + "phone": "+1 (953) 530-2887", + "address": "583 Montague Street, Accoville, Illinois, 5777", + "about": "Adipisicing nostrud aliqua ullamco fugiat labore non non in qui quis laborum id irure est. Non non excepteur ut excepteur reprehenderit voluptate est. Culpa officia amet est proident reprehenderit ut nulla. Cupidatat non tempor tempor fugiat est mollit aliquip aliqua cupidatat veniam mollit veniam voluptate. Sit veniam qui cillum laborum laboris adipisicing in dolor aute id pariatur. Tempor quis non incididunt deserunt eiusmod nostrud cillum pariatur amet labore.\r\n", + "registered": "2015-11-13T03:15:44 +07:00", + "latitude": 59.46408, + "longitude": 28.30838, + "tags": [ + "non", + "do", + "adipisicing", + "eu", + "veniam", + "officia", + "pariatur" + ], + "friends": [ + { + "id": 0, + "name": "Blake Sparks" + }, + { + "id": 1, + "name": "Taylor Bowen" + }, + { + "id": 2, + "name": "Cathryn Henson" + } + ], + "greeting": "Hello, Bianca Rivers! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021705104b90737e46e3", + "index": 41, + "guid": "32a7d74d-b803-490d-94c2-7a7156170a81", + "isActive": true, + "balance": "$1,045.20", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "green", + "name": "Cook Cooper", + "gender": "male", + "company": "EZENTIA", + "email": "cookcooper@ezentia.com", + "phone": "+1 (952) 573-2533", + "address": "895 Kane Street, Fedora, Wisconsin, 1670", + "about": "Duis eu sit fugiat quis pariatur commodo ex magna fugiat id voluptate consectetur non. Nisi sunt ex in ipsum ipsum laboris dolor laboris minim. Aliqua ex adipisicing nisi veniam cillum magna cillum ut exercitation ad eu. Lorem tempor officia sunt cillum do esse eu duis sunt labore ullamco Lorem. Irure ad mollit voluptate consectetur enim non Lorem ipsum adipisicing veniam consequat voluptate adipisicing. Ad dolore aliqua do adipisicing. Do nulla Lorem nisi exercitation.\r\n", + "registered": "2017-11-11T01:52:40 +07:00", + "latitude": -82.851625, + "longitude": -150.587365, + "tags": [ + "non", + "labore", + "consectetur", + "ea", + "proident", + "culpa", + "deserunt" + ], + "friends": [ + { + "id": 0, + "name": "Palmer Ferguson" + }, + { + "id": 1, + "name": "Gretchen Mueller" + }, + { + "id": 2, + "name": "Wagner Carver" + } + ], + "greeting": "Hello, Cook Cooper! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217803f197c0cf07c71", + "index": 42, + "guid": "f2555458-26b0-41d1-822d-b46c98a4de8a", + "isActive": false, + "balance": "$1,566.00", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "blue", + "name": "Elnora Hays", + "gender": "female", + "company": "OMNIGOG", + "email": "elnorahays@omnigog.com", + "phone": "+1 (994) 560-2271", + "address": "615 Hooper Street, Advance, Idaho, 6347", + "about": "Eu Lorem nostrud nulla fugiat esse nulla ullamco aliquip ad ut ad ullamco proident. Consequat dolore sint aliqua culpa proident dolore exercitation do anim eiusmod consequat in. Nulla labore fugiat sint laborum cillum laborum in esse voluptate nisi. Minim ipsum adipisicing non aute enim mollit. Ullamco aute labore ipsum minim tempor ad exercitation commodo.\r\n", + "registered": "2016-03-24T05:15:33 +06:00", + "latitude": -15.769482, + "longitude": 76.853756, + "tags": [ + "minim", + "fugiat", + "qui", + "sit", + "velit", + "in", + "eu" + ], + "friends": [ + { + "id": 0, + "name": "Wheeler Vega" + }, + { + "id": 1, + "name": "Zimmerman Rosales" + }, + { + "id": 2, + "name": "Weeks Fleming" + } + ], + "greeting": "Hello, Elnora Hays! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302176db2318dd4369540", + "index": 43, + "guid": "e1b474b4-e0f1-4f84-b98d-6881c58aad5f", + "isActive": true, + "balance": "$1,014.63", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "brown", + "name": "Bolton Park", + "gender": "male", + "company": "COSMETEX", + "email": "boltonpark@cosmetex.com", + "phone": "+1 (815) 437-2992", + "address": "924 Bedford Place, Walland, New Hampshire, 4388", + "about": "Consequat cupidatat ipsum fugiat esse reprehenderit minim minim non nulla reprehenderit est ad ad. Nostrud occaecat nisi nulla tempor laboris Lorem eu incididunt adipisicing eiusmod irure. Exercitation aliqua enim nostrud deserunt. Culpa id voluptate consectetur nisi cillum minim amet. Eu anim amet eu consectetur elit. Laborum magna enim amet occaecat adipisicing nulla dolore ea.\r\n", + "registered": "2017-12-29T10:08:33 +07:00", + "latitude": 58.416231, + "longitude": -16.595646, + "tags": [ + "anim", + "pariatur", + "est", + "nostrud", + "tempor", + "eiusmod", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "Acosta Hunter" + }, + { + "id": 1, + "name": "Marisa Schwartz" + }, + { + "id": 2, + "name": "Ware Lancaster" + } + ], + "greeting": "Hello, Bolton Park! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217ec06c1d656f70853", + "index": 44, + "guid": "a27c5cdd-83de-4915-9e2a-c85a9302fe66", + "isActive": true, + "balance": "$3,790.13", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "blue", + "name": "Leigh Benson", + "gender": "female", + "company": "LOVEPAD", + "email": "leighbenson@lovepad.com", + "phone": "+1 (902) 533-3926", + "address": "975 Vanderveer Street, Forestburg, South Carolina, 4373", + "about": "Ad mollit ut ad est nostrud fugiat reprehenderit et quis reprehenderit amet. Commodo sint ullamco eu non. Officia fugiat occaecat cupidatat quis veniam nulla cupidatat mollit in eu adipisicing Lorem. Nulla nulla in dolor duis sit eu. Mollit pariatur adipisicing esse occaecat non dolore reprehenderit labore et occaecat commodo aliqua duis. Pariatur eiusmod velit enim exercitation esse. Officia ad irure voluptate aliquip duis pariatur anim dolore nostrud sit occaecat labore cillum.\r\n", + "registered": "2017-06-28T11:13:48 +06:00", + "latitude": -43.875281, + "longitude": -16.454646, + "tags": [ + "sint", + "aliqua", + "deserunt", + "id", + "dolor", + "anim", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Lidia Carson" + }, + { + "id": 1, + "name": "Judy Riggs" + }, + { + "id": 2, + "name": "Terra Webster" + } + ], + "greeting": "Hello, Leigh Benson! You have 2 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021786890b8199c3d80c", + "index": 45, + "guid": "9db9bc00-ea39-41c9-90ca-b1f13b2a0272", + "isActive": false, + "balance": "$2,116.03", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "blue", + "name": "Kimberly Oneill", + "gender": "female", + "company": "COREPAN", + "email": "kimberlyoneill@corepan.com", + "phone": "+1 (847) 593-2704", + "address": "406 Centre Street, Salix, Iowa, 6613", + "about": "Tempor Lorem non pariatur ex et. Dolore labore magna cillum voluptate nulla id laborum in nostrud nostrud qui fugiat sit. Eu quis amet consequat ex est duis. Ad pariatur excepteur nulla tempor dolor laborum pariatur nulla mollit id ullamco. Elit consequat in do consequat ex amet consectetur.\r\n", + "registered": "2015-06-23T12:38:43 +06:00", + "latitude": -85.683674, + "longitude": -18.904286, + "tags": [ + "nulla", + "veniam", + "ea", + "ad", + "tempor", + "sit", + "nostrud" + ], + "friends": [ + { + "id": 0, + "name": "Maryanne Dudley" + }, + { + "id": 1, + "name": "Bowman Maynard" + }, + { + "id": 2, + "name": "Blanchard Osborn" + } + ], + "greeting": "Hello, Kimberly Oneill! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217a71b93b4a7385cd6", + "index": 46, + "guid": "e67c8b1f-d68f-497e-a6a7-27675ceca98b", + "isActive": false, + "balance": "$2,884.23", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "blue", + "name": "Felecia Clemons", + "gender": "female", + "company": "MYOPIUM", + "email": "feleciaclemons@myopium.com", + "phone": "+1 (919) 592-3011", + "address": "867 Emmons Avenue, Gorham, California, 608", + "about": "Elit eiusmod velit dolore et esse magna. Labore esse reprehenderit anim enim. Ex labore ea dolor do enim sint mollit do irure labore esse.\r\n", + "registered": "2016-02-09T02:19:12 +07:00", + "latitude": 53.698991, + "longitude": 82.228415, + "tags": [ + "excepteur", + "minim", + "sint", + "ad", + "id", + "fugiat", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Tania Dennis" + }, + { + "id": 1, + "name": "Davis Newman" + }, + { + "id": 2, + "name": "Figueroa Michael" + } + ], + "greeting": "Hello, Felecia Clemons! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021775ab0f2580a8d51f", + "index": 47, + "guid": "d1d4f4b1-8dca-4e4d-ac54-7090a0c664da", + "isActive": true, + "balance": "$2,739.58", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "brown", + "name": "Savage Barnes", + "gender": "male", + "company": "GINKLE", + "email": "savagebarnes@ginkle.com", + "phone": "+1 (967) 582-2737", + "address": "385 Dekalb Avenue, Wedgewood, Wyoming, 3166", + "about": "Enim dolore minim culpa sit nisi laborum irure voluptate quis anim amet exercitation. Laboris labore mollit reprehenderit Lorem ut sit fugiat deserunt labore Lorem commodo reprehenderit. Laborum elit ut minim dolore ut. Occaecat ex velit ut duis ad eiusmod mollit. Aute ex non minim consectetur nostrud laborum enim culpa. Incididunt ea proident non non sunt nulla irure officia.\r\n", + "registered": "2015-03-10T02:31:33 +06:00", + "latitude": -6.395855, + "longitude": -150.902503, + "tags": [ + "mollit", + "nostrud", + "magna", + "elit", + "labore", + "in", + "in" + ], + "friends": [ + { + "id": 0, + "name": "Greer Morrow" + }, + { + "id": 1, + "name": "Rhea Simon" + }, + { + "id": 2, + "name": "Susanne Petersen" + } + ], + "greeting": "Hello, Savage Barnes! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217634deefe36abca1d", + "index": 48, + "guid": "f14eac0d-b321-4844-9199-e3c4c5bfc073", + "isActive": true, + "balance": "$3,256.80", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "brown", + "name": "Margie Nixon", + "gender": "female", + "company": "NEUROCELL", + "email": "margienixon@neurocell.com", + "phone": "+1 (940) 542-2221", + "address": "589 Midwood Street, Barrelville, Maryland, 6321", + "about": "Sunt tempor do cupidatat commodo ad tempor velit. Ex duis elit consectetur velit. Incididunt sit mollit occaecat adipisicing sunt mollit in mollit magna do dolore culpa deserunt. Excepteur non dolore elit excepteur adipisicing sint exercitation dolor laborum enim Lorem. Minim ullamco ullamco cupidatat ipsum. Ad Lorem ex nulla ullamco sint.\r\n", + "registered": "2016-07-23T03:44:28 +06:00", + "latitude": -31.960952, + "longitude": -50.348941, + "tags": [ + "dolore", + "in", + "eiusmod", + "amet", + "duis", + "officia", + "anim" + ], + "friends": [ + { + "id": 0, + "name": "Winifred Williamson" + }, + { + "id": 1, + "name": "Bruce Shaffer" + }, + { + "id": 2, + "name": "Snyder Mcclure" + } + ], + "greeting": "Hello, Margie Nixon! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021772061624328dcd51", + "index": 49, + "guid": "d59bb44a-e47a-442c-8e24-041b3b4fbdc6", + "isActive": true, + "balance": "$3,722.30", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "brown", + "name": "Pope Lang", + "gender": "male", + "company": "ENVIRE", + "email": "popelang@envire.com", + "phone": "+1 (939) 430-2362", + "address": "862 McKibbin Street, Wildwood, Louisiana, 4644", + "about": "Duis voluptate adipisicing sint elit minim adipisicing. Reprehenderit voluptate ad do reprehenderit pariatur commodo esse proident Lorem. Exercitation aliquip cillum culpa aliquip pariatur veniam excepteur veniam pariatur dolore pariatur reprehenderit.\r\n", + "registered": "2015-07-22T12:25:54 +06:00", + "latitude": -74.338, + "longitude": 46.387234, + "tags": [ + "deserunt", + "ullamco", + "minim", + "consectetur", + "duis", + "irure", + "non" + ], + "friends": [ + { + "id": 0, + "name": "Mai Cardenas" + }, + { + "id": 1, + "name": "Tommie Donovan" + }, + { + "id": 2, + "name": "Earnestine Melton" + } + ], + "greeting": "Hello, Pope Lang! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021787a29c61aa1317f7", + "index": 50, + "guid": "568b0e46-18fc-4556-a2d8-61bef706e6a7", + "isActive": false, + "balance": "$1,678.89", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "blue", + "name": "Claudine Nolan", + "gender": "female", + "company": "ONTALITY", + "email": "claudinenolan@ontality.com", + "phone": "+1 (958) 551-3274", + "address": "802 Bethel Loop, Beechmont, Federated States Of Micronesia, 9434", + "about": "Nisi ut in ipsum id tempor irure aliqua nisi pariatur in commodo. Anim deserunt nulla cillum incididunt. Ullamco consectetur excepteur id dolore dolor sunt. Sit laborum est eu velit ut occaecat ut laboris. Ut eu do irure commodo nostrud consequat aute amet non mollit in in anim ex. Tempor incididunt ea in enim excepteur cillum laborum magna duis minim tempor labore.\r\n", + "registered": "2016-04-23T01:55:50 +06:00", + "latitude": 85.309441, + "longitude": -94.055922, + "tags": [ + "dolore", + "elit", + "Lorem", + "mollit", + "minim", + "aliqua", + "id" + ], + "friends": [ + { + "id": 0, + "name": "Marla Anderson" + }, + { + "id": 1, + "name": "Conley Graham" + }, + { + "id": 2, + "name": "Petty Campbell" + } + ], + "greeting": "Hello, Claudine Nolan! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217b7df0d6238058bd0", + "index": 51, + "guid": "2b3c8fed-ef11-4b24-9fc6-f9d1cfcce483", + "isActive": true, + "balance": "$1,485.93", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "green", + "name": "Marci Swanson", + "gender": "female", + "company": "ANACHO", + "email": "marciswanson@anacho.com", + "phone": "+1 (953) 540-3841", + "address": "792 King Street, Glasgow, Pennsylvania, 1964", + "about": "Laboris consequat amet sit quis sit est mollit laboris cupidatat reprehenderit reprehenderit commodo excepteur. Do mollit pariatur proident minim anim. Cupidatat labore pariatur officia ad esse ullamco. Non laboris sunt consequat exercitation mollit aliquip ut. Et magna aute ipsum enim. Elit laboris ut magna excepteur et mollit. Qui velit consectetur eu enim incididunt sit.\r\n", + "registered": "2014-05-16T12:55:31 +06:00", + "latitude": -32.396255, + "longitude": -94.271146, + "tags": [ + "reprehenderit", + "qui", + "velit", + "ipsum", + "cupidatat", + "aliquip", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Alma Glenn" + }, + { + "id": 1, + "name": "Clayton Ford" + }, + { + "id": 2, + "name": "Brittany Burns" + } + ], + "greeting": "Hello, Marci Swanson! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302176defa3ca6e81cfee", + "index": 52, + "guid": "752b8119-d771-47be-9c55-30ce5ca64f16", + "isActive": true, + "balance": "$1,727.61", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "brown", + "name": "Beth Glover", + "gender": "female", + "company": "SUREMAX", + "email": "bethglover@suremax.com", + "phone": "+1 (901) 499-2431", + "address": "562 Montieth Street, Winston, Vermont, 9984", + "about": "Laborum enim enim nisi pariatur officia id tempor. Laborum cupidatat dolor officia irure duis exercitation. Minim fugiat mollit Lorem veniam do nulla dolor esse quis ea. Voluptate aliquip aute dolore pariatur non. Et reprehenderit aute est do nostrud do laborum voluptate nostrud occaecat. Reprehenderit pariatur ad esse adipisicing enim sint.\r\n", + "registered": "2016-03-19T07:48:49 +06:00", + "latitude": 23.533808, + "longitude": 124.312373, + "tags": [ + "nulla", + "qui", + "Lorem", + "est", + "tempor", + "sunt", + "dolore" + ], + "friends": [ + { + "id": 0, + "name": "Amelia Bailey" + }, + { + "id": 1, + "name": "Samantha Meadows" + }, + { + "id": 2, + "name": "Castillo Flowers" + } + ], + "greeting": "Hello, Beth Glover! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302176c36b6343db71ebf", + "index": 53, + "guid": "d3c0e657-f9a1-4586-96f9-22e944918af1", + "isActive": false, + "balance": "$2,115.03", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "brown", + "name": "Miles Duran", + "gender": "male", + "company": "ACCUPRINT", + "email": "milesduran@accuprint.com", + "phone": "+1 (975) 552-2215", + "address": "316 Grafton Street, Movico, Maine, 4276", + "about": "Pariatur ullamco incididunt sit deserunt aute aute sunt laborum fugiat cillum proident aliquip cupidatat nisi. Labore labore reprehenderit irure ut incididunt esse velit consectetur. Nulla velit velit ea ea velit.\r\n", + "registered": "2017-04-18T04:02:47 +06:00", + "latitude": 7.584642, + "longitude": -90.11821, + "tags": [ + "veniam", + "voluptate", + "aute", + "commodo", + "adipisicing", + "elit", + "cillum" + ], + "friends": [ + { + "id": 0, + "name": "Fay Barton" + }, + { + "id": 1, + "name": "Edith Higgins" + }, + { + "id": 2, + "name": "Debora Drake" + } + ], + "greeting": "Hello, Miles Duran! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021773ac62f7490e20f3", + "index": 54, + "guid": "b51ac8ad-c699-448d-98b3-42648c877cb2", + "isActive": false, + "balance": "$3,706.41", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "green", + "name": "Delores Gomez", + "gender": "female", + "company": "ZIPAK", + "email": "deloresgomez@zipak.com", + "phone": "+1 (965) 563-3504", + "address": "431 Royce Street, Hillsboro, Alaska, 1739", + "about": "Est elit dolore exercitation laborum eiusmod mollit tempor. Consequat occaecat velit consectetur ipsum reprehenderit pariatur velit velit dolor dolor ut. Aliquip ut nulla sit esse Lorem. Incididunt ipsum non occaecat sint irure duis quis id cillum tempor ex veniam esse. Minim ullamco irure laborum qui in sint ut voluptate aute. Nisi nisi veniam quis adipisicing dolore. Fugiat deserunt laborum eu dolor minim quis velit exercitation voluptate commodo cillum laborum enim.\r\n", + "registered": "2015-03-25T07:13:03 +06:00", + "latitude": 72.182793, + "longitude": 91.175453, + "tags": [ + "Lorem", + "ullamco", + "aliquip", + "reprehenderit", + "reprehenderit", + "culpa", + "do" + ], + "friends": [ + { + "id": 0, + "name": "Jeanne Burks" + }, + { + "id": 1, + "name": "Beard Marsh" + }, + { + "id": 2, + "name": "Jillian Davidson" + } + ], + "greeting": "Hello, Delores Gomez! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302179b9db1082c9ea6b5", + "index": 55, + "guid": "3d2e80a0-2ade-4349-9e6e-9b8d1a42fe5a", + "isActive": false, + "balance": "$1,041.94", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "brown", + "name": "Cooke Rivas", + "gender": "male", + "company": "GEEKOL", + "email": "cookerivas@geekol.com", + "phone": "+1 (843) 519-3980", + "address": "101 Seagate Avenue, Esmont, Palau, 1459", + "about": "Ad proident do laboris sit magna proident cillum ullamco ullamco non. In cupidatat tempor aliquip sit et pariatur duis. Voluptate voluptate deserunt elit occaecat. Sunt sit quis aute fugiat laboris cupidatat sit aliqua irure incididunt consequat. Sit cupidatat irure duis aliqua laboris. Ea cillum laboris veniam est.\r\n", + "registered": "2015-01-08T07:56:01 +07:00", + "latitude": 82.888367, + "longitude": 52.57426, + "tags": [ + "laboris", + "ad", + "incididunt", + "non", + "pariatur", + "enim", + "eiusmod" + ], + "friends": [ + { + "id": 0, + "name": "Penelope Stevenson" + }, + { + "id": 1, + "name": "Spence Hull" + }, + { + "id": 2, + "name": "Ebony Barron" + } + ], + "greeting": "Hello, Cooke Rivas! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217e35c52bc9e016aad", + "index": 56, + "guid": "8284845e-4c8f-4bb6-9c32-b4a5a49bd81f", + "isActive": false, + "balance": "$2,251.47", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "brown", + "name": "Christensen Walsh", + "gender": "male", + "company": "NSPIRE", + "email": "christensenwalsh@nspire.com", + "phone": "+1 (960) 440-3851", + "address": "402 Pineapple Street, Islandia, Arkansas, 3366", + "about": "Sit velit aliqua qui culpa voluptate anim voluptate reprehenderit. Excepteur deserunt eu laboris dolor cupidatat sunt. Tempor nostrud ea dolore sint eiusmod laborum reprehenderit enim aliquip.\r\n", + "registered": "2018-02-01T07:11:25 +07:00", + "latitude": -81.389882, + "longitude": 130.232244, + "tags": [ + "excepteur", + "veniam", + "commodo", + "esse", + "voluptate", + "ad", + "deserunt" + ], + "friends": [ + { + "id": 0, + "name": "Sandra Welch" + }, + { + "id": 1, + "name": "Wells Klein" + }, + { + "id": 2, + "name": "Holmes Wilder" + } + ], + "greeting": "Hello, Christensen Walsh! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217c2bd6ecbb0175bb6", + "index": 57, + "guid": "8e2ea4b4-c8d0-4eaa-a813-92a28e1fd1bf", + "isActive": true, + "balance": "$1,904.23", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "blue", + "name": "Odessa Manning", + "gender": "female", + "company": "KAGE", + "email": "odessamanning@kage.com", + "phone": "+1 (897) 562-3319", + "address": "428 Girard Street, Matthews, Florida, 8133", + "about": "Velit occaecat ea sint ullamco cillum sunt amet tempor cupidatat qui. Adipisicing ipsum exercitation proident non duis magna id sint. Excepteur aute enim sit elit anim ex enim mollit. Ut aute occaecat aliquip elit irure sit velit sunt eiusmod mollit excepteur. Sint voluptate laborum sit labore ex ullamco cupidatat nostrud elit. Laboris minim anim excepteur proident pariatur exercitation. Pariatur qui cupidatat nulla nulla deserunt ullamco ex cupidatat.\r\n", + "registered": "2014-11-29T08:11:49 +07:00", + "latitude": 57.889692, + "longitude": 99.002918, + "tags": [ + "laborum", + "elit", + "veniam", + "nostrud", + "velit", + "adipisicing", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Cannon Murphy" + }, + { + "id": 1, + "name": "Moses Alvarado" + }, + { + "id": 2, + "name": "Thomas Singleton" + } + ], + "greeting": "Hello, Odessa Manning! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302171a707a03b8594866", + "index": 58, + "guid": "8438f392-2fba-45c9-904e-55489512d4f2", + "isActive": false, + "balance": "$3,239.98", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "blue", + "name": "Phyllis Wyatt", + "gender": "female", + "company": "EXTREMO", + "email": "phylliswyatt@extremo.com", + "phone": "+1 (813) 569-3803", + "address": "900 Florence Avenue, Jessie, Puerto Rico, 3063", + "about": "Lorem et nisi labore Lorem officia minim duis ipsum sint minim fugiat. Elit ad velit occaecat et ex duis adipisicing nostrud sunt. Fugiat eiusmod ullamco laborum sint anim labore ea sint pariatur ad. Esse Lorem in sint labore proident aute labore elit consectetur consectetur ad sint. Consequat sint enim laborum elit ea quis ullamco proident esse dolore aute excepteur cillum laborum. Ad sit est occaecat do voluptate. Anim anim nulla consequat ullamco proident sit fugiat pariatur esse aliquip laboris.\r\n", + "registered": "2016-12-21T08:56:27 +07:00", + "latitude": -20.975095, + "longitude": 110.618525, + "tags": [ + "cillum", + "dolore", + "irure", + "voluptate", + "eiusmod", + "dolor", + "sit" + ], + "friends": [ + { + "id": 0, + "name": "Michelle Larsen" + }, + { + "id": 1, + "name": "Baxter Avila" + }, + { + "id": 2, + "name": "Corina Calderon" + } + ], + "greeting": "Hello, Phyllis Wyatt! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217c90b07bd97eb2a82", + "index": 59, + "guid": "38b86d7f-3ef6-4db9-a50e-ec8f3fdfd280", + "isActive": false, + "balance": "$3,869.31", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "brown", + "name": "Reeves Wood", + "gender": "male", + "company": "INVENTURE", + "email": "reeveswood@inventure.com", + "phone": "+1 (816) 511-3756", + "address": "134 Clarendon Road, Babb, Hawaii, 7455", + "about": "Excepteur sint reprehenderit ad dolore et non aliqua et et duis sunt elit veniam. Consectetur sit est ut eiusmod dolor aliqua nulla irure ullamco veniam proident esse cillum. Adipisicing magna consequat duis dolor ipsum voluptate in aliquip ad ipsum ex minim veniam. Reprehenderit duis incididunt ut occaecat reprehenderit nisi irure culpa mollit aute laboris. Nisi fugiat sint voluptate qui pariatur.\r\n", + "registered": "2015-09-01T06:46:16 +06:00", + "latitude": -21.621358, + "longitude": -5.64309, + "tags": [ + "est", + "cillum", + "fugiat", + "Lorem", + "eiusmod", + "laboris", + "consectetur" + ], + "friends": [ + { + "id": 0, + "name": "Cummings Dale" + }, + { + "id": 1, + "name": "Estelle Hurley" + }, + { + "id": 2, + "name": "Russo Mclean" + } + ], + "greeting": "Hello, Reeves Wood! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217aed6c35ee08650aa", + "index": 60, + "guid": "f5eb50d1-6d9e-4676-83c0-b2dea6d646dc", + "isActive": false, + "balance": "$1,512.17", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "brown", + "name": "Harriet Shaw", + "gender": "female", + "company": "EXTRO", + "email": "harrietshaw@extro.com", + "phone": "+1 (979) 401-2592", + "address": "758 Oceanic Avenue, Henrietta, American Samoa, 5750", + "about": "Officia mollit nulla consequat ad dolor irure aliquip exercitation ullamco cillum. Labore irure labore minim excepteur eu et. Reprehenderit occaecat qui laborum cillum ut mollit laboris. Dolore sint adipisicing elit id proident nisi ea aliquip qui dolore ad. Dolore qui veniam ad quis tempor cillum mollit. Eiusmod do aliquip qui nisi dolor. Culpa in cupidatat pariatur cupidatat voluptate eu veniam cupidatat cillum aliqua sit irure.\r\n", + "registered": "2016-07-19T01:16:34 +06:00", + "latitude": 87.994911, + "longitude": 34.83103, + "tags": [ + "commodo", + "dolore", + "mollit", + "esse", + "deserunt", + "sint", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Kris Nichols" + }, + { + "id": 1, + "name": "Rena Combs" + }, + { + "id": 2, + "name": "Corrine Rodgers" + } + ], + "greeting": "Hello, Harriet Shaw! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021747b5181f73f9d9dc", + "index": 61, + "guid": "95c1c574-9af0-41ed-9beb-c92ea30a9a37", + "isActive": true, + "balance": "$3,529.36", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "green", + "name": "Meyer Rowland", + "gender": "male", + "company": "ENTROPIX", + "email": "meyerrowland@entropix.com", + "phone": "+1 (908) 409-2225", + "address": "587 Lancaster Avenue, Blandburg, Indiana, 4110", + "about": "Ipsum proident occaecat ea minim duis eu ex sit voluptate ullamco consectetur reprehenderit veniam voluptate. Ut occaecat consequat ea sunt aliqua officia incididunt in reprehenderit labore aliquip et fugiat. Irure ullamco nostrud enim ea mollit pariatur magna nisi veniam est excepteur non aliqua. Nisi magna tempor amet dolor. Sunt labore anim ex proident esse in sit aliquip elit. Quis sunt aliquip cupidatat anim commodo tempor.\r\n", + "registered": "2017-05-01T02:46:32 +06:00", + "latitude": -58.46728, + "longitude": -133.813788, + "tags": [ + "et", + "voluptate", + "laborum", + "nisi", + "ullamco", + "deserunt", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "Chapman Bridges" + }, + { + "id": 1, + "name": "Keith Jennings" + }, + { + "id": 2, + "name": "Crane Bell" + } + ], + "greeting": "Hello, Meyer Rowland! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217c6c8de9715ab46b1", + "index": 62, + "guid": "1934acd7-5650-458a-b536-efd95c7a16b8", + "isActive": false, + "balance": "$1,481.75", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "brown", + "name": "Polly Mccullough", + "gender": "female", + "company": "COASH", + "email": "pollymccullough@coash.com", + "phone": "+1 (881) 495-3473", + "address": "279 Poplar Avenue, Indio, Missouri, 2011", + "about": "Culpa in id reprehenderit est officia quis aute ea elit dolore. Nisi incididunt pariatur exercitation ad ad cupidatat enim fugiat ullamco. Ullamco voluptate nulla minim nulla mollit laborum id sint. Laborum in consequat tempor dolore. Tempor sunt occaecat elit proident. Laborum ut consectetur ut labore incididunt duis fugiat voluptate qui.\r\n", + "registered": "2014-05-24T09:40:30 +06:00", + "latitude": -61.595807, + "longitude": -78.466036, + "tags": [ + "duis", + "ipsum", + "tempor", + "incididunt", + "qui", + "anim", + "aliquip" + ], + "friends": [ + { + "id": 0, + "name": "Glenna Williams" + }, + { + "id": 1, + "name": "Sylvia Nunez" + }, + { + "id": 2, + "name": "Veronica Rutledge" + } + ], + "greeting": "Hello, Polly Mccullough! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021760cc531dd359100d", + "index": 63, + "guid": "e57c6212-01ba-4f37-a4b7-cbba7b6d4da4", + "isActive": false, + "balance": "$2,120.96", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "green", + "name": "Francis Noel", + "gender": "male", + "company": "COMVOY", + "email": "francisnoel@comvoy.com", + "phone": "+1 (979) 536-2051", + "address": "363 Gerry Street, Leroy, Guam, 6493", + "about": "Enim excepteur reprehenderit do reprehenderit nisi reprehenderit duis fugiat laborum aliquip officia sunt eu consectetur. Dolor proident dolore non velit duis id voluptate do Lorem non officia Lorem laboris labore. Excepteur deserunt irure consectetur nostrud amet eu. Velit sit mollit dolor eiusmod. Aliquip ipsum irure occaecat reprehenderit culpa dolor est dolor ad. Culpa proident eu Lorem non deserunt ipsum occaecat consectetur deserunt anim magna cillum aliqua.\r\n", + "registered": "2017-05-10T03:09:50 +06:00", + "latitude": -1.219317, + "longitude": 55.767075, + "tags": [ + "in", + "aliquip", + "officia", + "duis", + "sunt", + "incididunt", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Tonia Lane" + }, + { + "id": 1, + "name": "Mallory Sloan" + }, + { + "id": 2, + "name": "Leona Barlow" + } + ], + "greeting": "Hello, Francis Noel! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217445b96e3e6c0cdf4", + "index": 64, + "guid": "a8eba882-b6bc-4dc5-a4ee-027886a80f45", + "isActive": false, + "balance": "$2,950.32", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "brown", + "name": "Reilly Carpenter", + "gender": "male", + "company": "SILODYNE", + "email": "reillycarpenter@silodyne.com", + "phone": "+1 (875) 487-3818", + "address": "938 Vandalia Avenue, Allamuchy, Minnesota, 335", + "about": "Proident minim aliquip esse cupidatat aliqua aliquip. Occaecat deserunt reprehenderit est sunt in consectetur minim velit ex reprehenderit incididunt. Adipisicing commodo aliqua Lorem ex anim do est dolor quis minim. Eiusmod amet sint nulla do occaecat nulla et sint irure ut voluptate voluptate non. Excepteur labore cillum pariatur sunt exercitation ullamco aliquip. Officia quis ipsum qui minim magna elit irure consequat aliqua pariatur. Aliquip sit in nisi sint aliqua adipisicing voluptate anim incididunt voluptate labore.\r\n", + "registered": "2015-12-15T09:25:28 +07:00", + "latitude": 72.64113, + "longitude": 119.835171, + "tags": [ + "incididunt", + "esse", + "et", + "enim", + "consectetur", + "enim", + "aliqua" + ], + "friends": [ + { + "id": 0, + "name": "Bobbie Browning" + }, + { + "id": 1, + "name": "Janine Ayers" + }, + { + "id": 2, + "name": "Allison Prince" + } + ], + "greeting": "Hello, Reilly Carpenter! You have 2 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217393470d14e09e05b", + "index": 65, + "guid": "720a959b-0b8f-4231-b645-3710b93423ad", + "isActive": false, + "balance": "$3,899.94", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "green", + "name": "Marjorie Wilson", + "gender": "female", + "company": "ACUMENTOR", + "email": "marjoriewilson@acumentor.com", + "phone": "+1 (816) 590-3735", + "address": "331 Sapphire Street, Caron, Delaware, 2726", + "about": "Aliquip consequat aliquip cupidatat veniam culpa labore sit cillum ipsum commodo eiusmod ipsum fugiat sunt. Ad in non ullamco aliquip aliqua. Commodo tempor ea esse sunt sit ipsum fugiat sunt non occaecat.\r\n", + "registered": "2018-01-24T06:39:54 +07:00", + "latitude": 68.896151, + "longitude": 165.220645, + "tags": [ + "exercitation", + "fugiat", + "reprehenderit", + "ea", + "duis", + "ea", + "nostrud" + ], + "friends": [ + { + "id": 0, + "name": "Effie Mcintyre" + }, + { + "id": 1, + "name": "Shelley Aguilar" + }, + { + "id": 2, + "name": "Cameron Daniels" + } + ], + "greeting": "Hello, Marjorie Wilson! You have 2 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302179f14d9d2cc6ca684", + "index": 66, + "guid": "d9356709-5677-4ff9-941b-1cbee16373c1", + "isActive": true, + "balance": "$3,157.76", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "brown", + "name": "Ernestine Rios", + "gender": "female", + "company": "ANARCO", + "email": "ernestinerios@anarco.com", + "phone": "+1 (837) 597-3834", + "address": "781 Arlington Avenue, Freetown, Kansas, 4796", + "about": "Cupidatat aliqua ut consequat reprehenderit aute. Excepteur velit veniam sunt qui est officia labore ut. Id aliquip exercitation tempor dolore tempor eiusmod nostrud enim nisi id duis.\r\n", + "registered": "2014-08-14T08:09:27 +06:00", + "latitude": 52.311701, + "longitude": -176.750511, + "tags": [ + "ipsum", + "ad", + "incididunt", + "incididunt", + "irure", + "mollit", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Norton Nguyen" + }, + { + "id": 1, + "name": "Holman Sellers" + }, + { + "id": 2, + "name": "Billie Cain" + } + ], + "greeting": "Hello, Ernestine Rios! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217dc7c9fa5bed62ba1", + "index": 67, + "guid": "1878e884-7ffa-41d6-a430-8c03cc748853", + "isActive": true, + "balance": "$2,533.59", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "blue", + "name": "Bender Mullen", + "gender": "male", + "company": "SPHERIX", + "email": "bendermullen@spherix.com", + "phone": "+1 (978) 410-2640", + "address": "842 Brighton Court, Leyner, Washington, 9270", + "about": "Laboris do labore pariatur nisi ad consectetur pariatur esse veniam pariatur duis exercitation commodo. Voluptate tempor laborum duis occaecat aliqua tempor fugiat aliqua sunt ullamco veniam anim sunt magna. Pariatur cupidatat laborum labore id. Dolore exercitation aute minim nostrud velit adipisicing.\r\n", + "registered": "2018-01-16T11:57:36 +07:00", + "latitude": 15.037049, + "longitude": 15.287349, + "tags": [ + "proident", + "anim", + "eu", + "labore", + "tempor", + "et", + "duis" + ], + "friends": [ + { + "id": 0, + "name": "Harrington Rich" + }, + { + "id": 1, + "name": "Elizabeth Wall" + }, + { + "id": 2, + "name": "Meyers Mosley" + } + ], + "greeting": "Hello, Bender Mullen! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302176c7fafb0f1df0b70", + "index": 68, + "guid": "28aba1a9-1018-4779-b241-ebde8120f6f0", + "isActive": false, + "balance": "$1,780.61", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "green", + "name": "Jimmie Rodriquez", + "gender": "female", + "company": "COMBOGEN", + "email": "jimmierodriquez@combogen.com", + "phone": "+1 (902) 498-2228", + "address": "889 Doone Court, Fontanelle, Oklahoma, 7607", + "about": "Labore laboris irure ipsum commodo quis est officia mollit labore officia pariatur. Aute incididunt ullamco incididunt Lorem minim quis nulla do labore aliquip. Occaecat exercitation pariatur pariatur exercitation laboris occaecat. Ea nisi voluptate id consectetur laborum magna ipsum magna. Cillum dolore minim id occaecat dolor. Do mollit occaecat excepteur tempor incididunt cupidatat ipsum aliquip aliqua ex in consectetur.\r\n", + "registered": "2015-11-03T05:58:34 +07:00", + "latitude": -53.417243, + "longitude": -145.075794, + "tags": [ + "do", + "anim", + "nisi", + "consectetur", + "aliqua", + "laboris", + "veniam" + ], + "friends": [ + { + "id": 0, + "name": "Benton Tanner" + }, + { + "id": 1, + "name": "Randolph Moore" + }, + { + "id": 2, + "name": "Madeleine Cameron" + } + ], + "greeting": "Hello, Jimmie Rodriquez! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217b8ce7f5050d543ea", + "index": 69, + "guid": "e2b95473-14c4-432c-a84e-adf5b149be6e", + "isActive": true, + "balance": "$3,084.21", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "brown", + "name": "Dunlap Norton", + "gender": "male", + "company": "EPLOSION", + "email": "dunlapnorton@eplosion.com", + "phone": "+1 (965) 494-3860", + "address": "358 Bennet Court, Westmoreland, Kentucky, 2297", + "about": "Duis occaecat pariatur et dolor tempor anim nisi consequat culpa elit quis. Occaecat sit fugiat cillum mollit amet reprehenderit. Magna aute dolor qui ex tempor. Laboris mollit aute velit ullamco occaecat magna eu consequat aliquip nulla in sit labore ad.\r\n", + "registered": "2015-07-02T02:02:54 +06:00", + "latitude": 12.145972, + "longitude": -85.561864, + "tags": [ + "eu", + "eiusmod", + "adipisicing", + "eiusmod", + "qui", + "Lorem", + "laboris" + ], + "friends": [ + { + "id": 0, + "name": "Sadie Tran" + }, + { + "id": 1, + "name": "Gertrude Brewer" + }, + { + "id": 2, + "name": "Angelina Nielsen" + } + ], + "greeting": "Hello, Dunlap Norton! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217b188c15c8911200d", + "index": 70, + "guid": "3f410329-8d32-4c7a-8d37-e987238063e3", + "isActive": true, + "balance": "$3,799.58", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "blue", + "name": "Elise Harrell", + "gender": "female", + "company": "TERAPRENE", + "email": "eliseharrell@teraprene.com", + "phone": "+1 (952) 573-3173", + "address": "964 Lawn Court, Saranap, Alabama, 5402", + "about": "Lorem labore id ea minim veniam mollit. Duis eu culpa ad nulla cillum excepteur elit veniam minim enim esse tempor occaecat. Ex pariatur in do eu eu dolor laboris mollit.\r\n", + "registered": "2015-10-19T12:51:06 +06:00", + "latitude": 67.582742, + "longitude": 8.034446, + "tags": [ + "proident", + "irure", + "duis", + "est", + "proident", + "in", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Mayer Valdez" + }, + { + "id": 1, + "name": "Betty Hess" + }, + { + "id": 2, + "name": "Hilary Suarez" + } + ], + "greeting": "Hello, Elise Harrell! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217de962bde97801a97", + "index": 71, + "guid": "3da779a7-f582-40d8-adce-5d1185c594fc", + "isActive": false, + "balance": "$2,662.97", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "green", + "name": "Solomon Logan", + "gender": "male", + "company": "KYAGURU", + "email": "solomonlogan@kyaguru.com", + "phone": "+1 (902) 524-2020", + "address": "732 Hale Avenue, Chelsea, West Virginia, 7994", + "about": "Aute aliqua eiusmod exercitation eiusmod deserunt ut commodo aliquip adipisicing minim in ea esse. Sit cupidatat irure ipsum adipisicing ut qui ipsum dolore cupidatat adipisicing minim exercitation. Ad do est nostrud non aliquip occaecat. Qui eiusmod qui ea minim velit adipisicing eiusmod esse aliqua nisi dolor est. Tempor labore dolore nulla elit adipisicing incididunt sint esse mollit eu consequat esse. Dolor anim ut ea velit laborum consequat ad reprehenderit id aute dolor pariatur. Veniam qui nulla ut fugiat id sit incididunt enim officia voluptate.\r\n", + "registered": "2014-03-02T04:52:42 +07:00", + "latitude": -47.300933, + "longitude": -164.765491, + "tags": [ + "labore", + "enim", + "cupidatat", + "consequat", + "duis", + "est", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "Millicent Reyes" + }, + { + "id": 1, + "name": "Baird Joyner" + }, + { + "id": 2, + "name": "Opal Jones" + } + ], + "greeting": "Hello, Solomon Logan! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021799a342c0a154f594", + "index": 72, + "guid": "984a2fa4-b32c-4842-b968-380d9fe32db4", + "isActive": false, + "balance": "$1,928.67", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "blue", + "name": "Ewing Fulton", + "gender": "male", + "company": "DYMI", + "email": "ewingfulton@dymi.com", + "phone": "+1 (896) 537-2146", + "address": "231 Liberty Avenue, Idamay, Ohio, 3891", + "about": "Enim labore enim reprehenderit laboris esse pariatur consequat exercitation sit consectetur sit proident. Elit ea ut excepteur voluptate laboris dolor qui magna cupidatat adipisicing culpa est. Exercitation do excepteur veniam Lorem incididunt nisi.\r\n", + "registered": "2016-08-12T04:32:38 +06:00", + "latitude": 85.114903, + "longitude": -92.479, + "tags": [ + "voluptate", + "deserunt", + "irure", + "incididunt", + "adipisicing", + "cupidatat", + "non" + ], + "friends": [ + { + "id": 0, + "name": "Eula Mayo" + }, + { + "id": 1, + "name": "Tina Daugherty" + }, + { + "id": 2, + "name": "Young Sims" + } + ], + "greeting": "Hello, Ewing Fulton! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302172cbe0306377fd8b5", + "index": 73, + "guid": "ea05de51-48e4-4e7b-92f0-37d3d4bf4ce8", + "isActive": false, + "balance": "$3,894.93", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "green", + "name": "Faulkner Mcintosh", + "gender": "male", + "company": "ZOGAK", + "email": "faulknermcintosh@zogak.com", + "phone": "+1 (821) 523-2137", + "address": "797 Harrison Place, Hobucken, Connecticut, 3567", + "about": "Labore do non ad ut ea proident deserunt nulla ullamco laboris. Voluptate quis anim sunt laboris aute pariatur. Amet aute incididunt voluptate aliquip. Cupidatat cupidatat irure quis anim ex anim veniam. Occaecat duis qui fugiat exercitation occaecat.\r\n", + "registered": "2015-07-27T01:52:03 +06:00", + "latitude": 50.71933, + "longitude": 103.497697, + "tags": [ + "cillum", + "non", + "laborum", + "ipsum", + "reprehenderit", + "cillum", + "pariatur" + ], + "friends": [ + { + "id": 0, + "name": "Becker Townsend" + }, + { + "id": 1, + "name": "Rosetta Osborne" + }, + { + "id": 2, + "name": "Krista Workman" + } + ], + "greeting": "Hello, Faulkner Mcintosh! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217ce4ab83797dda8f7", + "index": 74, + "guid": "03cdbcef-6b46-4d91-b16b-5f67debc6640", + "isActive": false, + "balance": "$3,348.45", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "green", + "name": "Jan Marquez", + "gender": "female", + "company": "ACIUM", + "email": "janmarquez@acium.com", + "phone": "+1 (840) 450-3859", + "address": "729 Lyme Avenue, Independence, North Dakota, 8791", + "about": "Lorem anim do officia et sunt pariatur Lorem. Veniam tempor Lorem ea nisi dolor proident ad dolore exercitation fugiat deserunt magna minim. Aliqua exercitation cillum reprehenderit incididunt magna elit tempor ullamco ea. Labore dolore culpa esse Lorem sit eiusmod Lorem culpa. Enim exercitation commodo irure esse.\r\n", + "registered": "2015-01-10T11:36:13 +07:00", + "latitude": 15.905248, + "longitude": 77.682807, + "tags": [ + "mollit", + "sint", + "cillum", + "sit", + "cupidatat", + "qui", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "Stout Everett" + }, + { + "id": 1, + "name": "Gale Briggs" + }, + { + "id": 2, + "name": "Guerrero Howe" + } + ], + "greeting": "Hello, Jan Marquez! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217ef33a04d02d58786", + "index": 75, + "guid": "d8771250-4e2d-4e33-96fd-f42342254ba8", + "isActive": false, + "balance": "$3,105.78", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "green", + "name": "Norman Odonnell", + "gender": "male", + "company": "IDEGO", + "email": "normanodonnell@idego.com", + "phone": "+1 (937) 437-3894", + "address": "714 Hinsdale Street, Manitou, Mississippi, 5722", + "about": "Irure eu magna quis aute in adipisicing anim fugiat dolor. Consectetur sunt laboris amet nulla culpa cillum. Do reprehenderit veniam amet est officia elit elit incididunt reprehenderit cillum.\r\n", + "registered": "2017-06-02T08:15:09 +06:00", + "latitude": 52.666801, + "longitude": 92.659067, + "tags": [ + "cupidatat", + "esse", + "exercitation", + "ea", + "proident", + "anim", + "id" + ], + "friends": [ + { + "id": 0, + "name": "Michael Copeland" + }, + { + "id": 1, + "name": "Bartlett Guy" + }, + { + "id": 2, + "name": "Mcgee Hayes" + } + ], + "greeting": "Hello, Norman Odonnell! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217803b9d191174e083", + "index": 76, + "guid": "e8dd8836-e073-412b-8d26-79251ec2f365", + "isActive": true, + "balance": "$2,657.64", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "green", + "name": "Lane Walls", + "gender": "male", + "company": "PETICULAR", + "email": "lanewalls@peticular.com", + "phone": "+1 (846) 506-2803", + "address": "284 Alabama Avenue, Bedias, New York, 176", + "about": "Eu veniam aliquip amet eu occaecat ullamco qui tempor do dolor aliquip excepteur nisi. Nisi magna sit elit proident do occaecat in ipsum minim Lorem fugiat magna cupidatat aliqua. In Lorem commodo amet exercitation aute pariatur laborum consectetur veniam irure. Ad voluptate reprehenderit est excepteur eiusmod adipisicing qui eu culpa qui quis culpa irure. Nostrud anim voluptate labore sunt incididunt id cillum.\r\n", + "registered": "2017-05-05T08:27:54 +06:00", + "latitude": 23.47304, + "longitude": 2.663264, + "tags": [ + "in", + "incididunt", + "anim", + "aliquip", + "mollit", + "ex", + "sunt" + ], + "friends": [ + { + "id": 0, + "name": "Sherman Stone" + }, + { + "id": 1, + "name": "Adkins Harper" + }, + { + "id": 2, + "name": "Rice Kerr" + } + ], + "greeting": "Hello, Lane Walls! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021771bdf52a00d8330e", + "index": 77, + "guid": "53db5e69-1860-4c19-a558-7137366ba326", + "isActive": false, + "balance": "$2,800.16", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "green", + "name": "Avila Hinton", + "gender": "male", + "company": "AVIT", + "email": "avilahinton@avit.com", + "phone": "+1 (966) 555-3370", + "address": "625 Aster Court, Wolcott, Oregon, 3459", + "about": "Aliqua laboris incididunt consequat labore ad dolor labore non excepteur sit voluptate officia. Dolor dolore magna nulla adipisicing sint. Dolore ad sint ullamco magna eu dolor duis eiusmod commodo amet fugiat sit eiusmod.\r\n", + "registered": "2014-04-17T03:24:56 +06:00", + "latitude": 32.205154, + "longitude": -84.373699, + "tags": [ + "pariatur", + "in", + "veniam", + "cupidatat", + "dolore", + "veniam", + "ex" + ], + "friends": [ + { + "id": 0, + "name": "Jacquelyn Donaldson" + }, + { + "id": 1, + "name": "Luna Shields" + }, + { + "id": 2, + "name": "Leanne Reynolds" + } + ], + "greeting": "Hello, Avila Hinton! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021715c8da8495b94764", + "index": 78, + "guid": "1faa24a3-f06e-4d4d-abf1-11aeb299b872", + "isActive": true, + "balance": "$1,150.11", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "blue", + "name": "Eva Pope", + "gender": "female", + "company": "FORTEAN", + "email": "evapope@fortean.com", + "phone": "+1 (959) 411-2509", + "address": "374 Verona Street, Wauhillau, New Jersey, 6105", + "about": "Occaecat ipsum reprehenderit do pariatur nulla nisi. Ex esse eiusmod est commodo id ipsum ipsum mollit velit incididunt amet mollit. Irure aliqua et non laborum ea cillum sit laboris nulla.\r\n", + "registered": "2017-03-30T04:58:56 +06:00", + "latitude": -51.298425, + "longitude": 99.320422, + "tags": [ + "laborum", + "exercitation", + "dolor", + "laboris", + "officia", + "fugiat", + "Lorem" + ], + "friends": [ + { + "id": 0, + "name": "Mercado Best" + }, + { + "id": 1, + "name": "Amanda Fox" + }, + { + "id": 2, + "name": "Cervantes Clark" + } + ], + "greeting": "Hello, Eva Pope! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217dbf5d001d1e67b9c", + "index": 79, + "guid": "478cb147-840e-4b66-82c6-afd836dd8d78", + "isActive": true, + "balance": "$3,621.74", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "brown", + "name": "Carlson Gonzalez", + "gender": "male", + "company": "OZEAN", + "email": "carlsongonzalez@ozean.com", + "phone": "+1 (814) 484-3622", + "address": "613 Amber Street, Beaulieu, Montana, 9455", + "about": "Aliqua dolor mollit nulla ea ad consequat esse ea nisi labore labore qui officia. Irure dolore cupidatat aliquip et consequat duis. Culpa nostrud fugiat exercitation cupidatat culpa ad veniam et fugiat occaecat velit occaecat qui. Deserunt anim consequat non deserunt veniam adipisicing qui enim excepteur duis mollit sunt. Ipsum cillum minim ad nisi magna. Ut laboris enim nostrud enim aliqua mollit ad consequat proident deserunt qui enim veniam. Ad elit ad velit adipisicing ea in velit exercitation ut nostrud eiusmod.\r\n", + "registered": "2014-02-01T12:40:07 +07:00", + "latitude": -48.968329, + "longitude": 4.329913, + "tags": [ + "nisi", + "labore", + "magna", + "nisi", + "est", + "enim", + "quis" + ], + "friends": [ + { + "id": 0, + "name": "Kathleen Little" + }, + { + "id": 1, + "name": "Rodriquez Sawyer" + }, + { + "id": 2, + "name": "Sampson Bauer" + } + ], + "greeting": "Hello, Carlson Gonzalez! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302176699268a853a4b70", + "index": 80, + "guid": "23622573-978e-4627-a3b4-9113aec9efc9", + "isActive": false, + "balance": "$3,213.80", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "green", + "name": "Pennington Blake", + "gender": "male", + "company": "CYCLONICA", + "email": "penningtonblake@cyclonica.com", + "phone": "+1 (890) 587-2827", + "address": "667 Lafayette Avenue, Dana, Nevada, 5631", + "about": "Ullamco est sit est laboris adipisicing voluptate non officia sit. Irure deserunt reprehenderit voluptate elit ea labore duis sit voluptate. Ullamco adipisicing eu reprehenderit ipsum est ex aute consequat culpa nostrud sunt ut et quis. Fugiat laboris cillum dolor anim. Esse laboris et sit veniam pariatur mollit occaecat mollit officia amet pariatur est in Lorem. Nisi quis cupidatat duis enim. Culpa pariatur aliqua ipsum id et dolore voluptate ex tempor eu non officia velit proident.\r\n", + "registered": "2016-08-09T05:31:38 +06:00", + "latitude": 8.770152, + "longitude": 8.413235, + "tags": [ + "excepteur", + "excepteur", + "ullamco", + "aliquip", + "velit", + "commodo", + "cillum" + ], + "friends": [ + { + "id": 0, + "name": "Gail Rasmussen" + }, + { + "id": 1, + "name": "Britney Camacho" + }, + { + "id": 2, + "name": "Hopkins Justice" + } + ], + "greeting": "Hello, Pennington Blake! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302174eb56534c6eaaca2", + "index": 81, + "guid": "60751ef3-3214-404a-bca1-ddb1c2026b87", + "isActive": true, + "balance": "$2,792.82", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "blue", + "name": "Dee Rowe", + "gender": "female", + "company": "NETAGY", + "email": "deerowe@netagy.com", + "phone": "+1 (970) 483-3449", + "address": "278 Banner Avenue, Groveville, Colorado, 5435", + "about": "Mollit voluptate reprehenderit consequat fugiat. Cupidatat occaecat culpa cillum pariatur sit sint fugiat tempor labore fugiat reprehenderit. Aliquip incididunt veniam ut et aliquip non elit cupidatat ad. Fugiat enim ullamco elit dolore ea amet irure. Enim anim aliquip ipsum esse occaecat incididunt culpa. Officia id ipsum qui enim ad labore mollit reprehenderit et minim amet.\r\n", + "registered": "2017-08-29T05:21:41 +06:00", + "latitude": -60.565453, + "longitude": 47.772691, + "tags": [ + "aliqua", + "irure", + "incididunt", + "cillum", + "officia", + "ipsum", + "do" + ], + "friends": [ + { + "id": 0, + "name": "Juarez Flynn" + }, + { + "id": 1, + "name": "Ashlee Arnold" + }, + { + "id": 2, + "name": "Mavis Parrish" + } + ], + "greeting": "Hello, Dee Rowe! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021715cef9f5176acc2b", + "index": 82, + "guid": "3edbcd31-6631-404e-8364-431549fa71d5", + "isActive": false, + "balance": "$1,902.89", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "brown", + "name": "Cole Sheppard", + "gender": "male", + "company": "APEX", + "email": "colesheppard@apex.com", + "phone": "+1 (960) 429-2524", + "address": "250 Montauk Avenue, Fairforest, New Mexico, 1544", + "about": "Irure non ipsum ullamco laborum dolor. Non voluptate consequat excepteur officia nulla esse sint. Ipsum id reprehenderit id elit ullamco nulla ex labore. Culpa minim incididunt culpa consectetur ea minim. Dolor nulla nulla irure nostrud irure ad quis officia aliquip qui magna quis. Veniam do aliquip laborum aliqua ut commodo Lorem laboris voluptate enim. Consequat ullamco voluptate cupidatat ex voluptate pariatur proident.\r\n", + "registered": "2016-11-07T01:48:40 +07:00", + "latitude": -59.914687, + "longitude": -84.44904, + "tags": [ + "eiusmod", + "sint", + "aute", + "quis", + "commodo", + "do", + "dolor" + ], + "friends": [ + { + "id": 0, + "name": "Franks Farmer" + }, + { + "id": 1, + "name": "Montgomery Olsen" + }, + { + "id": 2, + "name": "Corinne Lambert" + } + ], + "greeting": "Hello, Cole Sheppard! You have 8 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021752e940b29f47e8c0", + "index": 83, + "guid": "e1ff2571-ca98-4ef3-a10e-a8d428fd45af", + "isActive": true, + "balance": "$2,406.12", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "blue", + "name": "Stacy Phillips", + "gender": "female", + "company": "ZANYMAX", + "email": "stacyphillips@zanymax.com", + "phone": "+1 (943) 503-2725", + "address": "343 Otsego Street, Alamo, Texas, 3935", + "about": "Duis ad eiusmod enim ea. Dolore duis esse incididunt aliqua ea. Et ullamco culpa tempor ut Lorem sint. Aute incididunt adipisicing consectetur ut eiusmod ad enim do incididunt ipsum magna dolor ad.\r\n", + "registered": "2017-09-24T07:24:14 +06:00", + "latitude": -78.960122, + "longitude": -157.902505, + "tags": [ + "deserunt", + "ut", + "ipsum", + "dolor", + "irure", + "duis", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Gardner Colon" + }, + { + "id": 1, + "name": "Rosalinda Pollard" + }, + { + "id": 2, + "name": "Warren Mercado" + } + ], + "greeting": "Hello, Stacy Phillips! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217deef49628c16bdfd", + "index": 84, + "guid": "ffec25a2-8ba3-4964-9663-448b79be7757", + "isActive": false, + "balance": "$1,887.10", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "brown", + "name": "Barrera Wells", + "gender": "male", + "company": "UPDAT", + "email": "barrerawells@updat.com", + "phone": "+1 (998) 490-2715", + "address": "321 Jefferson Avenue, Norfolk, North Carolina, 1892", + "about": "Officia eiusmod nostrud eu fugiat do Lorem officia duis aliqua. Irure esse est aliquip commodo aliqua in amet do aute veniam commodo deserunt sunt aliqua. Magna dolor ea sit incididunt.\r\n", + "registered": "2014-06-10T03:25:04 +06:00", + "latitude": 0.031862, + "longitude": 148.510158, + "tags": [ + "est", + "proident", + "sit", + "commodo", + "eu", + "est", + "laboris" + ], + "friends": [ + { + "id": 0, + "name": "Martha Collins" + }, + { + "id": 1, + "name": "Norma Guerra" + }, + { + "id": 2, + "name": "Swanson Mcknight" + } + ], + "greeting": "Hello, Barrera Wells! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302171973d5488f41351b", + "index": 85, + "guid": "4d5576c5-63a5-4b68-b940-58bdb0209b83", + "isActive": true, + "balance": "$2,898.59", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "brown", + "name": "Fuentes Ross", + "gender": "male", + "company": "ZOLARITY", + "email": "fuentesross@zolarity.com", + "phone": "+1 (954) 410-2069", + "address": "781 Balfour Place, Kohatk, Nebraska, 4295", + "about": "Aliqua non elit fugiat cillum proident est. Incididunt velit nostrud ut exercitation aliquip et cupidatat pariatur cupidatat cupidatat ad. Velit pariatur occaecat laboris proident officia velit do ipsum. Ullamco esse do Lorem sint. Lorem incididunt eu ullamco qui sint quis non aliqua sit ut amet amet.\r\n", + "registered": "2015-01-20T08:49:14 +07:00", + "latitude": 62.209457, + "longitude": -56.91874, + "tags": [ + "minim", + "veniam", + "minim", + "pariatur", + "consectetur", + "ut", + "cillum" + ], + "friends": [ + { + "id": 0, + "name": "Victoria Cochran" + }, + { + "id": 1, + "name": "Hart Casey" + }, + { + "id": 2, + "name": "Prince Berg" + } + ], + "greeting": "Hello, Fuentes Ross! You have 7 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217946e74b7a1bec6a2", + "index": 86, + "guid": "6f3bd9d2-037a-4c59-be15-2eed82dabb67", + "isActive": true, + "balance": "$1,475.84", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "green", + "name": "Bowen Bond", + "gender": "male", + "company": "MIRACLIS", + "email": "bowenbond@miraclis.com", + "phone": "+1 (811) 541-2245", + "address": "934 Canton Court, Draper, Tennessee, 3508", + "about": "Id ex esse anim minim mollit. Exercitation culpa et officia duis anim ut esse aliqua anim aute commodo veniam. Voluptate elit et ex consequat. Duis aliqua fugiat duis ipsum quis qui in duis ex laboris id. Commodo irure fugiat duis minim officia esse proident aute nulla voluptate occaecat. Laborum occaecat aute laborum aliqua do dolore.\r\n", + "registered": "2017-10-14T01:29:58 +06:00", + "latitude": 18.707614, + "longitude": 126.4844, + "tags": [ + "non", + "cupidatat", + "Lorem", + "deserunt", + "sunt", + "enim", + "sit" + ], + "friends": [ + { + "id": 0, + "name": "Carson Bryant" + }, + { + "id": 1, + "name": "Shaw Coffey" + }, + { + "id": 2, + "name": "Shepherd Stout" + } + ], + "greeting": "Hello, Bowen Bond! You have 7 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217f5b873fba45b2da7", + "index": 87, + "guid": "e0da7a7e-c4af-416f-9985-cbe5dbb058ee", + "isActive": false, + "balance": "$2,758.20", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "brown", + "name": "Marks Gardner", + "gender": "male", + "company": "EXOTECHNO", + "email": "marksgardner@exotechno.com", + "phone": "+1 (968) 593-3367", + "address": "235 Thomas Street, Gadsden, Utah, 574", + "about": "Aliqua cillum cillum tempor cupidatat. Deserunt incididunt cupidatat excepteur laboris mollit occaecat exercitation nisi velit aute. Lorem deserunt id eiusmod labore exercitation quis culpa irure cupidatat. Do esse excepteur laboris tempor proident sunt incididunt aute aute ea minim commodo consequat. Nostrud proident et deserunt quis aliqua adipisicing. Ea ea aliquip incididunt fugiat ad aute dolore id elit amet.\r\n", + "registered": "2016-10-06T06:38:22 +06:00", + "latitude": -64.396438, + "longitude": 30.377973, + "tags": [ + "aliquip", + "ipsum", + "occaecat", + "minim", + "ad", + "ea", + "esse" + ], + "friends": [ + { + "id": 0, + "name": "Kinney Weaver" + }, + { + "id": 1, + "name": "Navarro Britt" + }, + { + "id": 2, + "name": "Roth Haley" + } + ], + "greeting": "Hello, Marks Gardner! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021777103bff9f419a71", + "index": 88, + "guid": "0d943890-afce-425e-9aa0-b5de4958bd7d", + "isActive": false, + "balance": "$2,241.98", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "green", + "name": "Bettie Gordon", + "gender": "female", + "company": "ZILODYNE", + "email": "bettiegordon@zilodyne.com", + "phone": "+1 (879) 456-3395", + "address": "168 Hutchinson Court, Tilden, Marshall Islands, 3271", + "about": "Duis irure quis ullamco Lorem commodo fugiat proident eu consequat voluptate. Eu dolore ullamco eiusmod pariatur Lorem exercitation laboris proident ex. Quis mollit ullamco deserunt mollit. Mollit cupidatat anim eu minim enim dolor sit enim irure magna non in.\r\n", + "registered": "2015-11-15T10:02:26 +07:00", + "latitude": -44.811553, + "longitude": -80.208176, + "tags": [ + "culpa", + "nisi", + "laborum", + "mollit", + "laborum", + "ipsum", + "sunt" + ], + "friends": [ + { + "id": 0, + "name": "Mills Andrews" + }, + { + "id": 1, + "name": "English Mccoy" + }, + { + "id": 2, + "name": "Moss Velez" + } + ], + "greeting": "Hello, Bettie Gordon! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302170f04602ea9e5921e", + "index": 89, + "guid": "8ddc1519-4fcb-4266-bc1d-32acb0f61dc1", + "isActive": false, + "balance": "$3,990.44", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "blue", + "name": "Sanchez Compton", + "gender": "male", + "company": "EZENT", + "email": "sanchezcompton@ezent.com", + "phone": "+1 (940) 554-2265", + "address": "891 Plaza Street, Ronco, Georgia, 2667", + "about": "Excepteur do duis fugiat sunt officia dolore esse voluptate. Veniam ullamco cupidatat qui esse sit irure id. Ad commodo tempor est qui excepteur in voluptate dolor et enim. Laborum culpa eu exercitation consequat sunt deserunt mollit sit. Amet incididunt velit ex in ipsum do aliquip duis. Eu ex adipisicing adipisicing aliqua culpa laboris culpa magna reprehenderit.\r\n", + "registered": "2016-10-05T08:41:54 +06:00", + "latitude": 47.339455, + "longitude": -9.83719, + "tags": [ + "do", + "minim", + "nisi", + "esse", + "sint", + "qui", + "velit" + ], + "friends": [ + { + "id": 0, + "name": "Hooper Sampson" + }, + { + "id": 1, + "name": "Latoya Owens" + }, + { + "id": 2, + "name": "Klein Newton" + } + ], + "greeting": "Hello, Sanchez Compton! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217b2070390ea86dda9", + "index": 90, + "guid": "0d93cdfe-3cb3-44bd-904e-b171d3485bc6", + "isActive": true, + "balance": "$2,410.75", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "green", + "name": "Zamora Gallegos", + "gender": "male", + "company": "HAIRPORT", + "email": "zamoragallegos@hairport.com", + "phone": "+1 (976) 520-3754", + "address": "323 Anna Court, Valle, Massachusetts, 2160", + "about": "Laborum fugiat ut fugiat qui nisi amet irure. In nisi incididunt duis culpa do quis ad adipisicing consectetur commodo tempor. Aliqua aute sit dolore sint. Officia elit culpa exercitation sint fugiat tempor ad reprehenderit. Do laboris nostrud in enim dolore irure nulla id officia est aute exercitation ea nulla. Fugiat magna reprehenderit duis duis excepteur cupidatat dolor nostrud reprehenderit officia nulla culpa fugiat.\r\n", + "registered": "2017-04-25T02:25:44 +06:00", + "latitude": 77.270056, + "longitude": -54.856811, + "tags": [ + "est", + "cillum", + "est", + "adipisicing", + "sit", + "est", + "ex" + ], + "friends": [ + { + "id": 0, + "name": "Roslyn Hopper" + }, + { + "id": 1, + "name": "Eddie Whitfield" + }, + { + "id": 2, + "name": "Boyer Cotton" + } + ], + "greeting": "Hello, Zamora Gallegos! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021744f098b7b6d74af1", + "index": 91, + "guid": "72046578-5d04-4b84-9a59-d19a077fb02b", + "isActive": true, + "balance": "$2,655.04", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Kathie Harding", + "gender": "female", + "company": "XIXAN", + "email": "kathieharding@xixan.com", + "phone": "+1 (992) 532-3487", + "address": "720 Clara Street, Laurelton, Arizona, 7755", + "about": "Occaecat et incididunt in pariatur enim Lorem mollit amet esse et. Magna velit aliquip ullamco exercitation et. Do excepteur elit ea officia reprehenderit fugiat fugiat non reprehenderit laboris. Dolor pariatur Lorem commodo amet exercitation dolore do.\r\n", + "registered": "2018-03-06T12:33:01 +07:00", + "latitude": 76.636672, + "longitude": -172.866826, + "tags": [ + "velit", + "ex", + "nulla", + "pariatur", + "incididunt", + "duis", + "aute" + ], + "friends": [ + { + "id": 0, + "name": "Hendricks Lamb" + }, + { + "id": 1, + "name": "Maxine Berry" + }, + { + "id": 2, + "name": "Lynda Holt" + } + ], + "greeting": "Hello, Kathie Harding! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021762b9da7ecf737c82", + "index": 92, + "guid": "8cfe74d5-a2d8-4181-ac9b-30c90a494894", + "isActive": false, + "balance": "$2,983.67", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "brown", + "name": "Crawford Trevino", + "gender": "male", + "company": "ZYPLE", + "email": "crawfordtrevino@zyple.com", + "phone": "+1 (821) 524-3617", + "address": "664 Doscher Street, Innsbrook, District Of Columbia, 9847", + "about": "Ullamco labore ex non commodo voluptate Lorem amet cupidatat sunt sunt. Est nostrud qui adipisicing minim ullamco proident culpa nulla occaecat qui pariatur nisi exercitation. Lorem dolore non qui qui minim anim nisi anim. Ea cupidatat velit Lorem quis ex officia enim tempor laboris Lorem laborum occaecat excepteur. Ex fugiat culpa nisi proident laborum exercitation elit ea exercitation nulla eiusmod.\r\n", + "registered": "2015-07-15T07:30:45 +06:00", + "latitude": 79.074571, + "longitude": -153.059486, + "tags": [ + "et", + "culpa", + "exercitation", + "in", + "proident", + "eiusmod", + "exercitation" + ], + "friends": [ + { + "id": 0, + "name": "Barber Dickerson" + }, + { + "id": 1, + "name": "Mack Mann" + }, + { + "id": 2, + "name": "Woodward Wolfe" + } + ], + "greeting": "Hello, Crawford Trevino! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021701eedcbc979c08d5", + "index": 93, + "guid": "d24ab9ea-f931-4a0e-8011-862fb5686fc2", + "isActive": true, + "balance": "$2,922.09", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "blue", + "name": "Cain Zamora", + "gender": "male", + "company": "FUTURIZE", + "email": "cainzamora@futurize.com", + "phone": "+1 (905) 411-3558", + "address": "818 Kingston Avenue, Roderfield, Virgin Islands, 1481", + "about": "Exercitation ea minim cillum culpa et mollit fugiat. Consectetur voluptate do occaecat dolor proident est pariatur. Qui nisi irure aliquip laborum sunt Lorem deserunt qui magna fugiat minim. Nostrud laborum enim est sit magna mollit. Reprehenderit deserunt nisi enim do labore nulla et cillum magna cillum.\r\n", + "registered": "2017-12-13T11:29:31 +07:00", + "latitude": -70.395942, + "longitude": -143.381847, + "tags": [ + "qui", + "ut", + "excepteur", + "dolor", + "sint", + "deserunt", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Sawyer Moran" + }, + { + "id": 1, + "name": "Barker Lee" + }, + { + "id": 2, + "name": "Carly Kirkland" + } + ], + "greeting": "Hello, Cain Zamora! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302171c71e253f4d02629", + "index": 94, + "guid": "f77d4fbb-f68c-48d8-8403-1c1083d87a03", + "isActive": false, + "balance": "$2,496.85", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "brown", + "name": "Parks Acevedo", + "gender": "male", + "company": "NETBOOK", + "email": "parksacevedo@netbook.com", + "phone": "+1 (913) 473-3036", + "address": "227 Vermont Court, Cetronia, South Dakota, 298", + "about": "Ut reprehenderit exercitation nostrud esse voluptate id occaecat mollit excepteur aliquip deserunt. Elit aliquip exercitation sit irure exercitation labore ea duis laborum pariatur ut occaecat dolor. Duis Lorem excepteur enim aliquip qui. Aute ut est sunt tempor est eu eiusmod irure.\r\n", + "registered": "2016-09-05T08:59:12 +06:00", + "latitude": -24.715871, + "longitude": 89.956913, + "tags": [ + "incididunt", + "fugiat", + "exercitation", + "irure", + "ea", + "ex", + "Lorem" + ], + "friends": [ + { + "id": 0, + "name": "Henrietta Lindsey" + }, + { + "id": 1, + "name": "Jaime Ward" + }, + { + "id": 2, + "name": "Arnold Rush" + } + ], + "greeting": "Hello, Parks Acevedo! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302178260d8d359f400fc", + "index": 95, + "guid": "23e58ab7-0b86-4dab-94e9-d4a13ac93364", + "isActive": true, + "balance": "$1,150.02", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "blue", + "name": "May Figueroa", + "gender": "male", + "company": "UNIWORLD", + "email": "mayfigueroa@uniworld.com", + "phone": "+1 (854) 413-2044", + "address": "551 Calyer Street, Madrid, Virginia, 7974", + "about": "Velit officia occaecat veniam sunt esse. Quis consequat eu id id elit exercitation deserunt commodo cillum fugiat. Consectetur nisi quis duis occaecat magna eu reprehenderit quis veniam esse qui laborum commodo. Incididunt elit reprehenderit elit dolor laboris adipisicing fugiat qui et ad voluptate enim. Ea sunt pariatur mollit in proident fugiat deserunt id duis incididunt. Amet laboris elit amet labore et voluptate non eu incididunt. Irure amet ea commodo ea mollit tempor minim aliquip.\r\n", + "registered": "2015-04-04T05:11:54 +06:00", + "latitude": -77.465592, + "longitude": 129.346972, + "tags": [ + "incididunt", + "nisi", + "incididunt", + "eiusmod", + "laborum", + "aute", + "reprehenderit" + ], + "friends": [ + { + "id": 0, + "name": "Marlene Lindsay" + }, + { + "id": 1, + "name": "Briana Cote" + }, + { + "id": 2, + "name": "Katheryn Nicholson" + } + ], + "greeting": "Hello, May Figueroa! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302175d6430685fdddf24", + "index": 96, + "guid": "30d49d7e-957e-4ad3-b364-fa0569b170b3", + "isActive": true, + "balance": "$1,737.89", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "blue", + "name": "Mcclain Watkins", + "gender": "male", + "company": "COMVEYER", + "email": "mcclainwatkins@comveyer.com", + "phone": "+1 (865) 594-2786", + "address": "444 Agate Court, Tivoli, Michigan, 4560", + "about": "Deserunt tempor pariatur ullamco quis sunt fugiat magna duis incididunt ad anim adipisicing incididunt. Tempor adipisicing cillum proident eiusmod magna amet voluptate sunt commodo anim labore cillum. Consequat aliquip cupidatat in sit ut non cupidatat voluptate adipisicing dolore enim sit. Consequat est aliqua Lorem aliqua sint velit nulla deserunt dolore mollit Lorem. Officia nulla deserunt officia velit. Quis exercitation duis nulla proident ipsum cillum ut.\r\n", + "registered": "2015-09-10T01:22:45 +06:00", + "latitude": 83.979181, + "longitude": 137.559358, + "tags": [ + "sit", + "qui", + "ut", + "aute", + "aliqua", + "do", + "aute" + ], + "friends": [ + { + "id": 0, + "name": "Leach Sweet" + }, + { + "id": 1, + "name": "Goff Butler" + }, + { + "id": 2, + "name": "Gallegos Booth" + } + ], + "greeting": "Hello, Mcclain Watkins! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217ddbae8392733c5ac", + "index": 97, + "guid": "da7ecb7f-a810-4f62-8ca4-e4a5a884649c", + "isActive": false, + "balance": "$3,597.87", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "blue", + "name": "Campbell Harmon", + "gender": "male", + "company": "BEADZZA", + "email": "campbellharmon@beadzza.com", + "phone": "+1 (880) 412-2786", + "address": "725 Nova Court, Goochland, Northern Mariana Islands, 1644", + "about": "Velit ea minim qui ea dolor ullamco Lorem pariatur. Sunt commodo occaecat nostrud consectetur ea sint dolore exercitation incididunt cupidatat. Velit anim excepteur non sunt esse veniam nisi deserunt aute cillum. Reprehenderit labore occaecat ea adipisicing minim minim mollit dolore minim voluptate minim eiusmod in cupidatat. Sunt labore est sit proident ut quis. Tempor qui ullamco exercitation ex deserunt est duis.\r\n", + "registered": "2015-07-10T03:42:35 +06:00", + "latitude": -10.342515, + "longitude": -174.723305, + "tags": [ + "aliqua", + "proident", + "magna", + "culpa", + "et", + "nostrud", + "incididunt" + ], + "friends": [ + { + "id": 0, + "name": "Griffith Levy" + }, + { + "id": 1, + "name": "Gamble Winters" + }, + { + "id": 2, + "name": "Leta Baldwin" + } + ], + "greeting": "Hello, Campbell Harmon! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302170ca73cf0443da72a", + "index": 98, + "guid": "813a8eef-daf3-4611-ae66-4040c489d956", + "isActive": true, + "balance": "$1,916.54", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "blue", + "name": "Sharlene Santos", + "gender": "female", + "company": "CEDWARD", + "email": "sharlenesantos@cedward.com", + "phone": "+1 (810) 414-2027", + "address": "898 Little Street, Fingerville, Illinois, 5234", + "about": "Reprehenderit sint in et voluptate voluptate ex et in irure Lorem sunt irure sit. Reprehenderit laborum occaecat quis sit cillum fugiat cupidatat reprehenderit voluptate cupidatat dolore. Reprehenderit nostrud tempor est Lorem pariatur occaecat incididunt excepteur. Veniam cillum do incididunt eiusmod consequat est anim deserunt adipisicing. Cupidatat aliqua adipisicing et dolore velit amet cillum ipsum nostrud eiusmod.\r\n", + "registered": "2015-01-09T08:15:08 +07:00", + "latitude": -85.535788, + "longitude": -128.486155, + "tags": [ + "sunt", + "exercitation", + "in", + "aute", + "et", + "eiusmod", + "consectetur" + ], + "friends": [ + { + "id": 0, + "name": "Huff King" + }, + { + "id": 1, + "name": "Terrie Kaufman" + }, + { + "id": 2, + "name": "Herman Bernard" + } + ], + "greeting": "Hello, Sharlene Santos! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302177f24dd5d97647171", + "index": 99, + "guid": "26935e61-d4b6-4660-ae6b-0a27c15fa719", + "isActive": false, + "balance": "$1,653.39", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "brown", + "name": "Holloway Oconnor", + "gender": "male", + "company": "LIQUICOM", + "email": "hollowayoconnor@liquicom.com", + "phone": "+1 (898) 413-2932", + "address": "212 Montague Terrace, Glenbrook, Wisconsin, 936", + "about": "Fugiat consectetur Lorem esse fugiat duis sunt anim. Excepteur non mollit dolor magna exercitation velit dolor cillum irure qui anim quis. Velit veniam nulla culpa adipisicing enim qui aliquip est culpa irure. Duis nisi minim do nulla. Quis fugiat anim cupidatat labore esse. Ex voluptate ex aliquip eu magna dolore non sit voluptate do culpa velit ad.\r\n", + "registered": "2014-01-08T09:44:10 +07:00", + "latitude": 78.032951, + "longitude": 13.632597, + "tags": [ + "deserunt", + "laborum", + "enim", + "consequat", + "velit", + "anim", + "officia" + ], + "friends": [ + { + "id": 0, + "name": "Rich Alford" + }, + { + "id": 1, + "name": "Love Curtis" + }, + { + "id": 2, + "name": "Gladys Moses" + } + ], + "greeting": "Hello, Holloway Oconnor! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217ea236a9ee4c93d26", + "index": 100, + "guid": "415139c8-b792-4bdf-8f62-c715f182ff07", + "isActive": true, + "balance": "$1,171.91", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "blue", + "name": "Elvira Crane", + "gender": "female", + "company": "GORGANIC", + "email": "elviracrane@gorganic.com", + "phone": "+1 (893) 473-2554", + "address": "270 Logan Street, Williston, Idaho, 7050", + "about": "Sint cillum qui voluptate qui adipisicing. Aliqua laborum amet eiusmod nulla commodo. Laborum nulla ad dolore culpa fugiat eiusmod quis elit.\r\n", + "registered": "2016-11-18T07:42:34 +07:00", + "latitude": -12.844605, + "longitude": -90.584315, + "tags": [ + "commodo", + "tempor", + "et", + "laboris", + "nostrud", + "reprehenderit", + "quis" + ], + "friends": [ + { + "id": 0, + "name": "Velasquez Parsons" + }, + { + "id": 1, + "name": "Carver Macdonald" + }, + { + "id": 2, + "name": "Kathrine Schroeder" + } + ], + "greeting": "Hello, Elvira Crane! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302173b7c02008c4a908f", + "index": 101, + "guid": "29684109-a79a-4926-bc81-64e94fe1a4ad", + "isActive": true, + "balance": "$1,503.28", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Hester French", + "gender": "male", + "company": "NAMEGEN", + "email": "hesterfrench@namegen.com", + "phone": "+1 (982) 500-3242", + "address": "942 Java Street, Tedrow, New Hampshire, 4390", + "about": "Enim commodo occaecat enim reprehenderit sint sunt laborum ipsum anim aliqua. Irure sunt amet cillum veniam aute exercitation exercitation Lorem ex eiusmod exercitation. Et duis ad ut cupidatat in amet culpa. Deserunt adipisicing proident ea ullamco do laboris sunt ad occaecat qui. Ut laboris nulla minim deserunt aliqua.\r\n", + "registered": "2016-05-15T02:55:05 +06:00", + "latitude": -24.430198, + "longitude": 98.296481, + "tags": [ + "labore", + "Lorem", + "mollit", + "adipisicing", + "sit", + "aliquip", + "id" + ], + "friends": [ + { + "id": 0, + "name": "Madden Joseph" + }, + { + "id": 1, + "name": "Pollard Morris" + }, + { + "id": 2, + "name": "May Lott" + } + ], + "greeting": "Hello, Hester French! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217f090116b79ead070", + "index": 102, + "guid": "c17c64e5-a083-466d-9738-b36b339c1240", + "isActive": false, + "balance": "$2,360.09", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "blue", + "name": "Sweeney Salas", + "gender": "male", + "company": "ZYTRAX", + "email": "sweeneysalas@zytrax.com", + "phone": "+1 (810) 414-3243", + "address": "209 Mill Street, Faywood, South Carolina, 9771", + "about": "Veniam esse qui nostrud tempor velit occaecat aute. Culpa nulla commodo aliqua et sit mollit cupidatat aliqua ea amet minim. Ut ipsum consectetur aliquip qui officia velit sunt voluptate officia. Nisi mollit quis Lorem consequat enim sunt ullamco duis. Voluptate officia exercitation duis fugiat amet irure anim quis et mollit elit pariatur. In occaecat nisi aliqua eiusmod laborum amet anim. Non ex amet esse officia et.\r\n", + "registered": "2014-06-27T06:21:15 +06:00", + "latitude": 22.570078, + "longitude": 74.251766, + "tags": [ + "cupidatat", + "mollit", + "ullamco", + "aliquip", + "mollit", + "adipisicing", + "aliquip" + ], + "friends": [ + { + "id": 0, + "name": "Banks Molina" + }, + { + "id": 1, + "name": "Minerva Bishop" + }, + { + "id": 2, + "name": "Camacho May" + } + ], + "greeting": "Hello, Sweeney Salas! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217ff437e91c72e41b1", + "index": 103, + "guid": "744cd5fe-6ab8-43b7-98b0-4442005b9985", + "isActive": false, + "balance": "$1,279.18", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "blue", + "name": "Phoebe Moody", + "gender": "female", + "company": "IDETICA", + "email": "phoebemoody@idetica.com", + "phone": "+1 (967) 515-2314", + "address": "193 Dearborn Court, Yukon, Iowa, 9482", + "about": "Aliquip velit dolore commodo et enim occaecat dolore elit et sunt tempor pariatur. Qui exercitation irure laboris sint ea duis elit aliquip anim. Tempor aute sunt voluptate aliquip dolor esse ullamco voluptate laborum ullamco mollit. Aliqua labore velit fugiat incididunt deserunt eu.\r\n", + "registered": "2017-10-28T04:54:15 +06:00", + "latitude": 25.496749, + "longitude": 18.087811, + "tags": [ + "quis", + "ut", + "laborum", + "ad", + "consectetur", + "mollit", + "ea" + ], + "friends": [ + { + "id": 0, + "name": "Deborah Martin" + }, + { + "id": 1, + "name": "Rollins Mathews" + }, + { + "id": 2, + "name": "Deloris Beach" + } + ], + "greeting": "Hello, Phoebe Moody! You have 8 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302178981bd100452a72e", + "index": 104, + "guid": "380128b8-e740-44c6-87b4-27ef4b3d1a5f", + "isActive": true, + "balance": "$3,385.77", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Merrill Mccall", + "gender": "male", + "company": "COLAIRE", + "email": "merrillmccall@colaire.com", + "phone": "+1 (844) 429-2163", + "address": "911 Wogan Terrace, Whitewater, California, 4621", + "about": "Commodo ea pariatur quis nostrud Lorem eu do est Lorem qui. Est nostrud pariatur non aliquip. Cupidatat elit velit culpa consequat veniam irure qui magna dolore anim ex pariatur. Duis aute excepteur quis enim. In nulla velit fugiat tempor commodo occaecat ex nostrud deserunt irure magna. Consectetur sit mollit anim do.\r\n", + "registered": "2015-01-14T11:57:13 +07:00", + "latitude": -80.595694, + "longitude": -145.455581, + "tags": [ + "ad", + "consectetur", + "consequat", + "ad", + "aute", + "irure", + "elit" + ], + "friends": [ + { + "id": 0, + "name": "Rivas Sanford" + }, + { + "id": 1, + "name": "Brown Mcfadden" + }, + { + "id": 2, + "name": "Boone Walters" + } + ], + "greeting": "Hello, Merrill Mccall! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217c0c8af3a150ae348", + "index": 105, + "guid": "aa6c373c-79f2-4775-84b0-d9bcaf34cd7a", + "isActive": true, + "balance": "$1,293.13", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Gray Medina", + "gender": "male", + "company": "DAISU", + "email": "graymedina@daisu.com", + "phone": "+1 (950) 534-3912", + "address": "299 Ivan Court, Felt, Wyoming, 6998", + "about": "Dolore ullamco occaecat sunt tempor reprehenderit. Qui cupidatat consectetur Lorem dolore ad est eu veniam labore voluptate. Aliquip qui aliqua quis laborum ex nisi.\r\n", + "registered": "2016-11-14T10:27:03 +07:00", + "latitude": 55.21257, + "longitude": 26.251103, + "tags": [ + "veniam", + "do", + "est", + "anim", + "laboris", + "qui", + "velit" + ], + "friends": [ + { + "id": 0, + "name": "Vera Bruce" + }, + { + "id": 1, + "name": "Kane Neal" + }, + { + "id": 2, + "name": "Jeanine Dillon" + } + ], + "greeting": "Hello, Gray Medina! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217399bbec748c4e3a6", + "index": 106, + "guid": "87c419d7-e119-4368-a720-197eaccf4ff7", + "isActive": false, + "balance": "$2,891.17", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Potts Norris", + "gender": "male", + "company": "GEEKY", + "email": "pottsnorris@geeky.com", + "phone": "+1 (875) 536-2171", + "address": "466 Louisa Street, Hinsdale, Maryland, 5716", + "about": "Nisi eiusmod aliquip ea id elit sit Lorem aliquip nisi. Nulla fugiat irure cillum velit sit laborum cillum pariatur culpa ea. Veniam commodo cupidatat nostrud excepteur exercitation anim dolor aute nisi reprehenderit. Ex est laborum ut amet laborum culpa qui magna commodo eu aute sit elit. Enim voluptate deserunt magna culpa id sint eu duis quis. Ea in Lorem dolor esse. Occaecat aute qui eiusmod deserunt qui laborum nisi elit ullamco cillum.\r\n", + "registered": "2017-07-06T06:44:03 +06:00", + "latitude": 17.301485, + "longitude": -82.754453, + "tags": [ + "id", + "laboris", + "dolore", + "labore", + "cillum", + "sit", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Walton Perry" + }, + { + "id": 1, + "name": "Shields Terrell" + }, + { + "id": 2, + "name": "Cathleen Roth" + } + ], + "greeting": "Hello, Potts Norris! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302179eaa88dfa6293e57", + "index": 107, + "guid": "19ba23a3-431b-498a-995e-731ffae3e52f", + "isActive": true, + "balance": "$3,155.02", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "brown", + "name": "Lewis Daniel", + "gender": "male", + "company": "TUBESYS", + "email": "lewisdaniel@tubesys.com", + "phone": "+1 (848) 412-2638", + "address": "609 Chester Street, Sunbury, Louisiana, 9491", + "about": "Consequat consectetur ut eiusmod sunt non. Aliquip consectetur exercitation velit officia deserunt ex. Exercitation voluptate ea quis sint do excepteur ut culpa duis non sunt duis proident. Velit enim ad enim anim qui laborum. Non nostrud Lorem amet amet mollit dolor incididunt occaecat voluptate Lorem tempor nostrud ea. Sunt commodo excepteur excepteur esse commodo qui excepteur non exercitation irure et proident amet. Deserunt veniam esse elit laborum nulla ullamco culpa et velit excepteur dolor sint.\r\n", + "registered": "2016-10-09T10:42:19 +06:00", + "latitude": 64.279313, + "longitude": -152.496035, + "tags": [ + "nostrud", + "ad", + "proident", + "deserunt", + "elit", + "veniam", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Riggs Knight" + }, + { + "id": 1, + "name": "Graham Bender" + }, + { + "id": 2, + "name": "Olsen Terry" + } + ], + "greeting": "Hello, Lewis Daniel! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302176c04379e4676eea5", + "index": 108, + "guid": "960d4b6e-b9a7-4e5d-bc7c-1234f47e9e6f", + "isActive": false, + "balance": "$2,725.10", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "brown", + "name": "Sutton Strong", + "gender": "male", + "company": "REMOTION", + "email": "suttonstrong@remotion.com", + "phone": "+1 (997) 586-2309", + "address": "286 Coventry Road, Machias, Federated States Of Micronesia, 8075", + "about": "Mollit ut in eiusmod pariatur aliqua ex aliquip reprehenderit nisi pariatur nulla voluptate. Cillum ea aliquip cillum nostrud ullamco occaecat non quis fugiat voluptate exercitation laboris. Amet velit fugiat proident consectetur reprehenderit tempor dolor mollit nisi ut eu exercitation velit.\r\n", + "registered": "2015-12-14T09:30:19 +07:00", + "latitude": 19.513239, + "longitude": -3.772074, + "tags": [ + "consequat", + "id", + "consectetur", + "id", + "in", + "labore", + "ea" + ], + "friends": [ + { + "id": 0, + "name": "Alston Johnson" + }, + { + "id": 1, + "name": "Mildred Cantu" + }, + { + "id": 2, + "name": "Kellie Warner" + } + ], + "greeting": "Hello, Sutton Strong! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302173d00fdbcaac2b95a", + "index": 109, + "guid": "370e5097-6a40-4090-9544-39100f275362", + "isActive": false, + "balance": "$3,951.05", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Cherie Ruiz", + "gender": "female", + "company": "INTERODEO", + "email": "cherieruiz@interodeo.com", + "phone": "+1 (953) 401-2238", + "address": "685 Pacific Street, Breinigsville, Pennsylvania, 577", + "about": "Amet ut sit nulla ut consectetur ea pariatur esse non labore ullamco quis. Ipsum laboris quis aliqua eiusmod ad veniam nulla officia. Minim in fugiat reprehenderit laborum in et dolor aliqua do Lorem. Anim culpa Lorem sunt ipsum ea voluptate quis nostrud sit non commodo. In nisi elit tempor incididunt eiusmod dolor est laborum aliqua. Ea laboris aliqua quis exercitation amet.\r\n", + "registered": "2016-08-17T10:24:13 +06:00", + "latitude": 13.733064, + "longitude": -53.819153, + "tags": [ + "commodo", + "velit", + "voluptate", + "consequat", + "velit", + "adipisicing", + "do" + ], + "friends": [ + { + "id": 0, + "name": "Pugh Christensen" + }, + { + "id": 1, + "name": "Earline Lara" + }, + { + "id": 2, + "name": "Frost Lucas" + } + ], + "greeting": "Hello, Cherie Ruiz! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217b5ec85ae28191203", + "index": 110, + "guid": "15e01919-5ec1-4a79-aafb-a21465190337", + "isActive": true, + "balance": "$3,197.01", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Vinson Strickland", + "gender": "male", + "company": "OBLIQ", + "email": "vinsonstrickland@obliq.com", + "phone": "+1 (844) 412-3640", + "address": "987 Jay Street, Singer, Vermont, 2091", + "about": "Excepteur incididunt tempor id aliqua pariatur Lorem voluptate pariatur esse aute magna fugiat magna est. Duis consectetur adipisicing minim labore excepteur proident. Mollit culpa ad sint exercitation excepteur est sint laborum exercitation mollit. Laboris sint pariatur ex exercitation officia non voluptate anim ullamco aliquip occaecat occaecat. Reprehenderit nisi tempor ullamco dolore nulla eu. Magna ea officia occaecat sint consectetur velit. Cillum consequat velit exercitation duis minim laborum Lorem sunt qui eu culpa enim minim officia.\r\n", + "registered": "2016-03-19T07:43:41 +06:00", + "latitude": -62.123601, + "longitude": -157.110139, + "tags": [ + "non", + "in", + "Lorem", + "mollit", + "nostrud", + "mollit", + "veniam" + ], + "friends": [ + { + "id": 0, + "name": "Villarreal Todd" + }, + { + "id": 1, + "name": "Liliana Head" + }, + { + "id": 2, + "name": "Georgette Decker" + } + ], + "greeting": "Hello, Vinson Strickland! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217524cb857799f5463", + "index": 111, + "guid": "99b130e7-afac-4bf8-8d0c-25422ac478c3", + "isActive": false, + "balance": "$1,506.91", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "green", + "name": "Bates Hebert", + "gender": "male", + "company": "COMBOT", + "email": "bateshebert@combot.com", + "phone": "+1 (946) 433-3833", + "address": "241 Lott Place, Albrightsville, Maine, 8396", + "about": "Ea ad velit nulla adipisicing ut ex labore anim Lorem duis dolor. Deserunt qui veniam id incididunt enim tempor tempor. Enim est sint irure et. Dolore sit Lorem nostrud ullamco adipisicing irure aliquip anim velit. Est veniam eiusmod commodo exercitation aliqua ad ullamco. Laboris adipisicing sit cupidatat non amet adipisicing duis ea reprehenderit ut velit reprehenderit ea sit.\r\n", + "registered": "2016-11-12T12:59:35 +07:00", + "latitude": -57.847088, + "longitude": 45.214967, + "tags": [ + "dolore", + "pariatur", + "adipisicing", + "veniam", + "in", + "non", + "deserunt" + ], + "friends": [ + { + "id": 0, + "name": "Salinas Kemp" + }, + { + "id": 1, + "name": "Frederick Malone" + }, + { + "id": 2, + "name": "Bullock Roach" + } + ], + "greeting": "Hello, Bates Hebert! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217c1d12cc3a6d0e427", + "index": 112, + "guid": "b6fc0e64-5ecb-4868-9bff-22b5326c261f", + "isActive": false, + "balance": "$1,601.32", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "green", + "name": "Sosa Gibson", + "gender": "male", + "company": "RONBERT", + "email": "sosagibson@ronbert.com", + "phone": "+1 (858) 544-3461", + "address": "253 Pierrepont Street, Madaket, Alaska, 3787", + "about": "Laborum duis ipsum consectetur ad. Sint eu aliquip occaecat aute cillum sit cupidatat qui voluptate cillum. Laboris proident fugiat excepteur laboris consectetur ex ullamco proident deserunt excepteur. Dolore commodo exercitation ea qui ad magna ad duis ipsum aliqua voluptate excepteur consectetur. Velit consequat voluptate officia nisi nostrud consequat.\r\n", + "registered": "2014-10-19T08:25:38 +06:00", + "latitude": -25.672566, + "longitude": 77.642589, + "tags": [ + "quis", + "commodo", + "adipisicing", + "ad", + "exercitation", + "cupidatat", + "minim" + ], + "friends": [ + { + "id": 0, + "name": "Marquita Waller" + }, + { + "id": 1, + "name": "Washington Nash" + }, + { + "id": 2, + "name": "Corine Moss" + } + ], + "greeting": "Hello, Sosa Gibson! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217f1d23ee8ffee64ef", + "index": 113, + "guid": "0798c73d-71d0-4e44-ad6b-d4fa17ccbc86", + "isActive": false, + "balance": "$2,401.51", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "blue", + "name": "Casey Hodge", + "gender": "male", + "company": "WARETEL", + "email": "caseyhodge@waretel.com", + "phone": "+1 (890) 600-3322", + "address": "158 Veranda Place, Gibbsville, Palau, 7095", + "about": "Sit et aliqua laboris enim consequat elit adipisicing nulla. Sunt cupidatat reprehenderit aute do laboris non aute voluptate esse cillum. Laborum id aliquip Lorem reprehenderit duis ullamco ea. Laboris Lorem nostrud minim ullamco sit eu ea tempor ad veniam adipisicing adipisicing commodo. Laborum in adipisicing ut sit cillum nostrud fugiat labore sunt pariatur consectetur laborum. Est duis amet irure culpa anim ad nostrud veniam ex et ipsum exercitation enim. Exercitation do veniam do esse magna consequat minim et sit.\r\n", + "registered": "2016-04-29T09:01:29 +06:00", + "latitude": -19.167642, + "longitude": 168.634434, + "tags": [ + "amet", + "veniam", + "ipsum", + "amet", + "irure", + "proident", + "commodo" + ], + "friends": [ + { + "id": 0, + "name": "Jerry Armstrong" + }, + { + "id": 1, + "name": "Regina Fry" + }, + { + "id": 2, + "name": "Kay Sykes" + } + ], + "greeting": "Hello, Casey Hodge! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021783b30f313071f755", + "index": 114, + "guid": "6fa4f2df-d9ec-444d-8e01-14fac2ce47d0", + "isActive": true, + "balance": "$2,926.84", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "blue", + "name": "Lois Carr", + "gender": "female", + "company": "ZEPITOPE", + "email": "loiscarr@zepitope.com", + "phone": "+1 (874) 594-2855", + "address": "731 Remsen Avenue, Cade, Arkansas, 2624", + "about": "Officia commodo adipisicing excepteur occaecat aliqua mollit non aliquip enim anim. Nulla est mollit deserunt cupidatat Lorem excepteur et aliquip exercitation veniam. Ipsum ipsum aliquip aute sunt ullamco laboris elit reprehenderit. Proident ullamco esse ipsum qui qui adipisicing minim id culpa.\r\n", + "registered": "2016-09-30T10:01:14 +06:00", + "latitude": 48.613662, + "longitude": 52.04359, + "tags": [ + "consectetur", + "incididunt", + "ad", + "minim", + "enim", + "elit", + "eu" + ], + "friends": [ + { + "id": 0, + "name": "Leonard Wynn" + }, + { + "id": 1, + "name": "Danielle Ellison" + }, + { + "id": 2, + "name": "Tasha Cummings" + } + ], + "greeting": "Hello, Lois Carr! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302174b07896ae7018418", + "index": 115, + "guid": "d04746aa-c099-4e09-a6da-88d3487215ee", + "isActive": false, + "balance": "$3,515.41", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "brown", + "name": "Ellison Obrien", + "gender": "male", + "company": "NORALI", + "email": "ellisonobrien@norali.com", + "phone": "+1 (957) 496-2911", + "address": "559 Joralemon Street, Shasta, Florida, 7740", + "about": "Ad tempor minim ex officia do. Velit ea non ipsum minim velit nostrud eiusmod. In consequat dolore ad excepteur. Qui ipsum dolore aliquip ipsum id tempor cupidatat nostrud est eu proident in aliquip. In adipisicing labore occaecat ad esse ad consectetur culpa veniam nostrud.\r\n", + "registered": "2015-10-11T05:59:02 +06:00", + "latitude": 8.623154, + "longitude": -118.687942, + "tags": [ + "laboris", + "irure", + "irure", + "excepteur", + "consequat", + "deserunt", + "enim" + ], + "friends": [ + { + "id": 0, + "name": "Patrice Mcclain" + }, + { + "id": 1, + "name": "Ayala Travis" + }, + { + "id": 2, + "name": "Duncan Jackson" + } + ], + "greeting": "Hello, Ellison Obrien! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302178d21e06bf16230d9", + "index": 116, + "guid": "31acc992-e801-4c3c-9b7b-07c0a97854e0", + "isActive": true, + "balance": "$2,427.26", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "green", + "name": "Jocelyn Craig", + "gender": "female", + "company": "COMCUBINE", + "email": "jocelyncraig@comcubine.com", + "phone": "+1 (954) 448-2782", + "address": "283 Matthews Place, Northchase, Puerto Rico, 7850", + "about": "Et ullamco enim exercitation voluptate pariatur ex veniam in elit aliquip adipisicing Lorem proident adipisicing. Aute non excepteur proident laboris sunt laborum occaecat deserunt duis. Irure incididunt cupidatat tempor irure eiusmod consequat. Fugiat voluptate ipsum eiusmod adipisicing nisi culpa sint amet do ea irure incididunt nulla consequat. Reprehenderit sint deserunt consectetur exercitation ex. Enim occaecat excepteur labore eiusmod occaecat ipsum reprehenderit reprehenderit sit.\r\n", + "registered": "2015-07-16T08:45:54 +06:00", + "latitude": 86.443445, + "longitude": -123.665955, + "tags": [ + "ad", + "qui", + "voluptate", + "quis", + "magna", + "dolore", + "Lorem" + ], + "friends": [ + { + "id": 0, + "name": "Angelita Whitley" + }, + { + "id": 1, + "name": "Park Green" + }, + { + "id": 2, + "name": "Phillips Jacobson" + } + ], + "greeting": "Hello, Jocelyn Craig! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217d06833dfa890ce15", + "index": 117, + "guid": "db2d9894-94c8-44ce-8716-53d0ab8dc291", + "isActive": true, + "balance": "$3,936.32", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "brown", + "name": "Best Chen", + "gender": "male", + "company": "FUTURIS", + "email": "bestchen@futuris.com", + "phone": "+1 (998) 559-3366", + "address": "503 Cumberland Street, Mooresburg, Hawaii, 8296", + "about": "Sit id anim cillum enim duis amet do do officia nulla aliquip minim. Do proident elit commodo consequat nulla tempor elit laborum. Excepteur consectetur reprehenderit esse officia occaecat.\r\n", + "registered": "2014-05-01T04:13:58 +06:00", + "latitude": -63.633075, + "longitude": -78.20784, + "tags": [ + "aute", + "deserunt", + "nostrud", + "mollit", + "est", + "laborum", + "culpa" + ], + "friends": [ + { + "id": 0, + "name": "Sweet Harrington" + }, + { + "id": 1, + "name": "Howe Underwood" + }, + { + "id": 2, + "name": "Lila Barrett" + } + ], + "greeting": "Hello, Best Chen! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217835901a4a752af4d", + "index": 118, + "guid": "6df441c0-f0e4-4df6-b16d-bc3ae8a04309", + "isActive": false, + "balance": "$2,947.28", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "brown", + "name": "Russell Jensen", + "gender": "male", + "company": "SEALOUD", + "email": "russelljensen@sealoud.com", + "phone": "+1 (845) 537-3176", + "address": "159 Frost Street, Dorneyville, American Samoa, 9840", + "about": "Voluptate aute proident est tempor aliquip non officia aliquip quis. Proident consectetur reprehenderit nulla mollit amet cillum adipisicing incididunt esse ea id. Anim veniam esse deserunt adipisicing tempor officia aliquip eiusmod irure pariatur sit amet velit. Cillum id sunt duis ad eiusmod. Fugiat labore reprehenderit aliquip ad sit dolor excepteur mollit enim reprehenderit nostrud officia. Est sunt consequat incididunt duis ea consectetur pariatur qui consectetur aute anim.\r\n", + "registered": "2014-06-14T08:54:12 +06:00", + "latitude": 18.292207, + "longitude": 167.414325, + "tags": [ + "consequat", + "esse", + "officia", + "non", + "dolore", + "incididunt", + "reprehenderit" + ], + "friends": [ + { + "id": 0, + "name": "Lavonne Marshall" + }, + { + "id": 1, + "name": "Helen Robbins" + }, + { + "id": 2, + "name": "Gregory Shannon" + } + ], + "greeting": "Hello, Russell Jensen! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217f0e17746125efbaa", + "index": 119, + "guid": "200a983d-e0ba-4db1-89aa-cca5c38df75a", + "isActive": true, + "balance": "$1,696.53", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "green", + "name": "Letitia Byers", + "gender": "female", + "company": "DIGITALUS", + "email": "letitiabyers@digitalus.com", + "phone": "+1 (876) 575-2322", + "address": "879 Cass Place, Soudan, Indiana, 5511", + "about": "Laborum nulla proident laborum labore incididunt minim consequat exercitation sit. Ullamco ex voluptate reprehenderit ex elit non. Proident qui ut labore velit sunt anim sunt commodo pariatur ex. Irure mollit nostrud exercitation id consectetur adipisicing sunt tempor dolore sunt laboris quis laborum. Enim veniam ad esse consectetur dolore est occaecat sunt commodo id qui consequat ex.\r\n", + "registered": "2016-01-11T09:17:17 +07:00", + "latitude": 61.652081, + "longitude": -14.841409, + "tags": [ + "et", + "veniam", + "ipsum", + "consectetur", + "sunt", + "laboris", + "aliquip" + ], + "friends": [ + { + "id": 0, + "name": "Molina Buchanan" + }, + { + "id": 1, + "name": "Peggy Meyers" + }, + { + "id": 2, + "name": "Kline Sosa" + } + ], + "greeting": "Hello, Letitia Byers! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217c63e9d05998a7028", + "index": 120, + "guid": "80ae796d-c844-4d91-8dc8-b1db5dd056e1", + "isActive": false, + "balance": "$1,886.18", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Deena Hurst", + "gender": "female", + "company": "ROCKABYE", + "email": "deenahurst@rockabye.com", + "phone": "+1 (826) 562-2291", + "address": "124 Milton Street, Layhill, Missouri, 8392", + "about": "In consectetur adipisicing magna aliqua amet. Amet anim ea eiusmod et ipsum. Sint laborum cupidatat deserunt ut in anim reprehenderit irure velit nulla ullamco id. Ex nulla aliqua eu officia non qui mollit et ea tempor enim laborum irure mollit. Nulla elit in dolor quis adipisicing sit deserunt. Do cillum labore elit quis nulla deserunt minim reprehenderit labore. Magna ipsum quis qui enim labore minim commodo minim excepteur esse id do.\r\n", + "registered": "2014-02-27T06:15:16 +07:00", + "latitude": 17.232725, + "longitude": 119.643379, + "tags": [ + "fugiat", + "duis", + "amet", + "ea", + "magna", + "nostrud", + "qui" + ], + "friends": [ + { + "id": 0, + "name": "Morin Brown" + }, + { + "id": 1, + "name": "Sheppard Fernandez" + }, + { + "id": 2, + "name": "Bobbi Gilbert" + } + ], + "greeting": "Hello, Deena Hurst! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021766568d539153219c", + "index": 121, + "guid": "5eacf1c8-6114-429f-85e2-41e0bda6086b", + "isActive": true, + "balance": "$3,781.80", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "blue", + "name": "Tabatha Golden", + "gender": "female", + "company": "SULTRAXIN", + "email": "tabathagolden@sultraxin.com", + "phone": "+1 (830) 577-2974", + "address": "718 Quentin Road, Century, Guam, 6330", + "about": "Nulla do dolore fugiat sunt elit nisi quis elit consequat commodo officia voluptate quis nulla. Ullamco proident eu cillum sunt sit adipisicing anim non exercitation laboris. Amet nisi amet velit fugiat sint pariatur sit officia. Excepteur labore eu ex Lorem nostrud tempor voluptate laborum exercitation aliquip ullamco id adipisicing. Sunt laborum magna pariatur proident qui aliquip esse. Adipisicing voluptate eu ex dolor pariatur. Lorem incididunt non ut esse aliqua pariatur labore dolor irure fugiat commodo fugiat adipisicing ipsum.\r\n", + "registered": "2016-02-22T05:05:02 +07:00", + "latitude": -10.19822, + "longitude": -163.348332, + "tags": [ + "deserunt", + "consequat", + "cillum", + "nostrud", + "sunt", + "incididunt", + "esse" + ], + "friends": [ + { + "id": 0, + "name": "Holland Maldonado" + }, + { + "id": 1, + "name": "Lawson Mclaughlin" + }, + { + "id": 2, + "name": "Noel Blankenship" + } + ], + "greeting": "Hello, Tabatha Golden! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021727b0cae4f0e13dc6", + "index": 122, + "guid": "3ba29926-e9b1-42af-9397-6f0ee0032662", + "isActive": false, + "balance": "$3,837.48", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "blue", + "name": "Hansen Kirk", + "gender": "male", + "company": "FURNIGEER", + "email": "hansenkirk@furnigeer.com", + "phone": "+1 (887) 478-2393", + "address": "453 Bills Place, Needmore, Minnesota, 4507", + "about": "Commodo occaecat culpa laborum sit voluptate incididunt proident occaecat tempor sint in. Consectetur nulla et est pariatur id occaecat magna veniam ex occaecat eiusmod. Ullamco do dolore tempor tempor aliqua exercitation sint. Id aliqua amet id ipsum esse nisi ea est veniam veniam mollit.\r\n", + "registered": "2017-01-21T10:46:17 +07:00", + "latitude": 42.773373, + "longitude": 177.165998, + "tags": [ + "nisi", + "id", + "officia", + "consectetur", + "ad", + "eiusmod", + "quis" + ], + "friends": [ + { + "id": 0, + "name": "Marva Atkins" + }, + { + "id": 1, + "name": "Rene Fuentes" + }, + { + "id": 2, + "name": "Melinda Barry" + } + ], + "greeting": "Hello, Hansen Kirk! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217a7dad20793177e33", + "index": 123, + "guid": "70f610ff-7c2b-409e-9c03-12d2a37722aa", + "isActive": false, + "balance": "$1,507.94", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "green", + "name": "Alyssa Lester", + "gender": "female", + "company": "ZIGGLES", + "email": "alyssalester@ziggles.com", + "phone": "+1 (939) 452-2576", + "address": "952 Glenmore Avenue, Rivera, Delaware, 593", + "about": "In laborum occaecat in occaecat eu occaecat laborum. Dolor duis proident dolor veniam. Ex sit nisi aliqua mollit.\r\n", + "registered": "2016-03-21T02:03:27 +06:00", + "latitude": -70.91596, + "longitude": 147.524294, + "tags": [ + "aliqua", + "amet", + "anim", + "Lorem", + "eiusmod", + "id", + "incididunt" + ], + "friends": [ + { + "id": 0, + "name": "Janelle Pruitt" + }, + { + "id": 1, + "name": "Isabelle Buck" + }, + { + "id": 2, + "name": "Constance Sanchez" + } + ], + "greeting": "Hello, Alyssa Lester! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021711880acc8f721680", + "index": 124, + "guid": "d02a64c7-d0f3-44f2-871f-d7ccdb873fbe", + "isActive": true, + "balance": "$1,228.83", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "brown", + "name": "Thornton Brock", + "gender": "male", + "company": "UTARA", + "email": "thorntonbrock@utara.com", + "phone": "+1 (934) 599-3637", + "address": "636 Miami Court, Oasis, Kansas, 3148", + "about": "Ad quis fugiat magna minim adipisicing pariatur deserunt sunt tempor Lorem non. Aliqua eu eu quis velit. Velit reprehenderit aliquip enim Lorem reprehenderit proident. Adipisicing proident adipisicing amet nostrud commodo labore adipisicing veniam deserunt id proident. Sit consequat irure mollit esse eiusmod dolor non consectetur commodo est ipsum.\r\n", + "registered": "2014-09-19T12:58:35 +06:00", + "latitude": -46.797207, + "longitude": 130.76038, + "tags": [ + "incididunt", + "qui", + "excepteur", + "dolor", + "amet", + "proident", + "anim" + ], + "friends": [ + { + "id": 0, + "name": "Joann Schmidt" + }, + { + "id": 1, + "name": "Ferguson Thompson" + }, + { + "id": 2, + "name": "Little Fisher" + } + ], + "greeting": "Hello, Thornton Brock! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217ef83508b394bed07", + "index": 125, + "guid": "f4dc2537-d155-466f-bb2f-ab2bf178015c", + "isActive": true, + "balance": "$1,597.23", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "blue", + "name": "Levy Hampton", + "gender": "male", + "company": "SNIPS", + "email": "levyhampton@snips.com", + "phone": "+1 (838) 585-2570", + "address": "124 Story Street, Frystown, Washington, 8587", + "about": "Ex magna sunt dolore nostrud cillum do nisi excepteur. Id irure consequat non amet enim sit deserunt veniam. Est nisi reprehenderit in voluptate aute voluptate aliqua adipisicing est anim minim cupidatat excepteur. Ea dolor ea cillum ad officia dolore occaecat laborum ea in culpa ad. Eiusmod laborum tempor veniam dolor pariatur qui incididunt occaecat.\r\n", + "registered": "2017-12-05T05:58:07 +07:00", + "latitude": -47.41285, + "longitude": 178.816859, + "tags": [ + "non", + "ullamco", + "nisi", + "cupidatat", + "aliquip", + "deserunt", + "et" + ], + "friends": [ + { + "id": 0, + "name": "Kirk Tillman" + }, + { + "id": 1, + "name": "Robin Hale" + }, + { + "id": 2, + "name": "Claire Black" + } + ], + "greeting": "Hello, Levy Hampton! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217a864bf41decd48c0", + "index": 126, + "guid": "b04757ad-2c8c-4680-9af8-15027c6e5a98", + "isActive": true, + "balance": "$3,884.84", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "brown", + "name": "Lindsey Koch", + "gender": "male", + "company": "ORBIXTAR", + "email": "lindseykoch@orbixtar.com", + "phone": "+1 (818) 504-3472", + "address": "363 Downing Street, Chesterfield, Oklahoma, 9210", + "about": "Laboris nisi mollit qui voluptate ea excepteur Lorem incididunt anim sint do. Qui tempor occaecat ex id Lorem tempor elit cillum. Ex velit ex elit in laboris labore sunt. Do labore laborum amet dolore in cupidatat cillum reprehenderit non. Esse consectetur culpa sint eu.\r\n", + "registered": "2017-08-29T09:24:10 +06:00", + "latitude": 36.956811, + "longitude": 73.993376, + "tags": [ + "esse", + "ea", + "velit", + "mollit", + "culpa", + "nulla", + "fugiat" + ], + "friends": [ + { + "id": 0, + "name": "Ollie Haynes" + }, + { + "id": 1, + "name": "Preston Burt" + }, + { + "id": 2, + "name": "Edwards Preston" + } + ], + "greeting": "Hello, Lindsey Koch! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217e295c4dc90c14023", + "index": 127, + "guid": "908f0798-e56e-46f7-8cbb-1e2b329dcd48", + "isActive": true, + "balance": "$2,465.90", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "green", + "name": "Curry Baker", + "gender": "male", + "company": "MAINELAND", + "email": "currybaker@maineland.com", + "phone": "+1 (869) 600-3621", + "address": "443 Beayer Place, Sedley, Kentucky, 5040", + "about": "Aute nulla esse id labore Lorem voluptate nostrud minim irure. Labore reprehenderit mollit cillum consectetur consequat dolor esse anim ipsum. Ex qui tempor est Lorem. Reprehenderit eiusmod irure commodo ipsum laboris sint qui proident cillum voluptate mollit. Ea ad incididunt dolor quis voluptate anim. Ad ea excepteur non et eiusmod velit.\r\n", + "registered": "2014-10-09T06:01:22 +06:00", + "latitude": -54.39458, + "longitude": -52.36144, + "tags": [ + "sint", + "Lorem", + "quis", + "eu", + "veniam", + "magna", + "do" + ], + "friends": [ + { + "id": 0, + "name": "Althea Mendez" + }, + { + "id": 1, + "name": "Debbie Rogers" + }, + { + "id": 2, + "name": "Marcella Middleton" + } + ], + "greeting": "Hello, Curry Baker! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217933ec41ead8d68a7", + "index": 128, + "guid": "0f45706d-4604-458c-a61f-be09e9f722bf", + "isActive": true, + "balance": "$1,587.95", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "blue", + "name": "Sonya Rose", + "gender": "female", + "company": "ORBEAN", + "email": "sonyarose@orbean.com", + "phone": "+1 (987) 545-3574", + "address": "655 Beaumont Street, Gracey, Alabama, 5962", + "about": "Voluptate adipisicing tempor reprehenderit esse non. Officia sunt nulla consectetur aute elit adipisicing id ad tempor deserunt nostrud magna. Voluptate aute sit enim non voluptate cillum.\r\n", + "registered": "2016-08-18T04:12:00 +06:00", + "latitude": 40.923778, + "longitude": 173.103467, + "tags": [ + "incididunt", + "fugiat", + "Lorem", + "deserunt", + "magna", + "eu", + "nisi" + ], + "friends": [ + { + "id": 0, + "name": "Della Dotson" + }, + { + "id": 1, + "name": "Rodgers Patrick" + }, + { + "id": 2, + "name": "Floyd Grant" + } + ], + "greeting": "Hello, Sonya Rose! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302177b5304856af83431", + "index": 129, + "guid": "e5ab437d-14f8-4593-a457-b945233a475c", + "isActive": false, + "balance": "$3,586.77", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "brown", + "name": "Johanna Gregory", + "gender": "female", + "company": "RECRITUBE", + "email": "johannagregory@recritube.com", + "phone": "+1 (867) 500-2506", + "address": "219 Union Avenue, Gila, West Virginia, 8162", + "about": "Cillum laboris anim magna amet ullamco in deserunt aliqua aute adipisicing ad eiusmod nisi. Ad ullamco dolore voluptate eu ut tempor dolore. Cillum enim ullamco esse aliqua pariatur. Velit sunt officia reprehenderit quis dolor esse ex nisi. Exercitation consectetur qui eiusmod sit do aute id ex Lorem consectetur dolore elit amet cupidatat.\r\n", + "registered": "2017-04-03T07:25:53 +06:00", + "latitude": 71.527448, + "longitude": 107.30318, + "tags": [ + "aliqua", + "sit", + "voluptate", + "dolore", + "magna", + "eiusmod", + "anim" + ], + "friends": [ + { + "id": 0, + "name": "Carter Wilkerson" + }, + { + "id": 1, + "name": "Knowles Dunlap" + }, + { + "id": 2, + "name": "Verna Gibbs" + } + ], + "greeting": "Hello, Johanna Gregory! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217c6b541aed67247a5", + "index": 130, + "guid": "b3bfd39c-f79c-406b-b1f9-a3d9a6b6b456", + "isActive": true, + "balance": "$3,064.03", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "green", + "name": "Sellers Solis", + "gender": "male", + "company": "EARTHPLEX", + "email": "sellerssolis@earthplex.com", + "phone": "+1 (970) 402-3386", + "address": "959 Classon Avenue, Biddle, Ohio, 7448", + "about": "Exercitation quis excepteur esse anim consequat dolor. Eiusmod consequat aliquip ad veniam ex culpa occaecat laborum nulla eiusmod. Ipsum consequat sint do reprehenderit ipsum in. Fugiat nostrud elit nulla proident velit excepteur dolor culpa sunt Lorem dolor quis nostrud.\r\n", + "registered": "2015-10-24T06:51:36 +06:00", + "latitude": 54.019798, + "longitude": -99.159046, + "tags": [ + "in", + "elit", + "aliqua", + "amet", + "veniam", + "commodo", + "ipsum" + ], + "friends": [ + { + "id": 0, + "name": "Jody Bolton" + }, + { + "id": 1, + "name": "Dotson Hamilton" + }, + { + "id": 2, + "name": "Mcintyre Salazar" + } + ], + "greeting": "Hello, Sellers Solis! You have 2 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302174b30f359ee058ba6", + "index": 131, + "guid": "7070618d-9b0e-4eb4-8a3b-2ea4a3050c52", + "isActive": true, + "balance": "$3,468.74", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "brown", + "name": "Owen Ashley", + "gender": "male", + "company": "XELEGYL", + "email": "owenashley@xelegyl.com", + "phone": "+1 (928) 446-2304", + "address": "114 Pioneer Street, Savage, Connecticut, 3692", + "about": "Do Lorem non labore labore ut aliquip esse velit deserunt pariatur commodo tempor amet laboris. Deserunt id adipisicing ad quis quis Lorem. Mollit esse irure proident laboris. Sunt magna elit eu aliquip aute ad irure et consectetur est Lorem deserunt aliquip. Deserunt duis non qui tempor mollit nostrud ea pariatur elit fugiat deserunt. Lorem aliqua irure ad ut. In minim magna irure Lorem ea ullamco consectetur labore deserunt esse sit.\r\n", + "registered": "2014-12-21T09:12:22 +07:00", + "latitude": -0.374398, + "longitude": 85.070165, + "tags": [ + "adipisicing", + "fugiat", + "proident", + "ut", + "deserunt", + "ipsum", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Ericka Graves" + }, + { + "id": 1, + "name": "Bentley Phelps" + }, + { + "id": 2, + "name": "Cortez Roberts" + } + ], + "greeting": "Hello, Owen Ashley! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217b5c706cbdfc4d63d", + "index": 132, + "guid": "33e21d71-4b42-4cf7-97aa-2d97a23c8dbe", + "isActive": true, + "balance": "$3,165.82", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "brown", + "name": "Lorene Sanders", + "gender": "female", + "company": "SENTIA", + "email": "lorenesanders@sentia.com", + "phone": "+1 (828) 559-3660", + "address": "104 Llama Court, Bennett, North Dakota, 4515", + "about": "Irure officia nisi excepteur do ad. Id incididunt laboris eiusmod excepteur. Nisi commodo aute esse reprehenderit magna eu sunt aute nisi dolor ut dolore officia. Laborum cupidatat commodo nisi labore anim et est exercitation incididunt ad aliqua minim. Consectetur id et mollit amet cupidatat aute eu dolor elit cupidatat id. Aliquip ex anim cillum culpa cillum. Ipsum enim aliquip nulla ad ex do officia minim cupidatat ut pariatur.\r\n", + "registered": "2016-08-12T12:46:32 +06:00", + "latitude": 5.930315, + "longitude": 174.535328, + "tags": [ + "esse", + "cillum", + "aute", + "eiusmod", + "sit", + "elit", + "irure" + ], + "friends": [ + { + "id": 0, + "name": "Inez Wright" + }, + { + "id": 1, + "name": "Charmaine Gilmore" + }, + { + "id": 2, + "name": "Watkins Landry" + } + ], + "greeting": "Hello, Lorene Sanders! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217767aeaf34816817d", + "index": 133, + "guid": "dc771142-26bb-416d-b4a3-c31db1ecd57c", + "isActive": true, + "balance": "$1,922.01", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "blue", + "name": "Joanna Ramirez", + "gender": "female", + "company": "PROSURE", + "email": "joannaramirez@prosure.com", + "phone": "+1 (918) 450-3713", + "address": "557 Farragut Place, Gallina, Mississippi, 3778", + "about": "Et dolore pariatur adipisicing cillum amet irure nostrud nisi anim qui sit sint pariatur mollit. Enim in dolore elit et. Elit mollit nulla reprehenderit officia consequat ex ut cupidatat minim. Esse laborum sit aliqua consectetur qui voluptate aliquip nisi adipisicing. Fugiat laborum veniam tempor eiusmod aliquip do cupidatat reprehenderit labore. Qui veniam non commodo et tempor aliquip laboris est quis consectetur commodo dolor. Officia ea veniam non dolore do qui excepteur est id nulla ipsum mollit.\r\n", + "registered": "2017-07-02T12:30:54 +06:00", + "latitude": 61.547622, + "longitude": 136.308312, + "tags": [ + "ipsum", + "ex", + "adipisicing", + "proident", + "qui", + "officia", + "eiusmod" + ], + "friends": [ + { + "id": 0, + "name": "Heath Keller" + }, + { + "id": 1, + "name": "Webster Franklin" + }, + { + "id": 2, + "name": "Waters Barrera" + } + ], + "greeting": "Hello, Joanna Ramirez! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021745cded07a5b73bc1", + "index": 134, + "guid": "1b21bc57-e675-4fe9-ad0f-861054fc3fe0", + "isActive": true, + "balance": "$2,695.05", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "green", + "name": "Dena Dickson", + "gender": "female", + "company": "IZZBY", + "email": "denadickson@izzby.com", + "phone": "+1 (976) 507-3725", + "address": "688 Friel Place, Longbranch, New York, 4889", + "about": "In ut reprehenderit tempor voluptate ad adipisicing sit ex ad dolore voluptate cupidatat eu. Adipisicing adipisicing eu elit sit officia minim. Eiusmod exercitation incididunt ea culpa pariatur incididunt id do culpa ut aliqua sunt velit. Ex ea aliquip laboris mollit et dolor qui pariatur consectetur qui est excepteur. Amet est nisi irure magna in cupidatat eu cillum.\r\n", + "registered": "2017-02-07T07:03:50 +07:00", + "latitude": -63.074411, + "longitude": 89.655704, + "tags": [ + "excepteur", + "magna", + "esse", + "cupidatat", + "esse", + "dolore", + "est" + ], + "friends": [ + { + "id": 0, + "name": "James Burgess" + }, + { + "id": 1, + "name": "Wilda Potts" + }, + { + "id": 2, + "name": "Velazquez Miranda" + } + ], + "greeting": "Hello, Dena Dickson! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217aaba2940418dc7f2", + "index": 135, + "guid": "a001842b-0bc3-4140-97c5-171b42b0eb40", + "isActive": true, + "balance": "$2,295.38", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "brown", + "name": "Celina Fitzpatrick", + "gender": "female", + "company": "RENOVIZE", + "email": "celinafitzpatrick@renovize.com", + "phone": "+1 (994) 497-2069", + "address": "865 Ross Street, Winesburg, Oregon, 7810", + "about": "Consectetur labore duis et veniam nisi id ullamco irure ad aute anim eu dolor. Elit adipisicing esse et eiusmod ipsum sunt ad. Quis ullamco aute magna et mollit amet nostrud et cillum dolore sint. Ut voluptate culpa ut esse cillum qui deserunt. Nisi excepteur esse aliquip enim nulla nulla magna nulla nisi. Aliquip occaecat incididunt do reprehenderit aliquip culpa pariatur culpa nisi id sint et.\r\n", + "registered": "2015-02-04T11:25:54 +07:00", + "latitude": 22.640241, + "longitude": 99.897152, + "tags": [ + "proident", + "deserunt", + "amet", + "sunt", + "cillum", + "dolore", + "ex" + ], + "friends": [ + { + "id": 0, + "name": "Berry Irwin" + }, + { + "id": 1, + "name": "Amalia Boyd" + }, + { + "id": 2, + "name": "Fischer Finley" + } + ], + "greeting": "Hello, Celina Fitzpatrick! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217913ba9ccef65ea3b", + "index": 136, + "guid": "8aa7279a-82c7-4d9b-9f8f-ceb1994f45fe", + "isActive": false, + "balance": "$3,636.85", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "green", + "name": "Pierce Giles", + "gender": "male", + "company": "UNISURE", + "email": "piercegiles@unisure.com", + "phone": "+1 (966) 445-2607", + "address": "378 Montrose Avenue, Hasty, New Jersey, 8142", + "about": "Fugiat eu aute aliqua veniam ut amet culpa excepteur irure officia adipisicing ex eiusmod. Mollit veniam culpa irure fugiat ad eiusmod dolore laboris nulla consequat nostrud in. Nulla velit id ad exercitation veniam aliquip cillum et veniam mollit ex nulla sint dolore. Et esse proident ea aute enim magna aute ea dolore consectetur laboris cupidatat. Minim ipsum deserunt commodo dolor.\r\n", + "registered": "2014-11-06T04:55:38 +07:00", + "latitude": -28.942015, + "longitude": 100.336179, + "tags": [ + "minim", + "incididunt", + "non", + "dolore", + "non", + "non", + "mollit" + ], + "friends": [ + { + "id": 0, + "name": "Farrell Hardin" + }, + { + "id": 1, + "name": "Reva Case" + }, + { + "id": 2, + "name": "Alexandria Castillo" + } + ], + "greeting": "Hello, Pierce Giles! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021730651c7fe12bb97d", + "index": 137, + "guid": "446fc297-aa19-4c04-a922-c7c14059b990", + "isActive": false, + "balance": "$3,510.55", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Ashley Clayton", + "gender": "female", + "company": "SOLAREN", + "email": "ashleyclayton@solaren.com", + "phone": "+1 (982) 535-2499", + "address": "123 Seaview Court, Orason, Montana, 7646", + "about": "Qui ad consequat culpa irure anim aute eu est nisi Lorem eu. Ullamco deserunt fugiat cillum elit ea nostrud ut velit. Ut aliquip ut laborum nostrud sint proident elit aliquip officia consectetur. Eu aliquip qui et excepteur ut quis proident cupidatat excepteur incididunt in ut et. Fugiat dolor exercitation id ut consequat eiusmod magna. Velit velit dolor laborum tempor incididunt aliquip ipsum officia aliqua consequat dolore tempor elit.\r\n", + "registered": "2015-11-18T08:26:57 +07:00", + "latitude": -7.947593, + "longitude": -5.434563, + "tags": [ + "Lorem", + "incididunt", + "eiusmod", + "dolore", + "culpa", + "nulla", + "id" + ], + "friends": [ + { + "id": 0, + "name": "Bell Sharpe" + }, + { + "id": 1, + "name": "Caitlin Clements" + }, + { + "id": 2, + "name": "Hyde Duke" + } + ], + "greeting": "Hello, Ashley Clayton! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217d355ca99d75360d1", + "index": 138, + "guid": "e445bab3-c615-4a28-a023-bc95f714a4c0", + "isActive": true, + "balance": "$3,788.99", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "brown", + "name": "Holt Carney", + "gender": "male", + "company": "DIGINETIC", + "email": "holtcarney@diginetic.com", + "phone": "+1 (989) 558-3572", + "address": "191 Juliana Place, Ryderwood, Nevada, 432", + "about": "Ea duis magna deserunt ullamco eu veniam. Ut cillum amet sunt consectetur mollit adipisicing ut do. Labore esse adipisicing voluptate eu cupidatat dolore labore enim cupidatat excepteur est consequat mollit. Sint excepteur proident incididunt laborum consectetur ullamco qui aliquip consequat dolor veniam duis reprehenderit consectetur. Pariatur exercitation sint ut qui Lorem Lorem mollit deserunt. Dolor irure irure nostrud nulla mollit ea ea laborum est deserunt minim. Do qui dolore proident incididunt ut aliquip ullamco laboris.\r\n", + "registered": "2014-03-20T12:48:27 +06:00", + "latitude": 40.055868, + "longitude": 114.331827, + "tags": [ + "ipsum", + "culpa", + "culpa", + "aliqua", + "adipisicing", + "voluptate", + "qui" + ], + "friends": [ + { + "id": 0, + "name": "Clements Burch" + }, + { + "id": 1, + "name": "Brady Love" + }, + { + "id": 2, + "name": "Gayle Bean" + } + ], + "greeting": "Hello, Holt Carney! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302177d6552b8d304d1b7", + "index": 139, + "guid": "5b2cd98f-952a-4f4e-ae58-2d30dbb26965", + "isActive": true, + "balance": "$2,148.50", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "brown", + "name": "Pratt Long", + "gender": "male", + "company": "VIASIA", + "email": "prattlong@viasia.com", + "phone": "+1 (849) 517-3654", + "address": "488 Fulton Street, Bowmansville, Colorado, 5443", + "about": "Cupidatat et magna incididunt mollit in. Cillum anim aliquip minim tempor ut amet nulla sunt sint laboris aliqua. Amet enim ex quis consectetur ex occaecat officia dolore sunt exercitation quis. Velit mollit enim mollit sint aliquip nisi cupidatat mollit commodo do veniam ut.\r\n", + "registered": "2016-10-01T09:42:22 +06:00", + "latitude": -68.242216, + "longitude": -156.609577, + "tags": [ + "qui", + "sint", + "pariatur", + "culpa", + "quis", + "quis", + "voluptate" + ], + "friends": [ + { + "id": 0, + "name": "Tyler Ball" + }, + { + "id": 1, + "name": "Peterson Brennan" + }, + { + "id": 2, + "name": "Fletcher Hill" + } + ], + "greeting": "Hello, Pratt Long! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217a9aad5472cc5dc84", + "index": 140, + "guid": "89d3e82c-6995-4299-b1ee-ba6f6558d193", + "isActive": false, + "balance": "$3,302.67", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "brown", + "name": "Alison Davenport", + "gender": "female", + "company": "OPTICALL", + "email": "alisondavenport@opticall.com", + "phone": "+1 (813) 498-2813", + "address": "840 Linden Boulevard, Edgar, New Mexico, 1385", + "about": "Velit est ex in laboris reprehenderit. Fugiat Lorem cillum veniam exercitation cillum ipsum eu voluptate eu aliqua commodo reprehenderit. Est commodo et qui dolore veniam laboris incididunt anim cupidatat. Elit ullamco in voluptate quis incididunt dolore aliqua sint consectetur incididunt ad proident. Pariatur ut fugiat laboris enim in. Et dolor do consequat dolor aliqua consequat in cupidatat.\r\n", + "registered": "2016-04-08T11:45:26 +06:00", + "latitude": -67.184247, + "longitude": -7.065803, + "tags": [ + "in", + "irure", + "exercitation", + "fugiat", + "aliquip", + "quis", + "id" + ], + "friends": [ + { + "id": 0, + "name": "Sheri Herrera" + }, + { + "id": 1, + "name": "Maldonado Nieves" + }, + { + "id": 2, + "name": "Albert Day" + } + ], + "greeting": "Hello, Alison Davenport! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302172175c88b8bac4b33", + "index": 141, + "guid": "18e38941-b757-4dd1-b047-82f183aac038", + "isActive": false, + "balance": "$1,837.97", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "green", + "name": "Ofelia Wade", + "gender": "female", + "company": "MANTRO", + "email": "ofeliawade@mantro.com", + "phone": "+1 (846) 446-3264", + "address": "265 Langham Street, Weedville, Texas, 4393", + "about": "Anim ex ea qui id. Anim ea ad deserunt Lorem in labore. Amet dolore ad aliqua commodo. Veniam proident duis in aute adipisicing occaecat sint dolor nostrud aliquip labore velit excepteur aliquip.\r\n", + "registered": "2016-02-25T11:49:06 +07:00", + "latitude": -84.721512, + "longitude": -87.806031, + "tags": [ + "elit", + "tempor", + "ut", + "et", + "sint", + "ea", + "esse" + ], + "friends": [ + { + "id": 0, + "name": "Rojas Kirby" + }, + { + "id": 1, + "name": "Laurel Bryan" + }, + { + "id": 2, + "name": "Lilian Miller" + } + ], + "greeting": "Hello, Ofelia Wade! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217a7fad9485115c097", + "index": 142, + "guid": "7198a2b4-9eee-4a06-8923-6eb01592198a", + "isActive": false, + "balance": "$2,225.55", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "brown", + "name": "Malone Wiley", + "gender": "male", + "company": "DANJA", + "email": "malonewiley@danja.com", + "phone": "+1 (821) 460-3592", + "address": "433 Duffield Street, Kent, North Carolina, 8738", + "about": "Laboris fugiat ullamco excepteur fugiat tempor irure adipisicing sint. Culpa voluptate esse qui sit. Anim Lorem ea ullamco elit cillum culpa veniam consequat do elit. Dolor deserunt incididunt enim irure esse elit nostrud incididunt do dolore ipsum sunt amet. Culpa ea eiusmod ex duis dolor laboris. Cupidatat labore eu id qui officia sit qui ipsum voluptate cupidatat incididunt labore quis. Ullamco commodo sint sit aliqua pariatur sunt sunt non cupidatat.\r\n", + "registered": "2016-02-26T01:32:47 +07:00", + "latitude": 86.794883, + "longitude": 162.111918, + "tags": [ + "aliquip", + "ea", + "excepteur", + "anim", + "aliqua", + "id", + "consectetur" + ], + "friends": [ + { + "id": 0, + "name": "Erna Matthews" + }, + { + "id": 1, + "name": "Glass Mcdowell" + }, + { + "id": 2, + "name": "Aida Blanchard" + } + ], + "greeting": "Hello, Malone Wiley! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217c7da0cae1a1d286f", + "index": 143, + "guid": "ebdbdb53-bf97-456c-8693-b09c78d79812", + "isActive": false, + "balance": "$2,942.94", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "blue", + "name": "Terry Clarke", + "gender": "male", + "company": "AUTOMON", + "email": "terryclarke@automon.com", + "phone": "+1 (812) 467-2650", + "address": "174 Willow Street, Morriston, Nebraska, 3105", + "about": "Quis mollit sunt in quis. Velit in nostrud nostrud non ex sint ipsum laborum fugiat in. Proident officia tempor sunt aliqua anim. Labore magna do elit incididunt irure id laborum incididunt voluptate fugiat.\r\n", + "registered": "2016-12-28T02:16:16 +07:00", + "latitude": 55.5824, + "longitude": -81.127599, + "tags": [ + "amet", + "cupidatat", + "qui", + "adipisicing", + "sint", + "enim", + "voluptate" + ], + "friends": [ + { + "id": 0, + "name": "Marina Kline" + }, + { + "id": 1, + "name": "Nanette Weber" + }, + { + "id": 2, + "name": "Miller Yang" + } + ], + "greeting": "Hello, Terry Clarke! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302178f3ddf6887be2b3f", + "index": 144, + "guid": "ee5f7478-18a8-4c23-baa0-99486c64882f", + "isActive": false, + "balance": "$3,102.16", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "green", + "name": "Jackie Hardy", + "gender": "female", + "company": "EBIDCO", + "email": "jackiehardy@ebidco.com", + "phone": "+1 (979) 483-2591", + "address": "341 Tompkins Avenue, Stouchsburg, Tennessee, 3593", + "about": "Fugiat ad adipisicing proident ea deserunt magna ex in occaecat consequat magna commodo. Quis sunt mollit non deserunt. Nostrud ullamco veniam incididunt laborum velit duis tempor cupidatat consequat est officia. Elit anim magna sint adipisicing Lorem sit sint velit veniam amet dolore mollit. Occaecat officia sint tempor aliquip.\r\n", + "registered": "2016-08-12T12:25:16 +06:00", + "latitude": 70.017488, + "longitude": 146.791522, + "tags": [ + "dolore", + "ex", + "dolor", + "dolor", + "veniam", + "sit", + "enim" + ], + "friends": [ + { + "id": 0, + "name": "Golden Garcia" + }, + { + "id": 1, + "name": "Shelby Snider" + }, + { + "id": 2, + "name": "Simone Rojas" + } + ], + "greeting": "Hello, Jackie Hardy! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217cc5b2cf46a3248bd", + "index": 145, + "guid": "6f1ead5f-07ae-4860-8e9c-b39fbc639082", + "isActive": true, + "balance": "$1,729.84", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "green", + "name": "Blair Hodges", + "gender": "male", + "company": "MARVANE", + "email": "blairhodges@marvane.com", + "phone": "+1 (891) 483-2840", + "address": "799 Kingsland Avenue, Wanamie, Utah, 6540", + "about": "Quis magna elit ullamco ad esse laborum dolore dolore occaecat amet. Culpa Lorem fugiat commodo adipisicing do excepteur amet non cupidatat culpa aliquip irure Lorem do. Eiusmod aute exercitation nostrud laboris amet dolore commodo reprehenderit sit duis sunt anim sint consectetur. Minim excepteur cupidatat veniam reprehenderit quis incididunt anim amet aliquip id. Reprehenderit reprehenderit consequat enim et sunt officia nostrud. Proident consectetur id veniam labore dolore ea elit.\r\n", + "registered": "2015-10-03T04:43:32 +06:00", + "latitude": 51.896233, + "longitude": -117.210783, + "tags": [ + "occaecat", + "quis", + "dolor", + "occaecat", + "est", + "laborum", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Patti Alexander" + }, + { + "id": 1, + "name": "Hunt Farley" + }, + { + "id": 2, + "name": "Claudia Burton" + } + ], + "greeting": "Hello, Blair Hodges! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217c5aa0c0c17af14f3", + "index": 146, + "guid": "25a482f1-a4f1-4025-aa10-414a5e39e16f", + "isActive": false, + "balance": "$1,709.65", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Gibson Riddle", + "gender": "male", + "company": "CHORIZON", + "email": "gibsonriddle@chorizon.com", + "phone": "+1 (980) 572-2782", + "address": "551 Denton Place, Cochranville, Marshall Islands, 6446", + "about": "Est consequat dolore in eiusmod aliqua adipisicing nulla. Eiusmod anim proident laboris aute cillum sint officia excepteur pariatur adipisicing minim esse fugiat. Eiusmod fugiat proident veniam Lorem enim deserunt veniam culpa. Ut ea ex tempor nostrud cillum sint deserunt laborum aliqua exercitation Lorem reprehenderit esse excepteur. Do consectetur proident do eu. In quis laborum incididunt excepteur consequat quis commodo sit eiusmod nisi dolor ad.\r\n", + "registered": "2016-06-14T07:51:42 +06:00", + "latitude": -71.185323, + "longitude": 112.026873, + "tags": [ + "cupidatat", + "id", + "occaecat", + "ullamco", + "officia", + "nulla", + "quis" + ], + "friends": [ + { + "id": 0, + "name": "Juana Sharp" + }, + { + "id": 1, + "name": "Helene James" + }, + { + "id": 2, + "name": "Eugenia Keith" + } + ], + "greeting": "Hello, Gibson Riddle! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302175bb329b1ab82bce9", + "index": 147, + "guid": "89607281-1fd3-4dc3-8e56-3618f3550476", + "isActive": true, + "balance": "$3,715.96", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "green", + "name": "Haynes Sargent", + "gender": "male", + "company": "NIXELT", + "email": "haynessargent@nixelt.com", + "phone": "+1 (846) 456-3839", + "address": "791 Schenck Avenue, Villarreal, Georgia, 9940", + "about": "Duis do culpa id anim pariatur ut sit ea adipisicing id eu non nulla. Laboris laboris laboris nisi reprehenderit mollit elit est ex aliqua sunt ad laborum enim. Aliqua occaecat in ea Lorem anim laboris.\r\n", + "registered": "2016-09-19T04:20:07 +06:00", + "latitude": 11.308294, + "longitude": 135.877879, + "tags": [ + "amet", + "culpa", + "officia", + "reprehenderit", + "enim", + "aute", + "culpa" + ], + "friends": [ + { + "id": 0, + "name": "Donaldson Patterson" + }, + { + "id": 1, + "name": "Langley Buckner" + }, + { + "id": 2, + "name": "Santiago Blair" + } + ], + "greeting": "Hello, Haynes Sargent! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302176bacaf7817e28684", + "index": 148, + "guid": "1d85bf67-22a1-4a04-8bcb-ece790043891", + "isActive": true, + "balance": "$1,659.52", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "brown", + "name": "Mcclure Robles", + "gender": "male", + "company": "TURNLING", + "email": "mcclurerobles@turnling.com", + "phone": "+1 (870) 478-3371", + "address": "299 Estate Road, National, Massachusetts, 7518", + "about": "Eiusmod culpa exercitation irure tempor. Dolore anim voluptate id ipsum cupidatat nisi commodo id pariatur. Irure do laboris voluptate sunt nisi elit aute aliquip culpa aute qui qui cillum. Occaecat enim incididunt laboris consequat consequat cupidatat consequat elit dolore est labore amet anim. Adipisicing minim deserunt nisi tempor sit ea ea commodo aliqua nostrud esse. Ullamco anim ullamco nisi amet reprehenderit reprehenderit Lorem tempor excepteur laboris ad do. Minim id qui ullamco sint commodo adipisicing sit aliquip id eu.\r\n", + "registered": "2015-07-14T11:06:30 +06:00", + "latitude": 73.93007, + "longitude": 21.873993, + "tags": [ + "voluptate", + "eiusmod", + "enim", + "culpa", + "ipsum", + "officia", + "esse" + ], + "friends": [ + { + "id": 0, + "name": "Earlene Frederick" + }, + { + "id": 1, + "name": "Carr Santana" + }, + { + "id": 2, + "name": "Irene Rocha" + } + ], + "greeting": "Hello, Mcclure Robles! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217cd28127ee1a820cf", + "index": 149, + "guid": "a3f54c12-9d0d-45f9-9b7d-9150c43f3dcb", + "isActive": true, + "balance": "$2,515.09", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "brown", + "name": "Colette Holcomb", + "gender": "female", + "company": "GRAINSPOT", + "email": "coletteholcomb@grainspot.com", + "phone": "+1 (966) 598-3883", + "address": "752 Dahill Road, Marbury, Arizona, 709", + "about": "Aute magna quis cupidatat amet enim dolore velit elit. Culpa est exercitation velit veniam deserunt anim do qui laborum pariatur ut fugiat nostrud non. Ex ut et sit elit duis incididunt. Quis qui do ex nostrud in est non tempor quis sint sit eiusmod. Id officia voluptate sunt ea do sit sint anim incididunt. Velit do ad aliquip veniam aute do dolore eiusmod qui consectetur voluptate tempor velit eiusmod. Adipisicing et officia quis velit nulla fugiat in nisi cillum amet pariatur ad laboris incididunt.\r\n", + "registered": "2014-09-26T02:27:35 +06:00", + "latitude": 44.870044, + "longitude": 45.087404, + "tags": [ + "mollit", + "ut", + "do", + "cupidatat", + "quis", + "non", + "sunt" + ], + "friends": [ + { + "id": 0, + "name": "Marie Lynch" + }, + { + "id": 1, + "name": "Bird Mills" + }, + { + "id": 2, + "name": "Cathy Mccarthy" + } + ], + "greeting": "Hello, Colette Holcomb! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217ed8efd98e9b33156", + "index": 150, + "guid": "508c613f-823a-4db1-adf9-2b4f8e6385f8", + "isActive": true, + "balance": "$3,742.11", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Maureen Reese", + "gender": "female", + "company": "KRAGGLE", + "email": "maureenreese@kraggle.com", + "phone": "+1 (815) 438-2440", + "address": "550 Woodside Avenue, Kula, District Of Columbia, 8768", + "about": "Fugiat velit amet reprehenderit duis tempor pariatur eu magna. Do ut tempor veniam elit commodo anim laborum eu qui. Excepteur eiusmod esse sit consequat ad id qui ad.\r\n", + "registered": "2017-09-07T04:04:02 +06:00", + "latitude": -71.202216, + "longitude": 108.206125, + "tags": [ + "cillum", + "elit", + "do", + "minim", + "laboris", + "cupidatat", + "magna" + ], + "friends": [ + { + "id": 0, + "name": "Georgia Duncan" + }, + { + "id": 1, + "name": "Hazel Pittman" + }, + { + "id": 2, + "name": "Stone Mckay" + } + ], + "greeting": "Hello, Maureen Reese! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217844894695989aec5", + "index": 151, + "guid": "de289dc3-394c-4166-9699-3a8ccefc34a6", + "isActive": false, + "balance": "$1,102.67", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "blue", + "name": "Terry Richard", + "gender": "female", + "company": "URBANSHEE", + "email": "terryrichard@urbanshee.com", + "phone": "+1 (967) 400-2572", + "address": "542 Newkirk Avenue, Hanover, Virgin Islands, 6025", + "about": "Officia aute dolor esse dolore laboris quis. Deserunt cillum dolore aliqua cillum ut in deserunt est ut. Enim irure laborum eu est cupidatat ex consequat esse cupidatat do. Occaecat laborum cupidatat ex id minim ea ullamco id dolor irure. Est anim dolor eiusmod proident. Sint aliquip est adipisicing ad et eiusmod consequat est aliquip nisi commodo adipisicing dolor cillum.\r\n", + "registered": "2016-08-27T01:48:15 +06:00", + "latitude": -29.822557, + "longitude": -42.972565, + "tags": [ + "eu", + "duis", + "cillum", + "eiusmod", + "aliquip", + "dolor", + "in" + ], + "friends": [ + { + "id": 0, + "name": "Marsha Frye" + }, + { + "id": 1, + "name": "Oneal Knox" + }, + { + "id": 2, + "name": "Margarita Carlson" + } + ], + "greeting": "Hello, Terry Richard! You have 2 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302173065ba9bef692400", + "index": 152, + "guid": "2578a28b-e226-4a5f-b8bd-1447c45dd72b", + "isActive": true, + "balance": "$3,245.67", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "brown", + "name": "Kelley Mayer", + "gender": "female", + "company": "SKYPLEX", + "email": "kelleymayer@skyplex.com", + "phone": "+1 (964) 457-2564", + "address": "108 Dupont Street, Logan, South Dakota, 5118", + "about": "Velit exercitation incididunt eu deserunt aliqua Lorem consectetur anim voluptate. Culpa reprehenderit non qui in quis consectetur laboris sunt mollit ex pariatur dolor eiusmod. Cupidatat veniam nostrud non tempor eu non tempor. Fugiat sint dolore cupidatat anim officia dolore cillum aliqua ullamco qui ullamco ex. Occaecat laboris duis ea aliqua ut. Nostrud nulla voluptate veniam consectetur.\r\n", + "registered": "2017-02-09T07:53:28 +07:00", + "latitude": 4.095219, + "longitude": 24.429786, + "tags": [ + "cillum", + "cupidatat", + "laboris", + "commodo", + "aliquip", + "eiusmod", + "sint" + ], + "friends": [ + { + "id": 0, + "name": "Buckner Russo" + }, + { + "id": 1, + "name": "Latasha Clay" + }, + { + "id": 2, + "name": "Alana Juarez" + } + ], + "greeting": "Hello, Kelley Mayer! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217babfe92bcd836ebb", + "index": 153, + "guid": "4bde20eb-508f-4e83-b0fb-1ad6ac0e7c90", + "isActive": false, + "balance": "$1,809.39", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "blue", + "name": "Michael Guerrero", + "gender": "male", + "company": "CENTREGY", + "email": "michaelguerrero@centregy.com", + "phone": "+1 (982) 433-2784", + "address": "450 Sedgwick Street, Sanford, Virginia, 676", + "about": "Anim ipsum consequat exercitation ex eu sunt consequat fugiat. Mollit mollit officia id magna veniam Lorem laborum ipsum in. Officia proident eiusmod exercitation reprehenderit cupidatat sunt pariatur mollit irure cupidatat magna culpa. Est nostrud qui tempor velit duis ad ut. Laboris nulla est est veniam fugiat ipsum mollit excepteur enim in pariatur mollit reprehenderit.\r\n", + "registered": "2017-05-24T10:12:46 +06:00", + "latitude": 80.170649, + "longitude": -19.42405, + "tags": [ + "elit", + "eiusmod", + "est", + "laborum", + "minim", + "in", + "amet" + ], + "friends": [ + { + "id": 0, + "name": "Gina Cervantes" + }, + { + "id": 1, + "name": "Mckinney Porter" + }, + { + "id": 2, + "name": "Patty Thornton" + } + ], + "greeting": "Hello, Michael Guerrero! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217a358399253ec9900", + "index": 154, + "guid": "2a3f3118-c19d-49d8-943c-d515bc7aec75", + "isActive": true, + "balance": "$2,455.56", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "green", + "name": "Tara Carter", + "gender": "female", + "company": "ZILLIDIUM", + "email": "taracarter@zillidium.com", + "phone": "+1 (899) 471-3471", + "address": "504 Whitty Lane, Stewart, Michigan, 5694", + "about": "Aliquip do cupidatat ad veniam consectetur. Officia est adipisicing ullamco nisi esse sint id aliquip. Reprehenderit duis laborum eiusmod Lorem velit. Exercitation fugiat occaecat non sunt irure ex. Amet incididunt velit duis cupidatat. Mollit quis consequat laborum tempor occaecat nulla.\r\n", + "registered": "2017-11-02T12:06:37 +06:00", + "latitude": -25.313296, + "longitude": 131.050871, + "tags": [ + "sit", + "voluptate", + "magna", + "magna", + "nostrud", + "anim", + "ullamco" + ], + "friends": [ + { + "id": 0, + "name": "Dillard Stafford" + }, + { + "id": 1, + "name": "Chandra Foley" + }, + { + "id": 2, + "name": "Leticia Gates" + } + ], + "greeting": "Hello, Tara Carter! You have 2 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302179bf54e7cabf97f58", + "index": 155, + "guid": "9c342a3a-ec8e-4187-91be-8366c5011b09", + "isActive": true, + "balance": "$3,172.95", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "green", + "name": "Buck Gould", + "gender": "male", + "company": "LYRICHORD", + "email": "buckgould@lyrichord.com", + "phone": "+1 (942) 459-2292", + "address": "261 Will Place, Crumpler, Northern Mariana Islands, 1829", + "about": "Quis cupidatat pariatur do cupidatat ex nulla labore excepteur qui commodo cillum. Velit est dolor cupidatat sint sint do incididunt sit reprehenderit duis Lorem consectetur velit. Eu excepteur ex labore id cupidatat consequat fugiat incididunt anim do irure in sunt.\r\n", + "registered": "2017-12-16T09:06:50 +07:00", + "latitude": -87.046824, + "longitude": 23.70728, + "tags": [ + "ut", + "nisi", + "exercitation", + "reprehenderit", + "non", + "tempor", + "amet" + ], + "friends": [ + { + "id": 0, + "name": "Charlene Shelton" + }, + { + "id": 1, + "name": "Tabitha Charles" + }, + { + "id": 2, + "name": "Petersen Baird" + } + ], + "greeting": "Hello, Buck Gould! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302174f671933ab2b1a0f", + "index": 156, + "guid": "769b7990-ed02-4df5-9a48-9a6db4c3dcc3", + "isActive": true, + "balance": "$1,599.08", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "green", + "name": "Ramos Forbes", + "gender": "male", + "company": "NETERIA", + "email": "ramosforbes@neteria.com", + "phone": "+1 (891) 404-3054", + "address": "486 Allen Avenue, Moscow, Illinois, 4498", + "about": "Consequat dolor nisi cillum cillum est reprehenderit ullamco sit commodo aliqua ut. Eu dolore reprehenderit ea cupidatat Lorem tempor qui. Duis irure eiusmod nostrud duis officia nisi adipisicing dolor nisi deserunt amet aliqua incididunt aliqua. Magna sit irure proident anim. Deserunt nostrud nulla ea laboris ex aute fugiat. Dolor ullamco fugiat elit dolor sit qui dolor.\r\n", + "registered": "2015-07-21T11:05:25 +06:00", + "latitude": 6.435667, + "longitude": 151.879731, + "tags": [ + "fugiat", + "id", + "cupidatat", + "commodo", + "consectetur", + "id", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Moran Garza" + }, + { + "id": 1, + "name": "Josefa Skinner" + }, + { + "id": 2, + "name": "Isabel Doyle" + } + ], + "greeting": "Hello, Ramos Forbes! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021768b6e425b66e3d9c", + "index": 157, + "guid": "597cfca0-7f8b-4dde-b1db-b48e7dde01eb", + "isActive": false, + "balance": "$1,570.09", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "green", + "name": "Leonor Trujillo", + "gender": "female", + "company": "EQUITAX", + "email": "leonortrujillo@equitax.com", + "phone": "+1 (892) 600-2492", + "address": "507 Maple Avenue, Baker, Wisconsin, 9014", + "about": "Sit velit Lorem nisi qui incididunt eiusmod quis quis tempor commodo non ut minim. Do quis anim sit ipsum amet et consequat consectetur nostrud deserunt veniam qui. Nostrud minim sint nisi quis fugiat deserunt occaecat aliquip sit. Nulla cillum esse pariatur qui sunt fugiat nisi Lorem id nulla pariatur eiusmod fugiat. Deserunt dolore consectetur esse nostrud laboris veniam mollit ex dolore sunt ullamco irure.\r\n", + "registered": "2014-06-13T04:49:14 +06:00", + "latitude": -60.336785, + "longitude": 37.465376, + "tags": [ + "ad", + "enim", + "deserunt", + "est", + "Lorem", + "dolore", + "nulla" + ], + "friends": [ + { + "id": 0, + "name": "Roxie Garrett" + }, + { + "id": 1, + "name": "Fulton Heath" + }, + { + "id": 2, + "name": "Ladonna Hughes" + } + ], + "greeting": "Hello, Leonor Trujillo! You have 1 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217587f573c65689575", + "index": 158, + "guid": "204d1f49-5a7e-4a0b-945d-7d7d7ce7a57f", + "isActive": true, + "balance": "$1,660.90", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "green", + "name": "Blackburn Davis", + "gender": "male", + "company": "PLASMOX", + "email": "blackburndavis@plasmox.com", + "phone": "+1 (821) 547-3013", + "address": "437 Hewes Street, Allensworth, Idaho, 2214", + "about": "Nostrud anim pariatur reprehenderit nostrud qui esse labore. Anim consectetur voluptate incididunt dolore. Ullamco nulla amet ad ipsum cupidatat adipisicing. Mollit amet sit laborum laboris ea irure.\r\n", + "registered": "2017-11-17T02:36:08 +07:00", + "latitude": 70.677992, + "longitude": -81.670029, + "tags": [ + "irure", + "amet", + "do", + "non", + "cupidatat", + "incididunt", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Gomez Barber" + }, + { + "id": 1, + "name": "Bean Mcneil" + }, + { + "id": 2, + "name": "Allison Mays" + } + ], + "greeting": "Hello, Blackburn Davis! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217a89c25c1b1506ce7", + "index": 159, + "guid": "e6f0e5ab-cf38-40fc-bbb4-2f45267457e5", + "isActive": true, + "balance": "$2,681.82", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "green", + "name": "Haney Moreno", + "gender": "male", + "company": "OATFARM", + "email": "haneymoreno@oatfarm.com", + "phone": "+1 (856) 412-2304", + "address": "773 Homecrest Avenue, Kidder, New Hampshire, 409", + "about": "Nulla proident deserunt amet irure sint voluptate ea aute sunt duis. Ea cupidatat culpa anim nulla do excepteur consectetur eiusmod consequat voluptate. Veniam est mollit fugiat proident et irure mollit quis nulla id ipsum eiusmod. Officia duis commodo proident laboris aliqua fugiat esse. Cillum ullamco ea nulla exercitation sit enim proident nulla duis. Est laborum et officia Lorem.\r\n", + "registered": "2015-09-23T01:38:18 +06:00", + "latitude": -12.528011, + "longitude": 62.804124, + "tags": [ + "sunt", + "ad", + "et", + "labore", + "ullamco", + "fugiat", + "adipisicing" + ], + "friends": [ + { + "id": 0, + "name": "James Hood" + }, + { + "id": 1, + "name": "Paige Harvey" + }, + { + "id": 2, + "name": "Cooper Perez" + } + ], + "greeting": "Hello, Haney Moreno! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217a86323f286757246", + "index": 160, + "guid": "87cd798a-108f-4a68-aaac-35c1c2d6e000", + "isActive": true, + "balance": "$2,507.33", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "brown", + "name": "Chelsea Atkinson", + "gender": "female", + "company": "FLEXIGEN", + "email": "chelseaatkinson@flexigen.com", + "phone": "+1 (911) 598-2699", + "address": "831 Suydam Place, Whitestone, South Carolina, 9569", + "about": "Esse nisi est Lorem esse incididunt. Proident laboris occaecat amet fugiat cillum proident aliqua aliquip nisi velit commodo eu voluptate. Proident officia ea proident nulla.\r\n", + "registered": "2017-07-01T01:18:37 +06:00", + "latitude": 0.631594, + "longitude": -84.984423, + "tags": [ + "reprehenderit", + "minim", + "non", + "enim", + "ea", + "occaecat", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Andrea Conway" + }, + { + "id": 1, + "name": "Louisa Albert" + }, + { + "id": 2, + "name": "Sofia Stokes" + } + ], + "greeting": "Hello, Chelsea Atkinson! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302170fd6604d4ca1fd3f", + "index": 161, + "guid": "75e4cb34-36d0-4194-9c26-f77e1cc6a130", + "isActive": false, + "balance": "$3,899.23", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "brown", + "name": "Sallie Wagner", + "gender": "female", + "company": "CUBIX", + "email": "salliewagner@cubix.com", + "phone": "+1 (991) 477-2786", + "address": "829 Columbus Place, Kerby, Iowa, 8500", + "about": "Elit labore aute commodo Lorem ipsum ipsum minim. Mollit ea sint dolor anim eu laboris cupidatat sit mollit nulla dolor. Nulla Lorem duis sit ad ipsum aliquip labore aute cupidatat eiusmod. Ullamco adipisicing officia elit magna aliquip tempor. In aliqua ipsum nostrud occaecat pariatur in officia cupidatat. Consequat deserunt veniam ullamco duis dolor velit proident sit nisi laboris.\r\n", + "registered": "2017-05-05T07:44:36 +06:00", + "latitude": 4.27185, + "longitude": 123.175662, + "tags": [ + "consequat", + "cillum", + "voluptate", + "nostrud", + "cillum", + "excepteur", + "dolore" + ], + "friends": [ + { + "id": 0, + "name": "Saunders Pearson" + }, + { + "id": 1, + "name": "Calderon Leblanc" + }, + { + "id": 2, + "name": "Valarie Perkins" + } + ], + "greeting": "Hello, Sallie Wagner! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217d2d72e8397cf5fe2", + "index": 162, + "guid": "90a4f1ea-236d-4eed-95fa-8d77de96e2e4", + "isActive": false, + "balance": "$1,349.29", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "blue", + "name": "Elaine Kramer", + "gender": "female", + "company": "COMVEY", + "email": "elainekramer@comvey.com", + "phone": "+1 (993) 476-2155", + "address": "651 Congress Street, Mathews, California, 533", + "about": "Ex veniam nisi consequat aute sint laboris sit tempor ullamco anim consectetur culpa. Deserunt eiusmod ex commodo minim irure ex amet nisi enim enim ex nostrud cupidatat. Est reprehenderit quis nisi labore veniam id Lorem qui. Ullamco reprehenderit anim consectetur veniam pariatur deserunt laborum do et commodo culpa id et. Et irure elit ipsum laborum nulla exercitation culpa excepteur esse. Esse dolore anim pariatur dolore veniam exercitation ea.\r\n", + "registered": "2014-02-06T01:13:29 +07:00", + "latitude": 5.970128, + "longitude": 62.623005, + "tags": [ + "aliqua", + "consectetur", + "enim", + "officia", + "nostrud", + "sit", + "ullamco" + ], + "friends": [ + { + "id": 0, + "name": "Chase Gutierrez" + }, + { + "id": 1, + "name": "Jennifer Ayala" + }, + { + "id": 2, + "name": "Sherry Wilcox" + } + ], + "greeting": "Hello, Elaine Kramer! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217d843bc45476c0eb8", + "index": 163, + "guid": "cd5e3708-1ad5-43db-a16c-bddfaf95b493", + "isActive": true, + "balance": "$3,588.93", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "brown", + "name": "Hester Bradley", + "gender": "female", + "company": "FURNITECH", + "email": "hesterbradley@furnitech.com", + "phone": "+1 (926) 403-2067", + "address": "688 Rutland Road, Churchill, Wyoming, 7980", + "about": "Enim id amet id pariatur proident. Anim nulla laboris eu cillum sit anim amet excepteur amet reprehenderit ullamco incididunt esse magna. Tempor cupidatat proident excepteur esse adipisicing mollit do. Pariatur velit mollit eu aliquip ipsum labore aliqua incididunt. Et excepteur nisi culpa proident ut mollit nulla non commodo eiusmod occaecat laboris consequat. Nulla anim et non do laborum cupidatat in.\r\n", + "registered": "2018-02-03T07:59:03 +07:00", + "latitude": 74.551004, + "longitude": 175.885196, + "tags": [ + "ea", + "laborum", + "exercitation", + "aute", + "cillum", + "proident", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Shaffer Joyce" + }, + { + "id": 1, + "name": "Luisa Leonard" + }, + { + "id": 2, + "name": "Finley Gillespie" + } + ], + "greeting": "Hello, Hester Bradley! You have 2 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021726335d218593ad49", + "index": 164, + "guid": "b46129d6-f81d-4873-a999-1a2fd90aa9ec", + "isActive": false, + "balance": "$2,309.88", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "brown", + "name": "Coleen Villarreal", + "gender": "female", + "company": "EXOSPACE", + "email": "coleenvillarreal@exospace.com", + "phone": "+1 (848) 586-3948", + "address": "946 Hancock Street, Rote, Maryland, 6580", + "about": "Commodo incididunt aliquip in qui eu duis anim ea dolor ex incididunt. Laborum esse officia aute mollit veniam minim cillum cupidatat sit. Mollit quis exercitation do officia cupidatat nostrud laboris est eu in cupidatat. Quis excepteur laboris et in labore ullamco consequat consectetur ullamco nostrud id occaecat consectetur. Quis consectetur ad elit consequat consectetur labore. Nulla deserunt incididunt esse ad. Aute occaecat culpa dolor pariatur.\r\n", + "registered": "2014-11-02T07:12:39 +07:00", + "latitude": 28.470324, + "longitude": 130.854749, + "tags": [ + "ea", + "amet", + "irure", + "pariatur", + "non", + "proident", + "consectetur" + ], + "friends": [ + { + "id": 0, + "name": "Elvia Miles" + }, + { + "id": 1, + "name": "Kelsey Franks" + }, + { + "id": 2, + "name": "Sybil Evans" + } + ], + "greeting": "Hello, Coleen Villarreal! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217e51dff3a06c28d7d", + "index": 165, + "guid": "ca84b328-a621-449c-88eb-67818275f26a", + "isActive": false, + "balance": "$1,812.14", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "brown", + "name": "Jacklyn Rosa", + "gender": "female", + "company": "NIPAZ", + "email": "jacklynrosa@nipaz.com", + "phone": "+1 (966) 598-3377", + "address": "510 Schroeders Avenue, Stollings, Louisiana, 1242", + "about": "Incididunt eu eu aliqua minim duis Lorem laboris do minim. Aute sint adipisicing laboris irure in. Exercitation amet aliqua reprehenderit incididunt nulla eiusmod eu cillum exercitation in amet pariatur laboris commodo. Enim laborum sint officia enim non Lorem dolor ea ex magna nisi nisi anim culpa. Est magna cillum exercitation voluptate nostrud enim labore sunt ad velit aliqua. Tempor qui deserunt mollit sint.\r\n", + "registered": "2015-08-31T01:19:15 +06:00", + "latitude": 63.158827, + "longitude": -90.224317, + "tags": [ + "amet", + "ea", + "ipsum", + "eu", + "irure", + "magna", + "nisi" + ], + "friends": [ + { + "id": 0, + "name": "Mccall Hernandez" + }, + { + "id": 1, + "name": "Jackson Salinas" + }, + { + "id": 2, + "name": "Arlene Aguirre" + } + ], + "greeting": "Hello, Jacklyn Rosa! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302176c330f6a4b65c74a", + "index": 166, + "guid": "ee8cfcdb-1dd0-4ce8-b659-09ab70c140b7", + "isActive": false, + "balance": "$3,700.56", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "brown", + "name": "Annabelle Pugh", + "gender": "female", + "company": "GENMY", + "email": "annabellepugh@genmy.com", + "phone": "+1 (803) 482-3135", + "address": "299 Fayette Street, Cannondale, Federated States Of Micronesia, 5373", + "about": "Labore id excepteur velit cupidatat reprehenderit nostrud. Veniam sit voluptate veniam ipsum minim. Esse quis nostrud aute commodo in anim amet officia dolor. Adipisicing sint consequat exercitation dolore non consequat. Veniam eiusmod ad nulla reprehenderit deserunt tempor ut est sint. Velit et sunt est dolor eiusmod nisi irure. Commodo amet enim Lorem deserunt non amet sunt ut cupidatat occaecat do nisi sint excepteur.\r\n", + "registered": "2014-05-02T04:19:37 +06:00", + "latitude": -57.617251, + "longitude": 168.412894, + "tags": [ + "consequat", + "culpa", + "mollit", + "velit", + "incididunt", + "dolore", + "sit" + ], + "friends": [ + { + "id": 0, + "name": "Norris House" + }, + { + "id": 1, + "name": "Bernadette Hutchinson" + }, + { + "id": 2, + "name": "Deirdre Levine" + } + ], + "greeting": "Hello, Annabelle Pugh! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217d16e757020085f4a", + "index": 167, + "guid": "0f2ada8d-bd64-46a1-a6a7-d1e7683bef11", + "isActive": false, + "balance": "$2,112.60", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "brown", + "name": "Maura Reilly", + "gender": "female", + "company": "HONOTRON", + "email": "maurareilly@honotron.com", + "phone": "+1 (846) 566-2047", + "address": "154 Eastern Parkway, Greensburg, Pennsylvania, 9454", + "about": "Aute minim deserunt duis deserunt reprehenderit elit aliqua commodo est deserunt. Incididunt non culpa enim mollit et sit fugiat sunt labore. Culpa esse cillum aute officia do veniam tempor ea deserunt eiusmod culpa sit proident. Culpa laboris elit qui nulla proident commodo aliquip ut veniam duis ad cillum incididunt. Occaecat qui fugiat qui minim. Nostrud proident ex ut dolor quis officia aliqua nisi dolor. Labore velit cupidatat ipsum voluptate elit ut eu magna ullamco mollit.\r\n", + "registered": "2018-02-03T01:52:21 +07:00", + "latitude": 15.547388, + "longitude": 154.815616, + "tags": [ + "laboris", + "excepteur", + "ipsum", + "ex", + "veniam", + "eiusmod", + "id" + ], + "friends": [ + { + "id": 0, + "name": "Audrey Stark" + }, + { + "id": 1, + "name": "Ophelia Melendez" + }, + { + "id": 2, + "name": "Bernadine Reeves" + } + ], + "greeting": "Hello, Maura Reilly! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217eee0d85aa8562bfa", + "index": 168, + "guid": "533e17ca-ef05-4a62-8d74-01cd68ee45bf", + "isActive": true, + "balance": "$3,783.69", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "brown", + "name": "Ingrid Simmons", + "gender": "female", + "company": "EXOSIS", + "email": "ingridsimmons@exosis.com", + "phone": "+1 (835) 539-2130", + "address": "457 Lawrence Avenue, Cazadero, Vermont, 4629", + "about": "Aliqua pariatur minim ex ad commodo in exercitation et amet ad. Adipisicing irure duis consequat ea. Occaecat dolore ex occaecat sint nostrud enim irure in labore aute eiusmod ad.\r\n", + "registered": "2014-02-18T10:17:16 +07:00", + "latitude": -87.217993, + "longitude": -138.939721, + "tags": [ + "dolore", + "non", + "ex", + "officia", + "velit", + "ut", + "ex" + ], + "friends": [ + { + "id": 0, + "name": "Shawn Jarvis" + }, + { + "id": 1, + "name": "Hendrix Mcleod" + }, + { + "id": 2, + "name": "Rowland Kim" + } + ], + "greeting": "Hello, Ingrid Simmons! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302171b3a311124a1f2c7", + "index": 169, + "guid": "b965fa3a-2e7a-49b2-996a-3741d62734a4", + "isActive": false, + "balance": "$1,578.93", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "brown", + "name": "Catherine Lowery", + "gender": "female", + "company": "BOILICON", + "email": "catherinelowery@boilicon.com", + "phone": "+1 (905) 512-2258", + "address": "733 Rose Street, Clay, Maine, 901", + "about": "Ut aute esse minim voluptate aliqua proident quis deserunt. Pariatur culpa deserunt velit Lorem qui incididunt qui sunt. Do consequat anim enim officia. Irure mollit proident incididunt Lorem sunt et laboris fugiat occaecat laborum quis ad proident. Eu exercitation sunt dolor nostrud mollit pariatur. Commodo dolore cillum ullamco occaecat aliquip eu non nisi commodo deserunt.\r\n", + "registered": "2014-09-15T08:26:55 +06:00", + "latitude": -21.145284, + "longitude": 59.697145, + "tags": [ + "in", + "et", + "nulla", + "dolor", + "elit", + "velit", + "adipisicing" + ], + "friends": [ + { + "id": 0, + "name": "Hebert Vasquez" + }, + { + "id": 1, + "name": "Angelia Wolf" + }, + { + "id": 2, + "name": "Jensen Horn" + } + ], + "greeting": "Hello, Catherine Lowery! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021770d3d518fcce9254", + "index": 170, + "guid": "3e3d5a2f-016c-4818-83e5-11e1e42cd9a8", + "isActive": true, + "balance": "$2,494.91", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "brown", + "name": "Gwendolyn Mcconnell", + "gender": "female", + "company": "SUNCLIPSE", + "email": "gwendolynmcconnell@sunclipse.com", + "phone": "+1 (920) 438-3553", + "address": "105 Pitkin Avenue, Chamberino, Alaska, 5077", + "about": "Do quis consectetur esse eu sunt do nulla commodo voluptate ad. Proident incididunt id laborum ut consequat minim. Occaecat eiusmod adipisicing esse voluptate minim eiusmod consectetur nisi qui laboris deserunt amet. Adipisicing mollit Lorem velit ut cillum eu proident velit velit sunt nostrud tempor. Ad quis cillum eiusmod labore laboris in laboris velit magna. Occaecat eu ex quis aliqua nisi pariatur officia aute qui.\r\n", + "registered": "2014-12-20T02:29:01 +07:00", + "latitude": -17.831391, + "longitude": -59.984101, + "tags": [ + "culpa", + "proident", + "adipisicing", + "esse", + "ipsum", + "enim", + "in" + ], + "friends": [ + { + "id": 0, + "name": "Beryl Walter" + }, + { + "id": 1, + "name": "Hale Chavez" + }, + { + "id": 2, + "name": "Allen Rivera" + } + ], + "greeting": "Hello, Gwendolyn Mcconnell! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217e798469b79c10dbc", + "index": 171, + "guid": "b63fcae3-bdc8-4b48-8948-05374f421d21", + "isActive": true, + "balance": "$3,725.62", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "brown", + "name": "Traci Oliver", + "gender": "female", + "company": "EMOLTRA", + "email": "tracioliver@emoltra.com", + "phone": "+1 (944) 408-3969", + "address": "116 Auburn Place, Cuylerville, Palau, 8704", + "about": "Id commodo mollit anim aliqua. Ea dolor minim mollit veniam veniam id ut ut cillum. Minim reprehenderit ea aliqua aute aute.\r\n", + "registered": "2017-10-02T10:24:29 +06:00", + "latitude": 7.595152, + "longitude": 157.003542, + "tags": [ + "cupidatat", + "proident", + "est", + "id", + "nisi", + "Lorem", + "non" + ], + "friends": [ + { + "id": 0, + "name": "Mooney Dunn" + }, + { + "id": 1, + "name": "Walsh Dixon" + }, + { + "id": 2, + "name": "Kaitlin Mcdaniel" + } + ], + "greeting": "Hello, Traci Oliver! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217a22abb132b700df5", + "index": 172, + "guid": "ff26bd2b-90ca-476d-8852-00dde394449c", + "isActive": false, + "balance": "$3,670.40", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "green", + "name": "Cheryl Hanson", + "gender": "female", + "company": "ZUVY", + "email": "cherylhanson@zuvy.com", + "phone": "+1 (821) 549-2902", + "address": "104 Newkirk Placez, Nash, Arkansas, 7661", + "about": "Amet id do adipisicing laboris nulla cupidatat eu est aute et reprehenderit dolore laboris mollit. Deserunt cillum do exercitation qui nulla. Sunt deserunt exercitation labore laboris aliqua aliquip dolor ex non nulla. Sunt occaecat velit cillum reprehenderit officia.\r\n", + "registered": "2016-12-24T01:58:56 +07:00", + "latitude": 52.912755, + "longitude": 4.181067, + "tags": [ + "elit", + "amet", + "officia", + "aliquip", + "voluptate", + "culpa", + "est" + ], + "friends": [ + { + "id": 0, + "name": "Melton Whitaker" + }, + { + "id": 1, + "name": "Hamilton Hooper" + }, + { + "id": 2, + "name": "Burks Hoffman" + } + ], + "greeting": "Hello, Cheryl Hanson! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217275af81ac70c207a", + "index": 173, + "guid": "7f6b8940-65af-4b60-9803-662f8753fc22", + "isActive": true, + "balance": "$3,771.66", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "green", + "name": "Ines Hewitt", + "gender": "female", + "company": "INSURITY", + "email": "ineshewitt@insurity.com", + "phone": "+1 (995) 478-3072", + "address": "583 Gatling Place, Marenisco, Florida, 8265", + "about": "Nisi tempor occaecat ipsum pariatur consequat proident eu est dolor laborum Lorem. Qui minim sint pariatur quis enim do culpa magna elit consequat sunt laborum ea excepteur. Eu proident id Lorem sint veniam. Non sint commodo reprehenderit est ipsum fugiat qui non nostrud eiusmod quis Lorem irure. Ad consequat laborum ea veniam dolor minim non sit mollit sunt. Esse ea reprehenderit culpa aliquip est quis anim mollit cupidatat dolor voluptate exercitation elit pariatur. Id amet deserunt aliquip adipisicing est pariatur et velit laborum eu occaecat ullamco proident.\r\n", + "registered": "2017-02-20T09:57:47 +07:00", + "latitude": 60.924192, + "longitude": -40.198041, + "tags": [ + "nisi", + "reprehenderit", + "mollit", + "ad", + "reprehenderit", + "elit", + "culpa" + ], + "friends": [ + { + "id": 0, + "name": "Margo Dalton" + }, + { + "id": 1, + "name": "Mandy Guthrie" + }, + { + "id": 2, + "name": "Garrison Kane" + } + ], + "greeting": "Hello, Ines Hewitt! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021736ba080598dbc5a9", + "index": 174, + "guid": "c47605ab-1b46-484b-bf16-dc7fb25b276f", + "isActive": true, + "balance": "$2,819.98", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "brown", + "name": "Geraldine Boyer", + "gender": "female", + "company": "RETROTEX", + "email": "geraldineboyer@retrotex.com", + "phone": "+1 (934) 467-2325", + "address": "237 Dikeman Street, Springhill, Puerto Rico, 2968", + "about": "Reprehenderit sunt esse deserunt proident ea esse eiusmod. Duis magna et ex fugiat voluptate sint. Pariatur consectetur commodo id qui consequat aute. Anim fugiat proident Lorem qui sunt voluptate nisi duis enim enim exercitation veniam.\r\n", + "registered": "2016-10-01T05:46:53 +06:00", + "latitude": -27.254975, + "longitude": 113.534855, + "tags": [ + "culpa", + "incididunt", + "voluptate", + "laboris", + "mollit", + "tempor", + "sunt" + ], + "friends": [ + { + "id": 0, + "name": "Kaye Vaughn" + }, + { + "id": 1, + "name": "Pena Orr" + }, + { + "id": 2, + "name": "Reed Callahan" + } + ], + "greeting": "Hello, Geraldine Boyer! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217a8dd93f3a9af45e8", + "index": 175, + "guid": "78a40b58-5a12-4be3-85dc-6ca76d963141", + "isActive": true, + "balance": "$2,658.65", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "green", + "name": "Virgie Powell", + "gender": "female", + "company": "SYNTAC", + "email": "virgiepowell@syntac.com", + "phone": "+1 (884) 418-2401", + "address": "430 Ditmas Avenue, Echo, Hawaii, 1811", + "about": "Veniam nisi nulla aliquip labore occaecat in duis laborum et ullamco ullamco. Incididunt ad fugiat cupidatat magna nisi cillum cillum anim adipisicing est culpa. Tempor ex incididunt labore commodo incididunt. Pariatur sunt irure nisi ex est do eu culpa ex mollit cupidatat qui proident esse. Do ullamco eiusmod fugiat sit sit aute est anim anim in aliquip Lorem.\r\n", + "registered": "2015-06-23T04:27:17 +06:00", + "latitude": 14.754211, + "longitude": -112.757143, + "tags": [ + "ea", + "exercitation", + "dolor", + "sint", + "elit", + "qui", + "eiusmod" + ], + "friends": [ + { + "id": 0, + "name": "Lori Noble" + }, + { + "id": 1, + "name": "Jennings Knowles" + }, + { + "id": 2, + "name": "Lesley Hubbard" + } + ], + "greeting": "Hello, Virgie Powell! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217efd16d215dc8e4f0", + "index": 176, + "guid": "c92d0c47-41ea-4d3b-80e6-a402159c8c07", + "isActive": true, + "balance": "$3,807.19", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "brown", + "name": "Marcia Faulkner", + "gender": "female", + "company": "SIGNITY", + "email": "marciafaulkner@signity.com", + "phone": "+1 (805) 477-2394", + "address": "296 Brighton Avenue, Hatteras, American Samoa, 925", + "about": "Esse sit consectetur et ut cupidatat nisi deserunt in consequat. Cupidatat dolore ut ad minim incididunt duis culpa ad. Non ad consectetur deserunt occaecat est Lorem id nulla. Adipisicing qui nostrud cillum dolor quis anim eu exercitation incididunt quis nostrud enim in. Est exercitation irure excepteur pariatur exercitation reprehenderit exercitation. Voluptate laboris labore aute Lorem.\r\n", + "registered": "2017-01-01T02:06:57 +07:00", + "latitude": 66.908556, + "longitude": 116.756304, + "tags": [ + "eiusmod", + "qui", + "incididunt", + "commodo", + "eu", + "sint", + "esse" + ], + "friends": [ + { + "id": 0, + "name": "Alexis Ellis" + }, + { + "id": 1, + "name": "Cunningham Dillard" + }, + { + "id": 2, + "name": "Bessie Barnett" + } + ], + "greeting": "Hello, Marcia Faulkner! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217aad3d74e53f429de", + "index": 177, + "guid": "7fb1efb0-3363-472e-b5a0-f127bac72398", + "isActive": true, + "balance": "$1,494.06", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "brown", + "name": "Shelton Savage", + "gender": "male", + "company": "VIAGREAT", + "email": "sheltonsavage@viagreat.com", + "phone": "+1 (905) 528-2024", + "address": "497 Church Lane, Canby, Indiana, 9189", + "about": "Duis mollit consectetur excepteur mollit tempor ex consequat reprehenderit. Commodo veniam ex cupidatat non mollit consectetur labore. Aute qui commodo irure labore voluptate. Ea in laborum aliquip proident eiusmod. Ut do culpa tempor officia minim dolore dolor ad ullamco. Adipisicing nostrud deserunt anim Lorem nostrud non labore esse. Cillum id velit proident et officia in.\r\n", + "registered": "2017-10-28T07:20:05 +06:00", + "latitude": -59.631244, + "longitude": 36.693813, + "tags": [ + "Lorem", + "sint", + "ullamco", + "est", + "nulla", + "ullamco", + "eiusmod" + ], + "friends": [ + { + "id": 0, + "name": "Ellen Chaney" + }, + { + "id": 1, + "name": "Marilyn Palmer" + }, + { + "id": 2, + "name": "Duke Hoover" + } + ], + "greeting": "Hello, Shelton Savage! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217d0c33e087ded99dd", + "index": 178, + "guid": "9d3b32bc-b0ae-4f73-9507-120ab59030f9", + "isActive": true, + "balance": "$1,117.16", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "brown", + "name": "Schroeder Crawford", + "gender": "male", + "company": "PAWNAGRA", + "email": "schroedercrawford@pawnagra.com", + "phone": "+1 (824) 526-3555", + "address": "380 Montauk Court, Jenkinsville, Missouri, 977", + "about": "Consectetur cupidatat cillum nulla amet mollit dolor excepteur incididunt esse aliquip excepteur officia esse proident. Ad in esse in nulla ex culpa. Velit culpa excepteur pariatur commodo Lorem aliqua. Magna labore amet laboris ullamco do exercitation consequat nisi fugiat nostrud tempor elit qui occaecat. Nulla officia dolor sunt id Lorem magna ipsum culpa.\r\n", + "registered": "2014-07-16T06:26:28 +06:00", + "latitude": 29.69001, + "longitude": -41.315769, + "tags": [ + "aute", + "ad", + "qui", + "excepteur", + "ad", + "dolor", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Skinner Whitehead" + }, + { + "id": 1, + "name": "Jacobson Beck" + }, + { + "id": 2, + "name": "Wood Ferrell" + } + ], + "greeting": "Hello, Schroeder Crawford! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021701a5f3c3a6e5e28a", + "index": 179, + "guid": "f2de3924-c1fa-4a6b-9656-a14554976135", + "isActive": false, + "balance": "$1,282.45", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "green", + "name": "Blankenship Madden", + "gender": "male", + "company": "VIRVA", + "email": "blankenshipmadden@virva.com", + "phone": "+1 (938) 598-2092", + "address": "552 Melba Court, Hilltop, Guam, 7170", + "about": "Enim irure laborum velit eu ea amet sunt et sint. Ipsum laborum elit amet laborum. Amet cillum commodo veniam voluptate ex velit do dolor duis minim. Qui amet proident proident cupidatat reprehenderit id tempor ullamco esse dolor. Eiusmod dolore irure laboris id irure fugiat sit id excepteur exercitation magna. Quis voluptate ut est consectetur sit aliquip ipsum culpa reprehenderit consequat laborum velit nulla culpa. Ullamco id nulla aliqua sit ad amet cupidatat quis.\r\n", + "registered": "2017-11-17T05:01:12 +07:00", + "latitude": 63.094187, + "longitude": -91.943275, + "tags": [ + "ipsum", + "adipisicing", + "sunt", + "velit", + "labore", + "aute", + "sunt" + ], + "friends": [ + { + "id": 0, + "name": "Cobb Munoz" + }, + { + "id": 1, + "name": "Celeste Quinn" + }, + { + "id": 2, + "name": "Rogers Ballard" + } + ], + "greeting": "Hello, Blankenship Madden! You have 2 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217d59605a592782993", + "index": 180, + "guid": "9fc58e58-4fe3-4627-ab22-a389ba0ff2d4", + "isActive": true, + "balance": "$3,826.49", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "brown", + "name": "Harrison Jacobs", + "gender": "male", + "company": "ARTWORLDS", + "email": "harrisonjacobs@artworlds.com", + "phone": "+1 (911) 470-3644", + "address": "174 Moore Street, Linganore, Minnesota, 1914", + "about": "Aliqua nisi officia reprehenderit aliqua tempor sunt labore sit ex. Qui nisi consectetur amet ea labore ea duis non commodo. Adipisicing velit Lorem incididunt ad excepteur aliquip sit esse proident dolore commodo officia ullamco veniam. Proident voluptate ullamco cupidatat sunt laboris consequat adipisicing mollit est minim reprehenderit ipsum sint deserunt. Enim aliqua incididunt et et cillum adipisicing sunt est laborum nisi aliqua exercitation aliqua cillum.\r\n", + "registered": "2016-08-15T08:52:28 +06:00", + "latitude": 55.336937, + "longitude": 109.158091, + "tags": [ + "ad", + "anim", + "anim", + "laboris", + "aute", + "id", + "qui" + ], + "friends": [ + { + "id": 0, + "name": "Gonzales Campos" + }, + { + "id": 1, + "name": "Wilkinson Montoya" + }, + { + "id": 2, + "name": "Rios Powers" + } + ], + "greeting": "Hello, Harrison Jacobs! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217853fe2993656daab", + "index": 181, + "guid": "0a235734-397e-47f1-982a-1e06f9a79572", + "isActive": true, + "balance": "$1,981.91", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "blue", + "name": "Wendi Morgan", + "gender": "female", + "company": "MIRACULA", + "email": "wendimorgan@miracula.com", + "phone": "+1 (965) 412-2004", + "address": "165 Gotham Avenue, Rockbridge, Delaware, 353", + "about": "Dolore non esse do magna nulla Lorem do. In consectetur culpa consectetur enim fugiat occaecat exercitation nostrud aliqua anim. Amet aliqua mollit quis duis ut est adipisicing adipisicing tempor. Et aliqua tempor sunt sit culpa ea eu eu fugiat cupidatat. Elit velit ipsum officia veniam ea fugiat dolore nisi velit id voluptate in. Velit eiusmod in veniam qui.\r\n", + "registered": "2016-12-06T07:50:13 +07:00", + "latitude": -2.376534, + "longitude": 73.662476, + "tags": [ + "qui", + "tempor", + "quis", + "eu", + "adipisicing", + "sit", + "tempor" + ], + "friends": [ + { + "id": 0, + "name": "Julie Bullock" + }, + { + "id": 1, + "name": "Britt Pace" + }, + { + "id": 2, + "name": "Joanne Allen" + } + ], + "greeting": "Hello, Wendi Morgan! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021738df3e8ddea4e221", + "index": 182, + "guid": "062c3293-1504-4078-a3df-9255699ad54d", + "isActive": true, + "balance": "$2,081.95", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "blue", + "name": "Tate Holden", + "gender": "male", + "company": "QABOOS", + "email": "tateholden@qaboos.com", + "phone": "+1 (956) 531-3271", + "address": "431 Beach Place, Calpine, Kansas, 1038", + "about": "Id ex nulla commodo cupidatat voluptate et magna laborum sint in. Consequat fugiat ad Lorem adipisicing nulla. In proident deserunt proident ullamco deserunt ea enim proident esse ea non elit. Mollit laboris tempor aute velit dolor.\r\n", + "registered": "2014-07-01T12:22:24 +06:00", + "latitude": -12.052074, + "longitude": 102.089839, + "tags": [ + "ipsum", + "anim", + "Lorem", + "est", + "est", + "reprehenderit", + "nostrud" + ], + "friends": [ + { + "id": 0, + "name": "Barnes Hyde" + }, + { + "id": 1, + "name": "Grant Leon" + }, + { + "id": 2, + "name": "Ginger Pennington" + } + ], + "greeting": "Hello, Tate Holden! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217f100ec86791e4a9e", + "index": 183, + "guid": "5e4cfe6d-090c-4fca-8267-f169ee889c1f", + "isActive": true, + "balance": "$3,744.20", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "green", + "name": "Mccarty Banks", + "gender": "male", + "company": "DREAMIA", + "email": "mccartybanks@dreamia.com", + "phone": "+1 (835) 450-2600", + "address": "701 Furman Street, Hendersonville, Washington, 1441", + "about": "Dolor magna fugiat ipsum minim aliquip. Nulla cillum excepteur velit eiusmod et veniam sit adipisicing est mollit. Mollit ullamco ut nulla adipisicing cupidatat nisi deserunt voluptate. Sint pariatur non tempor ullamco incididunt magna pariatur id ex irure ullamco. Quis et pariatur nostrud commodo id reprehenderit reprehenderit eu.\r\n", + "registered": "2014-01-02T12:25:09 +07:00", + "latitude": -28.346975, + "longitude": 109.774684, + "tags": [ + "deserunt", + "proident", + "consectetur", + "ea", + "voluptate", + "veniam", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Gallagher Cunningham" + }, + { + "id": 1, + "name": "Ayers Wooten" + }, + { + "id": 2, + "name": "Castaneda Goodwin" + } + ], + "greeting": "Hello, Mccarty Banks! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021723594671232b9b75", + "index": 184, + "guid": "ebb413a0-091b-4b1a-b128-ce4976cf07db", + "isActive": true, + "balance": "$1,707.68", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "blue", + "name": "Mccarthy Cline", + "gender": "male", + "company": "GENMOM", + "email": "mccarthycline@genmom.com", + "phone": "+1 (941) 401-3009", + "address": "437 Huntington Street, Belgreen, Oklahoma, 6291", + "about": "Magna irure minim esse in commodo laborum laboris minim ad dolor. Adipisicing sunt tempor officia proident officia id dolore ipsum aute quis. Ad eu tempor dolore labore mollit sint.\r\n", + "registered": "2018-02-11T11:08:15 +07:00", + "latitude": -10.045588, + "longitude": -122.368284, + "tags": [ + "qui", + "consectetur", + "minim", + "voluptate", + "pariatur", + "duis", + "mollit" + ], + "friends": [ + { + "id": 0, + "name": "Laverne Calhoun" + }, + { + "id": 1, + "name": "Edwina Franco" + }, + { + "id": 2, + "name": "Katherine Martinez" + } + ], + "greeting": "Hello, Mccarthy Cline! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021784ad30abeb2eecae", + "index": 185, + "guid": "42a4b97c-f34c-425f-9e9e-158a1d36385e", + "isActive": true, + "balance": "$3,007.65", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "green", + "name": "Pacheco Smith", + "gender": "male", + "company": "BUZZWORKS", + "email": "pachecosmith@buzzworks.com", + "phone": "+1 (999) 454-3647", + "address": "386 Degraw Street, Roy, Kentucky, 7648", + "about": "Occaecat ea excepteur non do id consequat magna in sunt eu. Exercitation reprehenderit anim incididunt ex. Esse dolore nulla ad ex velit dolor. Nisi minim culpa mollit ex enim pariatur amet adipisicing in pariatur enim.\r\n", + "registered": "2015-07-28T11:29:52 +06:00", + "latitude": 8.137746, + "longitude": -83.577073, + "tags": [ + "laboris", + "labore", + "veniam", + "Lorem", + "consectetur", + "veniam", + "eu" + ], + "friends": [ + { + "id": 0, + "name": "Hood Burnett" + }, + { + "id": 1, + "name": "Connie Schultz" + }, + { + "id": 2, + "name": "Grimes Maxwell" + } + ], + "greeting": "Hello, Pacheco Smith! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021757ba68123325160d", + "index": 186, + "guid": "1b7a81a9-9c7c-4a86-b048-575f504c3c6f", + "isActive": true, + "balance": "$2,622.29", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "blue", + "name": "Solis Reed", + "gender": "male", + "company": "ESCHOIR", + "email": "solisreed@eschoir.com", + "phone": "+1 (931) 564-3021", + "address": "155 Louis Place, Evergreen, Alabama, 9070", + "about": "Amet ex occaecat enim non nulla aliqua quis cillum irure officia exercitation. Esse dolor nisi non adipisicing. Enim ex cupidatat id nulla consectetur dolor do officia Lorem sit tempor officia. Aute amet cupidatat esse consequat. Nisi mollit labore veniam qui id sint do minim id. Ea exercitation sit non dolore exercitation incididunt cupidatat qui dolor ipsum. Sint nulla mollit nostrud proident id dolor.\r\n", + "registered": "2016-03-12T10:57:16 +07:00", + "latitude": 55.190773, + "longitude": 178.977057, + "tags": [ + "Lorem", + "minim", + "magna", + "do", + "ut", + "magna", + "est" + ], + "friends": [ + { + "id": 0, + "name": "Holder Mckee" + }, + { + "id": 1, + "name": "Adela Richardson" + }, + { + "id": 2, + "name": "Clara Blackburn" + } + ], + "greeting": "Hello, Solis Reed! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217eda11413d30bac06", + "index": 187, + "guid": "cb1cdc71-d6cf-4902-a260-d5bbb12be902", + "isActive": true, + "balance": "$2,490.59", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "green", + "name": "Bowers Blevins", + "gender": "male", + "company": "MAXIMIND", + "email": "bowersblevins@maximind.com", + "phone": "+1 (900) 511-2706", + "address": "886 Gain Court, Retsof, West Virginia, 6009", + "about": "Lorem aliqua velit ut consectetur ad duis nulla. Minim duis consectetur consequat reprehenderit qui non amet commodo eiusmod cillum excepteur non anim. Voluptate sunt tempor officia tempor Lorem excepteur incididunt sit ut dolor cillum. Enim aliqua velit veniam commodo nostrud ullamco Lorem proident deserunt id eu pariatur.\r\n", + "registered": "2017-10-14T07:23:36 +06:00", + "latitude": 24.586361, + "longitude": 30.219071, + "tags": [ + "cupidatat", + "ad", + "incididunt", + "exercitation", + "excepteur", + "anim", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Santana Alvarez" + }, + { + "id": 1, + "name": "Justine Fuller" + }, + { + "id": 2, + "name": "Anastasia Hahn" + } + ], + "greeting": "Hello, Bowers Blevins! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302170060543503a8be87", + "index": 188, + "guid": "1edeb1ca-5e74-4ac4-a2b2-d8a0290f7ccf", + "isActive": true, + "balance": "$2,939.75", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "green", + "name": "Lucile Holmes", + "gender": "female", + "company": "VENDBLEND", + "email": "lucileholmes@vendblend.com", + "phone": "+1 (912) 473-3648", + "address": "395 Atkins Avenue, Duryea, Ohio, 6541", + "about": "Labore nulla ea veniam dolor anim laboris. Deserunt non eiusmod ad cillum irure reprehenderit. Qui ipsum excepteur esse et dolor ea laboris consectetur anim et nulla magna. Elit mollit eiusmod culpa ea exercitation velit officia fugiat veniam. Deserunt eiusmod occaecat ipsum occaecat fugiat laborum esse aliqua non anim Lorem magna ut cupidatat.\r\n", + "registered": "2014-12-08T02:22:48 +07:00", + "latitude": -73.409145, + "longitude": 79.692844, + "tags": [ + "culpa", + "aliqua", + "incididunt", + "officia", + "proident", + "consectetur", + "pariatur" + ], + "friends": [ + { + "id": 0, + "name": "Hoffman Stevens" + }, + { + "id": 1, + "name": "Keri York" + }, + { + "id": 2, + "name": "Patton Morse" + } + ], + "greeting": "Hello, Lucile Holmes! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217285b007895787641", + "index": 189, + "guid": "30313a9f-0524-448c-b18e-9f1a0cb76f7c", + "isActive": true, + "balance": "$3,199.48", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "green", + "name": "Cassandra Morton", + "gender": "female", + "company": "CENTREXIN", + "email": "cassandramorton@centrexin.com", + "phone": "+1 (925) 496-2862", + "address": "980 Vista Place, Gardners, Connecticut, 2709", + "about": "Est do laboris aute sit est exercitation exercitation dolor. Occaecat cupidatat irure voluptate fugiat tempor adipisicing velit laboris. Commodo pariatur ex ut id occaecat velit reprehenderit do eu amet exercitation qui excepteur fugiat. Velit pariatur amet qui ea ullamco proident in. Tempor irure nisi culpa occaecat. Eiusmod amet magna ipsum aliquip pariatur adipisicing laboris. Non ea ut veniam ipsum dolor anim.\r\n", + "registered": "2015-03-30T11:50:52 +06:00", + "latitude": 81.636545, + "longitude": 105.419264, + "tags": [ + "nostrud", + "dolore", + "incididunt", + "amet", + "ipsum", + "labore", + "adipisicing" + ], + "friends": [ + { + "id": 0, + "name": "Audra Herman" + }, + { + "id": 1, + "name": "Stephens White" + }, + { + "id": 2, + "name": "Petra Hopkins" + } + ], + "greeting": "Hello, Cassandra Morton! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302171d56bae73d1b96e8", + "index": 190, + "guid": "04ac599f-5eef-4d85-8642-477b95526feb", + "isActive": true, + "balance": "$1,390.15", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "brown", + "name": "Letha Burris", + "gender": "female", + "company": "SHADEASE", + "email": "lethaburris@shadease.com", + "phone": "+1 (900) 411-2024", + "address": "334 Havemeyer Street, Greenwich, North Dakota, 1453", + "about": "Id commodo enim adipisicing id ipsum sint. Excepteur exercitation id dolore do ut Lorem dolor veniam commodo ullamco ad. Sunt laborum id culpa et laborum proident nulla deserunt ut velit minim voluptate. Id eu qui proident aute quis nostrud aliqua quis officia non aute eiusmod. Excepteur aliqua labore dolore cupidatat et duis in ex sit est laboris culpa. Dolore cillum sint magna et esse. Voluptate qui exercitation id duis adipisicing sint aute dolor consequat.\r\n", + "registered": "2015-04-11T07:39:24 +06:00", + "latitude": -5.472001, + "longitude": 25.967448, + "tags": [ + "aliqua", + "ad", + "nulla", + "dolore", + "pariatur", + "reprehenderit", + "nulla" + ], + "friends": [ + { + "id": 0, + "name": "Esmeralda Robinson" + }, + { + "id": 1, + "name": "Sonia Torres" + }, + { + "id": 2, + "name": "Mason Berger" + } + ], + "greeting": "Hello, Letha Burris! You have 8 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217175f8a52d54dd503", + "index": 191, + "guid": "f9c3f7a6-8c25-4fd1-a17f-e724ec86b732", + "isActive": true, + "balance": "$1,223.17", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "blue", + "name": "Greta Stanley", + "gender": "female", + "company": "SIGNIDYNE", + "email": "gretastanley@signidyne.com", + "phone": "+1 (896) 424-2638", + "address": "874 Homecrest Court, Townsend, Mississippi, 6365", + "about": "Ut velit ipsum ullamco eiusmod duis incididunt sit ex veniam aliqua voluptate culpa aliquip. Ea adipisicing aliqua consequat duis consectetur voluptate aliquip sunt anim ipsum fugiat do dolor et. Commodo non consectetur velit eu duis ex enim consectetur ea ex dolor cillum nulla. Nostrud ullamco enim veniam minim minim.\r\n", + "registered": "2014-05-29T10:47:00 +06:00", + "latitude": -40.542039, + "longitude": 162.216817, + "tags": [ + "non", + "ad", + "sit", + "fugiat", + "sint", + "veniam", + "in" + ], + "friends": [ + { + "id": 0, + "name": "Torres Price" + }, + { + "id": 1, + "name": "Melisa Douglas" + }, + { + "id": 2, + "name": "Mcguire Saunders" + } + ], + "greeting": "Hello, Greta Stanley! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021715f2b7197dcc1eac", + "index": 192, + "guid": "6c48f722-bd4c-4bee-a193-d6eb0097c106", + "isActive": false, + "balance": "$2,140.41", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "brown", + "name": "Cardenas Mccormick", + "gender": "male", + "company": "BIOLIVE", + "email": "cardenasmccormick@biolive.com", + "phone": "+1 (962) 519-2958", + "address": "250 Albee Square, Nipinnawasee, New York, 798", + "about": "Aliquip ut anim eiusmod occaecat nulla ipsum veniam aute enim sit consectetur. Do incididunt aliqua duis dolor velit enim deserunt aliquip officia esse. Dolore ex ullamco et commodo velit excepteur.\r\n", + "registered": "2014-09-14T01:38:32 +06:00", + "latitude": -34.530906, + "longitude": -159.679816, + "tags": [ + "magna", + "Lorem", + "excepteur", + "est", + "veniam", + "nostrud", + "ipsum" + ], + "friends": [ + { + "id": 0, + "name": "Rhoda Branch" + }, + { + "id": 1, + "name": "Gross Bass" + }, + { + "id": 2, + "name": "Powell Lewis" + } + ], + "greeting": "Hello, Cardenas Mccormick! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217a32ef2bea9d82e6e", + "index": 193, + "guid": "9a07fade-ce8b-4e50-a25a-0bcc068a86b8", + "isActive": false, + "balance": "$3,267.77", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "blue", + "name": "Hallie Wiggins", + "gender": "female", + "company": "VERTIDE", + "email": "halliewiggins@vertide.com", + "phone": "+1 (842) 486-3694", + "address": "976 Dodworth Street, Alfarata, Oregon, 855", + "about": "Nostrud duis est Lorem occaecat minim reprehenderit laborum. Adipisicing aute Lorem mollit id consequat. Labore eiusmod mollit commodo velit commodo mollit nulla est dolor sint irure do anim. Ut in aliqua ea ex incididunt qui laboris ex tempor ut ullamco adipisicing.\r\n", + "registered": "2014-11-15T02:55:13 +07:00", + "latitude": 63.259273, + "longitude": 42.571848, + "tags": [ + "ex", + "ea", + "adipisicing", + "duis", + "sit", + "amet", + "quis" + ], + "friends": [ + { + "id": 0, + "name": "Lakeisha Cooke" + }, + { + "id": 1, + "name": "Millie Vazquez" + }, + { + "id": 2, + "name": "Nell Paul" + } + ], + "greeting": "Hello, Hallie Wiggins! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217b19957a819bae78b", + "index": 194, + "guid": "26351c5b-348d-40eb-8d23-d7a6c5ff5d0f", + "isActive": true, + "balance": "$2,565.51", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "brown", + "name": "Walls Roberson", + "gender": "male", + "company": "SNORUS", + "email": "wallsroberson@snorus.com", + "phone": "+1 (943) 400-3359", + "address": "301 Laurel Avenue, Detroit, New Jersey, 7084", + "about": "Occaecat ut dolor et commodo consequat. Lorem est quis fugiat nulla est veniam deserunt incididunt est laboris exercitation id elit. Eiusmod laboris consectetur dolor in ad Lorem elit elit nostrud quis. Culpa eiusmod et exercitation qui. Minim id excepteur elit adipisicing dolore fugiat sint minim. Occaecat eu ea nostrud culpa et fugiat mollit proident deserunt ea. Non ipsum nostrud et aute esse.\r\n", + "registered": "2015-07-02T10:47:32 +06:00", + "latitude": 80.139773, + "longitude": 155.880318, + "tags": [ + "veniam", + "excepteur", + "veniam", + "quis", + "nulla", + "nisi", + "et" + ], + "friends": [ + { + "id": 0, + "name": "Dominguez Oneil" + }, + { + "id": 1, + "name": "Rebekah Holloway" + }, + { + "id": 2, + "name": "Carissa Stephens" + } + ], + "greeting": "Hello, Walls Roberson! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217d3c20be6fdc77834", + "index": 195, + "guid": "f6d0ec7b-bee6-45fe-a55e-f53876ae410a", + "isActive": true, + "balance": "$2,255.62", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "brown", + "name": "Erickson Page", + "gender": "male", + "company": "GEEKKO", + "email": "ericksonpage@geekko.com", + "phone": "+1 (986) 418-2548", + "address": "883 Johnson Avenue, Defiance, Montana, 5787", + "about": "Officia id irure aliquip aliqua et incididunt occaecat consequat. Sint aliquip adipisicing veniam excepteur labore commodo ipsum nulla sint magna officia non sit adipisicing. Lorem laborum veniam cillum minim ex consectetur quis sint culpa ad. Occaecat cupidatat duis aliquip eu quis. Mollit exercitation tempor aliqua do anim dolore eu sint adipisicing non do mollit.\r\n", + "registered": "2014-09-21T02:32:02 +06:00", + "latitude": -6.677963, + "longitude": 12.229681, + "tags": [ + "laborum", + "qui", + "consequat", + "consectetur", + "consectetur", + "veniam", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Joan Houston" + }, + { + "id": 1, + "name": "Kennedy Mason" + }, + { + "id": 2, + "name": "Stein Dejesus" + } + ], + "greeting": "Hello, Erickson Page! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021735bf04be39a30a64", + "index": 196, + "guid": "e3841b12-2fa6-418e-bc96-69d95d12619a", + "isActive": true, + "balance": "$2,360.78", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "green", + "name": "Lindsay Delgado", + "gender": "male", + "company": "YURTURE", + "email": "lindsaydelgado@yurture.com", + "phone": "+1 (891) 448-3806", + "address": "436 Meserole Street, Allentown, Nevada, 6300", + "about": "Commodo incididunt sunt laborum exercitation mollit. Laboris enim id fugiat ea magna ea. Est adipisicing nostrud adipisicing tempor incididunt laboris commodo id ad culpa. Ipsum eiusmod ipsum deserunt veniam et aliquip non laboris eiusmod do. Dolor ullamco exercitation qui voluptate.\r\n", + "registered": "2018-02-15T10:39:19 +07:00", + "latitude": -78.42876, + "longitude": -11.598233, + "tags": [ + "Lorem", + "aliqua", + "incididunt", + "esse", + "officia", + "duis", + "nisi" + ], + "friends": [ + { + "id": 0, + "name": "Morgan Le" + }, + { + "id": 1, + "name": "Richardson Mcmillan" + }, + { + "id": 2, + "name": "Mosley Henderson" + } + ], + "greeting": "Hello, Lindsay Delgado! You have 2 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302175008ebf4084b9670", + "index": 197, + "guid": "16fde99b-72de-4ef6-a2a9-b2db541eed1a", + "isActive": true, + "balance": "$1,825.51", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "green", + "name": "Summers Spence", + "gender": "male", + "company": "ZENSOR", + "email": "summersspence@zensor.com", + "phone": "+1 (928) 494-2056", + "address": "732 Cropsey Avenue, Ladera, Colorado, 8743", + "about": "Officia esse et sint pariatur elit. Minim cupidatat ad pariatur deserunt cupidatat aliquip aute sunt enim mollit consequat. Est esse nisi non in amet minim magna velit laboris officia magna excepteur. Culpa nostrud ullamco sit irure ad occaecat. Proident eiusmod fugiat non aliquip cupidatat duis exercitation tempor veniam magna consectetur aliquip.\r\n", + "registered": "2014-06-18T08:42:20 +06:00", + "latitude": -80.120438, + "longitude": -44.524952, + "tags": [ + "fugiat", + "aliqua", + "eiusmod", + "consectetur", + "incididunt", + "laboris", + "non" + ], + "friends": [ + { + "id": 0, + "name": "Denise Scott" + }, + { + "id": 1, + "name": "Robinson Kelley" + }, + { + "id": 2, + "name": "Lillie Silva" + } + ], + "greeting": "Hello, Summers Spence! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217387d1d635022a0da", + "index": 198, + "guid": "b4d3efe5-278f-44f5-8d85-1fbeb83953d1", + "isActive": false, + "balance": "$1,259.96", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "brown", + "name": "Alisa Hawkins", + "gender": "female", + "company": "BOSTONIC", + "email": "alisahawkins@bostonic.com", + "phone": "+1 (900) 589-3648", + "address": "185 Canda Avenue, Finzel, New Mexico, 8540", + "about": "Nulla pariatur magna irure adipisicing commodo culpa. Non commodo duis ea nostrud laboris Lorem adipisicing sunt commodo culpa. Et excepteur mollit nostrud est duis cupidatat. Id laboris eu in ipsum. Tempor cupidatat amet aute qui Lorem cupidatat sit dolor. Fugiat laborum laboris anim veniam laborum non do. Eu pariatur est est do id dolor exercitation.\r\n", + "registered": "2015-03-21T12:23:12 +06:00", + "latitude": -36.728423, + "longitude": -140.57601, + "tags": [ + "eu", + "incididunt", + "adipisicing", + "velit", + "commodo", + "exercitation", + "non" + ], + "friends": [ + { + "id": 0, + "name": "Rosella Kinney" + }, + { + "id": 1, + "name": "Aurora Jefferson" + }, + { + "id": 2, + "name": "Sullivan Beasley" + } + ], + "greeting": "Hello, Alisa Hawkins! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021722fd8a06db0d43b0", + "index": 199, + "guid": "7380450c-5939-4657-9ca6-0d110c38c385", + "isActive": false, + "balance": "$1,783.24", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "blue", + "name": "Leah Hickman", + "gender": "female", + "company": "TROPOLI", + "email": "leahhickman@tropoli.com", + "phone": "+1 (982) 403-3080", + "address": "806 Varet Street, Jugtown, Texas, 5438", + "about": "Est culpa esse aliqua dolor. Lorem incididunt est nisi aute consectetur. Qui do qui laborum reprehenderit non. Nulla elit nostrud id aliquip ut incididunt quis esse proident occaecat veniam.\r\n", + "registered": "2015-11-23T06:55:52 +07:00", + "latitude": -87.316989, + "longitude": -48.743117, + "tags": [ + "mollit", + "ex", + "amet", + "est", + "veniam", + "excepteur", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "Cindy Cleveland" + }, + { + "id": 1, + "name": "Gilda Humphrey" + }, + { + "id": 2, + "name": "Roberta Frost" + } + ], + "greeting": "Hello, Leah Hickman! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302177ba5784d81b86f06", + "index": 200, + "guid": "d4e0a1ba-a11f-4a35-bac0-5ac7992fbe79", + "isActive": true, + "balance": "$2,566.54", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Lopez Cabrera", + "gender": "male", + "company": "MICRONAUT", + "email": "lopezcabrera@micronaut.com", + "phone": "+1 (917) 405-3787", + "address": "569 Rapelye Street, Leeper, North Carolina, 5241", + "about": "Ad aliquip esse magna do incididunt amet ullamco qui excepteur amet et aliqua duis irure. Esse aute eiusmod irure minim laborum magna est aliqua commodo. Eu ut dolore ex in aliqua quis excepteur officia ex reprehenderit do ut ea. Labore velit anim consectetur proident excepteur qui labore. Cillum nulla est elit cupidatat consectetur quis veniam cillum dolor voluptate ut deserunt sunt nulla. Voluptate esse commodo mollit est elit commodo non eu do aute mollit id labore voluptate. Aliqua deserunt sint mollit velit commodo velit fugiat officia consectetur pariatur tempor commodo amet nulla.\r\n", + "registered": "2016-09-03T12:39:09 +06:00", + "latitude": -26.174251, + "longitude": -116.977039, + "tags": [ + "enim", + "elit", + "ad", + "sunt", + "dolor", + "pariatur", + "do" + ], + "friends": [ + { + "id": 0, + "name": "Amy Waters" + }, + { + "id": 1, + "name": "Loretta Ray" + }, + { + "id": 2, + "name": "Herring Johns" + } + ], + "greeting": "Hello, Lopez Cabrera! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302179a985efca4aca917", + "index": 201, + "guid": "bb59075a-ab4c-4939-973c-a5c497361a46", + "isActive": true, + "balance": "$1,797.26", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "brown", + "name": "Hinton Vinson", + "gender": "male", + "company": "COMVERGES", + "email": "hintonvinson@comverges.com", + "phone": "+1 (862) 411-2964", + "address": "573 Lewis Avenue, Orovada, Nebraska, 8099", + "about": "Velit anim cupidatat laborum laborum officia velit occaecat sint. Eu nulla ut ut aute fugiat aute sint ad elit. Ipsum veniam id cupidatat minim incididunt sunt laborum pariatur. Ea exercitation minim ipsum in labore nostrud aliquip occaecat excepteur duis voluptate magna dolore pariatur. Lorem sunt sunt elit enim. Ea commodo sint do sint deserunt in. Voluptate commodo veniam elit tempor ex consequat proident.\r\n", + "registered": "2017-12-31T06:45:30 +07:00", + "latitude": -88.96405, + "longitude": 95.018361, + "tags": [ + "non", + "eu", + "elit", + "sint", + "mollit", + "aliqua", + "reprehenderit" + ], + "friends": [ + { + "id": 0, + "name": "Lakisha Moon" + }, + { + "id": 1, + "name": "Laurie Delacruz" + }, + { + "id": 2, + "name": "Lisa Chase" + } + ], + "greeting": "Hello, Hinton Vinson! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217cbff7685590438c0", + "index": 202, + "guid": "163d2d9e-523e-4df4-ba23-fa10a3dcd6ab", + "isActive": true, + "balance": "$1,634.20", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "green", + "name": "Brock Woods", + "gender": "male", + "company": "IPLAX", + "email": "brockwoods@iplax.com", + "phone": "+1 (961) 474-2334", + "address": "874 Clark Street, Convent, Tennessee, 6905", + "about": "Esse consectetur anim commodo enim esse sunt cillum culpa. Esse sunt adipisicing veniam et Lorem deserunt amet aute aliquip sit est. Irure Lorem voluptate pariatur eiusmod reprehenderit elit non aute irure aliquip sunt ipsum. Et sunt Lorem irure commodo magna tempor. Deserunt velit laboris id magna eiusmod velit. Aute exercitation quis dolore proident proident laborum dolore pariatur reprehenderit occaecat magna mollit.\r\n", + "registered": "2015-03-25T06:38:48 +06:00", + "latitude": -79.671322, + "longitude": -127.022945, + "tags": [ + "aliqua", + "proident", + "aliqua", + "laborum", + "pariatur", + "pariatur", + "nostrud" + ], + "friends": [ + { + "id": 0, + "name": "Beatrice Booker" + }, + { + "id": 1, + "name": "Elsie Vargas" + }, + { + "id": 2, + "name": "Bright Battle" + } + ], + "greeting": "Hello, Brock Woods! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302171b428b60a93b1e63", + "index": 203, + "guid": "01578ce6-875f-4322-8c60-5a8fdb789875", + "isActive": false, + "balance": "$2,957.25", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "brown", + "name": "Robertson Beard", + "gender": "male", + "company": "APPLICA", + "email": "robertsonbeard@applica.com", + "phone": "+1 (993) 554-2690", + "address": "788 McKibben Street, Hoagland, Utah, 5987", + "about": "Proident fugiat occaecat ut qui excepteur deserunt sint ex. Nulla enim reprehenderit fugiat enim eiusmod. Enim culpa dolor ipsum est reprehenderit in. Elit pariatur amet magna aliqua incididunt in incididunt. Do nulla consequat tempor mollit reprehenderit laboris mollit ex ullamco.\r\n", + "registered": "2015-11-03T04:29:27 +07:00", + "latitude": -34.860992, + "longitude": -92.983117, + "tags": [ + "cupidatat", + "sint", + "occaecat", + "ipsum", + "et", + "nostrud", + "adipisicing" + ], + "friends": [ + { + "id": 0, + "name": "Ballard Horne" + }, + { + "id": 1, + "name": "Mattie Flores" + }, + { + "id": 2, + "name": "Louise Cherry" + } + ], + "greeting": "Hello, Robertson Beard! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217775e6398207a52ec", + "index": 204, + "guid": "e66d2a5b-7833-402e-9c17-f4f6cbc1d542", + "isActive": true, + "balance": "$1,163.16", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "blue", + "name": "Alta Conner", + "gender": "female", + "company": "SENSATE", + "email": "altaconner@sensate.com", + "phone": "+1 (977) 424-3931", + "address": "193 Rost Place, Fivepointville, Marshall Islands, 5983", + "about": "Voluptate adipisicing reprehenderit anim minim incididunt sint esse esse labore ullamco anim deserunt. Id ipsum aliquip nisi tempor aute Lorem mollit excepteur. Nisi in sunt commodo pariatur exercitation elit nulla labore deserunt. Voluptate adipisicing voluptate dolore adipisicing. Cupidatat velit pariatur est sint pariatur magna eiusmod eu veniam laborum incididunt pariatur.\r\n", + "registered": "2016-07-21T02:10:05 +06:00", + "latitude": -58.355946, + "longitude": -17.199338, + "tags": [ + "quis", + "ullamco", + "voluptate", + "non", + "ullamco", + "ea", + "officia" + ], + "friends": [ + { + "id": 0, + "name": "Nichole Mcgee" + }, + { + "id": 1, + "name": "Dona Carrillo" + }, + { + "id": 2, + "name": "Kent Snyder" + } + ], + "greeting": "Hello, Alta Conner! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217e325c1faa4b397f7", + "index": 205, + "guid": "40dc2ac7-d453-4c3e-98a7-f0194edff2f6", + "isActive": false, + "balance": "$3,817.95", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "brown", + "name": "Kerry Rollins", + "gender": "female", + "company": "PRINTSPAN", + "email": "kerryrollins@printspan.com", + "phone": "+1 (811) 470-3556", + "address": "744 Jardine Place, Ivanhoe, Georgia, 8580", + "about": "Ea excepteur esse esse sunt nostrud in. Labore occaecat Lorem amet minim amet pariatur ipsum. Elit esse dolor ipsum laboris duis aliqua culpa irure aute quis quis tempor duis.\r\n", + "registered": "2015-03-26T12:39:25 +06:00", + "latitude": 44.935771, + "longitude": 44.514642, + "tags": [ + "consectetur", + "do", + "officia", + "ipsum", + "eu", + "id", + "voluptate" + ], + "friends": [ + { + "id": 0, + "name": "Winters Hayden" + }, + { + "id": 1, + "name": "Carole Merritt" + }, + { + "id": 2, + "name": "Betsy Puckett" + } + ], + "greeting": "Hello, Kerry Rollins! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021726264e3c34c45323", + "index": 206, + "guid": "481bd27e-49b3-4508-9e84-ec7826a8d43b", + "isActive": false, + "balance": "$2,764.80", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "brown", + "name": "Marcy Kidd", + "gender": "female", + "company": "GLEAMINK", + "email": "marcykidd@gleamink.com", + "phone": "+1 (948) 420-2163", + "address": "795 Brown Street, Eggertsville, Massachusetts, 9147", + "about": "Ad deserunt eiusmod ea mollit irure occaecat eiusmod incididunt laborum aliquip officia laborum exercitation officia. Velit enim occaecat amet magna. Occaecat commodo qui adipisicing sit commodo dolor culpa. Ea sunt id consequat mollit ex Lorem voluptate ex. Aute quis nisi ipsum officia. Nulla aute occaecat velit eiusmod id velit enim qui sint laboris deserunt exercitation.\r\n", + "registered": "2016-05-05T06:14:18 +06:00", + "latitude": 68.125407, + "longitude": 114.371474, + "tags": [ + "dolor", + "reprehenderit", + "Lorem", + "aute", + "enim", + "eu", + "sunt" + ], + "friends": [ + { + "id": 0, + "name": "Keller Mckinney" + }, + { + "id": 1, + "name": "Karina Cobb" + }, + { + "id": 2, + "name": "Richard Cash" + } + ], + "greeting": "Hello, Marcy Kidd! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217fc388b62a950da8f", + "index": 207, + "guid": "dc62fbab-3593-4d3f-8db4-efba858ecda2", + "isActive": false, + "balance": "$1,527.53", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "blue", + "name": "Dunn Hatfield", + "gender": "male", + "company": "BUNGA", + "email": "dunnhatfield@bunga.com", + "phone": "+1 (889) 588-2279", + "address": "917 Channel Avenue, Glendale, Arizona, 9466", + "about": "Amet minim sunt occaecat deserunt nulla est dolore. Commodo eu dolor deserunt eu est enim cillum sint id amet. Minim sint ad sit ex proident sint sunt deserunt ullamco consequat. Et non magna elit adipisicing adipisicing culpa sunt nulla labore ullamco deserunt irure. Reprehenderit in magna amet ex sit sit ut velit excepteur do cupidatat excepteur laboris pariatur. Nulla irure aliqua ea et excepteur. Enim sit ut fugiat pariatur in ullamco.\r\n", + "registered": "2017-05-20T04:10:40 +06:00", + "latitude": -51.734636, + "longitude": 39.181053, + "tags": [ + "nulla", + "amet", + "dolore", + "amet", + "incididunt", + "irure", + "reprehenderit" + ], + "friends": [ + { + "id": 0, + "name": "Frazier Bradshaw" + }, + { + "id": 1, + "name": "Lillian Zimmerman" + }, + { + "id": 2, + "name": "Bonnie Mathis" + } + ], + "greeting": "Hello, Dunn Hatfield! You have 2 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302171eedddc85eae2950", + "index": 208, + "guid": "cbe10861-24dd-46ea-88f7-453880216998", + "isActive": true, + "balance": "$3,194.46", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "green", + "name": "Randall Baxter", + "gender": "male", + "company": "CEMENTION", + "email": "randallbaxter@cemention.com", + "phone": "+1 (884) 496-2374", + "address": "532 Lacon Court, Richville, District Of Columbia, 7481", + "about": "Laborum consectetur ea ex non ea nulla minim nostrud laboris ex eiusmod est eiusmod magna. Exercitation quis commodo sit nulla voluptate adipisicing ad qui ex nisi sint laboris. Magna excepteur duis est nostrud culpa deserunt nulla adipisicing culpa.\r\n", + "registered": "2016-03-11T10:21:19 +07:00", + "latitude": -57.656935, + "longitude": -13.807376, + "tags": [ + "est", + "in", + "esse", + "consectetur", + "minim", + "dolor", + "adipisicing" + ], + "friends": [ + { + "id": 0, + "name": "Margaret Santiago" + }, + { + "id": 1, + "name": "Barnett Vincent" + }, + { + "id": 2, + "name": "Justice Alston" + } + ], + "greeting": "Hello, Randall Baxter! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302170e166c8fb5de60bc", + "index": 209, + "guid": "b25e84e8-b6e3-4b61-9160-42eb3bae737d", + "isActive": false, + "balance": "$2,496.57", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "blue", + "name": "Adrienne Conrad", + "gender": "female", + "company": "EXTRAWEAR", + "email": "adrienneconrad@extrawear.com", + "phone": "+1 (896) 477-2796", + "address": "760 Leonora Court, Murillo, Virgin Islands, 8372", + "about": "Exercitation irure minim id sint ex nisi ad est et ut. Ad in sit quis proident cupidatat Lorem voluptate fugiat esse officia. Consectetur dolore qui adipisicing incididunt amet. Labore eu nostrud non nulla.\r\n", + "registered": "2015-02-22T11:20:45 +07:00", + "latitude": -5.515994, + "longitude": 113.978837, + "tags": [ + "adipisicing", + "aliqua", + "nulla", + "ad", + "fugiat", + "proident", + "aute" + ], + "friends": [ + { + "id": 0, + "name": "Crosby Hendricks" + }, + { + "id": 1, + "name": "Sally Lowe" + }, + { + "id": 2, + "name": "Mays Adams" + } + ], + "greeting": "Hello, Adrienne Conrad! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302170ba688d0d857675f", + "index": 210, + "guid": "2cf5f0c0-a8bb-4643-b0b0-6910137bd5f4", + "isActive": true, + "balance": "$3,868.05", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "blue", + "name": "Miranda Vang", + "gender": "male", + "company": "SYNKGEN", + "email": "mirandavang@synkgen.com", + "phone": "+1 (979) 541-3394", + "address": "684 Surf Avenue, Avoca, South Dakota, 5742", + "about": "Dolore duis ullamco quis excepteur velit sunt laborum commodo consequat. Dolore non reprehenderit duis mollit quis nisi anim fugiat reprehenderit id occaecat incididunt mollit. Et consequat exercitation fugiat culpa magna.\r\n", + "registered": "2017-08-11T10:16:16 +06:00", + "latitude": 67.323751, + "longitude": -20.334649, + "tags": [ + "laboris", + "tempor", + "aliquip", + "amet", + "minim", + "consectetur", + "mollit" + ], + "friends": [ + { + "id": 0, + "name": "Ward Lawson" + }, + { + "id": 1, + "name": "Simpson Rice" + }, + { + "id": 2, + "name": "Tameka Carey" + } + ], + "greeting": "Hello, Miranda Vang! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217a78f23febe0c1fd0", + "index": 211, + "guid": "2f568926-b54f-42e3-adcf-1ef04f47966f", + "isActive": false, + "balance": "$2,802.17", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "green", + "name": "Walters Wallace", + "gender": "male", + "company": "HOUSEDOWN", + "email": "walterswallace@housedown.com", + "phone": "+1 (870) 482-2049", + "address": "622 Schaefer Street, Joes, Virginia, 270", + "about": "Anim laborum dolore occaecat exercitation anim qui ad minim occaecat cupidatat eiusmod amet. Culpa consectetur laboris labore mollit pariatur do ut do aute mollit. Sint nostrud qui labore non tempor adipisicing. Ea exercitation sint Lorem mollit dolore pariatur eu sit consequat pariatur veniam voluptate velit voluptate. Reprehenderit nostrud anim minim aliquip sunt cupidatat officia.\r\n", + "registered": "2016-05-30T10:02:07 +06:00", + "latitude": -64.888735, + "longitude": -54.749628, + "tags": [ + "esse", + "dolor", + "cupidatat", + "adipisicing", + "ea", + "incididunt", + "ullamco" + ], + "friends": [ + { + "id": 0, + "name": "Pearlie Richmond" + }, + { + "id": 1, + "name": "Lupe Floyd" + }, + { + "id": 2, + "name": "Roseann Mack" + } + ], + "greeting": "Hello, Walters Wallace! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302170e07ad6e1d63aca6", + "index": 212, + "guid": "418c28b2-4f81-49dc-bb49-3648a74ea1d5", + "isActive": true, + "balance": "$3,651.22", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "green", + "name": "Vilma Hobbs", + "gender": "female", + "company": "BITTOR", + "email": "vilmahobbs@bittor.com", + "phone": "+1 (943) 498-2551", + "address": "250 Lombardy Street, Cutter, Michigan, 965", + "about": "Dolore aliquip adipisicing voluptate sunt occaecat enim aute minim reprehenderit ut proident duis anim commodo. Sunt quis amet eiusmod id exercitation. Ex ut occaecat quis aliquip ea nostrud cupidatat anim voluptate sit anim minim. Quis eiusmod ut ad dolore.\r\n", + "registered": "2016-10-30T04:53:38 +06:00", + "latitude": -73.430066, + "longitude": 76.276973, + "tags": [ + "et", + "sunt", + "elit", + "duis", + "velit", + "ea", + "nulla" + ], + "friends": [ + { + "id": 0, + "name": "Griffin Gay" + }, + { + "id": 1, + "name": "Penny Lawrence" + }, + { + "id": 2, + "name": "Rivers Short" + } + ], + "greeting": "Hello, Vilma Hobbs! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021727d9dfff59b03a49", + "index": 213, + "guid": "08ed5fbd-cf71-41f0-90f3-2ca676219bf5", + "isActive": false, + "balance": "$1,555.30", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "green", + "name": "Maribel Hogan", + "gender": "female", + "company": "PEARLESEX", + "email": "maribelhogan@pearlesex.com", + "phone": "+1 (807) 524-2684", + "address": "102 Dictum Court, Gambrills, Northern Mariana Islands, 6954", + "about": "Fugiat reprehenderit labore dolore occaecat. Dolor ea occaecat aute sit anim. Eiusmod quis qui nostrud ipsum irure consequat aute aliquip minim anim elit. Consequat laborum eiusmod pariatur elit sunt excepteur incididunt commodo in minim ea aute. Esse deserunt commodo ullamco id dolore nisi eiusmod nisi eiusmod elit labore veniam. Ea ad nostrud incididunt aliquip velit nulla. In Lorem esse officia ea pariatur do et anim sunt deserunt.\r\n", + "registered": "2014-02-26T01:12:57 +07:00", + "latitude": -31.818714, + "longitude": 33.103376, + "tags": [ + "commodo", + "culpa", + "aliqua", + "ullamco", + "deserunt", + "officia", + "aute" + ], + "friends": [ + { + "id": 0, + "name": "Cara Castaneda" + }, + { + "id": 1, + "name": "Lora Ortiz" + }, + { + "id": 2, + "name": "Jewel Slater" + } + ], + "greeting": "Hello, Maribel Hogan! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217bb6f753ab547924a", + "index": 214, + "guid": "666d2f97-bd0b-4be3-b4c6-706cc88ab24a", + "isActive": false, + "balance": "$2,921.60", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "green", + "name": "Mcbride Acosta", + "gender": "male", + "company": "TALKALOT", + "email": "mcbrideacosta@talkalot.com", + "phone": "+1 (941) 569-3206", + "address": "735 Bushwick Court, Boyd, Illinois, 614", + "about": "Cillum elit non reprehenderit duis. Qui velit Lorem quis non non proident dolor irure laborum et. Ipsum enim do ea culpa veniam voluptate dolore et. Qui laboris minim deserunt officia veniam in sint aliquip deserunt eu non consequat incididunt. Irure nulla velit dolore consectetur reprehenderit voluptate.\r\n", + "registered": "2017-04-17T07:38:01 +06:00", + "latitude": 6.260658, + "longitude": -33.103421, + "tags": [ + "duis", + "eu", + "est", + "pariatur", + "culpa", + "esse", + "eu" + ], + "friends": [ + { + "id": 0, + "name": "Osborne Byrd" + }, + { + "id": 1, + "name": "Katelyn Adkins" + }, + { + "id": 2, + "name": "Serena Fitzgerald" + } + ], + "greeting": "Hello, Mcbride Acosta! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021761e799e255b8e4b0", + "index": 215, + "guid": "d6f8621e-ae25-41ec-ac92-e64fb86f53c0", + "isActive": true, + "balance": "$1,690.06", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "blue", + "name": "Briggs Collier", + "gender": "male", + "company": "EQUICOM", + "email": "briggscollier@equicom.com", + "phone": "+1 (977) 458-2144", + "address": "377 Jamaica Avenue, Trona, Wisconsin, 5958", + "about": "Amet sint irure duis consequat adipisicing sit eu nulla incididunt id deserunt enim nulla. Sint dolore reprehenderit do exercitation cillum ipsum minim consectetur deserunt consectetur ut ad ad nostrud. Aliquip ut deserunt laborum ut sit nulla dolor magna laborum. Consectetur consequat ut elit aliquip culpa sint esse est anim consectetur. Eiusmod eu enim laboris consequat. Tempor exercitation aliquip enim sit aliqua nulla commodo velit ullamco commodo fugiat.\r\n", + "registered": "2016-03-19T05:02:14 +06:00", + "latitude": 70.627608, + "longitude": 176.226266, + "tags": [ + "tempor", + "labore", + "cillum", + "ullamco", + "cupidatat", + "et", + "nostrud" + ], + "friends": [ + { + "id": 0, + "name": "Case Bright" + }, + { + "id": 1, + "name": "Hines Holland" + }, + { + "id": 2, + "name": "Trisha West" + } + ], + "greeting": "Hello, Briggs Collier! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021731bf9e84b787ee9c", + "index": 216, + "guid": "62002fd0-c3d9-4763-9368-35db90de1181", + "isActive": false, + "balance": "$2,368.11", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "green", + "name": "Turner Kent", + "gender": "male", + "company": "XLEEN", + "email": "turnerkent@xleen.com", + "phone": "+1 (835) 560-3286", + "address": "747 Battery Avenue, Valmy, Idaho, 9022", + "about": "Consectetur ad ullamco labore veniam cillum commodo eiusmod et esse duis minim deserunt magna tempor. Nulla deserunt nisi duis cupidatat laborum aliqua Lorem in sit nostrud magna officia. Amet consectetur mollit ex dolore ex mollit incididunt sit mollit ullamco culpa eu minim. Qui officia magna proident incididunt occaecat qui nostrud nisi tempor ad officia dolor deserunt nulla. Do veniam reprehenderit mollit laboris magna et deserunt adipisicing sunt consequat et enim deserunt nostrud.\r\n", + "registered": "2018-02-27T08:21:40 +07:00", + "latitude": 29.279714, + "longitude": 139.811375, + "tags": [ + "laborum", + "consequat", + "aliquip", + "magna", + "exercitation", + "culpa", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Bishop Hendrix" + }, + { + "id": 1, + "name": "Patsy Gilliam" + }, + { + "id": 2, + "name": "Beatriz Walton" + } + ], + "greeting": "Hello, Turner Kent! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217e93122be32823255", + "index": 217, + "guid": "fc2a071a-5d10-4f77-b042-ebfa30d4a159", + "isActive": true, + "balance": "$3,660.51", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "brown", + "name": "Drake Knapp", + "gender": "male", + "company": "GEOLOGIX", + "email": "drakeknapp@geologix.com", + "phone": "+1 (800) 592-3229", + "address": "589 Aberdeen Street, Rosewood, New Hampshire, 7709", + "about": "Est aute deserunt ex aliqua labore quis enim proident. In incididunt ad qui laboris non. Ullamco adipisicing laboris laborum officia. Officia nulla consectetur id nulla ea excepteur. Sunt deserunt amet consequat excepteur aute esse.\r\n", + "registered": "2014-10-14T01:48:53 +06:00", + "latitude": -5.074102, + "longitude": -88.453028, + "tags": [ + "ex", + "nulla", + "commodo", + "ex", + "sit", + "ullamco", + "velit" + ], + "friends": [ + { + "id": 0, + "name": "Haley Payne" + }, + { + "id": 1, + "name": "Avis Contreras" + }, + { + "id": 2, + "name": "Helga Mejia" + } + ], + "greeting": "Hello, Drake Knapp! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021730a2feed92d55f29", + "index": 218, + "guid": "0697e398-48ee-4d83-b73c-edddd08e2d9e", + "isActive": false, + "balance": "$3,648.59", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "green", + "name": "Coffey Freeman", + "gender": "male", + "company": "SQUISH", + "email": "coffeyfreeman@squish.com", + "phone": "+1 (959) 498-2949", + "address": "761 Quentin Street, Biehle, South Carolina, 9175", + "about": "Veniam aute incididunt sint duis. Incididunt qui tempor cupidatat laboris adipisicing ea sit ipsum nulla magna et reprehenderit ea amet. Ea veniam exercitation quis occaecat ullamco commodo dolor dolore est.\r\n", + "registered": "2014-09-28T06:40:33 +06:00", + "latitude": -80.071327, + "longitude": -155.140862, + "tags": [ + "occaecat", + "mollit", + "nostrud", + "magna", + "cillum", + "reprehenderit", + "dolor" + ], + "friends": [ + { + "id": 0, + "name": "Marguerite Grimes" + }, + { + "id": 1, + "name": "Mayra Ryan" + }, + { + "id": 2, + "name": "Bonner Coleman" + } + ], + "greeting": "Hello, Coffey Freeman! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217dcf712b1f3827212", + "index": 219, + "guid": "724ea9c2-a851-4798-84a7-010f5ec8f551", + "isActive": false, + "balance": "$1,804.75", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "green", + "name": "Kramer Jimenez", + "gender": "male", + "company": "BULLZONE", + "email": "kramerjimenez@bullzone.com", + "phone": "+1 (940) 557-2815", + "address": "104 Matthews Court, Navarre, Iowa, 8114", + "about": "Reprehenderit duis cillum cillum enim non do excepteur eu sit duis ipsum aliquip. Esse dolore ipsum sunt eiusmod enim ut officia mollit aliquip elit officia sunt ex proident. Nisi laborum reprehenderit aute nulla esse sint pariatur enim id laboris proident elit ad do. Est occaecat quis et tempor consequat aliqua eiusmod laboris sit nisi sint exercitation veniam. Enim ullamco sint eu excepteur consectetur occaecat eu labore et commodo mollit excepteur.\r\n", + "registered": "2017-06-19T07:13:33 +06:00", + "latitude": 44.157055, + "longitude": -104.797715, + "tags": [ + "deserunt", + "esse", + "exercitation", + "sunt", + "amet", + "dolor", + "ut" + ], + "friends": [ + { + "id": 0, + "name": "Ochoa Patel" + }, + { + "id": 1, + "name": "Riley Young" + }, + { + "id": 2, + "name": "Tricia Stanton" + } + ], + "greeting": "Hello, Kramer Jimenez! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302179b29089cb1ead53a", + "index": 220, + "guid": "27c194b3-2e8b-4bcf-8755-63b36023362b", + "isActive": true, + "balance": "$3,900.41", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Estella Russell", + "gender": "female", + "company": "ISOSPHERE", + "email": "estellarussell@isosphere.com", + "phone": "+1 (874) 593-2848", + "address": "147 Doughty Street, Falconaire, California, 896", + "about": "Excepteur amet aliquip tempor non ea aute ullamco aute incididunt irure nostrud. Voluptate aliqua enim qui duis nisi quis esse. Sunt nulla consequat ipsum sit. Exercitation nostrud est cupidatat laboris amet. Nulla adipisicing tempor ipsum Lorem dolor proident incididunt consequat. Duis nisi culpa exercitation aliquip aute occaecat esse. Lorem incididunt proident quis voluptate cupidatat aliquip officia Lorem nostrud nulla elit enim magna et.\r\n", + "registered": "2016-10-16T08:11:34 +06:00", + "latitude": 49.677955, + "longitude": -118.838424, + "tags": [ + "nisi", + "commodo", + "ex", + "ut", + "minim", + "proident", + "ea" + ], + "friends": [ + { + "id": 0, + "name": "Manning Fowler" + }, + { + "id": 1, + "name": "Katina George" + }, + { + "id": 2, + "name": "White Mullins" + } + ], + "greeting": "Hello, Estella Russell! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021726149feb0f786a1e", + "index": 221, + "guid": "96b7ecbd-db97-4450-af32-17e3fb62b481", + "isActive": true, + "balance": "$1,562.16", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "brown", + "name": "Foster Boyle", + "gender": "male", + "company": "EWAVES", + "email": "fosterboyle@ewaves.com", + "phone": "+1 (925) 402-2235", + "address": "356 Paerdegat Avenue, Harold, Wyoming, 4201", + "about": "Incididunt mollit anim proident nostrud dolor in cillum exercitation ut consectetur. Amet eu velit consequat aliquip pariatur. Nisi nisi commodo amet cillum consectetur elit incididunt aliquip id ut nulla. Aliqua amet Lorem esse ex culpa. Anim ipsum non esse deserunt proident aute tempor ad veniam qui ea Lorem ad laborum.\r\n", + "registered": "2014-05-15T07:29:44 +06:00", + "latitude": -28.700359, + "longitude": -137.228043, + "tags": [ + "ad", + "nisi", + "in", + "consequat", + "dolor", + "occaecat", + "eu" + ], + "friends": [ + { + "id": 0, + "name": "Darlene Mooney" + }, + { + "id": 1, + "name": "Jennie Herring" + }, + { + "id": 2, + "name": "Elva Tucker" + } + ], + "greeting": "Hello, Foster Boyle! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217f3db0401df1c79b7", + "index": 222, + "guid": "79478b16-429b-466f-a15d-9acc045d8f0d", + "isActive": false, + "balance": "$3,140.12", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "green", + "name": "Dale Woodward", + "gender": "male", + "company": "LETPRO", + "email": "dalewoodward@letpro.com", + "phone": "+1 (922) 517-3412", + "address": "905 Herkimer Place, Denio, Maryland, 9994", + "about": "Dolor nostrud dolore non cillum consectetur adipisicing tempor consequat ad veniam sit cupidatat adipisicing. Tempor magna fugiat deserunt dolore ullamco elit id deserunt ut dolor aliquip irure. Nulla nulla nostrud est nostrud. Aliqua anim consequat do pariatur non esse ad nisi consequat veniam aliqua do aliquip laborum. Eiusmod ut duis tempor elit do adipisicing dolore nisi est eiusmod deserunt dolor. Voluptate incididunt duis anim ad adipisicing aliquip laboris. Aute elit id cillum minim amet laborum fugiat cupidatat veniam ex labore proident.\r\n", + "registered": "2017-07-28T11:16:45 +06:00", + "latitude": -31.947713, + "longitude": 175.197539, + "tags": [ + "ut", + "officia", + "voluptate", + "aute", + "culpa", + "minim", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Carrillo Sweeney" + }, + { + "id": 1, + "name": "Steele Bonner" + }, + { + "id": 2, + "name": "Delia Tyler" + } + ], + "greeting": "Hello, Dale Woodward! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217088809c18dbac4e9", + "index": 223, + "guid": "163a822e-b191-4762-8214-63299d84e79b", + "isActive": true, + "balance": "$3,103.87", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "brown", + "name": "Joni Hicks", + "gender": "female", + "company": "ZOLAVO", + "email": "jonihicks@zolavo.com", + "phone": "+1 (904) 437-2511", + "address": "278 Greene Avenue, Roulette, Louisiana, 2564", + "about": "Magna cillum tempor qui tempor quis esse nisi laboris duis proident incididunt dolore. Elit pariatur cupidatat et excepteur cillum Lorem aute non non minim reprehenderit et dolor eu. Anim reprehenderit non irure ex sint consequat mollit. In ex Lorem cillum pariatur proident aliqua nulla est ullamco pariatur do sunt.\r\n", + "registered": "2016-04-09T10:14:04 +06:00", + "latitude": -11.82374, + "longitude": 42.230984, + "tags": [ + "incididunt", + "consequat", + "velit", + "est", + "laborum", + "exercitation", + "fugiat" + ], + "friends": [ + { + "id": 0, + "name": "Catalina Christian" + }, + { + "id": 1, + "name": "Witt Vaughan" + }, + { + "id": 2, + "name": "Henry Hester" + } + ], + "greeting": "Hello, Joni Hicks! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021796517b7d895c3f94", + "index": 224, + "guid": "2849793f-ccee-47b9-a4ca-e4f9a287f8f3", + "isActive": false, + "balance": "$2,387.23", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "brown", + "name": "Paulette Gamble", + "gender": "female", + "company": "ENAUT", + "email": "paulettegamble@enaut.com", + "phone": "+1 (981) 424-2664", + "address": "734 Keap Street, Downsville, Federated States Of Micronesia, 9737", + "about": "Ea id incididunt id cupidatat enim amet sunt minim adipisicing consectetur est et nulla. Fugiat eiusmod proident ex pariatur et labore aliquip minim mollit incididunt aliquip in do ullamco. Eiusmod id minim consequat ex labore ad velit aliquip nisi. Consectetur sunt Lorem non ex amet commodo elit consectetur excepteur culpa Lorem aute do nisi. Sint labore pariatur proident dolore quis amet excepteur. Aliquip commodo proident est id eiusmod culpa enim ut.\r\n", + "registered": "2016-12-01T08:59:09 +07:00", + "latitude": -57.331845, + "longitude": 95.872372, + "tags": [ + "eu", + "et", + "duis", + "ad", + "esse", + "proident", + "deserunt" + ], + "friends": [ + { + "id": 0, + "name": "Sabrina Conley" + }, + { + "id": 1, + "name": "Freeman Wise" + }, + { + "id": 2, + "name": "Guzman Whitney" + } + ], + "greeting": "Hello, Paulette Gamble! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217a900938e72ce2678", + "index": 225, + "guid": "87f2b634-690d-4f84-beef-8580194374d1", + "isActive": true, + "balance": "$3,526.01", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "blue", + "name": "Pat Dean", + "gender": "female", + "company": "SONGBIRD", + "email": "patdean@songbird.com", + "phone": "+1 (946) 584-2614", + "address": "859 Heyward Street, Marion, Pennsylvania, 7014", + "about": "Eu occaecat aute duis sunt dolore ut. Minim amet sit sunt aute Lorem ut voluptate laboris reprehenderit proident est aute sit reprehenderit. Dolor aliquip eiusmod est eu commodo qui excepteur reprehenderit dolor eu consequat ad do ut. Consectetur ex eiusmod laborum culpa.\r\n", + "registered": "2017-02-03T03:27:30 +07:00", + "latitude": 30.0669, + "longitude": -19.4284, + "tags": [ + "esse", + "occaecat", + "pariatur", + "enim", + "do", + "ullamco", + "non" + ], + "friends": [ + { + "id": 0, + "name": "Sloan Mercer" + }, + { + "id": 1, + "name": "Eileen Frazier" + }, + { + "id": 2, + "name": "Cruz Emerson" + } + ], + "greeting": "Hello, Pat Dean! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021786b8dbe55458d313", + "index": 226, + "guid": "ba16d45e-8084-407a-891f-8419568a4039", + "isActive": false, + "balance": "$3,507.64", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "green", + "name": "Schwartz Cohen", + "gender": "male", + "company": "FLUMBO", + "email": "schwartzcohen@flumbo.com", + "phone": "+1 (867) 457-3340", + "address": "883 Sullivan Street, Katonah, Vermont, 9752", + "about": "Deserunt duis laborum aute fugiat. Ut eu excepteur in reprehenderit minim. Culpa laboris consectetur mollit ad Lorem ea duis aliqua. Velit dolore quis ea cillum in exercitation mollit anim sit ex quis. Magna fugiat non nisi ea commodo exercitation sint aute.\r\n", + "registered": "2017-07-06T03:40:53 +06:00", + "latitude": 30.334111, + "longitude": -143.088588, + "tags": [ + "Lorem", + "ipsum", + "in", + "id", + "velit", + "Lorem", + "veniam" + ], + "friends": [ + { + "id": 0, + "name": "Willie Benjamin" + }, + { + "id": 1, + "name": "Barbra Howard" + }, + { + "id": 2, + "name": "Yates Ortega" + } + ], + "greeting": "Hello, Schwartz Cohen! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302178e64474d9490b6d7", + "index": 227, + "guid": "4966b98a-773b-430b-a7d0-82725db3809e", + "isActive": true, + "balance": "$1,243.02", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Beverley Walker", + "gender": "female", + "company": "ATGEN", + "email": "beverleywalker@atgen.com", + "phone": "+1 (967) 594-2416", + "address": "130 Ovington Avenue, Loma, Maine, 4270", + "about": "Eu pariatur voluptate laborum ea deserunt excepteur deserunt deserunt sint magna. Laboris non labore voluptate quis enim mollit minim mollit exercitation pariatur mollit cupidatat. Aliqua commodo excepteur ipsum elit. Fugiat est ea enim elit id non reprehenderit aliquip aliquip tempor. Sunt aute sint irure dolor ipsum.\r\n", + "registered": "2017-12-05T05:21:15 +07:00", + "latitude": -68.081176, + "longitude": 54.736656, + "tags": [ + "laboris", + "ea", + "aliquip", + "dolore", + "sunt", + "mollit", + "adipisicing" + ], + "friends": [ + { + "id": 0, + "name": "Jeannine Curry" + }, + { + "id": 1, + "name": "Reynolds Fletcher" + }, + { + "id": 2, + "name": "Serrano Harris" + } + ], + "greeting": "Hello, Beverley Walker! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021717f5709aee2d83d0", + "index": 228, + "guid": "703c3017-53d9-445c-ad9f-ded17300e5b3", + "isActive": false, + "balance": "$1,074.42", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "brown", + "name": "Desiree Navarro", + "gender": "female", + "company": "QUADEEBO", + "email": "desireenavarro@quadeebo.com", + "phone": "+1 (976) 495-2007", + "address": "822 Leonard Street, Wikieup, Alaska, 4353", + "about": "Aliquip ullamco adipisicing anim occaecat nostrud consequat tempor sunt non nisi pariatur. Ea nostrud consequat nisi nulla dolore minim velit. Mollit aute anim ea reprehenderit nulla. Ea veniam voluptate tempor deserunt. Non aliqua sit mollit consectetur proident ullamco adipisicing ex. Officia excepteur excepteur cillum proident qui voluptate labore aliqua nostrud deserunt excepteur do irure.\r\n", + "registered": "2016-12-17T07:38:46 +07:00", + "latitude": -61.53666, + "longitude": -143.604382, + "tags": [ + "id", + "pariatur", + "velit", + "cillum", + "adipisicing", + "mollit", + "ipsum" + ], + "friends": [ + { + "id": 0, + "name": "Shanna Harrison" + }, + { + "id": 1, + "name": "Flora Marks" + }, + { + "id": 2, + "name": "Hurley Gray" + } + ], + "greeting": "Hello, Desiree Navarro! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302173cd1b347273de029", + "index": 229, + "guid": "954d4280-15ea-4287-ad81-cd6775ad476e", + "isActive": false, + "balance": "$3,200.09", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "green", + "name": "Virginia Good", + "gender": "female", + "company": "POOCHIES", + "email": "virginiagood@poochies.com", + "phone": "+1 (914) 495-3781", + "address": "635 Dennett Place, Dola, Palau, 8886", + "about": "In duis non ea officia ut qui aute do occaecat dolore. Ad aliquip velit laboris eu magna dolore laboris in voluptate. Labore mollit sit aute labore mollit esse eiusmod ut esse aute non. Minim qui tempor et laborum non proident consequat labore mollit culpa.\r\n", + "registered": "2016-05-01T06:56:20 +06:00", + "latitude": -35.364199, + "longitude": 57.910049, + "tags": [ + "occaecat", + "laborum", + "aute", + "et", + "duis", + "irure", + "exercitation" + ], + "friends": [ + { + "id": 0, + "name": "Medina Murray" + }, + { + "id": 1, + "name": "Lindsey Luna" + }, + { + "id": 2, + "name": "Jessica Espinoza" + } + ], + "greeting": "Hello, Virginia Good! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217b683cddb2aea0c40", + "index": 230, + "guid": "9d62814e-4059-40b4-aa93-386190679069", + "isActive": true, + "balance": "$3,506.59", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "brown", + "name": "Owens Holder", + "gender": "male", + "company": "UBERLUX", + "email": "owensholder@uberlux.com", + "phone": "+1 (900) 532-3656", + "address": "502 Townsend Street, Basye, Arkansas, 5781", + "about": "Aute dolor cillum reprehenderit et est culpa laborum sint minim quis. Mollit sit tempor occaecat cillum ipsum. Laborum tempor sit ullamco exercitation labore elit Lorem.\r\n", + "registered": "2017-02-13T11:32:09 +07:00", + "latitude": -31.839489, + "longitude": 66.060973, + "tags": [ + "consectetur", + "in", + "dolore", + "elit", + "dolor", + "est", + "duis" + ], + "friends": [ + { + "id": 0, + "name": "Frank Spencer" + }, + { + "id": 1, + "name": "Jewell Allison" + }, + { + "id": 2, + "name": "Nadia Edwards" + } + ], + "greeting": "Hello, Owens Holder! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217a35a87adb0e61a39", + "index": 231, + "guid": "4f9c1ba3-d3a9-4e8e-9663-a6d2ac861f47", + "isActive": true, + "balance": "$2,973.81", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "blue", + "name": "Yang Nelson", + "gender": "male", + "company": "OCTOCORE", + "email": "yangnelson@octocore.com", + "phone": "+1 (967) 425-2796", + "address": "171 Garnet Street, Wheatfields, Florida, 9802", + "about": "Consequat id fugiat ex laborum aliqua ea velit in et dolor. Mollit ad sit amet qui incididunt consectetur anim. Eu ex est in proident eu in culpa commodo aliqua esse. Proident consectetur voluptate exercitation sint aliqua ut. Aute ullamco enim exercitation velit enim dolore aute exercitation do adipisicing pariatur excepteur elit veniam. Laborum sit ipsum exercitation cillum culpa laborum minim aliquip aliqua irure anim veniam consectetur.\r\n", + "registered": "2017-11-16T02:29:51 +07:00", + "latitude": 23.754627, + "longitude": -4.462414, + "tags": [ + "Lorem", + "ex", + "cillum", + "veniam", + "est", + "labore", + "pariatur" + ], + "friends": [ + { + "id": 0, + "name": "Bradford Durham" + }, + { + "id": 1, + "name": "Lizzie Hudson" + }, + { + "id": 2, + "name": "Mercedes Richards" + } + ], + "greeting": "Hello, Yang Nelson! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302171e3a47e77f1bfcb9", + "index": 232, + "guid": "1070c559-53e7-4ec1-9afd-b4a373a81ea0", + "isActive": true, + "balance": "$1,216.95", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "blue", + "name": "Lyons Wilkinson", + "gender": "male", + "company": "POLARIUM", + "email": "lyonswilkinson@polarium.com", + "phone": "+1 (942) 529-2889", + "address": "130 Erasmus Street, Coultervillle, Puerto Rico, 8224", + "about": "Exercitation culpa minim consectetur officia. Ex cillum enim enim amet enim. In in adipisicing quis veniam dolor do velit sunt nostrud cillum velit eiusmod culpa pariatur. Aliqua id aute enim do aliqua culpa sit sint nulla. Ex occaecat id commodo sint officia mollit deserunt amet exercitation duis.\r\n", + "registered": "2015-05-19T02:29:30 +06:00", + "latitude": -45.013577, + "longitude": 153.550029, + "tags": [ + "commodo", + "officia", + "in", + "qui", + "ullamco", + "commodo", + "esse" + ], + "friends": [ + { + "id": 0, + "name": "Kaufman Howell" + }, + { + "id": 1, + "name": "Kayla Cruz" + }, + { + "id": 2, + "name": "Dawn Talley" + } + ], + "greeting": "Hello, Lyons Wilkinson! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302171be9bd34c6896b0f", + "index": 233, + "guid": "2de6a153-eb9b-46b5-984e-c257943e7fdc", + "isActive": false, + "balance": "$1,606.37", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "brown", + "name": "Strong Dyer", + "gender": "male", + "company": "ZAYA", + "email": "strongdyer@zaya.com", + "phone": "+1 (926) 512-2491", + "address": "112 Durland Place, Martinez, Hawaii, 2321", + "about": "Cillum voluptate nisi laboris nostrud elit cupidatat sit enim ad commodo esse exercitation. Magna consequat exercitation voluptate minim. Mollit sit culpa voluptate nulla aute irure voluptate et. Ea amet dolor cupidatat nulla in ad proident ipsum nostrud officia deserunt sint tempor voluptate. Ipsum Lorem cupidatat ea amet eu consequat ullamco culpa duis esse incididunt in. Excepteur id nisi et aliquip deserunt minim irure.\r\n", + "registered": "2017-05-21T08:17:14 +06:00", + "latitude": -86.904406, + "longitude": -28.711022, + "tags": [ + "ex", + "officia", + "officia", + "ipsum", + "occaecat", + "anim", + "et" + ], + "friends": [ + { + "id": 0, + "name": "April Chandler" + }, + { + "id": 1, + "name": "Huber Raymond" + }, + { + "id": 2, + "name": "Booker Kelly" + } + ], + "greeting": "Hello, Strong Dyer! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217dbd6fab49c9320aa", + "index": 234, + "guid": "f812d08c-e7c0-44fb-bf30-ae40339cc0bd", + "isActive": true, + "balance": "$1,661.50", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "brown", + "name": "Ethel Mcbride", + "gender": "female", + "company": "ISOPOP", + "email": "ethelmcbride@isopop.com", + "phone": "+1 (982) 558-2199", + "address": "422 Ellery Street, Juarez, American Samoa, 2016", + "about": "Laboris occaecat sunt anim eu commodo fugiat ut ut. Ut veniam velit proident velit et consectetur esse. Sunt voluptate est Lorem id dolor ad. Adipisicing nisi sit nulla laboris non exercitation tempor aute sint labore adipisicing anim et duis. Anim culpa qui exercitation aute in sint culpa enim labore tempor exercitation consequat. Ullamco in magna nisi mollit adipisicing. Anim pariatur veniam est laborum id labore eu esse Lorem non sint officia.\r\n", + "registered": "2016-10-30T09:19:17 +06:00", + "latitude": 21.217313, + "longitude": 64.316252, + "tags": [ + "eiusmod", + "qui", + "dolore", + "eiusmod", + "veniam", + "velit", + "pariatur" + ], + "friends": [ + { + "id": 0, + "name": "Queen David" + }, + { + "id": 1, + "name": "Fitzgerald Goff" + }, + { + "id": 2, + "name": "Terri Ratliff" + } + ], + "greeting": "Hello, Ethel Mcbride! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217b00ce4eb1e169f6b", + "index": 235, + "guid": "27154996-3cff-4e27-aadd-edc34e4a8621", + "isActive": false, + "balance": "$1,068.14", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "brown", + "name": "Cherry Simpson", + "gender": "female", + "company": "ZBOO", + "email": "cherrysimpson@zboo.com", + "phone": "+1 (913) 569-3750", + "address": "954 Gem Street, Lydia, Indiana, 3545", + "about": "Sint aliqua irure dolore sint veniam do id cillum duis aute occaecat voluptate. Ut reprehenderit est aute ut minim proident tempor culpa amet sunt adipisicing proident exercitation deserunt. Dolore ut est occaecat labore Lorem aliqua enim ad minim minim cillum sunt non. Aliquip excepteur et quis enim do id sit non. Minim elit duis mollit labore elit est. Magna aute labore cupidatat Lorem consectetur nulla ex eu esse. Sint veniam ad deserunt nulla reprehenderit commodo do id.\r\n", + "registered": "2015-10-06T08:22:45 +06:00", + "latitude": 11.802542, + "longitude": -37.062345, + "tags": [ + "aliquip", + "aliquip", + "consectetur", + "sit", + "ea", + "do", + "sit" + ], + "friends": [ + { + "id": 0, + "name": "Rosa Wheeler" + }, + { + "id": 1, + "name": "Faith Hunt" + }, + { + "id": 2, + "name": "Maryellen Craft" + } + ], + "greeting": "Hello, Cherry Simpson! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217f7e55bcc1af3b60e", + "index": 236, + "guid": "fc3eecde-6516-4032-89ec-1d45b0918bb8", + "isActive": true, + "balance": "$1,493.20", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "blue", + "name": "Bridgette Holman", + "gender": "female", + "company": "MAGNINA", + "email": "bridgetteholman@magnina.com", + "phone": "+1 (954) 418-2416", + "address": "435 Dewey Place, Crenshaw, Missouri, 9292", + "about": "Eu Lorem eu labore cupidatat excepteur officia voluptate adipisicing qui excepteur tempor proident id proident. Minim sint ex magna sint ea eu consequat amet est in. Nostrud duis est sit sit. Elit tempor elit velit deserunt pariatur. Esse et magna non reprehenderit ut anim. Veniam eiusmod nostrud voluptate culpa ut ex labore esse sint et aute eiusmod minim reprehenderit.\r\n", + "registered": "2014-03-22T01:55:14 +06:00", + "latitude": 71.615352, + "longitude": 6.651732, + "tags": [ + "ad", + "in", + "cillum", + "aliqua", + "enim", + "proident", + "ut" + ], + "friends": [ + { + "id": 0, + "name": "Delaney Gonzales" + }, + { + "id": 1, + "name": "Rosanna Weeks" + }, + { + "id": 2, + "name": "Chasity Estrada" + } + ], + "greeting": "Hello, Bridgette Holman! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217ffe3ac653999d32e", + "index": 237, + "guid": "7d992006-4034-45e8-a7b4-42c5fa945712", + "isActive": false, + "balance": "$2,057.96", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "blue", + "name": "Burns Bartlett", + "gender": "male", + "company": "OVIUM", + "email": "burnsbartlett@ovium.com", + "phone": "+1 (963) 431-3426", + "address": "737 Voorhies Avenue, Ebro, Guam, 4245", + "about": "Aute cillum nulla sint adipisicing amet ipsum. Ad ipsum eiusmod ex nostrud officia cupidatat aute deserunt magna laboris irure sit. Id duis nisi non anim aliqua. Ex adipisicing magna sint commodo officia. Magna cillum minim anim qui eiusmod exercitation aute est enim cillum officia ut fugiat. Eiusmod velit nisi occaecat aliqua anim ea eiusmod Lorem eiusmod cupidatat eiusmod ipsum. Dolore nisi minim elit veniam velit irure incididunt.\r\n", + "registered": "2016-10-06T03:49:46 +06:00", + "latitude": 73.512757, + "longitude": 9.175247, + "tags": [ + "aute", + "adipisicing", + "aliquip", + "eu", + "ad", + "pariatur", + "cillum" + ], + "friends": [ + { + "id": 0, + "name": "Holden Hart" + }, + { + "id": 1, + "name": "Harrell Austin" + }, + { + "id": 2, + "name": "Patterson Monroe" + } + ], + "greeting": "Hello, Burns Bartlett! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217c938ea3b1f51ca71", + "index": 238, + "guid": "0a1ec50d-fcac-4a21-85fb-32f9495db2cb", + "isActive": false, + "balance": "$2,634.51", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "blue", + "name": "Josefina Hall", + "gender": "female", + "company": "BEDDER", + "email": "josefinahall@bedder.com", + "phone": "+1 (970) 443-3158", + "address": "771 Rutledge Street, Neahkahnie, Minnesota, 5200", + "about": "Aliquip proident exercitation labore ipsum voluptate occaecat. Ex adipisicing eu in culpa enim voluptate incididunt laboris pariatur dolor. Eiusmod dolore duis ex cupidatat esse do ipsum quis velit. Officia consectetur mollit eu magna ipsum ipsum velit anim eiusmod nostrud velit nostrud excepteur dolore. Adipisicing proident sit ullamco laborum ea id ex officia fugiat nostrud.\r\n", + "registered": "2014-05-02T06:26:41 +06:00", + "latitude": -67.787934, + "longitude": 124.969117, + "tags": [ + "pariatur", + "qui", + "sint", + "sunt", + "ad", + "reprehenderit", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Jenny Shepard" + }, + { + "id": 1, + "name": "Tiffany Castro" + }, + { + "id": 2, + "name": "Ronda Benton" + } + ], + "greeting": "Hello, Josefina Hall! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302170b2ff5a57e704715", + "index": 239, + "guid": "af534b6e-a8c4-4f28-af9a-58ab1c42408a", + "isActive": false, + "balance": "$3,533.68", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "green", + "name": "Susanna Steele", + "gender": "female", + "company": "PLAYCE", + "email": "susannasteele@playce.com", + "phone": "+1 (970) 493-2730", + "address": "192 Benson Avenue, Callaghan, Delaware, 3746", + "about": "Ipsum fugiat adipisicing id sit aliqua ex culpa cillum ipsum. Fugiat incididunt sit nisi voluptate aute eiusmod esse ullamco aute exercitation sunt aliqua ex veniam. Culpa ullamco consectetur sit ut dolore Lorem excepteur aliquip incididunt aute. Magna officia adipisicing ea anim sint nisi. Deserunt sunt eiusmod do veniam Lorem.\r\n", + "registered": "2017-04-09T08:41:54 +06:00", + "latitude": -27.340526, + "longitude": -71.259999, + "tags": [ + "duis", + "cupidatat", + "officia", + "officia", + "consectetur", + "non", + "nulla" + ], + "friends": [ + { + "id": 0, + "name": "Jane Valencia" + }, + { + "id": 1, + "name": "Myrtle Finch" + }, + { + "id": 2, + "name": "Hogan Cannon" + } + ], + "greeting": "Hello, Susanna Steele! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217886f818270e87776", + "index": 240, + "guid": "877e5a96-43c1-48ee-a59f-4855ecc17e25", + "isActive": true, + "balance": "$2,256.32", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "brown", + "name": "Padilla Shepherd", + "gender": "male", + "company": "RECOGNIA", + "email": "padillashepherd@recognia.com", + "phone": "+1 (833) 544-3770", + "address": "774 Railroad Avenue, Chestnut, Kansas, 1598", + "about": "Sunt et aliquip eiusmod proident labore minim nostrud officia occaecat esse enim consequat ex proident. Qui anim sit velit id minim sit pariatur ullamco. Adipisicing aliqua dolor in est incididunt ad eiusmod eu. Anim sint velit voluptate culpa est dolore cillum aliquip velit deserunt laborum qui dolore. Deserunt in sit deserunt fugiat exercitation et incididunt. Anim exercitation laboris non Lorem occaecat eiusmod tempor velit minim do dolor Lorem sint. Amet ut adipisicing commodo reprehenderit reprehenderit id tempor sint ea fugiat est incididunt esse.\r\n", + "registered": "2015-05-26T02:32:53 +06:00", + "latitude": -24.131718, + "longitude": -169.660964, + "tags": [ + "dolore", + "esse", + "id", + "laborum", + "id", + "aute", + "fugiat" + ], + "friends": [ + { + "id": 0, + "name": "Cotton Pate" + }, + { + "id": 1, + "name": "Hernandez Pierce" + }, + { + "id": 2, + "name": "Stefanie Elliott" + } + ], + "greeting": "Hello, Padilla Shepherd! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302171955ed3ccde0682e", + "index": 241, + "guid": "a06c98d0-fc56-4dd2-9322-297dc8bc168c", + "isActive": false, + "balance": "$1,518.91", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Wolfe Pickett", + "gender": "male", + "company": "DANCITY", + "email": "wolfepickett@dancity.com", + "phone": "+1 (892) 402-3047", + "address": "319 Duryea Place, Harrison, Washington, 8319", + "about": "Eu enim elit commodo ad minim. Velit ex irure est ipsum exercitation consequat eiusmod id deserunt commodo. Aliquip officia exercitation ipsum dolor laborum deserunt aliqua proident. Nostrud ipsum aliquip dolore eu sunt eiusmod cupidatat ipsum incididunt fugiat. Dolor exercitation quis ea deserunt.\r\n", + "registered": "2015-08-06T04:00:18 +06:00", + "latitude": 72.149421, + "longitude": 113.570101, + "tags": [ + "occaecat", + "aliquip", + "laboris", + "sit", + "consequat", + "nostrud", + "esse" + ], + "friends": [ + { + "id": 0, + "name": "Dorthy Sears" + }, + { + "id": 1, + "name": "Vega Livingston" + }, + { + "id": 2, + "name": "Stevenson Dawson" + } + ], + "greeting": "Hello, Wolfe Pickett! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302175d96adc6dab434ab", + "index": 242, + "guid": "f628c910-b652-4606-b8ae-2802a1aa7a74", + "isActive": false, + "balance": "$2,557.72", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Flossie Gallagher", + "gender": "female", + "company": "CINCYR", + "email": "flossiegallagher@cincyr.com", + "phone": "+1 (913) 433-2185", + "address": "756 Joval Court, Sabillasville, Oklahoma, 4949", + "about": "Ex duis Lorem magna non qui Lorem Lorem magna eiusmod dolor. Ipsum dolore duis Lorem est ea anim est enim voluptate. Et ullamco non dolor sit laboris adipisicing commodo eu magna. Aliqua occaecat consequat Lorem enim officia ut non ipsum.\r\n", + "registered": "2014-02-16T08:21:09 +07:00", + "latitude": -56.159569, + "longitude": -127.980768, + "tags": [ + "aliquip", + "minim", + "excepteur", + "laboris", + "fugiat", + "reprehenderit", + "elit" + ], + "friends": [ + { + "id": 0, + "name": "Hull Guzman" + }, + { + "id": 1, + "name": "Bauer Parks" + }, + { + "id": 2, + "name": "Fisher Hines" + } + ], + "greeting": "Hello, Flossie Gallagher! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302176a2f2ec75133f06f", + "index": 243, + "guid": "30f9707a-8fbe-4a5b-ab7d-5e2c5d4bb962", + "isActive": false, + "balance": "$3,884.27", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "blue", + "name": "Salas England", + "gender": "male", + "company": "IMKAN", + "email": "salasengland@imkan.com", + "phone": "+1 (812) 443-3149", + "address": "925 Henry Street, Jardine, Kentucky, 5137", + "about": "Ut laborum id culpa laboris. Occaecat Lorem magna aute esse sint tempor. Est irure non non consectetur duis.\r\n", + "registered": "2018-01-03T04:56:27 +07:00", + "latitude": 43.566671, + "longitude": -32.993214, + "tags": [ + "adipisicing", + "aliquip", + "nisi", + "enim", + "ipsum", + "consequat", + "et" + ], + "friends": [ + { + "id": 0, + "name": "Kenya Blackwell" + }, + { + "id": 1, + "name": "Dixon Mccray" + }, + { + "id": 2, + "name": "Jordan Roman" + } + ], + "greeting": "Hello, Salas England! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217512d50bfddbc585d", + "index": 244, + "guid": "926417f4-a836-42c5-b198-c58254c5aee0", + "isActive": false, + "balance": "$1,902.80", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "green", + "name": "Hudson Bowman", + "gender": "male", + "company": "EVENTEX", + "email": "hudsonbowman@eventex.com", + "phone": "+1 (897) 459-3505", + "address": "330 Murdock Court, Edinburg, Alabama, 5807", + "about": "Esse ipsum deserunt sunt aliqua. Enim incididunt nisi sunt labore nisi et anim. Nulla velit laboris et anim ipsum Lorem mollit laborum esse elit eiusmod. Adipisicing sunt et minim elit non ex labore do occaecat voluptate anim qui occaecat.\r\n", + "registered": "2016-04-27T04:36:06 +06:00", + "latitude": -51.315393, + "longitude": 162.563974, + "tags": [ + "labore", + "nulla", + "consequat", + "sunt", + "consectetur", + "veniam", + "ea" + ], + "friends": [ + { + "id": 0, + "name": "Amber Carroll" + }, + { + "id": 1, + "name": "Robyn Farrell" + }, + { + "id": 2, + "name": "Cash Francis" + } + ], + "greeting": "Hello, Hudson Bowman! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217d745cb5c43f00bca", + "index": 245, + "guid": "844aca5b-a27c-4adc-9c7c-a12a79549410", + "isActive": false, + "balance": "$3,814.91", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "green", + "name": "Cecelia Reid", + "gender": "female", + "company": "ORBOID", + "email": "ceceliareid@orboid.com", + "phone": "+1 (898) 423-2415", + "address": "570 Dwight Street, Ferney, West Virginia, 5051", + "about": "Aliquip ipsum nostrud amet aute ut aliqua cillum enim irure elit culpa incididunt do. Excepteur culpa sit officia reprehenderit nulla laboris nisi est minim proident nostrud officia consectetur officia. Excepteur dolor velit ad dolore enim esse eu. Aute excepteur laboris magna nulla nulla. Occaecat eiusmod esse dolore aliqua nostrud ut irure pariatur ea deserunt aute cillum incididunt.\r\n", + "registered": "2016-09-10T03:49:05 +06:00", + "latitude": -87.30286, + "longitude": 103.81877, + "tags": [ + "est", + "duis", + "officia", + "laborum", + "adipisicing", + "deserunt", + "dolore" + ], + "friends": [ + { + "id": 0, + "name": "Ila Ewing" + }, + { + "id": 1, + "name": "Bonita Taylor" + }, + { + "id": 2, + "name": "Lou Stephenson" + } + ], + "greeting": "Hello, Cecelia Reid! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021759b3389853e1d1a6", + "index": 246, + "guid": "b9ad49fa-dd32-41ec-954f-22f4dbbdf4ee", + "isActive": false, + "balance": "$1,489.24", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "brown", + "name": "Thompson Mcdonald", + "gender": "male", + "company": "INTERFIND", + "email": "thompsonmcdonald@interfind.com", + "phone": "+1 (898) 540-2563", + "address": "240 Grace Court, Caberfae, Ohio, 4944", + "about": "Aliquip laboris ipsum est adipisicing ea aute pariatur magna. Ut consectetur id eiusmod enim do. Qui aliquip excepteur ex esse eu deserunt mollit velit est proident nostrud pariatur labore. Aliquip non magna aute adipisicing minim. In esse consequat eiusmod laborum esse dolore sunt aliquip id fugiat fugiat. Anim quis sit elit in aute eiusmod id dolore reprehenderit sint officia.\r\n", + "registered": "2015-08-18T03:28:06 +06:00", + "latitude": 89.707347, + "longitude": 163.339347, + "tags": [ + "culpa", + "culpa", + "id", + "culpa", + "est", + "ullamco", + "duis" + ], + "friends": [ + { + "id": 0, + "name": "Jodi Griffith" + }, + { + "id": 1, + "name": "Morgan Morin" + }, + { + "id": 2, + "name": "Evangelina Griffin" + } + ], + "greeting": "Hello, Thompson Mcdonald! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302171e0e0cc3e9fca322", + "index": 247, + "guid": "e8ede9bc-2d60-4aae-a8dc-66aeb1f04eb4", + "isActive": true, + "balance": "$3,018.73", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "green", + "name": "Stephanie Huber", + "gender": "female", + "company": "KROG", + "email": "stephaniehuber@krog.com", + "phone": "+1 (907) 497-3555", + "address": "396 Chestnut Street, Galesville, Connecticut, 4301", + "about": "Sunt ex culpa consectetur ut esse cupidatat eu aliquip laboris sint voluptate minim excepteur ex. Adipisicing nisi Lorem cupidatat qui cillum est laboris dolore aliqua veniam exercitation ullamco. Laboris irure mollit ullamco cillum excepteur deserunt magna adipisicing quis dolore proident commodo. Nisi et fugiat eiusmod occaecat Lorem labore elit duis est magna officia cupidatat. Enim consequat ullamco sunt commodo fugiat laborum nulla qui do. Sint nostrud veniam irure sit occaecat irure duis ea ipsum. Dolore consectetur et non nostrud aliquip do occaecat ipsum eu culpa.\r\n", + "registered": "2015-01-08T08:37:54 +07:00", + "latitude": -36.463339, + "longitude": 132.27879, + "tags": [ + "Lorem", + "sit", + "qui", + "minim", + "officia", + "aliqua", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "Hodges Caldwell" + }, + { + "id": 1, + "name": "Florine Mcmahon" + }, + { + "id": 2, + "name": "Lorrie Lynn" + } + ], + "greeting": "Hello, Stephanie Huber! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217defd5c6fae96e9b8", + "index": 248, + "guid": "75e9ca90-0c5d-409d-8a8c-3211a1d89c59", + "isActive": false, + "balance": "$3,742.14", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "blue", + "name": "Angela Gaines", + "gender": "female", + "company": "XSPORTS", + "email": "angelagaines@xsports.com", + "phone": "+1 (863) 581-2210", + "address": "908 Halsey Street, Bridgetown, North Dakota, 8010", + "about": "Nostrud reprehenderit incididunt exercitation commodo qui duis occaecat tempor deserunt aliqua sit exercitation consequat. Laborum deserunt non tempor pariatur eu mollit cillum dolor. Qui duis ut velit pariatur deserunt consequat commodo.\r\n", + "registered": "2017-06-18T02:48:40 +06:00", + "latitude": 42.847322, + "longitude": 49.675146, + "tags": [ + "amet", + "irure", + "occaecat", + "aute", + "dolor", + "fugiat", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Marta Huffman" + }, + { + "id": 1, + "name": "Merritt Macias" + }, + { + "id": 2, + "name": "Goodwin Pitts" + } + ], + "greeting": "Hello, Angela Gaines! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021716145bef32a495e5", + "index": 249, + "guid": "c8abb9ee-9049-4c68-9a68-7318668cd808", + "isActive": false, + "balance": "$2,841.03", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Charles Maddox", + "gender": "male", + "company": "ARCTIQ", + "email": "charlesmaddox@arctiq.com", + "phone": "+1 (939) 458-3130", + "address": "156 Rochester Avenue, Bethpage, Mississippi, 1585", + "about": "Occaecat amet in quis aliquip incididunt non commodo culpa exercitation ex dolore aliquip officia. Dolore mollit aute anim irure sint proident aute exercitation consectetur minim. Irure voluptate incididunt eiusmod quis occaecat irure duis commodo irure officia reprehenderit officia ea ullamco. Tempor ullamco veniam culpa id reprehenderit incididunt enim eu aliqua ullamco ullamco reprehenderit deserunt ipsum. Do fugiat incididunt sunt officia adipisicing incididunt esse exercitation veniam consectetur minim ea commodo consequat. Proident excepteur adipisicing tempor deserunt. Magna excepteur officia occaecat aliqua duis et do anim aliquip est labore.\r\n", + "registered": "2017-05-21T02:26:41 +06:00", + "latitude": 20.155901, + "longitude": 129.713386, + "tags": [ + "dolore", + "do", + "non", + "Lorem", + "mollit", + "velit", + "sit" + ], + "friends": [ + { + "id": 0, + "name": "Olson Hancock" + }, + { + "id": 1, + "name": "Tanisha Mendoza" + }, + { + "id": 2, + "name": "Whitney Bowers" + } + ], + "greeting": "Hello, Charles Maddox! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302176bcf666cb16d981e", + "index": 250, + "guid": "ab12f230-05e1-49ad-af48-9618d7f50c4c", + "isActive": false, + "balance": "$2,041.93", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "blue", + "name": "Nguyen Diaz", + "gender": "male", + "company": "KRAG", + "email": "nguyendiaz@krag.com", + "phone": "+1 (803) 581-3094", + "address": "646 Celeste Court, Oberlin, New York, 6584", + "about": "Sit nostrud eiusmod ipsum quis sunt. Amet tempor Lorem occaecat fugiat velit. Enim cupidatat voluptate fugiat sint quis. Occaecat elit in mollit excepteur mollit nisi magna reprehenderit do occaecat consectetur elit aute. Dolor fugiat elit aliquip fugiat sunt id commodo et deserunt id dolor fugiat.\r\n", + "registered": "2016-09-11T04:16:31 +06:00", + "latitude": 28.099238, + "longitude": -115.039332, + "tags": [ + "nostrud", + "laborum", + "fugiat", + "ullamco", + "et", + "adipisicing", + "consectetur" + ], + "friends": [ + { + "id": 0, + "name": "Chrystal Church" + }, + { + "id": 1, + "name": "Janna Stewart" + }, + { + "id": 2, + "name": "Crystal Wong" + } + ], + "greeting": "Hello, Nguyen Diaz! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217213368d6ee6ee58f", + "index": 251, + "guid": "ee0a3f0a-537b-45ea-8cb1-e45706564bbd", + "isActive": true, + "balance": "$2,815.19", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "blue", + "name": "John Mcpherson", + "gender": "female", + "company": "YOGASM", + "email": "johnmcpherson@yogasm.com", + "phone": "+1 (849) 551-3507", + "address": "922 Bank Street, Ventress, Oregon, 7682", + "about": "Ad sit anim quis qui non ut anim deserunt velit deserunt labore amet eiusmod. Non irure et ad deserunt cupidatat. Fugiat eiusmod do laboris et cupidatat deserunt enim amet Lorem est cillum commodo.\r\n", + "registered": "2017-01-07T04:40:02 +07:00", + "latitude": 26.025304, + "longitude": 18.144894, + "tags": [ + "cillum", + "aliqua", + "quis", + "cillum", + "nulla", + "esse", + "qui" + ], + "friends": [ + { + "id": 0, + "name": "Reid Tate" + }, + { + "id": 1, + "name": "Gay Small" + }, + { + "id": 2, + "name": "Barron Galloway" + } + ], + "greeting": "Hello, John Mcpherson! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217d211a739682d1138", + "index": 252, + "guid": "8e9033f9-117c-49f5-8e3c-eb6f6f204439", + "isActive": true, + "balance": "$2,469.29", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "green", + "name": "Judith Henry", + "gender": "female", + "company": "SECURIA", + "email": "judithhenry@securia.com", + "phone": "+1 (934) 469-2415", + "address": "871 Hudson Avenue, Ypsilanti, New Jersey, 1878", + "about": "Proident est dolore sint et incididunt eiusmod nisi. Est excepteur nisi culpa labore cupidatat velit est laborum ut et quis nostrud in. Nulla sint amet elit eu et et tempor. Sit quis pariatur dolor dolore id aliqua reprehenderit sit consequat ullamco excepteur. Mollit sunt veniam eiusmod voluptate Lorem ex eu consequat. Eiusmod et reprehenderit enim aute esse et est duis duis.\r\n", + "registered": "2016-08-13T02:15:02 +06:00", + "latitude": 37.426824, + "longitude": 19.485993, + "tags": [ + "labore", + "mollit", + "quis", + "dolore", + "nulla", + "voluptate", + "dolore" + ], + "friends": [ + { + "id": 0, + "name": "Tammie Dorsey" + }, + { + "id": 1, + "name": "Maryann Eaton" + }, + { + "id": 2, + "name": "Wanda Delaney" + } + ], + "greeting": "Hello, Judith Henry! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302178412e83eac2dbfd8", + "index": 253, + "guid": "1c969312-6152-435f-8eff-c10e9f96b37e", + "isActive": false, + "balance": "$2,673.14", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "brown", + "name": "Caroline Glass", + "gender": "female", + "company": "ZENOLUX", + "email": "carolineglass@zenolux.com", + "phone": "+1 (900) 508-3903", + "address": "791 Gelston Avenue, Derwood, Montana, 690", + "about": "Quis qui irure mollit pariatur exercitation fugiat esse ipsum. Et quis eiusmod exercitation amet consectetur exercitation dolor elit enim occaecat tempor duis laborum ex. Reprehenderit culpa est est minim sit enim nulla amet ad sit Lorem.\r\n", + "registered": "2014-01-27T12:54:22 +07:00", + "latitude": 49.386412, + "longitude": -15.019087, + "tags": [ + "excepteur", + "reprehenderit", + "esse", + "ex", + "deserunt", + "qui", + "deserunt" + ], + "friends": [ + { + "id": 0, + "name": "Mcconnell Spears" + }, + { + "id": 1, + "name": "Alejandra Haney" + }, + { + "id": 2, + "name": "Katy Chan" + } + ], + "greeting": "Hello, Caroline Glass! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302174392019003477e73", + "index": 254, + "guid": "c7cf2075-1a78-466d-ba8f-8bff168c9d63", + "isActive": false, + "balance": "$2,226.37", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Marcie William", + "gender": "female", + "company": "ANIMALIA", + "email": "marciewilliam@animalia.com", + "phone": "+1 (846) 527-2720", + "address": "791 Royce Place, Elbert, Nevada, 9775", + "about": "Mollit consequat eu et culpa minim aute commodo consequat commodo. Proident nostrud mollit in occaecat voluptate ea cillum eu et minim excepteur consequat id laboris. Velit sit nisi est qui. Deserunt cillum cillum culpa est anim minim ea consectetur. Sunt occaecat pariatur laboris aliquip eu ullamco. Culpa occaecat nostrud tempor quis incididunt non occaecat fugiat ea consequat id pariatur officia duis. Exercitation incididunt minim excepteur est ullamco laboris mollit elit anim ipsum eu.\r\n", + "registered": "2015-01-31T04:43:46 +07:00", + "latitude": -29.154723, + "longitude": -140.50501, + "tags": [ + "dolore", + "eu", + "proident", + "nostrud", + "consequat", + "voluptate", + "cupidatat" + ], + "friends": [ + { + "id": 0, + "name": "Watson Hammond" + }, + { + "id": 1, + "name": "Key Oneal" + }, + { + "id": 2, + "name": "Jean Randall" + } + ], + "greeting": "Hello, Marcie William! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302172b1a4646ba0b54a0", + "index": 255, + "guid": "70c4f7ec-b812-45d0-b3a8-780cb290b416", + "isActive": true, + "balance": "$1,829.38", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "green", + "name": "Manuela Morales", + "gender": "female", + "company": "SLAX", + "email": "manuelamorales@slax.com", + "phone": "+1 (823) 521-2651", + "address": "452 Franklin Street, Welda, Colorado, 7222", + "about": "Exercitation reprehenderit cillum aliquip ad ex nostrud culpa magna pariatur mollit. Officia labore voluptate mollit fugiat. Amet laborum consectetur ullamco dolor Lorem adipisicing proident fugiat laborum cupidatat. Labore laborum ad qui sint magna. Cillum minim ullamco id reprehenderit elit sunt do proident nostrud cupidatat. Sint ullamco ullamco enim amet.\r\n", + "registered": "2015-10-26T05:20:52 +06:00", + "latitude": -31.230978, + "longitude": -147.990854, + "tags": [ + "culpa", + "pariatur", + "tempor", + "ad", + "quis", + "proident", + "sit" + ], + "friends": [ + { + "id": 0, + "name": "Maude Vance" + }, + { + "id": 1, + "name": "Nona Horton" + }, + { + "id": 2, + "name": "Selena Weiss" + } + ], + "greeting": "Hello, Manuela Morales! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302175d61ec21b3c06123", + "index": 256, + "guid": "09fd2451-744c-422d-9039-5df30873b73d", + "isActive": true, + "balance": "$2,754.63", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "green", + "name": "Mitzi Stein", + "gender": "female", + "company": "COMSTAR", + "email": "mitzistein@comstar.com", + "phone": "+1 (986) 420-3913", + "address": "424 Bleecker Street, Osage, New Mexico, 7309", + "about": "Consequat eu ex dolore sit ut tempor nulla reprehenderit. Aliqua dolor cillum velit culpa anim non deserunt occaecat quis pariatur aliquip est. Excepteur dolore consectetur aute esse irure mollit ad nisi consequat non nisi culpa exercitation. Consectetur officia elit ut veniam ad esse aliquip sint sint. Qui amet ea sint esse excepteur qui dolor sint exercitation. Fugiat voluptate laborum enim sint.\r\n", + "registered": "2016-03-19T10:12:10 +06:00", + "latitude": -37.113913, + "longitude": 137.103661, + "tags": [ + "laborum", + "fugiat", + "aliqua", + "veniam", + "est", + "aliquip", + "amet" + ], + "friends": [ + { + "id": 0, + "name": "Humphrey Buckley" + }, + { + "id": 1, + "name": "Hatfield Sandoval" + }, + { + "id": 2, + "name": "Katharine Peterson" + } + ], + "greeting": "Hello, Mitzi Stein! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021717f874f47b617b30", + "index": 257, + "guid": "139c1a30-432c-4ad0-bb52-1e2b9074e28f", + "isActive": true, + "balance": "$3,682.15", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "blue", + "name": "Emerson Lopez", + "gender": "male", + "company": "CANOPOLY", + "email": "emersonlopez@canopoly.com", + "phone": "+1 (817) 571-2362", + "address": "326 Crosby Avenue, Bluffview, Texas, 5086", + "about": "Cupidatat consectetur laborum exercitation nisi. Do magna irure laboris eiusmod. Veniam laborum consectetur non veniam enim consequat duis id dolor sunt ipsum. Veniam excepteur aliqua tempor officia non sint qui proident sunt qui. Eu do labore anim amet aliqua duis dolor sunt deserunt eu ex nisi dolore nostrud.\r\n", + "registered": "2014-03-17T11:47:36 +06:00", + "latitude": 48.437186, + "longitude": 82.359353, + "tags": [ + "aliquip", + "fugiat", + "et", + "ea", + "esse", + "velit", + "ipsum" + ], + "friends": [ + { + "id": 0, + "name": "Willa Ware" + }, + { + "id": 1, + "name": "Nettie Kennedy" + }, + { + "id": 2, + "name": "Leblanc Sexton" + } + ], + "greeting": "Hello, Emerson Lopez! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217cfeaeaf5ea55936c", + "index": 258, + "guid": "647262d3-e526-49d3-a1dd-884153fc4979", + "isActive": false, + "balance": "$3,369.46", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "blue", + "name": "West Petty", + "gender": "male", + "company": "OMATOM", + "email": "westpetty@omatom.com", + "phone": "+1 (921) 483-3844", + "address": "101 Guernsey Street, Ahwahnee, North Carolina, 8044", + "about": "Irure nulla ex exercitation anim adipisicing do cillum id. Amet dolor et eu ad anim. Dolore ipsum nulla anim duis tempor. Ipsum aute dolore elit nisi voluptate cillum do proident veniam.\r\n", + "registered": "2018-03-14T07:53:44 +06:00", + "latitude": 42.938159, + "longitude": -129.188528, + "tags": [ + "dolore", + "minim", + "nisi", + "ea", + "Lorem", + "ipsum", + "quis" + ], + "friends": [ + { + "id": 0, + "name": "Fuller Brady" + }, + { + "id": 1, + "name": "Deidre Bennett" + }, + { + "id": 2, + "name": "Cleo Summers" + } + ], + "greeting": "Hello, West Petty! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021774f31011060c9265", + "index": 259, + "guid": "1d04803d-1a01-4c90-9565-9e74786a4b33", + "isActive": true, + "balance": "$3,358.81", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "brown", + "name": "Clarice Wilkins", + "gender": "female", + "company": "ESSENSIA", + "email": "claricewilkins@essensia.com", + "phone": "+1 (944) 595-2595", + "address": "169 Menahan Street, Topanga, Nebraska, 3917", + "about": "Dolor culpa magna quis est nulla irure. Adipisicing sunt sint adipisicing mollit deserunt enim anim eiusmod exercitation. Nulla laborum nostrud ad aute aliqua ex. Commodo ipsum anim aliqua id cillum proident dolore.\r\n", + "registered": "2015-11-14T10:49:17 +07:00", + "latitude": -56.364779, + "longitude": 153.692472, + "tags": [ + "ullamco", + "magna", + "laboris", + "irure", + "culpa", + "do", + "commodo" + ], + "friends": [ + { + "id": 0, + "name": "Galloway Mcguire" + }, + { + "id": 1, + "name": "Deann Randolph" + }, + { + "id": 2, + "name": "Clay Jordan" + } + ], + "greeting": "Hello, Clarice Wilkins! You have 1 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217cf305180040fc5db", + "index": 260, + "guid": "5c66d005-5fd9-42c8-becf-5abe7859ba3a", + "isActive": true, + "balance": "$1,295.21", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "brown", + "name": "Snider Webb", + "gender": "male", + "company": "ZILCH", + "email": "sniderwebb@zilch.com", + "phone": "+1 (927) 419-3076", + "address": "127 Berriman Street, Como, Tennessee, 9801", + "about": "Non nulla ex laborum commodo pariatur anim ullamco officia qui culpa. Est anim amet cillum aliqua duis consequat. Ipsum consectetur dolore aliqua veniam aute dolore duis esse nulla commodo non. Reprehenderit cillum ex quis magna adipisicing non magna ex aute consequat incididunt anim. Minim aliquip sunt commodo commodo tempor aliqua amet officia. Excepteur sit ex qui laborum duis occaecat anim deserunt sit exercitation ea magna dolor eiusmod. Nostrud anim cupidatat magna nulla fugiat reprehenderit cillum sit enim amet id.\r\n", + "registered": "2017-06-05T12:40:22 +06:00", + "latitude": -35.636689, + "longitude": 36.404287, + "tags": [ + "amet", + "cupidatat", + "adipisicing", + "laborum", + "commodo", + "laborum", + "eiusmod" + ], + "friends": [ + { + "id": 0, + "name": "Poole Merrill" + }, + { + "id": 1, + "name": "Fran Tyson" + }, + { + "id": 2, + "name": "Mindy Chapman" + } + ], + "greeting": "Hello, Snider Webb! You have 8 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217cddfb3a6e8f52385", + "index": 261, + "guid": "c3cbf27a-0ca8-46b3-8063-4e8b59a59d7c", + "isActive": false, + "balance": "$1,392.52", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "brown", + "name": "Chaney Willis", + "gender": "male", + "company": "TERRAGEN", + "email": "chaneywillis@terragen.com", + "phone": "+1 (846) 411-2844", + "address": "497 Crooke Avenue, Collins, Utah, 5127", + "about": "Do incididunt ex esse sunt Lorem culpa labore reprehenderit ipsum. Ut excepteur cillum labore anim id enim. Ullamco elit ea reprehenderit ut ex et minim voluptate pariatur adipisicing.\r\n", + "registered": "2016-03-30T09:40:06 +06:00", + "latitude": -27.190609, + "longitude": 54.744909, + "tags": [ + "aliquip", + "esse", + "ipsum", + "mollit", + "sit", + "eiusmod", + "exercitation" + ], + "friends": [ + { + "id": 0, + "name": "Carey Fields" + }, + { + "id": 1, + "name": "Suzette Sullivan" + }, + { + "id": 2, + "name": "Andrews Hansen" + } + ], + "greeting": "Hello, Chaney Willis! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021789415fcbe4a12cc6", + "index": 262, + "guid": "7be2b3e5-d9f4-4c31-9480-6387d908aba8", + "isActive": true, + "balance": "$1,779.14", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "brown", + "name": "Harding Poole", + "gender": "male", + "company": "QUINTITY", + "email": "hardingpoole@quintity.com", + "phone": "+1 (818) 553-2555", + "address": "796 Bayview Place, Florence, Marshall Islands, 725", + "about": "Mollit enim ullamco Lorem in minim tempor aliqua. Consequat excepteur elit sint cillum reprehenderit mollit commodo dolor magna do officia anim. Consequat magna amet consectetur nisi sit exercitation ut incididunt esse ut. Mollit magna anim do officia irure amet ea eiusmod tempor.\r\n", + "registered": "2014-02-22T07:30:23 +07:00", + "latitude": -88.215879, + "longitude": -97.031263, + "tags": [ + "et", + "laborum", + "sunt", + "dolore", + "incididunt", + "nisi", + "duis" + ], + "friends": [ + { + "id": 0, + "name": "Hicks Cooley" + }, + { + "id": 1, + "name": "Marianne Key" + }, + { + "id": 2, + "name": "Bernard Parker" + } + ], + "greeting": "Hello, Harding Poole! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021745d5adbf60af5a2b", + "index": 263, + "guid": "2f1a856a-dd12-423b-acf1-8075edaf8b28", + "isActive": false, + "balance": "$2,874.39", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "blue", + "name": "Lambert Foster", + "gender": "male", + "company": "BLEEKO", + "email": "lambertfoster@bleeko.com", + "phone": "+1 (962) 477-2763", + "address": "188 Bath Avenue, Richmond, Georgia, 1287", + "about": "Excepteur proident eiusmod cupidatat do voluptate ipsum nisi sunt. Consectetur ad nisi voluptate in velit laboris anim duis nulla. Cupidatat culpa irure duis pariatur cupidatat consectetur aliquip. Minim voluptate ipsum labore dolore ipsum et cillum duis eu reprehenderit.\r\n", + "registered": "2016-11-21T07:22:03 +07:00", + "latitude": -9.301308, + "longitude": 86.762724, + "tags": [ + "tempor", + "dolore", + "dolor", + "nulla", + "nisi", + "quis", + "amet" + ], + "friends": [ + { + "id": 0, + "name": "Howell Hensley" + }, + { + "id": 1, + "name": "Hubbard Downs" + }, + { + "id": 2, + "name": "Lynch Cox" + } + ], + "greeting": "Hello, Lambert Foster! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302170ec249b7cfb79b4f", + "index": 264, + "guid": "fe110158-b4a1-484f-948e-06a83bedb134", + "isActive": true, + "balance": "$2,349.05", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Richards Cook", + "gender": "male", + "company": "EXERTA", + "email": "richardscook@exerta.com", + "phone": "+1 (925) 525-2431", + "address": "532 Opal Court, Southview, Massachusetts, 614", + "about": "Sunt mollit anim minim labore culpa sunt adipisicing et veniam consectetur. Laboris aliqua duis velit consequat qui cupidatat ex do magna veniam cupidatat sunt. Veniam qui qui duis culpa dolor do Lorem.\r\n", + "registered": "2016-09-10T03:30:46 +06:00", + "latitude": 74.216147, + "longitude": -23.204084, + "tags": [ + "laborum", + "et", + "quis", + "voluptate", + "officia", + "non", + "sint" + ], + "friends": [ + { + "id": 0, + "name": "Patrica Yates" + }, + { + "id": 1, + "name": "Pam Chambers" + }, + { + "id": 2, + "name": "Wiley Bradford" + } + ], + "greeting": "Hello, Richards Cook! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217b7aa0283a17c2d4e", + "index": 265, + "guid": "6d951084-768d-4303-b8d4-211d5b2d4c90", + "isActive": true, + "balance": "$2,886.87", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "green", + "name": "Wilson Myers", + "gender": "male", + "company": "PROGENEX", + "email": "wilsonmyers@progenex.com", + "phone": "+1 (863) 566-3966", + "address": "471 Calder Place, Crucible, Arizona, 7941", + "about": "Exercitation sunt dolor elit laboris incididunt laboris eu exercitation minim. Velit aliqua sunt elit fugiat aute adipisicing qui. Sit nulla laboris culpa irure enim magna cillum incididunt nisi. Velit anim cupidatat excepteur duis exercitation dolore commodo voluptate labore fugiat anim consequat non.\r\n", + "registered": "2016-03-27T03:49:13 +06:00", + "latitude": 36.946294, + "longitude": -36.525174, + "tags": [ + "dolor", + "sint", + "amet", + "cupidatat", + "nisi", + "velit", + "deserunt" + ], + "friends": [ + { + "id": 0, + "name": "Pansy Roy" + }, + { + "id": 1, + "name": "Brigitte Odom" + }, + { + "id": 2, + "name": "Wong Foreman" + } + ], + "greeting": "Hello, Wilson Myers! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217984b46403cb301d2", + "index": 266, + "guid": "8ce33c09-1be2-49cf-b3e4-f6bf21f2fd20", + "isActive": false, + "balance": "$2,330.70", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Martin Duffy", + "gender": "male", + "company": "SURETECH", + "email": "martinduffy@suretech.com", + "phone": "+1 (817) 547-2474", + "address": "373 Tilden Avenue, Woodlands, District Of Columbia, 7704", + "about": "Sit consequat dolor ullamco excepteur occaecat occaecat Lorem qui. Lorem pariatur elit sit commodo in occaecat. Commodo non labore ad esse.\r\n", + "registered": "2016-05-02T12:49:54 +06:00", + "latitude": -66.523743, + "longitude": 175.2165, + "tags": [ + "in", + "ex", + "anim", + "consequat", + "ad", + "commodo", + "ullamco" + ], + "friends": [ + { + "id": 0, + "name": "Brooks Brooks" + }, + { + "id": 1, + "name": "Clark Sutton" + }, + { + "id": 2, + "name": "Shelia Solomon" + } + ], + "greeting": "Hello, Martin Duffy! You have 2 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217af9657b1ccaf5aef", + "index": 267, + "guid": "af92f61d-d74e-4a46-993d-944a050113c9", + "isActive": true, + "balance": "$3,390.50", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "brown", + "name": "Weaver Thomas", + "gender": "male", + "company": "KONGLE", + "email": "weaverthomas@kongle.com", + "phone": "+1 (869) 437-3772", + "address": "248 Lenox Road, Hemlock, Virgin Islands, 9365", + "about": "Ad cillum officia aliquip officia cupidatat duis esse eu in cillum. Consectetur in officia cillum adipisicing laboris in cupidatat anim proident. Nisi nisi ipsum ullamco duis quis irure cupidatat in officia.\r\n", + "registered": "2016-09-02T06:45:13 +06:00", + "latitude": 88.443721, + "longitude": 32.539391, + "tags": [ + "minim", + "Lorem", + "eu", + "sit", + "aliqua", + "cillum", + "eiusmod" + ], + "friends": [ + { + "id": 0, + "name": "Lolita Dominguez" + }, + { + "id": 1, + "name": "Kendra Massey" + }, + { + "id": 2, + "name": "Kelly Morrison" + } + ], + "greeting": "Hello, Weaver Thomas! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217ae6aa90e8d1038a7", + "index": 268, + "guid": "62c460d3-13fa-4614-a845-7808272eb9c9", + "isActive": false, + "balance": "$1,100.35", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "green", + "name": "Sanford Cross", + "gender": "male", + "company": "HATOLOGY", + "email": "sanfordcross@hatology.com", + "phone": "+1 (879) 513-2618", + "address": "654 Seagate Terrace, Wescosville, South Dakota, 9224", + "about": "Et deserunt culpa ut ex non. Pariatur occaecat nulla sint amet sit laborum dolore elit qui Lorem id mollit ad cupidatat. Et et et cillum quis qui anim duis minim. Anim consequat esse laborum Lorem eu amet nostrud velit. Cupidatat dolore et mollit id pariatur irure laborum officia ipsum pariatur enim Lorem ad. Eu esse in esse adipisicing. Labore qui consectetur aute et.\r\n", + "registered": "2016-07-20T04:11:07 +06:00", + "latitude": 69.35256, + "longitude": 4.675788, + "tags": [ + "ea", + "velit", + "et", + "officia", + "culpa", + "culpa", + "aute" + ], + "friends": [ + { + "id": 0, + "name": "Sarah Erickson" + }, + { + "id": 1, + "name": "Joy Valenzuela" + }, + { + "id": 2, + "name": "Heidi Sherman" + } + ], + "greeting": "Hello, Sanford Cross! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217bb153b696888658a", + "index": 269, + "guid": "f6590d86-61f5-4ec2-9584-86075058f9ff", + "isActive": false, + "balance": "$2,953.65", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "blue", + "name": "Alvarez Bird", + "gender": "male", + "company": "COLUMELLA", + "email": "alvarezbird@columella.com", + "phone": "+1 (929) 435-2152", + "address": "684 Coffey Street, Fruitdale, Virginia, 7338", + "about": "Deserunt ullamco duis est culpa id enim id tempor excepteur laboris. Commodo quis commodo elit velit consectetur mollit excepteur magna cupidatat voluptate voluptate in id. Tempor incididunt aliquip et in id officia laboris enim excepteur veniam minim et elit et. Magna duis sint do excepteur duis sunt. Mollit labore irure dolor cillum ut. Enim nisi do duis aute sunt eiusmod dolore tempor culpa ex cillum ipsum. Laborum ullamco commodo sint aute reprehenderit.\r\n", + "registered": "2017-01-23T04:39:08 +07:00", + "latitude": 23.079716, + "longitude": 23.231506, + "tags": [ + "reprehenderit", + "ullamco", + "sunt", + "esse", + "enim", + "aliqua", + "sit" + ], + "friends": [ + { + "id": 0, + "name": "Addie Langley" + }, + { + "id": 1, + "name": "Naomi Cortez" + }, + { + "id": 2, + "name": "Mcfarland Washington" + } + ], + "greeting": "Hello, Alvarez Bird! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217dacca7c35ba7ba32", + "index": 270, + "guid": "70e5b8da-fe91-4e70-9dc6-2777929874fc", + "isActive": true, + "balance": "$2,526.30", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "brown", + "name": "Elisabeth Mccarty", + "gender": "female", + "company": "KEGULAR", + "email": "elisabethmccarty@kegular.com", + "phone": "+1 (846) 575-3953", + "address": "709 Fleet Street, Campo, Michigan, 7899", + "about": "Veniam laborum eiusmod laboris ex officia nostrud. Sit consectetur elit sunt amet Lorem fugiat enim velit consectetur adipisicing. Non irure qui proident eu est Lorem culpa veniam elit sint est amet commodo. Magna nulla laboris ullamco reprehenderit do enim officia laborum mollit non duis aliquip amet. Cupidatat eiusmod laboris veniam deserunt culpa fugiat.\r\n", + "registered": "2016-11-29T05:54:11 +07:00", + "latitude": -38.248429, + "longitude": -123.389537, + "tags": [ + "ut", + "id", + "ea", + "Lorem", + "anim", + "officia", + "cillum" + ], + "friends": [ + { + "id": 0, + "name": "Everett Bates" + }, + { + "id": 1, + "name": "Tanya Norman" + }, + { + "id": 2, + "name": "Natalia Avery" + } + ], + "greeting": "Hello, Elisabeth Mccarty! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217a57ab79b0b7187e5", + "index": 271, + "guid": "05d53070-6dca-4697-bd9d-3bec1b8e031d", + "isActive": false, + "balance": "$2,388.85", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Pace Johnston", + "gender": "male", + "company": "FREAKIN", + "email": "pacejohnston@freakin.com", + "phone": "+1 (830) 575-2842", + "address": "282 Mill Road, Brogan, Northern Mariana Islands, 9265", + "about": "Nisi et elit exercitation deserunt quis laborum. Laborum magna ut voluptate anim ea elit do veniam dolor. Duis ex adipisicing consequat commodo commodo Lorem adipisicing magna enim deserunt fugiat reprehenderit adipisicing anim. Fugiat voluptate commodo laborum adipisicing. Est qui non voluptate pariatur nostrud aute cupidatat excepteur pariatur deserunt amet et et. Do occaecat quis duis culpa cillum veniam aliquip non ullamco. Veniam non est magna et.\r\n", + "registered": "2015-10-05T09:15:34 +06:00", + "latitude": -73.510734, + "longitude": 86.141907, + "tags": [ + "deserunt", + "consequat", + "proident", + "veniam", + "aute", + "ut", + "sunt" + ], + "friends": [ + { + "id": 0, + "name": "Sondra Rhodes" + }, + { + "id": 1, + "name": "Quinn Mitchell" + }, + { + "id": 2, + "name": "Camille Garrison" + } + ], + "greeting": "Hello, Pace Johnston! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021724dd931b991d5b19", + "index": 272, + "guid": "67371250-72fc-4ec7-bd2b-9e068214b30d", + "isActive": true, + "balance": "$1,350.06", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "brown", + "name": "Garza Watson", + "gender": "male", + "company": "BILLMED", + "email": "garzawatson@billmed.com", + "phone": "+1 (971) 560-3753", + "address": "754 Bergen Street, Gorst, Illinois, 8004", + "about": "Anim eu velit sint in deserunt officia reprehenderit pariatur sit commodo et pariatur eiusmod. Ipsum consectetur ea ex irure laboris anim minim ex minim dolor laboris cupidatat culpa sint. Proident ut eu magna ea Lorem officia ipsum. Labore excepteur quis tempor nostrud id.\r\n", + "registered": "2018-02-18T08:30:20 +07:00", + "latitude": -25.840251, + "longitude": 108.225005, + "tags": [ + "non", + "do", + "laboris", + "velit", + "commodo", + "est", + "est" + ], + "friends": [ + { + "id": 0, + "name": "Margret Ramsey" + }, + { + "id": 1, + "name": "Jefferson Potter" + }, + { + "id": 2, + "name": "Horne Riley" + } + ], + "greeting": "Hello, Garza Watson! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302175445be15e8a94d4e", + "index": 273, + "guid": "68ecbe23-1151-4569-8624-8a1f80d9e4d0", + "isActive": false, + "balance": "$3,942.65", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "green", + "name": "Harris Dodson", + "gender": "male", + "company": "QOT", + "email": "harrisdodson@qot.com", + "phone": "+1 (807) 478-2229", + "address": "746 Onderdonk Avenue, Robinette, Wisconsin, 2335", + "about": "Qui exercitation id excepteur est aute occaecat adipisicing minim ea minim et aliquip. Sit do elit incididunt non enim. Nulla adipisicing proident aliqua voluptate exercitation occaecat ipsum. Excepteur veniam culpa est duis veniam velit.\r\n", + "registered": "2018-02-12T02:50:10 +07:00", + "latitude": 77.201226, + "longitude": 171.934019, + "tags": [ + "fugiat", + "officia", + "laboris", + "aliqua", + "est", + "sit", + "et" + ], + "friends": [ + { + "id": 0, + "name": "Henson Cantrell" + }, + { + "id": 1, + "name": "Becky Becker" + }, + { + "id": 2, + "name": "Jana Patton" + } + ], + "greeting": "Hello, Harris Dodson! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021744beae8fe9a6006f", + "index": 274, + "guid": "e2126942-68c6-4ffe-812b-17bfe310f497", + "isActive": true, + "balance": "$3,837.35", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "brown", + "name": "Hattie Bray", + "gender": "female", + "company": "ZENTIX", + "email": "hattiebray@zentix.com", + "phone": "+1 (935) 472-3943", + "address": "606 Willoughby Avenue, Weeksville, Idaho, 6200", + "about": "Nisi elit pariatur aute aliquip anim ea do veniam. Pariatur laboris consectetur consectetur commodo sunt sint aliqua. Consectetur occaecat occaecat consequat deserunt sunt est nulla anim. Sint velit sint excepteur id veniam minim velit reprehenderit amet veniam labore. Consequat sint consectetur sint labore deserunt cillum qui pariatur fugiat tempor non dolor quis anim. Irure irure sint aliquip ex velit veniam.\r\n", + "registered": "2015-08-13T04:15:34 +06:00", + "latitude": 14.405823, + "longitude": -35.426202, + "tags": [ + "officia", + "sunt", + "laborum", + "exercitation", + "est", + "exercitation", + "amet" + ], + "friends": [ + { + "id": 0, + "name": "Erin Abbott" + }, + { + "id": 1, + "name": "Cline Garner" + }, + { + "id": 2, + "name": "Freda Peters" + } + ], + "greeting": "Hello, Hattie Bray! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302175186596ee0682b23", + "index": 275, + "guid": "5e3fdf0c-7286-4329-8efd-37b4c3ca8995", + "isActive": true, + "balance": "$3,658.84", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Dominique Ramos", + "gender": "female", + "company": "ASSITIA", + "email": "dominiqueramos@assitia.com", + "phone": "+1 (999) 445-3260", + "address": "177 Irving Place, Rushford, New Hampshire, 4769", + "about": "Velit ut consectetur eu deserunt adipisicing labore enim ullamco laborum reprehenderit voluptate ad mollit non. Excepteur aute officia laborum occaecat quis reprehenderit laboris esse in veniam sit consequat labore. Minim et magna aute culpa tempor. Aliquip enim velit ea mollit pariatur veniam. Labore eiusmod occaecat tempor ex ex aute minim duis irure laboris ut. Consequat voluptate reprehenderit exercitation ipsum est labore laboris Lorem deserunt nostrud non do nostrud.\r\n", + "registered": "2018-01-31T12:58:05 +07:00", + "latitude": 49.513909, + "longitude": -142.784232, + "tags": [ + "officia", + "labore", + "nostrud", + "id", + "id", + "irure", + "ut" + ], + "friends": [ + { + "id": 0, + "name": "Mckee Schneider" + }, + { + "id": 1, + "name": "Payne Snow" + }, + { + "id": 2, + "name": "Brittney Owen" + } + ], + "greeting": "Hello, Dominique Ramos! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217a8dd0f99f34c21ff", + "index": 276, + "guid": "6f3ff5db-5dbd-4ff5-b5c7-5b0c81f8a924", + "isActive": true, + "balance": "$3,233.05", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "brown", + "name": "Small Burke", + "gender": "male", + "company": "MOREGANIC", + "email": "smallburke@moreganic.com", + "phone": "+1 (973) 401-3450", + "address": "484 Malta Street, Saticoy, South Carolina, 4253", + "about": "Sint sit quis irure deserunt ullamco mollit esse dolore esse minim anim pariatur. In velit dolore ut excepteur elit sit id et ex deserunt laboris. Qui laborum magna eu non voluptate. Veniam incididunt voluptate consequat est proident pariatur Lorem.\r\n", + "registered": "2016-04-20T08:26:00 +06:00", + "latitude": 38.823156, + "longitude": -40.19345, + "tags": [ + "qui", + "laborum", + "est", + "proident", + "velit", + "ex", + "culpa" + ], + "friends": [ + { + "id": 0, + "name": "Ball Soto" + }, + { + "id": 1, + "name": "Rosario Padilla" + }, + { + "id": 2, + "name": "Fox Gross" + } + ], + "greeting": "Hello, Small Burke! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217c5a214b8c25925f2", + "index": 277, + "guid": "29cad537-5d6c-44a9-b1a8-ec62b3a28a6e", + "isActive": false, + "balance": "$2,606.05", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "blue", + "name": "Joseph Greene", + "gender": "male", + "company": "AQUAFIRE", + "email": "josephgreene@aquafire.com", + "phone": "+1 (993) 437-3883", + "address": "749 Lorraine Street, Ballico, Iowa, 6128", + "about": "Cillum do duis elit laborum proident. Esse ea mollit consectetur in excepteur sit anim cillum. Sunt reprehenderit anim velit occaecat dolor. Deserunt aute fugiat do qui ipsum. Laboris reprehenderit minim cupidatat dolore. Irure magna Lorem commodo qui dolore aute duis incididunt aliqua aute cillum anim nostrud et.\r\n", + "registered": "2015-08-30T04:46:45 +06:00", + "latitude": 61.963362, + "longitude": 63.152492, + "tags": [ + "ex", + "esse", + "veniam", + "veniam", + "tempor", + "aliqua", + "sunt" + ], + "friends": [ + { + "id": 0, + "name": "Lynn Huff" + }, + { + "id": 1, + "name": "French Stuart" + }, + { + "id": 2, + "name": "Daisy Gill" + } + ], + "greeting": "Hello, Joseph Greene! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021736731f91c9e83fb3", + "index": 278, + "guid": "ddbd77b6-b14a-4fea-a344-3d2d1a662776", + "isActive": false, + "balance": "$3,027.04", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "brown", + "name": "Paul Romero", + "gender": "male", + "company": "ACCUPHARM", + "email": "paulromero@accupharm.com", + "phone": "+1 (856) 501-2100", + "address": "660 Decatur Street, Konterra, California, 2137", + "about": "Reprehenderit pariatur consectetur eiusmod Lorem cillum non labore aliqua sit eiusmod. Id aliqua Lorem laborum sunt irure dolor nostrud exercitation mollit nostrud voluptate velit cillum. Non nisi ex officia eu veniam proident commodo culpa sunt tempor ipsum eu. Dolor veniam officia quis ad ullamco magna qui laboris ad fugiat laborum. Nisi incididunt mollit duis aliquip ex Lorem sint proident. Ea velit commodo Lorem nulla cillum adipisicing qui enim enim ea consequat.\r\n", + "registered": "2014-06-26T09:09:35 +06:00", + "latitude": -8.761188, + "longitude": 27.389377, + "tags": [ + "id", + "fugiat", + "fugiat", + "in", + "veniam", + "labore", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "Perez Witt" + }, + { + "id": 1, + "name": "Francesca Boone" + }, + { + "id": 2, + "name": "Hannah Serrano" + } + ], + "greeting": "Hello, Paul Romero! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217f4ea156f0b66fee7", + "index": 279, + "guid": "4b297013-f350-4c5b-9ea6-8566100fe709", + "isActive": false, + "balance": "$1,779.63", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "green", + "name": "Lester Jenkins", + "gender": "male", + "company": "STEELFAB", + "email": "lesterjenkins@steelfab.com", + "phone": "+1 (809) 542-3484", + "address": "381 Harden Street, Greenbush, Wyoming, 3163", + "about": "In Lorem anim nulla est veniam. Ea consectetur excepteur Lorem adipisicing non fugiat do sunt do irure. Anim labore enim nostrud excepteur ex consectetur deserunt officia. Officia nisi sit magna consectetur dolore nostrud irure sit veniam dolor eiusmod excepteur. Quis nisi ea laboris anim ut enim anim dolor sunt ex Lorem. Commodo elit ea pariatur officia duis veniam sint do eu et aute ad in sunt.\r\n", + "registered": "2015-04-10T03:03:21 +06:00", + "latitude": 64.761283, + "longitude": 151.634176, + "tags": [ + "sit", + "qui", + "ex", + "exercitation", + "magna", + "do", + "reprehenderit" + ], + "friends": [ + { + "id": 0, + "name": "Rachael Deleon" + }, + { + "id": 1, + "name": "Janet Bentley" + }, + { + "id": 2, + "name": "Lacy Robertson" + } + ], + "greeting": "Hello, Lester Jenkins! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217fa115756ccd74fa8", + "index": 280, + "guid": "2bd08866-3cc3-4a09-b67d-58298a29d789", + "isActive": true, + "balance": "$1,652.68", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "blue", + "name": "Trevino Frank", + "gender": "male", + "company": "FROSNEX", + "email": "trevinofrank@frosnex.com", + "phone": "+1 (885) 438-2396", + "address": "150 Bokee Court, Trexlertown, Maryland, 1815", + "about": "Id cillum nostrud magna eu ullamco qui consequat nulla dolore occaecat laboris. Voluptate officia consectetur officia cupidatat cillum occaecat non ad id. Magna enim eiusmod qui in aute adipisicing irure incididunt incididunt do deserunt nostrud ex. Ex sunt officia ex ipsum ut ullamco mollit minim minim. Aute tempor mollit consectetur reprehenderit nisi labore adipisicing.\r\n", + "registered": "2016-06-26T12:14:47 +06:00", + "latitude": 54.519658, + "longitude": -39.935252, + "tags": [ + "adipisicing", + "anim", + "non", + "sint", + "aliqua", + "duis", + "dolor" + ], + "friends": [ + { + "id": 0, + "name": "Holcomb English" + }, + { + "id": 1, + "name": "Jasmine Velasquez" + }, + { + "id": 2, + "name": "Miranda Olson" + } + ], + "greeting": "Hello, Trevino Frank! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217d421518ddab7160a", + "index": 281, + "guid": "21a23651-fe60-43d3-bf3d-07d7f1b3cd5b", + "isActive": false, + "balance": "$3,607.87", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Rosemary Larson", + "gender": "female", + "company": "VALPREAL", + "email": "rosemarylarson@valpreal.com", + "phone": "+1 (829) 584-2964", + "address": "672 Bartlett Street, Ribera, Louisiana, 2339", + "about": "Ullamco irure et ut ullamco Lorem eiusmod pariatur sint. Pariatur consectetur sint sint occaecat ex laboris mollit. Ea est magna consectetur eiusmod cupidatat cupidatat est aute esse proident in in duis officia. Laboris cillum cupidatat nostrud sit anim enim. Est ad excepteur elit qui ullamco aliqua exercitation. Quis ipsum minim ipsum id officia nostrud et in culpa voluptate sint cillum pariatur laboris.\r\n", + "registered": "2015-09-10T06:24:07 +06:00", + "latitude": 89.434426, + "longitude": 16.429889, + "tags": [ + "exercitation", + "exercitation", + "laborum", + "et", + "amet", + "est", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Jenifer Warren" + }, + { + "id": 1, + "name": "Bridget Ochoa" + }, + { + "id": 2, + "name": "Morse Mcgowan" + } + ], + "greeting": "Hello, Rosemary Larson! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302176b8d6187e4aa33cc", + "index": 282, + "guid": "c363b6c6-181d-4e6e-9f69-4688c4d9d1e9", + "isActive": true, + "balance": "$3,032.51", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "green", + "name": "Nancy Watts", + "gender": "female", + "company": "DUFLEX", + "email": "nancywatts@duflex.com", + "phone": "+1 (930) 447-2836", + "address": "111 Gerritsen Avenue, Manila, Federated States Of Micronesia, 3086", + "about": "Et ad officia quis proident culpa veniam ipsum eiusmod amet nostrud. Aliquip quis ex qui aute culpa non in proident sint ipsum quis do sit. Pariatur mollit pariatur eiusmod labore duis elit anim aliqua sit non. Velit minim excepteur mollit ipsum quis aliqua. Esse pariatur qui voluptate sunt ex proident dolore officia aliqua.\r\n", + "registered": "2017-02-16T02:41:32 +07:00", + "latitude": -69.36965, + "longitude": -9.660549, + "tags": [ + "sit", + "excepteur", + "sit", + "sunt", + "dolor", + "nisi", + "Lorem" + ], + "friends": [ + { + "id": 0, + "name": "Annmarie Pena" + }, + { + "id": 1, + "name": "Kathy Bush" + }, + { + "id": 2, + "name": "Etta Gentry" + } + ], + "greeting": "Hello, Nancy Watts! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302179d827cd52d8d9de3", + "index": 283, + "guid": "ec167f56-aa27-4f7f-a640-6b47e5baaf56", + "isActive": true, + "balance": "$3,311.63", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "brown", + "name": "Christy Velazquez", + "gender": "female", + "company": "DEVILTOE", + "email": "christyvelazquez@deviltoe.com", + "phone": "+1 (865) 479-3261", + "address": "947 Greenwood Avenue, Thermal, Pennsylvania, 9421", + "about": "Commodo culpa pariatur anim sint labore ea. Qui quis mollit anim officia qui laborum tempor officia magna. Ut qui magna occaecat eu sint aute laborum aliquip eiusmod deserunt.\r\n", + "registered": "2016-03-26T03:35:35 +06:00", + "latitude": 72.018414, + "longitude": 4.200861, + "tags": [ + "dolore", + "officia", + "enim", + "velit", + "fugiat", + "qui", + "minim" + ], + "friends": [ + { + "id": 0, + "name": "Hopper Turner" + }, + { + "id": 1, + "name": "Spencer Cole" + }, + { + "id": 2, + "name": "Nola Rodriguez" + } + ], + "greeting": "Hello, Christy Velazquez! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217708ffd13e566b468", + "index": 284, + "guid": "bb0a8b6c-bf2f-4490-a9bb-9b2de6a36c7e", + "isActive": false, + "balance": "$3,265.80", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "brown", + "name": "York Crosby", + "gender": "male", + "company": "FIREWAX", + "email": "yorkcrosby@firewax.com", + "phone": "+1 (912) 471-3010", + "address": "954 Milford Street, Brookfield, Vermont, 938", + "about": "Consectetur Lorem eiusmod sint minim in nostrud. Ad nostrud magna ullamco elit aliqua duis exercitation consequat sit proident eiusmod ut eiusmod. Labore est officia sint culpa cupidatat tempor fugiat pariatur occaecat do amet sit esse enim. Minim officia adipisicing dolore do exercitation aliquip voluptate ad eiusmod tempor excepteur amet qui anim. Velit exercitation aute culpa exercitation magna do pariatur enim.\r\n", + "registered": "2014-11-23T06:38:00 +07:00", + "latitude": 11.684427, + "longitude": 102.195701, + "tags": [ + "Lorem", + "nostrud", + "et", + "ex", + "ipsum", + "magna", + "irure" + ], + "friends": [ + { + "id": 0, + "name": "Ruby Fischer" + }, + { + "id": 1, + "name": "Rae Mcfarland" + }, + { + "id": 2, + "name": "Chang Pratt" + } + ], + "greeting": "Hello, York Crosby! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302179875e2305bc98181", + "index": 285, + "guid": "a1ad1c3d-e6b2-44e0-97fd-6df17658aab8", + "isActive": true, + "balance": "$3,399.32", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "blue", + "name": "Concepcion Greer", + "gender": "female", + "company": "OULU", + "email": "concepciongreer@oulu.com", + "phone": "+1 (998) 568-3471", + "address": "691 Senator Street, Graniteville, Maine, 3194", + "about": "Nisi ad in anim ad. Proident adipisicing fugiat cillum non voluptate veniam magna deserunt exercitation ullamco irure esse aliqua. Velit in quis ipsum eu ut enim velit dolore in veniam eu tempor. Ex esse nisi tempor veniam cillum mollit exercitation veniam. In laboris sunt do mollit elit in elit anim commodo sint incididunt minim. Ullamco deserunt sunt duis Lorem fugiat velit pariatur. Aliquip sit enim deserunt excepteur exercitation amet labore veniam incididunt commodo velit nulla sint esse.\r\n", + "registered": "2014-12-18T12:21:51 +07:00", + "latitude": -14.507135, + "longitude": 111.952642, + "tags": [ + "Lorem", + "deserunt", + "pariatur", + "adipisicing", + "sint", + "consectetur", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Janis Leach" + }, + { + "id": 1, + "name": "Johnson Montgomery" + }, + { + "id": 2, + "name": "Ola Hartman" + } + ], + "greeting": "Hello, Concepcion Greer! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217e8c458450a83c143", + "index": 286, + "guid": "331e5b4f-e7c2-4230-acc2-8b035cf03ba9", + "isActive": false, + "balance": "$3,169.46", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "green", + "name": "Walker Peck", + "gender": "male", + "company": "AQUAMATE", + "email": "walkerpeck@aquamate.com", + "phone": "+1 (932) 408-2930", + "address": "337 Bartlett Place, Sidman, Alaska, 3428", + "about": "Eu duis proident deserunt proident cupidatat nisi incididunt dolor anim. Id non cillum laboris elit nisi eiusmod id amet ex incididunt occaecat proident commodo et. Anim pariatur enim quis nisi. Proident adipisicing qui excepteur ad cupidatat est quis minim laborum velit exercitation. Minim proident eiusmod tempor duis esse est minim deserunt enim.\r\n", + "registered": "2016-01-06T02:58:51 +07:00", + "latitude": 49.681812, + "longitude": 18.150455, + "tags": [ + "dolore", + "ipsum", + "nostrud", + "minim", + "laboris", + "laborum", + "ea" + ], + "friends": [ + { + "id": 0, + "name": "Lorie Woodard" + }, + { + "id": 1, + "name": "Lenora Meyer" + }, + { + "id": 2, + "name": "Greene Lyons" + } + ], + "greeting": "Hello, Walker Peck! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302179b6c059f97b09862", + "index": 287, + "guid": "c7a59d1a-209f-4eaa-9508-a106a33b608f", + "isActive": true, + "balance": "$2,063.40", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "brown", + "name": "Emily Ingram", + "gender": "female", + "company": "MOTOVATE", + "email": "emilyingram@motovate.com", + "phone": "+1 (973) 554-3748", + "address": "544 Forrest Street, Tecolotito, Palau, 2074", + "about": "Laborum ipsum consectetur sunt eiusmod enim nisi reprehenderit laboris aliquip tempor dolor. Veniam et fugiat deserunt laboris. Aute non officia ea dolor sint duis. Excepteur consequat do aliqua laboris elit cillum duis consectetur.\r\n", + "registered": "2017-11-20T09:28:05 +07:00", + "latitude": -7.379225, + "longitude": 26.115567, + "tags": [ + "elit", + "nulla", + "est", + "esse", + "sit", + "occaecat", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Callie Barker" + }, + { + "id": 1, + "name": "Jolene Barr" + }, + { + "id": 2, + "name": "Caldwell Anthony" + } + ], + "greeting": "Hello, Emily Ingram! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217fc7b6ef945a20dfd", + "index": 288, + "guid": "17909496-4efa-4a47-9224-5a2d4d81e2f4", + "isActive": false, + "balance": "$3,000.30", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "brown", + "name": "Cristina Pacheco", + "gender": "female", + "company": "KEENGEN", + "email": "cristinapacheco@keengen.com", + "phone": "+1 (828) 567-2379", + "address": "374 Kiely Place, Romeville, Arkansas, 931", + "about": "Deserunt anim nulla mollit ipsum minim est esse do esse deserunt aliqua incididunt aliquip esse. Deserunt duis nulla reprehenderit ex. Est est magna duis minim ut ex ullamco officia officia cupidatat reprehenderit. Non mollit ipsum mollit est deserunt Lorem cillum exercitation. Mollit labore fugiat non veniam pariatur ut ut id labore et magna anim.\r\n", + "registered": "2016-07-23T09:51:43 +06:00", + "latitude": 29.64614, + "longitude": 2.351274, + "tags": [ + "ipsum", + "quis", + "aliquip", + "est", + "qui", + "laboris", + "qui" + ], + "friends": [ + { + "id": 0, + "name": "Nita Valentine" + }, + { + "id": 1, + "name": "Natalie Mckenzie" + }, + { + "id": 2, + "name": "Berger Chang" + } + ], + "greeting": "Hello, Cristina Pacheco! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302174476922f467bca32", + "index": 289, + "guid": "558b2e7c-ce32-459d-a354-29ac7b913709", + "isActive": true, + "balance": "$1,306.10", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "green", + "name": "Karyn Lloyd", + "gender": "female", + "company": "ENERFORCE", + "email": "karynlloyd@enerforce.com", + "phone": "+1 (918) 580-3502", + "address": "165 Kensington Walk, Norwood, Florida, 1831", + "about": "Aliqua deserunt aliqua velit in proident occaecat dolore Lorem aute sit. Voluptate nostrud duis cupidatat quis nostrud culpa anim officia et voluptate sit consectetur voluptate. Cupidatat ipsum nulla incididunt enim pariatur dolor esse. Consequat magna exercitation non do officia do. Culpa ullamco ut velit qui esse cupidatat laboris aute consectetur tempor laboris. Enim quis elit irure consequat eu aliqua. Lorem nostrud laboris cupidatat occaecat ad veniam ea anim.\r\n", + "registered": "2016-01-27T10:24:09 +07:00", + "latitude": 84.740091, + "longitude": 8.289095, + "tags": [ + "velit", + "ea", + "nulla", + "laboris", + "tempor", + "consequat", + "pariatur" + ], + "friends": [ + { + "id": 0, + "name": "Michele Estes" + }, + { + "id": 1, + "name": "Fleming Goodman" + }, + { + "id": 2, + "name": "Marshall Rivers" + } + ], + "greeting": "Hello, Karyn Lloyd! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021794500d51b7e24c17", + "index": 290, + "guid": "b0e831bf-3241-4d2a-8571-968902c216ca", + "isActive": true, + "balance": "$3,132.58", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "blue", + "name": "Tamara Sparks", + "gender": "female", + "company": "SKYBOLD", + "email": "tamarasparks@skybold.com", + "phone": "+1 (960) 514-2297", + "address": "837 Wolf Place, Montura, Puerto Rico, 696", + "about": "Ea do dolore cillum magna elit velit deserunt sunt Lorem duis culpa sint ea incididunt. Ad duis velit in aliqua pariatur in amet aliquip ullamco qui enim. Quis labore commodo officia dolor Lorem sunt sunt occaecat eiusmod duis dolore. Minim cillum ea velit commodo velit aute et mollit commodo deserunt. Dolor proident exercitation commodo sunt et pariatur duis consectetur dolore. Sint tempor sunt Lorem aute.\r\n", + "registered": "2016-12-21T02:53:44 +07:00", + "latitude": -6.61387, + "longitude": 97.632146, + "tags": [ + "eiusmod", + "fugiat", + "deserunt", + "deserunt", + "dolore", + "esse", + "eiusmod" + ], + "friends": [ + { + "id": 0, + "name": "Patel Bowen" + }, + { + "id": 1, + "name": "Kristy Henson" + }, + { + "id": 2, + "name": "Rocha Cooper" + } + ], + "greeting": "Hello, Tamara Sparks! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217cec6c523b8541c40", + "index": 291, + "guid": "946ea382-7f46-4d88-b568-909de0728e72", + "isActive": false, + "balance": "$3,312.96", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "green", + "name": "Horton Ferguson", + "gender": "male", + "company": "INTRADISK", + "email": "hortonferguson@intradisk.com", + "phone": "+1 (974) 443-3153", + "address": "800 River Street, Caspar, Hawaii, 3328", + "about": "Do veniam dolor dolore non ut non dolor aute exercitation dolor anim aliquip ut sit. Esse excepteur laboris voluptate excepteur. Mollit laborum consequat dolor aliquip eu incididunt eu culpa adipisicing.\r\n", + "registered": "2016-06-24T10:01:57 +06:00", + "latitude": -21.451964, + "longitude": 34.323958, + "tags": [ + "anim", + "officia", + "incididunt", + "ut", + "non", + "officia", + "enim" + ], + "friends": [ + { + "id": 0, + "name": "Shannon Mueller" + }, + { + "id": 1, + "name": "Jeannie Carver" + }, + { + "id": 2, + "name": "Cross Hays" + } + ], + "greeting": "Hello, Horton Ferguson! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302176cda5b79656a53f2", + "index": 292, + "guid": "0e79c71e-b7bb-4f66-9e6a-e06539a791a0", + "isActive": true, + "balance": "$3,908.49", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "brown", + "name": "Marisol Vega", + "gender": "female", + "company": "ELENTRIX", + "email": "marisolvega@elentrix.com", + "phone": "+1 (873) 420-3769", + "address": "608 Ainslie Street, Wilmington, American Samoa, 9729", + "about": "Magna consectetur consectetur sint irure ex. Ex esse esse eu ipsum ea nisi do aliqua sit ex. Esse id aliquip amet ex minim cupidatat nisi adipisicing eiusmod velit adipisicing sit.\r\n", + "registered": "2014-07-02T03:17:20 +06:00", + "latitude": 50.40546, + "longitude": 105.261626, + "tags": [ + "eiusmod", + "aliquip", + "pariatur", + "consectetur", + "Lorem", + "nostrud", + "nostrud" + ], + "friends": [ + { + "id": 0, + "name": "Chen Rosales" + }, + { + "id": 1, + "name": "Maddox Fleming" + }, + { + "id": 2, + "name": "Leslie Park" + } + ], + "greeting": "Hello, Marisol Vega! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302175e2b78d8f9583c95", + "index": 293, + "guid": "a6498167-49d1-4881-b87b-256136ca87f2", + "isActive": true, + "balance": "$1,812.64", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Callahan Hunter", + "gender": "male", + "company": "ENTOGROK", + "email": "callahanhunter@entogrok.com", + "phone": "+1 (828) 492-2396", + "address": "858 Colonial Road, Adelino, Indiana, 9681", + "about": "Nulla est occaecat duis eu ea nostrud reprehenderit culpa quis ea minim qui culpa velit. Tempor nostrud occaecat ad eiusmod reprehenderit sit eiusmod irure. Enim voluptate amet anim mollit nulla esse adipisicing minim aliquip ex.\r\n", + "registered": "2016-10-01T04:31:26 +06:00", + "latitude": -39.764934, + "longitude": -153.442723, + "tags": [ + "veniam", + "nostrud", + "aute", + "culpa", + "consectetur", + "magna", + "id" + ], + "friends": [ + { + "id": 0, + "name": "Ortiz Schwartz" + }, + { + "id": 1, + "name": "Dolly Lancaster" + }, + { + "id": 2, + "name": "Meagan Benson" + } + ], + "greeting": "Hello, Callahan Hunter! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302176606fdb4b54ef148", + "index": 294, + "guid": "77353e08-9c63-4831-a260-0fc946705f46", + "isActive": false, + "balance": "$1,989.40", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "blue", + "name": "Alexander Carson", + "gender": "male", + "company": "DEMINIMUM", + "email": "alexandercarson@deminimum.com", + "phone": "+1 (818) 479-2579", + "address": "876 Hubbard Street, Tolu, Missouri, 8246", + "about": "Ad labore sunt anim aliquip. Aute eu cillum nostrud officia non laborum est consequat tempor reprehenderit. Aute anim ex anim in deserunt culpa non culpa ad exercitation eu laborum. Elit ea reprehenderit magna aute incididunt laborum magna sint sint et pariatur minim officia. Ut enim in ad dolore voluptate laboris tempor eiusmod et officia quis do deserunt.\r\n", + "registered": "2014-12-26T02:46:39 +07:00", + "latitude": 15.610963, + "longitude": -127.148798, + "tags": [ + "cupidatat", + "veniam", + "veniam", + "ex", + "laboris", + "enim", + "magna" + ], + "friends": [ + { + "id": 0, + "name": "Daniels Riggs" + }, + { + "id": 1, + "name": "Candace Webster" + }, + { + "id": 2, + "name": "Carpenter Oneill" + } + ], + "greeting": "Hello, Alexander Carson! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217d5891eb0d88112b4", + "index": 295, + "guid": "7a709012-fda6-470a-8a40-57110f535a52", + "isActive": false, + "balance": "$2,903.59", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "blue", + "name": "Dawson Dudley", + "gender": "male", + "company": "QUONK", + "email": "dawsondudley@quonk.com", + "phone": "+1 (939) 400-3252", + "address": "508 Anchorage Place, Dowling, Guam, 983", + "about": "Eiusmod exercitation dolor dolor aliquip elit do ea qui aliqua aliquip. Id laborum reprehenderit aute adipisicing nulla dolor laboris. Ipsum cupidatat commodo duis nulla veniam et cupidatat deserunt do laborum sint irure exercitation non. Cupidatat est cillum ut incididunt. Velit proident culpa laboris culpa minim fugiat laborum ullamco ad fugiat.\r\n", + "registered": "2018-03-03T01:53:41 +07:00", + "latitude": -32.890724, + "longitude": 157.875451, + "tags": [ + "eu", + "ea", + "labore", + "veniam", + "eu", + "esse", + "qui" + ], + "friends": [ + { + "id": 0, + "name": "Casandra Maynard" + }, + { + "id": 1, + "name": "Garrett Osborn" + }, + { + "id": 2, + "name": "Burch Clemons" + } + ], + "greeting": "Hello, Dawson Dudley! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217d2d750963c0882f6", + "index": 296, + "guid": "34af6c9d-0eba-4d6c-a874-0bf7ce2275f0", + "isActive": true, + "balance": "$2,528.71", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "blue", + "name": "Thelma Dennis", + "gender": "female", + "company": "PROVIDCO", + "email": "thelmadennis@providco.com", + "phone": "+1 (823) 598-3733", + "address": "909 Ridgecrest Terrace, Berlin, Minnesota, 1700", + "about": "Incididunt Lorem amet dolore adipisicing officia voluptate consectetur cupidatat. Id qui tempor dolor pariatur Lorem irure incididunt ea. Ea sint id sit elit sunt Lorem consectetur minim Lorem ipsum proident. Anim id veniam id cupidatat eiusmod commodo ipsum est dolore reprehenderit in. Exercitation est laboris cillum pariatur sint aliqua.\r\n", + "registered": "2017-11-19T01:14:48 +07:00", + "latitude": 0.975881, + "longitude": 117.74463, + "tags": [ + "duis", + "ad", + "est", + "excepteur", + "dolor", + "culpa", + "voluptate" + ], + "friends": [ + { + "id": 0, + "name": "Espinoza Newman" + }, + { + "id": 1, + "name": "Nichols Michael" + }, + { + "id": 2, + "name": "Vicky Barnes" + } + ], + "greeting": "Hello, Thelma Dennis! You have 1 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217232b0a2bda130567", + "index": 297, + "guid": "9206f527-9d6d-4c79-867f-ee757a407b10", + "isActive": true, + "balance": "$1,519.16", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "blue", + "name": "Hall Morrow", + "gender": "male", + "company": "AMTAS", + "email": "hallmorrow@amtas.com", + "phone": "+1 (978) 407-3256", + "address": "888 Billings Place, Hardyville, Delaware, 5545", + "about": "Ullamco ipsum est nostrud aliquip incididunt eiusmod elit et est. Mollit laborum quis quis magna tempor irure Lorem cupidatat eiusmod ipsum laboris. Et sint officia ut sunt eu esse labore nisi nulla sint sunt Lorem. Esse sunt laboris minim Lorem duis ullamco tempor occaecat. Exercitation duis nisi do incididunt voluptate voluptate ullamco veniam consequat dolor ullamco consectetur excepteur id.\r\n", + "registered": "2015-01-06T06:47:45 +07:00", + "latitude": -29.675384, + "longitude": 29.994113, + "tags": [ + "nulla", + "nulla", + "excepteur", + "non", + "nulla", + "pariatur", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Olga Simon" + }, + { + "id": 1, + "name": "Jacqueline Petersen" + }, + { + "id": 2, + "name": "Waller Nixon" + } + ], + "greeting": "Hello, Hall Morrow! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302179b62dd46df0cf70e", + "index": 298, + "guid": "7ac77ef2-ae97-46bb-b50b-082b13ad0e1f", + "isActive": true, + "balance": "$3,716.17", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "blue", + "name": "Ross Williamson", + "gender": "male", + "company": "QUINEX", + "email": "rosswilliamson@quinex.com", + "phone": "+1 (860) 561-3065", + "address": "553 Elizabeth Place, Coalmont, Kansas, 5017", + "about": "Veniam minim esse qui velit labore excepteur fugiat est eiusmod officia aliquip. In aliquip irure quis sunt quis magna reprehenderit laborum. Nulla ex laborum culpa nostrud magna deserunt dolor consectetur proident. Do Lorem ullamco incididunt est pariatur et. Tempor minim nostrud ipsum cupidatat consectetur.\r\n", + "registered": "2015-09-15T07:37:38 +06:00", + "latitude": -40.286994, + "longitude": -66.116128, + "tags": [ + "ullamco", + "amet", + "officia", + "culpa", + "quis", + "occaecat", + "ea" + ], + "friends": [ + { + "id": 0, + "name": "Rosanne Shaffer" + }, + { + "id": 1, + "name": "Mabel Mcclure" + }, + { + "id": 2, + "name": "Holly Lang" + } + ], + "greeting": "Hello, Ross Williamson! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217395c18f4a3989f0b", + "index": 299, + "guid": "b46e10e2-3efe-4f79-9dfe-1bcf85cd5c38", + "isActive": true, + "balance": "$3,312.26", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "brown", + "name": "England Cardenas", + "gender": "male", + "company": "MAZUDA", + "email": "englandcardenas@mazuda.com", + "phone": "+1 (850) 437-3955", + "address": "533 Rogers Avenue, Johnsonburg, Washington, 5745", + "about": "Cillum laboris labore Lorem voluptate nostrud excepteur adipisicing. Culpa ex velit et sint duis id tempor consectetur sint excepteur laboris anim deserunt sunt. In culpa veniam ipsum aliqua mollit dolore aliquip nisi. Cupidatat commodo occaecat dolore veniam duis non quis ex esse mollit mollit. Non pariatur proident cillum officia fugiat sit fugiat labore deserunt laboris reprehenderit id.\r\n", + "registered": "2016-09-02T02:21:02 +06:00", + "latitude": -72.479218, + "longitude": 4.261651, + "tags": [ + "amet", + "exercitation", + "id", + "aliquip", + "Lorem", + "magna", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Ortega Donovan" + }, + { + "id": 1, + "name": "Julia Melton" + }, + { + "id": 2, + "name": "Lee Nolan" + } + ], + "greeting": "Hello, England Cardenas! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217e0c186230cc9b4db", + "index": 300, + "guid": "98d542f0-9af8-4f44-9dfc-48b70e8adfc6", + "isActive": true, + "balance": "$3,417.65", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "green", + "name": "Collier Anderson", + "gender": "male", + "company": "COGNICODE", + "email": "collieranderson@cognicode.com", + "phone": "+1 (946) 545-2969", + "address": "918 Kermit Place, Loyalhanna, Oklahoma, 3828", + "about": "Do elit aliquip elit qui deserunt sunt minim cupidatat incididunt enim consequat incididunt. Do sint excepteur sit culpa esse. Elit Lorem voluptate ipsum culpa eiusmod sit.\r\n", + "registered": "2014-02-20T11:19:52 +07:00", + "latitude": -47.291255, + "longitude": -117.71076, + "tags": [ + "velit", + "eu", + "officia", + "voluptate", + "veniam", + "duis", + "incididunt" + ], + "friends": [ + { + "id": 0, + "name": "Lara Graham" + }, + { + "id": 1, + "name": "Neva Campbell" + }, + { + "id": 2, + "name": "Carolyn Swanson" + } + ], + "greeting": "Hello, Collier Anderson! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217a85d20648701b95e", + "index": 301, + "guid": "da571473-994d-4910-b3b0-00736427fb8d", + "isActive": false, + "balance": "$2,500.34", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "green", + "name": "Barlow Glenn", + "gender": "male", + "company": "REALMO", + "email": "barlowglenn@realmo.com", + "phone": "+1 (825) 462-3175", + "address": "314 George Street, Savannah, Kentucky, 6598", + "about": "Occaecat proident ullamco do voluptate id nisi ex esse adipisicing in officia incididunt. Enim consequat sit fugiat anim ex ipsum ipsum exercitation minim laborum. In ad duis nulla sit eu veniam deserunt id nostrud. Dolore elit anim nisi enim id sint. Aliqua occaecat commodo reprehenderit fugiat laboris pariatur. Enim proident ipsum irure commodo deserunt duis ad in incididunt. Ea in qui et mollit consectetur Lorem mollit quis.\r\n", + "registered": "2016-05-04T08:26:14 +06:00", + "latitude": 53.960833, + "longitude": -79.559188, + "tags": [ + "fugiat", + "ad", + "aliquip", + "voluptate", + "exercitation", + "aliquip", + "elit" + ], + "friends": [ + { + "id": 0, + "name": "Vargas Ford" + }, + { + "id": 1, + "name": "Buckley Burns" + }, + { + "id": 2, + "name": "Kate Glover" + } + ], + "greeting": "Hello, Barlow Glenn! You have 8 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217af85afc81003df71", + "index": 302, + "guid": "4344062f-e314-40e5-b99c-966f783048ad", + "isActive": true, + "balance": "$3,419.21", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "brown", + "name": "Frankie Bailey", + "gender": "female", + "company": "PHEAST", + "email": "frankiebailey@pheast.com", + "phone": "+1 (955) 591-2153", + "address": "238 Lafayette Walk, Jennings, Alabama, 8899", + "about": "Cillum et nostrud cillum incididunt do cupidatat cillum laboris ipsum ipsum enim. Qui minim cillum duis irure in anim esse ipsum cupidatat nostrud anim reprehenderit. Irure ut exercitation aliqua enim exercitation nulla sunt ullamco nulla velit. Culpa dolore consectetur qui ad excepteur magna elit occaecat elit.\r\n", + "registered": "2014-08-13T01:52:24 +06:00", + "latitude": 2.11812, + "longitude": 0.181697, + "tags": [ + "amet", + "anim", + "consectetur", + "nisi", + "dolor", + "amet", + "irure" + ], + "friends": [ + { + "id": 0, + "name": "Shelly Meadows" + }, + { + "id": 1, + "name": "William Flowers" + }, + { + "id": 2, + "name": "Cox Duran" + } + ], + "greeting": "Hello, Frankie Bailey! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302175ef314aafda266a8", + "index": 303, + "guid": "fd1c0e3a-ef39-4d11-91d1-96a251849015", + "isActive": true, + "balance": "$3,245.03", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "green", + "name": "Gracie Barton", + "gender": "female", + "company": "STOCKPOST", + "email": "graciebarton@stockpost.com", + "phone": "+1 (808) 499-3176", + "address": "689 National Drive, Harrodsburg, West Virginia, 6919", + "about": "Eu labore do sunt anim. Duis duis dolore adipisicing cillum magna ullamco do. Magna nulla Lorem ipsum consectetur amet excepteur. Nulla proident magna amet laborum qui. Velit et ea duis magna occaecat velit. Aliquip cupidatat cupidatat cupidatat ad deserunt amet reprehenderit incididunt non labore laboris. Fugiat laborum occaecat Lorem commodo excepteur nostrud nulla tempor est.\r\n", + "registered": "2015-06-21T03:46:07 +06:00", + "latitude": -43.353746, + "longitude": 116.480383, + "tags": [ + "sit", + "in", + "cillum", + "tempor", + "enim", + "deserunt", + "veniam" + ], + "friends": [ + { + "id": 0, + "name": "Anna Higgins" + }, + { + "id": 1, + "name": "Flores Drake" + }, + { + "id": 2, + "name": "Lang Gomez" + } + ], + "greeting": "Hello, Gracie Barton! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217e4fe54337dc833c3", + "index": 304, + "guid": "ae44c940-236d-41ed-ab11-7501bc6a0945", + "isActive": true, + "balance": "$3,390.77", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "green", + "name": "Contreras Burks", + "gender": "male", + "company": "XYMONK", + "email": "contrerasburks@xymonk.com", + "phone": "+1 (888) 426-3478", + "address": "680 Boerum Place, Tooleville, Ohio, 7404", + "about": "Deserunt cupidatat tempor ullamco in labore veniam ad consectetur laborum nulla do quis qui proident. Id reprehenderit pariatur magna nostrud dolor ullamco aliqua duis amet quis. Aute voluptate incididunt culpa laborum nostrud. Veniam aliqua excepteur amet anim deserunt incididunt.\r\n", + "registered": "2015-06-09T07:39:46 +06:00", + "latitude": -11.833078, + "longitude": -19.992345, + "tags": [ + "ipsum", + "nostrud", + "id", + "laboris", + "ut", + "cillum", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Sharpe Marsh" + }, + { + "id": 1, + "name": "Beck Davidson" + }, + { + "id": 2, + "name": "Cheri Rivas" + } + ], + "greeting": "Hello, Contreras Burks! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217c3a074a5c70459eb", + "index": 305, + "guid": "cfa709c3-967c-480b-8c06-4190dcb9692f", + "isActive": true, + "balance": "$2,176.71", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "brown", + "name": "Austin Stevenson", + "gender": "male", + "company": "EYERIS", + "email": "austinstevenson@eyeris.com", + "phone": "+1 (956) 542-2917", + "address": "997 Bijou Avenue, Belva, Connecticut, 5786", + "about": "Do ex est amet non quis eiusmod eu dolore aliquip ullamco excepteur pariatur. Enim velit sunt qui velit officia veniam laboris officia magna esse minim do occaecat laborum. Do reprehenderit minim eiusmod ut cillum velit amet ea. Aute dolore aute eiusmod ut consectetur nulla sunt. Enim laborum ex velit culpa reprehenderit in ex ullamco reprehenderit ad. Anim officia deserunt dolore dolor velit ipsum laboris dolor ipsum ea eiusmod nulla occaecat fugiat.\r\n", + "registered": "2014-06-30T10:48:10 +06:00", + "latitude": -75.581418, + "longitude": 42.07971, + "tags": [ + "tempor", + "nostrud", + "reprehenderit", + "ea", + "dolor", + "officia", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Rowena Hull" + }, + { + "id": 1, + "name": "Obrien Barron" + }, + { + "id": 2, + "name": "Hayden Walsh" + } + ], + "greeting": "Hello, Austin Stevenson! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021764e1cf262caaaa50", + "index": 306, + "guid": "b9849458-7125-4630-83a6-e038977637e0", + "isActive": true, + "balance": "$3,591.73", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "brown", + "name": "Rita Welch", + "gender": "female", + "company": "GINKOGENE", + "email": "ritawelch@ginkogene.com", + "phone": "+1 (820) 481-3129", + "address": "935 Belmont Avenue, Marienthal, North Dakota, 2048", + "about": "Nisi dolore aliqua cupidatat proident irure. Laboris tempor id irure commodo sit in dolor id officia adipisicing ullamco incididunt. Dolore ea enim deserunt aliquip. Exercitation eiusmod adipisicing amet tempor tempor ut incididunt elit sint labore.\r\n", + "registered": "2017-09-10T10:34:25 +06:00", + "latitude": 56.777097, + "longitude": 158.22072, + "tags": [ + "amet", + "proident", + "magna", + "pariatur", + "eu", + "sit", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Myrna Klein" + }, + { + "id": 1, + "name": "Hillary Wilder" + }, + { + "id": 2, + "name": "Angeline Manning" + } + ], + "greeting": "Hello, Rita Welch! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302175ed88dc1c434262a", + "index": 307, + "guid": "75b1f953-8255-45f2-b684-2263dbfb431b", + "isActive": false, + "balance": "$3,997.21", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Fields Murphy", + "gender": "male", + "company": "INSURON", + "email": "fieldsmurphy@insuron.com", + "phone": "+1 (932) 506-2905", + "address": "864 Oak Street, Thornport, Mississippi, 3083", + "about": "Enim ullamco aliquip excepteur est. Culpa consequat dolor reprehenderit est. Nostrud non id ad magna officia. Anim aliqua velit dolore minim deserunt. Dolor et ad fugiat deserunt dolor proident ad eiusmod laboris esse. Deserunt Lorem mollit aute consectetur deserunt deserunt quis.\r\n", + "registered": "2016-11-22T05:47:49 +07:00", + "latitude": 10.730687, + "longitude": 108.476437, + "tags": [ + "proident", + "Lorem", + "aute", + "minim", + "id", + "cupidatat", + "ea" + ], + "friends": [ + { + "id": 0, + "name": "Rachel Alvarado" + }, + { + "id": 1, + "name": "Rosie Singleton" + }, + { + "id": 2, + "name": "Hurst Wyatt" + } + ], + "greeting": "Hello, Fields Murphy! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302171eda48bd7679df44", + "index": 308, + "guid": "f66eb461-fff6-43e2-a3a0-2075e99d66f7", + "isActive": true, + "balance": "$1,457.40", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "brown", + "name": "Munoz Larsen", + "gender": "male", + "company": "TRIBALOG", + "email": "munozlarsen@tribalog.com", + "phone": "+1 (804) 476-3012", + "address": "891 Monitor Street, Riverton, New York, 8458", + "about": "Exercitation nulla ipsum ut culpa laboris esse ex enim exercitation eiusmod. Voluptate eu et nisi sint ullamco eiusmod velit in quis. Excepteur amet adipisicing mollit ullamco sit duis reprehenderit fugiat ad aute nulla.\r\n", + "registered": "2015-12-21T08:31:14 +07:00", + "latitude": 53.703576, + "longitude": 99.671126, + "tags": [ + "ut", + "nisi", + "commodo", + "elit", + "velit", + "dolore", + "commodo" + ], + "friends": [ + { + "id": 0, + "name": "Mendez Avila" + }, + { + "id": 1, + "name": "Lucille Calderon" + }, + { + "id": 2, + "name": "Wise Wood" + } + ], + "greeting": "Hello, Munoz Larsen! You have 1 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302175545b805cc6c4653", + "index": 309, + "guid": "1bf3b902-ad67-4f2c-bfa2-aed78b1d6515", + "isActive": true, + "balance": "$3,323.97", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "blue", + "name": "Janie Dale", + "gender": "female", + "company": "UPLINX", + "email": "janiedale@uplinx.com", + "phone": "+1 (849) 540-2322", + "address": "143 Hull Street, Drytown, Oregon, 8340", + "about": "Deserunt commodo qui cupidatat ea elit sit quis. Sit deserunt tempor duis duis adipisicing reprehenderit occaecat sint minim laboris laboris excepteur anim. Magna cupidatat excepteur aute culpa cupidatat in Lorem velit. Officia cillum sunt qui enim dolore culpa. Mollit reprehenderit reprehenderit ad consectetur dolore nisi magna sint aliqua nulla aliquip nisi.\r\n", + "registered": "2015-03-25T07:12:24 +06:00", + "latitude": -14.921606, + "longitude": 172.102949, + "tags": [ + "pariatur", + "id", + "deserunt", + "nulla", + "enim", + "eu", + "do" + ], + "friends": [ + { + "id": 0, + "name": "Lowe Hurley" + }, + { + "id": 1, + "name": "Oliver Mclean" + }, + { + "id": 2, + "name": "Pearl Shaw" + } + ], + "greeting": "Hello, Janie Dale! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302176bcb2d0249bce013", + "index": 310, + "guid": "b24cd704-0591-459f-9e16-84b6ee536574", + "isActive": false, + "balance": "$1,696.23", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "green", + "name": "Sara Nichols", + "gender": "female", + "company": "PORTALIS", + "email": "saranichols@portalis.com", + "phone": "+1 (964) 568-2535", + "address": "689 Harkness Avenue, Swartzville, New Jersey, 2876", + "about": "Proident deserunt minim mollit ad non cillum elit nostrud mollit. Magna minim id sint enim deserunt tempor nostrud et duis eiusmod proident. Irure enim nostrud qui Lorem duis eiusmod. Quis Lorem dolore labore anim aliqua culpa aute adipisicing sunt consectetur aute nostrud. Do consequat duis nisi cillum pariatur incididunt culpa do ullamco.\r\n", + "registered": "2016-09-22T08:50:09 +06:00", + "latitude": 47.949648, + "longitude": -119.034294, + "tags": [ + "dolore", + "magna", + "sint", + "incididunt", + "occaecat", + "amet", + "ad" + ], + "friends": [ + { + "id": 0, + "name": "Mcintosh Combs" + }, + { + "id": 1, + "name": "Mcdaniel Rodgers" + }, + { + "id": 2, + "name": "Araceli Rowland" + } + ], + "greeting": "Hello, Sara Nichols! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021752a1665f1cd22070", + "index": 311, + "guid": "48a41dc3-742f-4d9e-9b4e-eb20fdd7725d", + "isActive": false, + "balance": "$3,307.97", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "blue", + "name": "Mccray Bridges", + "gender": "male", + "company": "ENERSOL", + "email": "mccraybridges@enersol.com", + "phone": "+1 (917) 494-2435", + "address": "982 Jerome Avenue, Urbana, Montana, 5972", + "about": "Elit tempor tempor incididunt non excepteur. Cillum laboris id ex mollit veniam. Nisi cillum mollit dolore ea aliquip dolore ullamco pariatur sint ullamco aute ex laborum adipisicing.\r\n", + "registered": "2014-08-11T07:51:08 +06:00", + "latitude": -9.931882, + "longitude": 150.838793, + "tags": [ + "veniam", + "eiusmod", + "nisi", + "amet", + "voluptate", + "ut", + "enim" + ], + "friends": [ + { + "id": 0, + "name": "Rose Jennings" + }, + { + "id": 1, + "name": "Mae Bell" + }, + { + "id": 2, + "name": "Atkins Mccullough" + } + ], + "greeting": "Hello, Mccray Bridges! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217d6b464538f810529", + "index": 312, + "guid": "f0d076a1-c406-4d1a-8348-969ddbe4e007", + "isActive": true, + "balance": "$1,190.29", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "blue", + "name": "Daugherty Williams", + "gender": "male", + "company": "ROOFORIA", + "email": "daughertywilliams@rooforia.com", + "phone": "+1 (820) 526-3549", + "address": "422 Tudor Terrace, Lowgap, Nevada, 3607", + "about": "Qui voluptate commodo ipsum sit dolore dolore reprehenderit. Velit ullamco pariatur nisi fugiat esse consectetur est exercitation id. Adipisicing nostrud cillum commodo Lorem eu velit commodo velit id est.\r\n", + "registered": "2014-07-21T08:26:30 +06:00", + "latitude": 51.854181, + "longitude": 89.597602, + "tags": [ + "duis", + "eu", + "commodo", + "ut", + "pariatur", + "ipsum", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "Cora Nunez" + }, + { + "id": 1, + "name": "Casey Rutledge" + }, + { + "id": 2, + "name": "Flowers Noel" + } + ], + "greeting": "Hello, Daugherty Williams! You have 8 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217483d34f7fe59aef8", + "index": 313, + "guid": "d2376bd6-3d2a-4f60-b2e7-989f321e6d9f", + "isActive": true, + "balance": "$2,324.98", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "green", + "name": "Liz Lane", + "gender": "female", + "company": "ISOLOGIA", + "email": "lizlane@isologia.com", + "phone": "+1 (887) 536-3120", + "address": "552 Halleck Street, Blanford, Colorado, 1806", + "about": "Commodo veniam eiusmod sit labore dolor pariatur dolore irure non. Ex velit minim Lorem aute ullamco officia irure voluptate aliqua consectetur ea Lorem eiusmod. Et eu officia anim sunt ipsum. Adipisicing sit cillum ipsum sint pariatur do nisi. Anim proident ex ipsum excepteur eiusmod velit pariatur est consectetur et. Exercitation consectetur exercitation amet et non minim culpa velit ut nostrud aliqua minim.\r\n", + "registered": "2017-10-30T03:08:10 +06:00", + "latitude": -30.801978, + "longitude": -22.45657, + "tags": [ + "Lorem", + "eu", + "et", + "eiusmod", + "ullamco", + "officia", + "ullamco" + ], + "friends": [ + { + "id": 0, + "name": "Jodie Sloan" + }, + { + "id": 1, + "name": "Harriett Barlow" + }, + { + "id": 2, + "name": "Wyatt Carpenter" + } + ], + "greeting": "Hello, Liz Lane! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217dd1c8f544cd7cee1", + "index": 314, + "guid": "8578568b-0064-4b26-9ceb-2bd51503d65a", + "isActive": false, + "balance": "$1,779.64", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Dudley Browning", + "gender": "male", + "company": "COMTRACT", + "email": "dudleybrowning@comtract.com", + "phone": "+1 (867) 529-3643", + "address": "529 Tehama Street, Northridge, New Mexico, 1257", + "about": "Sit incididunt adipisicing qui sunt. Esse proident excepteur ipsum labore excepteur excepteur labore. Est fugiat officia occaecat nisi. Officia cillum laborum esse qui ex dolore ipsum ullamco aute consequat tempor.\r\n", + "registered": "2016-12-16T07:44:05 +07:00", + "latitude": -10.168976, + "longitude": -161.014926, + "tags": [ + "elit", + "id", + "aliquip", + "consectetur", + "veniam", + "deserunt", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "Karen Ayers" + }, + { + "id": 1, + "name": "Slater Prince" + }, + { + "id": 2, + "name": "Townsend Wilson" + } + ], + "greeting": "Hello, Dudley Browning! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217905bd24e62d2effb", + "index": 315, + "guid": "f687e7d7-2743-4ee5-81b6-0ab40c33c717", + "isActive": false, + "balance": "$1,176.31", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "green", + "name": "Bush Mcintyre", + "gender": "male", + "company": "MUSIX", + "email": "bushmcintyre@musix.com", + "phone": "+1 (953) 561-3042", + "address": "108 Williamsburg Street, Wacissa, Texas, 4124", + "about": "Voluptate enim nostrud dolor exercitation cupidatat aliqua id sint non nulla. Nulla eiusmod minim ullamco consectetur. Anim nisi aute esse ullamco nostrud incididunt tempor cupidatat. Do consectetur est tempor eu enim veniam fugiat. Laboris culpa aliqua veniam exercitation consectetur Lorem. Duis ut in adipisicing velit reprehenderit ad. Sit excepteur irure voluptate laboris exercitation dolore consectetur.\r\n", + "registered": "2014-09-24T04:09:40 +06:00", + "latitude": -57.19905, + "longitude": 99.296139, + "tags": [ + "tempor", + "ex", + "velit", + "ut", + "et", + "occaecat", + "pariatur" + ], + "friends": [ + { + "id": 0, + "name": "Stevens Aguilar" + }, + { + "id": 1, + "name": "Clarissa Daniels" + }, + { + "id": 2, + "name": "Sharron Rios" + } + ], + "greeting": "Hello, Bush Mcintyre! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217afa3133c7abbf841", + "index": 316, + "guid": "f4633218-61b0-483b-96d4-59dca0ae0403", + "isActive": false, + "balance": "$1,203.73", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "blue", + "name": "Kim Nguyen", + "gender": "female", + "company": "VERAQ", + "email": "kimnguyen@veraq.com", + "phone": "+1 (923) 577-3166", + "address": "566 Branton Street, Alleghenyville, North Carolina, 2871", + "about": "Et cillum voluptate id enim ad voluptate ullamco amet esse dolore. Aute ea quis esse reprehenderit occaecat est dolor sunt dolor voluptate voluptate adipisicing. Fugiat excepteur non officia in dolor voluptate pariatur ipsum.\r\n", + "registered": "2014-11-22T03:44:20 +07:00", + "latitude": 32.860429, + "longitude": 25.344046, + "tags": [ + "duis", + "dolore", + "incididunt", + "pariatur", + "cillum", + "quis", + "veniam" + ], + "friends": [ + { + "id": 0, + "name": "Charity Sellers" + }, + { + "id": 1, + "name": "Calhoun Cain" + }, + { + "id": 2, + "name": "Lula Mullen" + } + ], + "greeting": "Hello, Kim Nguyen! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217f6a54d96eae26098", + "index": 317, + "guid": "04100b8b-a464-455b-b602-c02c86d00b56", + "isActive": true, + "balance": "$3,264.34", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "brown", + "name": "Acevedo Rich", + "gender": "male", + "company": "IMANT", + "email": "acevedorich@imant.com", + "phone": "+1 (945) 495-3311", + "address": "796 Madeline Court, Lindcove, Nebraska, 2571", + "about": "Cupidatat voluptate ut dolor ea. Elit pariatur ut ex adipisicing excepteur est sit fugiat ex quis elit. Cillum laboris est nostrud ea mollit laboris ullamco et. Tempor quis quis excepteur eiusmod eiusmod pariatur duis. Lorem do fugiat reprehenderit occaecat eu officia. Qui minim dolore ullamco minim aliquip. Velit sunt et fugiat non ullamco occaecat sit est non deserunt enim proident sunt.\r\n", + "registered": "2017-07-07T12:57:13 +06:00", + "latitude": 2.96896, + "longitude": -122.765627, + "tags": [ + "culpa", + "irure", + "ipsum", + "tempor", + "consectetur", + "sit", + "ea" + ], + "friends": [ + { + "id": 0, + "name": "Brennan Wall" + }, + { + "id": 1, + "name": "Susan Mosley" + }, + { + "id": 2, + "name": "Antonia Rodriquez" + } + ], + "greeting": "Hello, Acevedo Rich! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302174fb5ab96efb8d6f4", + "index": 318, + "guid": "c658fa45-c856-4fc3-9998-8c9e6cee51d7", + "isActive": false, + "balance": "$1,074.24", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "green", + "name": "Lina Tanner", + "gender": "female", + "company": "DADABASE", + "email": "linatanner@dadabase.com", + "phone": "+1 (906) 555-3521", + "address": "693 Roosevelt Court, Healy, Tennessee, 5023", + "about": "Veniam tempor eiusmod consectetur mollit elit adipisicing incididunt magna ex adipisicing. Reprehenderit culpa Lorem aliquip minim. Tempor nisi amet in eiusmod.\r\n", + "registered": "2016-12-30T12:29:21 +07:00", + "latitude": 78.507026, + "longitude": 81.72912, + "tags": [ + "do", + "sint", + "minim", + "ad", + "ad", + "nisi", + "sint" + ], + "friends": [ + { + "id": 0, + "name": "Gilbert Moore" + }, + { + "id": 1, + "name": "Riddle Cameron" + }, + { + "id": 2, + "name": "Esther Norton" + } + ], + "greeting": "Hello, Lina Tanner! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021770e52625333a322b", + "index": 319, + "guid": "25861bb4-54dd-4530-bfb6-459edc2cdd3f", + "isActive": false, + "balance": "$2,568.77", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "green", + "name": "Adrian Tran", + "gender": "female", + "company": "ANIXANG", + "email": "adriantran@anixang.com", + "phone": "+1 (891) 474-2698", + "address": "239 Belvidere Street, Riegelwood, Utah, 7892", + "about": "Veniam occaecat et enim fugiat labore duis duis ipsum. Non dolor duis in magna ut ut aliqua anim sunt esse do cillum. Dolore laborum dolore et in dolore eu tempor aliqua magna duis proident.\r\n", + "registered": "2014-06-24T05:38:45 +06:00", + "latitude": 39.149788, + "longitude": -162.408247, + "tags": [ + "duis", + "ex", + "ut", + "enim", + "quis", + "aliquip", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Natasha Brewer" + }, + { + "id": 1, + "name": "Shepard Nielsen" + }, + { + "id": 2, + "name": "Bertie Harrell" + } + ], + "greeting": "Hello, Adrian Tran! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217a3d94e2e118e8a63", + "index": 320, + "guid": "21f47bd2-8eba-4eac-b3fd-f9bb334eb604", + "isActive": true, + "balance": "$3,004.89", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "blue", + "name": "Mccoy Valdez", + "gender": "male", + "company": "ECLIPSENT", + "email": "mccoyvaldez@eclipsent.com", + "phone": "+1 (916) 593-2524", + "address": "247 Rugby Road, Macdona, Marshall Islands, 3337", + "about": "Consectetur eiusmod ullamco reprehenderit enim nulla minim eu laboris do. Mollit laboris amet officia ea. Cillum cillum non veniam incididunt in elit eiusmod veniam do non cillum pariatur. Ullamco do enim cupidatat tempor. Nulla ea non veniam anim. Nulla do laborum reprehenderit pariatur dolore Lorem sit magna aute. Quis elit aliquip ea laborum nostrud non ipsum commodo exercitation magna adipisicing.\r\n", + "registered": "2014-06-26T12:15:12 +06:00", + "latitude": -19.903069, + "longitude": 149.789728, + "tags": [ + "non", + "duis", + "deserunt", + "id", + "velit", + "nostrud", + "nostrud" + ], + "friends": [ + { + "id": 0, + "name": "Chambers Hess" + }, + { + "id": 1, + "name": "Anne Suarez" + }, + { + "id": 2, + "name": "Baker Logan" + } + ], + "greeting": "Hello, Mccoy Valdez! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217283ab783a3dcc025", + "index": 321, + "guid": "d41d7e14-6cb9-49e8-b99f-2ce78a8074fd", + "isActive": false, + "balance": "$1,846.67", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "green", + "name": "Melody Reyes", + "gender": "female", + "company": "OLYMPIX", + "email": "melodyreyes@olympix.com", + "phone": "+1 (817) 524-2191", + "address": "275 Hawthorne Street, Finderne, Georgia, 837", + "about": "Tempor cupidatat aliqua sint occaecat. Ea et laborum voluptate culpa id proident velit consectetur dolor sint tempor. Dolore anim dolor exercitation aliquip aliqua non culpa nisi aute aute ipsum magna elit ut. Non aliquip deserunt officia irure nisi commodo in eiusmod excepteur cupidatat magna duis do dolore. Et officia eiusmod veniam amet nostrud deserunt reprehenderit. Ullamco adipisicing enim irure ullamco duis reprehenderit aliquip minim et pariatur dolore. Nulla mollit est enim cillum voluptate eu ex.\r\n", + "registered": "2017-10-25T11:57:28 +06:00", + "latitude": 60.111896, + "longitude": -83.015213, + "tags": [ + "voluptate", + "nostrud", + "excepteur", + "cillum", + "officia", + "voluptate", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Hays Joyner" + }, + { + "id": 1, + "name": "Augusta Jones" + }, + { + "id": 2, + "name": "Wilkerson Fulton" + } + ], + "greeting": "Hello, Melody Reyes! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021787e93e73e8af2524", + "index": 322, + "guid": "5eb8b970-87e0-4a9d-bddd-8fdd24ef3a54", + "isActive": true, + "balance": "$1,093.19", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Shari Mayo", + "gender": "female", + "company": "TRIPSCH", + "email": "sharimayo@tripsch.com", + "phone": "+1 (977) 467-3221", + "address": "926 Dakota Place, Byrnedale, Massachusetts, 4603", + "about": "Voluptate eiusmod ullamco irure ea sint. Quis culpa officia excepteur anim exercitation labore velit nulla mollit dolore reprehenderit do in ea. Magna sunt elit dolor voluptate esse quis enim nostrud labore excepteur pariatur amet. Qui deserunt consequat magna dolore amet qui et pariatur mollit.\r\n", + "registered": "2015-02-19T07:03:13 +07:00", + "latitude": -49.148491, + "longitude": 71.945438, + "tags": [ + "nostrud", + "dolor", + "aliqua", + "eiusmod", + "sunt", + "elit", + "aliqua" + ], + "friends": [ + { + "id": 0, + "name": "Bryant Daugherty" + }, + { + "id": 1, + "name": "Marsh Sims" + }, + { + "id": 2, + "name": "Tracy Mcintosh" + } + ], + "greeting": "Hello, Shari Mayo! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217fb29c778997534ae", + "index": 323, + "guid": "3918b823-6cbe-4479-8191-bd60f9509c61", + "isActive": false, + "balance": "$3,139.34", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "blue", + "name": "Lauren Townsend", + "gender": "female", + "company": "PEARLESSA", + "email": "laurentownsend@pearlessa.com", + "phone": "+1 (806) 463-3009", + "address": "596 Albemarle Road, Westboro, Arizona, 2486", + "about": "Pariatur est duis ut anim ad sunt ipsum ut veniam dolore amet enim qui id. Aliqua voluptate officia pariatur occaecat ipsum reprehenderit eu eiusmod consequat magna pariatur exercitation elit. Proident veniam consectetur Lorem magna culpa consectetur adipisicing enim ea pariatur nulla. Reprehenderit minim adipisicing nisi magna cupidatat laborum laboris est sint deserunt consectetur officia irure ipsum. Sit tempor nulla eiusmod est quis aute. Irure labore elit ut adipisicing exercitation.\r\n", + "registered": "2017-10-15T12:42:54 +06:00", + "latitude": -23.797096, + "longitude": -134.475421, + "tags": [ + "tempor", + "aute", + "adipisicing", + "ea", + "et", + "excepteur", + "nisi" + ], + "friends": [ + { + "id": 0, + "name": "Luella Osborne" + }, + { + "id": 1, + "name": "Battle Workman" + }, + { + "id": 2, + "name": "Perkins Marquez" + } + ], + "greeting": "Hello, Lauren Townsend! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217a8355a5df6c1f4bc", + "index": 324, + "guid": "3397b336-bc55-49cc-9ce6-58931289228a", + "isActive": true, + "balance": "$2,674.07", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "brown", + "name": "Noreen Everett", + "gender": "female", + "company": "MEGALL", + "email": "noreeneverett@megall.com", + "phone": "+1 (970) 432-3245", + "address": "984 Hope Street, Worcester, District Of Columbia, 9446", + "about": "Non adipisicing amet ex irure ex deserunt. Dolore exercitation velit velit eiusmod ut exercitation exercitation qui sint Lorem nostrud. Minim adipisicing culpa enim labore et excepteur duis culpa nulla eiusmod reprehenderit id aute. Mollit nisi ea eiusmod minim sint sunt proident ullamco. Elit dolore minim id duis. Ut velit dolore mollit cillum deserunt minim est reprehenderit ullamco dolor enim nulla incididunt aliqua.\r\n", + "registered": "2014-01-01T08:47:11 +07:00", + "latitude": -22.199302, + "longitude": 67.31354, + "tags": [ + "nulla", + "eiusmod", + "irure", + "non", + "id", + "nisi", + "minim" + ], + "friends": [ + { + "id": 0, + "name": "Rosemarie Briggs" + }, + { + "id": 1, + "name": "Ada Howe" + }, + { + "id": 2, + "name": "Fry Odonnell" + } + ], + "greeting": "Hello, Noreen Everett! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217866d8713937ec7af", + "index": 325, + "guid": "784d4c52-7232-48b1-b1f6-e0ac38f95b77", + "isActive": true, + "balance": "$3,707.12", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "brown", + "name": "Vicki Copeland", + "gender": "female", + "company": "STELAECOR", + "email": "vickicopeland@stelaecor.com", + "phone": "+1 (855) 531-3924", + "address": "225 Ridge Court, Goldfield, Virgin Islands, 4387", + "about": "Ad nulla et id commodo est dolor deserunt labore adipisicing officia eiusmod ad labore. Magna labore duis excepteur officia enim ex laboris ipsum eu pariatur. Aute culpa in veniam dolor incididunt. Incididunt quis consequat qui esse laboris enim elit sit fugiat enim enim laborum. Elit non commodo velit in eiusmod mollit quis veniam qui dolore. Quis est sint dolor id deserunt qui excepteur occaecat. Qui labore id enim qui amet labore.\r\n", + "registered": "2016-10-29T04:01:57 +06:00", + "latitude": 41.509403, + "longitude": 31.048928, + "tags": [ + "velit", + "est", + "amet", + "Lorem", + "aute", + "incididunt", + "dolor" + ], + "friends": [ + { + "id": 0, + "name": "Flynn Guy" + }, + { + "id": 1, + "name": "Lorna Hayes" + }, + { + "id": 2, + "name": "Marylou Walls" + } + ], + "greeting": "Hello, Vicki Copeland! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217c7b3fc9290199d81", + "index": 326, + "guid": "5fa570c8-5cc2-4b4b-a005-3520654ad557", + "isActive": false, + "balance": "$2,713.15", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "blue", + "name": "Haley Stone", + "gender": "male", + "company": "QUARX", + "email": "haleystone@quarx.com", + "phone": "+1 (900) 488-2625", + "address": "962 Veronica Place, Ernstville, South Dakota, 589", + "about": "Nostrud velit esse non aliqua ex esse nostrud ea elit non Lorem laboris. Et minim ut irure aliquip amet consectetur esse voluptate officia elit mollit est sint. Commodo anim quis et pariatur tempor commodo quis deserunt elit laborum veniam incididunt proident nulla. Officia pariatur pariatur voluptate deserunt non eu cillum do id pariatur do aliqua aliqua voluptate. Velit ex non commodo occaecat eiusmod dolore. Nulla mollit proident aliquip consectetur officia ipsum occaecat consequat exercitation deserunt tempor ullamco anim. Eiusmod Lorem nostrud excepteur esse nostrud eu commodo aliquip sit ad esse.\r\n", + "registered": "2016-07-10T12:05:35 +06:00", + "latitude": 24.340508, + "longitude": 146.46425, + "tags": [ + "consequat", + "occaecat", + "dolore", + "aute", + "sit", + "sunt", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Mann Harper" + }, + { + "id": 1, + "name": "Valerie Kerr" + }, + { + "id": 2, + "name": "Mcmillan Hinton" + } + ], + "greeting": "Hello, Haley Stone! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302170a9b9ea9f8e41bf6", + "index": 327, + "guid": "ccb48e94-cac1-49db-a0df-4ae886c4058a", + "isActive": true, + "balance": "$3,948.55", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "green", + "name": "Fanny Donaldson", + "gender": "female", + "company": "PODUNK", + "email": "fannydonaldson@podunk.com", + "phone": "+1 (856) 561-3018", + "address": "705 Moffat Street, Boomer, Virginia, 6063", + "about": "Consequat eu eiusmod reprehenderit enim officia eu eiusmod nisi incididunt eu enim commodo. Dolore laborum fugiat velit consequat veniam ea nostrud laborum amet minim. Do sint nisi culpa proident. Tempor ullamco eiusmod Lorem proident commodo ipsum. Quis proident elit sit laborum. Eu qui sunt veniam irure aute exercitation est excepteur in reprehenderit.\r\n", + "registered": "2014-01-23T07:17:31 +07:00", + "latitude": 20.426642, + "longitude": -122.159068, + "tags": [ + "ex", + "enim", + "laboris", + "eiusmod", + "ut", + "mollit", + "aute" + ], + "friends": [ + { + "id": 0, + "name": "Monique Shields" + }, + { + "id": 1, + "name": "Page Reynolds" + }, + { + "id": 2, + "name": "Dalton Pope" + } + ], + "greeting": "Hello, Fanny Donaldson! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217de0b7ab26ba523e9", + "index": 328, + "guid": "81f1aadb-d5eb-4f4f-802d-52765cc2da47", + "isActive": true, + "balance": "$3,362.28", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "green", + "name": "Williams Best", + "gender": "male", + "company": "SLAMBDA", + "email": "williamsbest@slambda.com", + "phone": "+1 (938) 515-3572", + "address": "896 Miller Avenue, Gasquet, Michigan, 926", + "about": "Ut cupidatat id consequat anim eiusmod excepteur commodo culpa enim. Deserunt est nisi incididunt laboris incididunt. Deserunt quis consectetur proident do enim exercitation. Eiusmod veniam ad qui in ullamco culpa ut consectetur fugiat amet. Est sunt irure commodo eu proident esse. Id non id dolore cillum laborum consectetur. Deserunt esse minim proident labore quis sit sunt ut amet.\r\n", + "registered": "2017-11-25T09:07:54 +07:00", + "latitude": -1.518954, + "longitude": 38.920738, + "tags": [ + "sint", + "non", + "ad", + "adipisicing", + "cupidatat", + "cillum", + "consectetur" + ], + "friends": [ + { + "id": 0, + "name": "Socorro Fox" + }, + { + "id": 1, + "name": "Mcleod Clark" + }, + { + "id": 2, + "name": "Nieves Gonzalez" + } + ], + "greeting": "Hello, Williams Best! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021705ceed0ea81d8fe3", + "index": 329, + "guid": "f080abea-7764-44f3-b12b-131762b0d510", + "isActive": false, + "balance": "$2,454.38", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "green", + "name": "Mollie Little", + "gender": "female", + "company": "ZENTHALL", + "email": "mollielittle@zenthall.com", + "phone": "+1 (947) 425-3419", + "address": "222 Mill Lane, Williamson, Northern Mariana Islands, 4733", + "about": "Nisi veniam incididunt laboris esse enim officia velit occaecat. Et sit pariatur id culpa labore cillum quis cupidatat dolore nulla non occaecat pariatur. Voluptate enim adipisicing amet veniam veniam fugiat laboris ullamco commodo consectetur dolor. Officia laboris elit aute tempor velit. Excepteur velit deserunt duis nostrud. Id est laboris in eu voluptate qui cillum proident commodo laborum qui laborum. Consequat proident elit ea id commodo non quis velit cupidatat enim.\r\n", + "registered": "2016-08-02T10:44:40 +06:00", + "latitude": -77.290763, + "longitude": -119.899951, + "tags": [ + "ullamco", + "aliqua", + "amet", + "sunt", + "duis", + "id", + "aliqua" + ], + "friends": [ + { + "id": 0, + "name": "Brewer Sawyer" + }, + { + "id": 1, + "name": "Elena Bauer" + }, + { + "id": 2, + "name": "Tracey Blake" + } + ], + "greeting": "Hello, Mollie Little! You have 7 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217481ee4cdca482c7d", + "index": 330, + "guid": "76af980c-6fc7-4cd5-b484-0d95a91c2ebe", + "isActive": true, + "balance": "$2,103.38", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "blue", + "name": "Cohen Rasmussen", + "gender": "male", + "company": "FUELTON", + "email": "cohenrasmussen@fuelton.com", + "phone": "+1 (871) 570-3848", + "address": "421 Tennis Court, Elizaville, Illinois, 2485", + "about": "Aute qui enim officia quis ipsum eu aliquip cupidatat. Elit culpa consectetur amet elit fugiat id consequat commodo. Lorem aute sunt exercitation qui. Fugiat reprehenderit aute enim duis laborum. Minim fugiat quis nostrud adipisicing nulla. Aute consectetur laboris mollit elit. Ut aliqua minim ad ipsum dolore.\r\n", + "registered": "2015-01-22T08:45:17 +07:00", + "latitude": 24.153718, + "longitude": -49.775963, + "tags": [ + "non", + "laborum", + "pariatur", + "nisi", + "ullamco", + "ea", + "exercitation" + ], + "friends": [ + { + "id": 0, + "name": "Lindsay Camacho" + }, + { + "id": 1, + "name": "Lydia Justice" + }, + { + "id": 2, + "name": "Matthews Rowe" + } + ], + "greeting": "Hello, Cohen Rasmussen! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302179cebbd27b53264ef", + "index": 331, + "guid": "e2f79fb4-e882-40cb-830b-e23ad6698cf9", + "isActive": false, + "balance": "$2,007.73", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "brown", + "name": "Mccullough Flynn", + "gender": "male", + "company": "EMTRAK", + "email": "mcculloughflynn@emtrak.com", + "phone": "+1 (867) 510-3203", + "address": "423 Dorchester Road, Abiquiu, Wisconsin, 368", + "about": "Enim adipisicing magna tempor aute aliqua. Est anim dolor exercitation pariatur. Officia tempor consequat cupidatat ad ipsum dolor reprehenderit. Elit aute amet aute elit cillum ea. Exercitation pariatur magna aliquip occaecat esse proident ad sint officia ea ex officia veniam.\r\n", + "registered": "2014-12-01T03:02:34 +07:00", + "latitude": -52.096376, + "longitude": -4.250701, + "tags": [ + "cupidatat", + "nulla", + "anim", + "nulla", + "magna", + "cupidatat", + "fugiat" + ], + "friends": [ + { + "id": 0, + "name": "Trudy Arnold" + }, + { + "id": 1, + "name": "Ingram Parrish" + }, + { + "id": 2, + "name": "Herrera Sheppard" + } + ], + "greeting": "Hello, Mccullough Flynn! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021766b5e262ca008f59", + "index": 332, + "guid": "7d6e4107-b399-4888-8662-dab98f783517", + "isActive": false, + "balance": "$3,565.58", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "blue", + "name": "Estrada Farmer", + "gender": "male", + "company": "FANFARE", + "email": "estradafarmer@fanfare.com", + "phone": "+1 (881) 581-2428", + "address": "981 Greenpoint Avenue, Shindler, Idaho, 4527", + "about": "Aliqua amet enim aliqua dolore excepteur ullamco nostrud cupidatat adipisicing ullamco duis commodo deserunt consequat. Excepteur Lorem laborum cillum exercitation. Fugiat exercitation deserunt non enim duis id nostrud nulla amet aliquip enim nisi officia ea.\r\n", + "registered": "2017-05-17T12:49:24 +06:00", + "latitude": -8.436686, + "longitude": -74.312667, + "tags": [ + "labore", + "dolor", + "laboris", + "aliquip", + "officia", + "in", + "id" + ], + "friends": [ + { + "id": 0, + "name": "Mccormick Olsen" + }, + { + "id": 1, + "name": "Weber Lambert" + }, + { + "id": 2, + "name": "Berta Phillips" + } + ], + "greeting": "Hello, Estrada Farmer! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302177163cb0df7f876dc", + "index": 333, + "guid": "384de92c-72c4-43f7-989e-2f5f01fb736c", + "isActive": false, + "balance": "$2,211.06", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "brown", + "name": "Ramona Colon", + "gender": "female", + "company": "CORPORANA", + "email": "ramonacolon@corporana.com", + "phone": "+1 (896) 426-3042", + "address": "382 Cooper Street, Greenock, New Hampshire, 3891", + "about": "Esse excepteur nisi est velit consectetur veniam deserunt sint. Eu est ex occaecat reprehenderit. Et proident deserunt ea eiusmod eu ex veniam ea laborum deserunt. Sunt sint occaecat quis ullamco occaecat incididunt laboris amet dolore ea eu esse id do.\r\n", + "registered": "2014-01-04T05:55:53 +07:00", + "latitude": 60.509647, + "longitude": 26.946446, + "tags": [ + "dolor", + "consequat", + "ipsum", + "deserunt", + "voluptate", + "duis", + "et" + ], + "friends": [ + { + "id": 0, + "name": "Logan Pollard" + }, + { + "id": 1, + "name": "Edna Mercado" + }, + { + "id": 2, + "name": "Rivera Wells" + } + ], + "greeting": "Hello, Ramona Colon! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021747e0061437bb7692", + "index": 334, + "guid": "04f51d6d-953e-4ef5-a4d4-d8a831761309", + "isActive": false, + "balance": "$3,820.66", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "green", + "name": "Hobbs Collins", + "gender": "male", + "company": "MAXEMIA", + "email": "hobbscollins@maxemia.com", + "phone": "+1 (904) 473-3781", + "address": "110 Brightwater Avenue, Olney, South Carolina, 8887", + "about": "Commodo qui in ipsum irure qui excepteur dolore labore id velit duis irure incididunt. Amet dolore excepteur nostrud incididunt cupidatat. Labore excepteur nulla deserunt in est magna deserunt reprehenderit duis. Ut fugiat id Lorem eiusmod officia magna ut mollit consectetur nostrud duis. Consectetur aute aliquip est duis mollit nostrud consectetur.\r\n", + "registered": "2014-03-14T05:55:08 +06:00", + "latitude": -49.531591, + "longitude": 119.456117, + "tags": [ + "ut", + "excepteur", + "excepteur", + "incididunt", + "voluptate", + "velit", + "aliqua" + ], + "friends": [ + { + "id": 0, + "name": "Roach Guerra" + }, + { + "id": 1, + "name": "Cooley Mcknight" + }, + { + "id": 2, + "name": "Tamika Ross" + } + ], + "greeting": "Hello, Hobbs Collins! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302174ffbc1797a3db9f4", + "index": 335, + "guid": "64e9956e-85a6-4285-a440-306829995e2b", + "isActive": false, + "balance": "$1,878.93", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "green", + "name": "Schmidt Cochran", + "gender": "male", + "company": "COFINE", + "email": "schmidtcochran@cofine.com", + "phone": "+1 (903) 423-3469", + "address": "324 Lincoln Road, Kylertown, Iowa, 1578", + "about": "Pariatur ullamco anim adipisicing ad laborum. Labore Lorem culpa eiusmod eiusmod voluptate tempor anim et do velit nulla anim. Laborum reprehenderit elit adipisicing cupidatat id aliquip commodo ad esse proident minim labore amet. Incididunt sint duis in ut. Cillum cillum ullamco ea ullamco nostrud commodo culpa ut est incididunt magna fugiat dolore. Consequat magna in ipsum do labore ipsum excepteur ad est culpa adipisicing. Lorem fugiat ea ullamco cupidatat officia magna consequat et.\r\n", + "registered": "2014-06-12T12:46:33 +06:00", + "latitude": 29.152458, + "longitude": -33.915379, + "tags": [ + "sint", + "aliquip", + "sit", + "nostrud", + "pariatur", + "Lorem", + "magna" + ], + "friends": [ + { + "id": 0, + "name": "Melendez Casey" + }, + { + "id": 1, + "name": "Clarke Berg" + }, + { + "id": 2, + "name": "Rebecca Bond" + } + ], + "greeting": "Hello, Schmidt Cochran! You have 7 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302176fd2c61afe295680", + "index": 336, + "guid": "affcc2c7-82e5-4dc8-a519-38d7d4428e5e", + "isActive": true, + "balance": "$2,820.17", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "blue", + "name": "Hawkins Bryant", + "gender": "male", + "company": "SULTRAX", + "email": "hawkinsbryant@sultrax.com", + "phone": "+1 (895) 492-3681", + "address": "436 Kingsway Place, Harleigh, California, 8375", + "about": "In dolor cupidatat ex fugiat commodo sint minim fugiat aute eiusmod ad voluptate reprehenderit in. Sunt do pariatur pariatur id. Non nulla dolore dolore reprehenderit sunt adipisicing reprehenderit non non quis deserunt enim. Tempor ad incididunt in magna laborum minim reprehenderit. Ea dolor ad ad proident velit nostrud enim dolore sit ex qui. Commodo velit do esse proident aute irure velit mollit aliquip ad nisi.\r\n", + "registered": "2017-02-27T06:18:26 +07:00", + "latitude": 88.2659, + "longitude": 52.652776, + "tags": [ + "mollit", + "labore", + "dolor", + "dolor", + "veniam", + "non", + "culpa" + ], + "friends": [ + { + "id": 0, + "name": "Garner Coffey" + }, + { + "id": 1, + "name": "Shauna Stout" + }, + { + "id": 2, + "name": "Sherrie Gardner" + } + ], + "greeting": "Hello, Hawkins Bryant! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302179bc091c30aec1e61", + "index": 337, + "guid": "aa0697d4-79b7-4965-9ea7-6360e2e16dd9", + "isActive": false, + "balance": "$1,140.55", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "blue", + "name": "Rosalie Weaver", + "gender": "female", + "company": "SNACKTION", + "email": "rosalieweaver@snacktion.com", + "phone": "+1 (971) 547-3112", + "address": "197 Hazel Court, Sunwest, Wyoming, 7517", + "about": "Occaecat quis nostrud commodo dolore exercitation enim ut. Voluptate amet ea nisi eu est nulla nostrud Lorem dolor exercitation laboris. Nisi labore officia minim non consectetur. Nulla mollit sunt incididunt ea minim sint ex irure excepteur ullamco mollit. Veniam id officia minim exercitation culpa nulla ex commodo. Ipsum excepteur dolor do consequat ut labore veniam ullamco occaecat nulla pariatur.\r\n", + "registered": "2015-05-26T06:08:37 +06:00", + "latitude": -37.292196, + "longitude": 132.413494, + "tags": [ + "nostrud", + "ut", + "id", + "exercitation", + "tempor", + "sunt", + "amet" + ], + "friends": [ + { + "id": 0, + "name": "Enid Britt" + }, + { + "id": 1, + "name": "Nicholson Haley" + }, + { + "id": 2, + "name": "Branch Gordon" + } + ], + "greeting": "Hello, Rosalie Weaver! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302175bdc72cad26d4dcf", + "index": 338, + "guid": "54b5fc6e-92c0-4fd9-a8b3-54440e4a0938", + "isActive": true, + "balance": "$3,386.60", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "brown", + "name": "Hodge Andrews", + "gender": "male", + "company": "SHEPARD", + "email": "hodgeandrews@shepard.com", + "phone": "+1 (995) 581-3709", + "address": "470 Blake Court, Englevale, Maryland, 2007", + "about": "Sit deserunt laborum do deserunt laboris. Ut nostrud aliquip sit veniam cillum anim mollit exercitation labore ex laborum est minim. Ullamco anim nisi dolor laboris laborum non do elit do. Sunt nulla pariatur occaecat sit nisi cupidatat dolor ut. Dolore eu dolore dolor cillum Lorem magna magna sint nostrud duis ex labore.\r\n", + "registered": "2016-04-12T11:20:50 +06:00", + "latitude": -47.229364, + "longitude": -150.204248, + "tags": [ + "velit", + "nulla", + "minim", + "eiusmod", + "minim", + "id", + "nisi" + ], + "friends": [ + { + "id": 0, + "name": "Lawrence Mccoy" + }, + { + "id": 1, + "name": "Rush Velez" + }, + { + "id": 2, + "name": "Angie Compton" + } + ], + "greeting": "Hello, Hodge Andrews! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021789b56288ff51ae1a", + "index": 339, + "guid": "7b3d9316-94ce-47aa-ae83-fe347a7803cd", + "isActive": false, + "balance": "$3,740.93", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "brown", + "name": "Curtis Sampson", + "gender": "male", + "company": "ZILIDIUM", + "email": "curtissampson@zilidium.com", + "phone": "+1 (899) 520-3026", + "address": "781 Bayard Street, Garberville, Louisiana, 5276", + "about": "Ullamco veniam velit id ad nisi qui duis elit sit magna. Amet veniam pariatur consequat sunt sunt officia fugiat. Ea duis sunt fugiat sit cupidatat elit. Esse reprehenderit veniam enim velit nulla enim amet magna. Deserunt consequat adipisicing commodo irure laborum sunt aute adipisicing mollit. Excepteur proident ea sunt eu velit.\r\n", + "registered": "2016-03-20T09:44:49 +06:00", + "latitude": 77.076401, + "longitude": 121.579962, + "tags": [ + "veniam", + "consequat", + "est", + "ullamco", + "cupidatat", + "laborum", + "mollit" + ], + "friends": [ + { + "id": 0, + "name": "Rachelle Owens" + }, + { + "id": 1, + "name": "Nelda Newton" + }, + { + "id": 2, + "name": "Bethany Gallegos" + } + ], + "greeting": "Hello, Curtis Sampson! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217d604d1f32c6216c2", + "index": 340, + "guid": "2b3f80c6-2e04-4ee0-81a7-2206c05d33df", + "isActive": true, + "balance": "$1,735.45", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "brown", + "name": "Juliet Hopper", + "gender": "female", + "company": "PREMIANT", + "email": "juliethopper@premiant.com", + "phone": "+1 (923) 556-3966", + "address": "215 Glenwood Road, Chautauqua, Federated States Of Micronesia, 5487", + "about": "Esse et enim ullamco qui commodo eu eu sint nisi fugiat non adipisicing. Nostrud duis aute deserunt dolor et ipsum sunt amet. Enim ea quis exercitation laborum proident irure consequat. Duis elit pariatur voluptate proident aute ad ullamco adipisicing eu. Ea veniam minim proident sunt eiusmod.\r\n", + "registered": "2014-11-07T05:03:30 +07:00", + "latitude": 59.198221, + "longitude": -72.041235, + "tags": [ + "commodo", + "consectetur", + "sit", + "non", + "velit", + "consequat", + "culpa" + ], + "friends": [ + { + "id": 0, + "name": "Lucinda Whitfield" + }, + { + "id": 1, + "name": "Hanson Cotton" + }, + { + "id": 2, + "name": "Toni Harding" + } + ], + "greeting": "Hello, Juliet Hopper! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302171b0c0100bb63b129", + "index": 341, + "guid": "1d3d81c9-c7d7-48a3-b9c7-07f914e8e3b7", + "isActive": false, + "balance": "$2,479.79", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "brown", + "name": "Simmons Lamb", + "gender": "male", + "company": "QUILK", + "email": "simmonslamb@quilk.com", + "phone": "+1 (937) 570-3459", + "address": "383 Williams Court, Wright, Pennsylvania, 5228", + "about": "Occaecat enim in enim deserunt. Eiusmod voluptate veniam in dolor commodo do ea dolor adipisicing est incididunt pariatur eiusmod. Velit velit pariatur nisi qui aliquip do veniam pariatur exercitation. Commodo occaecat enim eu voluptate officia eiusmod pariatur dolor consectetur dolore in id.\r\n", + "registered": "2018-03-16T02:48:24 +06:00", + "latitude": -35.934997, + "longitude": -36.654812, + "tags": [ + "laboris", + "anim", + "sint", + "sit", + "voluptate", + "officia", + "nulla" + ], + "friends": [ + { + "id": 0, + "name": "Maricela Berry" + }, + { + "id": 1, + "name": "Stark Holt" + }, + { + "id": 2, + "name": "Wynn Trevino" + } + ], + "greeting": "Hello, Simmons Lamb! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217d0dfece975d150c8", + "index": 342, + "guid": "cbdbc2c3-91b8-4b10-9d83-f101dcde86b1", + "isActive": false, + "balance": "$2,457.71", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "blue", + "name": "Colleen Dickerson", + "gender": "female", + "company": "JETSILK", + "email": "colleendickerson@jetsilk.com", + "phone": "+1 (900) 471-3303", + "address": "375 Gunther Place, Sunriver, Vermont, 808", + "about": "Sunt proident eiusmod ad culpa fugiat est ea et nostrud fugiat culpa labore. Culpa occaecat dolor cillum deserunt ea deserunt. Duis enim in aliquip qui aliqua.\r\n", + "registered": "2018-02-23T01:29:34 +07:00", + "latitude": 80.720157, + "longitude": 168.279948, + "tags": [ + "amet", + "exercitation", + "cupidatat", + "commodo", + "reprehenderit", + "fugiat", + "et" + ], + "friends": [ + { + "id": 0, + "name": "Mariana Mann" + }, + { + "id": 1, + "name": "Hahn Wolfe" + }, + { + "id": 2, + "name": "Erika Zamora" + } + ], + "greeting": "Hello, Colleen Dickerson! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302175a92bf4dd68f126b", + "index": 343, + "guid": "05e69f92-1ff4-4e4c-815a-11a734d05326", + "isActive": true, + "balance": "$1,731.25", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "brown", + "name": "Rosales Moran", + "gender": "male", + "company": "INEAR", + "email": "rosalesmoran@inear.com", + "phone": "+1 (838) 481-2942", + "address": "426 Harbor Court, Foxworth, Maine, 6402", + "about": "Incididunt sint officia aliqua aute commodo ea ipsum tempor do adipisicing qui esse incididunt officia. Fugiat consequat est pariatur cupidatat culpa. Id ea commodo mollit ea qui dolore aliqua ea aliqua cillum sint. Cillum quis ad voluptate incididunt enim enim est duis id officia sit. Voluptate do pariatur ipsum ex incididunt dolore.\r\n", + "registered": "2015-11-10T07:21:54 +07:00", + "latitude": 31.378594, + "longitude": -125.650965, + "tags": [ + "culpa", + "aliquip", + "tempor", + "adipisicing", + "incididunt", + "mollit", + "elit" + ], + "friends": [ + { + "id": 0, + "name": "Lucy Lee" + }, + { + "id": 1, + "name": "Josephine Kirkland" + }, + { + "id": 2, + "name": "Bray Acevedo" + } + ], + "greeting": "Hello, Rosales Moran! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217f5280c0b02e2a499", + "index": 344, + "guid": "a2bb23df-1b54-40e2-846d-bfa10a8e48f7", + "isActive": false, + "balance": "$3,038.34", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "green", + "name": "Malinda Lindsey", + "gender": "female", + "company": "ENERVATE", + "email": "malindalindsey@enervate.com", + "phone": "+1 (951) 526-3416", + "address": "151 Visitation Place, Keyport, Alaska, 9684", + "about": "Exercitation ut nisi id esse aute sit veniam. Irure id duis sint nostrud id pariatur sint excepteur nulla tempor dolor laborum incididunt excepteur. Officia exercitation occaecat sunt est duis reprehenderit est tempor excepteur mollit ea consequat quis Lorem.\r\n", + "registered": "2014-10-21T04:02:51 +06:00", + "latitude": -51.621225, + "longitude": 153.529103, + "tags": [ + "in", + "elit", + "adipisicing", + "exercitation", + "labore", + "et", + "minim" + ], + "friends": [ + { + "id": 0, + "name": "Finch Ward" + }, + { + "id": 1, + "name": "Tammi Rush" + }, + { + "id": 2, + "name": "Marietta Figueroa" + } + ], + "greeting": "Hello, Malinda Lindsey! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217e12cc10daa8f039a", + "index": 345, + "guid": "808ac392-4789-4f19-9c05-26cbbeb72e64", + "isActive": true, + "balance": "$3,355.44", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Ora Lindsay", + "gender": "female", + "company": "FLUM", + "email": "oralindsay@flum.com", + "phone": "+1 (815) 510-3316", + "address": "423 Dover Street, Canterwood, Palau, 5017", + "about": "Occaecat culpa aliqua voluptate sunt incididunt esse incididunt commodo esse ad dolore. Consequat proident anim et quis reprehenderit proident reprehenderit duis consequat deserunt quis elit. Id velit cupidatat cupidatat culpa amet est dolore magna nisi reprehenderit cupidatat. Incididunt commodo fugiat id magna officia aute qui excepteur. Eiusmod ad in in amet. Officia eu ut commodo mollit aliquip id magna. Sit nisi sit cillum laborum qui cillum do eu ut id esse sunt incididunt sit.\r\n", + "registered": "2014-09-17T11:25:26 +06:00", + "latitude": 56.564899, + "longitude": -82.352545, + "tags": [ + "cupidatat", + "ut", + "labore", + "ut", + "velit", + "minim", + "excepteur" + ], + "friends": [ + { + "id": 0, + "name": "Paula Cote" + }, + { + "id": 1, + "name": "Todd Nicholson" + }, + { + "id": 2, + "name": "Allyson Watkins" + } + ], + "greeting": "Hello, Ora Lindsay! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217282001ce9c26ac4b", + "index": 346, + "guid": "4bc639cd-3a56-4d58-915c-7e00e25c25df", + "isActive": true, + "balance": "$1,735.91", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "blue", + "name": "Ester Sweet", + "gender": "female", + "company": "ENDIPINE", + "email": "estersweet@endipine.com", + "phone": "+1 (983) 510-3545", + "address": "494 Truxton Street, Lemoyne, Arkansas, 8499", + "about": "Anim proident fugiat incididunt eu laborum occaecat. Est ullamco mollit pariatur nisi commodo id labore Lorem excepteur elit aute consectetur do. Proident officia sit adipisicing enim qui. Do enim mollit sint quis fugiat adipisicing labore officia. Qui deserunt nostrud fugiat cupidatat ad.\r\n", + "registered": "2018-01-04T04:55:23 +07:00", + "latitude": 54.630179, + "longitude": -28.861619, + "tags": [ + "incididunt", + "ut", + "eu", + "dolore", + "nulla", + "velit", + "minim" + ], + "friends": [ + { + "id": 0, + "name": "Foley Butler" + }, + { + "id": 1, + "name": "Delacruz Booth" + }, + { + "id": 2, + "name": "Nicole Harmon" + } + ], + "greeting": "Hello, Ester Sweet! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217e3c3c606bc9b3411", + "index": 347, + "guid": "2972ea21-01b2-4261-a489-d921861968c4", + "isActive": true, + "balance": "$3,386.40", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "green", + "name": "Muriel Levy", + "gender": "female", + "company": "KINDALOO", + "email": "muriellevy@kindaloo.com", + "phone": "+1 (976) 473-2768", + "address": "830 Prospect Avenue, Hondah, Florida, 2159", + "about": "Adipisicing aliqua consequat labore labore adipisicing eu aliqua magna pariatur ex. Sit ad deserunt nisi irure do. Id consequat est in ullamco consequat. Do incididunt esse esse elit. Id ipsum dolore id nostrud elit minim magna voluptate ipsum ut ad. Labore voluptate in ex eiusmod Lorem qui enim laboris adipisicing incididunt incididunt nostrud. Proident pariatur eiusmod non elit occaecat reprehenderit consequat nisi velit amet ullamco labore.\r\n", + "registered": "2016-04-25T09:59:43 +06:00", + "latitude": 76.644835, + "longitude": -54.226028, + "tags": [ + "nulla", + "labore", + "sunt", + "sunt", + "mollit", + "nulla", + "laboris" + ], + "friends": [ + { + "id": 0, + "name": "Carmella Winters" + }, + { + "id": 1, + "name": "Howard Baldwin" + }, + { + "id": 2, + "name": "Peters Santos" + } + ], + "greeting": "Hello, Muriel Levy! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217573777cb56e70aec", + "index": 348, + "guid": "c6143243-0d35-45ff-b14a-0c855427b594", + "isActive": false, + "balance": "$1,746.10", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "green", + "name": "Felicia King", + "gender": "female", + "company": "SATIANCE", + "email": "feliciaking@satiance.com", + "phone": "+1 (815) 474-3923", + "address": "394 Village Court, Wattsville, Puerto Rico, 8870", + "about": "Consequat esse enim cillum minim eiusmod incididunt in elit. Labore laboris officia velit commodo sunt officia occaecat veniam aliquip aliquip sit mollit cupidatat velit. Dolor minim anim sint consequat dolore sunt sit proident tempor velit ex. Voluptate eu culpa dolore Lorem esse minim culpa consectetur officia. Ut laboris nisi nulla aliqua consectetur sit.\r\n", + "registered": "2016-01-01T05:22:09 +07:00", + "latitude": -69.627778, + "longitude": 82.29584, + "tags": [ + "ipsum", + "non", + "consequat", + "sint", + "nostrud", + "minim", + "ut" + ], + "friends": [ + { + "id": 0, + "name": "Duffy Kaufman" + }, + { + "id": 1, + "name": "Deana Bernard" + }, + { + "id": 2, + "name": "Martinez Oconnor" + } + ], + "greeting": "Hello, Felicia King! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302173ead3449c5220dc2", + "index": 349, + "guid": "f4d6693e-7b44-4293-82f9-30ff481e2ef5", + "isActive": true, + "balance": "$1,359.72", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "green", + "name": "Glenda Alford", + "gender": "female", + "company": "NIMON", + "email": "glendaalford@nimon.com", + "phone": "+1 (842) 415-3739", + "address": "972 Merit Court, Brule, Hawaii, 5280", + "about": "Eu ad deserunt reprehenderit esse quis ex consectetur anim commodo sint enim. Est nulla Lorem commodo pariatur nostrud cupidatat non ex ipsum voluptate. Ad magna sint veniam voluptate reprehenderit culpa irure minim laborum pariatur laboris commodo consectetur pariatur. Irure sint ullamco sit sit sunt non labore ea duis commodo dolor aute do.\r\n", + "registered": "2014-01-11T04:17:58 +07:00", + "latitude": -80.920408, + "longitude": 98.822718, + "tags": [ + "ea", + "qui", + "nostrud", + "nisi", + "amet", + "adipisicing", + "do" + ], + "friends": [ + { + "id": 0, + "name": "Julianne Curtis" + }, + { + "id": 1, + "name": "Blanca Moses" + }, + { + "id": 2, + "name": "Stella Crane" + } + ], + "greeting": "Hello, Glenda Alford! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217e97b2c054c356bc9", + "index": 350, + "guid": "0bda7dd8-d748-40ea-b761-a419c1c03d52", + "isActive": true, + "balance": "$2,456.80", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "green", + "name": "Madelyn Parsons", + "gender": "female", + "company": "NETPLAX", + "email": "madelynparsons@netplax.com", + "phone": "+1 (907) 420-2203", + "address": "280 Lefferts Avenue, Bodega, American Samoa, 2740", + "about": "Elit ullamco culpa incididunt quis non aute est adipisicing sunt exercitation ea. Esse enim eiusmod velit qui proident sit. Ut mollit duis exercitation dolor labore officia exercitation sunt nisi deserunt. Officia nulla nostrud reprehenderit nulla magna duis ex quis non quis aliqua laboris exercitation.\r\n", + "registered": "2014-09-19T09:52:13 +06:00", + "latitude": 21.127104, + "longitude": -91.176817, + "tags": [ + "ad", + "incididunt", + "dolor", + "incididunt", + "labore", + "do", + "fugiat" + ], + "friends": [ + { + "id": 0, + "name": "Harvey Macdonald" + }, + { + "id": 1, + "name": "Eleanor Schroeder" + }, + { + "id": 2, + "name": "Morales French" + } + ], + "greeting": "Hello, Madelyn Parsons! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021735ee112fd2547823", + "index": 351, + "guid": "66ac1a5f-567c-4d47-b3f5-4c20865e980c", + "isActive": false, + "balance": "$1,069.83", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "blue", + "name": "David Joseph", + "gender": "male", + "company": "ACUSAGE", + "email": "davidjoseph@acusage.com", + "phone": "+1 (972) 422-2260", + "address": "503 Evergreen Avenue, Yogaville, Indiana, 4938", + "about": "Minim deserunt excepteur consectetur anim sint velit veniam non officia magna. Id pariatur culpa magna dolore fugiat aute incididunt. Ipsum non quis culpa ipsum culpa sint amet. Minim adipisicing eiusmod deserunt tempor qui. Fugiat est et veniam veniam irure excepteur aliqua id incididunt Lorem duis eu.\r\n", + "registered": "2018-03-20T01:25:42 +06:00", + "latitude": 12.75944, + "longitude": -3.075746, + "tags": [ + "voluptate", + "irure", + "do", + "duis", + "quis", + "dolore", + "veniam" + ], + "friends": [ + { + "id": 0, + "name": "Wilder Morris" + }, + { + "id": 1, + "name": "Jayne Lott" + }, + { + "id": 2, + "name": "Candy Salas" + } + ], + "greeting": "Hello, David Joseph! You have 1 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302176998d343d64e50cc", + "index": 352, + "guid": "c752bbf0-5426-4099-b225-6e24dc66e3cb", + "isActive": false, + "balance": "$1,429.27", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "brown", + "name": "Bass Molina", + "gender": "male", + "company": "STRALOY", + "email": "bassmolina@straloy.com", + "phone": "+1 (977) 523-3691", + "address": "373 Hunterfly Place, Fillmore, Missouri, 4493", + "about": "Irure deserunt sit do veniam mollit duis veniam sit commodo ipsum. Dolore velit elit est esse est nisi do in nulla quis. Excepteur laborum amet magna et non non nostrud sunt. Commodo deserunt proident ad nisi. Ipsum voluptate deserunt cillum magna enim quis nulla veniam aliquip. Consequat excepteur consequat laboris eu. Elit nisi Lorem ut non minim ullamco cupidatat voluptate.\r\n", + "registered": "2015-01-25T06:17:50 +07:00", + "latitude": -82.048545, + "longitude": 82.817857, + "tags": [ + "labore", + "sint", + "in", + "minim", + "pariatur", + "consequat", + "reprehenderit" + ], + "friends": [ + { + "id": 0, + "name": "Yolanda Bishop" + }, + { + "id": 1, + "name": "Christi May" + }, + { + "id": 2, + "name": "Booth Moody" + } + ], + "greeting": "Hello, Bass Molina! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302174c24a909dec1b022", + "index": 353, + "guid": "db07154f-ab54-4cc9-a1c6-bb22ec972036", + "isActive": false, + "balance": "$3,279.09", + "picture": "http://placehold.it/32x32", + "age": 33, + "eyeColor": "brown", + "name": "Liza Martin", + "gender": "female", + "company": "ZILENCIO", + "email": "lizamartin@zilencio.com", + "phone": "+1 (967) 523-2479", + "address": "255 Commercial Street, Kilbourne, Guam, 9063", + "about": "Do ullamco elit excepteur excepteur non irure dolore ad id tempor. Do sit consequat occaecat veniam est in irure cillum ipsum ut deserunt elit reprehenderit nisi. Excepteur qui quis eiusmod cupidatat. Veniam excepteur officia adipisicing do aute magna ea.\r\n", + "registered": "2016-03-27T03:25:00 +06:00", + "latitude": 49.334675, + "longitude": 142.806362, + "tags": [ + "Lorem", + "dolor", + "qui", + "aliqua", + "duis", + "incididunt", + "eiusmod" + ], + "friends": [ + { + "id": 0, + "name": "Weiss Mathews" + }, + { + "id": 1, + "name": "Christa Beach" + }, + { + "id": 2, + "name": "Amie Mccall" + } + ], + "greeting": "Hello, Liza Martin! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217554800cf785ee9db", + "index": 354, + "guid": "1c3e58bd-7759-427e-9aab-bc7a8048fd74", + "isActive": true, + "balance": "$1,268.36", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "brown", + "name": "Cynthia Sanford", + "gender": "female", + "company": "TWIIST", + "email": "cynthiasanford@twiist.com", + "phone": "+1 (979) 439-2850", + "address": "719 Kansas Place, Tonopah, Minnesota, 2502", + "about": "Excepteur exercitation excepteur magna et excepteur duis proident enim duis minim ipsum ullamco. Proident reprehenderit ipsum commodo deserunt adipisicing officia dolor dolor cillum laboris adipisicing consequat incididunt ut. Irure occaecat do nisi eu minim dolore. Amet et enim qui tempor laborum cillum eiusmod amet laboris proident deserunt sint ex voluptate.\r\n", + "registered": "2014-04-03T12:21:15 +06:00", + "latitude": 34.033099, + "longitude": -117.850531, + "tags": [ + "nostrud", + "culpa", + "aliquip", + "aliqua", + "laborum", + "voluptate", + "esse" + ], + "friends": [ + { + "id": 0, + "name": "Suarez Mcfadden" + }, + { + "id": 1, + "name": "Elisa Walters" + }, + { + "id": 2, + "name": "King Medina" + } + ], + "greeting": "Hello, Cynthia Sanford! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217124dd8d7d4cbc625", + "index": 355, + "guid": "5636ea9b-a411-4bd7-96ea-0db31ebb41a9", + "isActive": true, + "balance": "$3,534.81", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "green", + "name": "Rosa Bruce", + "gender": "female", + "company": "OTHERWAY", + "email": "rosabruce@otherway.com", + "phone": "+1 (819) 475-3353", + "address": "842 Winthrop Street, Fairlee, Delaware, 3518", + "about": "Duis occaecat consectetur non dolor sint consequat eiusmod quis. Amet duis mollit et anim. Quis veniam ut velit est ut sunt excepteur dolore duis sit est amet. Reprehenderit anim et eiusmod ad est laboris.\r\n", + "registered": "2016-11-09T12:55:58 +07:00", + "latitude": -16.682969, + "longitude": -68.550797, + "tags": [ + "cupidatat", + "voluptate", + "tempor", + "et", + "adipisicing", + "consectetur", + "fugiat" + ], + "friends": [ + { + "id": 0, + "name": "Nikki Neal" + }, + { + "id": 1, + "name": "Craig Dillon" + }, + { + "id": 2, + "name": "Mcgowan Norris" + } + ], + "greeting": "Hello, Rosa Bruce! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302172ffc7bbc3ed5a957", + "index": 356, + "guid": "5da62090-ee07-4976-846d-1471d35bd916", + "isActive": false, + "balance": "$2,192.05", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "brown", + "name": "Alberta Perry", + "gender": "female", + "company": "KIOSK", + "email": "albertaperry@kiosk.com", + "phone": "+1 (954) 562-3377", + "address": "916 Hegeman Avenue, Edneyville, Kansas, 2045", + "about": "Labore aute fugiat voluptate sit tempor tempor anim. Aliquip ut reprehenderit elit exercitation eiusmod. In nostrud irure sit ad amet aute tempor velit. Mollit ullamco laboris proident aute minim labore magna cupidatat. Officia esse non sint pariatur. Nulla officia amet esse enim fugiat non anim sit. Eiusmod tempor labore deserunt anim amet cupidatat esse commodo magna qui.\r\n", + "registered": "2014-07-16T07:51:26 +06:00", + "latitude": -37.827302, + "longitude": 75.219203, + "tags": [ + "duis", + "non", + "consectetur", + "et", + "cillum", + "culpa", + "aute" + ], + "friends": [ + { + "id": 0, + "name": "Kitty Terrell" + }, + { + "id": 1, + "name": "Benita Roth" + }, + { + "id": 2, + "name": "Elinor Daniel" + } + ], + "greeting": "Hello, Alberta Perry! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302177e1dc824d95e3d6d", + "index": 357, + "guid": "8497b12c-cc07-4534-906e-53b252c5b703", + "isActive": true, + "balance": "$3,204.79", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "brown", + "name": "Ina Knight", + "gender": "female", + "company": "TROPOLIS", + "email": "inaknight@tropolis.com", + "phone": "+1 (894) 540-3293", + "address": "203 Wallabout Street, Longoria, Washington, 9537", + "about": "Dolore enim ullamco magna do deserunt aliqua. Sit cupidatat quis incididunt sunt nisi sint nostrud proident fugiat commodo aliquip amet laboris. Deserunt aliquip nostrud sunt exercitation nulla eiusmod elit laboris excepteur. Fugiat proident sunt fugiat labore pariatur et ad veniam esse voluptate nostrud. Anim duis nulla incididunt nisi ad sunt culpa. Laboris enim enim aute elit ipsum in reprehenderit nostrud.\r\n", + "registered": "2017-06-06T07:40:10 +06:00", + "latitude": 67.37808, + "longitude": 89.122964, + "tags": [ + "cillum", + "in", + "id", + "eiusmod", + "sunt", + "fugiat", + "do" + ], + "friends": [ + { + "id": 0, + "name": "Osborn Bender" + }, + { + "id": 1, + "name": "Williamson Terry" + }, + { + "id": 2, + "name": "Bettye Strong" + } + ], + "greeting": "Hello, Ina Knight! You have 7 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217eee78fbf9249e955", + "index": 358, + "guid": "417f20fc-9f44-4bdc-ba55-88c38d3a42c5", + "isActive": true, + "balance": "$3,597.37", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "blue", + "name": "Kristin Johnson", + "gender": "female", + "company": "ZAPHIRE", + "email": "kristinjohnson@zaphire.com", + "phone": "+1 (977) 455-2695", + "address": "911 Howard Place, Tuskahoma, Oklahoma, 6302", + "about": "Minim exercitation elit ut aute. Occaecat deserunt amet duis anim commodo veniam fugiat non. Eu aute minim minim anim anim aliqua dolore ex exercitation proident et reprehenderit adipisicing. Consequat aliquip elit sint consequat sunt voluptate amet cillum Lorem ad occaecat. Pariatur adipisicing velit consectetur ut id sint ut id exercitation. Ex eiusmod exercitation magna non exercitation. Quis ex excepteur anim officia est cupidatat consequat duis est fugiat aliquip est cupidatat amet.\r\n", + "registered": "2017-10-19T07:16:51 +06:00", + "latitude": -83.973073, + "longitude": 6.220692, + "tags": [ + "et", + "enim", + "dolore", + "elit", + "elit", + "veniam", + "aute" + ], + "friends": [ + { + "id": 0, + "name": "Kimberley Cantu" + }, + { + "id": 1, + "name": "Silva Warner" + }, + { + "id": 2, + "name": "Eunice Ruiz" + } + ], + "greeting": "Hello, Kristin Johnson! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217507643b4afc02133", + "index": 359, + "guid": "90a60a90-4004-46d6-8777-5ff121bde8a9", + "isActive": false, + "balance": "$3,542.69", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "blue", + "name": "Newton Christensen", + "gender": "male", + "company": "CUIZINE", + "email": "newtonchristensen@cuizine.com", + "phone": "+1 (835) 432-2009", + "address": "541 Perry Terrace, Norris, Kentucky, 2687", + "about": "Qui proident ad et Lorem. Excepteur velit magna aliquip culpa occaecat esse ad proident ea officia. Mollit aute adipisicing ipsum ullamco. Fugiat reprehenderit aliquip aliquip qui do consectetur aliqua nulla velit exercitation anim amet culpa. Enim esse dolor deserunt tempor est amet qui. Est in dolore laboris aliqua.\r\n", + "registered": "2016-02-09T08:59:37 +07:00", + "latitude": 45.759531, + "longitude": -23.555512, + "tags": [ + "quis", + "consectetur", + "eiusmod", + "magna", + "ullamco", + "dolore", + "reprehenderit" + ], + "friends": [ + { + "id": 0, + "name": "Fannie Lara" + }, + { + "id": 1, + "name": "Mendoza Lucas" + }, + { + "id": 2, + "name": "Whitney Strickland" + } + ], + "greeting": "Hello, Newton Christensen! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217877e729503922d08", + "index": 360, + "guid": "36cd5f48-d1e8-4062-b146-41ec5c204100", + "isActive": false, + "balance": "$1,701.03", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "blue", + "name": "Beulah Todd", + "gender": "female", + "company": "BRISTO", + "email": "beulahtodd@bristo.com", + "phone": "+1 (906) 430-3551", + "address": "831 Neptune Court, Crisman, Alabama, 4755", + "about": "Aliquip do aliquip qui ullamco minim dolor. Veniam magna elit dolore anim veniam enim enim. Esse voluptate dolor proident enim culpa sunt sit ea. Veniam laborum veniam consequat reprehenderit veniam exercitation ad. Mollit occaecat aute aliquip cillum nisi est culpa sit laboris enim laboris reprehenderit ex. Quis qui laboris sit nisi aute in.\r\n", + "registered": "2015-11-14T06:36:41 +07:00", + "latitude": 81.453796, + "longitude": 15.478882, + "tags": [ + "amet", + "esse", + "nulla", + "esse", + "magna", + "velit", + "ullamco" + ], + "friends": [ + { + "id": 0, + "name": "Nash Head" + }, + { + "id": 1, + "name": "Geneva Decker" + }, + { + "id": 2, + "name": "Hughes Hebert" + } + ], + "greeting": "Hello, Beulah Todd! You have 2 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021773878e1028579998", + "index": 361, + "guid": "7f5567a1-b089-4580-93aa-336cd3fd5b37", + "isActive": false, + "balance": "$2,579.99", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "blue", + "name": "Cassie Kemp", + "gender": "female", + "company": "SONIQUE", + "email": "cassiekemp@sonique.com", + "phone": "+1 (913) 580-2604", + "address": "954 Cheever Place, Vaughn, West Virginia, 2446", + "about": "Adipisicing laborum est sit dolore fugiat proident velit occaecat adipisicing ut dolore velit magna. Et fugiat veniam in excepteur proident. Aliquip nisi deserunt reprehenderit proident elit do in fugiat consequat in ex ipsum. Cillum excepteur in esse occaecat nulla ex elit laboris laborum. Tempor incididunt sint in elit tempor ipsum ea ullamco velit eu tempor consectetur cupidatat. Voluptate ad ut qui nisi culpa ipsum culpa ad esse mollit ullamco.\r\n", + "registered": "2018-02-23T06:30:16 +07:00", + "latitude": 65.098786, + "longitude": -68.782455, + "tags": [ + "consectetur", + "velit", + "est", + "ullamco", + "exercitation", + "amet", + "irure" + ], + "friends": [ + { + "id": 0, + "name": "Saundra Malone" + }, + { + "id": 1, + "name": "Chan Roach" + }, + { + "id": 2, + "name": "Elma Gibson" + } + ], + "greeting": "Hello, Cassie Kemp! You have 2 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302175728c736ac1d0724", + "index": 362, + "guid": "e4f55c8a-d978-41f0-995a-967129aabcb5", + "isActive": true, + "balance": "$3,351.28", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "brown", + "name": "Guadalupe Waller", + "gender": "female", + "company": "ZILLACOM", + "email": "guadalupewaller@zillacom.com", + "phone": "+1 (938) 511-3185", + "address": "857 Jefferson Street, Trucksville, Ohio, 1384", + "about": "Aute ipsum pariatur cupidatat proident ullamco est. Adipisicing eu duis sit amet laboris sit aliquip. Amet sit amet eiusmod commodo esse reprehenderit elit cillum ut eu labore velit.\r\n", + "registered": "2017-06-21T11:25:59 +06:00", + "latitude": 48.406279, + "longitude": -1.742472, + "tags": [ + "nulla", + "sit", + "quis", + "do", + "exercitation", + "aliquip", + "veniam" + ], + "friends": [ + { + "id": 0, + "name": "Mckenzie Nash" + }, + { + "id": 1, + "name": "Pitts Moss" + }, + { + "id": 2, + "name": "Erica Hodge" + } + ], + "greeting": "Hello, Guadalupe Waller! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217ff056fc8dff89cfa", + "index": 363, + "guid": "5c094a8a-c65d-4470-a895-c6c4fabbb653", + "isActive": false, + "balance": "$3,688.58", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "brown", + "name": "Twila Armstrong", + "gender": "female", + "company": "CODACT", + "email": "twilaarmstrong@codact.com", + "phone": "+1 (975) 503-3371", + "address": "563 Grand Street, Beyerville, Connecticut, 8856", + "about": "Mollit officia magna laboris ad in sint. Excepteur adipisicing sit exercitation cillum veniam in. Dolor duis aliquip ipsum voluptate labore cillum do fugiat ullamco esse voluptate officia culpa. Consectetur officia labore id commodo adipisicing ad aliqua consequat aliqua laboris aliquip officia.\r\n", + "registered": "2016-03-10T08:32:01 +07:00", + "latitude": 5.86048, + "longitude": -9.12915, + "tags": [ + "consectetur", + "reprehenderit", + "occaecat", + "voluptate", + "pariatur", + "consectetur", + "eu" + ], + "friends": [ + { + "id": 0, + "name": "Aileen Fry" + }, + { + "id": 1, + "name": "Hardin Sykes" + }, + { + "id": 2, + "name": "Ilene Carr" + } + ], + "greeting": "Hello, Twila Armstrong! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302179aa278e2866ffe5f", + "index": 364, + "guid": "7536d62d-00ca-4de2-99ae-671c502e53ef", + "isActive": true, + "balance": "$3,512.73", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Lamb Wynn", + "gender": "male", + "company": "BOINK", + "email": "lambwynn@boink.com", + "phone": "+1 (819) 450-2057", + "address": "232 Debevoise Avenue, Hall, North Dakota, 2668", + "about": "Amet fugiat ex veniam aliqua aliquip est nulla fugiat voluptate ex cillum minim culpa. Nulla sunt occaecat sit aliquip aliquip dolor pariatur nulla laborum esse cillum aliqua dolore magna. Do exercitation laborum enim mollit adipisicing est cupidatat voluptate magna. Et minim laboris ullamco nisi laboris aute voluptate commodo. Id nostrud enim pariatur laboris labore nisi consectetur ex ullamco irure magna ex.\r\n", + "registered": "2015-05-10T10:05:34 +06:00", + "latitude": -21.35342, + "longitude": -132.108271, + "tags": [ + "reprehenderit", + "occaecat", + "proident", + "irure", + "dolore", + "officia", + "tempor" + ], + "friends": [ + { + "id": 0, + "name": "Mejia Ellison" + }, + { + "id": 1, + "name": "Roberts Cummings" + }, + { + "id": 2, + "name": "Tyson Obrien" + } + ], + "greeting": "Hello, Lamb Wynn! You have 2 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302179d6e59c32592a2c5", + "index": 365, + "guid": "e7d3ad62-3424-4a62-8018-96a2a8ad2d41", + "isActive": false, + "balance": "$2,797.88", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "green", + "name": "Collins Mcclain", + "gender": "male", + "company": "QUANTASIS", + "email": "collinsmcclain@quantasis.com", + "phone": "+1 (851) 400-2030", + "address": "991 Bragg Street, Brazos, Mississippi, 2670", + "about": "Adipisicing pariatur non ea culpa magna. Quis ea labore enim consectetur fugiat non ad minim dolor. Lorem in reprehenderit labore sit non velit cupidatat deserunt. Enim cillum dolore in aute do amet et sunt. Dolore proident tempor culpa eu. Quis sit nulla ex eiusmod non fugiat anim voluptate sunt sit excepteur. Eiusmod eiusmod ut incididunt sit Lorem adipisicing labore.\r\n", + "registered": "2014-12-06T11:55:05 +07:00", + "latitude": 84.663883, + "longitude": 3.587713, + "tags": [ + "nulla", + "proident", + "commodo", + "consectetur", + "qui", + "elit", + "nisi" + ], + "friends": [ + { + "id": 0, + "name": "Vincent Travis" + }, + { + "id": 1, + "name": "Florence Jackson" + }, + { + "id": 2, + "name": "Stacie Craig" + } + ], + "greeting": "Hello, Collins Mcclain! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021763cf9a7bc9426330", + "index": 366, + "guid": "b793ba2d-122b-48b4-bb2b-9cb3d962686d", + "isActive": false, + "balance": "$1,685.53", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "green", + "name": "Silvia Whitley", + "gender": "female", + "company": "GALLAXIA", + "email": "silviawhitley@gallaxia.com", + "phone": "+1 (923) 559-2904", + "address": "335 Sandford Street, Yettem, New York, 9840", + "about": "Et enim amet et pariatur pariatur eu nulla voluptate. Ad fugiat minim velit magna sint sit qui velit occaecat consectetur tempor sit do. Ut adipisicing aliquip consectetur adipisicing ipsum nostrud sunt do ut. Aliquip dolore fugiat culpa laborum. Elit esse ex enim tempor magna nulla minim eu Lorem duis qui id.\r\n", + "registered": "2017-05-26T12:31:27 +06:00", + "latitude": 32.319844, + "longitude": 66.33086, + "tags": [ + "nostrud", + "deserunt", + "ex", + "laboris", + "pariatur", + "ullamco", + "veniam" + ], + "friends": [ + { + "id": 0, + "name": "Katrina Green" + }, + { + "id": 1, + "name": "Minnie Jacobson" + }, + { + "id": 2, + "name": "Nadine Chen" + } + ], + "greeting": "Hello, Silvia Whitley! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021759895a661a638e73", + "index": 367, + "guid": "9a190cae-f00a-4733-97ef-84df2ece7b8e", + "isActive": true, + "balance": "$2,054.33", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "blue", + "name": "Strickland Harrington", + "gender": "male", + "company": "OPTICOM", + "email": "stricklandharrington@opticom.com", + "phone": "+1 (936) 433-2596", + "address": "232 Wythe Avenue, Eagletown, Oregon, 4141", + "about": "Sit aute occaecat cillum dolor reprehenderit. Aliqua commodo eiusmod consequat est proident aute magna velit voluptate amet eu deserunt laboris cillum. Mollit laborum Lorem ad non exercitation anim culpa irure. Est sunt duis laborum dolore.\r\n", + "registered": "2015-08-08T05:53:22 +06:00", + "latitude": 88.572236, + "longitude": 62.9199, + "tags": [ + "non", + "id", + "do", + "est", + "excepteur", + "mollit", + "amet" + ], + "friends": [ + { + "id": 0, + "name": "Hewitt Underwood" + }, + { + "id": 1, + "name": "Byers Barrett" + }, + { + "id": 2, + "name": "Lana Jensen" + } + ], + "greeting": "Hello, Strickland Harrington! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302171f888d9f8fae2ae6", + "index": 368, + "guid": "e7231a25-037f-404f-8c65-8109aff50c8b", + "isActive": false, + "balance": "$2,331.64", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "green", + "name": "Beverly Marshall", + "gender": "female", + "company": "SOFTMICRO", + "email": "beverlymarshall@softmicro.com", + "phone": "+1 (896) 535-3034", + "address": "985 Elton Street, Choctaw, New Jersey, 6699", + "about": "Cupidatat ex quis ex sunt culpa dolor ea aliquip fugiat id laborum. Sint in ad Lorem eiusmod. In est nisi commodo mollit esse anim laboris est sit tempor nulla.\r\n", + "registered": "2016-07-08T12:30:49 +06:00", + "latitude": 20.431722, + "longitude": -153.683972, + "tags": [ + "ex", + "magna", + "sit", + "nisi", + "reprehenderit", + "aliquip", + "est" + ], + "friends": [ + { + "id": 0, + "name": "Darla Robbins" + }, + { + "id": 1, + "name": "Hammond Shannon" + }, + { + "id": 2, + "name": "Leann Byers" + } + ], + "greeting": "Hello, Beverly Marshall! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302170223f15ee5d75da4", + "index": 369, + "guid": "dd13fcfe-1386-4748-bf42-a6ef5638d18d", + "isActive": false, + "balance": "$3,280.41", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "brown", + "name": "Kristi Buchanan", + "gender": "female", + "company": "FOSSIEL", + "email": "kristibuchanan@fossiel.com", + "phone": "+1 (900) 537-2765", + "address": "211 Farragut Road, Hachita, Montana, 640", + "about": "Magna tempor non quis sit. Proident anim incididunt tempor laborum mollit. In aute anim ut ex non excepteur non qui. Proident qui magna et consequat consequat aliqua aliqua enim mollit eu sint consectetur. Sint et amet consequat aute laborum laborum aliqua eu sint occaecat labore elit incididunt.\r\n", + "registered": "2014-05-15T03:37:09 +06:00", + "latitude": 10.815672, + "longitude": -117.362086, + "tags": [ + "ea", + "duis", + "cupidatat", + "occaecat", + "nisi", + "minim", + "enim" + ], + "friends": [ + { + "id": 0, + "name": "Juliana Meyers" + }, + { + "id": 1, + "name": "Irma Sosa" + }, + { + "id": 2, + "name": "Neal Hurst" + } + ], + "greeting": "Hello, Kristi Buchanan! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217f0411f8213a99caa", + "index": 370, + "guid": "85e9f334-7f49-46de-b3b6-d6d43c0981f0", + "isActive": true, + "balance": "$1,177.70", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "blue", + "name": "Armstrong Brown", + "gender": "male", + "company": "DARWINIUM", + "email": "armstrongbrown@darwinium.com", + "phone": "+1 (885) 410-3422", + "address": "212 Herbert Street, Bergoo, Nevada, 3099", + "about": "Mollit mollit do aliquip nostrud irure proident cupidatat. Velit nisi amet cupidatat in cupidatat minim qui ea est. Ut deserunt culpa Lorem irure tempor exercitation nisi fugiat Lorem. Est cupidatat consectetur esse velit. Id do ex ipsum aliqua. Veniam cupidatat deserunt anim exercitation non cupidatat ea irure esse est id sint occaecat est. Incididunt dolore qui do est aliqua.\r\n", + "registered": "2016-06-28T06:40:58 +06:00", + "latitude": -22.176116, + "longitude": 23.449105, + "tags": [ + "magna", + "consequat", + "velit", + "excepteur", + "ea", + "sit", + "esse" + ], + "friends": [ + { + "id": 0, + "name": "Sharon Fernandez" + }, + { + "id": 1, + "name": "Livingston Gilbert" + }, + { + "id": 2, + "name": "Jordan Golden" + } + ], + "greeting": "Hello, Armstrong Brown! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302176d3d0c413e0ddf83", + "index": 371, + "guid": "d25cc2e8-cebb-4655-8b64-e299a3a755ba", + "isActive": true, + "balance": "$3,105.78", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "green", + "name": "Kristie Maldonado", + "gender": "female", + "company": "ACCEL", + "email": "kristiemaldonado@accel.com", + "phone": "+1 (898) 528-3927", + "address": "214 Dean Street, Interlochen, Colorado, 374", + "about": "Ut do elit do eiusmod. Dolore non ut tempor sit elit. Cillum nostrud enim anim mollit Lorem ea aliqua sunt qui cupidatat ea incididunt nostrud sunt. Amet laborum dolore ex adipisicing aliquip eiusmod est deserunt duis incididunt irure nisi velit incididunt. Laborum occaecat occaecat labore pariatur quis voluptate eu voluptate.\r\n", + "registered": "2015-09-22T11:05:11 +06:00", + "latitude": 23.308197, + "longitude": 59.829758, + "tags": [ + "nostrud", + "culpa", + "aliqua", + "dolore", + "duis", + "voluptate", + "anim" + ], + "friends": [ + { + "id": 0, + "name": "Simon Mclaughlin" + }, + { + "id": 1, + "name": "Sandoval Blankenship" + }, + { + "id": 2, + "name": "Rosalyn Kirk" + } + ], + "greeting": "Hello, Kristie Maldonado! You have 2 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302174921838c1d016679", + "index": 372, + "guid": "29f85ec7-a426-442b-a521-b25834f91173", + "isActive": true, + "balance": "$3,334.51", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "brown", + "name": "Ann Atkins", + "gender": "female", + "company": "TALAE", + "email": "annatkins@talae.com", + "phone": "+1 (836) 420-2859", + "address": "281 Seba Avenue, Homeworth, New Mexico, 9848", + "about": "Nulla tempor nulla velit deserunt. Qui exercitation consectetur excepteur ipsum ad sint eu eu. Proident deserunt qui pariatur tempor voluptate culpa aliquip in et excepteur in. Nisi adipisicing ipsum cillum quis anim fugiat elit adipisicing Lorem sunt sint culpa laborum consequat. Occaecat duis officia labore sit. Nisi aliquip do irure incididunt labore reprehenderit labore aliqua sunt deserunt labore.\r\n", + "registered": "2016-07-07T07:39:37 +06:00", + "latitude": -80.228477, + "longitude": 55.654772, + "tags": [ + "esse", + "laboris", + "consequat", + "adipisicing", + "dolore", + "Lorem", + "anim" + ], + "friends": [ + { + "id": 0, + "name": "Blevins Fuentes" + }, + { + "id": 1, + "name": "Burnett Barry" + }, + { + "id": 2, + "name": "Alisha Lester" + } + ], + "greeting": "Hello, Ann Atkins! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302174379fa9e75aaa114", + "index": 373, + "guid": "ac440a2c-cb45-44c7-a13e-88287aa387b1", + "isActive": false, + "balance": "$2,076.32", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "green", + "name": "Kirkland Pruitt", + "gender": "male", + "company": "JASPER", + "email": "kirklandpruitt@jasper.com", + "phone": "+1 (842) 474-3490", + "address": "419 Wythe Place, Stockwell, Texas, 9557", + "about": "Et est sit ea ipsum esse fugiat deserunt pariatur nostrud consequat sint tempor ut irure. Fugiat nisi incididunt duis tempor anim qui. Tempor esse tempor proident officia amet et. Sit labore proident tempor sunt duis eu amet do et ut voluptate do. Consectetur ullamco enim duis consequat amet velit eu occaecat minim. Est quis cillum incididunt cillum enim ex ex officia ex reprehenderit aliqua ut quis. Reprehenderit nisi commodo ut sint ad velit tempor ea cillum duis.\r\n", + "registered": "2016-10-11T06:48:41 +06:00", + "latitude": -17.300505, + "longitude": 90.270497, + "tags": [ + "velit", + "nisi", + "ad", + "tempor", + "aute", + "adipisicing", + "ut" + ], + "friends": [ + { + "id": 0, + "name": "Brandy Buck" + }, + { + "id": 1, + "name": "Boyd Sanchez" + }, + { + "id": 2, + "name": "Milagros Brock" + } + ], + "greeting": "Hello, Kirkland Pruitt! You have 2 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302175845484514c14504", + "index": 374, + "guid": "94601e51-17c9-4615-a8df-189381ed217c", + "isActive": false, + "balance": "$3,838.87", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "green", + "name": "Alyson Schmidt", + "gender": "female", + "company": "MICROLUXE", + "email": "alysonschmidt@microluxe.com", + "phone": "+1 (890) 512-3976", + "address": "577 Robert Street, Cherokee, North Carolina, 609", + "about": "Id nisi ea duis laborum adipisicing laborum. Et aute tempor aliquip ex exercitation laborum magna exercitation reprehenderit nostrud cillum nostrud voluptate. Velit excepteur qui labore officia. Deserunt dolor velit qui dolor ea sint in aliqua.\r\n", + "registered": "2015-04-15T02:41:03 +06:00", + "latitude": 38.376919, + "longitude": 22.913172, + "tags": [ + "ullamco", + "nisi", + "sit", + "est", + "sit", + "adipisicing", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Reyes Thompson" + }, + { + "id": 1, + "name": "Robbie Fisher" + }, + { + "id": 2, + "name": "Lowery Hampton" + } + ], + "greeting": "Hello, Alyson Schmidt! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217314d8314985200f7", + "index": 375, + "guid": "48324508-5f2e-44ed-9b73-7620b5ee1010", + "isActive": false, + "balance": "$3,204.13", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "brown", + "name": "Tillman Tillman", + "gender": "male", + "company": "HOMELUX", + "email": "tillmantillman@homelux.com", + "phone": "+1 (985) 565-2538", + "address": "578 Bristol Street, Corriganville, Nebraska, 3799", + "about": "Dolore labore velit aliquip minim ut aliqua culpa ipsum ex nostrud ut. Veniam excepteur qui ullamco velit cillum occaecat fugiat eu quis aliqua occaecat. Sint cupidatat nisi laborum reprehenderit consectetur. Irure amet aliquip veniam pariatur exercitation proident officia et excepteur eiusmod occaecat in veniam. Sint cupidatat tempor ea eu in. Adipisicing occaecat fugiat cupidatat deserunt consequat exercitation deserunt dolore cillum do qui.\r\n", + "registered": "2015-07-09T09:17:30 +06:00", + "latitude": 33.535393, + "longitude": 77.282095, + "tags": [ + "velit", + "ut", + "velit", + "cillum", + "laborum", + "cupidatat", + "velit" + ], + "friends": [ + { + "id": 0, + "name": "Mia Hale" + }, + { + "id": 1, + "name": "Anderson Black" + }, + { + "id": 2, + "name": "Mari Koch" + } + ], + "greeting": "Hello, Tillman Tillman! You have 7 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021787e9a0b0ea1180c2", + "index": 376, + "guid": "b74e2772-1379-4488-8051-ef76f476c2be", + "isActive": false, + "balance": "$3,869.50", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "green", + "name": "Perry Haynes", + "gender": "male", + "company": "BLURRYBUS", + "email": "perryhaynes@blurrybus.com", + "phone": "+1 (845) 581-3958", + "address": "831 Dahl Court, Marshall, Tennessee, 2122", + "about": "Occaecat eiusmod nostrud elit pariatur. Mollit deserunt ea enim eiusmod velit deserunt dolor mollit. Ipsum non do eiusmod quis laborum nisi amet eu. Elit dolore incididunt ad id culpa. Pariatur ex Lorem ex exercitation. Non veniam pariatur sit ipsum duis voluptate est. Aliquip ut ad irure non laboris aliquip est sunt voluptate ullamco id laboris.\r\n", + "registered": "2016-02-02T08:47:55 +07:00", + "latitude": 63.583783, + "longitude": 137.919264, + "tags": [ + "veniam", + "dolor", + "mollit", + "amet", + "proident", + "ullamco", + "pariatur" + ], + "friends": [ + { + "id": 0, + "name": "Leon Burt" + }, + { + "id": 1, + "name": "Larson Preston" + }, + { + "id": 2, + "name": "Valenzuela Baker" + } + ], + "greeting": "Hello, Perry Haynes! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021722a9013e5faa65ca", + "index": 377, + "guid": "4a9f6981-9441-408f-b22b-66d00141dc84", + "isActive": true, + "balance": "$3,390.95", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "brown", + "name": "Deanna Mendez", + "gender": "female", + "company": "PHARMEX", + "email": "deannamendez@pharmex.com", + "phone": "+1 (884) 431-3430", + "address": "947 Virginia Place, Lafferty, Utah, 2881", + "about": "Nostrud cupidatat occaecat non aliqua ullamco minim tempor reprehenderit fugiat laboris duis consectetur occaecat. Pariatur enim cupidatat et adipisicing sunt voluptate ad dolore qui. Irure quis tempor magna et Lorem fugiat tempor sit mollit ipsum officia est. Commodo tempor dolore irure eu nostrud minim exercitation ea reprehenderit sit. Sunt officia deserunt do aute nisi.\r\n", + "registered": "2014-06-02T09:14:37 +06:00", + "latitude": 27.551314, + "longitude": -148.417502, + "tags": [ + "labore", + "eu", + "deserunt", + "sint", + "veniam", + "cupidatat", + "voluptate" + ], + "friends": [ + { + "id": 0, + "name": "Davidson Rogers" + }, + { + "id": 1, + "name": "Francis Middleton" + }, + { + "id": 2, + "name": "Raymond Rose" + } + ], + "greeting": "Hello, Deanna Mendez! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302173b8e9999adf3ad63", + "index": 378, + "guid": "3b0b1a41-a0e3-4a2f-916f-5a86e7705a97", + "isActive": true, + "balance": "$2,691.10", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "brown", + "name": "Loraine Dotson", + "gender": "female", + "company": "PROWASTE", + "email": "lorainedotson@prowaste.com", + "phone": "+1 (831) 482-2440", + "address": "671 Hicks Street, Coyote, Marshall Islands, 1240", + "about": "Veniam minim quis tempor esse non sit magna nisi deserunt consequat cillum. Cillum fugiat voluptate magna ad ut voluptate velit. Ad nostrud excepteur et fugiat fugiat dolore minim culpa nisi. Nostrud dolor mollit pariatur est fugiat consectetur adipisicing do consectetur. Magna irure mollit amet incididunt id amet anim irure amet.\r\n", + "registered": "2015-01-08T09:15:11 +07:00", + "latitude": -6.19047, + "longitude": 34.326948, + "tags": [ + "deserunt", + "enim", + "anim", + "id", + "reprehenderit", + "incididunt", + "ut" + ], + "friends": [ + { + "id": 0, + "name": "Leanna Patrick" + }, + { + "id": 1, + "name": "Vaughan Grant" + }, + { + "id": 2, + "name": "Dodson Gregory" + } + ], + "greeting": "Hello, Loraine Dotson! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217e7aa3ad4b2aebf1a", + "index": 379, + "guid": "d85038cd-02f7-4dc7-9844-cd1492cae330", + "isActive": false, + "balance": "$1,246.11", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Massey Wilkerson", + "gender": "male", + "company": "GEEKFARM", + "email": "masseywilkerson@geekfarm.com", + "phone": "+1 (937) 434-3600", + "address": "883 Kossuth Place, Tampico, Georgia, 8286", + "about": "Cillum enim dolor dolore ea officia. Excepteur adipisicing do veniam aliqua laboris do voluptate aute eiusmod. Ex in et laboris quis incididunt fugiat.\r\n", + "registered": "2017-12-01T12:24:53 +07:00", + "latitude": -11.962395, + "longitude": 69.755444, + "tags": [ + "officia", + "quis", + "sint", + "aliquip", + "excepteur", + "adipisicing", + "amet" + ], + "friends": [ + { + "id": 0, + "name": "Tammy Dunlap" + }, + { + "id": 1, + "name": "Lelia Gibbs" + }, + { + "id": 2, + "name": "Morrison Solis" + } + ], + "greeting": "Hello, Massey Wilkerson! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302176e6f9a6d9c9ccc17", + "index": 380, + "guid": "d5a66938-f8f7-453a-b33d-578074f9bd77", + "isActive": false, + "balance": "$1,197.25", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "blue", + "name": "Lily Bolton", + "gender": "female", + "company": "ZOMBOID", + "email": "lilybolton@zomboid.com", + "phone": "+1 (988) 596-3791", + "address": "363 Hampton Avenue, Trail, Massachusetts, 9680", + "about": "Sint occaecat est nostrud nulla ipsum. Consequat labore incididunt et aute labore dolor esse qui eiusmod nisi sit non ex. Ea eiusmod incididunt laboris deserunt veniam sunt commodo veniam fugiat est. Ea dolore reprehenderit non enim reprehenderit fugiat duis irure. Veniam irure ex et cupidatat tempor ipsum quis velit dolore incididunt. Esse pariatur aliqua occaecat exercitation laboris consequat eiusmod amet et nisi aliqua esse quis. Sunt sit sint eu qui enim commodo labore aliquip.\r\n", + "registered": "2015-07-03T09:27:48 +06:00", + "latitude": 29.834133, + "longitude": 72.414788, + "tags": [ + "tempor", + "irure", + "elit", + "dolore", + "incididunt", + "sint", + "sunt" + ], + "friends": [ + { + "id": 0, + "name": "Cleveland Hamilton" + }, + { + "id": 1, + "name": "Katie Salazar" + }, + { + "id": 2, + "name": "Lacey Ashley" + } + ], + "greeting": "Hello, Lily Bolton! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021747605d60a143389c", + "index": 381, + "guid": "084236e0-df92-4b9a-9a22-fd2d7ff49647", + "isActive": false, + "balance": "$2,199.09", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "green", + "name": "Workman Graves", + "gender": "male", + "company": "QUIZMO", + "email": "workmangraves@quizmo.com", + "phone": "+1 (901) 421-3269", + "address": "827 Brigham Street, Emerald, Arizona, 9669", + "about": "Qui dolor est irure nulla enim aliquip enim. Elit et amet in aute ullamco do. Ea eu sint voluptate exercitation proident est eu ex exercitation est. Excepteur Lorem deserunt sunt magna nisi ad sunt.\r\n", + "registered": "2018-03-08T10:27:55 +07:00", + "latitude": 30.319014, + "longitude": 64.214631, + "tags": [ + "esse", + "pariatur", + "dolor", + "aliqua", + "magna", + "mollit", + "id" + ], + "friends": [ + { + "id": 0, + "name": "Wendy Phelps" + }, + { + "id": 1, + "name": "Roberson Roberts" + }, + { + "id": 2, + "name": "Pickett Sanders" + } + ], + "greeting": "Hello, Workman Graves! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217985b63c341124ee5", + "index": 382, + "guid": "06da00b0-4221-4c9e-96f9-10733a51418b", + "isActive": true, + "balance": "$2,533.17", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "brown", + "name": "Carrie Wright", + "gender": "female", + "company": "PASTURIA", + "email": "carriewright@pasturia.com", + "phone": "+1 (816) 473-2264", + "address": "319 Kings Hwy, Sattley, District Of Columbia, 9515", + "about": "Eiusmod est duis aliquip irure amet reprehenderit laborum proident. Exercitation mollit nostrud Lorem eu nostrud quis. Anim ea reprehenderit quis esse. Mollit elit sit culpa id duis est non cupidatat mollit elit.\r\n", + "registered": "2015-01-30T09:57:50 +07:00", + "latitude": -43.515297, + "longitude": 133.234017, + "tags": [ + "occaecat", + "do", + "mollit", + "do", + "aliqua", + "cupidatat", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Castro Gilmore" + }, + { + "id": 1, + "name": "Black Landry" + }, + { + "id": 2, + "name": "Jeri Ramirez" + } + ], + "greeting": "Hello, Carrie Wright! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302179e6da6dceec72329", + "index": 383, + "guid": "3018f7f9-e61f-467f-b243-7e920aebe358", + "isActive": false, + "balance": "$1,084.30", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "blue", + "name": "Emma Keller", + "gender": "female", + "company": "QIAO", + "email": "emmakeller@qiao.com", + "phone": "+1 (899) 510-3245", + "address": "815 Dunham Place, Roberts, Virgin Islands, 1348", + "about": "Non id ipsum laboris ullamco. Enim adipisicing ut adipisicing tempor et aute. Cillum ipsum anim elit duis velit exercitation eu ullamco incididunt. Incididunt commodo sint eiusmod culpa adipisicing est et quis ea nulla. Nostrud ipsum ex ipsum culpa laborum eu eiusmod irure ex ad qui ex qui minim. Minim labore cupidatat minim pariatur officia non sint eiusmod.\r\n", + "registered": "2017-08-20T09:55:16 +06:00", + "latitude": 72.785635, + "longitude": -148.137329, + "tags": [ + "exercitation", + "ea", + "eu", + "consequat", + "Lorem", + "irure", + "laborum" + ], + "friends": [ + { + "id": 0, + "name": "Webb Franklin" + }, + { + "id": 1, + "name": "Carmen Barrera" + }, + { + "id": 2, + "name": "Frye Dickson" + } + ], + "greeting": "Hello, Emma Keller! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217c8097b2fee707ba3", + "index": 384, + "guid": "2b9102b7-3228-4417-b5f7-88759f4893a2", + "isActive": false, + "balance": "$1,466.76", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "green", + "name": "Ashley Burgess", + "gender": "male", + "company": "DIGIGENE", + "email": "ashleyburgess@digigene.com", + "phone": "+1 (861) 415-3608", + "address": "524 Pershing Loop, Summerset, South Dakota, 1385", + "about": "Est adipisicing occaecat ullamco ea esse proident cillum et reprehenderit do cupidatat excepteur mollit amet. Quis eu labore labore quis culpa ipsum sint incididunt irure ipsum. Nulla officia aliqua esse velit reprehenderit dolor ipsum enim consequat fugiat ad ex pariatur consequat. Deserunt ea do tempor veniam nulla. Ullamco ullamco ullamco do pariatur amet commodo ea irure sit culpa eiusmod sint amet laborum. Exercitation reprehenderit duis duis minim laborum et do sint cupidatat amet ea sint eu voluptate. Qui qui magna elit ad sit.\r\n", + "registered": "2014-06-28T01:30:39 +06:00", + "latitude": 8.858224, + "longitude": 120.346624, + "tags": [ + "excepteur", + "voluptate", + "cillum", + "ut", + "nulla", + "magna", + "tempor" + ], + "friends": [ + { + "id": 0, + "name": "Jenkins Potts" + }, + { + "id": 1, + "name": "Lottie Miranda" + }, + { + "id": 2, + "name": "Henderson Fitzpatrick" + } + ], + "greeting": "Hello, Ashley Burgess! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217c600b60ecc64be92", + "index": 385, + "guid": "a84e3405-7b69-4e0a-a706-3805d456981a", + "isActive": false, + "balance": "$3,703.95", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "brown", + "name": "Decker Irwin", + "gender": "male", + "company": "REPETWIRE", + "email": "deckerirwin@repetwire.com", + "phone": "+1 (877) 459-2247", + "address": "831 Harway Avenue, Worton, Virginia, 2921", + "about": "Minim ex cillum cillum ex labore deserunt exercitation. Commodo occaecat laboris sit proident labore do dolor veniam sunt sunt dolor labore. Cillum sint sit ipsum ad elit amet cillum mollit laboris enim dolor duis. Exercitation occaecat enim laborum sit. Sunt voluptate Lorem consectetur minim esse culpa sint laboris proident ut exercitation ut. Culpa occaecat quis incididunt non culpa ad nulla occaecat. Cillum enim proident sint aliquip non ullamco occaecat exercitation eu sit.\r\n", + "registered": "2016-09-13T07:50:36 +06:00", + "latitude": -1.975943, + "longitude": -167.617087, + "tags": [ + "commodo", + "commodo", + "eiusmod", + "laboris", + "irure", + "ea", + "eu" + ], + "friends": [ + { + "id": 0, + "name": "Gentry Boyd" + }, + { + "id": 1, + "name": "Stanley Finley" + }, + { + "id": 2, + "name": "Lynne Giles" + } + ], + "greeting": "Hello, Decker Irwin! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302177106922bd4438a5f", + "index": 386, + "guid": "f892f55d-6ae8-4e84-bed7-2d73120614c9", + "isActive": true, + "balance": "$3,286.67", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "green", + "name": "Eloise Hardin", + "gender": "female", + "company": "AFFLUEX", + "email": "eloisehardin@affluex.com", + "phone": "+1 (879) 409-2511", + "address": "557 Willoughby Street, Dunnavant, Michigan, 4945", + "about": "Dolor consequat pariatur aliqua cupidatat occaecat eiusmod ullamco eiusmod quis ex. Elit velit mollit qui qui elit nostrud. Voluptate officia consectetur ad cupidatat veniam nisi enim. Cillum officia duis occaecat cupidatat voluptate est commodo sint. Consequat cillum ea ad irure ex elit. Qui quis ipsum in nisi ullamco non anim non nulla elit deserunt esse voluptate.\r\n", + "registered": "2015-06-25T02:57:19 +06:00", + "latitude": 30.183605, + "longitude": -43.743436, + "tags": [ + "exercitation", + "reprehenderit", + "irure", + "duis", + "sit", + "magna", + "in" + ], + "friends": [ + { + "id": 0, + "name": "Hutchinson Case" + }, + { + "id": 1, + "name": "Parrish Castillo" + }, + { + "id": 2, + "name": "Erma Clayton" + } + ], + "greeting": "Hello, Eloise Hardin! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302174db29141debff99e", + "index": 387, + "guid": "3432d89a-8e4f-4b32-826d-085e3b5bba9f", + "isActive": true, + "balance": "$2,804.89", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "brown", + "name": "Lucas Sharpe", + "gender": "male", + "company": "QUANTALIA", + "email": "lucassharpe@quantalia.com", + "phone": "+1 (834) 480-3311", + "address": "217 Cyrus Avenue, Greenbackville, Northern Mariana Islands, 3980", + "about": "Eiusmod commodo fugiat cupidatat dolor esse est proident eu nisi nisi occaecat. Exercitation aliquip ea ut adipisicing eiusmod. Velit dolore sunt exercitation cillum cillum sit nisi. Nisi aute laborum occaecat voluptate esse non. Quis ullamco irure ipsum id est mollit esse quis. Sunt pariatur occaecat id consequat commodo aute excepteur culpa deserunt magna anim occaecat in.\r\n", + "registered": "2015-01-23T02:25:53 +07:00", + "latitude": -23.761318, + "longitude": -44.832621, + "tags": [ + "aute", + "fugiat", + "do", + "laboris", + "Lorem", + "nostrud", + "quis" + ], + "friends": [ + { + "id": 0, + "name": "Lauri Clements" + }, + { + "id": 1, + "name": "Teresa Duke" + }, + { + "id": 2, + "name": "Sargent Carney" + } + ], + "greeting": "Hello, Lucas Sharpe! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217810ce731f8d50d7f", + "index": 388, + "guid": "82d4e6e0-c9d0-4d05-9d87-1d152a3bba0d", + "isActive": false, + "balance": "$1,995.28", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "brown", + "name": "Irwin Burch", + "gender": "male", + "company": "MIXERS", + "email": "irwinburch@mixers.com", + "phone": "+1 (902) 560-2583", + "address": "652 Sumpter Street, Freelandville, Illinois, 306", + "about": "Qui aliquip ullamco deserunt tempor officia sit cillum adipisicing adipisicing ullamco voluptate aliquip in ea. Ipsum ea officia enim duis dolor elit velit non tempor officia. Ex veniam aliquip excepteur quis dolor ex incididunt reprehenderit enim proident ipsum pariatur minim. Dolor fugiat et cillum fugiat ipsum eiusmod est eu voluptate veniam sit id cupidatat occaecat. Non id officia est nostrud cillum.\r\n", + "registered": "2015-08-31T08:01:12 +06:00", + "latitude": -25.430569, + "longitude": -105.677116, + "tags": [ + "enim", + "tempor", + "consectetur", + "cillum", + "aliqua", + "amet", + "culpa" + ], + "friends": [ + { + "id": 0, + "name": "Parker Love" + }, + { + "id": 1, + "name": "Merle Bean" + }, + { + "id": 2, + "name": "Olive Long" + } + ], + "greeting": "Hello, Irwin Burch! You have 6 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217ad1d2233ca85f717", + "index": 389, + "guid": "3e65cf97-dc7a-4ba9-b554-4f0b4f8e71c7", + "isActive": true, + "balance": "$2,454.09", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "green", + "name": "Gilmore Ball", + "gender": "male", + "company": "QUALITEX", + "email": "gilmoreball@qualitex.com", + "phone": "+1 (954) 592-3724", + "address": "537 Madison Place, Urie, Wisconsin, 2726", + "about": "Ad aliqua pariatur voluptate ex velit sunt. Quis velit laborum ad non labore. Commodo magna enim pariatur amet nostrud anim deserunt non. In ex voluptate ut aliquip ea eiusmod. Nostrud aliquip aliquip exercitation do esse amet deserunt pariatur minim velit irure. Excepteur aliquip consectetur magna occaecat non excepteur. Irure duis eu anim eu anim pariatur ipsum veniam non exercitation.\r\n", + "registered": "2017-03-17T09:43:28 +06:00", + "latitude": -66.264315, + "longitude": 157.955695, + "tags": [ + "labore", + "excepteur", + "nisi", + "labore", + "Lorem", + "ut", + "Lorem" + ], + "friends": [ + { + "id": 0, + "name": "Estela Brennan" + }, + { + "id": 1, + "name": "Marissa Hill" + }, + { + "id": 2, + "name": "Charlotte Davenport" + } + ], + "greeting": "Hello, Gilmore Ball! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021716ba63cdf00d0dca", + "index": 390, + "guid": "e9c27033-32f3-4d94-9b89-22673066fc18", + "isActive": false, + "balance": "$2,598.44", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "green", + "name": "Latonya Herrera", + "gender": "female", + "company": "DAYCORE", + "email": "latonyaherrera@daycore.com", + "phone": "+1 (817) 490-2394", + "address": "914 Dobbin Street, Garnet, Idaho, 9402", + "about": "Anim duis quis mollit ut sit Lorem anim ex eu cillum elit. Pariatur aliquip et veniam commodo fugiat excepteur mollit ut pariatur aliqua fugiat elit proident sit. Dolore incididunt deserunt sit qui nostrud laborum fugiat. Nisi reprehenderit ea labore quis. Aliquip commodo in laborum sit ex ex anim et commodo.\r\n", + "registered": "2016-10-28T10:25:29 +06:00", + "latitude": 43.08607, + "longitude": -119.246963, + "tags": [ + "tempor", + "pariatur", + "excepteur", + "non", + "velit", + "dolore", + "ullamco" + ], + "friends": [ + { + "id": 0, + "name": "Ramirez Nieves" + }, + { + "id": 1, + "name": "Valentine Day" + }, + { + "id": 2, + "name": "Robles Wade" + } + ], + "greeting": "Hello, Latonya Herrera! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302171bc60e193bcf4dd2", + "index": 391, + "guid": "af1285f7-aeca-4c5b-bb11-e5c37a501301", + "isActive": false, + "balance": "$2,644.42", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "green", + "name": "Willis Kirby", + "gender": "male", + "company": "ZORK", + "email": "williskirby@zork.com", + "phone": "+1 (864) 456-2015", + "address": "243 Boynton Place, Wintersburg, New Hampshire, 2708", + "about": "Irure elit reprehenderit magna elit. Amet excepteur do velit labore exercitation. Amet non duis proident qui.\r\n", + "registered": "2015-12-03T09:29:46 +07:00", + "latitude": 27.991447, + "longitude": -116.519663, + "tags": [ + "exercitation", + "tempor", + "magna", + "pariatur", + "pariatur", + "sint", + "pariatur" + ], + "friends": [ + { + "id": 0, + "name": "Burton Bryan" + }, + { + "id": 1, + "name": "Rutledge Miller" + }, + { + "id": 2, + "name": "Mckay Wiley" + } + ], + "greeting": "Hello, Willis Kirby! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217c8230b7abd68f1ae", + "index": 392, + "guid": "7e7ca250-39c8-420f-97cc-eff02401d152", + "isActive": true, + "balance": "$2,932.33", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "green", + "name": "Ella Matthews", + "gender": "female", + "company": "EXOTERIC", + "email": "ellamatthews@exoteric.com", + "phone": "+1 (896) 437-2804", + "address": "920 Locust Street, Herbster, South Carolina, 1604", + "about": "Aute officia minim aliqua irure sit sunt. Officia nulla cupidatat consequat Lorem cupidatat Lorem sit in tempor. Nulla id laborum anim dolor non deserunt. Sint aliqua commodo tempor consectetur commodo et.\r\n", + "registered": "2015-10-09T05:55:38 +06:00", + "latitude": 69.064196, + "longitude": 6.202132, + "tags": [ + "quis", + "adipisicing", + "ad", + "consequat", + "quis", + "adipisicing", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Hickman Mcdowell" + }, + { + "id": 1, + "name": "Carla Blanchard" + }, + { + "id": 2, + "name": "Brianna Clarke" + } + ], + "greeting": "Hello, Ella Matthews! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217d958af7f07ebb234", + "index": 393, + "guid": "8a2e39bf-00b9-4609-9d1e-08f047c6f557", + "isActive": true, + "balance": "$3,989.69", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "blue", + "name": "Montoya Kline", + "gender": "male", + "company": "PHARMACON", + "email": "montoyakline@pharmacon.com", + "phone": "+1 (850) 512-3564", + "address": "590 Ralph Avenue, Shelby, Iowa, 7088", + "about": "Ex nisi consequat commodo incididunt ut do occaecat. Ullamco ut ullamco consequat nulla et. Occaecat do culpa occaecat ex id dolore mollit ullamco laborum ex tempor officia.\r\n", + "registered": "2014-03-08T03:24:38 +07:00", + "latitude": 40.237929, + "longitude": 130.040631, + "tags": [ + "est", + "aliqua", + "ipsum", + "non", + "ea", + "incididunt", + "eiusmod" + ], + "friends": [ + { + "id": 0, + "name": "Valdez Weber" + }, + { + "id": 1, + "name": "Stacey Yang" + }, + { + "id": 2, + "name": "Sophie Hardy" + } + ], + "greeting": "Hello, Montoya Kline! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302177ad6b5c819d70561", + "index": 394, + "guid": "5ffaa8cd-4f03-4400-9ed5-0be3fe01cb7c", + "isActive": true, + "balance": "$3,413.27", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "green", + "name": "Magdalena Garcia", + "gender": "female", + "company": "OVERPLEX", + "email": "magdalenagarcia@overplex.com", + "phone": "+1 (999) 519-2824", + "address": "166 Ridge Boulevard, Lopezo, California, 1894", + "about": "Dolor deserunt nostrud qui dolore enim est ut nulla. Excepteur consequat anim deserunt sunt qui Lorem ea anim non et. Do consectetur eu reprehenderit et dolore ipsum laborum eiusmod sit elit sunt minim.\r\n", + "registered": "2017-04-29T12:55:42 +06:00", + "latitude": -45.347029, + "longitude": -9.628444, + "tags": [ + "eiusmod", + "commodo", + "eu", + "ullamco", + "eiusmod", + "aliquip", + "irure" + ], + "friends": [ + { + "id": 0, + "name": "Gates Snider" + }, + { + "id": 1, + "name": "Rosario Rojas" + }, + { + "id": 2, + "name": "Clemons Hodges" + } + ], + "greeting": "Hello, Magdalena Garcia! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302172e1c0433f6758846", + "index": 395, + "guid": "420ec23b-9956-4c1d-aab9-66dd16e13817", + "isActive": true, + "balance": "$3,243.03", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Madeline Alexander", + "gender": "female", + "company": "EVEREST", + "email": "madelinealexander@everest.com", + "phone": "+1 (865) 576-3305", + "address": "895 Dinsmore Place, Herald, Wyoming, 9241", + "about": "Laborum consectetur quis fugiat ex minim. Aute ad eu deserunt cupidatat enim exercitation aute fugiat tempor anim. Magna occaecat officia consequat fugiat proident dolor laborum do dolor Lorem mollit. Et ad aliqua proident labore nulla voluptate sint ut dolore. Proident est anim labore aliquip occaecat. Laborum veniam adipisicing reprehenderit nisi nisi. Aliquip ex nisi velit exercitation laboris cillum nostrud aute proident est ut excepteur.\r\n", + "registered": "2018-02-14T12:56:21 +07:00", + "latitude": 81.775223, + "longitude": 89.129303, + "tags": [ + "cupidatat", + "sunt", + "magna", + "magna", + "commodo", + "sint", + "amet" + ], + "friends": [ + { + "id": 0, + "name": "Sheryl Farley" + }, + { + "id": 1, + "name": "Lancaster Burton" + }, + { + "id": 2, + "name": "Shawna Riddle" + } + ], + "greeting": "Hello, Madeline Alexander! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217017aea8dc52b7de6", + "index": 396, + "guid": "eff0392b-e557-403c-9a3a-40036d670601", + "isActive": false, + "balance": "$2,285.91", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "green", + "name": "Church Sharp", + "gender": "male", + "company": "CODAX", + "email": "churchsharp@codax.com", + "phone": "+1 (948) 468-3008", + "address": "283 Abbey Court, Grapeview, Maryland, 3130", + "about": "Mollit magna ipsum sunt ut ullamco mollit nostrud tempor qui ut laborum. Et consequat aute cupidatat et proident aliqua exercitation exercitation pariatur. Culpa dolor aute mollit do nostrud ullamco est tempor incididunt eiusmod incididunt do proident ad. Minim officia anim mollit fugiat. Exercitation nostrud pariatur consectetur ut eiusmod est. Ipsum officia labore culpa cupidatat. Cillum culpa excepteur reprehenderit minim sit cillum exercitation incididunt nulla elit aute.\r\n", + "registered": "2017-02-28T09:33:29 +07:00", + "latitude": 23.368929, + "longitude": 33.384224, + "tags": [ + "Lorem", + "culpa", + "reprehenderit", + "proident", + "anim", + "culpa", + "velit" + ], + "friends": [ + { + "id": 0, + "name": "Tisha James" + }, + { + "id": 1, + "name": "Craft Keith" + }, + { + "id": 2, + "name": "Mona Sargent" + } + ], + "greeting": "Hello, Church Sharp! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217a8c21b8116de8faa", + "index": 397, + "guid": "d7b0075b-8723-492c-b3cf-517650996e36", + "isActive": true, + "balance": "$3,869.08", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "blue", + "name": "Oneil Patterson", + "gender": "male", + "company": "IDEALIS", + "email": "oneilpatterson@idealis.com", + "phone": "+1 (984) 469-3619", + "address": "116 Manhattan Avenue, Morningside, Louisiana, 6110", + "about": "Exercitation incididunt ad consequat Lorem ullamco pariatur duis esse culpa. Culpa consequat aliqua do magna non commodo ad nostrud proident tempor aliquip deserunt reprehenderit. Est voluptate amet non aliqua voluptate do consequat fugiat est qui. Pariatur sunt cupidatat ipsum aute elit fugiat eu amet. Veniam officia minim amet consequat pariatur do ullamco elit. Et officia occaecat nulla est est anim id exercitation pariatur et.\r\n", + "registered": "2014-12-09T04:18:09 +07:00", + "latitude": -48.978004, + "longitude": -86.624398, + "tags": [ + "cupidatat", + "dolor", + "cillum", + "fugiat", + "dolor", + "officia", + "laboris" + ], + "friends": [ + { + "id": 0, + "name": "Houston Buckner" + }, + { + "id": 1, + "name": "Goldie Blair" + }, + { + "id": 2, + "name": "Nielsen Robles" + } + ], + "greeting": "Hello, Oneil Patterson! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021752f618c926308f7e", + "index": 398, + "guid": "0309049d-00c3-42f6-a56b-a579df491b04", + "isActive": false, + "balance": "$2,475.10", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "brown", + "name": "Hunter Frederick", + "gender": "male", + "company": "MAGMINA", + "email": "hunterfrederick@magmina.com", + "phone": "+1 (968) 413-3322", + "address": "433 Metropolitan Avenue, Fowlerville, Federated States Of Micronesia, 265", + "about": "Ullamco cillum exercitation minim sunt. Nulla pariatur nisi adipisicing deserunt laborum dolore excepteur ad excepteur. Incididunt voluptate excepteur quis ex dolor. Reprehenderit velit ex eu ut culpa non dolor consequat laboris do.\r\n", + "registered": "2017-12-15T02:46:36 +07:00", + "latitude": -78.490506, + "longitude": -150.88992, + "tags": [ + "nostrud", + "laborum", + "eu", + "ad", + "voluptate", + "aliquip", + "sint" + ], + "friends": [ + { + "id": 0, + "name": "Susie Santana" + }, + { + "id": 1, + "name": "Mueller Rocha" + }, + { + "id": 2, + "name": "Wallace Holcomb" + } + ], + "greeting": "Hello, Hunter Frederick! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217fa0c0a381ab3e2d9", + "index": 399, + "guid": "a9860d63-e6c6-4346-9cb0-26a9bcbfec52", + "isActive": true, + "balance": "$1,733.32", + "picture": "http://placehold.it/32x32", + "age": 39, + "eyeColor": "brown", + "name": "Gay Lynch", + "gender": "female", + "company": "IMMUNICS", + "email": "gaylynch@immunics.com", + "phone": "+1 (860) 564-2995", + "address": "944 Holt Court, Deputy, Pennsylvania, 999", + "about": "Irure nulla velit est eu velit adipisicing consectetur amet consectetur sint. Eu do deserunt labore ea esse sint reprehenderit et. Quis laboris deserunt ipsum anim commodo proident amet pariatur elit. Voluptate consequat cillum do sit. Amet do id qui cillum eu adipisicing fugiat pariatur irure excepteur adipisicing ut.\r\n", + "registered": "2017-11-17T03:45:20 +07:00", + "latitude": 30.382713, + "longitude": -118.423117, + "tags": [ + "dolore", + "duis", + "culpa", + "anim", + "tempor", + "nulla", + "incididunt" + ], + "friends": [ + { + "id": 0, + "name": "Mcknight Mills" + }, + { + "id": 1, + "name": "Belinda Mccarthy" + }, + { + "id": 2, + "name": "Ruiz Reese" + } + ], + "greeting": "Hello, Gay Lynch! You have 1 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217a74207c7961ac36d", + "index": 400, + "guid": "7cf9d8b7-45cc-4891-87f0-83f225b84387", + "isActive": false, + "balance": "$2,316.60", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "brown", + "name": "Lynn Duncan", + "gender": "male", + "company": "PHUEL", + "email": "lynnduncan@phuel.com", + "phone": "+1 (851) 593-3331", + "address": "506 Stockholm Street, Fannett, Vermont, 1093", + "about": "Nostrud commodo labore duis occaecat Lorem culpa aliquip. Ad velit ipsum anim eiusmod id proident ex laborum eiusmod dolor do ea reprehenderit nostrud. Nisi incididunt nisi est pariatur do. Nisi nulla deserunt occaecat id minim dolor amet mollit do. Lorem pariatur anim duis Lorem laborum deserunt id. Adipisicing ut id anim id. Pariatur duis sit eiusmod laboris minim aliquip cupidatat.\r\n", + "registered": "2015-12-26T12:42:02 +07:00", + "latitude": -4.465432, + "longitude": -13.440246, + "tags": [ + "irure", + "elit", + "est", + "dolore", + "fugiat", + "eu", + "officia" + ], + "friends": [ + { + "id": 0, + "name": "Kerr Pittman" + }, + { + "id": 1, + "name": "Winnie Mckay" + }, + { + "id": 2, + "name": "Conrad Richard" + } + ], + "greeting": "Hello, Lynn Duncan! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217f9ede6fc8d1ca20e", + "index": 401, + "guid": "b397c7cc-4d2f-4f95-b7b0-18158c966435", + "isActive": false, + "balance": "$2,926.39", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Vaughn Frye", + "gender": "male", + "company": "GEEKMOSIS", + "email": "vaughnfrye@geekmosis.com", + "phone": "+1 (911) 467-2022", + "address": "148 Stryker Street, Veyo, Maine, 7426", + "about": "Ullamco eiusmod aliquip anim id pariatur ex laboris anim ullamco voluptate nostrud ex dolor voluptate. Aliquip non in deserunt est eiusmod adipisicing elit. Excepteur amet esse cupidatat quis nulla nulla nisi proident mollit dolor et nisi. Quis proident tempor ullamco officia cillum incididunt irure sunt ad. Deserunt dolor pariatur commodo eiusmod sunt eiusmod.\r\n", + "registered": "2014-07-09T11:40:45 +06:00", + "latitude": -75.60148, + "longitude": -97.135159, + "tags": [ + "incididunt", + "fugiat", + "magna", + "elit", + "ea", + "ea", + "ullamco" + ], + "friends": [ + { + "id": 0, + "name": "Alissa Knox" + }, + { + "id": 1, + "name": "Dana Carlson" + }, + { + "id": 2, + "name": "Stephenson Mayer" + } + ], + "greeting": "Hello, Vaughn Frye! You have 9 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217b621feda8c5409cb", + "index": 402, + "guid": "51858190-ddca-4e69-a641-fd6f2ab260aa", + "isActive": false, + "balance": "$1,781.37", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Odonnell Russo", + "gender": "male", + "company": "TRASOLA", + "email": "odonnellrusso@trasola.com", + "phone": "+1 (986) 447-3587", + "address": "113 Macdougal Street, Salvo, Alaska, 1655", + "about": "Non laborum cupidatat duis excepteur ea do eiusmod aliqua laborum dolore. Non cillum commodo incididunt sunt non sint culpa eiusmod ut quis adipisicing nisi. Quis proident adipisicing sit officia ipsum exercitation dolor est ullamco. Ea nisi ad velit sint esse reprehenderit do.\r\n", + "registered": "2016-07-27T08:17:46 +06:00", + "latitude": -24.580924, + "longitude": 99.797959, + "tags": [ + "ullamco", + "labore", + "Lorem", + "irure", + "ullamco", + "incididunt", + "est" + ], + "friends": [ + { + "id": 0, + "name": "Head Clay" + }, + { + "id": 1, + "name": "Myra Juarez" + }, + { + "id": 2, + "name": "Renee Guerrero" + } + ], + "greeting": "Hello, Odonnell Russo! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217bf668a05e6cba4f5", + "index": 403, + "guid": "ddef3ecb-3f94-4aaa-9556-9962827df52f", + "isActive": false, + "balance": "$1,770.55", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "blue", + "name": "Gloria Cervantes", + "gender": "female", + "company": "EXPOSA", + "email": "gloriacervantes@exposa.com", + "phone": "+1 (855) 412-2395", + "address": "680 Delevan Street, Russellville, Palau, 6926", + "about": "Pariatur quis nostrud pariatur cillum ut minim aliqua mollit eiusmod officia exercitation culpa. Id mollit amet proident cillum excepteur amet irure irure. Dolore proident ullamco exercitation deserunt.\r\n", + "registered": "2015-07-04T04:53:47 +06:00", + "latitude": -60.448108, + "longitude": 16.854133, + "tags": [ + "culpa", + "sunt", + "dolor", + "irure", + "dolor", + "est", + "id" + ], + "friends": [ + { + "id": 0, + "name": "Sharp Porter" + }, + { + "id": 1, + "name": "Maritza Thornton" + }, + { + "id": 2, + "name": "Dollie Carter" + } + ], + "greeting": "Hello, Gloria Cervantes! You have 2 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217ff92904a4a8bf871", + "index": 404, + "guid": "c2700dc2-0abe-4441-878d-4d4fe6ebcd0f", + "isActive": true, + "balance": "$2,822.34", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "blue", + "name": "Peck Stafford", + "gender": "male", + "company": "BALOOBA", + "email": "peckstafford@balooba.com", + "phone": "+1 (861) 527-2107", + "address": "220 Oakland Place, Franklin, Arkansas, 4751", + "about": "Sunt velit pariatur laboris ipsum consequat consequat anim. Nulla sint aliquip dolor exercitation. Ad sint sint cillum ut deserunt mollit non cillum aliquip. Tempor ex minim qui nostrud laboris commodo adipisicing irure esse. Deserunt cupidatat mollit sit est minim culpa consectetur officia id excepteur voluptate aute. Cupidatat cupidatat duis et nisi voluptate officia tempor proident. Aliquip eu exercitation eiusmod incididunt cupidatat et incididunt proident laborum proident nostrud aliqua.\r\n", + "registered": "2016-01-22T05:45:59 +07:00", + "latitude": 17.066849, + "longitude": -16.328147, + "tags": [ + "deserunt", + "irure", + "nostrud", + "elit", + "anim", + "incididunt", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Giles Foley" + }, + { + "id": 1, + "name": "Abigail Gates" + }, + { + "id": 2, + "name": "Theresa Gould" + } + ], + "greeting": "Hello, Peck Stafford! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217888e5518cf237d34", + "index": 405, + "guid": "a749915f-5c72-4129-96e9-c46bc5c579d7", + "isActive": false, + "balance": "$1,703.74", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "green", + "name": "Welch Shelton", + "gender": "male", + "company": "ENTALITY", + "email": "welchshelton@entality.com", + "phone": "+1 (990) 591-3662", + "address": "749 Eldert Lane, Emison, Florida, 6653", + "about": "Anim do exercitation nisi commodo minim deserunt laboris irure magna qui deserunt Lorem consectetur. Eiusmod anim ad mollit deserunt do ut cupidatat culpa. Aliquip ad incididunt amet nulla.\r\n", + "registered": "2017-07-04T05:37:14 +06:00", + "latitude": -37.011566, + "longitude": -43.004524, + "tags": [ + "dolor", + "do", + "non", + "adipisicing", + "elit", + "aute", + "non" + ], + "friends": [ + { + "id": 0, + "name": "Powers Charles" + }, + { + "id": 1, + "name": "Byrd Baird" + }, + { + "id": 2, + "name": "Courtney Forbes" + } + ], + "greeting": "Hello, Welch Shelton! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217f4be1bd35a87b522", + "index": 406, + "guid": "c4cb6871-0ffc-404e-9ec5-90862e1c5740", + "isActive": true, + "balance": "$2,276.76", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "blue", + "name": "Gabrielle Garza", + "gender": "female", + "company": "GRONK", + "email": "gabriellegarza@gronk.com", + "phone": "+1 (887) 423-3132", + "address": "561 Gaylord Drive, Condon, Puerto Rico, 5771", + "about": "Deserunt occaecat ea in velit ut magna non. Anim ex sit consequat labore Lorem minim incididunt irure. Fugiat duis nisi nulla officia. Commodo sint ut incididunt consectetur minim incididunt excepteur amet velit nulla consequat.\r\n", + "registered": "2018-02-23T07:12:52 +07:00", + "latitude": 72.731723, + "longitude": -154.124617, + "tags": [ + "aute", + "qui", + "et", + "labore", + "voluptate", + "proident", + "enim" + ], + "friends": [ + { + "id": 0, + "name": "Bertha Skinner" + }, + { + "id": 1, + "name": "Bennett Doyle" + }, + { + "id": 2, + "name": "Antoinette Trujillo" + } + ], + "greeting": "Hello, Gabrielle Garza! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021737066425dbe078c8", + "index": 407, + "guid": "92a287d2-3a6d-4e9b-a725-4fc458d7f992", + "isActive": true, + "balance": "$1,433.89", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "green", + "name": "Pauline Garrett", + "gender": "female", + "company": "GADTRON", + "email": "paulinegarrett@gadtron.com", + "phone": "+1 (896) 512-3297", + "address": "202 Norfolk Street, Chamizal, Hawaii, 8016", + "about": "Excepteur laboris sunt culpa id consectetur sint sint proident officia quis cillum minim consectetur quis. Minim incididunt do esse et laboris. Fugiat dolore labore irure dolore culpa ut deserunt in fugiat tempor id ea exercitation ipsum. Elit pariatur cupidatat do id commodo laboris nisi cupidatat labore incididunt veniam. Eiusmod id dolore officia excepteur non commodo. Aliqua sunt magna aliquip duis tempor dolor quis occaecat. Laborum fugiat culpa Lorem nostrud cupidatat do commodo esse enim in.\r\n", + "registered": "2017-10-06T06:39:39 +06:00", + "latitude": -51.398844, + "longitude": 22.465034, + "tags": [ + "excepteur", + "eiusmod", + "dolor", + "irure", + "ullamco", + "ullamco", + "ut" + ], + "friends": [ + { + "id": 0, + "name": "Pamela Heath" + }, + { + "id": 1, + "name": "Morris Hughes" + }, + { + "id": 2, + "name": "Downs Davis" + } + ], + "greeting": "Hello, Pauline Garrett! You have 4 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217850fb52e6d927f3f", + "index": 408, + "guid": "524f19bf-233d-41c9-b5a7-6af886dd5959", + "isActive": false, + "balance": "$1,821.63", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "green", + "name": "Hensley Barber", + "gender": "male", + "company": "GENESYNK", + "email": "hensleybarber@genesynk.com", + "phone": "+1 (918) 591-2652", + "address": "744 Luquer Street, Maybell, American Samoa, 1844", + "about": "Occaecat est pariatur nisi in incididunt occaecat qui sit sint in et do do dolor. Cupidatat consequat mollit labore aliqua irure tempor dolor ea mollit in fugiat ea commodo. Et exercitation tempor officia adipisicing veniam pariatur deserunt adipisicing officia. Duis ullamco in labore consequat pariatur ex ipsum eiusmod labore. Anim nisi reprehenderit laboris incididunt adipisicing consequat reprehenderit ea labore id.\r\n", + "registered": "2017-09-05T04:32:18 +06:00", + "latitude": -1.861773, + "longitude": 136.828526, + "tags": [ + "laboris", + "sint", + "ad", + "laborum", + "velit", + "sit", + "laboris" + ], + "friends": [ + { + "id": 0, + "name": "Jannie Mcneil" + }, + { + "id": 1, + "name": "Raquel Mays" + }, + { + "id": 2, + "name": "Stanton Moreno" + } + ], + "greeting": "Hello, Hensley Barber! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217113fe2415c81ed5d", + "index": 409, + "guid": "9e478e4f-3630-4c83-a2c8-464b9729f8d7", + "isActive": true, + "balance": "$2,517.80", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Wall Hood", + "gender": "male", + "company": "STRALUM", + "email": "wallhood@stralum.com", + "phone": "+1 (821) 460-2350", + "address": "239 Bedell Lane, Heil, Indiana, 4793", + "about": "Labore aute velit amet deserunt culpa ullamco incididunt dolor nostrud. Fugiat dolor proident sit ut enim. Excepteur ad exercitation anim ex dolor veniam enim magna elit. Elit laboris adipisicing aliqua non do adipisicing aute aliqua fugiat velit in cillum. Pariatur pariatur eu occaecat ex cupidatat cupidatat.\r\n", + "registered": "2016-07-26T02:49:19 +06:00", + "latitude": 17.633021, + "longitude": 139.349293, + "tags": [ + "sunt", + "mollit", + "ut", + "veniam", + "Lorem", + "officia", + "ut" + ], + "friends": [ + { + "id": 0, + "name": "Ellis Harvey" + }, + { + "id": 1, + "name": "Violet Perez" + }, + { + "id": 2, + "name": "Macias Atkinson" + } + ], + "greeting": "Hello, Wall Hood! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302175b05eecb63fa47a7", + "index": 410, + "guid": "19a3ff31-0781-471f-bcc0-509c4a926688", + "isActive": false, + "balance": "$1,337.12", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "brown", + "name": "Sanders Conway", + "gender": "male", + "company": "ZOID", + "email": "sandersconway@zoid.com", + "phone": "+1 (844) 408-2835", + "address": "960 Flatlands Avenue, Falmouth, Missouri, 743", + "about": "Officia voluptate ea ad non. Dolore irure commodo officia laborum reprehenderit. Pariatur pariatur minim dolor eiusmod ut ex id pariatur in est laborum. Nulla eiusmod cupidatat cupidatat eu ut consectetur culpa in et. Laboris esse ex labore enim labore tempor exercitation sint. Sit occaecat aute pariatur magna fugiat ea aliqua laborum et.\r\n", + "registered": "2014-04-28T11:17:33 +06:00", + "latitude": 83.679575, + "longitude": -85.844086, + "tags": [ + "laborum", + "laboris", + "irure", + "minim", + "ad", + "aliquip", + "fugiat" + ], + "friends": [ + { + "id": 0, + "name": "Kathryn Albert" + }, + { + "id": 1, + "name": "Viola Stokes" + }, + { + "id": 2, + "name": "Odom Wagner" + } + ], + "greeting": "Hello, Sanders Conway! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217675e942a338f9720", + "index": 411, + "guid": "682a8812-eaf7-4894-9afa-85959bfe23f7", + "isActive": false, + "balance": "$3,391.64", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "green", + "name": "Agnes Pearson", + "gender": "female", + "company": "RETRACK", + "email": "agnespearson@retrack.com", + "phone": "+1 (946) 489-2833", + "address": "795 Garland Court, Sussex, Guam, 948", + "about": "Velit amet amet ut nostrud. Esse consectetur exercitation cupidatat quis ea labore. In excepteur do veniam dolore amet esse fugiat mollit.\r\n", + "registered": "2015-12-02T12:06:29 +07:00", + "latitude": 8.548807, + "longitude": 119.612499, + "tags": [ + "veniam", + "laborum", + "nostrud", + "fugiat", + "enim", + "amet", + "aute" + ], + "friends": [ + { + "id": 0, + "name": "Dianna Leblanc" + }, + { + "id": 1, + "name": "Nora Perkins" + }, + { + "id": 2, + "name": "Melba Kramer" + } + ], + "greeting": "Hello, Agnes Pearson! You have 8 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302173b6dfc055ead5c56", + "index": 412, + "guid": "d4d39f5b-bdb3-41e7-8334-d7f7d57f984c", + "isActive": false, + "balance": "$3,783.51", + "picture": "http://placehold.it/32x32", + "age": 28, + "eyeColor": "blue", + "name": "Mary Gutierrez", + "gender": "female", + "company": "AQUACINE", + "email": "marygutierrez@aquacine.com", + "phone": "+1 (933) 484-3909", + "address": "703 Seton Place, Faxon, Minnesota, 4528", + "about": "Enim nostrud aute tempor ex et fugiat sint ex nulla do consectetur. Do ipsum Lorem et sit velit id laboris. Occaecat ad ad aliqua ullamco aliquip culpa cupidatat dolor duis exercitation esse aliquip deserunt. Amet nostrud est veniam commodo minim. Amet pariatur eiusmod sint nulla amet eu velit deserunt fugiat deserunt.\r\n", + "registered": "2018-03-11T11:11:15 +06:00", + "latitude": 17.164597, + "longitude": -97.343691, + "tags": [ + "aute", + "cupidatat", + "proident", + "eiusmod", + "ad", + "mollit", + "amet" + ], + "friends": [ + { + "id": 0, + "name": "Adeline Ayala" + }, + { + "id": 1, + "name": "Stokes Wilcox" + }, + { + "id": 2, + "name": "Noemi Bradley" + } + ], + "greeting": "Hello, Mary Gutierrez! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217c44decd5f4afef7b", + "index": 413, + "guid": "398b2ae1-6a1e-4780-b389-bb4179d5454a", + "isActive": true, + "balance": "$2,103.32", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "blue", + "name": "Sherri Joyce", + "gender": "female", + "company": "SPACEWAX", + "email": "sherrijoyce@spacewax.com", + "phone": "+1 (998) 509-2207", + "address": "920 Monroe Street, Herlong, Delaware, 7708", + "about": "Consectetur dolor amet incididunt dolor enim. Aute dolore minim ullamco reprehenderit ea nostrud est ad laboris duis nostrud tempor. Dolore laboris laborum mollit laborum ipsum tempor Lorem magna.\r\n", + "registered": "2017-11-02T07:02:13 +06:00", + "latitude": -33.105438, + "longitude": 4.530277, + "tags": [ + "pariatur", + "eu", + "tempor", + "pariatur", + "tempor", + "eiusmod", + "mollit" + ], + "friends": [ + { + "id": 0, + "name": "Daniel Leonard" + }, + { + "id": 1, + "name": "Arline Gillespie" + }, + { + "id": 2, + "name": "Jaclyn Villarreal" + } + ], + "greeting": "Hello, Sherri Joyce! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302174dd5231981e097ea", + "index": 414, + "guid": "38fc1b20-7ca7-4b0f-80ab-dfe9885629bc", + "isActive": true, + "balance": "$3,190.56", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "green", + "name": "Combs Miles", + "gender": "male", + "company": "PHORMULA", + "email": "combsmiles@phormula.com", + "phone": "+1 (884) 510-3614", + "address": "492 Sutton Street, Sandston, Kansas, 6337", + "about": "Proident eiusmod amet et nisi id Lorem sint non commodo laborum. Enim Lorem nulla tempor commodo. Enim ullamco do tempor ex occaecat irure Lorem ipsum ut. Sunt nisi nostrud consectetur ullamco qui ullamco. Eu aliqua fugiat minim culpa sunt irure Lorem dolore elit incididunt do.\r\n", + "registered": "2014-09-16T06:14:11 +06:00", + "latitude": -41.137849, + "longitude": 20.817612, + "tags": [ + "cupidatat", + "voluptate", + "consequat", + "voluptate", + "fugiat", + "ut", + "est" + ], + "friends": [ + { + "id": 0, + "name": "Gibbs Franks" + }, + { + "id": 1, + "name": "Franklin Evans" + }, + { + "id": 2, + "name": "Butler Rosa" + } + ], + "greeting": "Hello, Combs Miles! You have 7 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217a8cbffeb07e23fbb", + "index": 415, + "guid": "61751009-8f24-4b3b-aff6-f18a0151f7ef", + "isActive": true, + "balance": "$1,648.16", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "brown", + "name": "Mamie Hernandez", + "gender": "female", + "company": "TWIGGERY", + "email": "mamiehernandez@twiggery.com", + "phone": "+1 (908) 511-2204", + "address": "737 Nolans Lane, Brandermill, Washington, 1256", + "about": "Voluptate fugiat eu sunt irure reprehenderit est. Eiusmod aliquip amet ex in. Est consectetur nostrud ipsum mollit eiusmod nisi.\r\n", + "registered": "2016-03-14T11:12:04 +06:00", + "latitude": -71.311169, + "longitude": 36.1094, + "tags": [ + "nulla", + "tempor", + "pariatur", + "tempor", + "aliquip", + "veniam", + "incididunt" + ], + "friends": [ + { + "id": 0, + "name": "Genevieve Salinas" + }, + { + "id": 1, + "name": "Margery Aguirre" + }, + { + "id": 2, + "name": "Maria Pugh" + } + ], + "greeting": "Hello, Mamie Hernandez! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217138b5bbd76ebb4a3", + "index": 416, + "guid": "90404128-d2ae-4a8e-8fb2-dfc9aa46fa62", + "isActive": false, + "balance": "$2,737.77", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "brown", + "name": "Boyle House", + "gender": "male", + "company": "HOTCAKES", + "email": "boylehouse@hotcakes.com", + "phone": "+1 (933) 576-2721", + "address": "471 Cameron Court, Chloride, Oklahoma, 9449", + "about": "Dolore sunt labore ut culpa duis sit duis est irure ut qui veniam officia. Occaecat proident aliquip et non magna labore pariatur laborum laboris reprehenderit culpa ullamco consequat. Aliqua est do duis excepteur commodo occaecat velit. Non consequat amet consectetur aliquip excepteur officia proident anim excepteur. Exercitation velit laboris ipsum dolor reprehenderit.\r\n", + "registered": "2016-05-07T05:27:24 +06:00", + "latitude": 40.382352, + "longitude": -123.201371, + "tags": [ + "sint", + "nulla", + "eiusmod", + "ut", + "minim", + "sunt", + "reprehenderit" + ], + "friends": [ + { + "id": 0, + "name": "Marquez Hutchinson" + }, + { + "id": 1, + "name": "Alford Levine" + }, + { + "id": 2, + "name": "Orr Reilly" + } + ], + "greeting": "Hello, Boyle House! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021757d3a07d7ee009fd", + "index": 417, + "guid": "fc030f51-1ba7-44b5-aa59-49ffbb814f4d", + "isActive": false, + "balance": "$3,593.64", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "green", + "name": "Douglas Stark", + "gender": "male", + "company": "ORONOKO", + "email": "douglasstark@oronoko.com", + "phone": "+1 (874) 557-3499", + "address": "866 Lake Street, Sheatown, Kentucky, 7089", + "about": "Amet duis in in in ex aliquip sint magna qui nostrud. Ut occaecat sint nostrud qui ipsum sit aute deserunt excepteur. Enim ullamco ex ut ut ad elit.\r\n", + "registered": "2015-10-26T02:41:45 +06:00", + "latitude": 85.27556, + "longitude": -114.843292, + "tags": [ + "deserunt", + "cupidatat", + "laborum", + "deserunt", + "velit", + "dolore", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Smith Melendez" + }, + { + "id": 1, + "name": "Keisha Reeves" + }, + { + "id": 2, + "name": "Kelley Simmons" + } + ], + "greeting": "Hello, Douglas Stark! You have 8 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217bfa4a80b96df358a", + "index": 418, + "guid": "cdc39fa6-d6d2-4ba5-ba91-2c6fbb0a2f68", + "isActive": true, + "balance": "$2,790.20", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "blue", + "name": "Evangeline Jarvis", + "gender": "female", + "company": "PYRAMAX", + "email": "evangelinejarvis@pyramax.com", + "phone": "+1 (857) 568-2151", + "address": "108 Troy Avenue, Chapin, Alabama, 3881", + "about": "Incididunt elit minim eiusmod aliqua. Incididunt incididunt irure exercitation ut exercitation commodo. Aute eu do tempor nostrud tempor qui nisi duis dolore dolore anim ad. Esse do ex mollit ad aliqua anim duis do eu pariatur magna occaecat laboris laborum. Non commodo eiusmod ullamco deserunt dolor dolore et. Aute officia consequat reprehenderit sit exercitation eiusmod. Sunt ullamco occaecat labore aliquip veniam proident eiusmod eu.\r\n", + "registered": "2014-09-23T06:06:49 +06:00", + "latitude": -46.322642, + "longitude": -62.29805, + "tags": [ + "consequat", + "eu", + "nisi", + "est", + "voluptate", + "est", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "George Mcleod" + }, + { + "id": 1, + "name": "Ryan Kim" + }, + { + "id": 2, + "name": "Murray Lowery" + } + ], + "greeting": "Hello, Evangeline Jarvis! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302175c718faf71e2f72c", + "index": 419, + "guid": "b74a9ea2-0185-4b55-8373-1dcc61054bdd", + "isActive": true, + "balance": "$2,654.79", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "brown", + "name": "Therese Vasquez", + "gender": "female", + "company": "RODEOCEAN", + "email": "theresevasquez@rodeocean.com", + "phone": "+1 (943) 565-2382", + "address": "165 Broadway , Chemung, West Virginia, 5029", + "about": "Officia nisi cillum aute et culpa. Non minim id fugiat adipisicing deserunt id est qui adipisicing labore veniam ut ex sit. Sit qui cillum mollit mollit officia sunt cillum. Non irure sint commodo mollit consequat irure est aute dolore. Aute amet tempor tempor eu cupidatat voluptate cupidatat laboris et tempor nostrud ipsum. Minim dolore eiusmod est fugiat ipsum laborum do sit consequat eiusmod. Voluptate Lorem laboris dolore velit velit aliquip consectetur.\r\n", + "registered": "2014-09-07T04:48:07 +06:00", + "latitude": -18.570222, + "longitude": 86.790041, + "tags": [ + "minim", + "quis", + "ea", + "dolore", + "et", + "duis", + "aliquip" + ], + "friends": [ + { + "id": 0, + "name": "Tonya Wolf" + }, + { + "id": 1, + "name": "Chris Horn" + }, + { + "id": 2, + "name": "Madge Mcconnell" + } + ], + "greeting": "Hello, Therese Vasquez! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302171e7caa9e25a1bc6d", + "index": 420, + "guid": "abe122d7-6887-456a-9c1c-b5b4aed1d89a", + "isActive": false, + "balance": "$2,485.22", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "blue", + "name": "Garcia Walter", + "gender": "male", + "company": "COMTOURS", + "email": "garciawalter@comtours.com", + "phone": "+1 (931) 503-2690", + "address": "339 Tampa Court, Coleville, Ohio, 1057", + "about": "Reprehenderit nostrud laboris sint non occaecat ut ad nostrud pariatur non. Eu eiusmod incididunt laboris sint irure duis sunt id esse adipisicing deserunt quis. Amet nulla ea amet ut proident sit Lorem reprehenderit nostrud.\r\n", + "registered": "2017-01-29T02:21:05 +07:00", + "latitude": -48.058958, + "longitude": -4.439034, + "tags": [ + "aliquip", + "et", + "et", + "aute", + "eiusmod", + "nulla", + "commodo" + ], + "friends": [ + { + "id": 0, + "name": "Trina Chavez" + }, + { + "id": 1, + "name": "Pittman Rivera" + }, + { + "id": 2, + "name": "Underwood Oliver" + } + ], + "greeting": "Hello, Garcia Walter! You have 7 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302170ef05f933f6eda55", + "index": 421, + "guid": "83a9ceda-b9bb-4898-87ac-c9cdc676125f", + "isActive": false, + "balance": "$2,743.78", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "blue", + "name": "Rose Dunn", + "gender": "female", + "company": "KOFFEE", + "email": "rosedunn@koffee.com", + "phone": "+1 (909) 536-2492", + "address": "438 Clifford Place, Kingstowne, Connecticut, 9600", + "about": "Dolor pariatur laboris laborum esse id consequat. Est ipsum dolor laborum pariatur minim ullamco adipisicing enim veniam sit elit velit ea. Dolor sit tempor fugiat proident nisi deserunt eu do.\r\n", + "registered": "2015-09-23T02:56:26 +06:00", + "latitude": -14.123875, + "longitude": 94.120528, + "tags": [ + "aliqua", + "quis", + "esse", + "labore", + "incididunt", + "et", + "anim" + ], + "friends": [ + { + "id": 0, + "name": "Alvarado Dixon" + }, + { + "id": 1, + "name": "Amparo Mcdaniel" + }, + { + "id": 2, + "name": "Davenport Hanson" + } + ], + "greeting": "Hello, Rose Dunn! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217385fbef095dd7999", + "index": 422, + "guid": "c84d4374-e6f2-4999-af21-f20455b9a0dd", + "isActive": false, + "balance": "$3,705.82", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "green", + "name": "Wolf Whitaker", + "gender": "male", + "company": "BIOHAB", + "email": "wolfwhitaker@biohab.com", + "phone": "+1 (812) 414-3704", + "address": "136 Hendrickson Street, Warsaw, North Dakota, 7374", + "about": "Ipsum Lorem quis voluptate magna voluptate incididunt veniam in elit Lorem. Eu Lorem aute in aliquip ullamco id ad laborum deserunt magna elit proident dolore. Consectetur non ex ut nostrud fugiat aute cupidatat anim exercitation. Quis pariatur dolor nostrud pariatur nostrud aliquip fugiat veniam deserunt laboris.\r\n", + "registered": "2015-12-09T12:27:59 +07:00", + "latitude": 1.75302, + "longitude": 107.93223, + "tags": [ + "cupidatat", + "veniam", + "dolor", + "irure", + "sint", + "ex", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Janette Hooper" + }, + { + "id": 1, + "name": "Sue Hoffman" + }, + { + "id": 2, + "name": "Farley Hewitt" + } + ], + "greeting": "Hello, Wolf Whitaker! You have 5 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302173b56c81686c8f27d", + "index": 423, + "guid": "4dfbc72e-2d78-41ff-a337-2f9801edd762", + "isActive": false, + "balance": "$1,698.51", + "picture": "http://placehold.it/32x32", + "age": 37, + "eyeColor": "green", + "name": "Kemp Dalton", + "gender": "male", + "company": "RAMEON", + "email": "kempdalton@rameon.com", + "phone": "+1 (951) 490-2898", + "address": "389 Cypress Avenue, Nelson, Mississippi, 9752", + "about": "Culpa eu consequat quis officia eiusmod. Ad aliqua ea pariatur velit tempor ea ad deserunt exercitation sunt esse fugiat. Excepteur mollit et reprehenderit incididunt mollit ipsum aliquip esse Lorem. Laborum ad eu enim non consequat. Enim in magna occaecat et quis.\r\n", + "registered": "2018-01-03T02:24:39 +07:00", + "latitude": 2.061453, + "longitude": -101.728149, + "tags": [ + "exercitation", + "sit", + "quis", + "ex", + "Lorem", + "sint", + "et" + ], + "friends": [ + { + "id": 0, + "name": "Monica Guthrie" + }, + { + "id": 1, + "name": "Lea Kane" + }, + { + "id": 2, + "name": "Avery Boyer" + } + ], + "greeting": "Hello, Kemp Dalton! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302170aa9101fbc4c2c46", + "index": 424, + "guid": "48c51bd6-bef7-4230-b548-af87563dae65", + "isActive": false, + "balance": "$3,112.94", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Mclean Vaughn", + "gender": "male", + "company": "XINWARE", + "email": "mcleanvaughn@xinware.com", + "phone": "+1 (871) 514-3083", + "address": "507 Fenimore Street, Catherine, New York, 2432", + "about": "Id labore anim elit velit incididunt incididunt laborum enim est. Irure ut voluptate nostrud et ut quis labore exercitation cillum. Veniam deserunt cillum ut aute excepteur veniam laborum adipisicing nisi reprehenderit nisi enim dolor. Culpa reprehenderit exercitation velit qui exercitation eiusmod amet. Officia et deserunt tempor nulla consectetur laboris cupidatat mollit ut. Nulla Lorem sit sunt dolor velit ad consectetur magna qui nostrud occaecat. Ex nulla anim est consectetur exercitation enim.\r\n", + "registered": "2016-05-07T11:58:54 +06:00", + "latitude": 7.337384, + "longitude": -13.561226, + "tags": [ + "ipsum", + "velit", + "occaecat", + "non", + "nostrud", + "esse", + "duis" + ], + "friends": [ + { + "id": 0, + "name": "Randi Orr" + }, + { + "id": 1, + "name": "Larsen Callahan" + }, + { + "id": 2, + "name": "Bette Powell" + } + ], + "greeting": "Hello, Mclean Vaughn! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217cd78b9f811debd9c", + "index": 425, + "guid": "3f70f375-ba97-4711-9548-1c84c7616fa8", + "isActive": true, + "balance": "$3,799.88", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "blue", + "name": "Sexton Noble", + "gender": "male", + "company": "ACLIMA", + "email": "sextonnoble@aclima.com", + "phone": "+1 (845) 455-3631", + "address": "845 Love Lane, Dellview, Oregon, 2769", + "about": "Labore esse consectetur in culpa id officia cillum ullamco deserunt amet non ipsum. Irure veniam ad do sint qui ad mollit. Consectetur duis nostrud voluptate ea proident nostrud sunt amet fugiat. Commodo sunt mollit ea ad.\r\n", + "registered": "2017-01-12T06:03:38 +07:00", + "latitude": 74.017424, + "longitude": 178.244974, + "tags": [ + "occaecat", + "id", + "sit", + "aliquip", + "Lorem", + "reprehenderit", + "voluptate" + ], + "friends": [ + { + "id": 0, + "name": "Tamra Knowles" + }, + { + "id": 1, + "name": "Valeria Hubbard" + }, + { + "id": 2, + "name": "Gilliam Faulkner" + } + ], + "greeting": "Hello, Sexton Noble! You have 3 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302172c2ae6bbedb15690", + "index": 426, + "guid": "9e7f378a-94de-40c9-977c-8a18d8ea3bac", + "isActive": true, + "balance": "$2,750.90", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "blue", + "name": "Kirby Ellis", + "gender": "male", + "company": "ZIDOX", + "email": "kirbyellis@zidox.com", + "phone": "+1 (849) 405-2826", + "address": "856 Revere Place, Wells, New Jersey, 4235", + "about": "Adipisicing commodo culpa ut et fugiat laborum irure cillum id. Id id ut anim occaecat officia eiusmod minim et laboris minim eu proident consectetur voluptate. Irure incididunt quis minim dolor nostrud excepteur dolore sunt aute ut.\r\n", + "registered": "2017-12-06T03:22:20 +07:00", + "latitude": -62.433337, + "longitude": 21.581404, + "tags": [ + "laborum", + "aliqua", + "id", + "irure", + "deserunt", + "ullamco", + "quis" + ], + "friends": [ + { + "id": 0, + "name": "Olivia Dillard" + }, + { + "id": 1, + "name": "Adams Barnett" + }, + { + "id": 2, + "name": "Aguilar Savage" + } + ], + "greeting": "Hello, Kirby Ellis! You have 6 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217ab515c541f9bf552", + "index": 427, + "guid": "7faf6e2a-4641-4590-9982-93643c6c09e9", + "isActive": false, + "balance": "$1,370.20", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "green", + "name": "Lott Chaney", + "gender": "male", + "company": "OVERFORK", + "email": "lottchaney@overfork.com", + "phone": "+1 (813) 567-2344", + "address": "244 Putnam Avenue, Bowie, Montana, 7196", + "about": "Mollit duis ullamco nostrud non. Incididunt velit pariatur mollit labore incididunt aliqua adipisicing irure in aute. Velit laborum excepteur ea consectetur incididunt. Deserunt consectetur pariatur amet reprehenderit in. Deserunt consectetur dolor et aliquip cillum proident officia dolore. Laboris enim consectetur dolore nisi.\r\n", + "registered": "2017-02-06T06:43:06 +07:00", + "latitude": 50.157883, + "longitude": -45.001457, + "tags": [ + "consequat", + "adipisicing", + "culpa", + "cillum", + "eu", + "commodo", + "amet" + ], + "friends": [ + { + "id": 0, + "name": "Christian Palmer" + }, + { + "id": 1, + "name": "Kasey Hoover" + }, + { + "id": 2, + "name": "Leola Crawford" + } + ], + "greeting": "Hello, Lott Chaney! You have 1 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021783426c7f3feeb074", + "index": 428, + "guid": "2cb00ea3-8863-4e2b-b8b9-2044896a9b38", + "isActive": false, + "balance": "$2,459.73", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "blue", + "name": "Angel Whitehead", + "gender": "female", + "company": "COMTRAK", + "email": "angelwhitehead@comtrak.com", + "phone": "+1 (900) 575-3766", + "address": "302 Forbell Street, Rodanthe, Nevada, 5502", + "about": "Proident pariatur ut sit laborum irure deserunt sit eiusmod ad amet. Officia et consectetur est Lorem non consequat qui elit. Dolore duis proident duis aliquip. Enim amet pariatur esse exercitation dolore consectetur. Irure ad consequat in incididunt aliquip aute esse id in.\r\n", + "registered": "2015-08-17T04:29:37 +06:00", + "latitude": -73.735905, + "longitude": -28.469838, + "tags": [ + "enim", + "dolor", + "mollit", + "veniam", + "ea", + "sint", + "do" + ], + "friends": [ + { + "id": 0, + "name": "Cantu Beck" + }, + { + "id": 1, + "name": "Guy Ferrell" + }, + { + "id": 2, + "name": "Price Madden" + } + ], + "greeting": "Hello, Angel Whitehead! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217cf7048f6f7b06969", + "index": 429, + "guid": "000fc507-f2b7-4877-bebc-6f72d5097ed2", + "isActive": false, + "balance": "$2,628.53", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "brown", + "name": "Moody Munoz", + "gender": "male", + "company": "ZILLACON", + "email": "moodymunoz@zillacon.com", + "phone": "+1 (809) 513-3262", + "address": "102 Glen Street, Guilford, Colorado, 2901", + "about": "Incididunt eiusmod pariatur proident proident. Cupidatat labore proident proident dolore Lorem nulla et sunt occaecat pariatur irure. Eu velit ad tempor anim ut aliqua sunt duis.\r\n", + "registered": "2014-04-29T11:16:53 +06:00", + "latitude": -1.847949, + "longitude": 177.359652, + "tags": [ + "consectetur", + "exercitation", + "incididunt", + "quis", + "tempor", + "anim", + "officia" + ], + "friends": [ + { + "id": 0, + "name": "Iva Quinn" + }, + { + "id": 1, + "name": "Green Ballard" + }, + { + "id": 2, + "name": "Sheila Jacobs" + } + ], + "greeting": "Hello, Moody Munoz! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217b126d0d3a6af662e", + "index": 430, + "guid": "bff513ad-500f-4f84-8db3-905013590453", + "isActive": true, + "balance": "$3,139.91", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "blue", + "name": "Tia Campos", + "gender": "female", + "company": "ISODRIVE", + "email": "tiacampos@isodrive.com", + "phone": "+1 (818) 547-2519", + "address": "627 Raleigh Place, Silkworth, New Mexico, 6030", + "about": "Adipisicing commodo est eu pariatur officia excepteur. Magna excepteur tempor sit non mollit labore. Deserunt culpa eiusmod ea nisi adipisicing irure adipisicing sunt. Nostrud voluptate ut sint adipisicing commodo. Excepteur ullamco amet laborum incididunt consequat proident.\r\n", + "registered": "2016-01-12T11:21:11 +07:00", + "latitude": -70.237283, + "longitude": 69.775283, + "tags": [ + "proident", + "do", + "laborum", + "nostrud", + "est", + "proident", + "aliquip" + ], + "friends": [ + { + "id": 0, + "name": "Bryan Montoya" + }, + { + "id": 1, + "name": "Levine Powers" + }, + { + "id": 2, + "name": "Day Morgan" + } + ], + "greeting": "Hello, Tia Campos! You have 8 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021701cab547031d984a", + "index": 431, + "guid": "85dd62b8-47f7-4c09-b7c3-0ab7edb16b55", + "isActive": false, + "balance": "$2,435.88", + "picture": "http://placehold.it/32x32", + "age": 25, + "eyeColor": "green", + "name": "Wright Bullock", + "gender": "male", + "company": "ISOLOGICA", + "email": "wrightbullock@isologica.com", + "phone": "+1 (915) 453-3315", + "address": "764 Harrison Avenue, Witmer, Texas, 9835", + "about": "Laboris consectetur tempor tempor sunt qui culpa duis. Proident est cillum elit labore incididunt dolor quis sunt fugiat enim non adipisicing cillum esse. Eiusmod sunt esse adipisicing veniam ad aute. Eu cillum reprehenderit quis incididunt et dolor aliqua. Aute laborum enim irure labore cupidatat ut ullamco tempor sit ex ipsum in. Et non Lorem ipsum esse quis proident. Veniam et voluptate aute eiusmod mollit magna anim incididunt esse velit pariatur consectetur sunt.\r\n", + "registered": "2015-03-13T08:39:10 +06:00", + "latitude": -16.61077, + "longitude": -20.993083, + "tags": [ + "voluptate", + "labore", + "tempor", + "veniam", + "eiusmod", + "veniam", + "reprehenderit" + ], + "friends": [ + { + "id": 0, + "name": "Tracie Pace" + }, + { + "id": 1, + "name": "Robert Allen" + }, + { + "id": 2, + "name": "Velez Holden" + } + ], + "greeting": "Hello, Wright Bullock! You have 7 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302172552c71c94f7a67c", + "index": 432, + "guid": "1494ca25-9091-4c60-97f5-b12bd73ddec9", + "isActive": true, + "balance": "$2,464.14", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Farmer Hyde", + "gender": "male", + "company": "PRIMORDIA", + "email": "farmerhyde@primordia.com", + "phone": "+1 (986) 498-3332", + "address": "627 Jackson Place, Epworth, North Carolina, 7201", + "about": "Ex irure ea in proident non. Consectetur nostrud magna ea consectetur Lorem ea et elit officia est. Aute eu occaecat id exercitation laborum amet nisi fugiat do adipisicing tempor pariatur quis. Aliquip cillum qui id consectetur sit non labore amet dolore nostrud tempor quis est. Veniam sit elit do aliqua veniam ipsum dolore magna eiusmod fugiat. Officia magna ex quis cupidatat aute sint ullamco labore enim consequat magna. Tempor enim in ipsum deserunt commodo nostrud quis occaecat id.\r\n", + "registered": "2016-08-15T09:00:55 +06:00", + "latitude": -20.843656, + "longitude": -92.24089, + "tags": [ + "amet", + "aute", + "consectetur", + "amet", + "nostrud", + "ut", + "ex" + ], + "friends": [ + { + "id": 0, + "name": "Guthrie Leon" + }, + { + "id": 1, + "name": "Brooke Pennington" + }, + { + "id": 2, + "name": "Long Banks" + } + ], + "greeting": "Hello, Farmer Hyde! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217229c3f40e30264e3", + "index": 433, + "guid": "35a6d80b-d77f-48c9-bcaf-3dcc49dcaaff", + "isActive": true, + "balance": "$3,687.09", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "green", + "name": "Debra Cunningham", + "gender": "female", + "company": "ENTROFLEX", + "email": "debracunningham@entroflex.com", + "phone": "+1 (912) 509-3242", + "address": "248 Butler Place, Elrama, Nebraska, 5530", + "about": "Dolore irure pariatur dolor tempor commodo. Est aliquip velit non consequat laboris. Lorem eu tempor exercitation eiusmod nostrud dolore voluptate esse. Mollit sint aliquip do cillum mollit magna adipisicing voluptate irure ut voluptate voluptate labore consectetur. Officia cupidatat adipisicing velit amet non aute irure aute reprehenderit elit reprehenderit amet sint.\r\n", + "registered": "2017-02-11T04:34:07 +07:00", + "latitude": -88.263746, + "longitude": -22.886504, + "tags": [ + "pariatur", + "et", + "excepteur", + "minim", + "reprehenderit", + "consequat", + "sint" + ], + "friends": [ + { + "id": 0, + "name": "Bond Wooten" + }, + { + "id": 1, + "name": "Lena Goodwin" + }, + { + "id": 2, + "name": "Whitfield Cline" + } + ], + "greeting": "Hello, Debra Cunningham! You have 1 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021724fc3b0e63c924ed", + "index": 434, + "guid": "10cdb955-db78-43e7-8209-8b2bd39b0daa", + "isActive": true, + "balance": "$2,340.01", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "green", + "name": "Mcmahon Calhoun", + "gender": "male", + "company": "PARLEYNET", + "email": "mcmahoncalhoun@parleynet.com", + "phone": "+1 (862) 536-2738", + "address": "653 Barlow Drive, Thynedale, Tennessee, 4567", + "about": "Dolor proident nisi tempor id proident ad aliqua dolore dolore. Elit consectetur tempor occaecat irure amet deserunt duis ad ad. Pariatur exercitation qui exercitation exercitation excepteur excepteur consequat ad tempor esse tempor id deserunt. Magna anim adipisicing quis nisi culpa laboris nisi ad tempor et elit. Et proident consectetur enim adipisicing laborum.\r\n", + "registered": "2014-07-23T09:28:33 +06:00", + "latitude": 38.263456, + "longitude": 115.16192, + "tags": [ + "cupidatat", + "dolor", + "velit", + "nisi", + "consectetur", + "labore", + "velit" + ], + "friends": [ + { + "id": 0, + "name": "Guerra Franco" + }, + { + "id": 1, + "name": "Hilda Martinez" + }, + { + "id": 2, + "name": "Cantrell Smith" + } + ], + "greeting": "Hello, Mcmahon Calhoun! You have 5 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217d841516d0c9d4936", + "index": 435, + "guid": "29d5dda6-cefc-4fa1-984a-bf1ea1f54099", + "isActive": true, + "balance": "$3,212.54", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "blue", + "name": "Francine Burnett", + "gender": "female", + "company": "VOIPA", + "email": "francineburnett@voipa.com", + "phone": "+1 (980) 549-3743", + "address": "983 Hubbard Place, Grill, Utah, 9688", + "about": "Non quis fugiat non ut et esse enim minim ad quis ea laborum laboris. Quis elit irure laborum ut aliqua in deserunt fugiat in sunt exercitation. Veniam tempor non anim ipsum veniam officia consequat Lorem. In non ea elit dolore. Voluptate aute duis culpa et deserunt. Voluptate quis quis cillum quis ut nostrud qui sunt aliquip sunt occaecat et reprehenderit aute. Dolor in sit laboris excepteur voluptate fugiat deserunt cillum.\r\n", + "registered": "2017-11-20T03:40:55 +07:00", + "latitude": 6.729517, + "longitude": 13.640853, + "tags": [ + "voluptate", + "ea", + "quis", + "ut", + "occaecat", + "sit", + "exercitation" + ], + "friends": [ + { + "id": 0, + "name": "Ramsey Schultz" + }, + { + "id": 1, + "name": "Kerri Maxwell" + }, + { + "id": 2, + "name": "Molly Reed" + } + ], + "greeting": "Hello, Francine Burnett! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217b14ccc7008087d29", + "index": 436, + "guid": "1ea016a2-5ef3-4b0e-a615-518e818e4e62", + "isActive": true, + "balance": "$2,088.94", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "brown", + "name": "Nolan Mckee", + "gender": "male", + "company": "GLOBOIL", + "email": "nolanmckee@globoil.com", + "phone": "+1 (971) 505-3273", + "address": "399 Ocean Parkway, Smock, Marshall Islands, 145", + "about": "Excepteur officia qui ipsum est in duis sit occaecat ad deserunt. Velit aliqua duis dolor aute labore velit commodo consequat elit ex ut. Mollit id magna anim sint aliquip anim cillum.\r\n", + "registered": "2016-01-05T02:17:11 +07:00", + "latitude": -65.231126, + "longitude": -138.09795, + "tags": [ + "veniam", + "proident", + "enim", + "magna", + "dolore", + "velit", + "ipsum" + ], + "friends": [ + { + "id": 0, + "name": "Schultz Richardson" + }, + { + "id": 1, + "name": "Noble Blackburn" + }, + { + "id": 2, + "name": "Nunez Blevins" + } + ], + "greeting": "Hello, Nolan Mckee! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021720631ea8d8b21d89", + "index": 437, + "guid": "b0e7f6d3-ef41-4b99-b875-aa2c1501ee37", + "isActive": false, + "balance": "$3,995.95", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "green", + "name": "Talley Alvarez", + "gender": "male", + "company": "DEEPENDS", + "email": "talleyalvarez@deepends.com", + "phone": "+1 (931) 481-2255", + "address": "922 Polhemus Place, Alderpoint, Georgia, 3814", + "about": "Nostrud officia culpa tempor et. Id irure ut nulla aliquip esse id irure qui est sunt. Cillum voluptate fugiat tempor occaecat ut. Quis esse exercitation sit anim magna tempor eiusmod proident.\r\n", + "registered": "2014-10-25T04:04:10 +06:00", + "latitude": -70.955294, + "longitude": 32.033586, + "tags": [ + "labore", + "qui", + "irure", + "nostrud", + "aute", + "duis", + "ullamco" + ], + "friends": [ + { + "id": 0, + "name": "Monroe Fuller" + }, + { + "id": 1, + "name": "Celia Hahn" + }, + { + "id": 2, + "name": "Knapp Holmes" + } + ], + "greeting": "Hello, Talley Alvarez! You have 9 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217e02b3ddf8af0e2ca", + "index": 438, + "guid": "a3986362-9980-414a-8ba5-91ebef779ac8", + "isActive": true, + "balance": "$2,650.23", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "brown", + "name": "Wilkins Stevens", + "gender": "male", + "company": "JOVIOLD", + "email": "wilkinsstevens@joviold.com", + "phone": "+1 (823) 563-3356", + "address": "110 Glendale Court, Barstow, Massachusetts, 8242", + "about": "Deserunt proident occaecat tempor voluptate do officia duis. Dolore mollit quis dolore nulla eiusmod consequat. Enim elit aute eiusmod culpa cupidatat do cupidatat esse cillum velit nisi laboris. Laboris ex elit do magna. Non reprehenderit ullamco cupidatat quis. Excepteur reprehenderit aute aute sint magna Lorem exercitation deserunt excepteur.\r\n", + "registered": "2014-04-23T05:42:39 +06:00", + "latitude": 34.430435, + "longitude": -34.217275, + "tags": [ + "et", + "ex", + "quis", + "enim", + "excepteur", + "irure", + "exercitation" + ], + "friends": [ + { + "id": 0, + "name": "Sheree York" + }, + { + "id": 1, + "name": "Sasha Morse" + }, + { + "id": 2, + "name": "Cecile Morton" + } + ], + "greeting": "Hello, Wilkins Stevens! You have 8 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217c71c881a0f8f3cc3", + "index": 439, + "guid": "a72de897-1689-48a6-a416-8bb50122c864", + "isActive": true, + "balance": "$2,169.26", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "blue", + "name": "Noelle Herman", + "gender": "female", + "company": "NEXGENE", + "email": "noelleherman@nexgene.com", + "phone": "+1 (896) 484-2787", + "address": "670 Conduit Boulevard, Stevens, Arizona, 2017", + "about": "Proident voluptate enim aliquip commodo. Deserunt deserunt reprehenderit in ad magna ipsum excepteur pariatur. Nisi non magna nulla irure consequat pariatur eu laboris. Sint eiusmod quis ullamco culpa aliqua non Lorem elit et sit qui. Labore magna tempor excepteur amet sint fugiat dolore ad.\r\n", + "registered": "2017-03-31T01:54:37 +06:00", + "latitude": -5.132831, + "longitude": 61.854018, + "tags": [ + "ut", + "cupidatat", + "veniam", + "id", + "est", + "nulla", + "Lorem" + ], + "friends": [ + { + "id": 0, + "name": "Gill White" + }, + { + "id": 1, + "name": "Marian Hopkins" + }, + { + "id": 2, + "name": "Knight Burris" + } + ], + "greeting": "Hello, Noelle Herman! You have 10 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217fc548b00db9e8cfa", + "index": 440, + "guid": "d35c05b1-4b54-48d2-8d67-646adb43e574", + "isActive": true, + "balance": "$3,198.66", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "blue", + "name": "Joyner Robinson", + "gender": "male", + "company": "DIGIPRINT", + "email": "joynerrobinson@digiprint.com", + "phone": "+1 (814) 536-2030", + "address": "759 Vandervoort Avenue, Selma, District Of Columbia, 1150", + "about": "Officia et nostrud sit commodo aliqua adipisicing non dolore nisi deserunt. Ea tempor magna mollit do velit aliqua dolor id ullamco eu ipsum excepteur occaecat eiusmod. Lorem in magna nulla officia laboris ad cupidatat enim id. Cupidatat ea ex nisi aute aliquip duis est non. Eu proident ut enim elit enim. Ea non veniam amet incididunt velit velit reprehenderit aute nostrud deserunt.\r\n", + "registered": "2014-06-27T08:36:06 +06:00", + "latitude": -70.325133, + "longitude": -93.605695, + "tags": [ + "ut", + "elit", + "nulla", + "ipsum", + "nisi", + "consectetur", + "exercitation" + ], + "friends": [ + { + "id": 0, + "name": "Hayes Torres" + }, + { + "id": 1, + "name": "Karin Berger" + }, + { + "id": 2, + "name": "Stafford Stanley" + } + ], + "greeting": "Hello, Joyner Robinson! You have 9 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021743d786b65c59eeae", + "index": 441, + "guid": "73e482dd-dd5a-47b7-aad0-f17d84b24980", + "isActive": false, + "balance": "$2,078.89", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "green", + "name": "Johnston Price", + "gender": "male", + "company": "CENTICE", + "email": "johnstonprice@centice.com", + "phone": "+1 (872) 476-3916", + "address": "790 Fane Court, Munjor, Virgin Islands, 7662", + "about": "Pariatur eu fugiat aute aute adipisicing eiusmod excepteur do incididunt incididunt enim deserunt cupidatat laborum. Voluptate velit reprehenderit est ut non labore consectetur. Sint officia in qui elit Lorem anim officia magna tempor.\r\n", + "registered": "2015-01-31T12:25:59 +07:00", + "latitude": -79.830668, + "longitude": 6.071111, + "tags": [ + "reprehenderit", + "sint", + "velit", + "reprehenderit", + "do", + "eiusmod", + "laboris" + ], + "friends": [ + { + "id": 0, + "name": "Snow Douglas" + }, + { + "id": 1, + "name": "Rowe Saunders" + }, + { + "id": 2, + "name": "Jeanie Mccormick" + } + ], + "greeting": "Hello, Johnston Price! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217e449d1f6380faf6a", + "index": 442, + "guid": "fd8e6d2d-eac3-4773-aba7-a235941a97a0", + "isActive": false, + "balance": "$3,152.68", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "brown", + "name": "Vanessa Branch", + "gender": "female", + "company": "EXOVENT", + "email": "vanessabranch@exovent.com", + "phone": "+1 (880) 449-2338", + "address": "261 Banker Street, Williams, South Dakota, 7712", + "about": "Veniam ipsum anim duis aute et do ex irure velit laborum eiusmod fugiat anim ex. Ex consectetur est ullamco dolor eu in labore sunt dolore elit irure id anim veniam. Deserunt deserunt pariatur magna adipisicing irure Lorem laboris fugiat ex sunt proident duis ullamco mollit. Laboris magna incididunt commodo nostrud do sunt dolor est culpa laborum sunt. Qui ad culpa dolor est deserunt id. Sint proident nulla Lorem esse commodo qui deserunt fugiat incididunt ad Lorem.\r\n", + "registered": "2017-07-30T07:07:11 +06:00", + "latitude": -6.435122, + "longitude": -112.502097, + "tags": [ + "magna", + "ipsum", + "aliquip", + "sunt", + "sunt", + "ullamco", + "ut" + ], + "friends": [ + { + "id": 0, + "name": "Richmond Bass" + }, + { + "id": 1, + "name": "Eliza Lewis" + }, + { + "id": 2, + "name": "Ava Wiggins" + } + ], + "greeting": "Hello, Vanessa Branch! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302176e294b28688183a7", + "index": 443, + "guid": "26c3b614-e304-4895-b704-70c9491bd41c", + "isActive": true, + "balance": "$1,747.86", + "picture": "http://placehold.it/32x32", + "age": 35, + "eyeColor": "brown", + "name": "Yesenia Cooke", + "gender": "female", + "company": "GEEKUS", + "email": "yeseniacooke@geekus.com", + "phone": "+1 (918) 427-2379", + "address": "939 Indiana Place, Lund, Virginia, 9719", + "about": "Esse exercitation irure et ullamco consequat anim sint. Proident incididunt adipisicing nostrud aliqua ipsum officia in et dolore est in laborum fugiat et. Ea do incididunt cillum incididunt eu nisi nostrud do. Commodo nisi Lorem consectetur nisi reprehenderit exercitation. Non est deserunt deserunt sint. Aliqua eiusmod laboris sit consequat ipsum ut laboris cupidatat magna. Eu occaecat tempor ex exercitation eu mollit incididunt labore.\r\n", + "registered": "2017-11-14T12:37:18 +07:00", + "latitude": -8.644999, + "longitude": -122.457676, + "tags": [ + "sint", + "mollit", + "et", + "enim", + "ut", + "incididunt", + "Lorem" + ], + "friends": [ + { + "id": 0, + "name": "Mclaughlin Vazquez" + }, + { + "id": 1, + "name": "Gabriela Paul" + }, + { + "id": 2, + "name": "Ratliff Roberson" + } + ], + "greeting": "Hello, Yesenia Cooke! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab302173eb057df1ff617af", + "index": 444, + "guid": "163366bb-231f-4207-bc83-9e2a49d230c1", + "isActive": false, + "balance": "$3,187.05", + "picture": "http://placehold.it/32x32", + "age": 32, + "eyeColor": "brown", + "name": "Rasmussen Oneil", + "gender": "male", + "company": "XIIX", + "email": "rasmussenoneil@xiix.com", + "phone": "+1 (976) 462-3682", + "address": "279 Gunnison Court, Unionville, Michigan, 5919", + "about": "Qui voluptate do est nisi mollit cupidatat cillum ad proident ipsum. Excepteur commodo sint fugiat aliquip aliquip minim. Enim id fugiat voluptate Lorem aliquip commodo et in aute ea velit labore. Sit eiusmod nulla adipisicing irure do ex consequat quis et. Deserunt elit qui commodo do duis sint.\r\n", + "registered": "2014-04-20T07:01:28 +06:00", + "latitude": -53.504213, + "longitude": -58.804078, + "tags": [ + "nulla", + "ipsum", + "cupidatat", + "consectetur", + "amet", + "adipisicing", + "dolor" + ], + "friends": [ + { + "id": 0, + "name": "Ana Holloway" + }, + { + "id": 1, + "name": "Carol Stephens" + }, + { + "id": 2, + "name": "Tami Page" + } + ], + "greeting": "Hello, Rasmussen Oneil! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302179f46569a5933a2fc", + "index": 445, + "guid": "055f7d09-d755-4474-8b69-2ee229bf4182", + "isActive": true, + "balance": "$1,272.03", + "picture": "http://placehold.it/32x32", + "age": 34, + "eyeColor": "green", + "name": "Robbins Houston", + "gender": "male", + "company": "GAPTEC", + "email": "robbinshouston@gaptec.com", + "phone": "+1 (977) 545-3449", + "address": "139 Kosciusko Street, Bradenville, Northern Mariana Islands, 4854", + "about": "Aliqua nulla consequat voluptate in minim incididunt. Deserunt dolor anim ipsum nisi et. Elit incididunt qui labore quis pariatur id. Do eu aliquip amet occaecat et pariatur nulla velit deserunt eiusmod ut ea. Aliquip labore aute nostrud tempor esse nisi minim anim exercitation mollit. Sit Lorem cupidatat ad enim.\r\n", + "registered": "2017-02-19T11:07:29 +07:00", + "latitude": 3.463512, + "longitude": -150.826765, + "tags": [ + "ullamco", + "amet", + "dolore", + "culpa", + "ullamco", + "amet", + "non" + ], + "friends": [ + { + "id": 0, + "name": "Knox Mason" + }, + { + "id": 1, + "name": "Yvette Dejesus" + }, + { + "id": 2, + "name": "Alice Delgado" + } + ], + "greeting": "Hello, Robbins Houston! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302178231f8bb56d9852e", + "index": 446, + "guid": "91b8dcb0-080f-488c-912e-e7b19a21cc28", + "isActive": true, + "balance": "$3,631.52", + "picture": "http://placehold.it/32x32", + "age": 38, + "eyeColor": "blue", + "name": "Kim Le", + "gender": "male", + "company": "POLARAX", + "email": "kimle@polarax.com", + "phone": "+1 (946) 482-2618", + "address": "598 Elliott Walk, Abrams, Illinois, 5783", + "about": "Excepteur ea fugiat quis ad ea enim sint id. Quis eiusmod non anim exercitation do est velit deserunt amet ex eu in. Irure duis labore dolore proident voluptate Lorem quis sit non sunt officia. Quis commodo dolor adipisicing nisi aute eu aute culpa aliquip tempor et commodo ut. Sint sit proident in ex duis consequat eu occaecat nisi pariatur occaecat.\r\n", + "registered": "2016-11-23T07:58:14 +07:00", + "latitude": -70.954865, + "longitude": 143.057346, + "tags": [ + "nisi", + "reprehenderit", + "cupidatat", + "id", + "dolore", + "voluptate", + "ut" + ], + "friends": [ + { + "id": 0, + "name": "Consuelo Mcmillan" + }, + { + "id": 1, + "name": "Esperanza Henderson" + }, + { + "id": 2, + "name": "Roxanne Spence" + } + ], + "greeting": "Hello, Kim Le! You have 7 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021791037c9de243c7f7", + "index": 447, + "guid": "81ae5d9a-2427-4828-8495-30612a54bc71", + "isActive": true, + "balance": "$3,257.48", + "picture": "http://placehold.it/32x32", + "age": 27, + "eyeColor": "brown", + "name": "Savannah Scott", + "gender": "female", + "company": "BOVIS", + "email": "savannahscott@bovis.com", + "phone": "+1 (970) 556-3093", + "address": "909 Tiffany Place, Orick, Wisconsin, 3540", + "about": "Ea officia veniam do consectetur amet magna adipisicing ex. Exercitation nulla culpa aute dolor duis irure occaecat. Reprehenderit reprehenderit tempor tempor aliquip mollit ea esse consectetur anim consequat voluptate deserunt ullamco ipsum. Laboris enim ipsum veniam ut excepteur irure pariatur et ut adipisicing. Laborum minim aliqua commodo occaecat aute in sint irure et eu. Est cillum ipsum enim excepteur commodo quis. Ut adipisicing officia laboris amet et anim sunt enim velit enim aute cillum duis.\r\n", + "registered": "2015-06-06T12:59:05 +06:00", + "latitude": 75.014737, + "longitude": -127.04704, + "tags": [ + "anim", + "ea", + "occaecat", + "amet", + "ex", + "culpa", + "cillum" + ], + "friends": [ + { + "id": 0, + "name": "Lola Kelley" + }, + { + "id": 1, + "name": "Cherry Silva" + }, + { + "id": 2, + "name": "Conner Hawkins" + } + ], + "greeting": "Hello, Savannah Scott! You have 3 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab302171d67f1c9b350920c", + "index": 448, + "guid": "afca3426-d7bf-4069-afd8-747ed7be8d23", + "isActive": true, + "balance": "$1,994.22", + "picture": "http://placehold.it/32x32", + "age": 22, + "eyeColor": "green", + "name": "Maynard Kinney", + "gender": "male", + "company": "DIGIFAD", + "email": "maynardkinney@digifad.com", + "phone": "+1 (997) 544-3390", + "address": "267 Perry Place, Fairmount, Idaho, 212", + "about": "Elit amet id nostrud minim quis dolore est esse elit duis pariatur. Incididunt magna aliquip amet et quis nulla reprehenderit. Sunt ullamco nisi sint enim sunt deserunt id excepteur sit laboris laborum.\r\n", + "registered": "2016-01-28T04:50:04 +07:00", + "latitude": 27.745376, + "longitude": 167.909189, + "tags": [ + "excepteur", + "elit", + "et", + "eu", + "nulla", + "consequat", + "voluptate" + ], + "friends": [ + { + "id": 0, + "name": "Lawanda Jefferson" + }, + { + "id": 1, + "name": "Gonzalez Beasley" + }, + { + "id": 2, + "name": "Sims Hickman" + } + ], + "greeting": "Hello, Maynard Kinney! You have 2 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab3021749d8341540937ed1", + "index": 449, + "guid": "e9d853f0-81c1-49d5-ae77-31b50ac9e3aa", + "isActive": true, + "balance": "$1,086.97", + "picture": "http://placehold.it/32x32", + "age": 24, + "eyeColor": "green", + "name": "Josie Cleveland", + "gender": "female", + "company": "QUAILCOM", + "email": "josiecleveland@quailcom.com", + "phone": "+1 (967) 448-2088", + "address": "142 Fleet Walk, Brooktrails, New Hampshire, 5123", + "about": "Minim nisi et laborum in non eiusmod officia eiusmod et occaecat culpa minim incididunt. Non aute dolor duis non consectetur non officia magna Lorem. Aliqua laborum velit Lorem proident pariatur cupidatat deserunt. Sunt elit esse consectetur ad dolor cupidatat aliquip incididunt est nisi exercitation ut. Adipisicing esse excepteur esse est labore dolor consequat fugiat non.\r\n", + "registered": "2014-11-19T07:44:57 +07:00", + "latitude": 39.963567, + "longitude": -89.73986, + "tags": [ + "sunt", + "ea", + "proident", + "veniam", + "adipisicing", + "occaecat", + "esse" + ], + "friends": [ + { + "id": 0, + "name": "Soto Humphrey" + }, + { + "id": 1, + "name": "Lee Frost" + }, + { + "id": 2, + "name": "Roman Cabrera" + } + ], + "greeting": "Hello, Josie Cleveland! You have 4 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217152b59918d230f93", + "index": 450, + "guid": "97f917ff-4484-4369-b8d7-528c96f8c272", + "isActive": true, + "balance": "$1,806.57", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "green", + "name": "Roy Waters", + "gender": "male", + "company": "NURALI", + "email": "roywaters@nurali.com", + "phone": "+1 (874) 597-3110", + "address": "484 India Street, Rew, South Carolina, 3522", + "about": "Sunt ea proident do nisi ad tempor dolore ad adipisicing Lorem cupidatat. Ea irure nisi laborum commodo nisi deserunt commodo fugiat incididunt minim. Irure reprehenderit ea culpa tempor elit Lorem cillum cillum consequat cillum nostrud. Exercitation officia mollit proident est magna fugiat aliquip.\r\n", + "registered": "2014-08-17T01:05:12 +06:00", + "latitude": -26.3518, + "longitude": -5.4361, + "tags": [ + "voluptate", + "labore", + "laborum", + "veniam", + "incididunt", + "sit", + "adipisicing" + ], + "friends": [ + { + "id": 0, + "name": "Blackwell Ray" + }, + { + "id": 1, + "name": "Maggie Johns" + }, + { + "id": 2, + "name": "Kristen Vinson" + } + ], + "greeting": "Hello, Roy Waters! You have 10 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab3021746899148e86f8b95", + "index": 451, + "guid": "c0fdc4ec-924f-4761-8480-e844da412733", + "isActive": false, + "balance": "$2,781.33", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "green", + "name": "Alfreda Moon", + "gender": "female", + "company": "COMFIRM", + "email": "alfredamoon@comfirm.com", + "phone": "+1 (914) 512-2623", + "address": "115 Highlawn Avenue, Lindisfarne, Iowa, 8466", + "about": "Tempor do commodo officia sint aliqua proident laborum exercitation. Deserunt et anim ea occaecat consectetur ullamco in elit in veniam nisi adipisicing consectetur. Officia exercitation proident dolore magna irure. Velit Lorem non nulla velit. Minim nulla quis ea sunt.\r\n", + "registered": "2017-10-21T12:49:46 +06:00", + "latitude": 63.08669, + "longitude": 4.824003, + "tags": [ + "pariatur", + "commodo", + "nulla", + "occaecat", + "veniam", + "occaecat", + "labore" + ], + "friends": [ + { + "id": 0, + "name": "Wiggins Delacruz" + }, + { + "id": 1, + "name": "Moore Chase" + }, + { + "id": 2, + "name": "Kirsten Woods" + } + ], + "greeting": "Hello, Alfreda Moon! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302176c98aea4e93d8b7e", + "index": 452, + "guid": "ede34f4b-871b-4f71-a38d-d49b1588da07", + "isActive": false, + "balance": "$3,301.68", + "picture": "http://placehold.it/32x32", + "age": 29, + "eyeColor": "green", + "name": "Rosalind Booker", + "gender": "female", + "company": "ZAGGLE", + "email": "rosalindbooker@zaggle.com", + "phone": "+1 (911) 456-2072", + "address": "306 Broome Street, Conway, California, 940", + "about": "Eiusmod velit elit enim reprehenderit deserunt consectetur aliqua laborum. Culpa eiusmod velit est est est est ut. Dolore adipisicing qui consectetur consequat non proident ullamco.\r\n", + "registered": "2016-11-28T08:10:14 +07:00", + "latitude": 19.976047, + "longitude": -36.205296, + "tags": [ + "reprehenderit", + "aliqua", + "anim", + "et", + "adipisicing", + "irure", + "incididunt" + ], + "friends": [ + { + "id": 0, + "name": "Gutierrez Vargas" + }, + { + "id": 1, + "name": "Krystal Battle" + }, + { + "id": 2, + "name": "Kara Beard" + } + ], + "greeting": "Hello, Rosalind Booker! You have 2 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217e1de52efa06888d0", + "index": 453, + "guid": "c9aeeda3-248b-40d9-8660-e06eb3f5b3bc", + "isActive": true, + "balance": "$1,265.13", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "brown", + "name": "Warner Horne", + "gender": "male", + "company": "BULLJUICE", + "email": "warnerhorne@bulljuice.com", + "phone": "+1 (965) 427-3508", + "address": "583 Frank Court, Wyano, Wyoming, 9383", + "about": "Laboris labore exercitation occaecat pariatur mollit id sint proident fugiat ea adipisicing reprehenderit aliqua. Magna consequat cillum laboris sint Lorem nulla do aliquip culpa proident nostrud aliquip est. Velit minim dolore voluptate duis tempor commodo nisi incididunt irure nisi commodo nostrud. Aute voluptate laborum fugiat irure minim velit ea irure ipsum. Ipsum Lorem et aliquip eu amet aliqua deserunt.\r\n", + "registered": "2014-08-16T01:37:58 +06:00", + "latitude": 10.279365, + "longitude": 78.629648, + "tags": [ + "anim", + "aliqua", + "et", + "Lorem", + "fugiat", + "id", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Nelson Flores" + }, + { + "id": 1, + "name": "Scott Cherry" + }, + { + "id": 2, + "name": "Adele Conner" + } + ], + "greeting": "Hello, Warner Horne! You have 1 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab302170f6c45eb4f7fbccf", + "index": 454, + "guid": "b412a25e-25f8-4971-87bf-5d1d0b2ed781", + "isActive": false, + "balance": "$3,888.00", + "picture": "http://placehold.it/32x32", + "age": 20, + "eyeColor": "green", + "name": "Annette Mcgee", + "gender": "female", + "company": "APEXTRI", + "email": "annettemcgee@apextri.com", + "phone": "+1 (951) 537-3196", + "address": "220 Roder Avenue, Sisquoc, Maryland, 1961", + "about": "Aute occaecat consectetur velit consectetur. Incididunt ad officia officia deserunt anim deserunt magna consectetur nostrud. Elit quis adipisicing duis irure anim sint anim tempor dolore. Enim sunt laboris fugiat minim mollit aliquip Lorem commodo labore consequat dolore. Fugiat dolor eiusmod aliqua duis do dolore nostrud officia. Labore magna fugiat exercitation eiusmod sint elit veniam labore nostrud Lorem exercitation qui proident. Sint officia cillum aliquip aliquip nostrud.\r\n", + "registered": "2016-02-16T06:16:15 +07:00", + "latitude": 69.591048, + "longitude": -119.520096, + "tags": [ + "deserunt", + "reprehenderit", + "non", + "veniam", + "minim", + "pariatur", + "commodo" + ], + "friends": [ + { + "id": 0, + "name": "Alyce Carrillo" + }, + { + "id": 1, + "name": "Moreno Snyder" + }, + { + "id": 2, + "name": "Emilia Rollins" + } + ], + "greeting": "Hello, Annette Mcgee! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab3021723804c42f32fd9c9", + "index": 455, + "guid": "6b424c5a-f916-45a5-ace3-2877e00a772c", + "isActive": false, + "balance": "$1,568.46", + "picture": "http://placehold.it/32x32", + "age": 40, + "eyeColor": "brown", + "name": "Mcfadden Hayden", + "gender": "male", + "company": "XTH", + "email": "mcfaddenhayden@xth.com", + "phone": "+1 (921) 512-3993", + "address": "533 Stillwell Place, Eagleville, Louisiana, 9551", + "about": "Officia adipisicing ad esse cupidatat ipsum ut deserunt labore exercitation nostrud dolor magna velit. Do occaecat in commodo dolore. Laboris culpa aliquip anim Lorem reprehenderit cillum. Deserunt mollit consectetur qui eiusmod ea exercitation labore culpa anim consequat commodo ut laborum qui. Consequat esse ullamco cupidatat dolore ipsum laboris labore aute est labore non ad. Officia cillum non dolore consequat aliqua consectetur dolor sint deserunt dolor ut dolore aliquip. Ullamco exercitation et amet cupidatat laborum sit.\r\n", + "registered": "2014-03-27T11:54:22 +06:00", + "latitude": -29.615173, + "longitude": -77.77801, + "tags": [ + "aliquip", + "commodo", + "proident", + "veniam", + "deserunt", + "dolor", + "proident" + ], + "friends": [ + { + "id": 0, + "name": "Dianne Merritt" + }, + { + "id": 1, + "name": "Lourdes Puckett" + }, + { + "id": 2, + "name": "Kristine Kidd" + } + ], + "greeting": "Hello, Mcfadden Hayden! You have 1 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217febf31e16224bcc3", + "index": 456, + "guid": "91925cc0-379b-41b7-9197-f16e082e83d6", + "isActive": false, + "balance": "$3,147.47", + "picture": "http://placehold.it/32x32", + "age": 30, + "eyeColor": "green", + "name": "Matilda Mckinney", + "gender": "female", + "company": "SUSTENZA", + "email": "matildamckinney@sustenza.com", + "phone": "+1 (890) 566-2383", + "address": "945 Bedford Avenue, Sanders, Federated States Of Micronesia, 4414", + "about": "Sint velit do minim non officia sunt laboris do commodo cupidatat dolor ex Lorem adipisicing. Ea est adipisicing eu eu id ad qui. Cupidatat qui adipisicing in pariatur consequat deserunt. Dolor sint est id voluptate pariatur aliqua ad irure eiusmod id minim voluptate duis veniam. Eiusmod pariatur nulla officia occaecat ex tempor cillum occaecat anim eiusmod non ipsum.\r\n", + "registered": "2014-12-19T06:20:01 +07:00", + "latitude": -81.735941, + "longitude": -117.655575, + "tags": [ + "eiusmod", + "aute", + "mollit", + "labore", + "laborum", + "commodo", + "occaecat" + ], + "friends": [ + { + "id": 0, + "name": "Pearson Cobb" + }, + { + "id": 1, + "name": "Selma Cash" + }, + { + "id": 2, + "name": "Chavez Hatfield" + } + ], + "greeting": "Hello, Matilda Mckinney! You have 6 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217aa0ccc328a891dfd", + "index": 457, + "guid": "92c02355-0251-461d-955a-08e6905464d0", + "isActive": true, + "balance": "$3,439.37", + "picture": "http://placehold.it/32x32", + "age": 23, + "eyeColor": "green", + "name": "Adriana Bradshaw", + "gender": "female", + "company": "TERSANKI", + "email": "adrianabradshaw@tersanki.com", + "phone": "+1 (829) 411-2879", + "address": "443 Harman Street, Sugartown, Pennsylvania, 5287", + "about": "Minim aliquip irure culpa consequat adipisicing. Ullamco ullamco dolor nulla nulla ex veniam occaecat nisi mollit ea dolor nostrud deserunt. Ea in eiusmod ut veniam ut aliquip. Veniam laborum nostrud mollit in sint incididunt ad incididunt magna reprehenderit minim laboris proident. Est qui aute quis sit dolore ipsum incididunt pariatur enim in tempor. Velit Lorem consectetur commodo duis proident aute et enim nostrud esse quis duis Lorem ipsum. Adipisicing ut minim Lorem commodo ad.\r\n", + "registered": "2014-03-12T05:05:03 +06:00", + "latitude": 28.642588, + "longitude": 113.321408, + "tags": [ + "dolore", + "anim", + "tempor", + "culpa", + "dolor", + "sint", + "anim" + ], + "friends": [ + { + "id": 0, + "name": "June Zimmerman" + }, + { + "id": 1, + "name": "Carolina Mathis" + }, + { + "id": 2, + "name": "Fitzpatrick Baxter" + } + ], + "greeting": "Hello, Adriana Bradshaw! You have 3 unread messages.", + "favoriteFruit": "banana" + }, + { + "_id": "5ab30217aa73654b86e37e7b", + "index": 458, + "guid": "14b6bcae-a06d-4694-8666-69276251e46b", + "isActive": false, + "balance": "$2,508.83", + "picture": "http://placehold.it/32x32", + "age": 21, + "eyeColor": "brown", + "name": "Jeanette Santiago", + "gender": "female", + "company": "PYRAMIS", + "email": "jeanettesantiago@pyramis.com", + "phone": "+1 (945) 592-3921", + "address": "410 Columbia Place, Ripley, Vermont, 8150", + "about": "Excepteur ullamco reprehenderit deserunt ex adipisicing velit magna deserunt amet labore enim adipisicing. Esse aliquip irure in id ad reprehenderit quis dolor. Est et deserunt amet pariatur magna dolor ut occaecat ullamco elit. Cupidatat consequat cupidatat id tempor nisi esse tempor ad incididunt aliquip duis nulla amet. Nulla ut irure officia elit aliquip. Laborum anim officia ipsum minim veniam officia sint adipisicing incididunt ipsum occaecat elit nulla fugiat. Sit anim consequat ullamco sunt consequat magna culpa Lorem veniam reprehenderit fugiat eu aute dolore.\r\n", + "registered": "2014-08-20T03:49:47 +06:00", + "latitude": -57.813381, + "longitude": -82.01748, + "tags": [ + "labore", + "culpa", + "deserunt", + "nostrud", + "do", + "proident", + "consequat" + ], + "friends": [ + { + "id": 0, + "name": "Wade Vincent" + }, + { + "id": 1, + "name": "Phelps Alston" + }, + { + "id": 2, + "name": "Huffman Conrad" + } + ], + "greeting": "Hello, Jeanette Santiago! You have 5 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217d632e700b3ec04bb", + "index": 459, + "guid": "ba031eee-dcd7-4e48-93ab-21019dbe4e43", + "isActive": false, + "balance": "$3,397.57", + "picture": "http://placehold.it/32x32", + "age": 26, + "eyeColor": "green", + "name": "Wilma Hendricks", + "gender": "female", + "company": "CONFERIA", + "email": "wilmahendricks@conferia.com", + "phone": "+1 (930) 588-3286", + "address": "385 Shale Street, Klondike, Maine, 8827", + "about": "Nostrud ullamco est occaecat exercitation qui amet eu aute nostrud Lorem amet commodo. Ad aliquip exercitation velit officia mollit nisi excepteur pariatur. Ullamco reprehenderit ea elit ea officia. Cillum proident exercitation incididunt magna. Laboris tempor cupidatat nostrud ex est laboris nulla elit esse reprehenderit. Aliqua duis adipisicing in mollit fugiat non esse incididunt aute consectetur enim exercitation Lorem pariatur.\r\n", + "registered": "2017-05-23T06:27:49 +06:00", + "latitude": 52.075019, + "longitude": 74.696424, + "tags": [ + "exercitation", + "mollit", + "reprehenderit", + "deserunt", + "minim", + "excepteur", + "anim" + ], + "friends": [ + { + "id": 0, + "name": "Reese Lowe" + }, + { + "id": 1, + "name": "Martina Adams" + }, + { + "id": 2, + "name": "Johnnie Vang" + } + ], + "greeting": "Hello, Wilma Hendricks! You have 10 unread messages.", + "favoriteFruit": "apple" + }, + { + "_id": "5ab30217f4632ac468680aee", + "index": 460, + "guid": "0d7c684d-69d6-4883-a93a-f4bdde522f6a", + "isActive": true, + "balance": "$1,854.29", + "picture": "http://placehold.it/32x32", + "age": 36, + "eyeColor": "blue", + "name": "Landry Lawson", + "gender": "male", + "company": "SCENTY", + "email": "landrylawson@scenty.com", + "phone": "+1 (919) 556-2641", + "address": "894 Sunnyside Avenue, Gerton, Alaska, 6332", + "about": "Cupidatat sit ex nisi non amet nisi consectetur. Ullamco tempor amet amet sint. Laborum excepteur amet sint voluptate Lorem eu deserunt velit commodo est amet adipisicing proident. Consequat ipsum nisi enim deserunt esse qui fugiat laborum deserunt et enim duis. Dolore ad non qui do amet fugiat ullamco cillum amet ex nulla ut officia.\r\n", + "registered": "2017-11-11T08:41:50 +07:00", + "latitude": 86.848154, + "longitude": -119.704291, + "tags": [ + "laboris", + "sunt", + "ad", + "ad", + "do", + "adipisicing", + "ullamco" + ], + "friends": [ + { + "id": 0, + "name": "Whitehead Rice" + }, + { + "id": 1, + "name": "Oconnor Carey" + }, + { + "id": 2, + "name": "Durham Wallace" + } + ], + "greeting": "Hello, Landry Lawson! You have 4 unread messages.", + "favoriteFruit": "strawberry" + }, + { + "_id": "5ab30217f3ea67e41140dae1", + "index": 461, + "guid": "aa99ccb7-b050-41d9-876e-350dc6dae25b", + "isActive": false, + "balance": "$1,306.00", + "picture": "http://placehold.it/32x32", + "age": 31, + "eyeColor": "brown", + "name": "Nellie Richmond", + "gender": "female", + "company": "JAMNATION", + "email": "nellierichmond@jamnation.com", + "phone": "+1 (881) 508-3061", + "address": "303 Bergen Court, Cornfields, Palau, 9150", + "about": "Velit elit et qui aliqua et reprehenderit excepteur id mollit et labore mollit amet. Ex labore exercitation do dolore eiusmod non ex proident ut labore eiusmod. Veniam duis magna in nostrud voluptate incididunt veniam officia cupidatat quis cillum est magna aliquip.\r\n", + "registered": "2016-02-14T07:58:55 +07:00", + "latitude": -1.887096, + "longitude": 163.083029, + "tags": [ + "voluptate", + "dolore", + "exercitation", + "nulla", + "enim", + "sit", + "duis" + ], + "friends": [ + { + "id": 0, + "name": "Susana Floyd" + }, + { + "id": 1, + "name": "Aurelia Mack" + }, + { + "id": 2, + "name": "Blanche Hobbs" + } + ], + "greeting": "Hello, Nellie Richmond! You have 4 unread messages.", + "favoriteFruit": "banana" + } +] \ No newline at end of file diff --git a/lisp-interpreter/tests/data/big_data_gen.sexpr b/lisp-interpreter/tests/data/big_data_gen.sexpr new file mode 100644 index 0000000..fabc4a4 --- /dev/null +++ b/lisp-interpreter/tests/data/big_data_gen.sexpr @@ -0,0 +1 @@ +(#((_id . "5ab30217581d62de8de4ff96") (index . 0) (guid . "cea9838d-608b-408b-be6d-5e0950b5bf8b") (isActive . False) (balance . "$1,351.04") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "blue") (name . "Copeland Bowers") (gender . "male") (company . "OPPORTECH") (email . "copelandbowers@opportech.com") (phone . "+1 (820) 431-3741") (address . "522 Sands Street, Clarktown, Puerto Rico, 4571") (about . "Magna sunt sit commodo eu. Non velit incididunt labore sint aliquip est aliqua reprehenderit minim. Fugiat occaecat Lorem proident excepteur mollit in dolore quis ad fugiat aliqua exercitation. Magna laborum ullamco consectetur id magna consequat. Ullamco quis veniam laborum officia id voluptate occaecat amet do.\r\n") (registered . "2015-12-28T09:45:33 +07:00") (latitude . -85.042696) (longitude . 157.76811) (tags . ("labore" "aute" "consequat" "non" "consequat" "non" "irure")) (friends . (#((id . 0) (name . "Conway Diaz")) #((id . 1) (name . "Reyna Church")) #((id . 2) (name . "Rochelle Stewart")))) (greeting . "Hello, Copeland Bowers! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217982d7fb5cf808f87") (index . 1) (guid . "e67a4297-6379-4018-a3d8-9f323b759213") (isActive . True) (balance . "$1,612.17") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "brown") (name . "Porter Wong") (gender . "male") (company . "ZENTRY") (email . "porterwong@zentry.com") (phone . "+1 (929) 567-3212") (address . "464 Sunnyside Court, Woodlake, Hawaii, 816") (about . "Incididunt sint tempor elit tempor culpa. Voluptate irure dolor voluptate aliqua culpa in consequat Lorem. Adipisicing sunt dolore excepteur eu. Laboris cupidatat enim est quis sint sit Lorem commodo labore commodo commodo incididunt nostrud aliqua. Ex ex ipsum enim sint qui ea nostrud reprehenderit eiusmod irure mollit laboris. Sit qui magna aliqua nostrud reprehenderit ipsum minim cupidatat elit enim.\r\n") (registered . "2017-01-11T02:02:40 +07:00") (latitude . 19.167779) (longitude . 56.707896) (tags . ("exercitation" "anim" "Lorem" "cillum" "nulla" "et" "ullamco")) (friends . (#((id . 0) (name . "Rodriguez Mcpherson")) #((id . 1) (name . "Bailey Tate")) #((id . 2) (name . "Alba Small")))) (greeting . "Hello, Porter Wong! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217a3ef61eb7990388a") (index . 2) (guid . "1c82373e-3264-4396-9e9f-c887b4a3df37") (isActive . True) (balance . "$2,028.25") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Dennis Galloway") (gender . "male") (company . "INSECTUS") (email . "dennisgalloway@insectus.com") (phone . "+1 (924) 505-3511") (address . "367 Coleridge Street, Strykersville, American Samoa, 4836") (about . "Enim aliquip minim voluptate est proident. Ullamco magna eiusmod et commodo anim consequat occaecat ea nostrud. Qui deserunt reprehenderit minim magna cillum sit ad fugiat. Reprehenderit ipsum cillum anim mollit aliquip aute aute.\r\n") (registered . "2017-03-22T07:07:27 +06:00") (latitude . -12.496226) (longitude . -142.933785) (tags . ("ea" "qui" "adipisicing" "esse" "velit" "Lorem" "ut")) (friends . (#((id . 0) (name . "Terrell Henry")) #((id . 1) (name . "Doyle Dorsey")) #((id . 2) (name . "Dillon Eaton")))) (greeting . "Hello, Dennis Galloway! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217f427677b5ae3d97f") (index . 3) (guid . "f2279d93-fb22-4abb-86a8-cef53c077f58") (isActive . False) (balance . "$2,595.96") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Christine Delaney") (gender . "female") (company . "XUMONK") (email . "christinedelaney@xumonk.com") (phone . "+1 (936) 509-3390") (address . "127 Lott Avenue, Lavalette, Indiana, 571") (about . "Occaecat adipisicing eiusmod veniam ex est laborum sint est consectetur excepteur tempor veniam pariatur. Proident enim minim aute eu nulla laboris ut irure aliquip occaecat laboris ex. Consectetur dolore pariatur culpa in in quis sit mollit velit aliqua velit Lorem tempor. Esse sunt nulla nulla excepteur id fugiat excepteur in officia et eu.\r\n") (registered . "2015-11-14T05:41:46 +07:00") (latitude . -24.436392) (longitude . -107.419735) (tags . ("do" "culpa" "reprehenderit" "in" "elit" "culpa" "aute")) (friends . (#((id . 0) (name . "Cornelia Glass")) #((id . 1) (name . "Coleman Spears")) #((id . 2) (name . "Fowler Haney")))) (greeting . "Hello, Christine Delaney! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217b05422cd8f19be76") (index . 4) (guid . "1f926b3a-68b9-4bb4-923e-f85cbbaa7138") (isActive . False) (balance . "$3,666.67") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "blue") (name . "Melissa Chan") (gender . "female") (company . "CONCILITY") (email . "melissachan@concility.com") (phone . "+1 (936) 599-3104") (address . "739 Fuller Place, Bartonsville, Missouri, 9787") (about . "Est do id enim laborum amet eu. Ea proident enim sunt adipisicing nostrud et eu sint enim deserunt labore ad nulla. Exercitation mollit nulla sunt exercitation ad amet do anim ipsum ut incididunt veniam enim cupidatat. Proident elit ea labore sint occaecat laborum ullamco reprehenderit ex eiusmod tempor officia. Sit amet in reprehenderit ullamco exercitation. Dolore adipisicing voluptate deserunt nisi culpa.\r\n") (registered . "2015-05-17T01:59:34 +06:00") (latitude . 16.524842) (longitude . 89.46242) (tags . ("sunt" "do" "non" "labore" "aute" "proident" "eu")) (friends . (#((id . 0) (name . "Hartman William")) #((id . 1) (name . "Dickerson Hammond")) #((id . 2) (name . "Diann Oneal")))) (greeting . "Hello, Melissa Chan! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217d109f7a108bd81fa") (index . 5) (guid . "b9fed8fc-5331-42a4-80b7-14c25cd723dc") (isActive . False) (balance . "$1,687.35") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Aguirre Randall") (gender . "male") (company . "ZILPHUR") (email . "aguirrerandall@zilphur.com") (phone . "+1 (870) 418-3816") (address . "443 Clermont Avenue, Farmers, Guam, 8943") (about . "Ea aute et eu adipisicing sunt. Irure Lorem do consectetur nulla non. Consequat elit exercitation tempor nostrud ipsum voluptate. Dolore commodo ullamco labore eiusmod do ut occaecat sint.\r\n") (registered . "2017-05-31T11:35:10 +06:00") (latitude . 75.028921) (longitude . -149.218953) (tags . ("voluptate" "voluptate" "nisi" "dolor" "ut" "sit" "deserunt")) (friends . (#((id . 0) (name . "Newman Morales")) #((id . 1) (name . "Megan Vance")) #((id . 2) (name . "Meghan Horton")))) (greeting . "Hello, Aguirre Randall! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217be57f565410c5452") (index . 6) (guid . "b5168d3a-7cc6-48eb-a20d-82d8dcdd4ed3") (isActive . False) (balance . "$2,961.57") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "green") (name . "Deleon Weiss") (gender . "male") (company . "ORBIN") (email . "deleonweiss@orbin.com") (phone . "+1 (962) 541-3427") (address . "394 Apollo Street, Tryon, Minnesota, 9609") (about . "Minim deserunt dolor do occaecat magna proident ex. Dolore dolore ea ea ipsum reprehenderit est veniam eiusmod exercitation dolore Lorem sit consequat non. Exercitation sint Lorem est ad ea et adipisicing consequat exercitation tempor non est laboris. Sunt veniam consequat qui do adipisicing enim nulla proident magna nostrud non dolore consectetur. Sint est mollit et nulla nulla nostrud adipisicing nisi veniam. Officia duis esse elit sint quis ex exercitation reprehenderit anim. Tempor non cupidatat laborum ullamco consequat incididunt quis anim.\r\n") (registered . "2017-06-10T01:39:14 +06:00") (latitude . 4.97346) (longitude . 8.922837) (tags . ("veniam" "eu" "anim" "esse" "laboris" "Lorem" "ipsum")) (friends . (#((id . 0) (name . "Brandi Stein")) #((id . 1) (name . "Hoover Buckley")) #((id . 2) (name . "Good Sandoval")))) (greeting . "Hello, Deleon Weiss! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217a148db6e7931f215") (index . 7) (guid . "ddf3e850-bc67-4bb3-a0b5-a64b2ee9d2a5") (isActive . True) (balance . "$1,110.28") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "green") (name . "Tanner Peterson") (gender . "male") (company . "REMOLD") (email . "tannerpeterson@remold.com") (phone . "+1 (909) 522-2603") (address . "390 Gilmore Court, Wadsworth, Delaware, 629") (about . "Labore aliqua duis et voluptate cillum sint reprehenderit in ex id labore tempor. Voluptate est amet proident minim in consectetur nisi esse sit in est. Amet eiusmod fugiat sit in pariatur minim labore consequat occaecat sint.\r\n") (registered . "2017-05-05T07:46:12 +06:00") (latitude . 46.939466) (longitude . 104.417611) (tags . ("Lorem" "cupidatat" "voluptate" "tempor" "adipisicing" "id" "et")) (friends . (#((id . 0) (name . "Summer Lopez")) #((id . 1) (name . "Zelma Ware")) #((id . 2) (name . "Glover Kennedy")))) (greeting . "Hello, Tanner Peterson! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217ee5401de0ddd248c") (index . 8) (guid . "70a839c8-2460-475c-9119-17e76c608d6f") (isActive . False) (balance . "$2,040.77") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "blue") (name . "Carney Sexton") (gender . "male") (company . "TALENDULA") (email . "carneysexton@talendula.com") (phone . "+1 (957) 512-3701") (address . "143 Eldert Street, Coinjock, Kansas, 2802") (about . "Ipsum duis aute cillum deserunt consequat pariatur ullamco deserunt. Enim reprehenderit aliqua proident nostrud. Voluptate veniam est reprehenderit in ex laboris non ad pariatur nostrud aliquip.\r\n") (registered . "2014-10-03T03:17:39 +06:00") (latitude . -34.26736) (longitude . 90.761126) (tags . ("nisi" "ullamco" "commodo" "quis" "dolor" "est" "Lorem")) (friends . (#((id . 0) (name . "Chandler Petty")) #((id . 1) (name . "Lynette Brady")) #((id . 2) (name . "Mcneil Bennett")))) (greeting . "Hello, Carney Sexton! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217f0240f09da690ba0") (index . 9) (guid . "ac3647dc-2aee-4f42-97cd-094b6a59b8e4") (isActive . False) (balance . "$3,621.14") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "brown") (name . "Tran Summers") (gender . "male") (company . "IMPERIUM") (email . "transummers@imperium.com") (phone . "+1 (911) 590-2947") (address . "414 Ide Court, Haring, Washington, 4991") (about . "Velit laborum pariatur occaecat cillum consequat. Quis proident adipisicing ut ut incididunt enim non. Commodo dolor anim adipisicing elit. Tempor anim non consequat consequat do.\r\n") (registered . "2016-04-10T07:58:41 +06:00") (latitude . 45.318806) (longitude . -87.968456) (tags . ("labore" "excepteur" "esse" "cillum" "in" "tempor" "Lorem")) (friends . (#((id . 0) (name . "Short Wilkins")) #((id . 1) (name . "Ida Mcguire")) #((id . 2) (name . "Diaz Randolph")))) (greeting . "Hello, Tran Summers! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021714580d80374ec26a") (index . 10) (guid . "9748ff18-71a9-42f7-9aa3-7f1f3e67f39f") (isActive . True) (balance . "$1,751.52") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Gillespie Jordan") (gender . "male") (company . "NORSUP") (email . "gillespiejordan@norsup.com") (phone . "+1 (978) 498-3635") (address . "785 Dewitt Avenue, Grahamtown, Oklahoma, 2138") (about . "Excepteur quis in reprehenderit aliqua non consequat. Laborum laborum enim ea ut sunt. Sint cillum aliquip est do dolor. Irure dolor quis nulla reprehenderit ipsum culpa officia labore ad magna. Laborum quis velit labore adipisicing pariatur eiusmod commodo officia occaecat proident est qui occaecat. Dolore in eiusmod deserunt sunt adipisicing sit velit.\r\n") (registered . "2018-01-09T09:17:27 +07:00") (latitude . 2.331752) (longitude . -123.208951) (tags . ("non" "adipisicing" "Lorem" "amet" "et" "consequat" "nulla")) (friends . (#((id . 0) (name . "Mara Webb")) #((id . 1) (name . "Diana Merrill")) #((id . 2) (name . "Frieda Tyson")))) (greeting . "Hello, Gillespie Jordan! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302177b49333940b103f6") (index . 11) (guid . "964d67e3-a970-4ab1-aff8-6ff8e192e75a") (isActive . False) (balance . "$2,364.22") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "blue") (name . "Jarvis Chapman") (gender . "male") (company . "BLUPLANET") (email . "jarvischapman@bluplanet.com") (phone . "+1 (948) 561-3537") (address . "984 Hall Street, Columbus, Kentucky, 7867") (about . "Excepteur amet enim consectetur velit consectetur occaecat velit minim. Esse ut reprehenderit ut culpa eiusmod culpa mollit est reprehenderit. Cillum laborum occaecat ea magna labore velit occaecat labore. Qui commodo ea labore excepteur minim elit. Lorem labore sit anim pariatur dolor ullamco et do magna sint id Lorem. Mollit commodo non ex eiusmod proident.\r\n") (registered . "2018-02-10T07:05:19 +07:00") (latitude . -79.602083) (longitude . -135.269162) (tags . ("minim" "nulla" "ut" "et" "laborum" "fugiat" "cupidatat")) (friends . (#((id . 0) (name . "Miriam Willis")) #((id . 1) (name . "Angelique Fields")) #((id . 2) (name . "Aisha Sullivan")))) (greeting . "Hello, Jarvis Chapman! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302171c5cc4fa924d914e") (index . 12) (guid . "85d16cc8-733f-4603-ba2d-478cc1493487") (isActive . False) (balance . "$1,174.21") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "blue") (name . "Sandy Hansen") (gender . "female") (company . "XANIDE") (email . "sandyhansen@xanide.com") (phone . "+1 (840) 519-2414") (address . "789 Falmouth Street, Winchester, Alabama, 940") (about . "Aliquip consequat Lorem et amet velit aute labore. Fugiat aliqua sint labore minim ex ut. Do Lorem nisi pariatur Lorem nulla ad ex fugiat labore Lorem do aute pariatur magna. Occaecat elit do in amet ut officia excepteur ullamco incididunt. Fugiat eiusmod mollit esse magna ea. Officia amet ea ex consectetur incididunt enim elit.\r\n") (registered . "2017-07-07T10:29:56 +06:00") (latitude . 56.75512) (longitude . -94.24494) (tags . ("voluptate" "aliqua" "excepteur" "reprehenderit" "qui" "est" "in")) (friends . (#((id . 0) (name . "Jamie Poole")) #((id . 1) (name . "Oneill Cooley")) #((id . 2) (name . "Koch Key")))) (greeting . "Hello, Sandy Hansen! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217e89092c1e40f4211") (index . 13) (guid . "1bea6de5-361c-4ab4-a6cd-cf91e491be02") (isActive . True) (balance . "$3,175.95") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "blue") (name . "Murphy Parker") (gender . "male") (company . "MUSAPHICS") (email . "murphyparker@musaphics.com") (phone . "+1 (893) 550-2069") (address . "959 Kings Place, Baden, West Virginia, 3438") (about . "Aliqua ipsum cillum commodo ipsum aliqua irure amet. Officia id laborum nulla irure do deserunt fugiat ipsum proident velit. In cupidatat reprehenderit occaecat amet eu in. Minim sit aliqua minim sit magna.\r\n") (registered . "2014-10-02T11:30:45 +06:00") (latitude . -73.283668) (longitude . 174.350664) (tags . ("eiusmod" "qui" "cillum" "qui" "officia" "Lorem" "reprehenderit")) (friends . (#((id . 0) (name . "Buchanan Foster")) #((id . 1) (name . "Mayo Hensley")) #((id . 2) (name . "Georgina Downs")))) (greeting . "Hello, Murphy Parker! You have 8 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302173e14bc9561946d2f") (index . 14) (guid . "fef73605-ae10-4b37-9721-c1ac6fc5046b") (isActive . True) (balance . "$2,537.02") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "green") (name . "Doreen Cox") (gender . "female") (company . "VETRON") (email . "doreencox@vetron.com") (phone . "+1 (962) 459-3818") (address . "175 Aitken Place, Veguita, Ohio, 9881") (about . "Nulla laboris anim incididunt nostrud dolor nulla. Laboris sit aliquip deserunt officia non velit pariatur ex velit. Sint pariatur quis ad magna dolor ex exercitation esse pariatur proident tempor ullamco commodo dolor. Sint et ex ad culpa eiusmod aliquip reprehenderit proident dolore sunt pariatur in in cillum. Occaecat mollit mollit officia elit.\r\n") (registered . "2017-08-27T05:03:13 +06:00") (latitude . 40.359624) (longitude . 48.74135) (tags . ("velit" "veniam" "magna" "fugiat" "esse" "laborum" "Lorem")) (friends . (#((id . 0) (name . "Frances Cook")) #((id . 1) (name . "Christian Yates")) #((id . 2) (name . "Janell Chambers")))) (greeting . "Hello, Doreen Cox! You have 8 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217126d23342116cef6") (index . 15) (guid . "44fc13d6-157e-40e8-959f-03007a0e1358") (isActive . True) (balance . "$3,964.74") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "blue") (name . "Dixie Bradford") (gender . "female") (company . "CIRCUM") (email . "dixiebradford@circum.com") (phone . "+1 (866) 411-3595") (address . "887 Atlantic Avenue, Cassel, Connecticut, 6205") (about . "Occaecat id cillum mollit aliqua dolore pariatur fugiat ut culpa ut eu adipisicing laboris. Incididunt tempor ad ad eu quis sunt amet esse tempor. Proident labore sint amet enim magna aliqua. Excepteur do qui non enim dolor esse commodo velit minim anim fugiat.\r\n") (registered . "2015-07-20T11:06:31 +06:00") (latitude . 85.578093) (longitude . -95.002626) (tags . ("nulla" "tempor" "aliqua" "amet" "laboris" "exercitation" "nulla")) (friends . (#((id . 0) (name . "Johns Myers")) #((id . 1) (name . "Pate Roy")) #((id . 2) (name . "Trujillo Odom")))) (greeting . "Hello, Dixie Bradford! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217cf80d0645a205c57") (index . 16) (guid . "ded8e64c-d4d9-405c-82df-e0bed55ad3ec") (isActive . False) (balance . "$3,101.16") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "brown") (name . "Meadows Foreman") (gender . "male") (company . "GEOFORMA") (email . "meadowsforeman@geoforma.com") (phone . "+1 (868) 535-3078") (address . "186 Rodney Street, Ruckersville, North Dakota, 2748") (about . "Magna est elit adipisicing do. Commodo duis occaecat veniam consectetur proident incididunt nisi fugiat minim mollit mollit nulla enim. Ea ipsum amet anim ex eu deserunt proident. Labore sint Lorem duis minim mollit. Sunt do est adipisicing tempor laboris. Culpa ut ullamco eu incididunt ipsum deserunt deserunt mollit officia qui incididunt esse ipsum.\r\n") (registered . "2015-10-17T10:03:14 +06:00") (latitude . 17.749436) (longitude . -88.474536) (tags . ("voluptate" "laborum" "sunt" "cillum" "eu" "tempor" "aliquip")) (friends . (#((id . 0) (name . "Janice Duffy")) #((id . 1) (name . "Annie Brooks")) #((id . 2) (name . "Wooten Sutton")))) (greeting . "Hello, Meadows Foreman! You have 1 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302178acb115f1f36ccc2") (index . 17) (guid . "b6a03f2c-c55f-4174-83d7-7b0328edae01") (isActive . False) (balance . "$2,972.70") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "brown") (name . "Autumn Solomon") (gender . "female") (company . "MENBRAIN") (email . "autumnsolomon@menbrain.com") (phone . "+1 (891) 412-3049") (address . "713 Mayfair Drive, Escondida, Mississippi, 3229") (about . "Ullamco culpa ullamco eu exercitation ipsum ut eiusmod laboris aliqua nostrud mollit veniam aliquip. Pariatur ipsum nisi ad laboris sunt. Qui anim anim pariatur elit.\r\n") (registered . "2014-03-28T07:32:55 +06:00") (latitude . 5.377351) (longitude . -150.614005) (tags . ("commodo" "id" "Lorem" "dolore" "qui" "eu" "irure")) (friends . (#((id . 0) (name . "Lorena Thomas")) #((id . 1) (name . "Eaton Dominguez")) #((id . 2) (name . "Bridges Massey")))) (greeting . "Hello, Autumn Solomon! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217b197ee47775e1335") (index . 18) (guid . "65b6f3f9-81e8-4a3c-ab0a-24558db3011a") (isActive . True) (balance . "$2,155.62") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "blue") (name . "Baldwin Morrison") (gender . "male") (company . "SUPREMIA") (email . "baldwinmorrison@supremia.com") (phone . "+1 (983) 449-3559") (address . "604 Vandervoort Place, Snyderville, New York, 2779") (about . "Fugiat officia enim Lorem est aliquip dolor sint sunt consectetur non. Nostrud sit ad exercitation veniam aliquip veniam incididunt id sit reprehenderit nisi fugiat est esse. Anim non anim ullamco ea et.\r\n") (registered . "2017-04-05T04:12:01 +06:00") (latitude . -82.574105) (longitude . -50.572693) (tags . ("voluptate" "quis" "nisi" "aliquip" "laborum" "aliqua" "qui")) (friends . (#((id . 0) (name . "Atkinson Cross")) #((id . 1) (name . "Cochran Erickson")) #((id . 2) (name . "Middleton Valenzuela")))) (greeting . "Hello, Baldwin Morrison! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302179dde3048218be7ec") (index . 19) (guid . "020579b0-8a4c-4282-b0cf-04e52772007b") (isActive . True) (balance . "$3,600.11") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "blue") (name . "Donovan Sherman") (gender . "male") (company . "MANGELICA") (email . "donovansherman@mangelica.com") (phone . "+1 (870) 538-2513") (address . "164 Manhattan Court, Ogema, Oregon, 4299") (about . "Fugiat sit duis proident dolore in in veniam non. Fugiat aliqua id sunt sint. Incididunt deserunt duis tempor exercitation sunt velit pariatur tempor ex excepteur laborum aliquip eu elit. Sunt eiusmod ut sunt proident sint culpa. Adipisicing aliquip qui veniam minim laborum voluptate velit cillum commodo sint reprehenderit deserunt laboris eiusmod. Id cupidatat commodo cupidatat cillum ex veniam.\r\n") (registered . "2017-10-27T01:37:58 +06:00") (latitude . 17.945923) (longitude . 156.110692) (tags . ("et" "consequat" "amet" "et" "do" "incididunt" "esse")) (friends . (#((id . 0) (name . "Burgess Bird")) #((id . 1) (name . "Melanie Langley")) #((id . 2) (name . "Pruitt Cortez")))) (greeting . "Hello, Donovan Sherman! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302170bee00873f83b951") (index . 20) (guid . "70b90eca-caf0-4012-bcd4-7f33844ad66d") (isActive . False) (balance . "$1,866.37") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "brown") (name . "Le Washington") (gender . "male") (company . "FROLIX") (email . "lewashington@frolix.com") (phone . "+1 (875) 544-3392") (address . "653 Eagle Street, Rockingham, New Jersey, 825") (about . "Ipsum incididunt incididunt cupidatat mollit anim Lorem exercitation nisi laboris mollit voluptate. Incididunt tempor nostrud cupidatat Lorem. Et nulla sit voluptate culpa veniam dolor velit do ex esse culpa. Lorem officia ullamco aute consequat aliqua laboris veniam elit est enim laboris qui. Consectetur exercitation ullamco ipsum pariatur pariatur irure cupidatat pariatur ex sunt nisi cupidatat commodo fugiat. Duis proident laborum pariatur mollit non ipsum exercitation proident esse et. Officia veniam cillum occaecat quis.\r\n") (registered . "2015-05-30T03:02:52 +06:00") (latitude . 84.182804) (longitude . -152.426654) (tags . ("labore" "veniam" "in" "enim" "nisi" "deserunt" "sit")) (friends . (#((id . 0) (name . "Jones Mccarty")) #((id . 1) (name . "Valencia Bates")) #((id . 2) (name . "Daphne Norman")))) (greeting . "Hello, Le Washington! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217768088f0710787e7") (index . 21) (guid . "63e46f38-2019-4752-889b-0696f5b4f6e4") (isActive . False) (balance . "$2,721.00") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "brown") (name . "Mitchell Avery") (gender . "male") (company . "CUJO") (email . "mitchellavery@cujo.com") (phone . "+1 (968) 567-2827") (address . "570 Varick Street, Nogal, Montana, 8809") (about . "Sint labore incididunt non amet. Labore anim ad nulla officia irure ipsum ad aliqua ea. In enim anim do esse sunt Lorem ut adipisicing tempor proident. Velit ipsum ea sint adipisicing est. Ea laborum consectetur laboris fugiat laborum Lorem voluptate cillum. Amet sunt sit est nisi esse qui. Fugiat eu mollit consequat et.\r\n") (registered . "2017-02-18T12:57:00 +07:00") (latitude . -7.290183) (longitude . -82.004467) (tags . ("exercitation" "enim" "dolor" "irure" "proident" "est" "et")) (friends . (#((id . 0) (name . "Jami Johnston")) #((id . 1) (name . "Burt Rhodes")) #((id . 2) (name . "Gould Mitchell")))) (greeting . "Hello, Mitchell Avery! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302173ddbd7b2508b0b02") (index . 22) (guid . "e394236e-3317-4bd3-924b-22846080ca75") (isActive . True) (balance . "$2,928.32") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "blue") (name . "Goodman Garrison") (gender . "male") (company . "QUILCH") (email . "goodmangarrison@quilch.com") (phone . "+1 (953) 548-3598") (address . "800 Cumberland Walk, Dennard, Nevada, 8255") (about . "Dolor do cillum dolore in magna. Adipisicing id consectetur anim veniam nostrud anim. Et nisi enim ipsum aliquip ipsum duis irure eu et fugiat adipisicing do ut laborum. Do mollit laboris esse esse mollit non sint et eiusmod exercitation veniam amet anim ea.\r\n") (registered . "2014-03-17T01:55:00 +06:00") (latitude . 18.102407) (longitude . -146.789592) (tags . ("eiusmod" "consequat" "nostrud" "sit" "duis" "nisi" "in")) (friends . (#((id . 0) (name . "Foreman Watson")) #((id . 1) (name . "Mable Ramsey")) #((id . 2) (name . "Barton Potter")))) (greeting . "Hello, Goodman Garrison! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217fd8b6bab5f21c6d5") (index . 23) (guid . "38c22341-ee90-48a5-b1d7-32791df624b2") (isActive . True) (balance . "$2,255.81") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "blue") (name . "Beach Riley") (gender . "male") (company . "DYNO") (email . "beachriley@dyno.com") (phone . "+1 (888) 562-3949") (address . "163 Woodbine Street, Vowinckel, Colorado, 8009") (about . "Quis proident laborum quis labore irure cupidatat irure. Ad sint labore sit elit. Occaecat cupidatat qui esse sint tempor adipisicing aliqua quis sit duis eiusmod cupidatat qui. Est ex ut exercitation mollit nostrud culpa magna voluptate excepteur labore magna. Nostrud laborum non fugiat amet ut.\r\n") (registered . "2016-02-07T12:16:37 +07:00") (latitude . 68.812988) (longitude . -128.436196) (tags . ("elit" "in" "nostrud" "est" "nostrud" "nostrud" "officia")) (friends . (#((id . 0) (name . "Mcpherson Dodson")) #((id . 1) (name . "Dora Cantrell")) #((id . 2) (name . "Ferrell Becker")))) (greeting . "Hello, Beach Riley! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021754d5b8634d5adb91") (index . 24) (guid . "355a2f46-1581-4857-98a0-31b3f0e24f8d") (isActive . False) (balance . "$1,320.82") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "blue") (name . "Benjamin Patton") (gender . "male") (company . "MONDICIL") (email . "benjaminpatton@mondicil.com") (phone . "+1 (920) 575-3987") (address . "964 Montana Place, Turah, New Mexico, 3677") (about . "Consectetur exercitation non aliqua eu ut non nostrud et eu esse ex. Aliquip proident duis mollit sit esse est cillum fugiat fugiat qui. Magna excepteur consequat labore in esse. Commodo nulla eu nulla officia ipsum dolor dolor mollit deserunt eiusmod elit ea sit. Nisi voluptate fugiat qui nulla ad magna do est. Aliqua minim est do minim esse enim. Duis ipsum fugiat est consequat enim dolore culpa cillum nostrud.\r\n") (registered . "2014-01-23T06:45:58 +07:00") (latitude . -31.075216) (longitude . -96.591157) (tags . ("irure" "qui" "exercitation" "aliquip" "ut" "eu" "quis")) (friends . (#((id . 0) (name . "Wilcox Bray")) #((id . 1) (name . "Harmon Abbott")) #((id . 2) (name . "Estes Garner")))) (greeting . "Hello, Benjamin Patton! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217f68da6ef748298f0") (index . 25) (guid . "3c1d7610-d22f-4a89-b001-c578d12d787f") (isActive . False) (balance . "$2,324.21") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "blue") (name . "Freida Peters") (gender . "female") (company . "FIBRODYNE") (email . "freidapeters@fibrodyne.com") (phone . "+1 (906) 461-3853") (address . "534 Lincoln Place, Aberdeen, Texas, 6075") (about . "Ex nisi enim sunt esse nulla sit fugiat elit qui consequat. Enim ipsum dolore dolore sit occaecat minim laborum ullamco nisi quis magna. Elit adipisicing labore exercitation sit laboris nulla. Dolore sunt nisi officia sint pariatur laborum ipsum cupidatat proident. Do nostrud veniam nisi culpa voluptate aliquip est eu est dolor culpa eiusmod ipsum veniam. Reprehenderit tempor in Lorem do aliqua enim ea sint occaecat cillum. Velit nisi adipisicing ipsum sunt incididunt nisi mollit aliqua enim cillum excepteur dolor excepteur nisi.\r\n") (registered . "2014-04-24T04:07:50 +06:00") (latitude . -85.494052) (longitude . -28.348258) (tags . ("duis" "aliqua" "in" "nisi" "consectetur" "est" "mollit")) (friends . (#((id . 0) (name . "Bridgett Ramos")) #((id . 1) (name . "Shannon Schneider")) #((id . 2) (name . "Imogene Snow")))) (greeting . "Hello, Freida Peters! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021795e73dab8ebdcb40") (index . 26) (guid . "e90740b6-23ba-40ff-8354-aba173842e5c") (isActive . True) (balance . "$3,892.71") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "blue") (name . "Morton Owen") (gender . "male") (company . "QUORDATE") (email . "mortonowen@quordate.com") (phone . "+1 (989) 424-2052") (address . "486 Coyle Street, Aguila, North Carolina, 845") (about . "Minim esse enim officia est excepteur proident mollit nulla ex labore irure irure incididunt deserunt. Aliqua laborum quis qui aliquip tempor voluptate cupidatat qui duis nostrud do mollit. Reprehenderit sit exercitation tempor do nisi. Quis aute consequat consectetur mollit enim laboris proident proident amet. Laboris labore magna commodo cillum sunt nisi. Excepteur fugiat amet mollit velit irure consequat ut reprehenderit ea in labore magna in minim.\r\n") (registered . "2014-09-05T03:12:40 +06:00") (latitude . -32.30538) (longitude . -116.586186) (tags . ("velit" "reprehenderit" "eu" "veniam" "ex" "sunt" "consequat")) (friends . (#((id . 0) (name . "Moon Burke")) #((id . 1) (name . "Latisha Soto")) #((id . 2) (name . "Alicia Padilla")))) (greeting . "Hello, Morton Owen! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302178bdf922160a70e81") (index . 27) (guid . "212926db-17a4-47c0-9fcb-c6342c69d03f") (isActive . False) (balance . "$1,694.51") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "brown") (name . "Suzanne Gross") (gender . "female") (company . "GAZAK") (email . "suzannegross@gazak.com") (phone . "+1 (998) 442-2644") (address . "700 Harbor Lane, Springdale, Nebraska, 3542") (about . "Ipsum labore cupidatat veniam in eu culpa ad sint voluptate excepteur voluptate sunt. Consectetur dolore aliquip labore nulla amet occaecat dolore do officia aliqua ex eiusmod nulla. Elit anim veniam adipisicing cupidatat aliqua labore exercitation est eu. Magna commodo est esse ullamco exercitation ullamco consectetur laborum. Laborum sunt id in aliqua sunt enim commodo laborum et adipisicing eiusmod ex.\r\n") (registered . "2015-09-21T12:57:54 +06:00") (latitude . -3.919427) (longitude . -25.112961) (tags . ("tempor" "cupidatat" "sunt" "ullamco" "non" "reprehenderit" "eu")) (friends . (#((id . 0) (name . "Lesa Greene")) #((id . 1) (name . "Lloyd Huff")) #((id . 2) (name . "Whitaker Stuart")))) (greeting . "Hello, Suzanne Gross! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021720ac266f5d9ed123") (index . 28) (guid . "b8175c10-25c7-4af7-8e0d-9fc23f15ca0c") (isActive . False) (balance . "$2,605.38") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "green") (name . "Elliott Gill") (gender . "male") (company . "LYRIA") (email . "elliottgill@lyria.com") (phone . "+1 (858) 400-2583") (address . "287 Sharon Street, Wawona, Tennessee, 9753") (about . "Pariatur exercitation consequat occaecat non irure id quis. Eu veniam veniam aute ut ex quis sit ad culpa elit aliquip culpa minim. Dolor sit ex sunt sunt esse tempor sit non ea occaecat ullamco veniam proident.\r\n") (registered . "2015-03-20T02:43:55 +06:00") (latitude . 63.235687) (longitude . -136.445157) (tags . ("irure" "labore" "non" "ex" "culpa" "consequat" "voluptate")) (friends . (#((id . 0) (name . "Vazquez Romero")) #((id . 1) (name . "Glenn Witt")) #((id . 2) (name . "Melva Boone")))) (greeting . "Hello, Elliott Gill! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217b7e6532404b69553") (index . 29) (guid . "dc61b2b0-fa74-4a84-8c19-8d1fe5da573c") (isActive . True) (balance . "$1,575.67") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "brown") (name . "Campos Serrano") (gender . "male") (company . "TELEQUIET") (email . "camposserrano@telequiet.com") (phone . "+1 (876) 480-3673") (address . "637 Strong Place, Shaft, Utah, 902") (about . "Laboris do consequat sint irure sunt. Dolor cupidatat dolor dolore labore anim exercitation veniam. Proident fugiat sunt cupidatat officia amet culpa reprehenderit tempor dolor amet excepteur sint proident.\r\n") (registered . "2018-03-09T04:51:21 +07:00") (latitude . 3.391849) (longitude . -66.109532) (tags . ("duis" "veniam" "eiusmod" "reprehenderit" "qui" "laborum" "sit")) (friends . (#((id . 0) (name . "Kelly Jenkins")) #((id . 1) (name . "Mathews Deleon")) #((id . 2) (name . "Diane Bentley")))) (greeting . "Hello, Campos Serrano! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302177527fda515a9a75f") (index . 30) (guid . "28168181-b20a-4c38-bda1-d46adc73a048") (isActive . False) (balance . "$1,205.44") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "green") (name . "Francisca Robertson") (gender . "female") (company . "NUTRALAB") (email . "franciscarobertson@nutralab.com") (phone . "+1 (885) 412-2513") (address . "845 Wyckoff Avenue, Spokane, Marshall Islands, 8826") (about . "Fugiat anim duis anim amet culpa nisi dolor do aliqua eu. Dolor nisi aute elit ex occaecat officia laboris esse nostrud laboris voluptate cillum. Ea qui magna non ea est. Consequat amet eu nostrud aliquip culpa culpa incididunt sunt esse culpa. Minim pariatur dolore ad consequat ut qui magna ex.\r\n") (registered . "2016-07-31T10:36:32 +06:00") (latitude . 84.528899) (longitude . 87.901553) (tags . ("deserunt" "fugiat" "quis" "est" "sint" "in" "aliqua")) (friends . (#((id . 0) (name . "Darcy Frank")) #((id . 1) (name . "Brandie English")) #((id . 2) (name . "Tucker Velasquez")))) (greeting . "Hello, Francisca Robertson! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217687da0ab2a818d73") (index . 31) (guid . "a8fa7fe2-d5c3-486f-9244-114497279185") (isActive . False) (balance . "$3,233.24") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "blue") (name . "Harper Olson") (gender . "male") (company . "HAWKSTER") (email . "harperolson@hawkster.com") (phone . "+1 (935) 471-3588") (address . "618 Himrod Street, Edgewater, Georgia, 4647") (about . "Dolore reprehenderit velit elit nisi duis pariatur commodo quis elit magna ex eiusmod. In esse ex adipisicing officia officia sit ex velit voluptate occaecat officia incididunt duis. Ut laborum proident excepteur exercitation esse ex id mollit amet velit cupidatat.\r\n") (registered . "2017-02-23T12:09:51 +07:00") (latitude . 4.047024) (longitude . -32.488619) (tags . ("incididunt" "duis" "est" "aliquip" "pariatur" "aliqua" "cupidatat")) (friends . (#((id . 0) (name . "Ruthie Larson")) #((id . 1) (name . "Carroll Warren")) #((id . 2) (name . "Carlene Ochoa")))) (greeting . "Hello, Harper Olson! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217ab355086f920c5b1") (index . 32) (guid . "3194136f-e470-455b-bc77-271ae82a0f97") (isActive . False) (balance . "$1,968.16") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "blue") (name . "Browning Mcgowan") (gender . "male") (company . "PYRAMIA") (email . "browningmcgowan@pyramia.com") (phone . "+1 (878) 588-3239") (address . "157 Hausman Street, Otranto, Massachusetts, 7827") (about . "Anim eu velit excepteur excepteur sit qui quis magna commodo ex cupidatat ad aute. Laboris eiusmod qui proident velit id occaecat exercitation laborum amet ea excepteur. Reprehenderit dolore commodo magna aute fugiat quis. Aliqua est elit sunt voluptate id tempor labore incididunt tempor. Duis esse deserunt esse tempor ex ipsum veniam tempor eu culpa culpa cupidatat ipsum Lorem. Commodo ea dolore Lorem do aute.\r\n") (registered . "2016-09-02T10:26:22 +06:00") (latitude . -41.944499) (longitude . -121.407514) (tags . ("deserunt" "ad" "proident" "ex" "ex" "adipisicing" "id")) (friends . (#((id . 0) (name . "Shana Watts")) #((id . 1) (name . "Abby Pena")) #((id . 2) (name . "Dionne Bush")))) (greeting . "Hello, Browning Mcgowan! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021721459f3c8408e94a") (index . 33) (guid . "213e3c1c-b35f-4a11-ae63-88ae2a123d97") (isActive . True) (balance . "$1,784.80") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "brown") (name . "Hill Gentry") (gender . "male") (company . "XYQAG") (email . "hillgentry@xyqag.com") (phone . "+1 (965) 501-2850") (address . "666 Highland Place, Wollochet, Arizona, 2468") (about . "Enim reprehenderit voluptate do adipisicing ut elit esse anim voluptate anim ut pariatur. Laboris elit id veniam sunt est fugiat veniam irure. Fugiat ut quis sint voluptate in.\r\n") (registered . "2015-09-29T07:31:46 +06:00") (latitude . -52.173613) (longitude . -124.063955) (tags . ("dolore" "officia" "excepteur" "ex" "labore" "excepteur" "excepteur")) (friends . (#((id . 0) (name . "Dickson Velazquez")) #((id . 1) (name . "Yvonne Turner")) #((id . 2) (name . "Santos Cole")))) (greeting . "Hello, Hill Gentry! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021717d13c11b2e07049") (index . 34) (guid . "8d16510b-2e3c-4a9e-be28-061d7a80f6c3") (isActive . True) (balance . "$3,635.68") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "brown") (name . "Higgins Rodriguez") (gender . "male") (company . "ZOXY") (email . "higginsrodriguez@zoxy.com") (phone . "+1 (854) 518-2812") (address . "844 Malbone Street, Jeff, District Of Columbia, 7810") (about . "Nisi eu nostrud irure velit officia. Cillum sit deserunt elit officia sit exercitation aute reprehenderit esse labore elit duis minim. Ad velit veniam irure consequat. Tempor amet aliqua id in laborum veniam commodo excepteur sit ipsum id officia.\r\n") (registered . "2015-06-20T05:04:49 +06:00") (latitude . -77.849689) (longitude . 100.789693) (tags . ("officia" "voluptate" "occaecat" "sunt" "deserunt" "anim" "ea")) (friends . (#((id . 0) (name . "Berg Crosby")) #((id . 1) (name . "Essie Fischer")) #((id . 2) (name . "Stuart Mcfarland")))) (greeting . "Hello, Higgins Rodriguez! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021746b95b7ae7f41823") (index . 35) (guid . "725c7ec9-8d60-4817-a062-e8c62450117e") (isActive . True) (balance . "$3,170.74") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "green") (name . "Lucia Pratt") (gender . "female") (company . "TERRAGO") (email . "luciapratt@terrago.com") (phone . "+1 (911) 484-2500") (address . "345 Conselyea Street, Cumberland, Virgin Islands, 5886") (about . "Eu enim occaecat dolore adipisicing nostrud laborum dolor veniam minim excepteur dolor. Sunt voluptate aliquip excepteur eu est dolore veniam laborum laborum. Non culpa elit sint cupidatat incididunt irure voluptate ex minim reprehenderit culpa quis veniam. Ut nisi nostrud laboris proident deserunt culpa. Ea adipisicing enim ipsum deserunt id commodo nisi duis sit voluptate. Ipsum incididunt consectetur nisi fugiat sunt consectetur commodo laboris nostrud exercitation cupidatat.\r\n") (registered . "2016-09-23T11:19:48 +06:00") (latitude . -25.048938) (longitude . 39.390742) (tags . ("sint" "voluptate" "incididunt" "proident" "nostrud" "adipisicing" "qui")) (friends . (#((id . 0) (name . "Grace Greer")) #((id . 1) (name . "Aimee Leach")) #((id . 2) (name . "Rhonda Montgomery")))) (greeting . "Hello, Lucia Pratt! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302174d9215148d79e267") (index . 36) (guid . "7fdd7711-9293-4641-ae3f-a43659df9ec6") (isActive . True) (balance . "$2,282.47") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "green") (name . "Ray Hartman") (gender . "male") (company . "SLOFAST") (email . "rayhartman@slofast.com") (phone . "+1 (880) 592-3808") (address . "381 Pulaski Street, Outlook, South Dakota, 5606") (about . "Velit est laboris nulla aute anim. Eu est pariatur elit ad Lorem mollit fugiat dolore aliquip. Amet elit consequat aliqua aute et do labore nisi voluptate duis mollit. Tempor officia aliquip quis labore officia nulla in dolore cillum. Ea ipsum adipisicing dolor sit reprehenderit non ex ad. Aliqua eiusmod mollit et magna anim anim dolore proident. Est duis occaecat ipsum mollit sunt irure magna magna Lorem eiusmod quis minim sint.\r\n") (registered . "2016-09-28T06:25:59 +06:00") (latitude . -49.246736) (longitude . -81.122483) (tags . ("reprehenderit" "veniam" "incididunt" "culpa" "ad" "exercitation" "non")) (friends . (#((id . 0) (name . "Isabella Peck")) #((id . 1) (name . "Abbott Woodard")) #((id . 2) (name . "Watts Meyer")))) (greeting . "Hello, Ray Hartman! You have 1 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217094387319aaeb1a9") (index . 37) (guid . "093ebee7-7da6-4882-a5c7-aeac0f75c54b") (isActive . True) (balance . "$1,714.12") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "green") (name . "Graciela Lyons") (gender . "female") (company . "AQUASURE") (email . "gracielalyons@aquasure.com") (phone . "+1 (982) 462-2037") (address . "793 Fair Street, Marne, Virginia, 6538") (about . "Enim ex irure sunt consequat amet velit occaecat proident. Sit commodo deserunt id eiusmod. Ex do enim aute qui occaecat ea proident cillum reprehenderit qui. Cupidatat in officia excepteur adipisicing ad aliqua officia eiusmod. Officia deserunt et reprehenderit voluptate ex labore ea. Dolor et esse cupidatat exercitation cupidatat nulla labore et nisi nostrud consequat Lorem in nostrud.\r\n") (registered . "2014-10-09T04:12:23 +06:00") (latitude . 5.376103) (longitude . 50.986976) (tags . ("officia" "laboris" "culpa" "occaecat" "culpa" "mollit" "deserunt")) (friends . (#((id . 0) (name . "Kari Ingram")) #((id . 1) (name . "Cote Barker")) #((id . 2) (name . "Bradshaw Barr")))) (greeting . "Hello, Graciela Lyons! You have 2 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217e92ea23291d16b08") (index . 38) (guid . "d10c6463-521d-4d15-844f-c6ada7be0d50") (isActive . True) (balance . "$2,629.88") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "brown") (name . "Rhodes Anthony") (gender . "male") (company . "ACRUEX") (email . "rhodesanthony@acruex.com") (phone . "+1 (970) 528-2775") (address . "621 Tillary Street, Germanton, Michigan, 3551") (about . "Duis deserunt in fugiat irure nulla do excepteur ea amet labore. Ex sit sunt commodo Lorem. Lorem enim incididunt id aliquip qui. Sit consequat ex nulla consequat sint irure ea dolore ipsum reprehenderit. In nisi do ad minim dolor non laborum ad commodo. Ex laborum non nostrud proident ea magna adipisicing mollit duis. Cillum est ea amet culpa eiusmod nisi sit cillum culpa aliquip voluptate proident.\r\n") (registered . "2017-02-14T09:05:56 +07:00") (latitude . 70.552636) (longitude . 108.60357) (tags . ("tempor" "cupidatat" "Lorem" "non" "ad" "nulla" "tempor")) (friends . (#((id . 0) (name . "Dean Pacheco")) #((id . 1) (name . "Christie Valentine")) #((id . 2) (name . "Iris Mckenzie")))) (greeting . "Hello, Rhodes Anthony! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217299745f5e028d8e9") (index . 39) (guid . "952a8569-c90e-45f7-9b80-413d5949f554") (isActive . True) (balance . "$2,633.88") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "green") (name . "Cecilia Chang") (gender . "female") (company . "SLUMBERIA") (email . "ceciliachang@slumberia.com") (phone . "+1 (857) 588-3053") (address . "940 Boerum Street, Oceola, Northern Mariana Islands, 2834") (about . "Ad sit laborum fugiat labore ut eu duis culpa mollit. Laborum elit labore ut ea in. Sint minim quis exercitation cillum dolore nulla id exercitation. Deserunt id incididunt nisi dolor dolor aute do culpa tempor aliqua elit. Cupidatat do fugiat ad veniam cillum aliquip labore ullamco cupidatat dolore do. Aute ut officia laborum veniam incididunt nisi. Incididunt elit nostrud eiusmod ullamco dolor ad consequat sit adipisicing aliquip incididunt ex.\r\n") (registered . "2014-06-17T12:32:21 +06:00") (latitude . 23.320177) (longitude . 71.416317) (tags . ("aute" "do" "consectetur" "amet" "non" "dolor" "proident")) (friends . (#((id . 0) (name . "Young Lloyd")) #((id . 1) (name . "Graves Estes")) #((id . 2) (name . "Woods Goodman")))) (greeting . "Hello, Cecilia Chang! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217eb08be14353c78f2") (index . 40) (guid . "48fe5dfb-468c-4afc-a993-72ad22dcdd7f") (isActive . False) (balance . "$3,731.55") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "brown") (name . "Bianca Rivers") (gender . "female") (company . "LUNCHPAD") (email . "biancarivers@lunchpad.com") (phone . "+1 (953) 530-2887") (address . "583 Montague Street, Accoville, Illinois, 5777") (about . "Adipisicing nostrud aliqua ullamco fugiat labore non non in qui quis laborum id irure est. Non non excepteur ut excepteur reprehenderit voluptate est. Culpa officia amet est proident reprehenderit ut nulla. Cupidatat non tempor tempor fugiat est mollit aliquip aliqua cupidatat veniam mollit veniam voluptate. Sit veniam qui cillum laborum laboris adipisicing in dolor aute id pariatur. Tempor quis non incididunt deserunt eiusmod nostrud cillum pariatur amet labore.\r\n") (registered . "2015-11-13T03:15:44 +07:00") (latitude . 59.46408) (longitude . 28.30838) (tags . ("non" "do" "adipisicing" "eu" "veniam" "officia" "pariatur")) (friends . (#((id . 0) (name . "Blake Sparks")) #((id . 1) (name . "Taylor Bowen")) #((id . 2) (name . "Cathryn Henson")))) (greeting . "Hello, Bianca Rivers! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021705104b90737e46e3") (index . 41) (guid . "32a7d74d-b803-490d-94c2-7a7156170a81") (isActive . True) (balance . "$1,045.20") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "green") (name . "Cook Cooper") (gender . "male") (company . "EZENTIA") (email . "cookcooper@ezentia.com") (phone . "+1 (952) 573-2533") (address . "895 Kane Street, Fedora, Wisconsin, 1670") (about . "Duis eu sit fugiat quis pariatur commodo ex magna fugiat id voluptate consectetur non. Nisi sunt ex in ipsum ipsum laboris dolor laboris minim. Aliqua ex adipisicing nisi veniam cillum magna cillum ut exercitation ad eu. Lorem tempor officia sunt cillum do esse eu duis sunt labore ullamco Lorem. Irure ad mollit voluptate consectetur enim non Lorem ipsum adipisicing veniam consequat voluptate adipisicing. Ad dolore aliqua do adipisicing. Do nulla Lorem nisi exercitation.\r\n") (registered . "2017-11-11T01:52:40 +07:00") (latitude . -82.851625) (longitude . -150.587365) (tags . ("non" "labore" "consectetur" "ea" "proident" "culpa" "deserunt")) (friends . (#((id . 0) (name . "Palmer Ferguson")) #((id . 1) (name . "Gretchen Mueller")) #((id . 2) (name . "Wagner Carver")))) (greeting . "Hello, Cook Cooper! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217803f197c0cf07c71") (index . 42) (guid . "f2555458-26b0-41d1-822d-b46c98a4de8a") (isActive . False) (balance . "$1,566.00") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "blue") (name . "Elnora Hays") (gender . "female") (company . "OMNIGOG") (email . "elnorahays@omnigog.com") (phone . "+1 (994) 560-2271") (address . "615 Hooper Street, Advance, Idaho, 6347") (about . "Eu Lorem nostrud nulla fugiat esse nulla ullamco aliquip ad ut ad ullamco proident. Consequat dolore sint aliqua culpa proident dolore exercitation do anim eiusmod consequat in. Nulla labore fugiat sint laborum cillum laborum in esse voluptate nisi. Minim ipsum adipisicing non aute enim mollit. Ullamco aute labore ipsum minim tempor ad exercitation commodo.\r\n") (registered . "2016-03-24T05:15:33 +06:00") (latitude . -15.769482) (longitude . 76.853756) (tags . ("minim" "fugiat" "qui" "sit" "velit" "in" "eu")) (friends . (#((id . 0) (name . "Wheeler Vega")) #((id . 1) (name . "Zimmerman Rosales")) #((id . 2) (name . "Weeks Fleming")))) (greeting . "Hello, Elnora Hays! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302176db2318dd4369540") (index . 43) (guid . "e1b474b4-e0f1-4f84-b98d-6881c58aad5f") (isActive . True) (balance . "$1,014.63") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "brown") (name . "Bolton Park") (gender . "male") (company . "COSMETEX") (email . "boltonpark@cosmetex.com") (phone . "+1 (815) 437-2992") (address . "924 Bedford Place, Walland, New Hampshire, 4388") (about . "Consequat cupidatat ipsum fugiat esse reprehenderit minim minim non nulla reprehenderit est ad ad. Nostrud occaecat nisi nulla tempor laboris Lorem eu incididunt adipisicing eiusmod irure. Exercitation aliqua enim nostrud deserunt. Culpa id voluptate consectetur nisi cillum minim amet. Eu anim amet eu consectetur elit. Laborum magna enim amet occaecat adipisicing nulla dolore ea.\r\n") (registered . "2017-12-29T10:08:33 +07:00") (latitude . 58.416231) (longitude . -16.595646) (tags . ("anim" "pariatur" "est" "nostrud" "tempor" "eiusmod" "proident")) (friends . (#((id . 0) (name . "Acosta Hunter")) #((id . 1) (name . "Marisa Schwartz")) #((id . 2) (name . "Ware Lancaster")))) (greeting . "Hello, Bolton Park! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217ec06c1d656f70853") (index . 44) (guid . "a27c5cdd-83de-4915-9e2a-c85a9302fe66") (isActive . True) (balance . "$3,790.13") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "blue") (name . "Leigh Benson") (gender . "female") (company . "LOVEPAD") (email . "leighbenson@lovepad.com") (phone . "+1 (902) 533-3926") (address . "975 Vanderveer Street, Forestburg, South Carolina, 4373") (about . "Ad mollit ut ad est nostrud fugiat reprehenderit et quis reprehenderit amet. Commodo sint ullamco eu non. Officia fugiat occaecat cupidatat quis veniam nulla cupidatat mollit in eu adipisicing Lorem. Nulla nulla in dolor duis sit eu. Mollit pariatur adipisicing esse occaecat non dolore reprehenderit labore et occaecat commodo aliqua duis. Pariatur eiusmod velit enim exercitation esse. Officia ad irure voluptate aliquip duis pariatur anim dolore nostrud sit occaecat labore cillum.\r\n") (registered . "2017-06-28T11:13:48 +06:00") (latitude . -43.875281) (longitude . -16.454646) (tags . ("sint" "aliqua" "deserunt" "id" "dolor" "anim" "excepteur")) (friends . (#((id . 0) (name . "Lidia Carson")) #((id . 1) (name . "Judy Riggs")) #((id . 2) (name . "Terra Webster")))) (greeting . "Hello, Leigh Benson! You have 2 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021786890b8199c3d80c") (index . 45) (guid . "9db9bc00-ea39-41c9-90ca-b1f13b2a0272") (isActive . False) (balance . "$2,116.03") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "blue") (name . "Kimberly Oneill") (gender . "female") (company . "COREPAN") (email . "kimberlyoneill@corepan.com") (phone . "+1 (847) 593-2704") (address . "406 Centre Street, Salix, Iowa, 6613") (about . "Tempor Lorem non pariatur ex et. Dolore labore magna cillum voluptate nulla id laborum in nostrud nostrud qui fugiat sit. Eu quis amet consequat ex est duis. Ad pariatur excepteur nulla tempor dolor laborum pariatur nulla mollit id ullamco. Elit consequat in do consequat ex amet consectetur.\r\n") (registered . "2015-06-23T12:38:43 +06:00") (latitude . -85.683674) (longitude . -18.904286) (tags . ("nulla" "veniam" "ea" "ad" "tempor" "sit" "nostrud")) (friends . (#((id . 0) (name . "Maryanne Dudley")) #((id . 1) (name . "Bowman Maynard")) #((id . 2) (name . "Blanchard Osborn")))) (greeting . "Hello, Kimberly Oneill! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217a71b93b4a7385cd6") (index . 46) (guid . "e67c8b1f-d68f-497e-a6a7-27675ceca98b") (isActive . False) (balance . "$2,884.23") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "blue") (name . "Felecia Clemons") (gender . "female") (company . "MYOPIUM") (email . "feleciaclemons@myopium.com") (phone . "+1 (919) 592-3011") (address . "867 Emmons Avenue, Gorham, California, 608") (about . "Elit eiusmod velit dolore et esse magna. Labore esse reprehenderit anim enim. Ex labore ea dolor do enim sint mollit do irure labore esse.\r\n") (registered . "2016-02-09T02:19:12 +07:00") (latitude . 53.698991) (longitude . 82.228415) (tags . ("excepteur" "minim" "sint" "ad" "id" "fugiat" "occaecat")) (friends . (#((id . 0) (name . "Tania Dennis")) #((id . 1) (name . "Davis Newman")) #((id . 2) (name . "Figueroa Michael")))) (greeting . "Hello, Felecia Clemons! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021775ab0f2580a8d51f") (index . 47) (guid . "d1d4f4b1-8dca-4e4d-ac54-7090a0c664da") (isActive . True) (balance . "$2,739.58") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "brown") (name . "Savage Barnes") (gender . "male") (company . "GINKLE") (email . "savagebarnes@ginkle.com") (phone . "+1 (967) 582-2737") (address . "385 Dekalb Avenue, Wedgewood, Wyoming, 3166") (about . "Enim dolore minim culpa sit nisi laborum irure voluptate quis anim amet exercitation. Laboris labore mollit reprehenderit Lorem ut sit fugiat deserunt labore Lorem commodo reprehenderit. Laborum elit ut minim dolore ut. Occaecat ex velit ut duis ad eiusmod mollit. Aute ex non minim consectetur nostrud laborum enim culpa. Incididunt ea proident non non sunt nulla irure officia.\r\n") (registered . "2015-03-10T02:31:33 +06:00") (latitude . -6.395855) (longitude . -150.902503) (tags . ("mollit" "nostrud" "magna" "elit" "labore" "in" "in")) (friends . (#((id . 0) (name . "Greer Morrow")) #((id . 1) (name . "Rhea Simon")) #((id . 2) (name . "Susanne Petersen")))) (greeting . "Hello, Savage Barnes! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217634deefe36abca1d") (index . 48) (guid . "f14eac0d-b321-4844-9199-e3c4c5bfc073") (isActive . True) (balance . "$3,256.80") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "brown") (name . "Margie Nixon") (gender . "female") (company . "NEUROCELL") (email . "margienixon@neurocell.com") (phone . "+1 (940) 542-2221") (address . "589 Midwood Street, Barrelville, Maryland, 6321") (about . "Sunt tempor do cupidatat commodo ad tempor velit. Ex duis elit consectetur velit. Incididunt sit mollit occaecat adipisicing sunt mollit in mollit magna do dolore culpa deserunt. Excepteur non dolore elit excepteur adipisicing sint exercitation dolor laborum enim Lorem. Minim ullamco ullamco cupidatat ipsum. Ad Lorem ex nulla ullamco sint.\r\n") (registered . "2016-07-23T03:44:28 +06:00") (latitude . -31.960952) (longitude . -50.348941) (tags . ("dolore" "in" "eiusmod" "amet" "duis" "officia" "anim")) (friends . (#((id . 0) (name . "Winifred Williamson")) #((id . 1) (name . "Bruce Shaffer")) #((id . 2) (name . "Snyder Mcclure")))) (greeting . "Hello, Margie Nixon! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021772061624328dcd51") (index . 49) (guid . "d59bb44a-e47a-442c-8e24-041b3b4fbdc6") (isActive . True) (balance . "$3,722.30") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "brown") (name . "Pope Lang") (gender . "male") (company . "ENVIRE") (email . "popelang@envire.com") (phone . "+1 (939) 430-2362") (address . "862 McKibbin Street, Wildwood, Louisiana, 4644") (about . "Duis voluptate adipisicing sint elit minim adipisicing. Reprehenderit voluptate ad do reprehenderit pariatur commodo esse proident Lorem. Exercitation aliquip cillum culpa aliquip pariatur veniam excepteur veniam pariatur dolore pariatur reprehenderit.\r\n") (registered . "2015-07-22T12:25:54 +06:00") (latitude . -74.338) (longitude . 46.387234) (tags . ("deserunt" "ullamco" "minim" "consectetur" "duis" "irure" "non")) (friends . (#((id . 0) (name . "Mai Cardenas")) #((id . 1) (name . "Tommie Donovan")) #((id . 2) (name . "Earnestine Melton")))) (greeting . "Hello, Pope Lang! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021787a29c61aa1317f7") (index . 50) (guid . "568b0e46-18fc-4556-a2d8-61bef706e6a7") (isActive . False) (balance . "$1,678.89") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "blue") (name . "Claudine Nolan") (gender . "female") (company . "ONTALITY") (email . "claudinenolan@ontality.com") (phone . "+1 (958) 551-3274") (address . "802 Bethel Loop, Beechmont, Federated States Of Micronesia, 9434") (about . "Nisi ut in ipsum id tempor irure aliqua nisi pariatur in commodo. Anim deserunt nulla cillum incididunt. Ullamco consectetur excepteur id dolore dolor sunt. Sit laborum est eu velit ut occaecat ut laboris. Ut eu do irure commodo nostrud consequat aute amet non mollit in in anim ex. Tempor incididunt ea in enim excepteur cillum laborum magna duis minim tempor labore.\r\n") (registered . "2016-04-23T01:55:50 +06:00") (latitude . 85.309441) (longitude . -94.055922) (tags . ("dolore" "elit" "Lorem" "mollit" "minim" "aliqua" "id")) (friends . (#((id . 0) (name . "Marla Anderson")) #((id . 1) (name . "Conley Graham")) #((id . 2) (name . "Petty Campbell")))) (greeting . "Hello, Claudine Nolan! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217b7df0d6238058bd0") (index . 51) (guid . "2b3c8fed-ef11-4b24-9fc6-f9d1cfcce483") (isActive . True) (balance . "$1,485.93") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "green") (name . "Marci Swanson") (gender . "female") (company . "ANACHO") (email . "marciswanson@anacho.com") (phone . "+1 (953) 540-3841") (address . "792 King Street, Glasgow, Pennsylvania, 1964") (about . "Laboris consequat amet sit quis sit est mollit laboris cupidatat reprehenderit reprehenderit commodo excepteur. Do mollit pariatur proident minim anim. Cupidatat labore pariatur officia ad esse ullamco. Non laboris sunt consequat exercitation mollit aliquip ut. Et magna aute ipsum enim. Elit laboris ut magna excepteur et mollit. Qui velit consectetur eu enim incididunt sit.\r\n") (registered . "2014-05-16T12:55:31 +06:00") (latitude . -32.396255) (longitude . -94.271146) (tags . ("reprehenderit" "qui" "velit" "ipsum" "cupidatat" "aliquip" "labore")) (friends . (#((id . 0) (name . "Alma Glenn")) #((id . 1) (name . "Clayton Ford")) #((id . 2) (name . "Brittany Burns")))) (greeting . "Hello, Marci Swanson! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302176defa3ca6e81cfee") (index . 52) (guid . "752b8119-d771-47be-9c55-30ce5ca64f16") (isActive . True) (balance . "$1,727.61") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "brown") (name . "Beth Glover") (gender . "female") (company . "SUREMAX") (email . "bethglover@suremax.com") (phone . "+1 (901) 499-2431") (address . "562 Montieth Street, Winston, Vermont, 9984") (about . "Laborum enim enim nisi pariatur officia id tempor. Laborum cupidatat dolor officia irure duis exercitation. Minim fugiat mollit Lorem veniam do nulla dolor esse quis ea. Voluptate aliquip aute dolore pariatur non. Et reprehenderit aute est do nostrud do laborum voluptate nostrud occaecat. Reprehenderit pariatur ad esse adipisicing enim sint.\r\n") (registered . "2016-03-19T07:48:49 +06:00") (latitude . 23.533808) (longitude . 124.312373) (tags . ("nulla" "qui" "Lorem" "est" "tempor" "sunt" "dolore")) (friends . (#((id . 0) (name . "Amelia Bailey")) #((id . 1) (name . "Samantha Meadows")) #((id . 2) (name . "Castillo Flowers")))) (greeting . "Hello, Beth Glover! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302176c36b6343db71ebf") (index . 53) (guid . "d3c0e657-f9a1-4586-96f9-22e944918af1") (isActive . False) (balance . "$2,115.03") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "brown") (name . "Miles Duran") (gender . "male") (company . "ACCUPRINT") (email . "milesduran@accuprint.com") (phone . "+1 (975) 552-2215") (address . "316 Grafton Street, Movico, Maine, 4276") (about . "Pariatur ullamco incididunt sit deserunt aute aute sunt laborum fugiat cillum proident aliquip cupidatat nisi. Labore labore reprehenderit irure ut incididunt esse velit consectetur. Nulla velit velit ea ea velit.\r\n") (registered . "2017-04-18T04:02:47 +06:00") (latitude . 7.584642) (longitude . -90.11821) (tags . ("veniam" "voluptate" "aute" "commodo" "adipisicing" "elit" "cillum")) (friends . (#((id . 0) (name . "Fay Barton")) #((id . 1) (name . "Edith Higgins")) #((id . 2) (name . "Debora Drake")))) (greeting . "Hello, Miles Duran! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021773ac62f7490e20f3") (index . 54) (guid . "b51ac8ad-c699-448d-98b3-42648c877cb2") (isActive . False) (balance . "$3,706.41") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "green") (name . "Delores Gomez") (gender . "female") (company . "ZIPAK") (email . "deloresgomez@zipak.com") (phone . "+1 (965) 563-3504") (address . "431 Royce Street, Hillsboro, Alaska, 1739") (about . "Est elit dolore exercitation laborum eiusmod mollit tempor. Consequat occaecat velit consectetur ipsum reprehenderit pariatur velit velit dolor dolor ut. Aliquip ut nulla sit esse Lorem. Incididunt ipsum non occaecat sint irure duis quis id cillum tempor ex veniam esse. Minim ullamco irure laborum qui in sint ut voluptate aute. Nisi nisi veniam quis adipisicing dolore. Fugiat deserunt laborum eu dolor minim quis velit exercitation voluptate commodo cillum laborum enim.\r\n") (registered . "2015-03-25T07:13:03 +06:00") (latitude . 72.182793) (longitude . 91.175453) (tags . ("Lorem" "ullamco" "aliquip" "reprehenderit" "reprehenderit" "culpa" "do")) (friends . (#((id . 0) (name . "Jeanne Burks")) #((id . 1) (name . "Beard Marsh")) #((id . 2) (name . "Jillian Davidson")))) (greeting . "Hello, Delores Gomez! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302179b9db1082c9ea6b5") (index . 55) (guid . "3d2e80a0-2ade-4349-9e6e-9b8d1a42fe5a") (isActive . False) (balance . "$1,041.94") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "brown") (name . "Cooke Rivas") (gender . "male") (company . "GEEKOL") (email . "cookerivas@geekol.com") (phone . "+1 (843) 519-3980") (address . "101 Seagate Avenue, Esmont, Palau, 1459") (about . "Ad proident do laboris sit magna proident cillum ullamco ullamco non. In cupidatat tempor aliquip sit et pariatur duis. Voluptate voluptate deserunt elit occaecat. Sunt sit quis aute fugiat laboris cupidatat sit aliqua irure incididunt consequat. Sit cupidatat irure duis aliqua laboris. Ea cillum laboris veniam est.\r\n") (registered . "2015-01-08T07:56:01 +07:00") (latitude . 82.888367) (longitude . 52.57426) (tags . ("laboris" "ad" "incididunt" "non" "pariatur" "enim" "eiusmod")) (friends . (#((id . 0) (name . "Penelope Stevenson")) #((id . 1) (name . "Spence Hull")) #((id . 2) (name . "Ebony Barron")))) (greeting . "Hello, Cooke Rivas! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217e35c52bc9e016aad") (index . 56) (guid . "8284845e-4c8f-4bb6-9c32-b4a5a49bd81f") (isActive . False) (balance . "$2,251.47") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "brown") (name . "Christensen Walsh") (gender . "male") (company . "NSPIRE") (email . "christensenwalsh@nspire.com") (phone . "+1 (960) 440-3851") (address . "402 Pineapple Street, Islandia, Arkansas, 3366") (about . "Sit velit aliqua qui culpa voluptate anim voluptate reprehenderit. Excepteur deserunt eu laboris dolor cupidatat sunt. Tempor nostrud ea dolore sint eiusmod laborum reprehenderit enim aliquip.\r\n") (registered . "2018-02-01T07:11:25 +07:00") (latitude . -81.389882) (longitude . 130.232244) (tags . ("excepteur" "veniam" "commodo" "esse" "voluptate" "ad" "deserunt")) (friends . (#((id . 0) (name . "Sandra Welch")) #((id . 1) (name . "Wells Klein")) #((id . 2) (name . "Holmes Wilder")))) (greeting . "Hello, Christensen Walsh! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217c2bd6ecbb0175bb6") (index . 57) (guid . "8e2ea4b4-c8d0-4eaa-a813-92a28e1fd1bf") (isActive . True) (balance . "$1,904.23") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "blue") (name . "Odessa Manning") (gender . "female") (company . "KAGE") (email . "odessamanning@kage.com") (phone . "+1 (897) 562-3319") (address . "428 Girard Street, Matthews, Florida, 8133") (about . "Velit occaecat ea sint ullamco cillum sunt amet tempor cupidatat qui. Adipisicing ipsum exercitation proident non duis magna id sint. Excepteur aute enim sit elit anim ex enim mollit. Ut aute occaecat aliquip elit irure sit velit sunt eiusmod mollit excepteur. Sint voluptate laborum sit labore ex ullamco cupidatat nostrud elit. Laboris minim anim excepteur proident pariatur exercitation. Pariatur qui cupidatat nulla nulla deserunt ullamco ex cupidatat.\r\n") (registered . "2014-11-29T08:11:49 +07:00") (latitude . 57.889692) (longitude . 99.002918) (tags . ("laborum" "elit" "veniam" "nostrud" "velit" "adipisicing" "consequat")) (friends . (#((id . 0) (name . "Cannon Murphy")) #((id . 1) (name . "Moses Alvarado")) #((id . 2) (name . "Thomas Singleton")))) (greeting . "Hello, Odessa Manning! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302171a707a03b8594866") (index . 58) (guid . "8438f392-2fba-45c9-904e-55489512d4f2") (isActive . False) (balance . "$3,239.98") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "blue") (name . "Phyllis Wyatt") (gender . "female") (company . "EXTREMO") (email . "phylliswyatt@extremo.com") (phone . "+1 (813) 569-3803") (address . "900 Florence Avenue, Jessie, Puerto Rico, 3063") (about . "Lorem et nisi labore Lorem officia minim duis ipsum sint minim fugiat. Elit ad velit occaecat et ex duis adipisicing nostrud sunt. Fugiat eiusmod ullamco laborum sint anim labore ea sint pariatur ad. Esse Lorem in sint labore proident aute labore elit consectetur consectetur ad sint. Consequat sint enim laborum elit ea quis ullamco proident esse dolore aute excepteur cillum laborum. Ad sit est occaecat do voluptate. Anim anim nulla consequat ullamco proident sit fugiat pariatur esse aliquip laboris.\r\n") (registered . "2016-12-21T08:56:27 +07:00") (latitude . -20.975095) (longitude . 110.618525) (tags . ("cillum" "dolore" "irure" "voluptate" "eiusmod" "dolor" "sit")) (friends . (#((id . 0) (name . "Michelle Larsen")) #((id . 1) (name . "Baxter Avila")) #((id . 2) (name . "Corina Calderon")))) (greeting . "Hello, Phyllis Wyatt! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217c90b07bd97eb2a82") (index . 59) (guid . "38b86d7f-3ef6-4db9-a50e-ec8f3fdfd280") (isActive . False) (balance . "$3,869.31") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "brown") (name . "Reeves Wood") (gender . "male") (company . "INVENTURE") (email . "reeveswood@inventure.com") (phone . "+1 (816) 511-3756") (address . "134 Clarendon Road, Babb, Hawaii, 7455") (about . "Excepteur sint reprehenderit ad dolore et non aliqua et et duis sunt elit veniam. Consectetur sit est ut eiusmod dolor aliqua nulla irure ullamco veniam proident esse cillum. Adipisicing magna consequat duis dolor ipsum voluptate in aliquip ad ipsum ex minim veniam. Reprehenderit duis incididunt ut occaecat reprehenderit nisi irure culpa mollit aute laboris. Nisi fugiat sint voluptate qui pariatur.\r\n") (registered . "2015-09-01T06:46:16 +06:00") (latitude . -21.621358) (longitude . -5.64309) (tags . ("est" "cillum" "fugiat" "Lorem" "eiusmod" "laboris" "consectetur")) (friends . (#((id . 0) (name . "Cummings Dale")) #((id . 1) (name . "Estelle Hurley")) #((id . 2) (name . "Russo Mclean")))) (greeting . "Hello, Reeves Wood! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217aed6c35ee08650aa") (index . 60) (guid . "f5eb50d1-6d9e-4676-83c0-b2dea6d646dc") (isActive . False) (balance . "$1,512.17") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "brown") (name . "Harriet Shaw") (gender . "female") (company . "EXTRO") (email . "harrietshaw@extro.com") (phone . "+1 (979) 401-2592") (address . "758 Oceanic Avenue, Henrietta, American Samoa, 5750") (about . "Officia mollit nulla consequat ad dolor irure aliquip exercitation ullamco cillum. Labore irure labore minim excepteur eu et. Reprehenderit occaecat qui laborum cillum ut mollit laboris. Dolore sint adipisicing elit id proident nisi ea aliquip qui dolore ad. Dolore qui veniam ad quis tempor cillum mollit. Eiusmod do aliquip qui nisi dolor. Culpa in cupidatat pariatur cupidatat voluptate eu veniam cupidatat cillum aliqua sit irure.\r\n") (registered . "2016-07-19T01:16:34 +06:00") (latitude . 87.994911) (longitude . 34.83103) (tags . ("commodo" "dolore" "mollit" "esse" "deserunt" "sint" "consequat")) (friends . (#((id . 0) (name . "Kris Nichols")) #((id . 1) (name . "Rena Combs")) #((id . 2) (name . "Corrine Rodgers")))) (greeting . "Hello, Harriet Shaw! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021747b5181f73f9d9dc") (index . 61) (guid . "95c1c574-9af0-41ed-9beb-c92ea30a9a37") (isActive . True) (balance . "$3,529.36") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "green") (name . "Meyer Rowland") (gender . "male") (company . "ENTROPIX") (email . "meyerrowland@entropix.com") (phone . "+1 (908) 409-2225") (address . "587 Lancaster Avenue, Blandburg, Indiana, 4110") (about . "Ipsum proident occaecat ea minim duis eu ex sit voluptate ullamco consectetur reprehenderit veniam voluptate. Ut occaecat consequat ea sunt aliqua officia incididunt in reprehenderit labore aliquip et fugiat. Irure ullamco nostrud enim ea mollit pariatur magna nisi veniam est excepteur non aliqua. Nisi magna tempor amet dolor. Sunt labore anim ex proident esse in sit aliquip elit. Quis sunt aliquip cupidatat anim commodo tempor.\r\n") (registered . "2017-05-01T02:46:32 +06:00") (latitude . -58.46728) (longitude . -133.813788) (tags . ("et" "voluptate" "laborum" "nisi" "ullamco" "deserunt" "proident")) (friends . (#((id . 0) (name . "Chapman Bridges")) #((id . 1) (name . "Keith Jennings")) #((id . 2) (name . "Crane Bell")))) (greeting . "Hello, Meyer Rowland! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217c6c8de9715ab46b1") (index . 62) (guid . "1934acd7-5650-458a-b536-efd95c7a16b8") (isActive . False) (balance . "$1,481.75") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "brown") (name . "Polly Mccullough") (gender . "female") (company . "COASH") (email . "pollymccullough@coash.com") (phone . "+1 (881) 495-3473") (address . "279 Poplar Avenue, Indio, Missouri, 2011") (about . "Culpa in id reprehenderit est officia quis aute ea elit dolore. Nisi incididunt pariatur exercitation ad ad cupidatat enim fugiat ullamco. Ullamco voluptate nulla minim nulla mollit laborum id sint. Laborum in consequat tempor dolore. Tempor sunt occaecat elit proident. Laborum ut consectetur ut labore incididunt duis fugiat voluptate qui.\r\n") (registered . "2014-05-24T09:40:30 +06:00") (latitude . -61.595807) (longitude . -78.466036) (tags . ("duis" "ipsum" "tempor" "incididunt" "qui" "anim" "aliquip")) (friends . (#((id . 0) (name . "Glenna Williams")) #((id . 1) (name . "Sylvia Nunez")) #((id . 2) (name . "Veronica Rutledge")))) (greeting . "Hello, Polly Mccullough! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021760cc531dd359100d") (index . 63) (guid . "e57c6212-01ba-4f37-a4b7-cbba7b6d4da4") (isActive . False) (balance . "$2,120.96") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "green") (name . "Francis Noel") (gender . "male") (company . "COMVOY") (email . "francisnoel@comvoy.com") (phone . "+1 (979) 536-2051") (address . "363 Gerry Street, Leroy, Guam, 6493") (about . "Enim excepteur reprehenderit do reprehenderit nisi reprehenderit duis fugiat laborum aliquip officia sunt eu consectetur. Dolor proident dolore non velit duis id voluptate do Lorem non officia Lorem laboris labore. Excepteur deserunt irure consectetur nostrud amet eu. Velit sit mollit dolor eiusmod. Aliquip ipsum irure occaecat reprehenderit culpa dolor est dolor ad. Culpa proident eu Lorem non deserunt ipsum occaecat consectetur deserunt anim magna cillum aliqua.\r\n") (registered . "2017-05-10T03:09:50 +06:00") (latitude . -1.219317) (longitude . 55.767075) (tags . ("in" "aliquip" "officia" "duis" "sunt" "incididunt" "labore")) (friends . (#((id . 0) (name . "Tonia Lane")) #((id . 1) (name . "Mallory Sloan")) #((id . 2) (name . "Leona Barlow")))) (greeting . "Hello, Francis Noel! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217445b96e3e6c0cdf4") (index . 64) (guid . "a8eba882-b6bc-4dc5-a4ee-027886a80f45") (isActive . False) (balance . "$2,950.32") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "brown") (name . "Reilly Carpenter") (gender . "male") (company . "SILODYNE") (email . "reillycarpenter@silodyne.com") (phone . "+1 (875) 487-3818") (address . "938 Vandalia Avenue, Allamuchy, Minnesota, 335") (about . "Proident minim aliquip esse cupidatat aliqua aliquip. Occaecat deserunt reprehenderit est sunt in consectetur minim velit ex reprehenderit incididunt. Adipisicing commodo aliqua Lorem ex anim do est dolor quis minim. Eiusmod amet sint nulla do occaecat nulla et sint irure ut voluptate voluptate non. Excepteur labore cillum pariatur sunt exercitation ullamco aliquip. Officia quis ipsum qui minim magna elit irure consequat aliqua pariatur. Aliquip sit in nisi sint aliqua adipisicing voluptate anim incididunt voluptate labore.\r\n") (registered . "2015-12-15T09:25:28 +07:00") (latitude . 72.64113) (longitude . 119.835171) (tags . ("incididunt" "esse" "et" "enim" "consectetur" "enim" "aliqua")) (friends . (#((id . 0) (name . "Bobbie Browning")) #((id . 1) (name . "Janine Ayers")) #((id . 2) (name . "Allison Prince")))) (greeting . "Hello, Reilly Carpenter! You have 2 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217393470d14e09e05b") (index . 65) (guid . "720a959b-0b8f-4231-b645-3710b93423ad") (isActive . False) (balance . "$3,899.94") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "green") (name . "Marjorie Wilson") (gender . "female") (company . "ACUMENTOR") (email . "marjoriewilson@acumentor.com") (phone . "+1 (816) 590-3735") (address . "331 Sapphire Street, Caron, Delaware, 2726") (about . "Aliquip consequat aliquip cupidatat veniam culpa labore sit cillum ipsum commodo eiusmod ipsum fugiat sunt. Ad in non ullamco aliquip aliqua. Commodo tempor ea esse sunt sit ipsum fugiat sunt non occaecat.\r\n") (registered . "2018-01-24T06:39:54 +07:00") (latitude . 68.896151) (longitude . 165.220645) (tags . ("exercitation" "fugiat" "reprehenderit" "ea" "duis" "ea" "nostrud")) (friends . (#((id . 0) (name . "Effie Mcintyre")) #((id . 1) (name . "Shelley Aguilar")) #((id . 2) (name . "Cameron Daniels")))) (greeting . "Hello, Marjorie Wilson! You have 2 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302179f14d9d2cc6ca684") (index . 66) (guid . "d9356709-5677-4ff9-941b-1cbee16373c1") (isActive . True) (balance . "$3,157.76") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "brown") (name . "Ernestine Rios") (gender . "female") (company . "ANARCO") (email . "ernestinerios@anarco.com") (phone . "+1 (837) 597-3834") (address . "781 Arlington Avenue, Freetown, Kansas, 4796") (about . "Cupidatat aliqua ut consequat reprehenderit aute. Excepteur velit veniam sunt qui est officia labore ut. Id aliquip exercitation tempor dolore tempor eiusmod nostrud enim nisi id duis.\r\n") (registered . "2014-08-14T08:09:27 +06:00") (latitude . 52.311701) (longitude . -176.750511) (tags . ("ipsum" "ad" "incididunt" "incididunt" "irure" "mollit" "labore")) (friends . (#((id . 0) (name . "Norton Nguyen")) #((id . 1) (name . "Holman Sellers")) #((id . 2) (name . "Billie Cain")))) (greeting . "Hello, Ernestine Rios! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217dc7c9fa5bed62ba1") (index . 67) (guid . "1878e884-7ffa-41d6-a430-8c03cc748853") (isActive . True) (balance . "$2,533.59") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "blue") (name . "Bender Mullen") (gender . "male") (company . "SPHERIX") (email . "bendermullen@spherix.com") (phone . "+1 (978) 410-2640") (address . "842 Brighton Court, Leyner, Washington, 9270") (about . "Laboris do labore pariatur nisi ad consectetur pariatur esse veniam pariatur duis exercitation commodo. Voluptate tempor laborum duis occaecat aliqua tempor fugiat aliqua sunt ullamco veniam anim sunt magna. Pariatur cupidatat laborum labore id. Dolore exercitation aute minim nostrud velit adipisicing.\r\n") (registered . "2018-01-16T11:57:36 +07:00") (latitude . 15.037049) (longitude . 15.287349) (tags . ("proident" "anim" "eu" "labore" "tempor" "et" "duis")) (friends . (#((id . 0) (name . "Harrington Rich")) #((id . 1) (name . "Elizabeth Wall")) #((id . 2) (name . "Meyers Mosley")))) (greeting . "Hello, Bender Mullen! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302176c7fafb0f1df0b70") (index . 68) (guid . "28aba1a9-1018-4779-b241-ebde8120f6f0") (isActive . False) (balance . "$1,780.61") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "green") (name . "Jimmie Rodriquez") (gender . "female") (company . "COMBOGEN") (email . "jimmierodriquez@combogen.com") (phone . "+1 (902) 498-2228") (address . "889 Doone Court, Fontanelle, Oklahoma, 7607") (about . "Labore laboris irure ipsum commodo quis est officia mollit labore officia pariatur. Aute incididunt ullamco incididunt Lorem minim quis nulla do labore aliquip. Occaecat exercitation pariatur pariatur exercitation laboris occaecat. Ea nisi voluptate id consectetur laborum magna ipsum magna. Cillum dolore minim id occaecat dolor. Do mollit occaecat excepteur tempor incididunt cupidatat ipsum aliquip aliqua ex in consectetur.\r\n") (registered . "2015-11-03T05:58:34 +07:00") (latitude . -53.417243) (longitude . -145.075794) (tags . ("do" "anim" "nisi" "consectetur" "aliqua" "laboris" "veniam")) (friends . (#((id . 0) (name . "Benton Tanner")) #((id . 1) (name . "Randolph Moore")) #((id . 2) (name . "Madeleine Cameron")))) (greeting . "Hello, Jimmie Rodriquez! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217b8ce7f5050d543ea") (index . 69) (guid . "e2b95473-14c4-432c-a84e-adf5b149be6e") (isActive . True) (balance . "$3,084.21") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "brown") (name . "Dunlap Norton") (gender . "male") (company . "EPLOSION") (email . "dunlapnorton@eplosion.com") (phone . "+1 (965) 494-3860") (address . "358 Bennet Court, Westmoreland, Kentucky, 2297") (about . "Duis occaecat pariatur et dolor tempor anim nisi consequat culpa elit quis. Occaecat sit fugiat cillum mollit amet reprehenderit. Magna aute dolor qui ex tempor. Laboris mollit aute velit ullamco occaecat magna eu consequat aliquip nulla in sit labore ad.\r\n") (registered . "2015-07-02T02:02:54 +06:00") (latitude . 12.145972) (longitude . -85.561864) (tags . ("eu" "eiusmod" "adipisicing" "eiusmod" "qui" "Lorem" "laboris")) (friends . (#((id . 0) (name . "Sadie Tran")) #((id . 1) (name . "Gertrude Brewer")) #((id . 2) (name . "Angelina Nielsen")))) (greeting . "Hello, Dunlap Norton! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217b188c15c8911200d") (index . 70) (guid . "3f410329-8d32-4c7a-8d37-e987238063e3") (isActive . True) (balance . "$3,799.58") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "blue") (name . "Elise Harrell") (gender . "female") (company . "TERAPRENE") (email . "eliseharrell@teraprene.com") (phone . "+1 (952) 573-3173") (address . "964 Lawn Court, Saranap, Alabama, 5402") (about . "Lorem labore id ea minim veniam mollit. Duis eu culpa ad nulla cillum excepteur elit veniam minim enim esse tempor occaecat. Ex pariatur in do eu eu dolor laboris mollit.\r\n") (registered . "2015-10-19T12:51:06 +06:00") (latitude . 67.582742) (longitude . 8.034446) (tags . ("proident" "irure" "duis" "est" "proident" "in" "occaecat")) (friends . (#((id . 0) (name . "Mayer Valdez")) #((id . 1) (name . "Betty Hess")) #((id . 2) (name . "Hilary Suarez")))) (greeting . "Hello, Elise Harrell! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217de962bde97801a97") (index . 71) (guid . "3da779a7-f582-40d8-adce-5d1185c594fc") (isActive . False) (balance . "$2,662.97") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "green") (name . "Solomon Logan") (gender . "male") (company . "KYAGURU") (email . "solomonlogan@kyaguru.com") (phone . "+1 (902) 524-2020") (address . "732 Hale Avenue, Chelsea, West Virginia, 7994") (about . "Aute aliqua eiusmod exercitation eiusmod deserunt ut commodo aliquip adipisicing minim in ea esse. Sit cupidatat irure ipsum adipisicing ut qui ipsum dolore cupidatat adipisicing minim exercitation. Ad do est nostrud non aliquip occaecat. Qui eiusmod qui ea minim velit adipisicing eiusmod esse aliqua nisi dolor est. Tempor labore dolore nulla elit adipisicing incididunt sint esse mollit eu consequat esse. Dolor anim ut ea velit laborum consequat ad reprehenderit id aute dolor pariatur. Veniam qui nulla ut fugiat id sit incididunt enim officia voluptate.\r\n") (registered . "2014-03-02T04:52:42 +07:00") (latitude . -47.300933) (longitude . -164.765491) (tags . ("labore" "enim" "cupidatat" "consequat" "duis" "est" "proident")) (friends . (#((id . 0) (name . "Millicent Reyes")) #((id . 1) (name . "Baird Joyner")) #((id . 2) (name . "Opal Jones")))) (greeting . "Hello, Solomon Logan! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021799a342c0a154f594") (index . 72) (guid . "984a2fa4-b32c-4842-b968-380d9fe32db4") (isActive . False) (balance . "$1,928.67") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "blue") (name . "Ewing Fulton") (gender . "male") (company . "DYMI") (email . "ewingfulton@dymi.com") (phone . "+1 (896) 537-2146") (address . "231 Liberty Avenue, Idamay, Ohio, 3891") (about . "Enim labore enim reprehenderit laboris esse pariatur consequat exercitation sit consectetur sit proident. Elit ea ut excepteur voluptate laboris dolor qui magna cupidatat adipisicing culpa est. Exercitation do excepteur veniam Lorem incididunt nisi.\r\n") (registered . "2016-08-12T04:32:38 +06:00") (latitude . 85.114903) (longitude . -92.479) (tags . ("voluptate" "deserunt" "irure" "incididunt" "adipisicing" "cupidatat" "non")) (friends . (#((id . 0) (name . "Eula Mayo")) #((id . 1) (name . "Tina Daugherty")) #((id . 2) (name . "Young Sims")))) (greeting . "Hello, Ewing Fulton! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302172cbe0306377fd8b5") (index . 73) (guid . "ea05de51-48e4-4e7b-92f0-37d3d4bf4ce8") (isActive . False) (balance . "$3,894.93") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "green") (name . "Faulkner Mcintosh") (gender . "male") (company . "ZOGAK") (email . "faulknermcintosh@zogak.com") (phone . "+1 (821) 523-2137") (address . "797 Harrison Place, Hobucken, Connecticut, 3567") (about . "Labore do non ad ut ea proident deserunt nulla ullamco laboris. Voluptate quis anim sunt laboris aute pariatur. Amet aute incididunt voluptate aliquip. Cupidatat cupidatat irure quis anim ex anim veniam. Occaecat duis qui fugiat exercitation occaecat.\r\n") (registered . "2015-07-27T01:52:03 +06:00") (latitude . 50.71933) (longitude . 103.497697) (tags . ("cillum" "non" "laborum" "ipsum" "reprehenderit" "cillum" "pariatur")) (friends . (#((id . 0) (name . "Becker Townsend")) #((id . 1) (name . "Rosetta Osborne")) #((id . 2) (name . "Krista Workman")))) (greeting . "Hello, Faulkner Mcintosh! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217ce4ab83797dda8f7") (index . 74) (guid . "03cdbcef-6b46-4d91-b16b-5f67debc6640") (isActive . False) (balance . "$3,348.45") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "green") (name . "Jan Marquez") (gender . "female") (company . "ACIUM") (email . "janmarquez@acium.com") (phone . "+1 (840) 450-3859") (address . "729 Lyme Avenue, Independence, North Dakota, 8791") (about . "Lorem anim do officia et sunt pariatur Lorem. Veniam tempor Lorem ea nisi dolor proident ad dolore exercitation fugiat deserunt magna minim. Aliqua exercitation cillum reprehenderit incididunt magna elit tempor ullamco ea. Labore dolore culpa esse Lorem sit eiusmod Lorem culpa. Enim exercitation commodo irure esse.\r\n") (registered . "2015-01-10T11:36:13 +07:00") (latitude . 15.905248) (longitude . 77.682807) (tags . ("mollit" "sint" "cillum" "sit" "cupidatat" "qui" "proident")) (friends . (#((id . 0) (name . "Stout Everett")) #((id . 1) (name . "Gale Briggs")) #((id . 2) (name . "Guerrero Howe")))) (greeting . "Hello, Jan Marquez! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217ef33a04d02d58786") (index . 75) (guid . "d8771250-4e2d-4e33-96fd-f42342254ba8") (isActive . False) (balance . "$3,105.78") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "green") (name . "Norman Odonnell") (gender . "male") (company . "IDEGO") (email . "normanodonnell@idego.com") (phone . "+1 (937) 437-3894") (address . "714 Hinsdale Street, Manitou, Mississippi, 5722") (about . "Irure eu magna quis aute in adipisicing anim fugiat dolor. Consectetur sunt laboris amet nulla culpa cillum. Do reprehenderit veniam amet est officia elit elit incididunt reprehenderit cillum.\r\n") (registered . "2017-06-02T08:15:09 +06:00") (latitude . 52.666801) (longitude . 92.659067) (tags . ("cupidatat" "esse" "exercitation" "ea" "proident" "anim" "id")) (friends . (#((id . 0) (name . "Michael Copeland")) #((id . 1) (name . "Bartlett Guy")) #((id . 2) (name . "Mcgee Hayes")))) (greeting . "Hello, Norman Odonnell! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217803b9d191174e083") (index . 76) (guid . "e8dd8836-e073-412b-8d26-79251ec2f365") (isActive . True) (balance . "$2,657.64") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "green") (name . "Lane Walls") (gender . "male") (company . "PETICULAR") (email . "lanewalls@peticular.com") (phone . "+1 (846) 506-2803") (address . "284 Alabama Avenue, Bedias, New York, 176") (about . "Eu veniam aliquip amet eu occaecat ullamco qui tempor do dolor aliquip excepteur nisi. Nisi magna sit elit proident do occaecat in ipsum minim Lorem fugiat magna cupidatat aliqua. In Lorem commodo amet exercitation aute pariatur laborum consectetur veniam irure. Ad voluptate reprehenderit est excepteur eiusmod adipisicing qui eu culpa qui quis culpa irure. Nostrud anim voluptate labore sunt incididunt id cillum.\r\n") (registered . "2017-05-05T08:27:54 +06:00") (latitude . 23.47304) (longitude . 2.663264) (tags . ("in" "incididunt" "anim" "aliquip" "mollit" "ex" "sunt")) (friends . (#((id . 0) (name . "Sherman Stone")) #((id . 1) (name . "Adkins Harper")) #((id . 2) (name . "Rice Kerr")))) (greeting . "Hello, Lane Walls! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021771bdf52a00d8330e") (index . 77) (guid . "53db5e69-1860-4c19-a558-7137366ba326") (isActive . False) (balance . "$2,800.16") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "green") (name . "Avila Hinton") (gender . "male") (company . "AVIT") (email . "avilahinton@avit.com") (phone . "+1 (966) 555-3370") (address . "625 Aster Court, Wolcott, Oregon, 3459") (about . "Aliqua laboris incididunt consequat labore ad dolor labore non excepteur sit voluptate officia. Dolor dolore magna nulla adipisicing sint. Dolore ad sint ullamco magna eu dolor duis eiusmod commodo amet fugiat sit eiusmod.\r\n") (registered . "2014-04-17T03:24:56 +06:00") (latitude . 32.205154) (longitude . -84.373699) (tags . ("pariatur" "in" "veniam" "cupidatat" "dolore" "veniam" "ex")) (friends . (#((id . 0) (name . "Jacquelyn Donaldson")) #((id . 1) (name . "Luna Shields")) #((id . 2) (name . "Leanne Reynolds")))) (greeting . "Hello, Avila Hinton! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021715c8da8495b94764") (index . 78) (guid . "1faa24a3-f06e-4d4d-abf1-11aeb299b872") (isActive . True) (balance . "$1,150.11") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "blue") (name . "Eva Pope") (gender . "female") (company . "FORTEAN") (email . "evapope@fortean.com") (phone . "+1 (959) 411-2509") (address . "374 Verona Street, Wauhillau, New Jersey, 6105") (about . "Occaecat ipsum reprehenderit do pariatur nulla nisi. Ex esse eiusmod est commodo id ipsum ipsum mollit velit incididunt amet mollit. Irure aliqua et non laborum ea cillum sit laboris nulla.\r\n") (registered . "2017-03-30T04:58:56 +06:00") (latitude . -51.298425) (longitude . 99.320422) (tags . ("laborum" "exercitation" "dolor" "laboris" "officia" "fugiat" "Lorem")) (friends . (#((id . 0) (name . "Mercado Best")) #((id . 1) (name . "Amanda Fox")) #((id . 2) (name . "Cervantes Clark")))) (greeting . "Hello, Eva Pope! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217dbf5d001d1e67b9c") (index . 79) (guid . "478cb147-840e-4b66-82c6-afd836dd8d78") (isActive . True) (balance . "$3,621.74") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "brown") (name . "Carlson Gonzalez") (gender . "male") (company . "OZEAN") (email . "carlsongonzalez@ozean.com") (phone . "+1 (814) 484-3622") (address . "613 Amber Street, Beaulieu, Montana, 9455") (about . "Aliqua dolor mollit nulla ea ad consequat esse ea nisi labore labore qui officia. Irure dolore cupidatat aliquip et consequat duis. Culpa nostrud fugiat exercitation cupidatat culpa ad veniam et fugiat occaecat velit occaecat qui. Deserunt anim consequat non deserunt veniam adipisicing qui enim excepteur duis mollit sunt. Ipsum cillum minim ad nisi magna. Ut laboris enim nostrud enim aliqua mollit ad consequat proident deserunt qui enim veniam. Ad elit ad velit adipisicing ea in velit exercitation ut nostrud eiusmod.\r\n") (registered . "2014-02-01T12:40:07 +07:00") (latitude . -48.968329) (longitude . 4.329913) (tags . ("nisi" "labore" "magna" "nisi" "est" "enim" "quis")) (friends . (#((id . 0) (name . "Kathleen Little")) #((id . 1) (name . "Rodriquez Sawyer")) #((id . 2) (name . "Sampson Bauer")))) (greeting . "Hello, Carlson Gonzalez! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302176699268a853a4b70") (index . 80) (guid . "23622573-978e-4627-a3b4-9113aec9efc9") (isActive . False) (balance . "$3,213.80") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "green") (name . "Pennington Blake") (gender . "male") (company . "CYCLONICA") (email . "penningtonblake@cyclonica.com") (phone . "+1 (890) 587-2827") (address . "667 Lafayette Avenue, Dana, Nevada, 5631") (about . "Ullamco est sit est laboris adipisicing voluptate non officia sit. Irure deserunt reprehenderit voluptate elit ea labore duis sit voluptate. Ullamco adipisicing eu reprehenderit ipsum est ex aute consequat culpa nostrud sunt ut et quis. Fugiat laboris cillum dolor anim. Esse laboris et sit veniam pariatur mollit occaecat mollit officia amet pariatur est in Lorem. Nisi quis cupidatat duis enim. Culpa pariatur aliqua ipsum id et dolore voluptate ex tempor eu non officia velit proident.\r\n") (registered . "2016-08-09T05:31:38 +06:00") (latitude . 8.770152) (longitude . 8.413235) (tags . ("excepteur" "excepteur" "ullamco" "aliquip" "velit" "commodo" "cillum")) (friends . (#((id . 0) (name . "Gail Rasmussen")) #((id . 1) (name . "Britney Camacho")) #((id . 2) (name . "Hopkins Justice")))) (greeting . "Hello, Pennington Blake! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302174eb56534c6eaaca2") (index . 81) (guid . "60751ef3-3214-404a-bca1-ddb1c2026b87") (isActive . True) (balance . "$2,792.82") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "blue") (name . "Dee Rowe") (gender . "female") (company . "NETAGY") (email . "deerowe@netagy.com") (phone . "+1 (970) 483-3449") (address . "278 Banner Avenue, Groveville, Colorado, 5435") (about . "Mollit voluptate reprehenderit consequat fugiat. Cupidatat occaecat culpa cillum pariatur sit sint fugiat tempor labore fugiat reprehenderit. Aliquip incididunt veniam ut et aliquip non elit cupidatat ad. Fugiat enim ullamco elit dolore ea amet irure. Enim anim aliquip ipsum esse occaecat incididunt culpa. Officia id ipsum qui enim ad labore mollit reprehenderit et minim amet.\r\n") (registered . "2017-08-29T05:21:41 +06:00") (latitude . -60.565453) (longitude . 47.772691) (tags . ("aliqua" "irure" "incididunt" "cillum" "officia" "ipsum" "do")) (friends . (#((id . 0) (name . "Juarez Flynn")) #((id . 1) (name . "Ashlee Arnold")) #((id . 2) (name . "Mavis Parrish")))) (greeting . "Hello, Dee Rowe! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021715cef9f5176acc2b") (index . 82) (guid . "3edbcd31-6631-404e-8364-431549fa71d5") (isActive . False) (balance . "$1,902.89") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "brown") (name . "Cole Sheppard") (gender . "male") (company . "APEX") (email . "colesheppard@apex.com") (phone . "+1 (960) 429-2524") (address . "250 Montauk Avenue, Fairforest, New Mexico, 1544") (about . "Irure non ipsum ullamco laborum dolor. Non voluptate consequat excepteur officia nulla esse sint. Ipsum id reprehenderit id elit ullamco nulla ex labore. Culpa minim incididunt culpa consectetur ea minim. Dolor nulla nulla irure nostrud irure ad quis officia aliquip qui magna quis. Veniam do aliquip laborum aliqua ut commodo Lorem laboris voluptate enim. Consequat ullamco voluptate cupidatat ex voluptate pariatur proident.\r\n") (registered . "2016-11-07T01:48:40 +07:00") (latitude . -59.914687) (longitude . -84.44904) (tags . ("eiusmod" "sint" "aute" "quis" "commodo" "do" "dolor")) (friends . (#((id . 0) (name . "Franks Farmer")) #((id . 1) (name . "Montgomery Olsen")) #((id . 2) (name . "Corinne Lambert")))) (greeting . "Hello, Cole Sheppard! You have 8 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021752e940b29f47e8c0") (index . 83) (guid . "e1ff2571-ca98-4ef3-a10e-a8d428fd45af") (isActive . True) (balance . "$2,406.12") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "blue") (name . "Stacy Phillips") (gender . "female") (company . "ZANYMAX") (email . "stacyphillips@zanymax.com") (phone . "+1 (943) 503-2725") (address . "343 Otsego Street, Alamo, Texas, 3935") (about . "Duis ad eiusmod enim ea. Dolore duis esse incididunt aliqua ea. Et ullamco culpa tempor ut Lorem sint. Aute incididunt adipisicing consectetur ut eiusmod ad enim do incididunt ipsum magna dolor ad.\r\n") (registered . "2017-09-24T07:24:14 +06:00") (latitude . -78.960122) (longitude . -157.902505) (tags . ("deserunt" "ut" "ipsum" "dolor" "irure" "duis" "occaecat")) (friends . (#((id . 0) (name . "Gardner Colon")) #((id . 1) (name . "Rosalinda Pollard")) #((id . 2) (name . "Warren Mercado")))) (greeting . "Hello, Stacy Phillips! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217deef49628c16bdfd") (index . 84) (guid . "ffec25a2-8ba3-4964-9663-448b79be7757") (isActive . False) (balance . "$1,887.10") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "brown") (name . "Barrera Wells") (gender . "male") (company . "UPDAT") (email . "barrerawells@updat.com") (phone . "+1 (998) 490-2715") (address . "321 Jefferson Avenue, Norfolk, North Carolina, 1892") (about . "Officia eiusmod nostrud eu fugiat do Lorem officia duis aliqua. Irure esse est aliquip commodo aliqua in amet do aute veniam commodo deserunt sunt aliqua. Magna dolor ea sit incididunt.\r\n") (registered . "2014-06-10T03:25:04 +06:00") (latitude . 0.031862) (longitude . 148.510158) (tags . ("est" "proident" "sit" "commodo" "eu" "est" "laboris")) (friends . (#((id . 0) (name . "Martha Collins")) #((id . 1) (name . "Norma Guerra")) #((id . 2) (name . "Swanson Mcknight")))) (greeting . "Hello, Barrera Wells! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302171973d5488f41351b") (index . 85) (guid . "4d5576c5-63a5-4b68-b940-58bdb0209b83") (isActive . True) (balance . "$2,898.59") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "brown") (name . "Fuentes Ross") (gender . "male") (company . "ZOLARITY") (email . "fuentesross@zolarity.com") (phone . "+1 (954) 410-2069") (address . "781 Balfour Place, Kohatk, Nebraska, 4295") (about . "Aliqua non elit fugiat cillum proident est. Incididunt velit nostrud ut exercitation aliquip et cupidatat pariatur cupidatat cupidatat ad. Velit pariatur occaecat laboris proident officia velit do ipsum. Ullamco esse do Lorem sint. Lorem incididunt eu ullamco qui sint quis non aliqua sit ut amet amet.\r\n") (registered . "2015-01-20T08:49:14 +07:00") (latitude . 62.209457) (longitude . -56.91874) (tags . ("minim" "veniam" "minim" "pariatur" "consectetur" "ut" "cillum")) (friends . (#((id . 0) (name . "Victoria Cochran")) #((id . 1) (name . "Hart Casey")) #((id . 2) (name . "Prince Berg")))) (greeting . "Hello, Fuentes Ross! You have 7 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217946e74b7a1bec6a2") (index . 86) (guid . "6f3bd9d2-037a-4c59-be15-2eed82dabb67") (isActive . True) (balance . "$1,475.84") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "green") (name . "Bowen Bond") (gender . "male") (company . "MIRACLIS") (email . "bowenbond@miraclis.com") (phone . "+1 (811) 541-2245") (address . "934 Canton Court, Draper, Tennessee, 3508") (about . "Id ex esse anim minim mollit. Exercitation culpa et officia duis anim ut esse aliqua anim aute commodo veniam. Voluptate elit et ex consequat. Duis aliqua fugiat duis ipsum quis qui in duis ex laboris id. Commodo irure fugiat duis minim officia esse proident aute nulla voluptate occaecat. Laborum occaecat aute laborum aliqua do dolore.\r\n") (registered . "2017-10-14T01:29:58 +06:00") (latitude . 18.707614) (longitude . 126.4844) (tags . ("non" "cupidatat" "Lorem" "deserunt" "sunt" "enim" "sit")) (friends . (#((id . 0) (name . "Carson Bryant")) #((id . 1) (name . "Shaw Coffey")) #((id . 2) (name . "Shepherd Stout")))) (greeting . "Hello, Bowen Bond! You have 7 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217f5b873fba45b2da7") (index . 87) (guid . "e0da7a7e-c4af-416f-9985-cbe5dbb058ee") (isActive . False) (balance . "$2,758.20") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "brown") (name . "Marks Gardner") (gender . "male") (company . "EXOTECHNO") (email . "marksgardner@exotechno.com") (phone . "+1 (968) 593-3367") (address . "235 Thomas Street, Gadsden, Utah, 574") (about . "Aliqua cillum cillum tempor cupidatat. Deserunt incididunt cupidatat excepteur laboris mollit occaecat exercitation nisi velit aute. Lorem deserunt id eiusmod labore exercitation quis culpa irure cupidatat. Do esse excepteur laboris tempor proident sunt incididunt aute aute ea minim commodo consequat. Nostrud proident et deserunt quis aliqua adipisicing. Ea ea aliquip incididunt fugiat ad aute dolore id elit amet.\r\n") (registered . "2016-10-06T06:38:22 +06:00") (latitude . -64.396438) (longitude . 30.377973) (tags . ("aliquip" "ipsum" "occaecat" "minim" "ad" "ea" "esse")) (friends . (#((id . 0) (name . "Kinney Weaver")) #((id . 1) (name . "Navarro Britt")) #((id . 2) (name . "Roth Haley")))) (greeting . "Hello, Marks Gardner! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021777103bff9f419a71") (index . 88) (guid . "0d943890-afce-425e-9aa0-b5de4958bd7d") (isActive . False) (balance . "$2,241.98") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "green") (name . "Bettie Gordon") (gender . "female") (company . "ZILODYNE") (email . "bettiegordon@zilodyne.com") (phone . "+1 (879) 456-3395") (address . "168 Hutchinson Court, Tilden, Marshall Islands, 3271") (about . "Duis irure quis ullamco Lorem commodo fugiat proident eu consequat voluptate. Eu dolore ullamco eiusmod pariatur Lorem exercitation laboris proident ex. Quis mollit ullamco deserunt mollit. Mollit cupidatat anim eu minim enim dolor sit enim irure magna non in.\r\n") (registered . "2015-11-15T10:02:26 +07:00") (latitude . -44.811553) (longitude . -80.208176) (tags . ("culpa" "nisi" "laborum" "mollit" "laborum" "ipsum" "sunt")) (friends . (#((id . 0) (name . "Mills Andrews")) #((id . 1) (name . "English Mccoy")) #((id . 2) (name . "Moss Velez")))) (greeting . "Hello, Bettie Gordon! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302170f04602ea9e5921e") (index . 89) (guid . "8ddc1519-4fcb-4266-bc1d-32acb0f61dc1") (isActive . False) (balance . "$3,990.44") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "blue") (name . "Sanchez Compton") (gender . "male") (company . "EZENT") (email . "sanchezcompton@ezent.com") (phone . "+1 (940) 554-2265") (address . "891 Plaza Street, Ronco, Georgia, 2667") (about . "Excepteur do duis fugiat sunt officia dolore esse voluptate. Veniam ullamco cupidatat qui esse sit irure id. Ad commodo tempor est qui excepteur in voluptate dolor et enim. Laborum culpa eu exercitation consequat sunt deserunt mollit sit. Amet incididunt velit ex in ipsum do aliquip duis. Eu ex adipisicing adipisicing aliqua culpa laboris culpa magna reprehenderit.\r\n") (registered . "2016-10-05T08:41:54 +06:00") (latitude . 47.339455) (longitude . -9.83719) (tags . ("do" "minim" "nisi" "esse" "sint" "qui" "velit")) (friends . (#((id . 0) (name . "Hooper Sampson")) #((id . 1) (name . "Latoya Owens")) #((id . 2) (name . "Klein Newton")))) (greeting . "Hello, Sanchez Compton! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217b2070390ea86dda9") (index . 90) (guid . "0d93cdfe-3cb3-44bd-904e-b171d3485bc6") (isActive . True) (balance . "$2,410.75") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "green") (name . "Zamora Gallegos") (gender . "male") (company . "HAIRPORT") (email . "zamoragallegos@hairport.com") (phone . "+1 (976) 520-3754") (address . "323 Anna Court, Valle, Massachusetts, 2160") (about . "Laborum fugiat ut fugiat qui nisi amet irure. In nisi incididunt duis culpa do quis ad adipisicing consectetur commodo tempor. Aliqua aute sit dolore sint. Officia elit culpa exercitation sint fugiat tempor ad reprehenderit. Do laboris nostrud in enim dolore irure nulla id officia est aute exercitation ea nulla. Fugiat magna reprehenderit duis duis excepteur cupidatat dolor nostrud reprehenderit officia nulla culpa fugiat.\r\n") (registered . "2017-04-25T02:25:44 +06:00") (latitude . 77.270056) (longitude . -54.856811) (tags . ("est" "cillum" "est" "adipisicing" "sit" "est" "ex")) (friends . (#((id . 0) (name . "Roslyn Hopper")) #((id . 1) (name . "Eddie Whitfield")) #((id . 2) (name . "Boyer Cotton")))) (greeting . "Hello, Zamora Gallegos! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021744f098b7b6d74af1") (index . 91) (guid . "72046578-5d04-4b84-9a59-d19a077fb02b") (isActive . True) (balance . "$2,655.04") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Kathie Harding") (gender . "female") (company . "XIXAN") (email . "kathieharding@xixan.com") (phone . "+1 (992) 532-3487") (address . "720 Clara Street, Laurelton, Arizona, 7755") (about . "Occaecat et incididunt in pariatur enim Lorem mollit amet esse et. Magna velit aliquip ullamco exercitation et. Do excepteur elit ea officia reprehenderit fugiat fugiat non reprehenderit laboris. Dolor pariatur Lorem commodo amet exercitation dolore do.\r\n") (registered . "2018-03-06T12:33:01 +07:00") (latitude . 76.636672) (longitude . -172.866826) (tags . ("velit" "ex" "nulla" "pariatur" "incididunt" "duis" "aute")) (friends . (#((id . 0) (name . "Hendricks Lamb")) #((id . 1) (name . "Maxine Berry")) #((id . 2) (name . "Lynda Holt")))) (greeting . "Hello, Kathie Harding! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021762b9da7ecf737c82") (index . 92) (guid . "8cfe74d5-a2d8-4181-ac9b-30c90a494894") (isActive . False) (balance . "$2,983.67") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "brown") (name . "Crawford Trevino") (gender . "male") (company . "ZYPLE") (email . "crawfordtrevino@zyple.com") (phone . "+1 (821) 524-3617") (address . "664 Doscher Street, Innsbrook, District Of Columbia, 9847") (about . "Ullamco labore ex non commodo voluptate Lorem amet cupidatat sunt sunt. Est nostrud qui adipisicing minim ullamco proident culpa nulla occaecat qui pariatur nisi exercitation. Lorem dolore non qui qui minim anim nisi anim. Ea cupidatat velit Lorem quis ex officia enim tempor laboris Lorem laborum occaecat excepteur. Ex fugiat culpa nisi proident laborum exercitation elit ea exercitation nulla eiusmod.\r\n") (registered . "2015-07-15T07:30:45 +06:00") (latitude . 79.074571) (longitude . -153.059486) (tags . ("et" "culpa" "exercitation" "in" "proident" "eiusmod" "exercitation")) (friends . (#((id . 0) (name . "Barber Dickerson")) #((id . 1) (name . "Mack Mann")) #((id . 2) (name . "Woodward Wolfe")))) (greeting . "Hello, Crawford Trevino! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021701eedcbc979c08d5") (index . 93) (guid . "d24ab9ea-f931-4a0e-8011-862fb5686fc2") (isActive . True) (balance . "$2,922.09") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "blue") (name . "Cain Zamora") (gender . "male") (company . "FUTURIZE") (email . "cainzamora@futurize.com") (phone . "+1 (905) 411-3558") (address . "818 Kingston Avenue, Roderfield, Virgin Islands, 1481") (about . "Exercitation ea minim cillum culpa et mollit fugiat. Consectetur voluptate do occaecat dolor proident est pariatur. Qui nisi irure aliquip laborum sunt Lorem deserunt qui magna fugiat minim. Nostrud laborum enim est sit magna mollit. Reprehenderit deserunt nisi enim do labore nulla et cillum magna cillum.\r\n") (registered . "2017-12-13T11:29:31 +07:00") (latitude . -70.395942) (longitude . -143.381847) (tags . ("qui" "ut" "excepteur" "dolor" "sint" "deserunt" "occaecat")) (friends . (#((id . 0) (name . "Sawyer Moran")) #((id . 1) (name . "Barker Lee")) #((id . 2) (name . "Carly Kirkland")))) (greeting . "Hello, Cain Zamora! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302171c71e253f4d02629") (index . 94) (guid . "f77d4fbb-f68c-48d8-8403-1c1083d87a03") (isActive . False) (balance . "$2,496.85") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "brown") (name . "Parks Acevedo") (gender . "male") (company . "NETBOOK") (email . "parksacevedo@netbook.com") (phone . "+1 (913) 473-3036") (address . "227 Vermont Court, Cetronia, South Dakota, 298") (about . "Ut reprehenderit exercitation nostrud esse voluptate id occaecat mollit excepteur aliquip deserunt. Elit aliquip exercitation sit irure exercitation labore ea duis laborum pariatur ut occaecat dolor. Duis Lorem excepteur enim aliquip qui. Aute ut est sunt tempor est eu eiusmod irure.\r\n") (registered . "2016-09-05T08:59:12 +06:00") (latitude . -24.715871) (longitude . 89.956913) (tags . ("incididunt" "fugiat" "exercitation" "irure" "ea" "ex" "Lorem")) (friends . (#((id . 0) (name . "Henrietta Lindsey")) #((id . 1) (name . "Jaime Ward")) #((id . 2) (name . "Arnold Rush")))) (greeting . "Hello, Parks Acevedo! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302178260d8d359f400fc") (index . 95) (guid . "23e58ab7-0b86-4dab-94e9-d4a13ac93364") (isActive . True) (balance . "$1,150.02") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "blue") (name . "May Figueroa") (gender . "male") (company . "UNIWORLD") (email . "mayfigueroa@uniworld.com") (phone . "+1 (854) 413-2044") (address . "551 Calyer Street, Madrid, Virginia, 7974") (about . "Velit officia occaecat veniam sunt esse. Quis consequat eu id id elit exercitation deserunt commodo cillum fugiat. Consectetur nisi quis duis occaecat magna eu reprehenderit quis veniam esse qui laborum commodo. Incididunt elit reprehenderit elit dolor laboris adipisicing fugiat qui et ad voluptate enim. Ea sunt pariatur mollit in proident fugiat deserunt id duis incididunt. Amet laboris elit amet labore et voluptate non eu incididunt. Irure amet ea commodo ea mollit tempor minim aliquip.\r\n") (registered . "2015-04-04T05:11:54 +06:00") (latitude . -77.465592) (longitude . 129.346972) (tags . ("incididunt" "nisi" "incididunt" "eiusmod" "laborum" "aute" "reprehenderit")) (friends . (#((id . 0) (name . "Marlene Lindsay")) #((id . 1) (name . "Briana Cote")) #((id . 2) (name . "Katheryn Nicholson")))) (greeting . "Hello, May Figueroa! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302175d6430685fdddf24") (index . 96) (guid . "30d49d7e-957e-4ad3-b364-fa0569b170b3") (isActive . True) (balance . "$1,737.89") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "blue") (name . "Mcclain Watkins") (gender . "male") (company . "COMVEYER") (email . "mcclainwatkins@comveyer.com") (phone . "+1 (865) 594-2786") (address . "444 Agate Court, Tivoli, Michigan, 4560") (about . "Deserunt tempor pariatur ullamco quis sunt fugiat magna duis incididunt ad anim adipisicing incididunt. Tempor adipisicing cillum proident eiusmod magna amet voluptate sunt commodo anim labore cillum. Consequat aliquip cupidatat in sit ut non cupidatat voluptate adipisicing dolore enim sit. Consequat est aliqua Lorem aliqua sint velit nulla deserunt dolore mollit Lorem. Officia nulla deserunt officia velit. Quis exercitation duis nulla proident ipsum cillum ut.\r\n") (registered . "2015-09-10T01:22:45 +06:00") (latitude . 83.979181) (longitude . 137.559358) (tags . ("sit" "qui" "ut" "aute" "aliqua" "do" "aute")) (friends . (#((id . 0) (name . "Leach Sweet")) #((id . 1) (name . "Goff Butler")) #((id . 2) (name . "Gallegos Booth")))) (greeting . "Hello, Mcclain Watkins! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217ddbae8392733c5ac") (index . 97) (guid . "da7ecb7f-a810-4f62-8ca4-e4a5a884649c") (isActive . False) (balance . "$3,597.87") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "blue") (name . "Campbell Harmon") (gender . "male") (company . "BEADZZA") (email . "campbellharmon@beadzza.com") (phone . "+1 (880) 412-2786") (address . "725 Nova Court, Goochland, Northern Mariana Islands, 1644") (about . "Velit ea minim qui ea dolor ullamco Lorem pariatur. Sunt commodo occaecat nostrud consectetur ea sint dolore exercitation incididunt cupidatat. Velit anim excepteur non sunt esse veniam nisi deserunt aute cillum. Reprehenderit labore occaecat ea adipisicing minim minim mollit dolore minim voluptate minim eiusmod in cupidatat. Sunt labore est sit proident ut quis. Tempor qui ullamco exercitation ex deserunt est duis.\r\n") (registered . "2015-07-10T03:42:35 +06:00") (latitude . -10.342515) (longitude . -174.723305) (tags . ("aliqua" "proident" "magna" "culpa" "et" "nostrud" "incididunt")) (friends . (#((id . 0) (name . "Griffith Levy")) #((id . 1) (name . "Gamble Winters")) #((id . 2) (name . "Leta Baldwin")))) (greeting . "Hello, Campbell Harmon! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302170ca73cf0443da72a") (index . 98) (guid . "813a8eef-daf3-4611-ae66-4040c489d956") (isActive . True) (balance . "$1,916.54") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "blue") (name . "Sharlene Santos") (gender . "female") (company . "CEDWARD") (email . "sharlenesantos@cedward.com") (phone . "+1 (810) 414-2027") (address . "898 Little Street, Fingerville, Illinois, 5234") (about . "Reprehenderit sint in et voluptate voluptate ex et in irure Lorem sunt irure sit. Reprehenderit laborum occaecat quis sit cillum fugiat cupidatat reprehenderit voluptate cupidatat dolore. Reprehenderit nostrud tempor est Lorem pariatur occaecat incididunt excepteur. Veniam cillum do incididunt eiusmod consequat est anim deserunt adipisicing. Cupidatat aliqua adipisicing et dolore velit amet cillum ipsum nostrud eiusmod.\r\n") (registered . "2015-01-09T08:15:08 +07:00") (latitude . -85.535788) (longitude . -128.486155) (tags . ("sunt" "exercitation" "in" "aute" "et" "eiusmod" "consectetur")) (friends . (#((id . 0) (name . "Huff King")) #((id . 1) (name . "Terrie Kaufman")) #((id . 2) (name . "Herman Bernard")))) (greeting . "Hello, Sharlene Santos! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302177f24dd5d97647171") (index . 99) (guid . "26935e61-d4b6-4660-ae6b-0a27c15fa719") (isActive . False) (balance . "$1,653.39") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "brown") (name . "Holloway Oconnor") (gender . "male") (company . "LIQUICOM") (email . "hollowayoconnor@liquicom.com") (phone . "+1 (898) 413-2932") (address . "212 Montague Terrace, Glenbrook, Wisconsin, 936") (about . "Fugiat consectetur Lorem esse fugiat duis sunt anim. Excepteur non mollit dolor magna exercitation velit dolor cillum irure qui anim quis. Velit veniam nulla culpa adipisicing enim qui aliquip est culpa irure. Duis nisi minim do nulla. Quis fugiat anim cupidatat labore esse. Ex voluptate ex aliquip eu magna dolore non sit voluptate do culpa velit ad.\r\n") (registered . "2014-01-08T09:44:10 +07:00") (latitude . 78.032951) (longitude . 13.632597) (tags . ("deserunt" "laborum" "enim" "consequat" "velit" "anim" "officia")) (friends . (#((id . 0) (name . "Rich Alford")) #((id . 1) (name . "Love Curtis")) #((id . 2) (name . "Gladys Moses")))) (greeting . "Hello, Holloway Oconnor! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217ea236a9ee4c93d26") (index . 100) (guid . "415139c8-b792-4bdf-8f62-c715f182ff07") (isActive . True) (balance . "$1,171.91") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "blue") (name . "Elvira Crane") (gender . "female") (company . "GORGANIC") (email . "elviracrane@gorganic.com") (phone . "+1 (893) 473-2554") (address . "270 Logan Street, Williston, Idaho, 7050") (about . "Sint cillum qui voluptate qui adipisicing. Aliqua laborum amet eiusmod nulla commodo. Laborum nulla ad dolore culpa fugiat eiusmod quis elit.\r\n") (registered . "2016-11-18T07:42:34 +07:00") (latitude . -12.844605) (longitude . -90.584315) (tags . ("commodo" "tempor" "et" "laboris" "nostrud" "reprehenderit" "quis")) (friends . (#((id . 0) (name . "Velasquez Parsons")) #((id . 1) (name . "Carver Macdonald")) #((id . 2) (name . "Kathrine Schroeder")))) (greeting . "Hello, Elvira Crane! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302173b7c02008c4a908f") (index . 101) (guid . "29684109-a79a-4926-bc81-64e94fe1a4ad") (isActive . True) (balance . "$1,503.28") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Hester French") (gender . "male") (company . "NAMEGEN") (email . "hesterfrench@namegen.com") (phone . "+1 (982) 500-3242") (address . "942 Java Street, Tedrow, New Hampshire, 4390") (about . "Enim commodo occaecat enim reprehenderit sint sunt laborum ipsum anim aliqua. Irure sunt amet cillum veniam aute exercitation exercitation Lorem ex eiusmod exercitation. Et duis ad ut cupidatat in amet culpa. Deserunt adipisicing proident ea ullamco do laboris sunt ad occaecat qui. Ut laboris nulla minim deserunt aliqua.\r\n") (registered . "2016-05-15T02:55:05 +06:00") (latitude . -24.430198) (longitude . 98.296481) (tags . ("labore" "Lorem" "mollit" "adipisicing" "sit" "aliquip" "id")) (friends . (#((id . 0) (name . "Madden Joseph")) #((id . 1) (name . "Pollard Morris")) #((id . 2) (name . "May Lott")))) (greeting . "Hello, Hester French! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217f090116b79ead070") (index . 102) (guid . "c17c64e5-a083-466d-9738-b36b339c1240") (isActive . False) (balance . "$2,360.09") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "blue") (name . "Sweeney Salas") (gender . "male") (company . "ZYTRAX") (email . "sweeneysalas@zytrax.com") (phone . "+1 (810) 414-3243") (address . "209 Mill Street, Faywood, South Carolina, 9771") (about . "Veniam esse qui nostrud tempor velit occaecat aute. Culpa nulla commodo aliqua et sit mollit cupidatat aliqua ea amet minim. Ut ipsum consectetur aliquip qui officia velit sunt voluptate officia. Nisi mollit quis Lorem consequat enim sunt ullamco duis. Voluptate officia exercitation duis fugiat amet irure anim quis et mollit elit pariatur. In occaecat nisi aliqua eiusmod laborum amet anim. Non ex amet esse officia et.\r\n") (registered . "2014-06-27T06:21:15 +06:00") (latitude . 22.570078) (longitude . 74.251766) (tags . ("cupidatat" "mollit" "ullamco" "aliquip" "mollit" "adipisicing" "aliquip")) (friends . (#((id . 0) (name . "Banks Molina")) #((id . 1) (name . "Minerva Bishop")) #((id . 2) (name . "Camacho May")))) (greeting . "Hello, Sweeney Salas! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217ff437e91c72e41b1") (index . 103) (guid . "744cd5fe-6ab8-43b7-98b0-4442005b9985") (isActive . False) (balance . "$1,279.18") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "blue") (name . "Phoebe Moody") (gender . "female") (company . "IDETICA") (email . "phoebemoody@idetica.com") (phone . "+1 (967) 515-2314") (address . "193 Dearborn Court, Yukon, Iowa, 9482") (about . "Aliquip velit dolore commodo et enim occaecat dolore elit et sunt tempor pariatur. Qui exercitation irure laboris sint ea duis elit aliquip anim. Tempor aute sunt voluptate aliquip dolor esse ullamco voluptate laborum ullamco mollit. Aliqua labore velit fugiat incididunt deserunt eu.\r\n") (registered . "2017-10-28T04:54:15 +06:00") (latitude . 25.496749) (longitude . 18.087811) (tags . ("quis" "ut" "laborum" "ad" "consectetur" "mollit" "ea")) (friends . (#((id . 0) (name . "Deborah Martin")) #((id . 1) (name . "Rollins Mathews")) #((id . 2) (name . "Deloris Beach")))) (greeting . "Hello, Phoebe Moody! You have 8 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302178981bd100452a72e") (index . 104) (guid . "380128b8-e740-44c6-87b4-27ef4b3d1a5f") (isActive . True) (balance . "$3,385.77") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Merrill Mccall") (gender . "male") (company . "COLAIRE") (email . "merrillmccall@colaire.com") (phone . "+1 (844) 429-2163") (address . "911 Wogan Terrace, Whitewater, California, 4621") (about . "Commodo ea pariatur quis nostrud Lorem eu do est Lorem qui. Est nostrud pariatur non aliquip. Cupidatat elit velit culpa consequat veniam irure qui magna dolore anim ex pariatur. Duis aute excepteur quis enim. In nulla velit fugiat tempor commodo occaecat ex nostrud deserunt irure magna. Consectetur sit mollit anim do.\r\n") (registered . "2015-01-14T11:57:13 +07:00") (latitude . -80.595694) (longitude . -145.455581) (tags . ("ad" "consectetur" "consequat" "ad" "aute" "irure" "elit")) (friends . (#((id . 0) (name . "Rivas Sanford")) #((id . 1) (name . "Brown Mcfadden")) #((id . 2) (name . "Boone Walters")))) (greeting . "Hello, Merrill Mccall! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217c0c8af3a150ae348") (index . 105) (guid . "aa6c373c-79f2-4775-84b0-d9bcaf34cd7a") (isActive . True) (balance . "$1,293.13") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Gray Medina") (gender . "male") (company . "DAISU") (email . "graymedina@daisu.com") (phone . "+1 (950) 534-3912") (address . "299 Ivan Court, Felt, Wyoming, 6998") (about . "Dolore ullamco occaecat sunt tempor reprehenderit. Qui cupidatat consectetur Lorem dolore ad est eu veniam labore voluptate. Aliquip qui aliqua quis laborum ex nisi.\r\n") (registered . "2016-11-14T10:27:03 +07:00") (latitude . 55.21257) (longitude . 26.251103) (tags . ("veniam" "do" "est" "anim" "laboris" "qui" "velit")) (friends . (#((id . 0) (name . "Vera Bruce")) #((id . 1) (name . "Kane Neal")) #((id . 2) (name . "Jeanine Dillon")))) (greeting . "Hello, Gray Medina! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217399bbec748c4e3a6") (index . 106) (guid . "87c419d7-e119-4368-a720-197eaccf4ff7") (isActive . False) (balance . "$2,891.17") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Potts Norris") (gender . "male") (company . "GEEKY") (email . "pottsnorris@geeky.com") (phone . "+1 (875) 536-2171") (address . "466 Louisa Street, Hinsdale, Maryland, 5716") (about . "Nisi eiusmod aliquip ea id elit sit Lorem aliquip nisi. Nulla fugiat irure cillum velit sit laborum cillum pariatur culpa ea. Veniam commodo cupidatat nostrud excepteur exercitation anim dolor aute nisi reprehenderit. Ex est laborum ut amet laborum culpa qui magna commodo eu aute sit elit. Enim voluptate deserunt magna culpa id sint eu duis quis. Ea in Lorem dolor esse. Occaecat aute qui eiusmod deserunt qui laborum nisi elit ullamco cillum.\r\n") (registered . "2017-07-06T06:44:03 +06:00") (latitude . 17.301485) (longitude . -82.754453) (tags . ("id" "laboris" "dolore" "labore" "cillum" "sit" "labore")) (friends . (#((id . 0) (name . "Walton Perry")) #((id . 1) (name . "Shields Terrell")) #((id . 2) (name . "Cathleen Roth")))) (greeting . "Hello, Potts Norris! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302179eaa88dfa6293e57") (index . 107) (guid . "19ba23a3-431b-498a-995e-731ffae3e52f") (isActive . True) (balance . "$3,155.02") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "brown") (name . "Lewis Daniel") (gender . "male") (company . "TUBESYS") (email . "lewisdaniel@tubesys.com") (phone . "+1 (848) 412-2638") (address . "609 Chester Street, Sunbury, Louisiana, 9491") (about . "Consequat consectetur ut eiusmod sunt non. Aliquip consectetur exercitation velit officia deserunt ex. Exercitation voluptate ea quis sint do excepteur ut culpa duis non sunt duis proident. Velit enim ad enim anim qui laborum. Non nostrud Lorem amet amet mollit dolor incididunt occaecat voluptate Lorem tempor nostrud ea. Sunt commodo excepteur excepteur esse commodo qui excepteur non exercitation irure et proident amet. Deserunt veniam esse elit laborum nulla ullamco culpa et velit excepteur dolor sint.\r\n") (registered . "2016-10-09T10:42:19 +06:00") (latitude . 64.279313) (longitude . -152.496035) (tags . ("nostrud" "ad" "proident" "deserunt" "elit" "veniam" "consequat")) (friends . (#((id . 0) (name . "Riggs Knight")) #((id . 1) (name . "Graham Bender")) #((id . 2) (name . "Olsen Terry")))) (greeting . "Hello, Lewis Daniel! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302176c04379e4676eea5") (index . 108) (guid . "960d4b6e-b9a7-4e5d-bc7c-1234f47e9e6f") (isActive . False) (balance . "$2,725.10") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "brown") (name . "Sutton Strong") (gender . "male") (company . "REMOTION") (email . "suttonstrong@remotion.com") (phone . "+1 (997) 586-2309") (address . "286 Coventry Road, Machias, Federated States Of Micronesia, 8075") (about . "Mollit ut in eiusmod pariatur aliqua ex aliquip reprehenderit nisi pariatur nulla voluptate. Cillum ea aliquip cillum nostrud ullamco occaecat non quis fugiat voluptate exercitation laboris. Amet velit fugiat proident consectetur reprehenderit tempor dolor mollit nisi ut eu exercitation velit.\r\n") (registered . "2015-12-14T09:30:19 +07:00") (latitude . 19.513239) (longitude . -3.772074) (tags . ("consequat" "id" "consectetur" "id" "in" "labore" "ea")) (friends . (#((id . 0) (name . "Alston Johnson")) #((id . 1) (name . "Mildred Cantu")) #((id . 2) (name . "Kellie Warner")))) (greeting . "Hello, Sutton Strong! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302173d00fdbcaac2b95a") (index . 109) (guid . "370e5097-6a40-4090-9544-39100f275362") (isActive . False) (balance . "$3,951.05") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Cherie Ruiz") (gender . "female") (company . "INTERODEO") (email . "cherieruiz@interodeo.com") (phone . "+1 (953) 401-2238") (address . "685 Pacific Street, Breinigsville, Pennsylvania, 577") (about . "Amet ut sit nulla ut consectetur ea pariatur esse non labore ullamco quis. Ipsum laboris quis aliqua eiusmod ad veniam nulla officia. Minim in fugiat reprehenderit laborum in et dolor aliqua do Lorem. Anim culpa Lorem sunt ipsum ea voluptate quis nostrud sit non commodo. In nisi elit tempor incididunt eiusmod dolor est laborum aliqua. Ea laboris aliqua quis exercitation amet.\r\n") (registered . "2016-08-17T10:24:13 +06:00") (latitude . 13.733064) (longitude . -53.819153) (tags . ("commodo" "velit" "voluptate" "consequat" "velit" "adipisicing" "do")) (friends . (#((id . 0) (name . "Pugh Christensen")) #((id . 1) (name . "Earline Lara")) #((id . 2) (name . "Frost Lucas")))) (greeting . "Hello, Cherie Ruiz! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217b5ec85ae28191203") (index . 110) (guid . "15e01919-5ec1-4a79-aafb-a21465190337") (isActive . True) (balance . "$3,197.01") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Vinson Strickland") (gender . "male") (company . "OBLIQ") (email . "vinsonstrickland@obliq.com") (phone . "+1 (844) 412-3640") (address . "987 Jay Street, Singer, Vermont, 2091") (about . "Excepteur incididunt tempor id aliqua pariatur Lorem voluptate pariatur esse aute magna fugiat magna est. Duis consectetur adipisicing minim labore excepteur proident. Mollit culpa ad sint exercitation excepteur est sint laborum exercitation mollit. Laboris sint pariatur ex exercitation officia non voluptate anim ullamco aliquip occaecat occaecat. Reprehenderit nisi tempor ullamco dolore nulla eu. Magna ea officia occaecat sint consectetur velit. Cillum consequat velit exercitation duis minim laborum Lorem sunt qui eu culpa enim minim officia.\r\n") (registered . "2016-03-19T07:43:41 +06:00") (latitude . -62.123601) (longitude . -157.110139) (tags . ("non" "in" "Lorem" "mollit" "nostrud" "mollit" "veniam")) (friends . (#((id . 0) (name . "Villarreal Todd")) #((id . 1) (name . "Liliana Head")) #((id . 2) (name . "Georgette Decker")))) (greeting . "Hello, Vinson Strickland! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217524cb857799f5463") (index . 111) (guid . "99b130e7-afac-4bf8-8d0c-25422ac478c3") (isActive . False) (balance . "$1,506.91") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "green") (name . "Bates Hebert") (gender . "male") (company . "COMBOT") (email . "bateshebert@combot.com") (phone . "+1 (946) 433-3833") (address . "241 Lott Place, Albrightsville, Maine, 8396") (about . "Ea ad velit nulla adipisicing ut ex labore anim Lorem duis dolor. Deserunt qui veniam id incididunt enim tempor tempor. Enim est sint irure et. Dolore sit Lorem nostrud ullamco adipisicing irure aliquip anim velit. Est veniam eiusmod commodo exercitation aliqua ad ullamco. Laboris adipisicing sit cupidatat non amet adipisicing duis ea reprehenderit ut velit reprehenderit ea sit.\r\n") (registered . "2016-11-12T12:59:35 +07:00") (latitude . -57.847088) (longitude . 45.214967) (tags . ("dolore" "pariatur" "adipisicing" "veniam" "in" "non" "deserunt")) (friends . (#((id . 0) (name . "Salinas Kemp")) #((id . 1) (name . "Frederick Malone")) #((id . 2) (name . "Bullock Roach")))) (greeting . "Hello, Bates Hebert! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217c1d12cc3a6d0e427") (index . 112) (guid . "b6fc0e64-5ecb-4868-9bff-22b5326c261f") (isActive . False) (balance . "$1,601.32") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "green") (name . "Sosa Gibson") (gender . "male") (company . "RONBERT") (email . "sosagibson@ronbert.com") (phone . "+1 (858) 544-3461") (address . "253 Pierrepont Street, Madaket, Alaska, 3787") (about . "Laborum duis ipsum consectetur ad. Sint eu aliquip occaecat aute cillum sit cupidatat qui voluptate cillum. Laboris proident fugiat excepteur laboris consectetur ex ullamco proident deserunt excepteur. Dolore commodo exercitation ea qui ad magna ad duis ipsum aliqua voluptate excepteur consectetur. Velit consequat voluptate officia nisi nostrud consequat.\r\n") (registered . "2014-10-19T08:25:38 +06:00") (latitude . -25.672566) (longitude . 77.642589) (tags . ("quis" "commodo" "adipisicing" "ad" "exercitation" "cupidatat" "minim")) (friends . (#((id . 0) (name . "Marquita Waller")) #((id . 1) (name . "Washington Nash")) #((id . 2) (name . "Corine Moss")))) (greeting . "Hello, Sosa Gibson! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217f1d23ee8ffee64ef") (index . 113) (guid . "0798c73d-71d0-4e44-ad6b-d4fa17ccbc86") (isActive . False) (balance . "$2,401.51") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "blue") (name . "Casey Hodge") (gender . "male") (company . "WARETEL") (email . "caseyhodge@waretel.com") (phone . "+1 (890) 600-3322") (address . "158 Veranda Place, Gibbsville, Palau, 7095") (about . "Sit et aliqua laboris enim consequat elit adipisicing nulla. Sunt cupidatat reprehenderit aute do laboris non aute voluptate esse cillum. Laborum id aliquip Lorem reprehenderit duis ullamco ea. Laboris Lorem nostrud minim ullamco sit eu ea tempor ad veniam adipisicing adipisicing commodo. Laborum in adipisicing ut sit cillum nostrud fugiat labore sunt pariatur consectetur laborum. Est duis amet irure culpa anim ad nostrud veniam ex et ipsum exercitation enim. Exercitation do veniam do esse magna consequat minim et sit.\r\n") (registered . "2016-04-29T09:01:29 +06:00") (latitude . -19.167642) (longitude . 168.634434) (tags . ("amet" "veniam" "ipsum" "amet" "irure" "proident" "commodo")) (friends . (#((id . 0) (name . "Jerry Armstrong")) #((id . 1) (name . "Regina Fry")) #((id . 2) (name . "Kay Sykes")))) (greeting . "Hello, Casey Hodge! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021783b30f313071f755") (index . 114) (guid . "6fa4f2df-d9ec-444d-8e01-14fac2ce47d0") (isActive . True) (balance . "$2,926.84") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "blue") (name . "Lois Carr") (gender . "female") (company . "ZEPITOPE") (email . "loiscarr@zepitope.com") (phone . "+1 (874) 594-2855") (address . "731 Remsen Avenue, Cade, Arkansas, 2624") (about . "Officia commodo adipisicing excepteur occaecat aliqua mollit non aliquip enim anim. Nulla est mollit deserunt cupidatat Lorem excepteur et aliquip exercitation veniam. Ipsum ipsum aliquip aute sunt ullamco laboris elit reprehenderit. Proident ullamco esse ipsum qui qui adipisicing minim id culpa.\r\n") (registered . "2016-09-30T10:01:14 +06:00") (latitude . 48.613662) (longitude . 52.04359) (tags . ("consectetur" "incididunt" "ad" "minim" "enim" "elit" "eu")) (friends . (#((id . 0) (name . "Leonard Wynn")) #((id . 1) (name . "Danielle Ellison")) #((id . 2) (name . "Tasha Cummings")))) (greeting . "Hello, Lois Carr! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302174b07896ae7018418") (index . 115) (guid . "d04746aa-c099-4e09-a6da-88d3487215ee") (isActive . False) (balance . "$3,515.41") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "brown") (name . "Ellison Obrien") (gender . "male") (company . "NORALI") (email . "ellisonobrien@norali.com") (phone . "+1 (957) 496-2911") (address . "559 Joralemon Street, Shasta, Florida, 7740") (about . "Ad tempor minim ex officia do. Velit ea non ipsum minim velit nostrud eiusmod. In consequat dolore ad excepteur. Qui ipsum dolore aliquip ipsum id tempor cupidatat nostrud est eu proident in aliquip. In adipisicing labore occaecat ad esse ad consectetur culpa veniam nostrud.\r\n") (registered . "2015-10-11T05:59:02 +06:00") (latitude . 8.623154) (longitude . -118.687942) (tags . ("laboris" "irure" "irure" "excepteur" "consequat" "deserunt" "enim")) (friends . (#((id . 0) (name . "Patrice Mcclain")) #((id . 1) (name . "Ayala Travis")) #((id . 2) (name . "Duncan Jackson")))) (greeting . "Hello, Ellison Obrien! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302178d21e06bf16230d9") (index . 116) (guid . "31acc992-e801-4c3c-9b7b-07c0a97854e0") (isActive . True) (balance . "$2,427.26") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "green") (name . "Jocelyn Craig") (gender . "female") (company . "COMCUBINE") (email . "jocelyncraig@comcubine.com") (phone . "+1 (954) 448-2782") (address . "283 Matthews Place, Northchase, Puerto Rico, 7850") (about . "Et ullamco enim exercitation voluptate pariatur ex veniam in elit aliquip adipisicing Lorem proident adipisicing. Aute non excepteur proident laboris sunt laborum occaecat deserunt duis. Irure incididunt cupidatat tempor irure eiusmod consequat. Fugiat voluptate ipsum eiusmod adipisicing nisi culpa sint amet do ea irure incididunt nulla consequat. Reprehenderit sint deserunt consectetur exercitation ex. Enim occaecat excepteur labore eiusmod occaecat ipsum reprehenderit reprehenderit sit.\r\n") (registered . "2015-07-16T08:45:54 +06:00") (latitude . 86.443445) (longitude . -123.665955) (tags . ("ad" "qui" "voluptate" "quis" "magna" "dolore" "Lorem")) (friends . (#((id . 0) (name . "Angelita Whitley")) #((id . 1) (name . "Park Green")) #((id . 2) (name . "Phillips Jacobson")))) (greeting . "Hello, Jocelyn Craig! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217d06833dfa890ce15") (index . 117) (guid . "db2d9894-94c8-44ce-8716-53d0ab8dc291") (isActive . True) (balance . "$3,936.32") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "brown") (name . "Best Chen") (gender . "male") (company . "FUTURIS") (email . "bestchen@futuris.com") (phone . "+1 (998) 559-3366") (address . "503 Cumberland Street, Mooresburg, Hawaii, 8296") (about . "Sit id anim cillum enim duis amet do do officia nulla aliquip minim. Do proident elit commodo consequat nulla tempor elit laborum. Excepteur consectetur reprehenderit esse officia occaecat.\r\n") (registered . "2014-05-01T04:13:58 +06:00") (latitude . -63.633075) (longitude . -78.20784) (tags . ("aute" "deserunt" "nostrud" "mollit" "est" "laborum" "culpa")) (friends . (#((id . 0) (name . "Sweet Harrington")) #((id . 1) (name . "Howe Underwood")) #((id . 2) (name . "Lila Barrett")))) (greeting . "Hello, Best Chen! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217835901a4a752af4d") (index . 118) (guid . "6df441c0-f0e4-4df6-b16d-bc3ae8a04309") (isActive . False) (balance . "$2,947.28") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "brown") (name . "Russell Jensen") (gender . "male") (company . "SEALOUD") (email . "russelljensen@sealoud.com") (phone . "+1 (845) 537-3176") (address . "159 Frost Street, Dorneyville, American Samoa, 9840") (about . "Voluptate aute proident est tempor aliquip non officia aliquip quis. Proident consectetur reprehenderit nulla mollit amet cillum adipisicing incididunt esse ea id. Anim veniam esse deserunt adipisicing tempor officia aliquip eiusmod irure pariatur sit amet velit. Cillum id sunt duis ad eiusmod. Fugiat labore reprehenderit aliquip ad sit dolor excepteur mollit enim reprehenderit nostrud officia. Est sunt consequat incididunt duis ea consectetur pariatur qui consectetur aute anim.\r\n") (registered . "2014-06-14T08:54:12 +06:00") (latitude . 18.292207) (longitude . 167.414325) (tags . ("consequat" "esse" "officia" "non" "dolore" "incididunt" "reprehenderit")) (friends . (#((id . 0) (name . "Lavonne Marshall")) #((id . 1) (name . "Helen Robbins")) #((id . 2) (name . "Gregory Shannon")))) (greeting . "Hello, Russell Jensen! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217f0e17746125efbaa") (index . 119) (guid . "200a983d-e0ba-4db1-89aa-cca5c38df75a") (isActive . True) (balance . "$1,696.53") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "green") (name . "Letitia Byers") (gender . "female") (company . "DIGITALUS") (email . "letitiabyers@digitalus.com") (phone . "+1 (876) 575-2322") (address . "879 Cass Place, Soudan, Indiana, 5511") (about . "Laborum nulla proident laborum labore incididunt minim consequat exercitation sit. Ullamco ex voluptate reprehenderit ex elit non. Proident qui ut labore velit sunt anim sunt commodo pariatur ex. Irure mollit nostrud exercitation id consectetur adipisicing sunt tempor dolore sunt laboris quis laborum. Enim veniam ad esse consectetur dolore est occaecat sunt commodo id qui consequat ex.\r\n") (registered . "2016-01-11T09:17:17 +07:00") (latitude . 61.652081) (longitude . -14.841409) (tags . ("et" "veniam" "ipsum" "consectetur" "sunt" "laboris" "aliquip")) (friends . (#((id . 0) (name . "Molina Buchanan")) #((id . 1) (name . "Peggy Meyers")) #((id . 2) (name . "Kline Sosa")))) (greeting . "Hello, Letitia Byers! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217c63e9d05998a7028") (index . 120) (guid . "80ae796d-c844-4d91-8dc8-b1db5dd056e1") (isActive . False) (balance . "$1,886.18") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Deena Hurst") (gender . "female") (company . "ROCKABYE") (email . "deenahurst@rockabye.com") (phone . "+1 (826) 562-2291") (address . "124 Milton Street, Layhill, Missouri, 8392") (about . "In consectetur adipisicing magna aliqua amet. Amet anim ea eiusmod et ipsum. Sint laborum cupidatat deserunt ut in anim reprehenderit irure velit nulla ullamco id. Ex nulla aliqua eu officia non qui mollit et ea tempor enim laborum irure mollit. Nulla elit in dolor quis adipisicing sit deserunt. Do cillum labore elit quis nulla deserunt minim reprehenderit labore. Magna ipsum quis qui enim labore minim commodo minim excepteur esse id do.\r\n") (registered . "2014-02-27T06:15:16 +07:00") (latitude . 17.232725) (longitude . 119.643379) (tags . ("fugiat" "duis" "amet" "ea" "magna" "nostrud" "qui")) (friends . (#((id . 0) (name . "Morin Brown")) #((id . 1) (name . "Sheppard Fernandez")) #((id . 2) (name . "Bobbi Gilbert")))) (greeting . "Hello, Deena Hurst! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021766568d539153219c") (index . 121) (guid . "5eacf1c8-6114-429f-85e2-41e0bda6086b") (isActive . True) (balance . "$3,781.80") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "blue") (name . "Tabatha Golden") (gender . "female") (company . "SULTRAXIN") (email . "tabathagolden@sultraxin.com") (phone . "+1 (830) 577-2974") (address . "718 Quentin Road, Century, Guam, 6330") (about . "Nulla do dolore fugiat sunt elit nisi quis elit consequat commodo officia voluptate quis nulla. Ullamco proident eu cillum sunt sit adipisicing anim non exercitation laboris. Amet nisi amet velit fugiat sint pariatur sit officia. Excepteur labore eu ex Lorem nostrud tempor voluptate laborum exercitation aliquip ullamco id adipisicing. Sunt laborum magna pariatur proident qui aliquip esse. Adipisicing voluptate eu ex dolor pariatur. Lorem incididunt non ut esse aliqua pariatur labore dolor irure fugiat commodo fugiat adipisicing ipsum.\r\n") (registered . "2016-02-22T05:05:02 +07:00") (latitude . -10.19822) (longitude . -163.348332) (tags . ("deserunt" "consequat" "cillum" "nostrud" "sunt" "incididunt" "esse")) (friends . (#((id . 0) (name . "Holland Maldonado")) #((id . 1) (name . "Lawson Mclaughlin")) #((id . 2) (name . "Noel Blankenship")))) (greeting . "Hello, Tabatha Golden! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021727b0cae4f0e13dc6") (index . 122) (guid . "3ba29926-e9b1-42af-9397-6f0ee0032662") (isActive . False) (balance . "$3,837.48") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "blue") (name . "Hansen Kirk") (gender . "male") (company . "FURNIGEER") (email . "hansenkirk@furnigeer.com") (phone . "+1 (887) 478-2393") (address . "453 Bills Place, Needmore, Minnesota, 4507") (about . "Commodo occaecat culpa laborum sit voluptate incididunt proident occaecat tempor sint in. Consectetur nulla et est pariatur id occaecat magna veniam ex occaecat eiusmod. Ullamco do dolore tempor tempor aliqua exercitation sint. Id aliqua amet id ipsum esse nisi ea est veniam veniam mollit.\r\n") (registered . "2017-01-21T10:46:17 +07:00") (latitude . 42.773373) (longitude . 177.165998) (tags . ("nisi" "id" "officia" "consectetur" "ad" "eiusmod" "quis")) (friends . (#((id . 0) (name . "Marva Atkins")) #((id . 1) (name . "Rene Fuentes")) #((id . 2) (name . "Melinda Barry")))) (greeting . "Hello, Hansen Kirk! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217a7dad20793177e33") (index . 123) (guid . "70f610ff-7c2b-409e-9c03-12d2a37722aa") (isActive . False) (balance . "$1,507.94") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "green") (name . "Alyssa Lester") (gender . "female") (company . "ZIGGLES") (email . "alyssalester@ziggles.com") (phone . "+1 (939) 452-2576") (address . "952 Glenmore Avenue, Rivera, Delaware, 593") (about . "In laborum occaecat in occaecat eu occaecat laborum. Dolor duis proident dolor veniam. Ex sit nisi aliqua mollit.\r\n") (registered . "2016-03-21T02:03:27 +06:00") (latitude . -70.91596) (longitude . 147.524294) (tags . ("aliqua" "amet" "anim" "Lorem" "eiusmod" "id" "incididunt")) (friends . (#((id . 0) (name . "Janelle Pruitt")) #((id . 1) (name . "Isabelle Buck")) #((id . 2) (name . "Constance Sanchez")))) (greeting . "Hello, Alyssa Lester! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021711880acc8f721680") (index . 124) (guid . "d02a64c7-d0f3-44f2-871f-d7ccdb873fbe") (isActive . True) (balance . "$1,228.83") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "brown") (name . "Thornton Brock") (gender . "male") (company . "UTARA") (email . "thorntonbrock@utara.com") (phone . "+1 (934) 599-3637") (address . "636 Miami Court, Oasis, Kansas, 3148") (about . "Ad quis fugiat magna minim adipisicing pariatur deserunt sunt tempor Lorem non. Aliqua eu eu quis velit. Velit reprehenderit aliquip enim Lorem reprehenderit proident. Adipisicing proident adipisicing amet nostrud commodo labore adipisicing veniam deserunt id proident. Sit consequat irure mollit esse eiusmod dolor non consectetur commodo est ipsum.\r\n") (registered . "2014-09-19T12:58:35 +06:00") (latitude . -46.797207) (longitude . 130.76038) (tags . ("incididunt" "qui" "excepteur" "dolor" "amet" "proident" "anim")) (friends . (#((id . 0) (name . "Joann Schmidt")) #((id . 1) (name . "Ferguson Thompson")) #((id . 2) (name . "Little Fisher")))) (greeting . "Hello, Thornton Brock! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217ef83508b394bed07") (index . 125) (guid . "f4dc2537-d155-466f-bb2f-ab2bf178015c") (isActive . True) (balance . "$1,597.23") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "blue") (name . "Levy Hampton") (gender . "male") (company . "SNIPS") (email . "levyhampton@snips.com") (phone . "+1 (838) 585-2570") (address . "124 Story Street, Frystown, Washington, 8587") (about . "Ex magna sunt dolore nostrud cillum do nisi excepteur. Id irure consequat non amet enim sit deserunt veniam. Est nisi reprehenderit in voluptate aute voluptate aliqua adipisicing est anim minim cupidatat excepteur. Ea dolor ea cillum ad officia dolore occaecat laborum ea in culpa ad. Eiusmod laborum tempor veniam dolor pariatur qui incididunt occaecat.\r\n") (registered . "2017-12-05T05:58:07 +07:00") (latitude . -47.41285) (longitude . 178.816859) (tags . ("non" "ullamco" "nisi" "cupidatat" "aliquip" "deserunt" "et")) (friends . (#((id . 0) (name . "Kirk Tillman")) #((id . 1) (name . "Robin Hale")) #((id . 2) (name . "Claire Black")))) (greeting . "Hello, Levy Hampton! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217a864bf41decd48c0") (index . 126) (guid . "b04757ad-2c8c-4680-9af8-15027c6e5a98") (isActive . True) (balance . "$3,884.84") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "brown") (name . "Lindsey Koch") (gender . "male") (company . "ORBIXTAR") (email . "lindseykoch@orbixtar.com") (phone . "+1 (818) 504-3472") (address . "363 Downing Street, Chesterfield, Oklahoma, 9210") (about . "Laboris nisi mollit qui voluptate ea excepteur Lorem incididunt anim sint do. Qui tempor occaecat ex id Lorem tempor elit cillum. Ex velit ex elit in laboris labore sunt. Do labore laborum amet dolore in cupidatat cillum reprehenderit non. Esse consectetur culpa sint eu.\r\n") (registered . "2017-08-29T09:24:10 +06:00") (latitude . 36.956811) (longitude . 73.993376) (tags . ("esse" "ea" "velit" "mollit" "culpa" "nulla" "fugiat")) (friends . (#((id . 0) (name . "Ollie Haynes")) #((id . 1) (name . "Preston Burt")) #((id . 2) (name . "Edwards Preston")))) (greeting . "Hello, Lindsey Koch! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217e295c4dc90c14023") (index . 127) (guid . "908f0798-e56e-46f7-8cbb-1e2b329dcd48") (isActive . True) (balance . "$2,465.90") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "green") (name . "Curry Baker") (gender . "male") (company . "MAINELAND") (email . "currybaker@maineland.com") (phone . "+1 (869) 600-3621") (address . "443 Beayer Place, Sedley, Kentucky, 5040") (about . "Aute nulla esse id labore Lorem voluptate nostrud minim irure. Labore reprehenderit mollit cillum consectetur consequat dolor esse anim ipsum. Ex qui tempor est Lorem. Reprehenderit eiusmod irure commodo ipsum laboris sint qui proident cillum voluptate mollit. Ea ad incididunt dolor quis voluptate anim. Ad ea excepteur non et eiusmod velit.\r\n") (registered . "2014-10-09T06:01:22 +06:00") (latitude . -54.39458) (longitude . -52.36144) (tags . ("sint" "Lorem" "quis" "eu" "veniam" "magna" "do")) (friends . (#((id . 0) (name . "Althea Mendez")) #((id . 1) (name . "Debbie Rogers")) #((id . 2) (name . "Marcella Middleton")))) (greeting . "Hello, Curry Baker! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217933ec41ead8d68a7") (index . 128) (guid . "0f45706d-4604-458c-a61f-be09e9f722bf") (isActive . True) (balance . "$1,587.95") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "blue") (name . "Sonya Rose") (gender . "female") (company . "ORBEAN") (email . "sonyarose@orbean.com") (phone . "+1 (987) 545-3574") (address . "655 Beaumont Street, Gracey, Alabama, 5962") (about . "Voluptate adipisicing tempor reprehenderit esse non. Officia sunt nulla consectetur aute elit adipisicing id ad tempor deserunt nostrud magna. Voluptate aute sit enim non voluptate cillum.\r\n") (registered . "2016-08-18T04:12:00 +06:00") (latitude . 40.923778) (longitude . 173.103467) (tags . ("incididunt" "fugiat" "Lorem" "deserunt" "magna" "eu" "nisi")) (friends . (#((id . 0) (name . "Della Dotson")) #((id . 1) (name . "Rodgers Patrick")) #((id . 2) (name . "Floyd Grant")))) (greeting . "Hello, Sonya Rose! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302177b5304856af83431") (index . 129) (guid . "e5ab437d-14f8-4593-a457-b945233a475c") (isActive . False) (balance . "$3,586.77") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "brown") (name . "Johanna Gregory") (gender . "female") (company . "RECRITUBE") (email . "johannagregory@recritube.com") (phone . "+1 (867) 500-2506") (address . "219 Union Avenue, Gila, West Virginia, 8162") (about . "Cillum laboris anim magna amet ullamco in deserunt aliqua aute adipisicing ad eiusmod nisi. Ad ullamco dolore voluptate eu ut tempor dolore. Cillum enim ullamco esse aliqua pariatur. Velit sunt officia reprehenderit quis dolor esse ex nisi. Exercitation consectetur qui eiusmod sit do aute id ex Lorem consectetur dolore elit amet cupidatat.\r\n") (registered . "2017-04-03T07:25:53 +06:00") (latitude . 71.527448) (longitude . 107.30318) (tags . ("aliqua" "sit" "voluptate" "dolore" "magna" "eiusmod" "anim")) (friends . (#((id . 0) (name . "Carter Wilkerson")) #((id . 1) (name . "Knowles Dunlap")) #((id . 2) (name . "Verna Gibbs")))) (greeting . "Hello, Johanna Gregory! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217c6b541aed67247a5") (index . 130) (guid . "b3bfd39c-f79c-406b-b1f9-a3d9a6b6b456") (isActive . True) (balance . "$3,064.03") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "green") (name . "Sellers Solis") (gender . "male") (company . "EARTHPLEX") (email . "sellerssolis@earthplex.com") (phone . "+1 (970) 402-3386") (address . "959 Classon Avenue, Biddle, Ohio, 7448") (about . "Exercitation quis excepteur esse anim consequat dolor. Eiusmod consequat aliquip ad veniam ex culpa occaecat laborum nulla eiusmod. Ipsum consequat sint do reprehenderit ipsum in. Fugiat nostrud elit nulla proident velit excepteur dolor culpa sunt Lorem dolor quis nostrud.\r\n") (registered . "2015-10-24T06:51:36 +06:00") (latitude . 54.019798) (longitude . -99.159046) (tags . ("in" "elit" "aliqua" "amet" "veniam" "commodo" "ipsum")) (friends . (#((id . 0) (name . "Jody Bolton")) #((id . 1) (name . "Dotson Hamilton")) #((id . 2) (name . "Mcintyre Salazar")))) (greeting . "Hello, Sellers Solis! You have 2 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302174b30f359ee058ba6") (index . 131) (guid . "7070618d-9b0e-4eb4-8a3b-2ea4a3050c52") (isActive . True) (balance . "$3,468.74") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "brown") (name . "Owen Ashley") (gender . "male") (company . "XELEGYL") (email . "owenashley@xelegyl.com") (phone . "+1 (928) 446-2304") (address . "114 Pioneer Street, Savage, Connecticut, 3692") (about . "Do Lorem non labore labore ut aliquip esse velit deserunt pariatur commodo tempor amet laboris. Deserunt id adipisicing ad quis quis Lorem. Mollit esse irure proident laboris. Sunt magna elit eu aliquip aute ad irure et consectetur est Lorem deserunt aliquip. Deserunt duis non qui tempor mollit nostrud ea pariatur elit fugiat deserunt. Lorem aliqua irure ad ut. In minim magna irure Lorem ea ullamco consectetur labore deserunt esse sit.\r\n") (registered . "2014-12-21T09:12:22 +07:00") (latitude . -0.374398) (longitude . 85.070165) (tags . ("adipisicing" "fugiat" "proident" "ut" "deserunt" "ipsum" "occaecat")) (friends . (#((id . 0) (name . "Ericka Graves")) #((id . 1) (name . "Bentley Phelps")) #((id . 2) (name . "Cortez Roberts")))) (greeting . "Hello, Owen Ashley! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217b5c706cbdfc4d63d") (index . 132) (guid . "33e21d71-4b42-4cf7-97aa-2d97a23c8dbe") (isActive . True) (balance . "$3,165.82") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "brown") (name . "Lorene Sanders") (gender . "female") (company . "SENTIA") (email . "lorenesanders@sentia.com") (phone . "+1 (828) 559-3660") (address . "104 Llama Court, Bennett, North Dakota, 4515") (about . "Irure officia nisi excepteur do ad. Id incididunt laboris eiusmod excepteur. Nisi commodo aute esse reprehenderit magna eu sunt aute nisi dolor ut dolore officia. Laborum cupidatat commodo nisi labore anim et est exercitation incididunt ad aliqua minim. Consectetur id et mollit amet cupidatat aute eu dolor elit cupidatat id. Aliquip ex anim cillum culpa cillum. Ipsum enim aliquip nulla ad ex do officia minim cupidatat ut pariatur.\r\n") (registered . "2016-08-12T12:46:32 +06:00") (latitude . 5.930315) (longitude . 174.535328) (tags . ("esse" "cillum" "aute" "eiusmod" "sit" "elit" "irure")) (friends . (#((id . 0) (name . "Inez Wright")) #((id . 1) (name . "Charmaine Gilmore")) #((id . 2) (name . "Watkins Landry")))) (greeting . "Hello, Lorene Sanders! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217767aeaf34816817d") (index . 133) (guid . "dc771142-26bb-416d-b4a3-c31db1ecd57c") (isActive . True) (balance . "$1,922.01") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "blue") (name . "Joanna Ramirez") (gender . "female") (company . "PROSURE") (email . "joannaramirez@prosure.com") (phone . "+1 (918) 450-3713") (address . "557 Farragut Place, Gallina, Mississippi, 3778") (about . "Et dolore pariatur adipisicing cillum amet irure nostrud nisi anim qui sit sint pariatur mollit. Enim in dolore elit et. Elit mollit nulla reprehenderit officia consequat ex ut cupidatat minim. Esse laborum sit aliqua consectetur qui voluptate aliquip nisi adipisicing. Fugiat laborum veniam tempor eiusmod aliquip do cupidatat reprehenderit labore. Qui veniam non commodo et tempor aliquip laboris est quis consectetur commodo dolor. Officia ea veniam non dolore do qui excepteur est id nulla ipsum mollit.\r\n") (registered . "2017-07-02T12:30:54 +06:00") (latitude . 61.547622) (longitude . 136.308312) (tags . ("ipsum" "ex" "adipisicing" "proident" "qui" "officia" "eiusmod")) (friends . (#((id . 0) (name . "Heath Keller")) #((id . 1) (name . "Webster Franklin")) #((id . 2) (name . "Waters Barrera")))) (greeting . "Hello, Joanna Ramirez! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021745cded07a5b73bc1") (index . 134) (guid . "1b21bc57-e675-4fe9-ad0f-861054fc3fe0") (isActive . True) (balance . "$2,695.05") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "green") (name . "Dena Dickson") (gender . "female") (company . "IZZBY") (email . "denadickson@izzby.com") (phone . "+1 (976) 507-3725") (address . "688 Friel Place, Longbranch, New York, 4889") (about . "In ut reprehenderit tempor voluptate ad adipisicing sit ex ad dolore voluptate cupidatat eu. Adipisicing adipisicing eu elit sit officia minim. Eiusmod exercitation incididunt ea culpa pariatur incididunt id do culpa ut aliqua sunt velit. Ex ea aliquip laboris mollit et dolor qui pariatur consectetur qui est excepteur. Amet est nisi irure magna in cupidatat eu cillum.\r\n") (registered . "2017-02-07T07:03:50 +07:00") (latitude . -63.074411) (longitude . 89.655704) (tags . ("excepteur" "magna" "esse" "cupidatat" "esse" "dolore" "est")) (friends . (#((id . 0) (name . "James Burgess")) #((id . 1) (name . "Wilda Potts")) #((id . 2) (name . "Velazquez Miranda")))) (greeting . "Hello, Dena Dickson! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217aaba2940418dc7f2") (index . 135) (guid . "a001842b-0bc3-4140-97c5-171b42b0eb40") (isActive . True) (balance . "$2,295.38") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "brown") (name . "Celina Fitzpatrick") (gender . "female") (company . "RENOVIZE") (email . "celinafitzpatrick@renovize.com") (phone . "+1 (994) 497-2069") (address . "865 Ross Street, Winesburg, Oregon, 7810") (about . "Consectetur labore duis et veniam nisi id ullamco irure ad aute anim eu dolor. Elit adipisicing esse et eiusmod ipsum sunt ad. Quis ullamco aute magna et mollit amet nostrud et cillum dolore sint. Ut voluptate culpa ut esse cillum qui deserunt. Nisi excepteur esse aliquip enim nulla nulla magna nulla nisi. Aliquip occaecat incididunt do reprehenderit aliquip culpa pariatur culpa nisi id sint et.\r\n") (registered . "2015-02-04T11:25:54 +07:00") (latitude . 22.640241) (longitude . 99.897152) (tags . ("proident" "deserunt" "amet" "sunt" "cillum" "dolore" "ex")) (friends . (#((id . 0) (name . "Berry Irwin")) #((id . 1) (name . "Amalia Boyd")) #((id . 2) (name . "Fischer Finley")))) (greeting . "Hello, Celina Fitzpatrick! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217913ba9ccef65ea3b") (index . 136) (guid . "8aa7279a-82c7-4d9b-9f8f-ceb1994f45fe") (isActive . False) (balance . "$3,636.85") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "green") (name . "Pierce Giles") (gender . "male") (company . "UNISURE") (email . "piercegiles@unisure.com") (phone . "+1 (966) 445-2607") (address . "378 Montrose Avenue, Hasty, New Jersey, 8142") (about . "Fugiat eu aute aliqua veniam ut amet culpa excepteur irure officia adipisicing ex eiusmod. Mollit veniam culpa irure fugiat ad eiusmod dolore laboris nulla consequat nostrud in. Nulla velit id ad exercitation veniam aliquip cillum et veniam mollit ex nulla sint dolore. Et esse proident ea aute enim magna aute ea dolore consectetur laboris cupidatat. Minim ipsum deserunt commodo dolor.\r\n") (registered . "2014-11-06T04:55:38 +07:00") (latitude . -28.942015) (longitude . 100.336179) (tags . ("minim" "incididunt" "non" "dolore" "non" "non" "mollit")) (friends . (#((id . 0) (name . "Farrell Hardin")) #((id . 1) (name . "Reva Case")) #((id . 2) (name . "Alexandria Castillo")))) (greeting . "Hello, Pierce Giles! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021730651c7fe12bb97d") (index . 137) (guid . "446fc297-aa19-4c04-a922-c7c14059b990") (isActive . False) (balance . "$3,510.55") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Ashley Clayton") (gender . "female") (company . "SOLAREN") (email . "ashleyclayton@solaren.com") (phone . "+1 (982) 535-2499") (address . "123 Seaview Court, Orason, Montana, 7646") (about . "Qui ad consequat culpa irure anim aute eu est nisi Lorem eu. Ullamco deserunt fugiat cillum elit ea nostrud ut velit. Ut aliquip ut laborum nostrud sint proident elit aliquip officia consectetur. Eu aliquip qui et excepteur ut quis proident cupidatat excepteur incididunt in ut et. Fugiat dolor exercitation id ut consequat eiusmod magna. Velit velit dolor laborum tempor incididunt aliquip ipsum officia aliqua consequat dolore tempor elit.\r\n") (registered . "2015-11-18T08:26:57 +07:00") (latitude . -7.947593) (longitude . -5.434563) (tags . ("Lorem" "incididunt" "eiusmod" "dolore" "culpa" "nulla" "id")) (friends . (#((id . 0) (name . "Bell Sharpe")) #((id . 1) (name . "Caitlin Clements")) #((id . 2) (name . "Hyde Duke")))) (greeting . "Hello, Ashley Clayton! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217d355ca99d75360d1") (index . 138) (guid . "e445bab3-c615-4a28-a023-bc95f714a4c0") (isActive . True) (balance . "$3,788.99") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "brown") (name . "Holt Carney") (gender . "male") (company . "DIGINETIC") (email . "holtcarney@diginetic.com") (phone . "+1 (989) 558-3572") (address . "191 Juliana Place, Ryderwood, Nevada, 432") (about . "Ea duis magna deserunt ullamco eu veniam. Ut cillum amet sunt consectetur mollit adipisicing ut do. Labore esse adipisicing voluptate eu cupidatat dolore labore enim cupidatat excepteur est consequat mollit. Sint excepteur proident incididunt laborum consectetur ullamco qui aliquip consequat dolor veniam duis reprehenderit consectetur. Pariatur exercitation sint ut qui Lorem Lorem mollit deserunt. Dolor irure irure nostrud nulla mollit ea ea laborum est deserunt minim. Do qui dolore proident incididunt ut aliquip ullamco laboris.\r\n") (registered . "2014-03-20T12:48:27 +06:00") (latitude . 40.055868) (longitude . 114.331827) (tags . ("ipsum" "culpa" "culpa" "aliqua" "adipisicing" "voluptate" "qui")) (friends . (#((id . 0) (name . "Clements Burch")) #((id . 1) (name . "Brady Love")) #((id . 2) (name . "Gayle Bean")))) (greeting . "Hello, Holt Carney! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302177d6552b8d304d1b7") (index . 139) (guid . "5b2cd98f-952a-4f4e-ae58-2d30dbb26965") (isActive . True) (balance . "$2,148.50") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "brown") (name . "Pratt Long") (gender . "male") (company . "VIASIA") (email . "prattlong@viasia.com") (phone . "+1 (849) 517-3654") (address . "488 Fulton Street, Bowmansville, Colorado, 5443") (about . "Cupidatat et magna incididunt mollit in. Cillum anim aliquip minim tempor ut amet nulla sunt sint laboris aliqua. Amet enim ex quis consectetur ex occaecat officia dolore sunt exercitation quis. Velit mollit enim mollit sint aliquip nisi cupidatat mollit commodo do veniam ut.\r\n") (registered . "2016-10-01T09:42:22 +06:00") (latitude . -68.242216) (longitude . -156.609577) (tags . ("qui" "sint" "pariatur" "culpa" "quis" "quis" "voluptate")) (friends . (#((id . 0) (name . "Tyler Ball")) #((id . 1) (name . "Peterson Brennan")) #((id . 2) (name . "Fletcher Hill")))) (greeting . "Hello, Pratt Long! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217a9aad5472cc5dc84") (index . 140) (guid . "89d3e82c-6995-4299-b1ee-ba6f6558d193") (isActive . False) (balance . "$3,302.67") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "brown") (name . "Alison Davenport") (gender . "female") (company . "OPTICALL") (email . "alisondavenport@opticall.com") (phone . "+1 (813) 498-2813") (address . "840 Linden Boulevard, Edgar, New Mexico, 1385") (about . "Velit est ex in laboris reprehenderit. Fugiat Lorem cillum veniam exercitation cillum ipsum eu voluptate eu aliqua commodo reprehenderit. Est commodo et qui dolore veniam laboris incididunt anim cupidatat. Elit ullamco in voluptate quis incididunt dolore aliqua sint consectetur incididunt ad proident. Pariatur ut fugiat laboris enim in. Et dolor do consequat dolor aliqua consequat in cupidatat.\r\n") (registered . "2016-04-08T11:45:26 +06:00") (latitude . -67.184247) (longitude . -7.065803) (tags . ("in" "irure" "exercitation" "fugiat" "aliquip" "quis" "id")) (friends . (#((id . 0) (name . "Sheri Herrera")) #((id . 1) (name . "Maldonado Nieves")) #((id . 2) (name . "Albert Day")))) (greeting . "Hello, Alison Davenport! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302172175c88b8bac4b33") (index . 141) (guid . "18e38941-b757-4dd1-b047-82f183aac038") (isActive . False) (balance . "$1,837.97") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "green") (name . "Ofelia Wade") (gender . "female") (company . "MANTRO") (email . "ofeliawade@mantro.com") (phone . "+1 (846) 446-3264") (address . "265 Langham Street, Weedville, Texas, 4393") (about . "Anim ex ea qui id. Anim ea ad deserunt Lorem in labore. Amet dolore ad aliqua commodo. Veniam proident duis in aute adipisicing occaecat sint dolor nostrud aliquip labore velit excepteur aliquip.\r\n") (registered . "2016-02-25T11:49:06 +07:00") (latitude . -84.721512) (longitude . -87.806031) (tags . ("elit" "tempor" "ut" "et" "sint" "ea" "esse")) (friends . (#((id . 0) (name . "Rojas Kirby")) #((id . 1) (name . "Laurel Bryan")) #((id . 2) (name . "Lilian Miller")))) (greeting . "Hello, Ofelia Wade! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217a7fad9485115c097") (index . 142) (guid . "7198a2b4-9eee-4a06-8923-6eb01592198a") (isActive . False) (balance . "$2,225.55") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "brown") (name . "Malone Wiley") (gender . "male") (company . "DANJA") (email . "malonewiley@danja.com") (phone . "+1 (821) 460-3592") (address . "433 Duffield Street, Kent, North Carolina, 8738") (about . "Laboris fugiat ullamco excepteur fugiat tempor irure adipisicing sint. Culpa voluptate esse qui sit. Anim Lorem ea ullamco elit cillum culpa veniam consequat do elit. Dolor deserunt incididunt enim irure esse elit nostrud incididunt do dolore ipsum sunt amet. Culpa ea eiusmod ex duis dolor laboris. Cupidatat labore eu id qui officia sit qui ipsum voluptate cupidatat incididunt labore quis. Ullamco commodo sint sit aliqua pariatur sunt sunt non cupidatat.\r\n") (registered . "2016-02-26T01:32:47 +07:00") (latitude . 86.794883) (longitude . 162.111918) (tags . ("aliquip" "ea" "excepteur" "anim" "aliqua" "id" "consectetur")) (friends . (#((id . 0) (name . "Erna Matthews")) #((id . 1) (name . "Glass Mcdowell")) #((id . 2) (name . "Aida Blanchard")))) (greeting . "Hello, Malone Wiley! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217c7da0cae1a1d286f") (index . 143) (guid . "ebdbdb53-bf97-456c-8693-b09c78d79812") (isActive . False) (balance . "$2,942.94") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "blue") (name . "Terry Clarke") (gender . "male") (company . "AUTOMON") (email . "terryclarke@automon.com") (phone . "+1 (812) 467-2650") (address . "174 Willow Street, Morriston, Nebraska, 3105") (about . "Quis mollit sunt in quis. Velit in nostrud nostrud non ex sint ipsum laborum fugiat in. Proident officia tempor sunt aliqua anim. Labore magna do elit incididunt irure id laborum incididunt voluptate fugiat.\r\n") (registered . "2016-12-28T02:16:16 +07:00") (latitude . 55.5824) (longitude . -81.127599) (tags . ("amet" "cupidatat" "qui" "adipisicing" "sint" "enim" "voluptate")) (friends . (#((id . 0) (name . "Marina Kline")) #((id . 1) (name . "Nanette Weber")) #((id . 2) (name . "Miller Yang")))) (greeting . "Hello, Terry Clarke! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302178f3ddf6887be2b3f") (index . 144) (guid . "ee5f7478-18a8-4c23-baa0-99486c64882f") (isActive . False) (balance . "$3,102.16") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "green") (name . "Jackie Hardy") (gender . "female") (company . "EBIDCO") (email . "jackiehardy@ebidco.com") (phone . "+1 (979) 483-2591") (address . "341 Tompkins Avenue, Stouchsburg, Tennessee, 3593") (about . "Fugiat ad adipisicing proident ea deserunt magna ex in occaecat consequat magna commodo. Quis sunt mollit non deserunt. Nostrud ullamco veniam incididunt laborum velit duis tempor cupidatat consequat est officia. Elit anim magna sint adipisicing Lorem sit sint velit veniam amet dolore mollit. Occaecat officia sint tempor aliquip.\r\n") (registered . "2016-08-12T12:25:16 +06:00") (latitude . 70.017488) (longitude . 146.791522) (tags . ("dolore" "ex" "dolor" "dolor" "veniam" "sit" "enim")) (friends . (#((id . 0) (name . "Golden Garcia")) #((id . 1) (name . "Shelby Snider")) #((id . 2) (name . "Simone Rojas")))) (greeting . "Hello, Jackie Hardy! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217cc5b2cf46a3248bd") (index . 145) (guid . "6f1ead5f-07ae-4860-8e9c-b39fbc639082") (isActive . True) (balance . "$1,729.84") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "green") (name . "Blair Hodges") (gender . "male") (company . "MARVANE") (email . "blairhodges@marvane.com") (phone . "+1 (891) 483-2840") (address . "799 Kingsland Avenue, Wanamie, Utah, 6540") (about . "Quis magna elit ullamco ad esse laborum dolore dolore occaecat amet. Culpa Lorem fugiat commodo adipisicing do excepteur amet non cupidatat culpa aliquip irure Lorem do. Eiusmod aute exercitation nostrud laboris amet dolore commodo reprehenderit sit duis sunt anim sint consectetur. Minim excepteur cupidatat veniam reprehenderit quis incididunt anim amet aliquip id. Reprehenderit reprehenderit consequat enim et sunt officia nostrud. Proident consectetur id veniam labore dolore ea elit.\r\n") (registered . "2015-10-03T04:43:32 +06:00") (latitude . 51.896233) (longitude . -117.210783) (tags . ("occaecat" "quis" "dolor" "occaecat" "est" "laborum" "occaecat")) (friends . (#((id . 0) (name . "Patti Alexander")) #((id . 1) (name . "Hunt Farley")) #((id . 2) (name . "Claudia Burton")))) (greeting . "Hello, Blair Hodges! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217c5aa0c0c17af14f3") (index . 146) (guid . "25a482f1-a4f1-4025-aa10-414a5e39e16f") (isActive . False) (balance . "$1,709.65") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Gibson Riddle") (gender . "male") (company . "CHORIZON") (email . "gibsonriddle@chorizon.com") (phone . "+1 (980) 572-2782") (address . "551 Denton Place, Cochranville, Marshall Islands, 6446") (about . "Est consequat dolore in eiusmod aliqua adipisicing nulla. Eiusmod anim proident laboris aute cillum sint officia excepteur pariatur adipisicing minim esse fugiat. Eiusmod fugiat proident veniam Lorem enim deserunt veniam culpa. Ut ea ex tempor nostrud cillum sint deserunt laborum aliqua exercitation Lorem reprehenderit esse excepteur. Do consectetur proident do eu. In quis laborum incididunt excepteur consequat quis commodo sit eiusmod nisi dolor ad.\r\n") (registered . "2016-06-14T07:51:42 +06:00") (latitude . -71.185323) (longitude . 112.026873) (tags . ("cupidatat" "id" "occaecat" "ullamco" "officia" "nulla" "quis")) (friends . (#((id . 0) (name . "Juana Sharp")) #((id . 1) (name . "Helene James")) #((id . 2) (name . "Eugenia Keith")))) (greeting . "Hello, Gibson Riddle! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302175bb329b1ab82bce9") (index . 147) (guid . "89607281-1fd3-4dc3-8e56-3618f3550476") (isActive . True) (balance . "$3,715.96") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "green") (name . "Haynes Sargent") (gender . "male") (company . "NIXELT") (email . "haynessargent@nixelt.com") (phone . "+1 (846) 456-3839") (address . "791 Schenck Avenue, Villarreal, Georgia, 9940") (about . "Duis do culpa id anim pariatur ut sit ea adipisicing id eu non nulla. Laboris laboris laboris nisi reprehenderit mollit elit est ex aliqua sunt ad laborum enim. Aliqua occaecat in ea Lorem anim laboris.\r\n") (registered . "2016-09-19T04:20:07 +06:00") (latitude . 11.308294) (longitude . 135.877879) (tags . ("amet" "culpa" "officia" "reprehenderit" "enim" "aute" "culpa")) (friends . (#((id . 0) (name . "Donaldson Patterson")) #((id . 1) (name . "Langley Buckner")) #((id . 2) (name . "Santiago Blair")))) (greeting . "Hello, Haynes Sargent! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302176bacaf7817e28684") (index . 148) (guid . "1d85bf67-22a1-4a04-8bcb-ece790043891") (isActive . True) (balance . "$1,659.52") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "brown") (name . "Mcclure Robles") (gender . "male") (company . "TURNLING") (email . "mcclurerobles@turnling.com") (phone . "+1 (870) 478-3371") (address . "299 Estate Road, National, Massachusetts, 7518") (about . "Eiusmod culpa exercitation irure tempor. Dolore anim voluptate id ipsum cupidatat nisi commodo id pariatur. Irure do laboris voluptate sunt nisi elit aute aliquip culpa aute qui qui cillum. Occaecat enim incididunt laboris consequat consequat cupidatat consequat elit dolore est labore amet anim. Adipisicing minim deserunt nisi tempor sit ea ea commodo aliqua nostrud esse. Ullamco anim ullamco nisi amet reprehenderit reprehenderit Lorem tempor excepteur laboris ad do. Minim id qui ullamco sint commodo adipisicing sit aliquip id eu.\r\n") (registered . "2015-07-14T11:06:30 +06:00") (latitude . 73.93007) (longitude . 21.873993) (tags . ("voluptate" "eiusmod" "enim" "culpa" "ipsum" "officia" "esse")) (friends . (#((id . 0) (name . "Earlene Frederick")) #((id . 1) (name . "Carr Santana")) #((id . 2) (name . "Irene Rocha")))) (greeting . "Hello, Mcclure Robles! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217cd28127ee1a820cf") (index . 149) (guid . "a3f54c12-9d0d-45f9-9b7d-9150c43f3dcb") (isActive . True) (balance . "$2,515.09") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "brown") (name . "Colette Holcomb") (gender . "female") (company . "GRAINSPOT") (email . "coletteholcomb@grainspot.com") (phone . "+1 (966) 598-3883") (address . "752 Dahill Road, Marbury, Arizona, 709") (about . "Aute magna quis cupidatat amet enim dolore velit elit. Culpa est exercitation velit veniam deserunt anim do qui laborum pariatur ut fugiat nostrud non. Ex ut et sit elit duis incididunt. Quis qui do ex nostrud in est non tempor quis sint sit eiusmod. Id officia voluptate sunt ea do sit sint anim incididunt. Velit do ad aliquip veniam aute do dolore eiusmod qui consectetur voluptate tempor velit eiusmod. Adipisicing et officia quis velit nulla fugiat in nisi cillum amet pariatur ad laboris incididunt.\r\n") (registered . "2014-09-26T02:27:35 +06:00") (latitude . 44.870044) (longitude . 45.087404) (tags . ("mollit" "ut" "do" "cupidatat" "quis" "non" "sunt")) (friends . (#((id . 0) (name . "Marie Lynch")) #((id . 1) (name . "Bird Mills")) #((id . 2) (name . "Cathy Mccarthy")))) (greeting . "Hello, Colette Holcomb! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217ed8efd98e9b33156") (index . 150) (guid . "508c613f-823a-4db1-adf9-2b4f8e6385f8") (isActive . True) (balance . "$3,742.11") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Maureen Reese") (gender . "female") (company . "KRAGGLE") (email . "maureenreese@kraggle.com") (phone . "+1 (815) 438-2440") (address . "550 Woodside Avenue, Kula, District Of Columbia, 8768") (about . "Fugiat velit amet reprehenderit duis tempor pariatur eu magna. Do ut tempor veniam elit commodo anim laborum eu qui. Excepteur eiusmod esse sit consequat ad id qui ad.\r\n") (registered . "2017-09-07T04:04:02 +06:00") (latitude . -71.202216) (longitude . 108.206125) (tags . ("cillum" "elit" "do" "minim" "laboris" "cupidatat" "magna")) (friends . (#((id . 0) (name . "Georgia Duncan")) #((id . 1) (name . "Hazel Pittman")) #((id . 2) (name . "Stone Mckay")))) (greeting . "Hello, Maureen Reese! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217844894695989aec5") (index . 151) (guid . "de289dc3-394c-4166-9699-3a8ccefc34a6") (isActive . False) (balance . "$1,102.67") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "blue") (name . "Terry Richard") (gender . "female") (company . "URBANSHEE") (email . "terryrichard@urbanshee.com") (phone . "+1 (967) 400-2572") (address . "542 Newkirk Avenue, Hanover, Virgin Islands, 6025") (about . "Officia aute dolor esse dolore laboris quis. Deserunt cillum dolore aliqua cillum ut in deserunt est ut. Enim irure laborum eu est cupidatat ex consequat esse cupidatat do. Occaecat laborum cupidatat ex id minim ea ullamco id dolor irure. Est anim dolor eiusmod proident. Sint aliquip est adipisicing ad et eiusmod consequat est aliquip nisi commodo adipisicing dolor cillum.\r\n") (registered . "2016-08-27T01:48:15 +06:00") (latitude . -29.822557) (longitude . -42.972565) (tags . ("eu" "duis" "cillum" "eiusmod" "aliquip" "dolor" "in")) (friends . (#((id . 0) (name . "Marsha Frye")) #((id . 1) (name . "Oneal Knox")) #((id . 2) (name . "Margarita Carlson")))) (greeting . "Hello, Terry Richard! You have 2 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302173065ba9bef692400") (index . 152) (guid . "2578a28b-e226-4a5f-b8bd-1447c45dd72b") (isActive . True) (balance . "$3,245.67") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "brown") (name . "Kelley Mayer") (gender . "female") (company . "SKYPLEX") (email . "kelleymayer@skyplex.com") (phone . "+1 (964) 457-2564") (address . "108 Dupont Street, Logan, South Dakota, 5118") (about . "Velit exercitation incididunt eu deserunt aliqua Lorem consectetur anim voluptate. Culpa reprehenderit non qui in quis consectetur laboris sunt mollit ex pariatur dolor eiusmod. Cupidatat veniam nostrud non tempor eu non tempor. Fugiat sint dolore cupidatat anim officia dolore cillum aliqua ullamco qui ullamco ex. Occaecat laboris duis ea aliqua ut. Nostrud nulla voluptate veniam consectetur.\r\n") (registered . "2017-02-09T07:53:28 +07:00") (latitude . 4.095219) (longitude . 24.429786) (tags . ("cillum" "cupidatat" "laboris" "commodo" "aliquip" "eiusmod" "sint")) (friends . (#((id . 0) (name . "Buckner Russo")) #((id . 1) (name . "Latasha Clay")) #((id . 2) (name . "Alana Juarez")))) (greeting . "Hello, Kelley Mayer! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217babfe92bcd836ebb") (index . 153) (guid . "4bde20eb-508f-4e83-b0fb-1ad6ac0e7c90") (isActive . False) (balance . "$1,809.39") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "blue") (name . "Michael Guerrero") (gender . "male") (company . "CENTREGY") (email . "michaelguerrero@centregy.com") (phone . "+1 (982) 433-2784") (address . "450 Sedgwick Street, Sanford, Virginia, 676") (about . "Anim ipsum consequat exercitation ex eu sunt consequat fugiat. Mollit mollit officia id magna veniam Lorem laborum ipsum in. Officia proident eiusmod exercitation reprehenderit cupidatat sunt pariatur mollit irure cupidatat magna culpa. Est nostrud qui tempor velit duis ad ut. Laboris nulla est est veniam fugiat ipsum mollit excepteur enim in pariatur mollit reprehenderit.\r\n") (registered . "2017-05-24T10:12:46 +06:00") (latitude . 80.170649) (longitude . -19.42405) (tags . ("elit" "eiusmod" "est" "laborum" "minim" "in" "amet")) (friends . (#((id . 0) (name . "Gina Cervantes")) #((id . 1) (name . "Mckinney Porter")) #((id . 2) (name . "Patty Thornton")))) (greeting . "Hello, Michael Guerrero! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217a358399253ec9900") (index . 154) (guid . "2a3f3118-c19d-49d8-943c-d515bc7aec75") (isActive . True) (balance . "$2,455.56") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "green") (name . "Tara Carter") (gender . "female") (company . "ZILLIDIUM") (email . "taracarter@zillidium.com") (phone . "+1 (899) 471-3471") (address . "504 Whitty Lane, Stewart, Michigan, 5694") (about . "Aliquip do cupidatat ad veniam consectetur. Officia est adipisicing ullamco nisi esse sint id aliquip. Reprehenderit duis laborum eiusmod Lorem velit. Exercitation fugiat occaecat non sunt irure ex. Amet incididunt velit duis cupidatat. Mollit quis consequat laborum tempor occaecat nulla.\r\n") (registered . "2017-11-02T12:06:37 +06:00") (latitude . -25.313296) (longitude . 131.050871) (tags . ("sit" "voluptate" "magna" "magna" "nostrud" "anim" "ullamco")) (friends . (#((id . 0) (name . "Dillard Stafford")) #((id . 1) (name . "Chandra Foley")) #((id . 2) (name . "Leticia Gates")))) (greeting . "Hello, Tara Carter! You have 2 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302179bf54e7cabf97f58") (index . 155) (guid . "9c342a3a-ec8e-4187-91be-8366c5011b09") (isActive . True) (balance . "$3,172.95") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "green") (name . "Buck Gould") (gender . "male") (company . "LYRICHORD") (email . "buckgould@lyrichord.com") (phone . "+1 (942) 459-2292") (address . "261 Will Place, Crumpler, Northern Mariana Islands, 1829") (about . "Quis cupidatat pariatur do cupidatat ex nulla labore excepteur qui commodo cillum. Velit est dolor cupidatat sint sint do incididunt sit reprehenderit duis Lorem consectetur velit. Eu excepteur ex labore id cupidatat consequat fugiat incididunt anim do irure in sunt.\r\n") (registered . "2017-12-16T09:06:50 +07:00") (latitude . -87.046824) (longitude . 23.70728) (tags . ("ut" "nisi" "exercitation" "reprehenderit" "non" "tempor" "amet")) (friends . (#((id . 0) (name . "Charlene Shelton")) #((id . 1) (name . "Tabitha Charles")) #((id . 2) (name . "Petersen Baird")))) (greeting . "Hello, Buck Gould! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302174f671933ab2b1a0f") (index . 156) (guid . "769b7990-ed02-4df5-9a48-9a6db4c3dcc3") (isActive . True) (balance . "$1,599.08") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "green") (name . "Ramos Forbes") (gender . "male") (company . "NETERIA") (email . "ramosforbes@neteria.com") (phone . "+1 (891) 404-3054") (address . "486 Allen Avenue, Moscow, Illinois, 4498") (about . "Consequat dolor nisi cillum cillum est reprehenderit ullamco sit commodo aliqua ut. Eu dolore reprehenderit ea cupidatat Lorem tempor qui. Duis irure eiusmod nostrud duis officia nisi adipisicing dolor nisi deserunt amet aliqua incididunt aliqua. Magna sit irure proident anim. Deserunt nostrud nulla ea laboris ex aute fugiat. Dolor ullamco fugiat elit dolor sit qui dolor.\r\n") (registered . "2015-07-21T11:05:25 +06:00") (latitude . 6.435667) (longitude . 151.879731) (tags . ("fugiat" "id" "cupidatat" "commodo" "consectetur" "id" "labore")) (friends . (#((id . 0) (name . "Moran Garza")) #((id . 1) (name . "Josefa Skinner")) #((id . 2) (name . "Isabel Doyle")))) (greeting . "Hello, Ramos Forbes! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021768b6e425b66e3d9c") (index . 157) (guid . "597cfca0-7f8b-4dde-b1db-b48e7dde01eb") (isActive . False) (balance . "$1,570.09") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "green") (name . "Leonor Trujillo") (gender . "female") (company . "EQUITAX") (email . "leonortrujillo@equitax.com") (phone . "+1 (892) 600-2492") (address . "507 Maple Avenue, Baker, Wisconsin, 9014") (about . "Sit velit Lorem nisi qui incididunt eiusmod quis quis tempor commodo non ut minim. Do quis anim sit ipsum amet et consequat consectetur nostrud deserunt veniam qui. Nostrud minim sint nisi quis fugiat deserunt occaecat aliquip sit. Nulla cillum esse pariatur qui sunt fugiat nisi Lorem id nulla pariatur eiusmod fugiat. Deserunt dolore consectetur esse nostrud laboris veniam mollit ex dolore sunt ullamco irure.\r\n") (registered . "2014-06-13T04:49:14 +06:00") (latitude . -60.336785) (longitude . 37.465376) (tags . ("ad" "enim" "deserunt" "est" "Lorem" "dolore" "nulla")) (friends . (#((id . 0) (name . "Roxie Garrett")) #((id . 1) (name . "Fulton Heath")) #((id . 2) (name . "Ladonna Hughes")))) (greeting . "Hello, Leonor Trujillo! You have 1 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217587f573c65689575") (index . 158) (guid . "204d1f49-5a7e-4a0b-945d-7d7d7ce7a57f") (isActive . True) (balance . "$1,660.90") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "green") (name . "Blackburn Davis") (gender . "male") (company . "PLASMOX") (email . "blackburndavis@plasmox.com") (phone . "+1 (821) 547-3013") (address . "437 Hewes Street, Allensworth, Idaho, 2214") (about . "Nostrud anim pariatur reprehenderit nostrud qui esse labore. Anim consectetur voluptate incididunt dolore. Ullamco nulla amet ad ipsum cupidatat adipisicing. Mollit amet sit laborum laboris ea irure.\r\n") (registered . "2017-11-17T02:36:08 +07:00") (latitude . 70.677992) (longitude . -81.670029) (tags . ("irure" "amet" "do" "non" "cupidatat" "incididunt" "excepteur")) (friends . (#((id . 0) (name . "Gomez Barber")) #((id . 1) (name . "Bean Mcneil")) #((id . 2) (name . "Allison Mays")))) (greeting . "Hello, Blackburn Davis! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217a89c25c1b1506ce7") (index . 159) (guid . "e6f0e5ab-cf38-40fc-bbb4-2f45267457e5") (isActive . True) (balance . "$2,681.82") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "green") (name . "Haney Moreno") (gender . "male") (company . "OATFARM") (email . "haneymoreno@oatfarm.com") (phone . "+1 (856) 412-2304") (address . "773 Homecrest Avenue, Kidder, New Hampshire, 409") (about . "Nulla proident deserunt amet irure sint voluptate ea aute sunt duis. Ea cupidatat culpa anim nulla do excepteur consectetur eiusmod consequat voluptate. Veniam est mollit fugiat proident et irure mollit quis nulla id ipsum eiusmod. Officia duis commodo proident laboris aliqua fugiat esse. Cillum ullamco ea nulla exercitation sit enim proident nulla duis. Est laborum et officia Lorem.\r\n") (registered . "2015-09-23T01:38:18 +06:00") (latitude . -12.528011) (longitude . 62.804124) (tags . ("sunt" "ad" "et" "labore" "ullamco" "fugiat" "adipisicing")) (friends . (#((id . 0) (name . "James Hood")) #((id . 1) (name . "Paige Harvey")) #((id . 2) (name . "Cooper Perez")))) (greeting . "Hello, Haney Moreno! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217a86323f286757246") (index . 160) (guid . "87cd798a-108f-4a68-aaac-35c1c2d6e000") (isActive . True) (balance . "$2,507.33") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "brown") (name . "Chelsea Atkinson") (gender . "female") (company . "FLEXIGEN") (email . "chelseaatkinson@flexigen.com") (phone . "+1 (911) 598-2699") (address . "831 Suydam Place, Whitestone, South Carolina, 9569") (about . "Esse nisi est Lorem esse incididunt. Proident laboris occaecat amet fugiat cillum proident aliqua aliquip nisi velit commodo eu voluptate. Proident officia ea proident nulla.\r\n") (registered . "2017-07-01T01:18:37 +06:00") (latitude . 0.631594) (longitude . -84.984423) (tags . ("reprehenderit" "minim" "non" "enim" "ea" "occaecat" "excepteur")) (friends . (#((id . 0) (name . "Andrea Conway")) #((id . 1) (name . "Louisa Albert")) #((id . 2) (name . "Sofia Stokes")))) (greeting . "Hello, Chelsea Atkinson! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302170fd6604d4ca1fd3f") (index . 161) (guid . "75e4cb34-36d0-4194-9c26-f77e1cc6a130") (isActive . False) (balance . "$3,899.23") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "brown") (name . "Sallie Wagner") (gender . "female") (company . "CUBIX") (email . "salliewagner@cubix.com") (phone . "+1 (991) 477-2786") (address . "829 Columbus Place, Kerby, Iowa, 8500") (about . "Elit labore aute commodo Lorem ipsum ipsum minim. Mollit ea sint dolor anim eu laboris cupidatat sit mollit nulla dolor. Nulla Lorem duis sit ad ipsum aliquip labore aute cupidatat eiusmod. Ullamco adipisicing officia elit magna aliquip tempor. In aliqua ipsum nostrud occaecat pariatur in officia cupidatat. Consequat deserunt veniam ullamco duis dolor velit proident sit nisi laboris.\r\n") (registered . "2017-05-05T07:44:36 +06:00") (latitude . 4.27185) (longitude . 123.175662) (tags . ("consequat" "cillum" "voluptate" "nostrud" "cillum" "excepteur" "dolore")) (friends . (#((id . 0) (name . "Saunders Pearson")) #((id . 1) (name . "Calderon Leblanc")) #((id . 2) (name . "Valarie Perkins")))) (greeting . "Hello, Sallie Wagner! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217d2d72e8397cf5fe2") (index . 162) (guid . "90a4f1ea-236d-4eed-95fa-8d77de96e2e4") (isActive . False) (balance . "$1,349.29") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "blue") (name . "Elaine Kramer") (gender . "female") (company . "COMVEY") (email . "elainekramer@comvey.com") (phone . "+1 (993) 476-2155") (address . "651 Congress Street, Mathews, California, 533") (about . "Ex veniam nisi consequat aute sint laboris sit tempor ullamco anim consectetur culpa. Deserunt eiusmod ex commodo minim irure ex amet nisi enim enim ex nostrud cupidatat. Est reprehenderit quis nisi labore veniam id Lorem qui. Ullamco reprehenderit anim consectetur veniam pariatur deserunt laborum do et commodo culpa id et. Et irure elit ipsum laborum nulla exercitation culpa excepteur esse. Esse dolore anim pariatur dolore veniam exercitation ea.\r\n") (registered . "2014-02-06T01:13:29 +07:00") (latitude . 5.970128) (longitude . 62.623005) (tags . ("aliqua" "consectetur" "enim" "officia" "nostrud" "sit" "ullamco")) (friends . (#((id . 0) (name . "Chase Gutierrez")) #((id . 1) (name . "Jennifer Ayala")) #((id . 2) (name . "Sherry Wilcox")))) (greeting . "Hello, Elaine Kramer! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217d843bc45476c0eb8") (index . 163) (guid . "cd5e3708-1ad5-43db-a16c-bddfaf95b493") (isActive . True) (balance . "$3,588.93") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "brown") (name . "Hester Bradley") (gender . "female") (company . "FURNITECH") (email . "hesterbradley@furnitech.com") (phone . "+1 (926) 403-2067") (address . "688 Rutland Road, Churchill, Wyoming, 7980") (about . "Enim id amet id pariatur proident. Anim nulla laboris eu cillum sit anim amet excepteur amet reprehenderit ullamco incididunt esse magna. Tempor cupidatat proident excepteur esse adipisicing mollit do. Pariatur velit mollit eu aliquip ipsum labore aliqua incididunt. Et excepteur nisi culpa proident ut mollit nulla non commodo eiusmod occaecat laboris consequat. Nulla anim et non do laborum cupidatat in.\r\n") (registered . "2018-02-03T07:59:03 +07:00") (latitude . 74.551004) (longitude . 175.885196) (tags . ("ea" "laborum" "exercitation" "aute" "cillum" "proident" "excepteur")) (friends . (#((id . 0) (name . "Shaffer Joyce")) #((id . 1) (name . "Luisa Leonard")) #((id . 2) (name . "Finley Gillespie")))) (greeting . "Hello, Hester Bradley! You have 2 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021726335d218593ad49") (index . 164) (guid . "b46129d6-f81d-4873-a999-1a2fd90aa9ec") (isActive . False) (balance . "$2,309.88") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "brown") (name . "Coleen Villarreal") (gender . "female") (company . "EXOSPACE") (email . "coleenvillarreal@exospace.com") (phone . "+1 (848) 586-3948") (address . "946 Hancock Street, Rote, Maryland, 6580") (about . "Commodo incididunt aliquip in qui eu duis anim ea dolor ex incididunt. Laborum esse officia aute mollit veniam minim cillum cupidatat sit. Mollit quis exercitation do officia cupidatat nostrud laboris est eu in cupidatat. Quis excepteur laboris et in labore ullamco consequat consectetur ullamco nostrud id occaecat consectetur. Quis consectetur ad elit consequat consectetur labore. Nulla deserunt incididunt esse ad. Aute occaecat culpa dolor pariatur.\r\n") (registered . "2014-11-02T07:12:39 +07:00") (latitude . 28.470324) (longitude . 130.854749) (tags . ("ea" "amet" "irure" "pariatur" "non" "proident" "consectetur")) (friends . (#((id . 0) (name . "Elvia Miles")) #((id . 1) (name . "Kelsey Franks")) #((id . 2) (name . "Sybil Evans")))) (greeting . "Hello, Coleen Villarreal! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217e51dff3a06c28d7d") (index . 165) (guid . "ca84b328-a621-449c-88eb-67818275f26a") (isActive . False) (balance . "$1,812.14") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "brown") (name . "Jacklyn Rosa") (gender . "female") (company . "NIPAZ") (email . "jacklynrosa@nipaz.com") (phone . "+1 (966) 598-3377") (address . "510 Schroeders Avenue, Stollings, Louisiana, 1242") (about . "Incididunt eu eu aliqua minim duis Lorem laboris do minim. Aute sint adipisicing laboris irure in. Exercitation amet aliqua reprehenderit incididunt nulla eiusmod eu cillum exercitation in amet pariatur laboris commodo. Enim laborum sint officia enim non Lorem dolor ea ex magna nisi nisi anim culpa. Est magna cillum exercitation voluptate nostrud enim labore sunt ad velit aliqua. Tempor qui deserunt mollit sint.\r\n") (registered . "2015-08-31T01:19:15 +06:00") (latitude . 63.158827) (longitude . -90.224317) (tags . ("amet" "ea" "ipsum" "eu" "irure" "magna" "nisi")) (friends . (#((id . 0) (name . "Mccall Hernandez")) #((id . 1) (name . "Jackson Salinas")) #((id . 2) (name . "Arlene Aguirre")))) (greeting . "Hello, Jacklyn Rosa! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302176c330f6a4b65c74a") (index . 166) (guid . "ee8cfcdb-1dd0-4ce8-b659-09ab70c140b7") (isActive . False) (balance . "$3,700.56") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "brown") (name . "Annabelle Pugh") (gender . "female") (company . "GENMY") (email . "annabellepugh@genmy.com") (phone . "+1 (803) 482-3135") (address . "299 Fayette Street, Cannondale, Federated States Of Micronesia, 5373") (about . "Labore id excepteur velit cupidatat reprehenderit nostrud. Veniam sit voluptate veniam ipsum minim. Esse quis nostrud aute commodo in anim amet officia dolor. Adipisicing sint consequat exercitation dolore non consequat. Veniam eiusmod ad nulla reprehenderit deserunt tempor ut est sint. Velit et sunt est dolor eiusmod nisi irure. Commodo amet enim Lorem deserunt non amet sunt ut cupidatat occaecat do nisi sint excepteur.\r\n") (registered . "2014-05-02T04:19:37 +06:00") (latitude . -57.617251) (longitude . 168.412894) (tags . ("consequat" "culpa" "mollit" "velit" "incididunt" "dolore" "sit")) (friends . (#((id . 0) (name . "Norris House")) #((id . 1) (name . "Bernadette Hutchinson")) #((id . 2) (name . "Deirdre Levine")))) (greeting . "Hello, Annabelle Pugh! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217d16e757020085f4a") (index . 167) (guid . "0f2ada8d-bd64-46a1-a6a7-d1e7683bef11") (isActive . False) (balance . "$2,112.60") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "brown") (name . "Maura Reilly") (gender . "female") (company . "HONOTRON") (email . "maurareilly@honotron.com") (phone . "+1 (846) 566-2047") (address . "154 Eastern Parkway, Greensburg, Pennsylvania, 9454") (about . "Aute minim deserunt duis deserunt reprehenderit elit aliqua commodo est deserunt. Incididunt non culpa enim mollit et sit fugiat sunt labore. Culpa esse cillum aute officia do veniam tempor ea deserunt eiusmod culpa sit proident. Culpa laboris elit qui nulla proident commodo aliquip ut veniam duis ad cillum incididunt. Occaecat qui fugiat qui minim. Nostrud proident ex ut dolor quis officia aliqua nisi dolor. Labore velit cupidatat ipsum voluptate elit ut eu magna ullamco mollit.\r\n") (registered . "2018-02-03T01:52:21 +07:00") (latitude . 15.547388) (longitude . 154.815616) (tags . ("laboris" "excepteur" "ipsum" "ex" "veniam" "eiusmod" "id")) (friends . (#((id . 0) (name . "Audrey Stark")) #((id . 1) (name . "Ophelia Melendez")) #((id . 2) (name . "Bernadine Reeves")))) (greeting . "Hello, Maura Reilly! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217eee0d85aa8562bfa") (index . 168) (guid . "533e17ca-ef05-4a62-8d74-01cd68ee45bf") (isActive . True) (balance . "$3,783.69") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "brown") (name . "Ingrid Simmons") (gender . "female") (company . "EXOSIS") (email . "ingridsimmons@exosis.com") (phone . "+1 (835) 539-2130") (address . "457 Lawrence Avenue, Cazadero, Vermont, 4629") (about . "Aliqua pariatur minim ex ad commodo in exercitation et amet ad. Adipisicing irure duis consequat ea. Occaecat dolore ex occaecat sint nostrud enim irure in labore aute eiusmod ad.\r\n") (registered . "2014-02-18T10:17:16 +07:00") (latitude . -87.217993) (longitude . -138.939721) (tags . ("dolore" "non" "ex" "officia" "velit" "ut" "ex")) (friends . (#((id . 0) (name . "Shawn Jarvis")) #((id . 1) (name . "Hendrix Mcleod")) #((id . 2) (name . "Rowland Kim")))) (greeting . "Hello, Ingrid Simmons! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302171b3a311124a1f2c7") (index . 169) (guid . "b965fa3a-2e7a-49b2-996a-3741d62734a4") (isActive . False) (balance . "$1,578.93") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "brown") (name . "Catherine Lowery") (gender . "female") (company . "BOILICON") (email . "catherinelowery@boilicon.com") (phone . "+1 (905) 512-2258") (address . "733 Rose Street, Clay, Maine, 901") (about . "Ut aute esse minim voluptate aliqua proident quis deserunt. Pariatur culpa deserunt velit Lorem qui incididunt qui sunt. Do consequat anim enim officia. Irure mollit proident incididunt Lorem sunt et laboris fugiat occaecat laborum quis ad proident. Eu exercitation sunt dolor nostrud mollit pariatur. Commodo dolore cillum ullamco occaecat aliquip eu non nisi commodo deserunt.\r\n") (registered . "2014-09-15T08:26:55 +06:00") (latitude . -21.145284) (longitude . 59.697145) (tags . ("in" "et" "nulla" "dolor" "elit" "velit" "adipisicing")) (friends . (#((id . 0) (name . "Hebert Vasquez")) #((id . 1) (name . "Angelia Wolf")) #((id . 2) (name . "Jensen Horn")))) (greeting . "Hello, Catherine Lowery! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021770d3d518fcce9254") (index . 170) (guid . "3e3d5a2f-016c-4818-83e5-11e1e42cd9a8") (isActive . True) (balance . "$2,494.91") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "brown") (name . "Gwendolyn Mcconnell") (gender . "female") (company . "SUNCLIPSE") (email . "gwendolynmcconnell@sunclipse.com") (phone . "+1 (920) 438-3553") (address . "105 Pitkin Avenue, Chamberino, Alaska, 5077") (about . "Do quis consectetur esse eu sunt do nulla commodo voluptate ad. Proident incididunt id laborum ut consequat minim. Occaecat eiusmod adipisicing esse voluptate minim eiusmod consectetur nisi qui laboris deserunt amet. Adipisicing mollit Lorem velit ut cillum eu proident velit velit sunt nostrud tempor. Ad quis cillum eiusmod labore laboris in laboris velit magna. Occaecat eu ex quis aliqua nisi pariatur officia aute qui.\r\n") (registered . "2014-12-20T02:29:01 +07:00") (latitude . -17.831391) (longitude . -59.984101) (tags . ("culpa" "proident" "adipisicing" "esse" "ipsum" "enim" "in")) (friends . (#((id . 0) (name . "Beryl Walter")) #((id . 1) (name . "Hale Chavez")) #((id . 2) (name . "Allen Rivera")))) (greeting . "Hello, Gwendolyn Mcconnell! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217e798469b79c10dbc") (index . 171) (guid . "b63fcae3-bdc8-4b48-8948-05374f421d21") (isActive . True) (balance . "$3,725.62") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "brown") (name . "Traci Oliver") (gender . "female") (company . "EMOLTRA") (email . "tracioliver@emoltra.com") (phone . "+1 (944) 408-3969") (address . "116 Auburn Place, Cuylerville, Palau, 8704") (about . "Id commodo mollit anim aliqua. Ea dolor minim mollit veniam veniam id ut ut cillum. Minim reprehenderit ea aliqua aute aute.\r\n") (registered . "2017-10-02T10:24:29 +06:00") (latitude . 7.595152) (longitude . 157.003542) (tags . ("cupidatat" "proident" "est" "id" "nisi" "Lorem" "non")) (friends . (#((id . 0) (name . "Mooney Dunn")) #((id . 1) (name . "Walsh Dixon")) #((id . 2) (name . "Kaitlin Mcdaniel")))) (greeting . "Hello, Traci Oliver! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217a22abb132b700df5") (index . 172) (guid . "ff26bd2b-90ca-476d-8852-00dde394449c") (isActive . False) (balance . "$3,670.40") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "green") (name . "Cheryl Hanson") (gender . "female") (company . "ZUVY") (email . "cherylhanson@zuvy.com") (phone . "+1 (821) 549-2902") (address . "104 Newkirk Placez, Nash, Arkansas, 7661") (about . "Amet id do adipisicing laboris nulla cupidatat eu est aute et reprehenderit dolore laboris mollit. Deserunt cillum do exercitation qui nulla. Sunt deserunt exercitation labore laboris aliqua aliquip dolor ex non nulla. Sunt occaecat velit cillum reprehenderit officia.\r\n") (registered . "2016-12-24T01:58:56 +07:00") (latitude . 52.912755) (longitude . 4.181067) (tags . ("elit" "amet" "officia" "aliquip" "voluptate" "culpa" "est")) (friends . (#((id . 0) (name . "Melton Whitaker")) #((id . 1) (name . "Hamilton Hooper")) #((id . 2) (name . "Burks Hoffman")))) (greeting . "Hello, Cheryl Hanson! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217275af81ac70c207a") (index . 173) (guid . "7f6b8940-65af-4b60-9803-662f8753fc22") (isActive . True) (balance . "$3,771.66") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "green") (name . "Ines Hewitt") (gender . "female") (company . "INSURITY") (email . "ineshewitt@insurity.com") (phone . "+1 (995) 478-3072") (address . "583 Gatling Place, Marenisco, Florida, 8265") (about . "Nisi tempor occaecat ipsum pariatur consequat proident eu est dolor laborum Lorem. Qui minim sint pariatur quis enim do culpa magna elit consequat sunt laborum ea excepteur. Eu proident id Lorem sint veniam. Non sint commodo reprehenderit est ipsum fugiat qui non nostrud eiusmod quis Lorem irure. Ad consequat laborum ea veniam dolor minim non sit mollit sunt. Esse ea reprehenderit culpa aliquip est quis anim mollit cupidatat dolor voluptate exercitation elit pariatur. Id amet deserunt aliquip adipisicing est pariatur et velit laborum eu occaecat ullamco proident.\r\n") (registered . "2017-02-20T09:57:47 +07:00") (latitude . 60.924192) (longitude . -40.198041) (tags . ("nisi" "reprehenderit" "mollit" "ad" "reprehenderit" "elit" "culpa")) (friends . (#((id . 0) (name . "Margo Dalton")) #((id . 1) (name . "Mandy Guthrie")) #((id . 2) (name . "Garrison Kane")))) (greeting . "Hello, Ines Hewitt! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021736ba080598dbc5a9") (index . 174) (guid . "c47605ab-1b46-484b-bf16-dc7fb25b276f") (isActive . True) (balance . "$2,819.98") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "brown") (name . "Geraldine Boyer") (gender . "female") (company . "RETROTEX") (email . "geraldineboyer@retrotex.com") (phone . "+1 (934) 467-2325") (address . "237 Dikeman Street, Springhill, Puerto Rico, 2968") (about . "Reprehenderit sunt esse deserunt proident ea esse eiusmod. Duis magna et ex fugiat voluptate sint. Pariatur consectetur commodo id qui consequat aute. Anim fugiat proident Lorem qui sunt voluptate nisi duis enim enim exercitation veniam.\r\n") (registered . "2016-10-01T05:46:53 +06:00") (latitude . -27.254975) (longitude . 113.534855) (tags . ("culpa" "incididunt" "voluptate" "laboris" "mollit" "tempor" "sunt")) (friends . (#((id . 0) (name . "Kaye Vaughn")) #((id . 1) (name . "Pena Orr")) #((id . 2) (name . "Reed Callahan")))) (greeting . "Hello, Geraldine Boyer! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217a8dd93f3a9af45e8") (index . 175) (guid . "78a40b58-5a12-4be3-85dc-6ca76d963141") (isActive . True) (balance . "$2,658.65") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "green") (name . "Virgie Powell") (gender . "female") (company . "SYNTAC") (email . "virgiepowell@syntac.com") (phone . "+1 (884) 418-2401") (address . "430 Ditmas Avenue, Echo, Hawaii, 1811") (about . "Veniam nisi nulla aliquip labore occaecat in duis laborum et ullamco ullamco. Incididunt ad fugiat cupidatat magna nisi cillum cillum anim adipisicing est culpa. Tempor ex incididunt labore commodo incididunt. Pariatur sunt irure nisi ex est do eu culpa ex mollit cupidatat qui proident esse. Do ullamco eiusmod fugiat sit sit aute est anim anim in aliquip Lorem.\r\n") (registered . "2015-06-23T04:27:17 +06:00") (latitude . 14.754211) (longitude . -112.757143) (tags . ("ea" "exercitation" "dolor" "sint" "elit" "qui" "eiusmod")) (friends . (#((id . 0) (name . "Lori Noble")) #((id . 1) (name . "Jennings Knowles")) #((id . 2) (name . "Lesley Hubbard")))) (greeting . "Hello, Virgie Powell! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217efd16d215dc8e4f0") (index . 176) (guid . "c92d0c47-41ea-4d3b-80e6-a402159c8c07") (isActive . True) (balance . "$3,807.19") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "brown") (name . "Marcia Faulkner") (gender . "female") (company . "SIGNITY") (email . "marciafaulkner@signity.com") (phone . "+1 (805) 477-2394") (address . "296 Brighton Avenue, Hatteras, American Samoa, 925") (about . "Esse sit consectetur et ut cupidatat nisi deserunt in consequat. Cupidatat dolore ut ad minim incididunt duis culpa ad. Non ad consectetur deserunt occaecat est Lorem id nulla. Adipisicing qui nostrud cillum dolor quis anim eu exercitation incididunt quis nostrud enim in. Est exercitation irure excepteur pariatur exercitation reprehenderit exercitation. Voluptate laboris labore aute Lorem.\r\n") (registered . "2017-01-01T02:06:57 +07:00") (latitude . 66.908556) (longitude . 116.756304) (tags . ("eiusmod" "qui" "incididunt" "commodo" "eu" "sint" "esse")) (friends . (#((id . 0) (name . "Alexis Ellis")) #((id . 1) (name . "Cunningham Dillard")) #((id . 2) (name . "Bessie Barnett")))) (greeting . "Hello, Marcia Faulkner! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217aad3d74e53f429de") (index . 177) (guid . "7fb1efb0-3363-472e-b5a0-f127bac72398") (isActive . True) (balance . "$1,494.06") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "brown") (name . "Shelton Savage") (gender . "male") (company . "VIAGREAT") (email . "sheltonsavage@viagreat.com") (phone . "+1 (905) 528-2024") (address . "497 Church Lane, Canby, Indiana, 9189") (about . "Duis mollit consectetur excepteur mollit tempor ex consequat reprehenderit. Commodo veniam ex cupidatat non mollit consectetur labore. Aute qui commodo irure labore voluptate. Ea in laborum aliquip proident eiusmod. Ut do culpa tempor officia minim dolore dolor ad ullamco. Adipisicing nostrud deserunt anim Lorem nostrud non labore esse. Cillum id velit proident et officia in.\r\n") (registered . "2017-10-28T07:20:05 +06:00") (latitude . -59.631244) (longitude . 36.693813) (tags . ("Lorem" "sint" "ullamco" "est" "nulla" "ullamco" "eiusmod")) (friends . (#((id . 0) (name . "Ellen Chaney")) #((id . 1) (name . "Marilyn Palmer")) #((id . 2) (name . "Duke Hoover")))) (greeting . "Hello, Shelton Savage! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217d0c33e087ded99dd") (index . 178) (guid . "9d3b32bc-b0ae-4f73-9507-120ab59030f9") (isActive . True) (balance . "$1,117.16") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "brown") (name . "Schroeder Crawford") (gender . "male") (company . "PAWNAGRA") (email . "schroedercrawford@pawnagra.com") (phone . "+1 (824) 526-3555") (address . "380 Montauk Court, Jenkinsville, Missouri, 977") (about . "Consectetur cupidatat cillum nulla amet mollit dolor excepteur incididunt esse aliquip excepteur officia esse proident. Ad in esse in nulla ex culpa. Velit culpa excepteur pariatur commodo Lorem aliqua. Magna labore amet laboris ullamco do exercitation consequat nisi fugiat nostrud tempor elit qui occaecat. Nulla officia dolor sunt id Lorem magna ipsum culpa.\r\n") (registered . "2014-07-16T06:26:28 +06:00") (latitude . 29.69001) (longitude . -41.315769) (tags . ("aute" "ad" "qui" "excepteur" "ad" "dolor" "excepteur")) (friends . (#((id . 0) (name . "Skinner Whitehead")) #((id . 1) (name . "Jacobson Beck")) #((id . 2) (name . "Wood Ferrell")))) (greeting . "Hello, Schroeder Crawford! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021701a5f3c3a6e5e28a") (index . 179) (guid . "f2de3924-c1fa-4a6b-9656-a14554976135") (isActive . False) (balance . "$1,282.45") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "green") (name . "Blankenship Madden") (gender . "male") (company . "VIRVA") (email . "blankenshipmadden@virva.com") (phone . "+1 (938) 598-2092") (address . "552 Melba Court, Hilltop, Guam, 7170") (about . "Enim irure laborum velit eu ea amet sunt et sint. Ipsum laborum elit amet laborum. Amet cillum commodo veniam voluptate ex velit do dolor duis minim. Qui amet proident proident cupidatat reprehenderit id tempor ullamco esse dolor. Eiusmod dolore irure laboris id irure fugiat sit id excepteur exercitation magna. Quis voluptate ut est consectetur sit aliquip ipsum culpa reprehenderit consequat laborum velit nulla culpa. Ullamco id nulla aliqua sit ad amet cupidatat quis.\r\n") (registered . "2017-11-17T05:01:12 +07:00") (latitude . 63.094187) (longitude . -91.943275) (tags . ("ipsum" "adipisicing" "sunt" "velit" "labore" "aute" "sunt")) (friends . (#((id . 0) (name . "Cobb Munoz")) #((id . 1) (name . "Celeste Quinn")) #((id . 2) (name . "Rogers Ballard")))) (greeting . "Hello, Blankenship Madden! You have 2 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217d59605a592782993") (index . 180) (guid . "9fc58e58-4fe3-4627-ab22-a389ba0ff2d4") (isActive . True) (balance . "$3,826.49") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "brown") (name . "Harrison Jacobs") (gender . "male") (company . "ARTWORLDS") (email . "harrisonjacobs@artworlds.com") (phone . "+1 (911) 470-3644") (address . "174 Moore Street, Linganore, Minnesota, 1914") (about . "Aliqua nisi officia reprehenderit aliqua tempor sunt labore sit ex. Qui nisi consectetur amet ea labore ea duis non commodo. Adipisicing velit Lorem incididunt ad excepteur aliquip sit esse proident dolore commodo officia ullamco veniam. Proident voluptate ullamco cupidatat sunt laboris consequat adipisicing mollit est minim reprehenderit ipsum sint deserunt. Enim aliqua incididunt et et cillum adipisicing sunt est laborum nisi aliqua exercitation aliqua cillum.\r\n") (registered . "2016-08-15T08:52:28 +06:00") (latitude . 55.336937) (longitude . 109.158091) (tags . ("ad" "anim" "anim" "laboris" "aute" "id" "qui")) (friends . (#((id . 0) (name . "Gonzales Campos")) #((id . 1) (name . "Wilkinson Montoya")) #((id . 2) (name . "Rios Powers")))) (greeting . "Hello, Harrison Jacobs! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217853fe2993656daab") (index . 181) (guid . "0a235734-397e-47f1-982a-1e06f9a79572") (isActive . True) (balance . "$1,981.91") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "blue") (name . "Wendi Morgan") (gender . "female") (company . "MIRACULA") (email . "wendimorgan@miracula.com") (phone . "+1 (965) 412-2004") (address . "165 Gotham Avenue, Rockbridge, Delaware, 353") (about . "Dolore non esse do magna nulla Lorem do. In consectetur culpa consectetur enim fugiat occaecat exercitation nostrud aliqua anim. Amet aliqua mollit quis duis ut est adipisicing adipisicing tempor. Et aliqua tempor sunt sit culpa ea eu eu fugiat cupidatat. Elit velit ipsum officia veniam ea fugiat dolore nisi velit id voluptate in. Velit eiusmod in veniam qui.\r\n") (registered . "2016-12-06T07:50:13 +07:00") (latitude . -2.376534) (longitude . 73.662476) (tags . ("qui" "tempor" "quis" "eu" "adipisicing" "sit" "tempor")) (friends . (#((id . 0) (name . "Julie Bullock")) #((id . 1) (name . "Britt Pace")) #((id . 2) (name . "Joanne Allen")))) (greeting . "Hello, Wendi Morgan! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021738df3e8ddea4e221") (index . 182) (guid . "062c3293-1504-4078-a3df-9255699ad54d") (isActive . True) (balance . "$2,081.95") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "blue") (name . "Tate Holden") (gender . "male") (company . "QABOOS") (email . "tateholden@qaboos.com") (phone . "+1 (956) 531-3271") (address . "431 Beach Place, Calpine, Kansas, 1038") (about . "Id ex nulla commodo cupidatat voluptate et magna laborum sint in. Consequat fugiat ad Lorem adipisicing nulla. In proident deserunt proident ullamco deserunt ea enim proident esse ea non elit. Mollit laboris tempor aute velit dolor.\r\n") (registered . "2014-07-01T12:22:24 +06:00") (latitude . -12.052074) (longitude . 102.089839) (tags . ("ipsum" "anim" "Lorem" "est" "est" "reprehenderit" "nostrud")) (friends . (#((id . 0) (name . "Barnes Hyde")) #((id . 1) (name . "Grant Leon")) #((id . 2) (name . "Ginger Pennington")))) (greeting . "Hello, Tate Holden! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217f100ec86791e4a9e") (index . 183) (guid . "5e4cfe6d-090c-4fca-8267-f169ee889c1f") (isActive . True) (balance . "$3,744.20") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "green") (name . "Mccarty Banks") (gender . "male") (company . "DREAMIA") (email . "mccartybanks@dreamia.com") (phone . "+1 (835) 450-2600") (address . "701 Furman Street, Hendersonville, Washington, 1441") (about . "Dolor magna fugiat ipsum minim aliquip. Nulla cillum excepteur velit eiusmod et veniam sit adipisicing est mollit. Mollit ullamco ut nulla adipisicing cupidatat nisi deserunt voluptate. Sint pariatur non tempor ullamco incididunt magna pariatur id ex irure ullamco. Quis et pariatur nostrud commodo id reprehenderit reprehenderit eu.\r\n") (registered . "2014-01-02T12:25:09 +07:00") (latitude . -28.346975) (longitude . 109.774684) (tags . ("deserunt" "proident" "consectetur" "ea" "voluptate" "veniam" "labore")) (friends . (#((id . 0) (name . "Gallagher Cunningham")) #((id . 1) (name . "Ayers Wooten")) #((id . 2) (name . "Castaneda Goodwin")))) (greeting . "Hello, Mccarty Banks! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021723594671232b9b75") (index . 184) (guid . "ebb413a0-091b-4b1a-b128-ce4976cf07db") (isActive . True) (balance . "$1,707.68") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "blue") (name . "Mccarthy Cline") (gender . "male") (company . "GENMOM") (email . "mccarthycline@genmom.com") (phone . "+1 (941) 401-3009") (address . "437 Huntington Street, Belgreen, Oklahoma, 6291") (about . "Magna irure minim esse in commodo laborum laboris minim ad dolor. Adipisicing sunt tempor officia proident officia id dolore ipsum aute quis. Ad eu tempor dolore labore mollit sint.\r\n") (registered . "2018-02-11T11:08:15 +07:00") (latitude . -10.045588) (longitude . -122.368284) (tags . ("qui" "consectetur" "minim" "voluptate" "pariatur" "duis" "mollit")) (friends . (#((id . 0) (name . "Laverne Calhoun")) #((id . 1) (name . "Edwina Franco")) #((id . 2) (name . "Katherine Martinez")))) (greeting . "Hello, Mccarthy Cline! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021784ad30abeb2eecae") (index . 185) (guid . "42a4b97c-f34c-425f-9e9e-158a1d36385e") (isActive . True) (balance . "$3,007.65") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "green") (name . "Pacheco Smith") (gender . "male") (company . "BUZZWORKS") (email . "pachecosmith@buzzworks.com") (phone . "+1 (999) 454-3647") (address . "386 Degraw Street, Roy, Kentucky, 7648") (about . "Occaecat ea excepteur non do id consequat magna in sunt eu. Exercitation reprehenderit anim incididunt ex. Esse dolore nulla ad ex velit dolor. Nisi minim culpa mollit ex enim pariatur amet adipisicing in pariatur enim.\r\n") (registered . "2015-07-28T11:29:52 +06:00") (latitude . 8.137746) (longitude . -83.577073) (tags . ("laboris" "labore" "veniam" "Lorem" "consectetur" "veniam" "eu")) (friends . (#((id . 0) (name . "Hood Burnett")) #((id . 1) (name . "Connie Schultz")) #((id . 2) (name . "Grimes Maxwell")))) (greeting . "Hello, Pacheco Smith! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021757ba68123325160d") (index . 186) (guid . "1b7a81a9-9c7c-4a86-b048-575f504c3c6f") (isActive . True) (balance . "$2,622.29") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "blue") (name . "Solis Reed") (gender . "male") (company . "ESCHOIR") (email . "solisreed@eschoir.com") (phone . "+1 (931) 564-3021") (address . "155 Louis Place, Evergreen, Alabama, 9070") (about . "Amet ex occaecat enim non nulla aliqua quis cillum irure officia exercitation. Esse dolor nisi non adipisicing. Enim ex cupidatat id nulla consectetur dolor do officia Lorem sit tempor officia. Aute amet cupidatat esse consequat. Nisi mollit labore veniam qui id sint do minim id. Ea exercitation sit non dolore exercitation incididunt cupidatat qui dolor ipsum. Sint nulla mollit nostrud proident id dolor.\r\n") (registered . "2016-03-12T10:57:16 +07:00") (latitude . 55.190773) (longitude . 178.977057) (tags . ("Lorem" "minim" "magna" "do" "ut" "magna" "est")) (friends . (#((id . 0) (name . "Holder Mckee")) #((id . 1) (name . "Adela Richardson")) #((id . 2) (name . "Clara Blackburn")))) (greeting . "Hello, Solis Reed! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217eda11413d30bac06") (index . 187) (guid . "cb1cdc71-d6cf-4902-a260-d5bbb12be902") (isActive . True) (balance . "$2,490.59") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "green") (name . "Bowers Blevins") (gender . "male") (company . "MAXIMIND") (email . "bowersblevins@maximind.com") (phone . "+1 (900) 511-2706") (address . "886 Gain Court, Retsof, West Virginia, 6009") (about . "Lorem aliqua velit ut consectetur ad duis nulla. Minim duis consectetur consequat reprehenderit qui non amet commodo eiusmod cillum excepteur non anim. Voluptate sunt tempor officia tempor Lorem excepteur incididunt sit ut dolor cillum. Enim aliqua velit veniam commodo nostrud ullamco Lorem proident deserunt id eu pariatur.\r\n") (registered . "2017-10-14T07:23:36 +06:00") (latitude . 24.586361) (longitude . 30.219071) (tags . ("cupidatat" "ad" "incididunt" "exercitation" "excepteur" "anim" "labore")) (friends . (#((id . 0) (name . "Santana Alvarez")) #((id . 1) (name . "Justine Fuller")) #((id . 2) (name . "Anastasia Hahn")))) (greeting . "Hello, Bowers Blevins! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302170060543503a8be87") (index . 188) (guid . "1edeb1ca-5e74-4ac4-a2b2-d8a0290f7ccf") (isActive . True) (balance . "$2,939.75") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "green") (name . "Lucile Holmes") (gender . "female") (company . "VENDBLEND") (email . "lucileholmes@vendblend.com") (phone . "+1 (912) 473-3648") (address . "395 Atkins Avenue, Duryea, Ohio, 6541") (about . "Labore nulla ea veniam dolor anim laboris. Deserunt non eiusmod ad cillum irure reprehenderit. Qui ipsum excepteur esse et dolor ea laboris consectetur anim et nulla magna. Elit mollit eiusmod culpa ea exercitation velit officia fugiat veniam. Deserunt eiusmod occaecat ipsum occaecat fugiat laborum esse aliqua non anim Lorem magna ut cupidatat.\r\n") (registered . "2014-12-08T02:22:48 +07:00") (latitude . -73.409145) (longitude . 79.692844) (tags . ("culpa" "aliqua" "incididunt" "officia" "proident" "consectetur" "pariatur")) (friends . (#((id . 0) (name . "Hoffman Stevens")) #((id . 1) (name . "Keri York")) #((id . 2) (name . "Patton Morse")))) (greeting . "Hello, Lucile Holmes! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217285b007895787641") (index . 189) (guid . "30313a9f-0524-448c-b18e-9f1a0cb76f7c") (isActive . True) (balance . "$3,199.48") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "green") (name . "Cassandra Morton") (gender . "female") (company . "CENTREXIN") (email . "cassandramorton@centrexin.com") (phone . "+1 (925) 496-2862") (address . "980 Vista Place, Gardners, Connecticut, 2709") (about . "Est do laboris aute sit est exercitation exercitation dolor. Occaecat cupidatat irure voluptate fugiat tempor adipisicing velit laboris. Commodo pariatur ex ut id occaecat velit reprehenderit do eu amet exercitation qui excepteur fugiat. Velit pariatur amet qui ea ullamco proident in. Tempor irure nisi culpa occaecat. Eiusmod amet magna ipsum aliquip pariatur adipisicing laboris. Non ea ut veniam ipsum dolor anim.\r\n") (registered . "2015-03-30T11:50:52 +06:00") (latitude . 81.636545) (longitude . 105.419264) (tags . ("nostrud" "dolore" "incididunt" "amet" "ipsum" "labore" "adipisicing")) (friends . (#((id . 0) (name . "Audra Herman")) #((id . 1) (name . "Stephens White")) #((id . 2) (name . "Petra Hopkins")))) (greeting . "Hello, Cassandra Morton! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302171d56bae73d1b96e8") (index . 190) (guid . "04ac599f-5eef-4d85-8642-477b95526feb") (isActive . True) (balance . "$1,390.15") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "brown") (name . "Letha Burris") (gender . "female") (company . "SHADEASE") (email . "lethaburris@shadease.com") (phone . "+1 (900) 411-2024") (address . "334 Havemeyer Street, Greenwich, North Dakota, 1453") (about . "Id commodo enim adipisicing id ipsum sint. Excepteur exercitation id dolore do ut Lorem dolor veniam commodo ullamco ad. Sunt laborum id culpa et laborum proident nulla deserunt ut velit minim voluptate. Id eu qui proident aute quis nostrud aliqua quis officia non aute eiusmod. Excepteur aliqua labore dolore cupidatat et duis in ex sit est laboris culpa. Dolore cillum sint magna et esse. Voluptate qui exercitation id duis adipisicing sint aute dolor consequat.\r\n") (registered . "2015-04-11T07:39:24 +06:00") (latitude . -5.472001) (longitude . 25.967448) (tags . ("aliqua" "ad" "nulla" "dolore" "pariatur" "reprehenderit" "nulla")) (friends . (#((id . 0) (name . "Esmeralda Robinson")) #((id . 1) (name . "Sonia Torres")) #((id . 2) (name . "Mason Berger")))) (greeting . "Hello, Letha Burris! You have 8 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217175f8a52d54dd503") (index . 191) (guid . "f9c3f7a6-8c25-4fd1-a17f-e724ec86b732") (isActive . True) (balance . "$1,223.17") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "blue") (name . "Greta Stanley") (gender . "female") (company . "SIGNIDYNE") (email . "gretastanley@signidyne.com") (phone . "+1 (896) 424-2638") (address . "874 Homecrest Court, Townsend, Mississippi, 6365") (about . "Ut velit ipsum ullamco eiusmod duis incididunt sit ex veniam aliqua voluptate culpa aliquip. Ea adipisicing aliqua consequat duis consectetur voluptate aliquip sunt anim ipsum fugiat do dolor et. Commodo non consectetur velit eu duis ex enim consectetur ea ex dolor cillum nulla. Nostrud ullamco enim veniam minim minim.\r\n") (registered . "2014-05-29T10:47:00 +06:00") (latitude . -40.542039) (longitude . 162.216817) (tags . ("non" "ad" "sit" "fugiat" "sint" "veniam" "in")) (friends . (#((id . 0) (name . "Torres Price")) #((id . 1) (name . "Melisa Douglas")) #((id . 2) (name . "Mcguire Saunders")))) (greeting . "Hello, Greta Stanley! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021715f2b7197dcc1eac") (index . 192) (guid . "6c48f722-bd4c-4bee-a193-d6eb0097c106") (isActive . False) (balance . "$2,140.41") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "brown") (name . "Cardenas Mccormick") (gender . "male") (company . "BIOLIVE") (email . "cardenasmccormick@biolive.com") (phone . "+1 (962) 519-2958") (address . "250 Albee Square, Nipinnawasee, New York, 798") (about . "Aliquip ut anim eiusmod occaecat nulla ipsum veniam aute enim sit consectetur. Do incididunt aliqua duis dolor velit enim deserunt aliquip officia esse. Dolore ex ullamco et commodo velit excepteur.\r\n") (registered . "2014-09-14T01:38:32 +06:00") (latitude . -34.530906) (longitude . -159.679816) (tags . ("magna" "Lorem" "excepteur" "est" "veniam" "nostrud" "ipsum")) (friends . (#((id . 0) (name . "Rhoda Branch")) #((id . 1) (name . "Gross Bass")) #((id . 2) (name . "Powell Lewis")))) (greeting . "Hello, Cardenas Mccormick! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217a32ef2bea9d82e6e") (index . 193) (guid . "9a07fade-ce8b-4e50-a25a-0bcc068a86b8") (isActive . False) (balance . "$3,267.77") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "blue") (name . "Hallie Wiggins") (gender . "female") (company . "VERTIDE") (email . "halliewiggins@vertide.com") (phone . "+1 (842) 486-3694") (address . "976 Dodworth Street, Alfarata, Oregon, 855") (about . "Nostrud duis est Lorem occaecat minim reprehenderit laborum. Adipisicing aute Lorem mollit id consequat. Labore eiusmod mollit commodo velit commodo mollit nulla est dolor sint irure do anim. Ut in aliqua ea ex incididunt qui laboris ex tempor ut ullamco adipisicing.\r\n") (registered . "2014-11-15T02:55:13 +07:00") (latitude . 63.259273) (longitude . 42.571848) (tags . ("ex" "ea" "adipisicing" "duis" "sit" "amet" "quis")) (friends . (#((id . 0) (name . "Lakeisha Cooke")) #((id . 1) (name . "Millie Vazquez")) #((id . 2) (name . "Nell Paul")))) (greeting . "Hello, Hallie Wiggins! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217b19957a819bae78b") (index . 194) (guid . "26351c5b-348d-40eb-8d23-d7a6c5ff5d0f") (isActive . True) (balance . "$2,565.51") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "brown") (name . "Walls Roberson") (gender . "male") (company . "SNORUS") (email . "wallsroberson@snorus.com") (phone . "+1 (943) 400-3359") (address . "301 Laurel Avenue, Detroit, New Jersey, 7084") (about . "Occaecat ut dolor et commodo consequat. Lorem est quis fugiat nulla est veniam deserunt incididunt est laboris exercitation id elit. Eiusmod laboris consectetur dolor in ad Lorem elit elit nostrud quis. Culpa eiusmod et exercitation qui. Minim id excepteur elit adipisicing dolore fugiat sint minim. Occaecat eu ea nostrud culpa et fugiat mollit proident deserunt ea. Non ipsum nostrud et aute esse.\r\n") (registered . "2015-07-02T10:47:32 +06:00") (latitude . 80.139773) (longitude . 155.880318) (tags . ("veniam" "excepteur" "veniam" "quis" "nulla" "nisi" "et")) (friends . (#((id . 0) (name . "Dominguez Oneil")) #((id . 1) (name . "Rebekah Holloway")) #((id . 2) (name . "Carissa Stephens")))) (greeting . "Hello, Walls Roberson! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217d3c20be6fdc77834") (index . 195) (guid . "f6d0ec7b-bee6-45fe-a55e-f53876ae410a") (isActive . True) (balance . "$2,255.62") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "brown") (name . "Erickson Page") (gender . "male") (company . "GEEKKO") (email . "ericksonpage@geekko.com") (phone . "+1 (986) 418-2548") (address . "883 Johnson Avenue, Defiance, Montana, 5787") (about . "Officia id irure aliquip aliqua et incididunt occaecat consequat. Sint aliquip adipisicing veniam excepteur labore commodo ipsum nulla sint magna officia non sit adipisicing. Lorem laborum veniam cillum minim ex consectetur quis sint culpa ad. Occaecat cupidatat duis aliquip eu quis. Mollit exercitation tempor aliqua do anim dolore eu sint adipisicing non do mollit.\r\n") (registered . "2014-09-21T02:32:02 +06:00") (latitude . -6.677963) (longitude . 12.229681) (tags . ("laborum" "qui" "consequat" "consectetur" "consectetur" "veniam" "labore")) (friends . (#((id . 0) (name . "Joan Houston")) #((id . 1) (name . "Kennedy Mason")) #((id . 2) (name . "Stein Dejesus")))) (greeting . "Hello, Erickson Page! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021735bf04be39a30a64") (index . 196) (guid . "e3841b12-2fa6-418e-bc96-69d95d12619a") (isActive . True) (balance . "$2,360.78") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "green") (name . "Lindsay Delgado") (gender . "male") (company . "YURTURE") (email . "lindsaydelgado@yurture.com") (phone . "+1 (891) 448-3806") (address . "436 Meserole Street, Allentown, Nevada, 6300") (about . "Commodo incididunt sunt laborum exercitation mollit. Laboris enim id fugiat ea magna ea. Est adipisicing nostrud adipisicing tempor incididunt laboris commodo id ad culpa. Ipsum eiusmod ipsum deserunt veniam et aliquip non laboris eiusmod do. Dolor ullamco exercitation qui voluptate.\r\n") (registered . "2018-02-15T10:39:19 +07:00") (latitude . -78.42876) (longitude . -11.598233) (tags . ("Lorem" "aliqua" "incididunt" "esse" "officia" "duis" "nisi")) (friends . (#((id . 0) (name . "Morgan Le")) #((id . 1) (name . "Richardson Mcmillan")) #((id . 2) (name . "Mosley Henderson")))) (greeting . "Hello, Lindsay Delgado! You have 2 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302175008ebf4084b9670") (index . 197) (guid . "16fde99b-72de-4ef6-a2a9-b2db541eed1a") (isActive . True) (balance . "$1,825.51") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "green") (name . "Summers Spence") (gender . "male") (company . "ZENSOR") (email . "summersspence@zensor.com") (phone . "+1 (928) 494-2056") (address . "732 Cropsey Avenue, Ladera, Colorado, 8743") (about . "Officia esse et sint pariatur elit. Minim cupidatat ad pariatur deserunt cupidatat aliquip aute sunt enim mollit consequat. Est esse nisi non in amet minim magna velit laboris officia magna excepteur. Culpa nostrud ullamco sit irure ad occaecat. Proident eiusmod fugiat non aliquip cupidatat duis exercitation tempor veniam magna consectetur aliquip.\r\n") (registered . "2014-06-18T08:42:20 +06:00") (latitude . -80.120438) (longitude . -44.524952) (tags . ("fugiat" "aliqua" "eiusmod" "consectetur" "incididunt" "laboris" "non")) (friends . (#((id . 0) (name . "Denise Scott")) #((id . 1) (name . "Robinson Kelley")) #((id . 2) (name . "Lillie Silva")))) (greeting . "Hello, Summers Spence! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217387d1d635022a0da") (index . 198) (guid . "b4d3efe5-278f-44f5-8d85-1fbeb83953d1") (isActive . False) (balance . "$1,259.96") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "brown") (name . "Alisa Hawkins") (gender . "female") (company . "BOSTONIC") (email . "alisahawkins@bostonic.com") (phone . "+1 (900) 589-3648") (address . "185 Canda Avenue, Finzel, New Mexico, 8540") (about . "Nulla pariatur magna irure adipisicing commodo culpa. Non commodo duis ea nostrud laboris Lorem adipisicing sunt commodo culpa. Et excepteur mollit nostrud est duis cupidatat. Id laboris eu in ipsum. Tempor cupidatat amet aute qui Lorem cupidatat sit dolor. Fugiat laborum laboris anim veniam laborum non do. Eu pariatur est est do id dolor exercitation.\r\n") (registered . "2015-03-21T12:23:12 +06:00") (latitude . -36.728423) (longitude . -140.57601) (tags . ("eu" "incididunt" "adipisicing" "velit" "commodo" "exercitation" "non")) (friends . (#((id . 0) (name . "Rosella Kinney")) #((id . 1) (name . "Aurora Jefferson")) #((id . 2) (name . "Sullivan Beasley")))) (greeting . "Hello, Alisa Hawkins! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021722fd8a06db0d43b0") (index . 199) (guid . "7380450c-5939-4657-9ca6-0d110c38c385") (isActive . False) (balance . "$1,783.24") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "blue") (name . "Leah Hickman") (gender . "female") (company . "TROPOLI") (email . "leahhickman@tropoli.com") (phone . "+1 (982) 403-3080") (address . "806 Varet Street, Jugtown, Texas, 5438") (about . "Est culpa esse aliqua dolor. Lorem incididunt est nisi aute consectetur. Qui do qui laborum reprehenderit non. Nulla elit nostrud id aliquip ut incididunt quis esse proident occaecat veniam.\r\n") (registered . "2015-11-23T06:55:52 +07:00") (latitude . -87.316989) (longitude . -48.743117) (tags . ("mollit" "ex" "amet" "est" "veniam" "excepteur" "proident")) (friends . (#((id . 0) (name . "Cindy Cleveland")) #((id . 1) (name . "Gilda Humphrey")) #((id . 2) (name . "Roberta Frost")))) (greeting . "Hello, Leah Hickman! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302177ba5784d81b86f06") (index . 200) (guid . "d4e0a1ba-a11f-4a35-bac0-5ac7992fbe79") (isActive . True) (balance . "$2,566.54") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Lopez Cabrera") (gender . "male") (company . "MICRONAUT") (email . "lopezcabrera@micronaut.com") (phone . "+1 (917) 405-3787") (address . "569 Rapelye Street, Leeper, North Carolina, 5241") (about . "Ad aliquip esse magna do incididunt amet ullamco qui excepteur amet et aliqua duis irure. Esse aute eiusmod irure minim laborum magna est aliqua commodo. Eu ut dolore ex in aliqua quis excepteur officia ex reprehenderit do ut ea. Labore velit anim consectetur proident excepteur qui labore. Cillum nulla est elit cupidatat consectetur quis veniam cillum dolor voluptate ut deserunt sunt nulla. Voluptate esse commodo mollit est elit commodo non eu do aute mollit id labore voluptate. Aliqua deserunt sint mollit velit commodo velit fugiat officia consectetur pariatur tempor commodo amet nulla.\r\n") (registered . "2016-09-03T12:39:09 +06:00") (latitude . -26.174251) (longitude . -116.977039) (tags . ("enim" "elit" "ad" "sunt" "dolor" "pariatur" "do")) (friends . (#((id . 0) (name . "Amy Waters")) #((id . 1) (name . "Loretta Ray")) #((id . 2) (name . "Herring Johns")))) (greeting . "Hello, Lopez Cabrera! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302179a985efca4aca917") (index . 201) (guid . "bb59075a-ab4c-4939-973c-a5c497361a46") (isActive . True) (balance . "$1,797.26") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "brown") (name . "Hinton Vinson") (gender . "male") (company . "COMVERGES") (email . "hintonvinson@comverges.com") (phone . "+1 (862) 411-2964") (address . "573 Lewis Avenue, Orovada, Nebraska, 8099") (about . "Velit anim cupidatat laborum laborum officia velit occaecat sint. Eu nulla ut ut aute fugiat aute sint ad elit. Ipsum veniam id cupidatat minim incididunt sunt laborum pariatur. Ea exercitation minim ipsum in labore nostrud aliquip occaecat excepteur duis voluptate magna dolore pariatur. Lorem sunt sunt elit enim. Ea commodo sint do sint deserunt in. Voluptate commodo veniam elit tempor ex consequat proident.\r\n") (registered . "2017-12-31T06:45:30 +07:00") (latitude . -88.96405) (longitude . 95.018361) (tags . ("non" "eu" "elit" "sint" "mollit" "aliqua" "reprehenderit")) (friends . (#((id . 0) (name . "Lakisha Moon")) #((id . 1) (name . "Laurie Delacruz")) #((id . 2) (name . "Lisa Chase")))) (greeting . "Hello, Hinton Vinson! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217cbff7685590438c0") (index . 202) (guid . "163d2d9e-523e-4df4-ba23-fa10a3dcd6ab") (isActive . True) (balance . "$1,634.20") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "green") (name . "Brock Woods") (gender . "male") (company . "IPLAX") (email . "brockwoods@iplax.com") (phone . "+1 (961) 474-2334") (address . "874 Clark Street, Convent, Tennessee, 6905") (about . "Esse consectetur anim commodo enim esse sunt cillum culpa. Esse sunt adipisicing veniam et Lorem deserunt amet aute aliquip sit est. Irure Lorem voluptate pariatur eiusmod reprehenderit elit non aute irure aliquip sunt ipsum. Et sunt Lorem irure commodo magna tempor. Deserunt velit laboris id magna eiusmod velit. Aute exercitation quis dolore proident proident laborum dolore pariatur reprehenderit occaecat magna mollit.\r\n") (registered . "2015-03-25T06:38:48 +06:00") (latitude . -79.671322) (longitude . -127.022945) (tags . ("aliqua" "proident" "aliqua" "laborum" "pariatur" "pariatur" "nostrud")) (friends . (#((id . 0) (name . "Beatrice Booker")) #((id . 1) (name . "Elsie Vargas")) #((id . 2) (name . "Bright Battle")))) (greeting . "Hello, Brock Woods! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302171b428b60a93b1e63") (index . 203) (guid . "01578ce6-875f-4322-8c60-5a8fdb789875") (isActive . False) (balance . "$2,957.25") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "brown") (name . "Robertson Beard") (gender . "male") (company . "APPLICA") (email . "robertsonbeard@applica.com") (phone . "+1 (993) 554-2690") (address . "788 McKibben Street, Hoagland, Utah, 5987") (about . "Proident fugiat occaecat ut qui excepteur deserunt sint ex. Nulla enim reprehenderit fugiat enim eiusmod. Enim culpa dolor ipsum est reprehenderit in. Elit pariatur amet magna aliqua incididunt in incididunt. Do nulla consequat tempor mollit reprehenderit laboris mollit ex ullamco.\r\n") (registered . "2015-11-03T04:29:27 +07:00") (latitude . -34.860992) (longitude . -92.983117) (tags . ("cupidatat" "sint" "occaecat" "ipsum" "et" "nostrud" "adipisicing")) (friends . (#((id . 0) (name . "Ballard Horne")) #((id . 1) (name . "Mattie Flores")) #((id . 2) (name . "Louise Cherry")))) (greeting . "Hello, Robertson Beard! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217775e6398207a52ec") (index . 204) (guid . "e66d2a5b-7833-402e-9c17-f4f6cbc1d542") (isActive . True) (balance . "$1,163.16") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "blue") (name . "Alta Conner") (gender . "female") (company . "SENSATE") (email . "altaconner@sensate.com") (phone . "+1 (977) 424-3931") (address . "193 Rost Place, Fivepointville, Marshall Islands, 5983") (about . "Voluptate adipisicing reprehenderit anim minim incididunt sint esse esse labore ullamco anim deserunt. Id ipsum aliquip nisi tempor aute Lorem mollit excepteur. Nisi in sunt commodo pariatur exercitation elit nulla labore deserunt. Voluptate adipisicing voluptate dolore adipisicing. Cupidatat velit pariatur est sint pariatur magna eiusmod eu veniam laborum incididunt pariatur.\r\n") (registered . "2016-07-21T02:10:05 +06:00") (latitude . -58.355946) (longitude . -17.199338) (tags . ("quis" "ullamco" "voluptate" "non" "ullamco" "ea" "officia")) (friends . (#((id . 0) (name . "Nichole Mcgee")) #((id . 1) (name . "Dona Carrillo")) #((id . 2) (name . "Kent Snyder")))) (greeting . "Hello, Alta Conner! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217e325c1faa4b397f7") (index . 205) (guid . "40dc2ac7-d453-4c3e-98a7-f0194edff2f6") (isActive . False) (balance . "$3,817.95") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "brown") (name . "Kerry Rollins") (gender . "female") (company . "PRINTSPAN") (email . "kerryrollins@printspan.com") (phone . "+1 (811) 470-3556") (address . "744 Jardine Place, Ivanhoe, Georgia, 8580") (about . "Ea excepteur esse esse sunt nostrud in. Labore occaecat Lorem amet minim amet pariatur ipsum. Elit esse dolor ipsum laboris duis aliqua culpa irure aute quis quis tempor duis.\r\n") (registered . "2015-03-26T12:39:25 +06:00") (latitude . 44.935771) (longitude . 44.514642) (tags . ("consectetur" "do" "officia" "ipsum" "eu" "id" "voluptate")) (friends . (#((id . 0) (name . "Winters Hayden")) #((id . 1) (name . "Carole Merritt")) #((id . 2) (name . "Betsy Puckett")))) (greeting . "Hello, Kerry Rollins! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021726264e3c34c45323") (index . 206) (guid . "481bd27e-49b3-4508-9e84-ec7826a8d43b") (isActive . False) (balance . "$2,764.80") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "brown") (name . "Marcy Kidd") (gender . "female") (company . "GLEAMINK") (email . "marcykidd@gleamink.com") (phone . "+1 (948) 420-2163") (address . "795 Brown Street, Eggertsville, Massachusetts, 9147") (about . "Ad deserunt eiusmod ea mollit irure occaecat eiusmod incididunt laborum aliquip officia laborum exercitation officia. Velit enim occaecat amet magna. Occaecat commodo qui adipisicing sit commodo dolor culpa. Ea sunt id consequat mollit ex Lorem voluptate ex. Aute quis nisi ipsum officia. Nulla aute occaecat velit eiusmod id velit enim qui sint laboris deserunt exercitation.\r\n") (registered . "2016-05-05T06:14:18 +06:00") (latitude . 68.125407) (longitude . 114.371474) (tags . ("dolor" "reprehenderit" "Lorem" "aute" "enim" "eu" "sunt")) (friends . (#((id . 0) (name . "Keller Mckinney")) #((id . 1) (name . "Karina Cobb")) #((id . 2) (name . "Richard Cash")))) (greeting . "Hello, Marcy Kidd! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217fc388b62a950da8f") (index . 207) (guid . "dc62fbab-3593-4d3f-8db4-efba858ecda2") (isActive . False) (balance . "$1,527.53") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "blue") (name . "Dunn Hatfield") (gender . "male") (company . "BUNGA") (email . "dunnhatfield@bunga.com") (phone . "+1 (889) 588-2279") (address . "917 Channel Avenue, Glendale, Arizona, 9466") (about . "Amet minim sunt occaecat deserunt nulla est dolore. Commodo eu dolor deserunt eu est enim cillum sint id amet. Minim sint ad sit ex proident sint sunt deserunt ullamco consequat. Et non magna elit adipisicing adipisicing culpa sunt nulla labore ullamco deserunt irure. Reprehenderit in magna amet ex sit sit ut velit excepteur do cupidatat excepteur laboris pariatur. Nulla irure aliqua ea et excepteur. Enim sit ut fugiat pariatur in ullamco.\r\n") (registered . "2017-05-20T04:10:40 +06:00") (latitude . -51.734636) (longitude . 39.181053) (tags . ("nulla" "amet" "dolore" "amet" "incididunt" "irure" "reprehenderit")) (friends . (#((id . 0) (name . "Frazier Bradshaw")) #((id . 1) (name . "Lillian Zimmerman")) #((id . 2) (name . "Bonnie Mathis")))) (greeting . "Hello, Dunn Hatfield! You have 2 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302171eedddc85eae2950") (index . 208) (guid . "cbe10861-24dd-46ea-88f7-453880216998") (isActive . True) (balance . "$3,194.46") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "green") (name . "Randall Baxter") (gender . "male") (company . "CEMENTION") (email . "randallbaxter@cemention.com") (phone . "+1 (884) 496-2374") (address . "532 Lacon Court, Richville, District Of Columbia, 7481") (about . "Laborum consectetur ea ex non ea nulla minim nostrud laboris ex eiusmod est eiusmod magna. Exercitation quis commodo sit nulla voluptate adipisicing ad qui ex nisi sint laboris. Magna excepteur duis est nostrud culpa deserunt nulla adipisicing culpa.\r\n") (registered . "2016-03-11T10:21:19 +07:00") (latitude . -57.656935) (longitude . -13.807376) (tags . ("est" "in" "esse" "consectetur" "minim" "dolor" "adipisicing")) (friends . (#((id . 0) (name . "Margaret Santiago")) #((id . 1) (name . "Barnett Vincent")) #((id . 2) (name . "Justice Alston")))) (greeting . "Hello, Randall Baxter! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302170e166c8fb5de60bc") (index . 209) (guid . "b25e84e8-b6e3-4b61-9160-42eb3bae737d") (isActive . False) (balance . "$2,496.57") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "blue") (name . "Adrienne Conrad") (gender . "female") (company . "EXTRAWEAR") (email . "adrienneconrad@extrawear.com") (phone . "+1 (896) 477-2796") (address . "760 Leonora Court, Murillo, Virgin Islands, 8372") (about . "Exercitation irure minim id sint ex nisi ad est et ut. Ad in sit quis proident cupidatat Lorem voluptate fugiat esse officia. Consectetur dolore qui adipisicing incididunt amet. Labore eu nostrud non nulla.\r\n") (registered . "2015-02-22T11:20:45 +07:00") (latitude . -5.515994) (longitude . 113.978837) (tags . ("adipisicing" "aliqua" "nulla" "ad" "fugiat" "proident" "aute")) (friends . (#((id . 0) (name . "Crosby Hendricks")) #((id . 1) (name . "Sally Lowe")) #((id . 2) (name . "Mays Adams")))) (greeting . "Hello, Adrienne Conrad! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302170ba688d0d857675f") (index . 210) (guid . "2cf5f0c0-a8bb-4643-b0b0-6910137bd5f4") (isActive . True) (balance . "$3,868.05") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "blue") (name . "Miranda Vang") (gender . "male") (company . "SYNKGEN") (email . "mirandavang@synkgen.com") (phone . "+1 (979) 541-3394") (address . "684 Surf Avenue, Avoca, South Dakota, 5742") (about . "Dolore duis ullamco quis excepteur velit sunt laborum commodo consequat. Dolore non reprehenderit duis mollit quis nisi anim fugiat reprehenderit id occaecat incididunt mollit. Et consequat exercitation fugiat culpa magna.\r\n") (registered . "2017-08-11T10:16:16 +06:00") (latitude . 67.323751) (longitude . -20.334649) (tags . ("laboris" "tempor" "aliquip" "amet" "minim" "consectetur" "mollit")) (friends . (#((id . 0) (name . "Ward Lawson")) #((id . 1) (name . "Simpson Rice")) #((id . 2) (name . "Tameka Carey")))) (greeting . "Hello, Miranda Vang! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217a78f23febe0c1fd0") (index . 211) (guid . "2f568926-b54f-42e3-adcf-1ef04f47966f") (isActive . False) (balance . "$2,802.17") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "green") (name . "Walters Wallace") (gender . "male") (company . "HOUSEDOWN") (email . "walterswallace@housedown.com") (phone . "+1 (870) 482-2049") (address . "622 Schaefer Street, Joes, Virginia, 270") (about . "Anim laborum dolore occaecat exercitation anim qui ad minim occaecat cupidatat eiusmod amet. Culpa consectetur laboris labore mollit pariatur do ut do aute mollit. Sint nostrud qui labore non tempor adipisicing. Ea exercitation sint Lorem mollit dolore pariatur eu sit consequat pariatur veniam voluptate velit voluptate. Reprehenderit nostrud anim minim aliquip sunt cupidatat officia.\r\n") (registered . "2016-05-30T10:02:07 +06:00") (latitude . -64.888735) (longitude . -54.749628) (tags . ("esse" "dolor" "cupidatat" "adipisicing" "ea" "incididunt" "ullamco")) (friends . (#((id . 0) (name . "Pearlie Richmond")) #((id . 1) (name . "Lupe Floyd")) #((id . 2) (name . "Roseann Mack")))) (greeting . "Hello, Walters Wallace! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302170e07ad6e1d63aca6") (index . 212) (guid . "418c28b2-4f81-49dc-bb49-3648a74ea1d5") (isActive . True) (balance . "$3,651.22") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "green") (name . "Vilma Hobbs") (gender . "female") (company . "BITTOR") (email . "vilmahobbs@bittor.com") (phone . "+1 (943) 498-2551") (address . "250 Lombardy Street, Cutter, Michigan, 965") (about . "Dolore aliquip adipisicing voluptate sunt occaecat enim aute minim reprehenderit ut proident duis anim commodo. Sunt quis amet eiusmod id exercitation. Ex ut occaecat quis aliquip ea nostrud cupidatat anim voluptate sit anim minim. Quis eiusmod ut ad dolore.\r\n") (registered . "2016-10-30T04:53:38 +06:00") (latitude . -73.430066) (longitude . 76.276973) (tags . ("et" "sunt" "elit" "duis" "velit" "ea" "nulla")) (friends . (#((id . 0) (name . "Griffin Gay")) #((id . 1) (name . "Penny Lawrence")) #((id . 2) (name . "Rivers Short")))) (greeting . "Hello, Vilma Hobbs! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021727d9dfff59b03a49") (index . 213) (guid . "08ed5fbd-cf71-41f0-90f3-2ca676219bf5") (isActive . False) (balance . "$1,555.30") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "green") (name . "Maribel Hogan") (gender . "female") (company . "PEARLESEX") (email . "maribelhogan@pearlesex.com") (phone . "+1 (807) 524-2684") (address . "102 Dictum Court, Gambrills, Northern Mariana Islands, 6954") (about . "Fugiat reprehenderit labore dolore occaecat. Dolor ea occaecat aute sit anim. Eiusmod quis qui nostrud ipsum irure consequat aute aliquip minim anim elit. Consequat laborum eiusmod pariatur elit sunt excepteur incididunt commodo in minim ea aute. Esse deserunt commodo ullamco id dolore nisi eiusmod nisi eiusmod elit labore veniam. Ea ad nostrud incididunt aliquip velit nulla. In Lorem esse officia ea pariatur do et anim sunt deserunt.\r\n") (registered . "2014-02-26T01:12:57 +07:00") (latitude . -31.818714) (longitude . 33.103376) (tags . ("commodo" "culpa" "aliqua" "ullamco" "deserunt" "officia" "aute")) (friends . (#((id . 0) (name . "Cara Castaneda")) #((id . 1) (name . "Lora Ortiz")) #((id . 2) (name . "Jewel Slater")))) (greeting . "Hello, Maribel Hogan! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217bb6f753ab547924a") (index . 214) (guid . "666d2f97-bd0b-4be3-b4c6-706cc88ab24a") (isActive . False) (balance . "$2,921.60") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "green") (name . "Mcbride Acosta") (gender . "male") (company . "TALKALOT") (email . "mcbrideacosta@talkalot.com") (phone . "+1 (941) 569-3206") (address . "735 Bushwick Court, Boyd, Illinois, 614") (about . "Cillum elit non reprehenderit duis. Qui velit Lorem quis non non proident dolor irure laborum et. Ipsum enim do ea culpa veniam voluptate dolore et. Qui laboris minim deserunt officia veniam in sint aliquip deserunt eu non consequat incididunt. Irure nulla velit dolore consectetur reprehenderit voluptate.\r\n") (registered . "2017-04-17T07:38:01 +06:00") (latitude . 6.260658) (longitude . -33.103421) (tags . ("duis" "eu" "est" "pariatur" "culpa" "esse" "eu")) (friends . (#((id . 0) (name . "Osborne Byrd")) #((id . 1) (name . "Katelyn Adkins")) #((id . 2) (name . "Serena Fitzgerald")))) (greeting . "Hello, Mcbride Acosta! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021761e799e255b8e4b0") (index . 215) (guid . "d6f8621e-ae25-41ec-ac92-e64fb86f53c0") (isActive . True) (balance . "$1,690.06") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "blue") (name . "Briggs Collier") (gender . "male") (company . "EQUICOM") (email . "briggscollier@equicom.com") (phone . "+1 (977) 458-2144") (address . "377 Jamaica Avenue, Trona, Wisconsin, 5958") (about . "Amet sint irure duis consequat adipisicing sit eu nulla incididunt id deserunt enim nulla. Sint dolore reprehenderit do exercitation cillum ipsum minim consectetur deserunt consectetur ut ad ad nostrud. Aliquip ut deserunt laborum ut sit nulla dolor magna laborum. Consectetur consequat ut elit aliquip culpa sint esse est anim consectetur. Eiusmod eu enim laboris consequat. Tempor exercitation aliquip enim sit aliqua nulla commodo velit ullamco commodo fugiat.\r\n") (registered . "2016-03-19T05:02:14 +06:00") (latitude . 70.627608) (longitude . 176.226266) (tags . ("tempor" "labore" "cillum" "ullamco" "cupidatat" "et" "nostrud")) (friends . (#((id . 0) (name . "Case Bright")) #((id . 1) (name . "Hines Holland")) #((id . 2) (name . "Trisha West")))) (greeting . "Hello, Briggs Collier! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021731bf9e84b787ee9c") (index . 216) (guid . "62002fd0-c3d9-4763-9368-35db90de1181") (isActive . False) (balance . "$2,368.11") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "green") (name . "Turner Kent") (gender . "male") (company . "XLEEN") (email . "turnerkent@xleen.com") (phone . "+1 (835) 560-3286") (address . "747 Battery Avenue, Valmy, Idaho, 9022") (about . "Consectetur ad ullamco labore veniam cillum commodo eiusmod et esse duis minim deserunt magna tempor. Nulla deserunt nisi duis cupidatat laborum aliqua Lorem in sit nostrud magna officia. Amet consectetur mollit ex dolore ex mollit incididunt sit mollit ullamco culpa eu minim. Qui officia magna proident incididunt occaecat qui nostrud nisi tempor ad officia dolor deserunt nulla. Do veniam reprehenderit mollit laboris magna et deserunt adipisicing sunt consequat et enim deserunt nostrud.\r\n") (registered . "2018-02-27T08:21:40 +07:00") (latitude . 29.279714) (longitude . 139.811375) (tags . ("laborum" "consequat" "aliquip" "magna" "exercitation" "culpa" "consequat")) (friends . (#((id . 0) (name . "Bishop Hendrix")) #((id . 1) (name . "Patsy Gilliam")) #((id . 2) (name . "Beatriz Walton")))) (greeting . "Hello, Turner Kent! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217e93122be32823255") (index . 217) (guid . "fc2a071a-5d10-4f77-b042-ebfa30d4a159") (isActive . True) (balance . "$3,660.51") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "brown") (name . "Drake Knapp") (gender . "male") (company . "GEOLOGIX") (email . "drakeknapp@geologix.com") (phone . "+1 (800) 592-3229") (address . "589 Aberdeen Street, Rosewood, New Hampshire, 7709") (about . "Est aute deserunt ex aliqua labore quis enim proident. In incididunt ad qui laboris non. Ullamco adipisicing laboris laborum officia. Officia nulla consectetur id nulla ea excepteur. Sunt deserunt amet consequat excepteur aute esse.\r\n") (registered . "2014-10-14T01:48:53 +06:00") (latitude . -5.074102) (longitude . -88.453028) (tags . ("ex" "nulla" "commodo" "ex" "sit" "ullamco" "velit")) (friends . (#((id . 0) (name . "Haley Payne")) #((id . 1) (name . "Avis Contreras")) #((id . 2) (name . "Helga Mejia")))) (greeting . "Hello, Drake Knapp! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021730a2feed92d55f29") (index . 218) (guid . "0697e398-48ee-4d83-b73c-edddd08e2d9e") (isActive . False) (balance . "$3,648.59") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "green") (name . "Coffey Freeman") (gender . "male") (company . "SQUISH") (email . "coffeyfreeman@squish.com") (phone . "+1 (959) 498-2949") (address . "761 Quentin Street, Biehle, South Carolina, 9175") (about . "Veniam aute incididunt sint duis. Incididunt qui tempor cupidatat laboris adipisicing ea sit ipsum nulla magna et reprehenderit ea amet. Ea veniam exercitation quis occaecat ullamco commodo dolor dolore est.\r\n") (registered . "2014-09-28T06:40:33 +06:00") (latitude . -80.071327) (longitude . -155.140862) (tags . ("occaecat" "mollit" "nostrud" "magna" "cillum" "reprehenderit" "dolor")) (friends . (#((id . 0) (name . "Marguerite Grimes")) #((id . 1) (name . "Mayra Ryan")) #((id . 2) (name . "Bonner Coleman")))) (greeting . "Hello, Coffey Freeman! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217dcf712b1f3827212") (index . 219) (guid . "724ea9c2-a851-4798-84a7-010f5ec8f551") (isActive . False) (balance . "$1,804.75") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "green") (name . "Kramer Jimenez") (gender . "male") (company . "BULLZONE") (email . "kramerjimenez@bullzone.com") (phone . "+1 (940) 557-2815") (address . "104 Matthews Court, Navarre, Iowa, 8114") (about . "Reprehenderit duis cillum cillum enim non do excepteur eu sit duis ipsum aliquip. Esse dolore ipsum sunt eiusmod enim ut officia mollit aliquip elit officia sunt ex proident. Nisi laborum reprehenderit aute nulla esse sint pariatur enim id laboris proident elit ad do. Est occaecat quis et tempor consequat aliqua eiusmod laboris sit nisi sint exercitation veniam. Enim ullamco sint eu excepteur consectetur occaecat eu labore et commodo mollit excepteur.\r\n") (registered . "2017-06-19T07:13:33 +06:00") (latitude . 44.157055) (longitude . -104.797715) (tags . ("deserunt" "esse" "exercitation" "sunt" "amet" "dolor" "ut")) (friends . (#((id . 0) (name . "Ochoa Patel")) #((id . 1) (name . "Riley Young")) #((id . 2) (name . "Tricia Stanton")))) (greeting . "Hello, Kramer Jimenez! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302179b29089cb1ead53a") (index . 220) (guid . "27c194b3-2e8b-4bcf-8755-63b36023362b") (isActive . True) (balance . "$3,900.41") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Estella Russell") (gender . "female") (company . "ISOSPHERE") (email . "estellarussell@isosphere.com") (phone . "+1 (874) 593-2848") (address . "147 Doughty Street, Falconaire, California, 896") (about . "Excepteur amet aliquip tempor non ea aute ullamco aute incididunt irure nostrud. Voluptate aliqua enim qui duis nisi quis esse. Sunt nulla consequat ipsum sit. Exercitation nostrud est cupidatat laboris amet. Nulla adipisicing tempor ipsum Lorem dolor proident incididunt consequat. Duis nisi culpa exercitation aliquip aute occaecat esse. Lorem incididunt proident quis voluptate cupidatat aliquip officia Lorem nostrud nulla elit enim magna et.\r\n") (registered . "2016-10-16T08:11:34 +06:00") (latitude . 49.677955) (longitude . -118.838424) (tags . ("nisi" "commodo" "ex" "ut" "minim" "proident" "ea")) (friends . (#((id . 0) (name . "Manning Fowler")) #((id . 1) (name . "Katina George")) #((id . 2) (name . "White Mullins")))) (greeting . "Hello, Estella Russell! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021726149feb0f786a1e") (index . 221) (guid . "96b7ecbd-db97-4450-af32-17e3fb62b481") (isActive . True) (balance . "$1,562.16") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "brown") (name . "Foster Boyle") (gender . "male") (company . "EWAVES") (email . "fosterboyle@ewaves.com") (phone . "+1 (925) 402-2235") (address . "356 Paerdegat Avenue, Harold, Wyoming, 4201") (about . "Incididunt mollit anim proident nostrud dolor in cillum exercitation ut consectetur. Amet eu velit consequat aliquip pariatur. Nisi nisi commodo amet cillum consectetur elit incididunt aliquip id ut nulla. Aliqua amet Lorem esse ex culpa. Anim ipsum non esse deserunt proident aute tempor ad veniam qui ea Lorem ad laborum.\r\n") (registered . "2014-05-15T07:29:44 +06:00") (latitude . -28.700359) (longitude . -137.228043) (tags . ("ad" "nisi" "in" "consequat" "dolor" "occaecat" "eu")) (friends . (#((id . 0) (name . "Darlene Mooney")) #((id . 1) (name . "Jennie Herring")) #((id . 2) (name . "Elva Tucker")))) (greeting . "Hello, Foster Boyle! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217f3db0401df1c79b7") (index . 222) (guid . "79478b16-429b-466f-a15d-9acc045d8f0d") (isActive . False) (balance . "$3,140.12") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "green") (name . "Dale Woodward") (gender . "male") (company . "LETPRO") (email . "dalewoodward@letpro.com") (phone . "+1 (922) 517-3412") (address . "905 Herkimer Place, Denio, Maryland, 9994") (about . "Dolor nostrud dolore non cillum consectetur adipisicing tempor consequat ad veniam sit cupidatat adipisicing. Tempor magna fugiat deserunt dolore ullamco elit id deserunt ut dolor aliquip irure. Nulla nulla nostrud est nostrud. Aliqua anim consequat do pariatur non esse ad nisi consequat veniam aliqua do aliquip laborum. Eiusmod ut duis tempor elit do adipisicing dolore nisi est eiusmod deserunt dolor. Voluptate incididunt duis anim ad adipisicing aliquip laboris. Aute elit id cillum minim amet laborum fugiat cupidatat veniam ex labore proident.\r\n") (registered . "2017-07-28T11:16:45 +06:00") (latitude . -31.947713) (longitude . 175.197539) (tags . ("ut" "officia" "voluptate" "aute" "culpa" "minim" "consequat")) (friends . (#((id . 0) (name . "Carrillo Sweeney")) #((id . 1) (name . "Steele Bonner")) #((id . 2) (name . "Delia Tyler")))) (greeting . "Hello, Dale Woodward! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217088809c18dbac4e9") (index . 223) (guid . "163a822e-b191-4762-8214-63299d84e79b") (isActive . True) (balance . "$3,103.87") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "brown") (name . "Joni Hicks") (gender . "female") (company . "ZOLAVO") (email . "jonihicks@zolavo.com") (phone . "+1 (904) 437-2511") (address . "278 Greene Avenue, Roulette, Louisiana, 2564") (about . "Magna cillum tempor qui tempor quis esse nisi laboris duis proident incididunt dolore. Elit pariatur cupidatat et excepteur cillum Lorem aute non non minim reprehenderit et dolor eu. Anim reprehenderit non irure ex sint consequat mollit. In ex Lorem cillum pariatur proident aliqua nulla est ullamco pariatur do sunt.\r\n") (registered . "2016-04-09T10:14:04 +06:00") (latitude . -11.82374) (longitude . 42.230984) (tags . ("incididunt" "consequat" "velit" "est" "laborum" "exercitation" "fugiat")) (friends . (#((id . 0) (name . "Catalina Christian")) #((id . 1) (name . "Witt Vaughan")) #((id . 2) (name . "Henry Hester")))) (greeting . "Hello, Joni Hicks! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021796517b7d895c3f94") (index . 224) (guid . "2849793f-ccee-47b9-a4ca-e4f9a287f8f3") (isActive . False) (balance . "$2,387.23") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "brown") (name . "Paulette Gamble") (gender . "female") (company . "ENAUT") (email . "paulettegamble@enaut.com") (phone . "+1 (981) 424-2664") (address . "734 Keap Street, Downsville, Federated States Of Micronesia, 9737") (about . "Ea id incididunt id cupidatat enim amet sunt minim adipisicing consectetur est et nulla. Fugiat eiusmod proident ex pariatur et labore aliquip minim mollit incididunt aliquip in do ullamco. Eiusmod id minim consequat ex labore ad velit aliquip nisi. Consectetur sunt Lorem non ex amet commodo elit consectetur excepteur culpa Lorem aute do nisi. Sint labore pariatur proident dolore quis amet excepteur. Aliquip commodo proident est id eiusmod culpa enim ut.\r\n") (registered . "2016-12-01T08:59:09 +07:00") (latitude . -57.331845) (longitude . 95.872372) (tags . ("eu" "et" "duis" "ad" "esse" "proident" "deserunt")) (friends . (#((id . 0) (name . "Sabrina Conley")) #((id . 1) (name . "Freeman Wise")) #((id . 2) (name . "Guzman Whitney")))) (greeting . "Hello, Paulette Gamble! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217a900938e72ce2678") (index . 225) (guid . "87f2b634-690d-4f84-beef-8580194374d1") (isActive . True) (balance . "$3,526.01") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "blue") (name . "Pat Dean") (gender . "female") (company . "SONGBIRD") (email . "patdean@songbird.com") (phone . "+1 (946) 584-2614") (address . "859 Heyward Street, Marion, Pennsylvania, 7014") (about . "Eu occaecat aute duis sunt dolore ut. Minim amet sit sunt aute Lorem ut voluptate laboris reprehenderit proident est aute sit reprehenderit. Dolor aliquip eiusmod est eu commodo qui excepteur reprehenderit dolor eu consequat ad do ut. Consectetur ex eiusmod laborum culpa.\r\n") (registered . "2017-02-03T03:27:30 +07:00") (latitude . 30.0669) (longitude . -19.4284) (tags . ("esse" "occaecat" "pariatur" "enim" "do" "ullamco" "non")) (friends . (#((id . 0) (name . "Sloan Mercer")) #((id . 1) (name . "Eileen Frazier")) #((id . 2) (name . "Cruz Emerson")))) (greeting . "Hello, Pat Dean! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021786b8dbe55458d313") (index . 226) (guid . "ba16d45e-8084-407a-891f-8419568a4039") (isActive . False) (balance . "$3,507.64") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "green") (name . "Schwartz Cohen") (gender . "male") (company . "FLUMBO") (email . "schwartzcohen@flumbo.com") (phone . "+1 (867) 457-3340") (address . "883 Sullivan Street, Katonah, Vermont, 9752") (about . "Deserunt duis laborum aute fugiat. Ut eu excepteur in reprehenderit minim. Culpa laboris consectetur mollit ad Lorem ea duis aliqua. Velit dolore quis ea cillum in exercitation mollit anim sit ex quis. Magna fugiat non nisi ea commodo exercitation sint aute.\r\n") (registered . "2017-07-06T03:40:53 +06:00") (latitude . 30.334111) (longitude . -143.088588) (tags . ("Lorem" "ipsum" "in" "id" "velit" "Lorem" "veniam")) (friends . (#((id . 0) (name . "Willie Benjamin")) #((id . 1) (name . "Barbra Howard")) #((id . 2) (name . "Yates Ortega")))) (greeting . "Hello, Schwartz Cohen! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302178e64474d9490b6d7") (index . 227) (guid . "4966b98a-773b-430b-a7d0-82725db3809e") (isActive . True) (balance . "$1,243.02") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Beverley Walker") (gender . "female") (company . "ATGEN") (email . "beverleywalker@atgen.com") (phone . "+1 (967) 594-2416") (address . "130 Ovington Avenue, Loma, Maine, 4270") (about . "Eu pariatur voluptate laborum ea deserunt excepteur deserunt deserunt sint magna. Laboris non labore voluptate quis enim mollit minim mollit exercitation pariatur mollit cupidatat. Aliqua commodo excepteur ipsum elit. Fugiat est ea enim elit id non reprehenderit aliquip aliquip tempor. Sunt aute sint irure dolor ipsum.\r\n") (registered . "2017-12-05T05:21:15 +07:00") (latitude . -68.081176) (longitude . 54.736656) (tags . ("laboris" "ea" "aliquip" "dolore" "sunt" "mollit" "adipisicing")) (friends . (#((id . 0) (name . "Jeannine Curry")) #((id . 1) (name . "Reynolds Fletcher")) #((id . 2) (name . "Serrano Harris")))) (greeting . "Hello, Beverley Walker! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021717f5709aee2d83d0") (index . 228) (guid . "703c3017-53d9-445c-ad9f-ded17300e5b3") (isActive . False) (balance . "$1,074.42") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "brown") (name . "Desiree Navarro") (gender . "female") (company . "QUADEEBO") (email . "desireenavarro@quadeebo.com") (phone . "+1 (976) 495-2007") (address . "822 Leonard Street, Wikieup, Alaska, 4353") (about . "Aliquip ullamco adipisicing anim occaecat nostrud consequat tempor sunt non nisi pariatur. Ea nostrud consequat nisi nulla dolore minim velit. Mollit aute anim ea reprehenderit nulla. Ea veniam voluptate tempor deserunt. Non aliqua sit mollit consectetur proident ullamco adipisicing ex. Officia excepteur excepteur cillum proident qui voluptate labore aliqua nostrud deserunt excepteur do irure.\r\n") (registered . "2016-12-17T07:38:46 +07:00") (latitude . -61.53666) (longitude . -143.604382) (tags . ("id" "pariatur" "velit" "cillum" "adipisicing" "mollit" "ipsum")) (friends . (#((id . 0) (name . "Shanna Harrison")) #((id . 1) (name . "Flora Marks")) #((id . 2) (name . "Hurley Gray")))) (greeting . "Hello, Desiree Navarro! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302173cd1b347273de029") (index . 229) (guid . "954d4280-15ea-4287-ad81-cd6775ad476e") (isActive . False) (balance . "$3,200.09") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "green") (name . "Virginia Good") (gender . "female") (company . "POOCHIES") (email . "virginiagood@poochies.com") (phone . "+1 (914) 495-3781") (address . "635 Dennett Place, Dola, Palau, 8886") (about . "In duis non ea officia ut qui aute do occaecat dolore. Ad aliquip velit laboris eu magna dolore laboris in voluptate. Labore mollit sit aute labore mollit esse eiusmod ut esse aute non. Minim qui tempor et laborum non proident consequat labore mollit culpa.\r\n") (registered . "2016-05-01T06:56:20 +06:00") (latitude . -35.364199) (longitude . 57.910049) (tags . ("occaecat" "laborum" "aute" "et" "duis" "irure" "exercitation")) (friends . (#((id . 0) (name . "Medina Murray")) #((id . 1) (name . "Lindsey Luna")) #((id . 2) (name . "Jessica Espinoza")))) (greeting . "Hello, Virginia Good! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217b683cddb2aea0c40") (index . 230) (guid . "9d62814e-4059-40b4-aa93-386190679069") (isActive . True) (balance . "$3,506.59") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "brown") (name . "Owens Holder") (gender . "male") (company . "UBERLUX") (email . "owensholder@uberlux.com") (phone . "+1 (900) 532-3656") (address . "502 Townsend Street, Basye, Arkansas, 5781") (about . "Aute dolor cillum reprehenderit et est culpa laborum sint minim quis. Mollit sit tempor occaecat cillum ipsum. Laborum tempor sit ullamco exercitation labore elit Lorem.\r\n") (registered . "2017-02-13T11:32:09 +07:00") (latitude . -31.839489) (longitude . 66.060973) (tags . ("consectetur" "in" "dolore" "elit" "dolor" "est" "duis")) (friends . (#((id . 0) (name . "Frank Spencer")) #((id . 1) (name . "Jewell Allison")) #((id . 2) (name . "Nadia Edwards")))) (greeting . "Hello, Owens Holder! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217a35a87adb0e61a39") (index . 231) (guid . "4f9c1ba3-d3a9-4e8e-9663-a6d2ac861f47") (isActive . True) (balance . "$2,973.81") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "blue") (name . "Yang Nelson") (gender . "male") (company . "OCTOCORE") (email . "yangnelson@octocore.com") (phone . "+1 (967) 425-2796") (address . "171 Garnet Street, Wheatfields, Florida, 9802") (about . "Consequat id fugiat ex laborum aliqua ea velit in et dolor. Mollit ad sit amet qui incididunt consectetur anim. Eu ex est in proident eu in culpa commodo aliqua esse. Proident consectetur voluptate exercitation sint aliqua ut. Aute ullamco enim exercitation velit enim dolore aute exercitation do adipisicing pariatur excepteur elit veniam. Laborum sit ipsum exercitation cillum culpa laborum minim aliquip aliqua irure anim veniam consectetur.\r\n") (registered . "2017-11-16T02:29:51 +07:00") (latitude . 23.754627) (longitude . -4.462414) (tags . ("Lorem" "ex" "cillum" "veniam" "est" "labore" "pariatur")) (friends . (#((id . 0) (name . "Bradford Durham")) #((id . 1) (name . "Lizzie Hudson")) #((id . 2) (name . "Mercedes Richards")))) (greeting . "Hello, Yang Nelson! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302171e3a47e77f1bfcb9") (index . 232) (guid . "1070c559-53e7-4ec1-9afd-b4a373a81ea0") (isActive . True) (balance . "$1,216.95") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "blue") (name . "Lyons Wilkinson") (gender . "male") (company . "POLARIUM") (email . "lyonswilkinson@polarium.com") (phone . "+1 (942) 529-2889") (address . "130 Erasmus Street, Coultervillle, Puerto Rico, 8224") (about . "Exercitation culpa minim consectetur officia. Ex cillum enim enim amet enim. In in adipisicing quis veniam dolor do velit sunt nostrud cillum velit eiusmod culpa pariatur. Aliqua id aute enim do aliqua culpa sit sint nulla. Ex occaecat id commodo sint officia mollit deserunt amet exercitation duis.\r\n") (registered . "2015-05-19T02:29:30 +06:00") (latitude . -45.013577) (longitude . 153.550029) (tags . ("commodo" "officia" "in" "qui" "ullamco" "commodo" "esse")) (friends . (#((id . 0) (name . "Kaufman Howell")) #((id . 1) (name . "Kayla Cruz")) #((id . 2) (name . "Dawn Talley")))) (greeting . "Hello, Lyons Wilkinson! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302171be9bd34c6896b0f") (index . 233) (guid . "2de6a153-eb9b-46b5-984e-c257943e7fdc") (isActive . False) (balance . "$1,606.37") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "brown") (name . "Strong Dyer") (gender . "male") (company . "ZAYA") (email . "strongdyer@zaya.com") (phone . "+1 (926) 512-2491") (address . "112 Durland Place, Martinez, Hawaii, 2321") (about . "Cillum voluptate nisi laboris nostrud elit cupidatat sit enim ad commodo esse exercitation. Magna consequat exercitation voluptate minim. Mollit sit culpa voluptate nulla aute irure voluptate et. Ea amet dolor cupidatat nulla in ad proident ipsum nostrud officia deserunt sint tempor voluptate. Ipsum Lorem cupidatat ea amet eu consequat ullamco culpa duis esse incididunt in. Excepteur id nisi et aliquip deserunt minim irure.\r\n") (registered . "2017-05-21T08:17:14 +06:00") (latitude . -86.904406) (longitude . -28.711022) (tags . ("ex" "officia" "officia" "ipsum" "occaecat" "anim" "et")) (friends . (#((id . 0) (name . "April Chandler")) #((id . 1) (name . "Huber Raymond")) #((id . 2) (name . "Booker Kelly")))) (greeting . "Hello, Strong Dyer! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217dbd6fab49c9320aa") (index . 234) (guid . "f812d08c-e7c0-44fb-bf30-ae40339cc0bd") (isActive . True) (balance . "$1,661.50") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "brown") (name . "Ethel Mcbride") (gender . "female") (company . "ISOPOP") (email . "ethelmcbride@isopop.com") (phone . "+1 (982) 558-2199") (address . "422 Ellery Street, Juarez, American Samoa, 2016") (about . "Laboris occaecat sunt anim eu commodo fugiat ut ut. Ut veniam velit proident velit et consectetur esse. Sunt voluptate est Lorem id dolor ad. Adipisicing nisi sit nulla laboris non exercitation tempor aute sint labore adipisicing anim et duis. Anim culpa qui exercitation aute in sint culpa enim labore tempor exercitation consequat. Ullamco in magna nisi mollit adipisicing. Anim pariatur veniam est laborum id labore eu esse Lorem non sint officia.\r\n") (registered . "2016-10-30T09:19:17 +06:00") (latitude . 21.217313) (longitude . 64.316252) (tags . ("eiusmod" "qui" "dolore" "eiusmod" "veniam" "velit" "pariatur")) (friends . (#((id . 0) (name . "Queen David")) #((id . 1) (name . "Fitzgerald Goff")) #((id . 2) (name . "Terri Ratliff")))) (greeting . "Hello, Ethel Mcbride! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217b00ce4eb1e169f6b") (index . 235) (guid . "27154996-3cff-4e27-aadd-edc34e4a8621") (isActive . False) (balance . "$1,068.14") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "brown") (name . "Cherry Simpson") (gender . "female") (company . "ZBOO") (email . "cherrysimpson@zboo.com") (phone . "+1 (913) 569-3750") (address . "954 Gem Street, Lydia, Indiana, 3545") (about . "Sint aliqua irure dolore sint veniam do id cillum duis aute occaecat voluptate. Ut reprehenderit est aute ut minim proident tempor culpa amet sunt adipisicing proident exercitation deserunt. Dolore ut est occaecat labore Lorem aliqua enim ad minim minim cillum sunt non. Aliquip excepteur et quis enim do id sit non. Minim elit duis mollit labore elit est. Magna aute labore cupidatat Lorem consectetur nulla ex eu esse. Sint veniam ad deserunt nulla reprehenderit commodo do id.\r\n") (registered . "2015-10-06T08:22:45 +06:00") (latitude . 11.802542) (longitude . -37.062345) (tags . ("aliquip" "aliquip" "consectetur" "sit" "ea" "do" "sit")) (friends . (#((id . 0) (name . "Rosa Wheeler")) #((id . 1) (name . "Faith Hunt")) #((id . 2) (name . "Maryellen Craft")))) (greeting . "Hello, Cherry Simpson! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217f7e55bcc1af3b60e") (index . 236) (guid . "fc3eecde-6516-4032-89ec-1d45b0918bb8") (isActive . True) (balance . "$1,493.20") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "blue") (name . "Bridgette Holman") (gender . "female") (company . "MAGNINA") (email . "bridgetteholman@magnina.com") (phone . "+1 (954) 418-2416") (address . "435 Dewey Place, Crenshaw, Missouri, 9292") (about . "Eu Lorem eu labore cupidatat excepteur officia voluptate adipisicing qui excepteur tempor proident id proident. Minim sint ex magna sint ea eu consequat amet est in. Nostrud duis est sit sit. Elit tempor elit velit deserunt pariatur. Esse et magna non reprehenderit ut anim. Veniam eiusmod nostrud voluptate culpa ut ex labore esse sint et aute eiusmod minim reprehenderit.\r\n") (registered . "2014-03-22T01:55:14 +06:00") (latitude . 71.615352) (longitude . 6.651732) (tags . ("ad" "in" "cillum" "aliqua" "enim" "proident" "ut")) (friends . (#((id . 0) (name . "Delaney Gonzales")) #((id . 1) (name . "Rosanna Weeks")) #((id . 2) (name . "Chasity Estrada")))) (greeting . "Hello, Bridgette Holman! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217ffe3ac653999d32e") (index . 237) (guid . "7d992006-4034-45e8-a7b4-42c5fa945712") (isActive . False) (balance . "$2,057.96") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "blue") (name . "Burns Bartlett") (gender . "male") (company . "OVIUM") (email . "burnsbartlett@ovium.com") (phone . "+1 (963) 431-3426") (address . "737 Voorhies Avenue, Ebro, Guam, 4245") (about . "Aute cillum nulla sint adipisicing amet ipsum. Ad ipsum eiusmod ex nostrud officia cupidatat aute deserunt magna laboris irure sit. Id duis nisi non anim aliqua. Ex adipisicing magna sint commodo officia. Magna cillum minim anim qui eiusmod exercitation aute est enim cillum officia ut fugiat. Eiusmod velit nisi occaecat aliqua anim ea eiusmod Lorem eiusmod cupidatat eiusmod ipsum. Dolore nisi minim elit veniam velit irure incididunt.\r\n") (registered . "2016-10-06T03:49:46 +06:00") (latitude . 73.512757) (longitude . 9.175247) (tags . ("aute" "adipisicing" "aliquip" "eu" "ad" "pariatur" "cillum")) (friends . (#((id . 0) (name . "Holden Hart")) #((id . 1) (name . "Harrell Austin")) #((id . 2) (name . "Patterson Monroe")))) (greeting . "Hello, Burns Bartlett! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217c938ea3b1f51ca71") (index . 238) (guid . "0a1ec50d-fcac-4a21-85fb-32f9495db2cb") (isActive . False) (balance . "$2,634.51") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "blue") (name . "Josefina Hall") (gender . "female") (company . "BEDDER") (email . "josefinahall@bedder.com") (phone . "+1 (970) 443-3158") (address . "771 Rutledge Street, Neahkahnie, Minnesota, 5200") (about . "Aliquip proident exercitation labore ipsum voluptate occaecat. Ex adipisicing eu in culpa enim voluptate incididunt laboris pariatur dolor. Eiusmod dolore duis ex cupidatat esse do ipsum quis velit. Officia consectetur mollit eu magna ipsum ipsum velit anim eiusmod nostrud velit nostrud excepteur dolore. Adipisicing proident sit ullamco laborum ea id ex officia fugiat nostrud.\r\n") (registered . "2014-05-02T06:26:41 +06:00") (latitude . -67.787934) (longitude . 124.969117) (tags . ("pariatur" "qui" "sint" "sunt" "ad" "reprehenderit" "occaecat")) (friends . (#((id . 0) (name . "Jenny Shepard")) #((id . 1) (name . "Tiffany Castro")) #((id . 2) (name . "Ronda Benton")))) (greeting . "Hello, Josefina Hall! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302170b2ff5a57e704715") (index . 239) (guid . "af534b6e-a8c4-4f28-af9a-58ab1c42408a") (isActive . False) (balance . "$3,533.68") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "green") (name . "Susanna Steele") (gender . "female") (company . "PLAYCE") (email . "susannasteele@playce.com") (phone . "+1 (970) 493-2730") (address . "192 Benson Avenue, Callaghan, Delaware, 3746") (about . "Ipsum fugiat adipisicing id sit aliqua ex culpa cillum ipsum. Fugiat incididunt sit nisi voluptate aute eiusmod esse ullamco aute exercitation sunt aliqua ex veniam. Culpa ullamco consectetur sit ut dolore Lorem excepteur aliquip incididunt aute. Magna officia adipisicing ea anim sint nisi. Deserunt sunt eiusmod do veniam Lorem.\r\n") (registered . "2017-04-09T08:41:54 +06:00") (latitude . -27.340526) (longitude . -71.259999) (tags . ("duis" "cupidatat" "officia" "officia" "consectetur" "non" "nulla")) (friends . (#((id . 0) (name . "Jane Valencia")) #((id . 1) (name . "Myrtle Finch")) #((id . 2) (name . "Hogan Cannon")))) (greeting . "Hello, Susanna Steele! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217886f818270e87776") (index . 240) (guid . "877e5a96-43c1-48ee-a59f-4855ecc17e25") (isActive . True) (balance . "$2,256.32") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "brown") (name . "Padilla Shepherd") (gender . "male") (company . "RECOGNIA") (email . "padillashepherd@recognia.com") (phone . "+1 (833) 544-3770") (address . "774 Railroad Avenue, Chestnut, Kansas, 1598") (about . "Sunt et aliquip eiusmod proident labore minim nostrud officia occaecat esse enim consequat ex proident. Qui anim sit velit id minim sit pariatur ullamco. Adipisicing aliqua dolor in est incididunt ad eiusmod eu. Anim sint velit voluptate culpa est dolore cillum aliquip velit deserunt laborum qui dolore. Deserunt in sit deserunt fugiat exercitation et incididunt. Anim exercitation laboris non Lorem occaecat eiusmod tempor velit minim do dolor Lorem sint. Amet ut adipisicing commodo reprehenderit reprehenderit id tempor sint ea fugiat est incididunt esse.\r\n") (registered . "2015-05-26T02:32:53 +06:00") (latitude . -24.131718) (longitude . -169.660964) (tags . ("dolore" "esse" "id" "laborum" "id" "aute" "fugiat")) (friends . (#((id . 0) (name . "Cotton Pate")) #((id . 1) (name . "Hernandez Pierce")) #((id . 2) (name . "Stefanie Elliott")))) (greeting . "Hello, Padilla Shepherd! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302171955ed3ccde0682e") (index . 241) (guid . "a06c98d0-fc56-4dd2-9322-297dc8bc168c") (isActive . False) (balance . "$1,518.91") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Wolfe Pickett") (gender . "male") (company . "DANCITY") (email . "wolfepickett@dancity.com") (phone . "+1 (892) 402-3047") (address . "319 Duryea Place, Harrison, Washington, 8319") (about . "Eu enim elit commodo ad minim. Velit ex irure est ipsum exercitation consequat eiusmod id deserunt commodo. Aliquip officia exercitation ipsum dolor laborum deserunt aliqua proident. Nostrud ipsum aliquip dolore eu sunt eiusmod cupidatat ipsum incididunt fugiat. Dolor exercitation quis ea deserunt.\r\n") (registered . "2015-08-06T04:00:18 +06:00") (latitude . 72.149421) (longitude . 113.570101) (tags . ("occaecat" "aliquip" "laboris" "sit" "consequat" "nostrud" "esse")) (friends . (#((id . 0) (name . "Dorthy Sears")) #((id . 1) (name . "Vega Livingston")) #((id . 2) (name . "Stevenson Dawson")))) (greeting . "Hello, Wolfe Pickett! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302175d96adc6dab434ab") (index . 242) (guid . "f628c910-b652-4606-b8ae-2802a1aa7a74") (isActive . False) (balance . "$2,557.72") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Flossie Gallagher") (gender . "female") (company . "CINCYR") (email . "flossiegallagher@cincyr.com") (phone . "+1 (913) 433-2185") (address . "756 Joval Court, Sabillasville, Oklahoma, 4949") (about . "Ex duis Lorem magna non qui Lorem Lorem magna eiusmod dolor. Ipsum dolore duis Lorem est ea anim est enim voluptate. Et ullamco non dolor sit laboris adipisicing commodo eu magna. Aliqua occaecat consequat Lorem enim officia ut non ipsum.\r\n") (registered . "2014-02-16T08:21:09 +07:00") (latitude . -56.159569) (longitude . -127.980768) (tags . ("aliquip" "minim" "excepteur" "laboris" "fugiat" "reprehenderit" "elit")) (friends . (#((id . 0) (name . "Hull Guzman")) #((id . 1) (name . "Bauer Parks")) #((id . 2) (name . "Fisher Hines")))) (greeting . "Hello, Flossie Gallagher! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302176a2f2ec75133f06f") (index . 243) (guid . "30f9707a-8fbe-4a5b-ab7d-5e2c5d4bb962") (isActive . False) (balance . "$3,884.27") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "blue") (name . "Salas England") (gender . "male") (company . "IMKAN") (email . "salasengland@imkan.com") (phone . "+1 (812) 443-3149") (address . "925 Henry Street, Jardine, Kentucky, 5137") (about . "Ut laborum id culpa laboris. Occaecat Lorem magna aute esse sint tempor. Est irure non non consectetur duis.\r\n") (registered . "2018-01-03T04:56:27 +07:00") (latitude . 43.566671) (longitude . -32.993214) (tags . ("adipisicing" "aliquip" "nisi" "enim" "ipsum" "consequat" "et")) (friends . (#((id . 0) (name . "Kenya Blackwell")) #((id . 1) (name . "Dixon Mccray")) #((id . 2) (name . "Jordan Roman")))) (greeting . "Hello, Salas England! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217512d50bfddbc585d") (index . 244) (guid . "926417f4-a836-42c5-b198-c58254c5aee0") (isActive . False) (balance . "$1,902.80") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "green") (name . "Hudson Bowman") (gender . "male") (company . "EVENTEX") (email . "hudsonbowman@eventex.com") (phone . "+1 (897) 459-3505") (address . "330 Murdock Court, Edinburg, Alabama, 5807") (about . "Esse ipsum deserunt sunt aliqua. Enim incididunt nisi sunt labore nisi et anim. Nulla velit laboris et anim ipsum Lorem mollit laborum esse elit eiusmod. Adipisicing sunt et minim elit non ex labore do occaecat voluptate anim qui occaecat.\r\n") (registered . "2016-04-27T04:36:06 +06:00") (latitude . -51.315393) (longitude . 162.563974) (tags . ("labore" "nulla" "consequat" "sunt" "consectetur" "veniam" "ea")) (friends . (#((id . 0) (name . "Amber Carroll")) #((id . 1) (name . "Robyn Farrell")) #((id . 2) (name . "Cash Francis")))) (greeting . "Hello, Hudson Bowman! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217d745cb5c43f00bca") (index . 245) (guid . "844aca5b-a27c-4adc-9c7c-a12a79549410") (isActive . False) (balance . "$3,814.91") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "green") (name . "Cecelia Reid") (gender . "female") (company . "ORBOID") (email . "ceceliareid@orboid.com") (phone . "+1 (898) 423-2415") (address . "570 Dwight Street, Ferney, West Virginia, 5051") (about . "Aliquip ipsum nostrud amet aute ut aliqua cillum enim irure elit culpa incididunt do. Excepteur culpa sit officia reprehenderit nulla laboris nisi est minim proident nostrud officia consectetur officia. Excepteur dolor velit ad dolore enim esse eu. Aute excepteur laboris magna nulla nulla. Occaecat eiusmod esse dolore aliqua nostrud ut irure pariatur ea deserunt aute cillum incididunt.\r\n") (registered . "2016-09-10T03:49:05 +06:00") (latitude . -87.30286) (longitude . 103.81877) (tags . ("est" "duis" "officia" "laborum" "adipisicing" "deserunt" "dolore")) (friends . (#((id . 0) (name . "Ila Ewing")) #((id . 1) (name . "Bonita Taylor")) #((id . 2) (name . "Lou Stephenson")))) (greeting . "Hello, Cecelia Reid! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021759b3389853e1d1a6") (index . 246) (guid . "b9ad49fa-dd32-41ec-954f-22f4dbbdf4ee") (isActive . False) (balance . "$1,489.24") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "brown") (name . "Thompson Mcdonald") (gender . "male") (company . "INTERFIND") (email . "thompsonmcdonald@interfind.com") (phone . "+1 (898) 540-2563") (address . "240 Grace Court, Caberfae, Ohio, 4944") (about . "Aliquip laboris ipsum est adipisicing ea aute pariatur magna. Ut consectetur id eiusmod enim do. Qui aliquip excepteur ex esse eu deserunt mollit velit est proident nostrud pariatur labore. Aliquip non magna aute adipisicing minim. In esse consequat eiusmod laborum esse dolore sunt aliquip id fugiat fugiat. Anim quis sit elit in aute eiusmod id dolore reprehenderit sint officia.\r\n") (registered . "2015-08-18T03:28:06 +06:00") (latitude . 89.707347) (longitude . 163.339347) (tags . ("culpa" "culpa" "id" "culpa" "est" "ullamco" "duis")) (friends . (#((id . 0) (name . "Jodi Griffith")) #((id . 1) (name . "Morgan Morin")) #((id . 2) (name . "Evangelina Griffin")))) (greeting . "Hello, Thompson Mcdonald! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302171e0e0cc3e9fca322") (index . 247) (guid . "e8ede9bc-2d60-4aae-a8dc-66aeb1f04eb4") (isActive . True) (balance . "$3,018.73") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "green") (name . "Stephanie Huber") (gender . "female") (company . "KROG") (email . "stephaniehuber@krog.com") (phone . "+1 (907) 497-3555") (address . "396 Chestnut Street, Galesville, Connecticut, 4301") (about . "Sunt ex culpa consectetur ut esse cupidatat eu aliquip laboris sint voluptate minim excepteur ex. Adipisicing nisi Lorem cupidatat qui cillum est laboris dolore aliqua veniam exercitation ullamco. Laboris irure mollit ullamco cillum excepteur deserunt magna adipisicing quis dolore proident commodo. Nisi et fugiat eiusmod occaecat Lorem labore elit duis est magna officia cupidatat. Enim consequat ullamco sunt commodo fugiat laborum nulla qui do. Sint nostrud veniam irure sit occaecat irure duis ea ipsum. Dolore consectetur et non nostrud aliquip do occaecat ipsum eu culpa.\r\n") (registered . "2015-01-08T08:37:54 +07:00") (latitude . -36.463339) (longitude . 132.27879) (tags . ("Lorem" "sit" "qui" "minim" "officia" "aliqua" "proident")) (friends . (#((id . 0) (name . "Hodges Caldwell")) #((id . 1) (name . "Florine Mcmahon")) #((id . 2) (name . "Lorrie Lynn")))) (greeting . "Hello, Stephanie Huber! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217defd5c6fae96e9b8") (index . 248) (guid . "75e9ca90-0c5d-409d-8a8c-3211a1d89c59") (isActive . False) (balance . "$3,742.14") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "blue") (name . "Angela Gaines") (gender . "female") (company . "XSPORTS") (email . "angelagaines@xsports.com") (phone . "+1 (863) 581-2210") (address . "908 Halsey Street, Bridgetown, North Dakota, 8010") (about . "Nostrud reprehenderit incididunt exercitation commodo qui duis occaecat tempor deserunt aliqua sit exercitation consequat. Laborum deserunt non tempor pariatur eu mollit cillum dolor. Qui duis ut velit pariatur deserunt consequat commodo.\r\n") (registered . "2017-06-18T02:48:40 +06:00") (latitude . 42.847322) (longitude . 49.675146) (tags . ("amet" "irure" "occaecat" "aute" "dolor" "fugiat" "labore")) (friends . (#((id . 0) (name . "Marta Huffman")) #((id . 1) (name . "Merritt Macias")) #((id . 2) (name . "Goodwin Pitts")))) (greeting . "Hello, Angela Gaines! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021716145bef32a495e5") (index . 249) (guid . "c8abb9ee-9049-4c68-9a68-7318668cd808") (isActive . False) (balance . "$2,841.03") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Charles Maddox") (gender . "male") (company . "ARCTIQ") (email . "charlesmaddox@arctiq.com") (phone . "+1 (939) 458-3130") (address . "156 Rochester Avenue, Bethpage, Mississippi, 1585") (about . "Occaecat amet in quis aliquip incididunt non commodo culpa exercitation ex dolore aliquip officia. Dolore mollit aute anim irure sint proident aute exercitation consectetur minim. Irure voluptate incididunt eiusmod quis occaecat irure duis commodo irure officia reprehenderit officia ea ullamco. Tempor ullamco veniam culpa id reprehenderit incididunt enim eu aliqua ullamco ullamco reprehenderit deserunt ipsum. Do fugiat incididunt sunt officia adipisicing incididunt esse exercitation veniam consectetur minim ea commodo consequat. Proident excepteur adipisicing tempor deserunt. Magna excepteur officia occaecat aliqua duis et do anim aliquip est labore.\r\n") (registered . "2017-05-21T02:26:41 +06:00") (latitude . 20.155901) (longitude . 129.713386) (tags . ("dolore" "do" "non" "Lorem" "mollit" "velit" "sit")) (friends . (#((id . 0) (name . "Olson Hancock")) #((id . 1) (name . "Tanisha Mendoza")) #((id . 2) (name . "Whitney Bowers")))) (greeting . "Hello, Charles Maddox! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302176bcf666cb16d981e") (index . 250) (guid . "ab12f230-05e1-49ad-af48-9618d7f50c4c") (isActive . False) (balance . "$2,041.93") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "blue") (name . "Nguyen Diaz") (gender . "male") (company . "KRAG") (email . "nguyendiaz@krag.com") (phone . "+1 (803) 581-3094") (address . "646 Celeste Court, Oberlin, New York, 6584") (about . "Sit nostrud eiusmod ipsum quis sunt. Amet tempor Lorem occaecat fugiat velit. Enim cupidatat voluptate fugiat sint quis. Occaecat elit in mollit excepteur mollit nisi magna reprehenderit do occaecat consectetur elit aute. Dolor fugiat elit aliquip fugiat sunt id commodo et deserunt id dolor fugiat.\r\n") (registered . "2016-09-11T04:16:31 +06:00") (latitude . 28.099238) (longitude . -115.039332) (tags . ("nostrud" "laborum" "fugiat" "ullamco" "et" "adipisicing" "consectetur")) (friends . (#((id . 0) (name . "Chrystal Church")) #((id . 1) (name . "Janna Stewart")) #((id . 2) (name . "Crystal Wong")))) (greeting . "Hello, Nguyen Diaz! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217213368d6ee6ee58f") (index . 251) (guid . "ee0a3f0a-537b-45ea-8cb1-e45706564bbd") (isActive . True) (balance . "$2,815.19") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "blue") (name . "John Mcpherson") (gender . "female") (company . "YOGASM") (email . "johnmcpherson@yogasm.com") (phone . "+1 (849) 551-3507") (address . "922 Bank Street, Ventress, Oregon, 7682") (about . "Ad sit anim quis qui non ut anim deserunt velit deserunt labore amet eiusmod. Non irure et ad deserunt cupidatat. Fugiat eiusmod do laboris et cupidatat deserunt enim amet Lorem est cillum commodo.\r\n") (registered . "2017-01-07T04:40:02 +07:00") (latitude . 26.025304) (longitude . 18.144894) (tags . ("cillum" "aliqua" "quis" "cillum" "nulla" "esse" "qui")) (friends . (#((id . 0) (name . "Reid Tate")) #((id . 1) (name . "Gay Small")) #((id . 2) (name . "Barron Galloway")))) (greeting . "Hello, John Mcpherson! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217d211a739682d1138") (index . 252) (guid . "8e9033f9-117c-49f5-8e3c-eb6f6f204439") (isActive . True) (balance . "$2,469.29") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "green") (name . "Judith Henry") (gender . "female") (company . "SECURIA") (email . "judithhenry@securia.com") (phone . "+1 (934) 469-2415") (address . "871 Hudson Avenue, Ypsilanti, New Jersey, 1878") (about . "Proident est dolore sint et incididunt eiusmod nisi. Est excepteur nisi culpa labore cupidatat velit est laborum ut et quis nostrud in. Nulla sint amet elit eu et et tempor. Sit quis pariatur dolor dolore id aliqua reprehenderit sit consequat ullamco excepteur. Mollit sunt veniam eiusmod voluptate Lorem ex eu consequat. Eiusmod et reprehenderit enim aute esse et est duis duis.\r\n") (registered . "2016-08-13T02:15:02 +06:00") (latitude . 37.426824) (longitude . 19.485993) (tags . ("labore" "mollit" "quis" "dolore" "nulla" "voluptate" "dolore")) (friends . (#((id . 0) (name . "Tammie Dorsey")) #((id . 1) (name . "Maryann Eaton")) #((id . 2) (name . "Wanda Delaney")))) (greeting . "Hello, Judith Henry! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302178412e83eac2dbfd8") (index . 253) (guid . "1c969312-6152-435f-8eff-c10e9f96b37e") (isActive . False) (balance . "$2,673.14") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "brown") (name . "Caroline Glass") (gender . "female") (company . "ZENOLUX") (email . "carolineglass@zenolux.com") (phone . "+1 (900) 508-3903") (address . "791 Gelston Avenue, Derwood, Montana, 690") (about . "Quis qui irure mollit pariatur exercitation fugiat esse ipsum. Et quis eiusmod exercitation amet consectetur exercitation dolor elit enim occaecat tempor duis laborum ex. Reprehenderit culpa est est minim sit enim nulla amet ad sit Lorem.\r\n") (registered . "2014-01-27T12:54:22 +07:00") (latitude . 49.386412) (longitude . -15.019087) (tags . ("excepteur" "reprehenderit" "esse" "ex" "deserunt" "qui" "deserunt")) (friends . (#((id . 0) (name . "Mcconnell Spears")) #((id . 1) (name . "Alejandra Haney")) #((id . 2) (name . "Katy Chan")))) (greeting . "Hello, Caroline Glass! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302174392019003477e73") (index . 254) (guid . "c7cf2075-1a78-466d-ba8f-8bff168c9d63") (isActive . False) (balance . "$2,226.37") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Marcie William") (gender . "female") (company . "ANIMALIA") (email . "marciewilliam@animalia.com") (phone . "+1 (846) 527-2720") (address . "791 Royce Place, Elbert, Nevada, 9775") (about . "Mollit consequat eu et culpa minim aute commodo consequat commodo. Proident nostrud mollit in occaecat voluptate ea cillum eu et minim excepteur consequat id laboris. Velit sit nisi est qui. Deserunt cillum cillum culpa est anim minim ea consectetur. Sunt occaecat pariatur laboris aliquip eu ullamco. Culpa occaecat nostrud tempor quis incididunt non occaecat fugiat ea consequat id pariatur officia duis. Exercitation incididunt minim excepteur est ullamco laboris mollit elit anim ipsum eu.\r\n") (registered . "2015-01-31T04:43:46 +07:00") (latitude . -29.154723) (longitude . -140.50501) (tags . ("dolore" "eu" "proident" "nostrud" "consequat" "voluptate" "cupidatat")) (friends . (#((id . 0) (name . "Watson Hammond")) #((id . 1) (name . "Key Oneal")) #((id . 2) (name . "Jean Randall")))) (greeting . "Hello, Marcie William! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302172b1a4646ba0b54a0") (index . 255) (guid . "70c4f7ec-b812-45d0-b3a8-780cb290b416") (isActive . True) (balance . "$1,829.38") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "green") (name . "Manuela Morales") (gender . "female") (company . "SLAX") (email . "manuelamorales@slax.com") (phone . "+1 (823) 521-2651") (address . "452 Franklin Street, Welda, Colorado, 7222") (about . "Exercitation reprehenderit cillum aliquip ad ex nostrud culpa magna pariatur mollit. Officia labore voluptate mollit fugiat. Amet laborum consectetur ullamco dolor Lorem adipisicing proident fugiat laborum cupidatat. Labore laborum ad qui sint magna. Cillum minim ullamco id reprehenderit elit sunt do proident nostrud cupidatat. Sint ullamco ullamco enim amet.\r\n") (registered . "2015-10-26T05:20:52 +06:00") (latitude . -31.230978) (longitude . -147.990854) (tags . ("culpa" "pariatur" "tempor" "ad" "quis" "proident" "sit")) (friends . (#((id . 0) (name . "Maude Vance")) #((id . 1) (name . "Nona Horton")) #((id . 2) (name . "Selena Weiss")))) (greeting . "Hello, Manuela Morales! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302175d61ec21b3c06123") (index . 256) (guid . "09fd2451-744c-422d-9039-5df30873b73d") (isActive . True) (balance . "$2,754.63") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "green") (name . "Mitzi Stein") (gender . "female") (company . "COMSTAR") (email . "mitzistein@comstar.com") (phone . "+1 (986) 420-3913") (address . "424 Bleecker Street, Osage, New Mexico, 7309") (about . "Consequat eu ex dolore sit ut tempor nulla reprehenderit. Aliqua dolor cillum velit culpa anim non deserunt occaecat quis pariatur aliquip est. Excepteur dolore consectetur aute esse irure mollit ad nisi consequat non nisi culpa exercitation. Consectetur officia elit ut veniam ad esse aliquip sint sint. Qui amet ea sint esse excepteur qui dolor sint exercitation. Fugiat voluptate laborum enim sint.\r\n") (registered . "2016-03-19T10:12:10 +06:00") (latitude . -37.113913) (longitude . 137.103661) (tags . ("laborum" "fugiat" "aliqua" "veniam" "est" "aliquip" "amet")) (friends . (#((id . 0) (name . "Humphrey Buckley")) #((id . 1) (name . "Hatfield Sandoval")) #((id . 2) (name . "Katharine Peterson")))) (greeting . "Hello, Mitzi Stein! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021717f874f47b617b30") (index . 257) (guid . "139c1a30-432c-4ad0-bb52-1e2b9074e28f") (isActive . True) (balance . "$3,682.15") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "blue") (name . "Emerson Lopez") (gender . "male") (company . "CANOPOLY") (email . "emersonlopez@canopoly.com") (phone . "+1 (817) 571-2362") (address . "326 Crosby Avenue, Bluffview, Texas, 5086") (about . "Cupidatat consectetur laborum exercitation nisi. Do magna irure laboris eiusmod. Veniam laborum consectetur non veniam enim consequat duis id dolor sunt ipsum. Veniam excepteur aliqua tempor officia non sint qui proident sunt qui. Eu do labore anim amet aliqua duis dolor sunt deserunt eu ex nisi dolore nostrud.\r\n") (registered . "2014-03-17T11:47:36 +06:00") (latitude . 48.437186) (longitude . 82.359353) (tags . ("aliquip" "fugiat" "et" "ea" "esse" "velit" "ipsum")) (friends . (#((id . 0) (name . "Willa Ware")) #((id . 1) (name . "Nettie Kennedy")) #((id . 2) (name . "Leblanc Sexton")))) (greeting . "Hello, Emerson Lopez! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217cfeaeaf5ea55936c") (index . 258) (guid . "647262d3-e526-49d3-a1dd-884153fc4979") (isActive . False) (balance . "$3,369.46") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "blue") (name . "West Petty") (gender . "male") (company . "OMATOM") (email . "westpetty@omatom.com") (phone . "+1 (921) 483-3844") (address . "101 Guernsey Street, Ahwahnee, North Carolina, 8044") (about . "Irure nulla ex exercitation anim adipisicing do cillum id. Amet dolor et eu ad anim. Dolore ipsum nulla anim duis tempor. Ipsum aute dolore elit nisi voluptate cillum do proident veniam.\r\n") (registered . "2018-03-14T07:53:44 +06:00") (latitude . 42.938159) (longitude . -129.188528) (tags . ("dolore" "minim" "nisi" "ea" "Lorem" "ipsum" "quis")) (friends . (#((id . 0) (name . "Fuller Brady")) #((id . 1) (name . "Deidre Bennett")) #((id . 2) (name . "Cleo Summers")))) (greeting . "Hello, West Petty! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021774f31011060c9265") (index . 259) (guid . "1d04803d-1a01-4c90-9565-9e74786a4b33") (isActive . True) (balance . "$3,358.81") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "brown") (name . "Clarice Wilkins") (gender . "female") (company . "ESSENSIA") (email . "claricewilkins@essensia.com") (phone . "+1 (944) 595-2595") (address . "169 Menahan Street, Topanga, Nebraska, 3917") (about . "Dolor culpa magna quis est nulla irure. Adipisicing sunt sint adipisicing mollit deserunt enim anim eiusmod exercitation. Nulla laborum nostrud ad aute aliqua ex. Commodo ipsum anim aliqua id cillum proident dolore.\r\n") (registered . "2015-11-14T10:49:17 +07:00") (latitude . -56.364779) (longitude . 153.692472) (tags . ("ullamco" "magna" "laboris" "irure" "culpa" "do" "commodo")) (friends . (#((id . 0) (name . "Galloway Mcguire")) #((id . 1) (name . "Deann Randolph")) #((id . 2) (name . "Clay Jordan")))) (greeting . "Hello, Clarice Wilkins! You have 1 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217cf305180040fc5db") (index . 260) (guid . "5c66d005-5fd9-42c8-becf-5abe7859ba3a") (isActive . True) (balance . "$1,295.21") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "brown") (name . "Snider Webb") (gender . "male") (company . "ZILCH") (email . "sniderwebb@zilch.com") (phone . "+1 (927) 419-3076") (address . "127 Berriman Street, Como, Tennessee, 9801") (about . "Non nulla ex laborum commodo pariatur anim ullamco officia qui culpa. Est anim amet cillum aliqua duis consequat. Ipsum consectetur dolore aliqua veniam aute dolore duis esse nulla commodo non. Reprehenderit cillum ex quis magna adipisicing non magna ex aute consequat incididunt anim. Minim aliquip sunt commodo commodo tempor aliqua amet officia. Excepteur sit ex qui laborum duis occaecat anim deserunt sit exercitation ea magna dolor eiusmod. Nostrud anim cupidatat magna nulla fugiat reprehenderit cillum sit enim amet id.\r\n") (registered . "2017-06-05T12:40:22 +06:00") (latitude . -35.636689) (longitude . 36.404287) (tags . ("amet" "cupidatat" "adipisicing" "laborum" "commodo" "laborum" "eiusmod")) (friends . (#((id . 0) (name . "Poole Merrill")) #((id . 1) (name . "Fran Tyson")) #((id . 2) (name . "Mindy Chapman")))) (greeting . "Hello, Snider Webb! You have 8 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217cddfb3a6e8f52385") (index . 261) (guid . "c3cbf27a-0ca8-46b3-8063-4e8b59a59d7c") (isActive . False) (balance . "$1,392.52") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "brown") (name . "Chaney Willis") (gender . "male") (company . "TERRAGEN") (email . "chaneywillis@terragen.com") (phone . "+1 (846) 411-2844") (address . "497 Crooke Avenue, Collins, Utah, 5127") (about . "Do incididunt ex esse sunt Lorem culpa labore reprehenderit ipsum. Ut excepteur cillum labore anim id enim. Ullamco elit ea reprehenderit ut ex et minim voluptate pariatur adipisicing.\r\n") (registered . "2016-03-30T09:40:06 +06:00") (latitude . -27.190609) (longitude . 54.744909) (tags . ("aliquip" "esse" "ipsum" "mollit" "sit" "eiusmod" "exercitation")) (friends . (#((id . 0) (name . "Carey Fields")) #((id . 1) (name . "Suzette Sullivan")) #((id . 2) (name . "Andrews Hansen")))) (greeting . "Hello, Chaney Willis! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021789415fcbe4a12cc6") (index . 262) (guid . "7be2b3e5-d9f4-4c31-9480-6387d908aba8") (isActive . True) (balance . "$1,779.14") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "brown") (name . "Harding Poole") (gender . "male") (company . "QUINTITY") (email . "hardingpoole@quintity.com") (phone . "+1 (818) 553-2555") (address . "796 Bayview Place, Florence, Marshall Islands, 725") (about . "Mollit enim ullamco Lorem in minim tempor aliqua. Consequat excepteur elit sint cillum reprehenderit mollit commodo dolor magna do officia anim. Consequat magna amet consectetur nisi sit exercitation ut incididunt esse ut. Mollit magna anim do officia irure amet ea eiusmod tempor.\r\n") (registered . "2014-02-22T07:30:23 +07:00") (latitude . -88.215879) (longitude . -97.031263) (tags . ("et" "laborum" "sunt" "dolore" "incididunt" "nisi" "duis")) (friends . (#((id . 0) (name . "Hicks Cooley")) #((id . 1) (name . "Marianne Key")) #((id . 2) (name . "Bernard Parker")))) (greeting . "Hello, Harding Poole! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021745d5adbf60af5a2b") (index . 263) (guid . "2f1a856a-dd12-423b-acf1-8075edaf8b28") (isActive . False) (balance . "$2,874.39") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "blue") (name . "Lambert Foster") (gender . "male") (company . "BLEEKO") (email . "lambertfoster@bleeko.com") (phone . "+1 (962) 477-2763") (address . "188 Bath Avenue, Richmond, Georgia, 1287") (about . "Excepteur proident eiusmod cupidatat do voluptate ipsum nisi sunt. Consectetur ad nisi voluptate in velit laboris anim duis nulla. Cupidatat culpa irure duis pariatur cupidatat consectetur aliquip. Minim voluptate ipsum labore dolore ipsum et cillum duis eu reprehenderit.\r\n") (registered . "2016-11-21T07:22:03 +07:00") (latitude . -9.301308) (longitude . 86.762724) (tags . ("tempor" "dolore" "dolor" "nulla" "nisi" "quis" "amet")) (friends . (#((id . 0) (name . "Howell Hensley")) #((id . 1) (name . "Hubbard Downs")) #((id . 2) (name . "Lynch Cox")))) (greeting . "Hello, Lambert Foster! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302170ec249b7cfb79b4f") (index . 264) (guid . "fe110158-b4a1-484f-948e-06a83bedb134") (isActive . True) (balance . "$2,349.05") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Richards Cook") (gender . "male") (company . "EXERTA") (email . "richardscook@exerta.com") (phone . "+1 (925) 525-2431") (address . "532 Opal Court, Southview, Massachusetts, 614") (about . "Sunt mollit anim minim labore culpa sunt adipisicing et veniam consectetur. Laboris aliqua duis velit consequat qui cupidatat ex do magna veniam cupidatat sunt. Veniam qui qui duis culpa dolor do Lorem.\r\n") (registered . "2016-09-10T03:30:46 +06:00") (latitude . 74.216147) (longitude . -23.204084) (tags . ("laborum" "et" "quis" "voluptate" "officia" "non" "sint")) (friends . (#((id . 0) (name . "Patrica Yates")) #((id . 1) (name . "Pam Chambers")) #((id . 2) (name . "Wiley Bradford")))) (greeting . "Hello, Richards Cook! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217b7aa0283a17c2d4e") (index . 265) (guid . "6d951084-768d-4303-b8d4-211d5b2d4c90") (isActive . True) (balance . "$2,886.87") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "green") (name . "Wilson Myers") (gender . "male") (company . "PROGENEX") (email . "wilsonmyers@progenex.com") (phone . "+1 (863) 566-3966") (address . "471 Calder Place, Crucible, Arizona, 7941") (about . "Exercitation sunt dolor elit laboris incididunt laboris eu exercitation minim. Velit aliqua sunt elit fugiat aute adipisicing qui. Sit nulla laboris culpa irure enim magna cillum incididunt nisi. Velit anim cupidatat excepteur duis exercitation dolore commodo voluptate labore fugiat anim consequat non.\r\n") (registered . "2016-03-27T03:49:13 +06:00") (latitude . 36.946294) (longitude . -36.525174) (tags . ("dolor" "sint" "amet" "cupidatat" "nisi" "velit" "deserunt")) (friends . (#((id . 0) (name . "Pansy Roy")) #((id . 1) (name . "Brigitte Odom")) #((id . 2) (name . "Wong Foreman")))) (greeting . "Hello, Wilson Myers! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217984b46403cb301d2") (index . 266) (guid . "8ce33c09-1be2-49cf-b3e4-f6bf21f2fd20") (isActive . False) (balance . "$2,330.70") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Martin Duffy") (gender . "male") (company . "SURETECH") (email . "martinduffy@suretech.com") (phone . "+1 (817) 547-2474") (address . "373 Tilden Avenue, Woodlands, District Of Columbia, 7704") (about . "Sit consequat dolor ullamco excepteur occaecat occaecat Lorem qui. Lorem pariatur elit sit commodo in occaecat. Commodo non labore ad esse.\r\n") (registered . "2016-05-02T12:49:54 +06:00") (latitude . -66.523743) (longitude . 175.2165) (tags . ("in" "ex" "anim" "consequat" "ad" "commodo" "ullamco")) (friends . (#((id . 0) (name . "Brooks Brooks")) #((id . 1) (name . "Clark Sutton")) #((id . 2) (name . "Shelia Solomon")))) (greeting . "Hello, Martin Duffy! You have 2 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217af9657b1ccaf5aef") (index . 267) (guid . "af92f61d-d74e-4a46-993d-944a050113c9") (isActive . True) (balance . "$3,390.50") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "brown") (name . "Weaver Thomas") (gender . "male") (company . "KONGLE") (email . "weaverthomas@kongle.com") (phone . "+1 (869) 437-3772") (address . "248 Lenox Road, Hemlock, Virgin Islands, 9365") (about . "Ad cillum officia aliquip officia cupidatat duis esse eu in cillum. Consectetur in officia cillum adipisicing laboris in cupidatat anim proident. Nisi nisi ipsum ullamco duis quis irure cupidatat in officia.\r\n") (registered . "2016-09-02T06:45:13 +06:00") (latitude . 88.443721) (longitude . 32.539391) (tags . ("minim" "Lorem" "eu" "sit" "aliqua" "cillum" "eiusmod")) (friends . (#((id . 0) (name . "Lolita Dominguez")) #((id . 1) (name . "Kendra Massey")) #((id . 2) (name . "Kelly Morrison")))) (greeting . "Hello, Weaver Thomas! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217ae6aa90e8d1038a7") (index . 268) (guid . "62c460d3-13fa-4614-a845-7808272eb9c9") (isActive . False) (balance . "$1,100.35") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "green") (name . "Sanford Cross") (gender . "male") (company . "HATOLOGY") (email . "sanfordcross@hatology.com") (phone . "+1 (879) 513-2618") (address . "654 Seagate Terrace, Wescosville, South Dakota, 9224") (about . "Et deserunt culpa ut ex non. Pariatur occaecat nulla sint amet sit laborum dolore elit qui Lorem id mollit ad cupidatat. Et et et cillum quis qui anim duis minim. Anim consequat esse laborum Lorem eu amet nostrud velit. Cupidatat dolore et mollit id pariatur irure laborum officia ipsum pariatur enim Lorem ad. Eu esse in esse adipisicing. Labore qui consectetur aute et.\r\n") (registered . "2016-07-20T04:11:07 +06:00") (latitude . 69.35256) (longitude . 4.675788) (tags . ("ea" "velit" "et" "officia" "culpa" "culpa" "aute")) (friends . (#((id . 0) (name . "Sarah Erickson")) #((id . 1) (name . "Joy Valenzuela")) #((id . 2) (name . "Heidi Sherman")))) (greeting . "Hello, Sanford Cross! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217bb153b696888658a") (index . 269) (guid . "f6590d86-61f5-4ec2-9584-86075058f9ff") (isActive . False) (balance . "$2,953.65") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "blue") (name . "Alvarez Bird") (gender . "male") (company . "COLUMELLA") (email . "alvarezbird@columella.com") (phone . "+1 (929) 435-2152") (address . "684 Coffey Street, Fruitdale, Virginia, 7338") (about . "Deserunt ullamco duis est culpa id enim id tempor excepteur laboris. Commodo quis commodo elit velit consectetur mollit excepteur magna cupidatat voluptate voluptate in id. Tempor incididunt aliquip et in id officia laboris enim excepteur veniam minim et elit et. Magna duis sint do excepteur duis sunt. Mollit labore irure dolor cillum ut. Enim nisi do duis aute sunt eiusmod dolore tempor culpa ex cillum ipsum. Laborum ullamco commodo sint aute reprehenderit.\r\n") (registered . "2017-01-23T04:39:08 +07:00") (latitude . 23.079716) (longitude . 23.231506) (tags . ("reprehenderit" "ullamco" "sunt" "esse" "enim" "aliqua" "sit")) (friends . (#((id . 0) (name . "Addie Langley")) #((id . 1) (name . "Naomi Cortez")) #((id . 2) (name . "Mcfarland Washington")))) (greeting . "Hello, Alvarez Bird! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217dacca7c35ba7ba32") (index . 270) (guid . "70e5b8da-fe91-4e70-9dc6-2777929874fc") (isActive . True) (balance . "$2,526.30") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "brown") (name . "Elisabeth Mccarty") (gender . "female") (company . "KEGULAR") (email . "elisabethmccarty@kegular.com") (phone . "+1 (846) 575-3953") (address . "709 Fleet Street, Campo, Michigan, 7899") (about . "Veniam laborum eiusmod laboris ex officia nostrud. Sit consectetur elit sunt amet Lorem fugiat enim velit consectetur adipisicing. Non irure qui proident eu est Lorem culpa veniam elit sint est amet commodo. Magna nulla laboris ullamco reprehenderit do enim officia laborum mollit non duis aliquip amet. Cupidatat eiusmod laboris veniam deserunt culpa fugiat.\r\n") (registered . "2016-11-29T05:54:11 +07:00") (latitude . -38.248429) (longitude . -123.389537) (tags . ("ut" "id" "ea" "Lorem" "anim" "officia" "cillum")) (friends . (#((id . 0) (name . "Everett Bates")) #((id . 1) (name . "Tanya Norman")) #((id . 2) (name . "Natalia Avery")))) (greeting . "Hello, Elisabeth Mccarty! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217a57ab79b0b7187e5") (index . 271) (guid . "05d53070-6dca-4697-bd9d-3bec1b8e031d") (isActive . False) (balance . "$2,388.85") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Pace Johnston") (gender . "male") (company . "FREAKIN") (email . "pacejohnston@freakin.com") (phone . "+1 (830) 575-2842") (address . "282 Mill Road, Brogan, Northern Mariana Islands, 9265") (about . "Nisi et elit exercitation deserunt quis laborum. Laborum magna ut voluptate anim ea elit do veniam dolor. Duis ex adipisicing consequat commodo commodo Lorem adipisicing magna enim deserunt fugiat reprehenderit adipisicing anim. Fugiat voluptate commodo laborum adipisicing. Est qui non voluptate pariatur nostrud aute cupidatat excepteur pariatur deserunt amet et et. Do occaecat quis duis culpa cillum veniam aliquip non ullamco. Veniam non est magna et.\r\n") (registered . "2015-10-05T09:15:34 +06:00") (latitude . -73.510734) (longitude . 86.141907) (tags . ("deserunt" "consequat" "proident" "veniam" "aute" "ut" "sunt")) (friends . (#((id . 0) (name . "Sondra Rhodes")) #((id . 1) (name . "Quinn Mitchell")) #((id . 2) (name . "Camille Garrison")))) (greeting . "Hello, Pace Johnston! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021724dd931b991d5b19") (index . 272) (guid . "67371250-72fc-4ec7-bd2b-9e068214b30d") (isActive . True) (balance . "$1,350.06") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "brown") (name . "Garza Watson") (gender . "male") (company . "BILLMED") (email . "garzawatson@billmed.com") (phone . "+1 (971) 560-3753") (address . "754 Bergen Street, Gorst, Illinois, 8004") (about . "Anim eu velit sint in deserunt officia reprehenderit pariatur sit commodo et pariatur eiusmod. Ipsum consectetur ea ex irure laboris anim minim ex minim dolor laboris cupidatat culpa sint. Proident ut eu magna ea Lorem officia ipsum. Labore excepteur quis tempor nostrud id.\r\n") (registered . "2018-02-18T08:30:20 +07:00") (latitude . -25.840251) (longitude . 108.225005) (tags . ("non" "do" "laboris" "velit" "commodo" "est" "est")) (friends . (#((id . 0) (name . "Margret Ramsey")) #((id . 1) (name . "Jefferson Potter")) #((id . 2) (name . "Horne Riley")))) (greeting . "Hello, Garza Watson! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302175445be15e8a94d4e") (index . 273) (guid . "68ecbe23-1151-4569-8624-8a1f80d9e4d0") (isActive . False) (balance . "$3,942.65") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "green") (name . "Harris Dodson") (gender . "male") (company . "QOT") (email . "harrisdodson@qot.com") (phone . "+1 (807) 478-2229") (address . "746 Onderdonk Avenue, Robinette, Wisconsin, 2335") (about . "Qui exercitation id excepteur est aute occaecat adipisicing minim ea minim et aliquip. Sit do elit incididunt non enim. Nulla adipisicing proident aliqua voluptate exercitation occaecat ipsum. Excepteur veniam culpa est duis veniam velit.\r\n") (registered . "2018-02-12T02:50:10 +07:00") (latitude . 77.201226) (longitude . 171.934019) (tags . ("fugiat" "officia" "laboris" "aliqua" "est" "sit" "et")) (friends . (#((id . 0) (name . "Henson Cantrell")) #((id . 1) (name . "Becky Becker")) #((id . 2) (name . "Jana Patton")))) (greeting . "Hello, Harris Dodson! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021744beae8fe9a6006f") (index . 274) (guid . "e2126942-68c6-4ffe-812b-17bfe310f497") (isActive . True) (balance . "$3,837.35") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "brown") (name . "Hattie Bray") (gender . "female") (company . "ZENTIX") (email . "hattiebray@zentix.com") (phone . "+1 (935) 472-3943") (address . "606 Willoughby Avenue, Weeksville, Idaho, 6200") (about . "Nisi elit pariatur aute aliquip anim ea do veniam. Pariatur laboris consectetur consectetur commodo sunt sint aliqua. Consectetur occaecat occaecat consequat deserunt sunt est nulla anim. Sint velit sint excepteur id veniam minim velit reprehenderit amet veniam labore. Consequat sint consectetur sint labore deserunt cillum qui pariatur fugiat tempor non dolor quis anim. Irure irure sint aliquip ex velit veniam.\r\n") (registered . "2015-08-13T04:15:34 +06:00") (latitude . 14.405823) (longitude . -35.426202) (tags . ("officia" "sunt" "laborum" "exercitation" "est" "exercitation" "amet")) (friends . (#((id . 0) (name . "Erin Abbott")) #((id . 1) (name . "Cline Garner")) #((id . 2) (name . "Freda Peters")))) (greeting . "Hello, Hattie Bray! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302175186596ee0682b23") (index . 275) (guid . "5e3fdf0c-7286-4329-8efd-37b4c3ca8995") (isActive . True) (balance . "$3,658.84") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Dominique Ramos") (gender . "female") (company . "ASSITIA") (email . "dominiqueramos@assitia.com") (phone . "+1 (999) 445-3260") (address . "177 Irving Place, Rushford, New Hampshire, 4769") (about . "Velit ut consectetur eu deserunt adipisicing labore enim ullamco laborum reprehenderit voluptate ad mollit non. Excepteur aute officia laborum occaecat quis reprehenderit laboris esse in veniam sit consequat labore. Minim et magna aute culpa tempor. Aliquip enim velit ea mollit pariatur veniam. Labore eiusmod occaecat tempor ex ex aute minim duis irure laboris ut. Consequat voluptate reprehenderit exercitation ipsum est labore laboris Lorem deserunt nostrud non do nostrud.\r\n") (registered . "2018-01-31T12:58:05 +07:00") (latitude . 49.513909) (longitude . -142.784232) (tags . ("officia" "labore" "nostrud" "id" "id" "irure" "ut")) (friends . (#((id . 0) (name . "Mckee Schneider")) #((id . 1) (name . "Payne Snow")) #((id . 2) (name . "Brittney Owen")))) (greeting . "Hello, Dominique Ramos! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217a8dd0f99f34c21ff") (index . 276) (guid . "6f3ff5db-5dbd-4ff5-b5c7-5b0c81f8a924") (isActive . True) (balance . "$3,233.05") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "brown") (name . "Small Burke") (gender . "male") (company . "MOREGANIC") (email . "smallburke@moreganic.com") (phone . "+1 (973) 401-3450") (address . "484 Malta Street, Saticoy, South Carolina, 4253") (about . "Sint sit quis irure deserunt ullamco mollit esse dolore esse minim anim pariatur. In velit dolore ut excepteur elit sit id et ex deserunt laboris. Qui laborum magna eu non voluptate. Veniam incididunt voluptate consequat est proident pariatur Lorem.\r\n") (registered . "2016-04-20T08:26:00 +06:00") (latitude . 38.823156) (longitude . -40.19345) (tags . ("qui" "laborum" "est" "proident" "velit" "ex" "culpa")) (friends . (#((id . 0) (name . "Ball Soto")) #((id . 1) (name . "Rosario Padilla")) #((id . 2) (name . "Fox Gross")))) (greeting . "Hello, Small Burke! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217c5a214b8c25925f2") (index . 277) (guid . "29cad537-5d6c-44a9-b1a8-ec62b3a28a6e") (isActive . False) (balance . "$2,606.05") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "blue") (name . "Joseph Greene") (gender . "male") (company . "AQUAFIRE") (email . "josephgreene@aquafire.com") (phone . "+1 (993) 437-3883") (address . "749 Lorraine Street, Ballico, Iowa, 6128") (about . "Cillum do duis elit laborum proident. Esse ea mollit consectetur in excepteur sit anim cillum. Sunt reprehenderit anim velit occaecat dolor. Deserunt aute fugiat do qui ipsum. Laboris reprehenderit minim cupidatat dolore. Irure magna Lorem commodo qui dolore aute duis incididunt aliqua aute cillum anim nostrud et.\r\n") (registered . "2015-08-30T04:46:45 +06:00") (latitude . 61.963362) (longitude . 63.152492) (tags . ("ex" "esse" "veniam" "veniam" "tempor" "aliqua" "sunt")) (friends . (#((id . 0) (name . "Lynn Huff")) #((id . 1) (name . "French Stuart")) #((id . 2) (name . "Daisy Gill")))) (greeting . "Hello, Joseph Greene! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021736731f91c9e83fb3") (index . 278) (guid . "ddbd77b6-b14a-4fea-a344-3d2d1a662776") (isActive . False) (balance . "$3,027.04") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "brown") (name . "Paul Romero") (gender . "male") (company . "ACCUPHARM") (email . "paulromero@accupharm.com") (phone . "+1 (856) 501-2100") (address . "660 Decatur Street, Konterra, California, 2137") (about . "Reprehenderit pariatur consectetur eiusmod Lorem cillum non labore aliqua sit eiusmod. Id aliqua Lorem laborum sunt irure dolor nostrud exercitation mollit nostrud voluptate velit cillum. Non nisi ex officia eu veniam proident commodo culpa sunt tempor ipsum eu. Dolor veniam officia quis ad ullamco magna qui laboris ad fugiat laborum. Nisi incididunt mollit duis aliquip ex Lorem sint proident. Ea velit commodo Lorem nulla cillum adipisicing qui enim enim ea consequat.\r\n") (registered . "2014-06-26T09:09:35 +06:00") (latitude . -8.761188) (longitude . 27.389377) (tags . ("id" "fugiat" "fugiat" "in" "veniam" "labore" "proident")) (friends . (#((id . 0) (name . "Perez Witt")) #((id . 1) (name . "Francesca Boone")) #((id . 2) (name . "Hannah Serrano")))) (greeting . "Hello, Paul Romero! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217f4ea156f0b66fee7") (index . 279) (guid . "4b297013-f350-4c5b-9ea6-8566100fe709") (isActive . False) (balance . "$1,779.63") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "green") (name . "Lester Jenkins") (gender . "male") (company . "STEELFAB") (email . "lesterjenkins@steelfab.com") (phone . "+1 (809) 542-3484") (address . "381 Harden Street, Greenbush, Wyoming, 3163") (about . "In Lorem anim nulla est veniam. Ea consectetur excepteur Lorem adipisicing non fugiat do sunt do irure. Anim labore enim nostrud excepteur ex consectetur deserunt officia. Officia nisi sit magna consectetur dolore nostrud irure sit veniam dolor eiusmod excepteur. Quis nisi ea laboris anim ut enim anim dolor sunt ex Lorem. Commodo elit ea pariatur officia duis veniam sint do eu et aute ad in sunt.\r\n") (registered . "2015-04-10T03:03:21 +06:00") (latitude . 64.761283) (longitude . 151.634176) (tags . ("sit" "qui" "ex" "exercitation" "magna" "do" "reprehenderit")) (friends . (#((id . 0) (name . "Rachael Deleon")) #((id . 1) (name . "Janet Bentley")) #((id . 2) (name . "Lacy Robertson")))) (greeting . "Hello, Lester Jenkins! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217fa115756ccd74fa8") (index . 280) (guid . "2bd08866-3cc3-4a09-b67d-58298a29d789") (isActive . True) (balance . "$1,652.68") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "blue") (name . "Trevino Frank") (gender . "male") (company . "FROSNEX") (email . "trevinofrank@frosnex.com") (phone . "+1 (885) 438-2396") (address . "150 Bokee Court, Trexlertown, Maryland, 1815") (about . "Id cillum nostrud magna eu ullamco qui consequat nulla dolore occaecat laboris. Voluptate officia consectetur officia cupidatat cillum occaecat non ad id. Magna enim eiusmod qui in aute adipisicing irure incididunt incididunt do deserunt nostrud ex. Ex sunt officia ex ipsum ut ullamco mollit minim minim. Aute tempor mollit consectetur reprehenderit nisi labore adipisicing.\r\n") (registered . "2016-06-26T12:14:47 +06:00") (latitude . 54.519658) (longitude . -39.935252) (tags . ("adipisicing" "anim" "non" "sint" "aliqua" "duis" "dolor")) (friends . (#((id . 0) (name . "Holcomb English")) #((id . 1) (name . "Jasmine Velasquez")) #((id . 2) (name . "Miranda Olson")))) (greeting . "Hello, Trevino Frank! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217d421518ddab7160a") (index . 281) (guid . "21a23651-fe60-43d3-bf3d-07d7f1b3cd5b") (isActive . False) (balance . "$3,607.87") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Rosemary Larson") (gender . "female") (company . "VALPREAL") (email . "rosemarylarson@valpreal.com") (phone . "+1 (829) 584-2964") (address . "672 Bartlett Street, Ribera, Louisiana, 2339") (about . "Ullamco irure et ut ullamco Lorem eiusmod pariatur sint. Pariatur consectetur sint sint occaecat ex laboris mollit. Ea est magna consectetur eiusmod cupidatat cupidatat est aute esse proident in in duis officia. Laboris cillum cupidatat nostrud sit anim enim. Est ad excepteur elit qui ullamco aliqua exercitation. Quis ipsum minim ipsum id officia nostrud et in culpa voluptate sint cillum pariatur laboris.\r\n") (registered . "2015-09-10T06:24:07 +06:00") (latitude . 89.434426) (longitude . 16.429889) (tags . ("exercitation" "exercitation" "laborum" "et" "amet" "est" "labore")) (friends . (#((id . 0) (name . "Jenifer Warren")) #((id . 1) (name . "Bridget Ochoa")) #((id . 2) (name . "Morse Mcgowan")))) (greeting . "Hello, Rosemary Larson! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302176b8d6187e4aa33cc") (index . 282) (guid . "c363b6c6-181d-4e6e-9f69-4688c4d9d1e9") (isActive . True) (balance . "$3,032.51") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "green") (name . "Nancy Watts") (gender . "female") (company . "DUFLEX") (email . "nancywatts@duflex.com") (phone . "+1 (930) 447-2836") (address . "111 Gerritsen Avenue, Manila, Federated States Of Micronesia, 3086") (about . "Et ad officia quis proident culpa veniam ipsum eiusmod amet nostrud. Aliquip quis ex qui aute culpa non in proident sint ipsum quis do sit. Pariatur mollit pariatur eiusmod labore duis elit anim aliqua sit non. Velit minim excepteur mollit ipsum quis aliqua. Esse pariatur qui voluptate sunt ex proident dolore officia aliqua.\r\n") (registered . "2017-02-16T02:41:32 +07:00") (latitude . -69.36965) (longitude . -9.660549) (tags . ("sit" "excepteur" "sit" "sunt" "dolor" "nisi" "Lorem")) (friends . (#((id . 0) (name . "Annmarie Pena")) #((id . 1) (name . "Kathy Bush")) #((id . 2) (name . "Etta Gentry")))) (greeting . "Hello, Nancy Watts! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302179d827cd52d8d9de3") (index . 283) (guid . "ec167f56-aa27-4f7f-a640-6b47e5baaf56") (isActive . True) (balance . "$3,311.63") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "brown") (name . "Christy Velazquez") (gender . "female") (company . "DEVILTOE") (email . "christyvelazquez@deviltoe.com") (phone . "+1 (865) 479-3261") (address . "947 Greenwood Avenue, Thermal, Pennsylvania, 9421") (about . "Commodo culpa pariatur anim sint labore ea. Qui quis mollit anim officia qui laborum tempor officia magna. Ut qui magna occaecat eu sint aute laborum aliquip eiusmod deserunt.\r\n") (registered . "2016-03-26T03:35:35 +06:00") (latitude . 72.018414) (longitude . 4.200861) (tags . ("dolore" "officia" "enim" "velit" "fugiat" "qui" "minim")) (friends . (#((id . 0) (name . "Hopper Turner")) #((id . 1) (name . "Spencer Cole")) #((id . 2) (name . "Nola Rodriguez")))) (greeting . "Hello, Christy Velazquez! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217708ffd13e566b468") (index . 284) (guid . "bb0a8b6c-bf2f-4490-a9bb-9b2de6a36c7e") (isActive . False) (balance . "$3,265.80") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "brown") (name . "York Crosby") (gender . "male") (company . "FIREWAX") (email . "yorkcrosby@firewax.com") (phone . "+1 (912) 471-3010") (address . "954 Milford Street, Brookfield, Vermont, 938") (about . "Consectetur Lorem eiusmod sint minim in nostrud. Ad nostrud magna ullamco elit aliqua duis exercitation consequat sit proident eiusmod ut eiusmod. Labore est officia sint culpa cupidatat tempor fugiat pariatur occaecat do amet sit esse enim. Minim officia adipisicing dolore do exercitation aliquip voluptate ad eiusmod tempor excepteur amet qui anim. Velit exercitation aute culpa exercitation magna do pariatur enim.\r\n") (registered . "2014-11-23T06:38:00 +07:00") (latitude . 11.684427) (longitude . 102.195701) (tags . ("Lorem" "nostrud" "et" "ex" "ipsum" "magna" "irure")) (friends . (#((id . 0) (name . "Ruby Fischer")) #((id . 1) (name . "Rae Mcfarland")) #((id . 2) (name . "Chang Pratt")))) (greeting . "Hello, York Crosby! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302179875e2305bc98181") (index . 285) (guid . "a1ad1c3d-e6b2-44e0-97fd-6df17658aab8") (isActive . True) (balance . "$3,399.32") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "blue") (name . "Concepcion Greer") (gender . "female") (company . "OULU") (email . "concepciongreer@oulu.com") (phone . "+1 (998) 568-3471") (address . "691 Senator Street, Graniteville, Maine, 3194") (about . "Nisi ad in anim ad. Proident adipisicing fugiat cillum non voluptate veniam magna deserunt exercitation ullamco irure esse aliqua. Velit in quis ipsum eu ut enim velit dolore in veniam eu tempor. Ex esse nisi tempor veniam cillum mollit exercitation veniam. In laboris sunt do mollit elit in elit anim commodo sint incididunt minim. Ullamco deserunt sunt duis Lorem fugiat velit pariatur. Aliquip sit enim deserunt excepteur exercitation amet labore veniam incididunt commodo velit nulla sint esse.\r\n") (registered . "2014-12-18T12:21:51 +07:00") (latitude . -14.507135) (longitude . 111.952642) (tags . ("Lorem" "deserunt" "pariatur" "adipisicing" "sint" "consectetur" "consequat")) (friends . (#((id . 0) (name . "Janis Leach")) #((id . 1) (name . "Johnson Montgomery")) #((id . 2) (name . "Ola Hartman")))) (greeting . "Hello, Concepcion Greer! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217e8c458450a83c143") (index . 286) (guid . "331e5b4f-e7c2-4230-acc2-8b035cf03ba9") (isActive . False) (balance . "$3,169.46") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "green") (name . "Walker Peck") (gender . "male") (company . "AQUAMATE") (email . "walkerpeck@aquamate.com") (phone . "+1 (932) 408-2930") (address . "337 Bartlett Place, Sidman, Alaska, 3428") (about . "Eu duis proident deserunt proident cupidatat nisi incididunt dolor anim. Id non cillum laboris elit nisi eiusmod id amet ex incididunt occaecat proident commodo et. Anim pariatur enim quis nisi. Proident adipisicing qui excepteur ad cupidatat est quis minim laborum velit exercitation. Minim proident eiusmod tempor duis esse est minim deserunt enim.\r\n") (registered . "2016-01-06T02:58:51 +07:00") (latitude . 49.681812) (longitude . 18.150455) (tags . ("dolore" "ipsum" "nostrud" "minim" "laboris" "laborum" "ea")) (friends . (#((id . 0) (name . "Lorie Woodard")) #((id . 1) (name . "Lenora Meyer")) #((id . 2) (name . "Greene Lyons")))) (greeting . "Hello, Walker Peck! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302179b6c059f97b09862") (index . 287) (guid . "c7a59d1a-209f-4eaa-9508-a106a33b608f") (isActive . True) (balance . "$2,063.40") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "brown") (name . "Emily Ingram") (gender . "female") (company . "MOTOVATE") (email . "emilyingram@motovate.com") (phone . "+1 (973) 554-3748") (address . "544 Forrest Street, Tecolotito, Palau, 2074") (about . "Laborum ipsum consectetur sunt eiusmod enim nisi reprehenderit laboris aliquip tempor dolor. Veniam et fugiat deserunt laboris. Aute non officia ea dolor sint duis. Excepteur consequat do aliqua laboris elit cillum duis consectetur.\r\n") (registered . "2017-11-20T09:28:05 +07:00") (latitude . -7.379225) (longitude . 26.115567) (tags . ("elit" "nulla" "est" "esse" "sit" "occaecat" "excepteur")) (friends . (#((id . 0) (name . "Callie Barker")) #((id . 1) (name . "Jolene Barr")) #((id . 2) (name . "Caldwell Anthony")))) (greeting . "Hello, Emily Ingram! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217fc7b6ef945a20dfd") (index . 288) (guid . "17909496-4efa-4a47-9224-5a2d4d81e2f4") (isActive . False) (balance . "$3,000.30") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "brown") (name . "Cristina Pacheco") (gender . "female") (company . "KEENGEN") (email . "cristinapacheco@keengen.com") (phone . "+1 (828) 567-2379") (address . "374 Kiely Place, Romeville, Arkansas, 931") (about . "Deserunt anim nulla mollit ipsum minim est esse do esse deserunt aliqua incididunt aliquip esse. Deserunt duis nulla reprehenderit ex. Est est magna duis minim ut ex ullamco officia officia cupidatat reprehenderit. Non mollit ipsum mollit est deserunt Lorem cillum exercitation. Mollit labore fugiat non veniam pariatur ut ut id labore et magna anim.\r\n") (registered . "2016-07-23T09:51:43 +06:00") (latitude . 29.64614) (longitude . 2.351274) (tags . ("ipsum" "quis" "aliquip" "est" "qui" "laboris" "qui")) (friends . (#((id . 0) (name . "Nita Valentine")) #((id . 1) (name . "Natalie Mckenzie")) #((id . 2) (name . "Berger Chang")))) (greeting . "Hello, Cristina Pacheco! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302174476922f467bca32") (index . 289) (guid . "558b2e7c-ce32-459d-a354-29ac7b913709") (isActive . True) (balance . "$1,306.10") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "green") (name . "Karyn Lloyd") (gender . "female") (company . "ENERFORCE") (email . "karynlloyd@enerforce.com") (phone . "+1 (918) 580-3502") (address . "165 Kensington Walk, Norwood, Florida, 1831") (about . "Aliqua deserunt aliqua velit in proident occaecat dolore Lorem aute sit. Voluptate nostrud duis cupidatat quis nostrud culpa anim officia et voluptate sit consectetur voluptate. Cupidatat ipsum nulla incididunt enim pariatur dolor esse. Consequat magna exercitation non do officia do. Culpa ullamco ut velit qui esse cupidatat laboris aute consectetur tempor laboris. Enim quis elit irure consequat eu aliqua. Lorem nostrud laboris cupidatat occaecat ad veniam ea anim.\r\n") (registered . "2016-01-27T10:24:09 +07:00") (latitude . 84.740091) (longitude . 8.289095) (tags . ("velit" "ea" "nulla" "laboris" "tempor" "consequat" "pariatur")) (friends . (#((id . 0) (name . "Michele Estes")) #((id . 1) (name . "Fleming Goodman")) #((id . 2) (name . "Marshall Rivers")))) (greeting . "Hello, Karyn Lloyd! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021794500d51b7e24c17") (index . 290) (guid . "b0e831bf-3241-4d2a-8571-968902c216ca") (isActive . True) (balance . "$3,132.58") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "blue") (name . "Tamara Sparks") (gender . "female") (company . "SKYBOLD") (email . "tamarasparks@skybold.com") (phone . "+1 (960) 514-2297") (address . "837 Wolf Place, Montura, Puerto Rico, 696") (about . "Ea do dolore cillum magna elit velit deserunt sunt Lorem duis culpa sint ea incididunt. Ad duis velit in aliqua pariatur in amet aliquip ullamco qui enim. Quis labore commodo officia dolor Lorem sunt sunt occaecat eiusmod duis dolore. Minim cillum ea velit commodo velit aute et mollit commodo deserunt. Dolor proident exercitation commodo sunt et pariatur duis consectetur dolore. Sint tempor sunt Lorem aute.\r\n") (registered . "2016-12-21T02:53:44 +07:00") (latitude . -6.61387) (longitude . 97.632146) (tags . ("eiusmod" "fugiat" "deserunt" "deserunt" "dolore" "esse" "eiusmod")) (friends . (#((id . 0) (name . "Patel Bowen")) #((id . 1) (name . "Kristy Henson")) #((id . 2) (name . "Rocha Cooper")))) (greeting . "Hello, Tamara Sparks! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217cec6c523b8541c40") (index . 291) (guid . "946ea382-7f46-4d88-b568-909de0728e72") (isActive . False) (balance . "$3,312.96") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "green") (name . "Horton Ferguson") (gender . "male") (company . "INTRADISK") (email . "hortonferguson@intradisk.com") (phone . "+1 (974) 443-3153") (address . "800 River Street, Caspar, Hawaii, 3328") (about . "Do veniam dolor dolore non ut non dolor aute exercitation dolor anim aliquip ut sit. Esse excepteur laboris voluptate excepteur. Mollit laborum consequat dolor aliquip eu incididunt eu culpa adipisicing.\r\n") (registered . "2016-06-24T10:01:57 +06:00") (latitude . -21.451964) (longitude . 34.323958) (tags . ("anim" "officia" "incididunt" "ut" "non" "officia" "enim")) (friends . (#((id . 0) (name . "Shannon Mueller")) #((id . 1) (name . "Jeannie Carver")) #((id . 2) (name . "Cross Hays")))) (greeting . "Hello, Horton Ferguson! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302176cda5b79656a53f2") (index . 292) (guid . "0e79c71e-b7bb-4f66-9e6a-e06539a791a0") (isActive . True) (balance . "$3,908.49") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "brown") (name . "Marisol Vega") (gender . "female") (company . "ELENTRIX") (email . "marisolvega@elentrix.com") (phone . "+1 (873) 420-3769") (address . "608 Ainslie Street, Wilmington, American Samoa, 9729") (about . "Magna consectetur consectetur sint irure ex. Ex esse esse eu ipsum ea nisi do aliqua sit ex. Esse id aliquip amet ex minim cupidatat nisi adipisicing eiusmod velit adipisicing sit.\r\n") (registered . "2014-07-02T03:17:20 +06:00") (latitude . 50.40546) (longitude . 105.261626) (tags . ("eiusmod" "aliquip" "pariatur" "consectetur" "Lorem" "nostrud" "nostrud")) (friends . (#((id . 0) (name . "Chen Rosales")) #((id . 1) (name . "Maddox Fleming")) #((id . 2) (name . "Leslie Park")))) (greeting . "Hello, Marisol Vega! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302175e2b78d8f9583c95") (index . 293) (guid . "a6498167-49d1-4881-b87b-256136ca87f2") (isActive . True) (balance . "$1,812.64") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Callahan Hunter") (gender . "male") (company . "ENTOGROK") (email . "callahanhunter@entogrok.com") (phone . "+1 (828) 492-2396") (address . "858 Colonial Road, Adelino, Indiana, 9681") (about . "Nulla est occaecat duis eu ea nostrud reprehenderit culpa quis ea minim qui culpa velit. Tempor nostrud occaecat ad eiusmod reprehenderit sit eiusmod irure. Enim voluptate amet anim mollit nulla esse adipisicing minim aliquip ex.\r\n") (registered . "2016-10-01T04:31:26 +06:00") (latitude . -39.764934) (longitude . -153.442723) (tags . ("veniam" "nostrud" "aute" "culpa" "consectetur" "magna" "id")) (friends . (#((id . 0) (name . "Ortiz Schwartz")) #((id . 1) (name . "Dolly Lancaster")) #((id . 2) (name . "Meagan Benson")))) (greeting . "Hello, Callahan Hunter! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302176606fdb4b54ef148") (index . 294) (guid . "77353e08-9c63-4831-a260-0fc946705f46") (isActive . False) (balance . "$1,989.40") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "blue") (name . "Alexander Carson") (gender . "male") (company . "DEMINIMUM") (email . "alexandercarson@deminimum.com") (phone . "+1 (818) 479-2579") (address . "876 Hubbard Street, Tolu, Missouri, 8246") (about . "Ad labore sunt anim aliquip. Aute eu cillum nostrud officia non laborum est consequat tempor reprehenderit. Aute anim ex anim in deserunt culpa non culpa ad exercitation eu laborum. Elit ea reprehenderit magna aute incididunt laborum magna sint sint et pariatur minim officia. Ut enim in ad dolore voluptate laboris tempor eiusmod et officia quis do deserunt.\r\n") (registered . "2014-12-26T02:46:39 +07:00") (latitude . 15.610963) (longitude . -127.148798) (tags . ("cupidatat" "veniam" "veniam" "ex" "laboris" "enim" "magna")) (friends . (#((id . 0) (name . "Daniels Riggs")) #((id . 1) (name . "Candace Webster")) #((id . 2) (name . "Carpenter Oneill")))) (greeting . "Hello, Alexander Carson! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217d5891eb0d88112b4") (index . 295) (guid . "7a709012-fda6-470a-8a40-57110f535a52") (isActive . False) (balance . "$2,903.59") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "blue") (name . "Dawson Dudley") (gender . "male") (company . "QUONK") (email . "dawsondudley@quonk.com") (phone . "+1 (939) 400-3252") (address . "508 Anchorage Place, Dowling, Guam, 983") (about . "Eiusmod exercitation dolor dolor aliquip elit do ea qui aliqua aliquip. Id laborum reprehenderit aute adipisicing nulla dolor laboris. Ipsum cupidatat commodo duis nulla veniam et cupidatat deserunt do laborum sint irure exercitation non. Cupidatat est cillum ut incididunt. Velit proident culpa laboris culpa minim fugiat laborum ullamco ad fugiat.\r\n") (registered . "2018-03-03T01:53:41 +07:00") (latitude . -32.890724) (longitude . 157.875451) (tags . ("eu" "ea" "labore" "veniam" "eu" "esse" "qui")) (friends . (#((id . 0) (name . "Casandra Maynard")) #((id . 1) (name . "Garrett Osborn")) #((id . 2) (name . "Burch Clemons")))) (greeting . "Hello, Dawson Dudley! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217d2d750963c0882f6") (index . 296) (guid . "34af6c9d-0eba-4d6c-a874-0bf7ce2275f0") (isActive . True) (balance . "$2,528.71") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "blue") (name . "Thelma Dennis") (gender . "female") (company . "PROVIDCO") (email . "thelmadennis@providco.com") (phone . "+1 (823) 598-3733") (address . "909 Ridgecrest Terrace, Berlin, Minnesota, 1700") (about . "Incididunt Lorem amet dolore adipisicing officia voluptate consectetur cupidatat. Id qui tempor dolor pariatur Lorem irure incididunt ea. Ea sint id sit elit sunt Lorem consectetur minim Lorem ipsum proident. Anim id veniam id cupidatat eiusmod commodo ipsum est dolore reprehenderit in. Exercitation est laboris cillum pariatur sint aliqua.\r\n") (registered . "2017-11-19T01:14:48 +07:00") (latitude . 0.975881) (longitude . 117.74463) (tags . ("duis" "ad" "est" "excepteur" "dolor" "culpa" "voluptate")) (friends . (#((id . 0) (name . "Espinoza Newman")) #((id . 1) (name . "Nichols Michael")) #((id . 2) (name . "Vicky Barnes")))) (greeting . "Hello, Thelma Dennis! You have 1 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217232b0a2bda130567") (index . 297) (guid . "9206f527-9d6d-4c79-867f-ee757a407b10") (isActive . True) (balance . "$1,519.16") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "blue") (name . "Hall Morrow") (gender . "male") (company . "AMTAS") (email . "hallmorrow@amtas.com") (phone . "+1 (978) 407-3256") (address . "888 Billings Place, Hardyville, Delaware, 5545") (about . "Ullamco ipsum est nostrud aliquip incididunt eiusmod elit et est. Mollit laborum quis quis magna tempor irure Lorem cupidatat eiusmod ipsum laboris. Et sint officia ut sunt eu esse labore nisi nulla sint sunt Lorem. Esse sunt laboris minim Lorem duis ullamco tempor occaecat. Exercitation duis nisi do incididunt voluptate voluptate ullamco veniam consequat dolor ullamco consectetur excepteur id.\r\n") (registered . "2015-01-06T06:47:45 +07:00") (latitude . -29.675384) (longitude . 29.994113) (tags . ("nulla" "nulla" "excepteur" "non" "nulla" "pariatur" "consequat")) (friends . (#((id . 0) (name . "Olga Simon")) #((id . 1) (name . "Jacqueline Petersen")) #((id . 2) (name . "Waller Nixon")))) (greeting . "Hello, Hall Morrow! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302179b62dd46df0cf70e") (index . 298) (guid . "7ac77ef2-ae97-46bb-b50b-082b13ad0e1f") (isActive . True) (balance . "$3,716.17") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "blue") (name . "Ross Williamson") (gender . "male") (company . "QUINEX") (email . "rosswilliamson@quinex.com") (phone . "+1 (860) 561-3065") (address . "553 Elizabeth Place, Coalmont, Kansas, 5017") (about . "Veniam minim esse qui velit labore excepteur fugiat est eiusmod officia aliquip. In aliquip irure quis sunt quis magna reprehenderit laborum. Nulla ex laborum culpa nostrud magna deserunt dolor consectetur proident. Do Lorem ullamco incididunt est pariatur et. Tempor minim nostrud ipsum cupidatat consectetur.\r\n") (registered . "2015-09-15T07:37:38 +06:00") (latitude . -40.286994) (longitude . -66.116128) (tags . ("ullamco" "amet" "officia" "culpa" "quis" "occaecat" "ea")) (friends . (#((id . 0) (name . "Rosanne Shaffer")) #((id . 1) (name . "Mabel Mcclure")) #((id . 2) (name . "Holly Lang")))) (greeting . "Hello, Ross Williamson! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217395c18f4a3989f0b") (index . 299) (guid . "b46e10e2-3efe-4f79-9dfe-1bcf85cd5c38") (isActive . True) (balance . "$3,312.26") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "brown") (name . "England Cardenas") (gender . "male") (company . "MAZUDA") (email . "englandcardenas@mazuda.com") (phone . "+1 (850) 437-3955") (address . "533 Rogers Avenue, Johnsonburg, Washington, 5745") (about . "Cillum laboris labore Lorem voluptate nostrud excepteur adipisicing. Culpa ex velit et sint duis id tempor consectetur sint excepteur laboris anim deserunt sunt. In culpa veniam ipsum aliqua mollit dolore aliquip nisi. Cupidatat commodo occaecat dolore veniam duis non quis ex esse mollit mollit. Non pariatur proident cillum officia fugiat sit fugiat labore deserunt laboris reprehenderit id.\r\n") (registered . "2016-09-02T02:21:02 +06:00") (latitude . -72.479218) (longitude . 4.261651) (tags . ("amet" "exercitation" "id" "aliquip" "Lorem" "magna" "excepteur")) (friends . (#((id . 0) (name . "Ortega Donovan")) #((id . 1) (name . "Julia Melton")) #((id . 2) (name . "Lee Nolan")))) (greeting . "Hello, England Cardenas! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217e0c186230cc9b4db") (index . 300) (guid . "98d542f0-9af8-4f44-9dfc-48b70e8adfc6") (isActive . True) (balance . "$3,417.65") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "green") (name . "Collier Anderson") (gender . "male") (company . "COGNICODE") (email . "collieranderson@cognicode.com") (phone . "+1 (946) 545-2969") (address . "918 Kermit Place, Loyalhanna, Oklahoma, 3828") (about . "Do elit aliquip elit qui deserunt sunt minim cupidatat incididunt enim consequat incididunt. Do sint excepteur sit culpa esse. Elit Lorem voluptate ipsum culpa eiusmod sit.\r\n") (registered . "2014-02-20T11:19:52 +07:00") (latitude . -47.291255) (longitude . -117.71076) (tags . ("velit" "eu" "officia" "voluptate" "veniam" "duis" "incididunt")) (friends . (#((id . 0) (name . "Lara Graham")) #((id . 1) (name . "Neva Campbell")) #((id . 2) (name . "Carolyn Swanson")))) (greeting . "Hello, Collier Anderson! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217a85d20648701b95e") (index . 301) (guid . "da571473-994d-4910-b3b0-00736427fb8d") (isActive . False) (balance . "$2,500.34") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "green") (name . "Barlow Glenn") (gender . "male") (company . "REALMO") (email . "barlowglenn@realmo.com") (phone . "+1 (825) 462-3175") (address . "314 George Street, Savannah, Kentucky, 6598") (about . "Occaecat proident ullamco do voluptate id nisi ex esse adipisicing in officia incididunt. Enim consequat sit fugiat anim ex ipsum ipsum exercitation minim laborum. In ad duis nulla sit eu veniam deserunt id nostrud. Dolore elit anim nisi enim id sint. Aliqua occaecat commodo reprehenderit fugiat laboris pariatur. Enim proident ipsum irure commodo deserunt duis ad in incididunt. Ea in qui et mollit consectetur Lorem mollit quis.\r\n") (registered . "2016-05-04T08:26:14 +06:00") (latitude . 53.960833) (longitude . -79.559188) (tags . ("fugiat" "ad" "aliquip" "voluptate" "exercitation" "aliquip" "elit")) (friends . (#((id . 0) (name . "Vargas Ford")) #((id . 1) (name . "Buckley Burns")) #((id . 2) (name . "Kate Glover")))) (greeting . "Hello, Barlow Glenn! You have 8 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217af85afc81003df71") (index . 302) (guid . "4344062f-e314-40e5-b99c-966f783048ad") (isActive . True) (balance . "$3,419.21") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "brown") (name . "Frankie Bailey") (gender . "female") (company . "PHEAST") (email . "frankiebailey@pheast.com") (phone . "+1 (955) 591-2153") (address . "238 Lafayette Walk, Jennings, Alabama, 8899") (about . "Cillum et nostrud cillum incididunt do cupidatat cillum laboris ipsum ipsum enim. Qui minim cillum duis irure in anim esse ipsum cupidatat nostrud anim reprehenderit. Irure ut exercitation aliqua enim exercitation nulla sunt ullamco nulla velit. Culpa dolore consectetur qui ad excepteur magna elit occaecat elit.\r\n") (registered . "2014-08-13T01:52:24 +06:00") (latitude . 2.11812) (longitude . 0.181697) (tags . ("amet" "anim" "consectetur" "nisi" "dolor" "amet" "irure")) (friends . (#((id . 0) (name . "Shelly Meadows")) #((id . 1) (name . "William Flowers")) #((id . 2) (name . "Cox Duran")))) (greeting . "Hello, Frankie Bailey! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302175ef314aafda266a8") (index . 303) (guid . "fd1c0e3a-ef39-4d11-91d1-96a251849015") (isActive . True) (balance . "$3,245.03") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "green") (name . "Gracie Barton") (gender . "female") (company . "STOCKPOST") (email . "graciebarton@stockpost.com") (phone . "+1 (808) 499-3176") (address . "689 National Drive, Harrodsburg, West Virginia, 6919") (about . "Eu labore do sunt anim. Duis duis dolore adipisicing cillum magna ullamco do. Magna nulla Lorem ipsum consectetur amet excepteur. Nulla proident magna amet laborum qui. Velit et ea duis magna occaecat velit. Aliquip cupidatat cupidatat cupidatat ad deserunt amet reprehenderit incididunt non labore laboris. Fugiat laborum occaecat Lorem commodo excepteur nostrud nulla tempor est.\r\n") (registered . "2015-06-21T03:46:07 +06:00") (latitude . -43.353746) (longitude . 116.480383) (tags . ("sit" "in" "cillum" "tempor" "enim" "deserunt" "veniam")) (friends . (#((id . 0) (name . "Anna Higgins")) #((id . 1) (name . "Flores Drake")) #((id . 2) (name . "Lang Gomez")))) (greeting . "Hello, Gracie Barton! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217e4fe54337dc833c3") (index . 304) (guid . "ae44c940-236d-41ed-ab11-7501bc6a0945") (isActive . True) (balance . "$3,390.77") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "green") (name . "Contreras Burks") (gender . "male") (company . "XYMONK") (email . "contrerasburks@xymonk.com") (phone . "+1 (888) 426-3478") (address . "680 Boerum Place, Tooleville, Ohio, 7404") (about . "Deserunt cupidatat tempor ullamco in labore veniam ad consectetur laborum nulla do quis qui proident. Id reprehenderit pariatur magna nostrud dolor ullamco aliqua duis amet quis. Aute voluptate incididunt culpa laborum nostrud. Veniam aliqua excepteur amet anim deserunt incididunt.\r\n") (registered . "2015-06-09T07:39:46 +06:00") (latitude . -11.833078) (longitude . -19.992345) (tags . ("ipsum" "nostrud" "id" "laboris" "ut" "cillum" "excepteur")) (friends . (#((id . 0) (name . "Sharpe Marsh")) #((id . 1) (name . "Beck Davidson")) #((id . 2) (name . "Cheri Rivas")))) (greeting . "Hello, Contreras Burks! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217c3a074a5c70459eb") (index . 305) (guid . "cfa709c3-967c-480b-8c06-4190dcb9692f") (isActive . True) (balance . "$2,176.71") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "brown") (name . "Austin Stevenson") (gender . "male") (company . "EYERIS") (email . "austinstevenson@eyeris.com") (phone . "+1 (956) 542-2917") (address . "997 Bijou Avenue, Belva, Connecticut, 5786") (about . "Do ex est amet non quis eiusmod eu dolore aliquip ullamco excepteur pariatur. Enim velit sunt qui velit officia veniam laboris officia magna esse minim do occaecat laborum. Do reprehenderit minim eiusmod ut cillum velit amet ea. Aute dolore aute eiusmod ut consectetur nulla sunt. Enim laborum ex velit culpa reprehenderit in ex ullamco reprehenderit ad. Anim officia deserunt dolore dolor velit ipsum laboris dolor ipsum ea eiusmod nulla occaecat fugiat.\r\n") (registered . "2014-06-30T10:48:10 +06:00") (latitude . -75.581418) (longitude . 42.07971) (tags . ("tempor" "nostrud" "reprehenderit" "ea" "dolor" "officia" "excepteur")) (friends . (#((id . 0) (name . "Rowena Hull")) #((id . 1) (name . "Obrien Barron")) #((id . 2) (name . "Hayden Walsh")))) (greeting . "Hello, Austin Stevenson! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021764e1cf262caaaa50") (index . 306) (guid . "b9849458-7125-4630-83a6-e038977637e0") (isActive . True) (balance . "$3,591.73") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "brown") (name . "Rita Welch") (gender . "female") (company . "GINKOGENE") (email . "ritawelch@ginkogene.com") (phone . "+1 (820) 481-3129") (address . "935 Belmont Avenue, Marienthal, North Dakota, 2048") (about . "Nisi dolore aliqua cupidatat proident irure. Laboris tempor id irure commodo sit in dolor id officia adipisicing ullamco incididunt. Dolore ea enim deserunt aliquip. Exercitation eiusmod adipisicing amet tempor tempor ut incididunt elit sint labore.\r\n") (registered . "2017-09-10T10:34:25 +06:00") (latitude . 56.777097) (longitude . 158.22072) (tags . ("amet" "proident" "magna" "pariatur" "eu" "sit" "labore")) (friends . (#((id . 0) (name . "Myrna Klein")) #((id . 1) (name . "Hillary Wilder")) #((id . 2) (name . "Angeline Manning")))) (greeting . "Hello, Rita Welch! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302175ed88dc1c434262a") (index . 307) (guid . "75b1f953-8255-45f2-b684-2263dbfb431b") (isActive . False) (balance . "$3,997.21") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Fields Murphy") (gender . "male") (company . "INSURON") (email . "fieldsmurphy@insuron.com") (phone . "+1 (932) 506-2905") (address . "864 Oak Street, Thornport, Mississippi, 3083") (about . "Enim ullamco aliquip excepteur est. Culpa consequat dolor reprehenderit est. Nostrud non id ad magna officia. Anim aliqua velit dolore minim deserunt. Dolor et ad fugiat deserunt dolor proident ad eiusmod laboris esse. Deserunt Lorem mollit aute consectetur deserunt deserunt quis.\r\n") (registered . "2016-11-22T05:47:49 +07:00") (latitude . 10.730687) (longitude . 108.476437) (tags . ("proident" "Lorem" "aute" "minim" "id" "cupidatat" "ea")) (friends . (#((id . 0) (name . "Rachel Alvarado")) #((id . 1) (name . "Rosie Singleton")) #((id . 2) (name . "Hurst Wyatt")))) (greeting . "Hello, Fields Murphy! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302171eda48bd7679df44") (index . 308) (guid . "f66eb461-fff6-43e2-a3a0-2075e99d66f7") (isActive . True) (balance . "$1,457.40") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "brown") (name . "Munoz Larsen") (gender . "male") (company . "TRIBALOG") (email . "munozlarsen@tribalog.com") (phone . "+1 (804) 476-3012") (address . "891 Monitor Street, Riverton, New York, 8458") (about . "Exercitation nulla ipsum ut culpa laboris esse ex enim exercitation eiusmod. Voluptate eu et nisi sint ullamco eiusmod velit in quis. Excepteur amet adipisicing mollit ullamco sit duis reprehenderit fugiat ad aute nulla.\r\n") (registered . "2015-12-21T08:31:14 +07:00") (latitude . 53.703576) (longitude . 99.671126) (tags . ("ut" "nisi" "commodo" "elit" "velit" "dolore" "commodo")) (friends . (#((id . 0) (name . "Mendez Avila")) #((id . 1) (name . "Lucille Calderon")) #((id . 2) (name . "Wise Wood")))) (greeting . "Hello, Munoz Larsen! You have 1 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302175545b805cc6c4653") (index . 309) (guid . "1bf3b902-ad67-4f2c-bfa2-aed78b1d6515") (isActive . True) (balance . "$3,323.97") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "blue") (name . "Janie Dale") (gender . "female") (company . "UPLINX") (email . "janiedale@uplinx.com") (phone . "+1 (849) 540-2322") (address . "143 Hull Street, Drytown, Oregon, 8340") (about . "Deserunt commodo qui cupidatat ea elit sit quis. Sit deserunt tempor duis duis adipisicing reprehenderit occaecat sint minim laboris laboris excepteur anim. Magna cupidatat excepteur aute culpa cupidatat in Lorem velit. Officia cillum sunt qui enim dolore culpa. Mollit reprehenderit reprehenderit ad consectetur dolore nisi magna sint aliqua nulla aliquip nisi.\r\n") (registered . "2015-03-25T07:12:24 +06:00") (latitude . -14.921606) (longitude . 172.102949) (tags . ("pariatur" "id" "deserunt" "nulla" "enim" "eu" "do")) (friends . (#((id . 0) (name . "Lowe Hurley")) #((id . 1) (name . "Oliver Mclean")) #((id . 2) (name . "Pearl Shaw")))) (greeting . "Hello, Janie Dale! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302176bcb2d0249bce013") (index . 310) (guid . "b24cd704-0591-459f-9e16-84b6ee536574") (isActive . False) (balance . "$1,696.23") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "green") (name . "Sara Nichols") (gender . "female") (company . "PORTALIS") (email . "saranichols@portalis.com") (phone . "+1 (964) 568-2535") (address . "689 Harkness Avenue, Swartzville, New Jersey, 2876") (about . "Proident deserunt minim mollit ad non cillum elit nostrud mollit. Magna minim id sint enim deserunt tempor nostrud et duis eiusmod proident. Irure enim nostrud qui Lorem duis eiusmod. Quis Lorem dolore labore anim aliqua culpa aute adipisicing sunt consectetur aute nostrud. Do consequat duis nisi cillum pariatur incididunt culpa do ullamco.\r\n") (registered . "2016-09-22T08:50:09 +06:00") (latitude . 47.949648) (longitude . -119.034294) (tags . ("dolore" "magna" "sint" "incididunt" "occaecat" "amet" "ad")) (friends . (#((id . 0) (name . "Mcintosh Combs")) #((id . 1) (name . "Mcdaniel Rodgers")) #((id . 2) (name . "Araceli Rowland")))) (greeting . "Hello, Sara Nichols! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021752a1665f1cd22070") (index . 311) (guid . "48a41dc3-742f-4d9e-9b4e-eb20fdd7725d") (isActive . False) (balance . "$3,307.97") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "blue") (name . "Mccray Bridges") (gender . "male") (company . "ENERSOL") (email . "mccraybridges@enersol.com") (phone . "+1 (917) 494-2435") (address . "982 Jerome Avenue, Urbana, Montana, 5972") (about . "Elit tempor tempor incididunt non excepteur. Cillum laboris id ex mollit veniam. Nisi cillum mollit dolore ea aliquip dolore ullamco pariatur sint ullamco aute ex laborum adipisicing.\r\n") (registered . "2014-08-11T07:51:08 +06:00") (latitude . -9.931882) (longitude . 150.838793) (tags . ("veniam" "eiusmod" "nisi" "amet" "voluptate" "ut" "enim")) (friends . (#((id . 0) (name . "Rose Jennings")) #((id . 1) (name . "Mae Bell")) #((id . 2) (name . "Atkins Mccullough")))) (greeting . "Hello, Mccray Bridges! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217d6b464538f810529") (index . 312) (guid . "f0d076a1-c406-4d1a-8348-969ddbe4e007") (isActive . True) (balance . "$1,190.29") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "blue") (name . "Daugherty Williams") (gender . "male") (company . "ROOFORIA") (email . "daughertywilliams@rooforia.com") (phone . "+1 (820) 526-3549") (address . "422 Tudor Terrace, Lowgap, Nevada, 3607") (about . "Qui voluptate commodo ipsum sit dolore dolore reprehenderit. Velit ullamco pariatur nisi fugiat esse consectetur est exercitation id. Adipisicing nostrud cillum commodo Lorem eu velit commodo velit id est.\r\n") (registered . "2014-07-21T08:26:30 +06:00") (latitude . 51.854181) (longitude . 89.597602) (tags . ("duis" "eu" "commodo" "ut" "pariatur" "ipsum" "proident")) (friends . (#((id . 0) (name . "Cora Nunez")) #((id . 1) (name . "Casey Rutledge")) #((id . 2) (name . "Flowers Noel")))) (greeting . "Hello, Daugherty Williams! You have 8 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217483d34f7fe59aef8") (index . 313) (guid . "d2376bd6-3d2a-4f60-b2e7-989f321e6d9f") (isActive . True) (balance . "$2,324.98") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "green") (name . "Liz Lane") (gender . "female") (company . "ISOLOGIA") (email . "lizlane@isologia.com") (phone . "+1 (887) 536-3120") (address . "552 Halleck Street, Blanford, Colorado, 1806") (about . "Commodo veniam eiusmod sit labore dolor pariatur dolore irure non. Ex velit minim Lorem aute ullamco officia irure voluptate aliqua consectetur ea Lorem eiusmod. Et eu officia anim sunt ipsum. Adipisicing sit cillum ipsum sint pariatur do nisi. Anim proident ex ipsum excepteur eiusmod velit pariatur est consectetur et. Exercitation consectetur exercitation amet et non minim culpa velit ut nostrud aliqua minim.\r\n") (registered . "2017-10-30T03:08:10 +06:00") (latitude . -30.801978) (longitude . -22.45657) (tags . ("Lorem" "eu" "et" "eiusmod" "ullamco" "officia" "ullamco")) (friends . (#((id . 0) (name . "Jodie Sloan")) #((id . 1) (name . "Harriett Barlow")) #((id . 2) (name . "Wyatt Carpenter")))) (greeting . "Hello, Liz Lane! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217dd1c8f544cd7cee1") (index . 314) (guid . "8578568b-0064-4b26-9ceb-2bd51503d65a") (isActive . False) (balance . "$1,779.64") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Dudley Browning") (gender . "male") (company . "COMTRACT") (email . "dudleybrowning@comtract.com") (phone . "+1 (867) 529-3643") (address . "529 Tehama Street, Northridge, New Mexico, 1257") (about . "Sit incididunt adipisicing qui sunt. Esse proident excepteur ipsum labore excepteur excepteur labore. Est fugiat officia occaecat nisi. Officia cillum laborum esse qui ex dolore ipsum ullamco aute consequat tempor.\r\n") (registered . "2016-12-16T07:44:05 +07:00") (latitude . -10.168976) (longitude . -161.014926) (tags . ("elit" "id" "aliquip" "consectetur" "veniam" "deserunt" "proident")) (friends . (#((id . 0) (name . "Karen Ayers")) #((id . 1) (name . "Slater Prince")) #((id . 2) (name . "Townsend Wilson")))) (greeting . "Hello, Dudley Browning! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217905bd24e62d2effb") (index . 315) (guid . "f687e7d7-2743-4ee5-81b6-0ab40c33c717") (isActive . False) (balance . "$1,176.31") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "green") (name . "Bush Mcintyre") (gender . "male") (company . "MUSIX") (email . "bushmcintyre@musix.com") (phone . "+1 (953) 561-3042") (address . "108 Williamsburg Street, Wacissa, Texas, 4124") (about . "Voluptate enim nostrud dolor exercitation cupidatat aliqua id sint non nulla. Nulla eiusmod minim ullamco consectetur. Anim nisi aute esse ullamco nostrud incididunt tempor cupidatat. Do consectetur est tempor eu enim veniam fugiat. Laboris culpa aliqua veniam exercitation consectetur Lorem. Duis ut in adipisicing velit reprehenderit ad. Sit excepteur irure voluptate laboris exercitation dolore consectetur.\r\n") (registered . "2014-09-24T04:09:40 +06:00") (latitude . -57.19905) (longitude . 99.296139) (tags . ("tempor" "ex" "velit" "ut" "et" "occaecat" "pariatur")) (friends . (#((id . 0) (name . "Stevens Aguilar")) #((id . 1) (name . "Clarissa Daniels")) #((id . 2) (name . "Sharron Rios")))) (greeting . "Hello, Bush Mcintyre! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217afa3133c7abbf841") (index . 316) (guid . "f4633218-61b0-483b-96d4-59dca0ae0403") (isActive . False) (balance . "$1,203.73") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "blue") (name . "Kim Nguyen") (gender . "female") (company . "VERAQ") (email . "kimnguyen@veraq.com") (phone . "+1 (923) 577-3166") (address . "566 Branton Street, Alleghenyville, North Carolina, 2871") (about . "Et cillum voluptate id enim ad voluptate ullamco amet esse dolore. Aute ea quis esse reprehenderit occaecat est dolor sunt dolor voluptate voluptate adipisicing. Fugiat excepteur non officia in dolor voluptate pariatur ipsum.\r\n") (registered . "2014-11-22T03:44:20 +07:00") (latitude . 32.860429) (longitude . 25.344046) (tags . ("duis" "dolore" "incididunt" "pariatur" "cillum" "quis" "veniam")) (friends . (#((id . 0) (name . "Charity Sellers")) #((id . 1) (name . "Calhoun Cain")) #((id . 2) (name . "Lula Mullen")))) (greeting . "Hello, Kim Nguyen! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217f6a54d96eae26098") (index . 317) (guid . "04100b8b-a464-455b-b602-c02c86d00b56") (isActive . True) (balance . "$3,264.34") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "brown") (name . "Acevedo Rich") (gender . "male") (company . "IMANT") (email . "acevedorich@imant.com") (phone . "+1 (945) 495-3311") (address . "796 Madeline Court, Lindcove, Nebraska, 2571") (about . "Cupidatat voluptate ut dolor ea. Elit pariatur ut ex adipisicing excepteur est sit fugiat ex quis elit. Cillum laboris est nostrud ea mollit laboris ullamco et. Tempor quis quis excepteur eiusmod eiusmod pariatur duis. Lorem do fugiat reprehenderit occaecat eu officia. Qui minim dolore ullamco minim aliquip. Velit sunt et fugiat non ullamco occaecat sit est non deserunt enim proident sunt.\r\n") (registered . "2017-07-07T12:57:13 +06:00") (latitude . 2.96896) (longitude . -122.765627) (tags . ("culpa" "irure" "ipsum" "tempor" "consectetur" "sit" "ea")) (friends . (#((id . 0) (name . "Brennan Wall")) #((id . 1) (name . "Susan Mosley")) #((id . 2) (name . "Antonia Rodriquez")))) (greeting . "Hello, Acevedo Rich! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302174fb5ab96efb8d6f4") (index . 318) (guid . "c658fa45-c856-4fc3-9998-8c9e6cee51d7") (isActive . False) (balance . "$1,074.24") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "green") (name . "Lina Tanner") (gender . "female") (company . "DADABASE") (email . "linatanner@dadabase.com") (phone . "+1 (906) 555-3521") (address . "693 Roosevelt Court, Healy, Tennessee, 5023") (about . "Veniam tempor eiusmod consectetur mollit elit adipisicing incididunt magna ex adipisicing. Reprehenderit culpa Lorem aliquip minim. Tempor nisi amet in eiusmod.\r\n") (registered . "2016-12-30T12:29:21 +07:00") (latitude . 78.507026) (longitude . 81.72912) (tags . ("do" "sint" "minim" "ad" "ad" "nisi" "sint")) (friends . (#((id . 0) (name . "Gilbert Moore")) #((id . 1) (name . "Riddle Cameron")) #((id . 2) (name . "Esther Norton")))) (greeting . "Hello, Lina Tanner! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021770e52625333a322b") (index . 319) (guid . "25861bb4-54dd-4530-bfb6-459edc2cdd3f") (isActive . False) (balance . "$2,568.77") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "green") (name . "Adrian Tran") (gender . "female") (company . "ANIXANG") (email . "adriantran@anixang.com") (phone . "+1 (891) 474-2698") (address . "239 Belvidere Street, Riegelwood, Utah, 7892") (about . "Veniam occaecat et enim fugiat labore duis duis ipsum. Non dolor duis in magna ut ut aliqua anim sunt esse do cillum. Dolore laborum dolore et in dolore eu tempor aliqua magna duis proident.\r\n") (registered . "2014-06-24T05:38:45 +06:00") (latitude . 39.149788) (longitude . -162.408247) (tags . ("duis" "ex" "ut" "enim" "quis" "aliquip" "excepteur")) (friends . (#((id . 0) (name . "Natasha Brewer")) #((id . 1) (name . "Shepard Nielsen")) #((id . 2) (name . "Bertie Harrell")))) (greeting . "Hello, Adrian Tran! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217a3d94e2e118e8a63") (index . 320) (guid . "21f47bd2-8eba-4eac-b3fd-f9bb334eb604") (isActive . True) (balance . "$3,004.89") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "blue") (name . "Mccoy Valdez") (gender . "male") (company . "ECLIPSENT") (email . "mccoyvaldez@eclipsent.com") (phone . "+1 (916) 593-2524") (address . "247 Rugby Road, Macdona, Marshall Islands, 3337") (about . "Consectetur eiusmod ullamco reprehenderit enim nulla minim eu laboris do. Mollit laboris amet officia ea. Cillum cillum non veniam incididunt in elit eiusmod veniam do non cillum pariatur. Ullamco do enim cupidatat tempor. Nulla ea non veniam anim. Nulla do laborum reprehenderit pariatur dolore Lorem sit magna aute. Quis elit aliquip ea laborum nostrud non ipsum commodo exercitation magna adipisicing.\r\n") (registered . "2014-06-26T12:15:12 +06:00") (latitude . -19.903069) (longitude . 149.789728) (tags . ("non" "duis" "deserunt" "id" "velit" "nostrud" "nostrud")) (friends . (#((id . 0) (name . "Chambers Hess")) #((id . 1) (name . "Anne Suarez")) #((id . 2) (name . "Baker Logan")))) (greeting . "Hello, Mccoy Valdez! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217283ab783a3dcc025") (index . 321) (guid . "d41d7e14-6cb9-49e8-b99f-2ce78a8074fd") (isActive . False) (balance . "$1,846.67") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "green") (name . "Melody Reyes") (gender . "female") (company . "OLYMPIX") (email . "melodyreyes@olympix.com") (phone . "+1 (817) 524-2191") (address . "275 Hawthorne Street, Finderne, Georgia, 837") (about . "Tempor cupidatat aliqua sint occaecat. Ea et laborum voluptate culpa id proident velit consectetur dolor sint tempor. Dolore anim dolor exercitation aliquip aliqua non culpa nisi aute aute ipsum magna elit ut. Non aliquip deserunt officia irure nisi commodo in eiusmod excepteur cupidatat magna duis do dolore. Et officia eiusmod veniam amet nostrud deserunt reprehenderit. Ullamco adipisicing enim irure ullamco duis reprehenderit aliquip minim et pariatur dolore. Nulla mollit est enim cillum voluptate eu ex.\r\n") (registered . "2017-10-25T11:57:28 +06:00") (latitude . 60.111896) (longitude . -83.015213) (tags . ("voluptate" "nostrud" "excepteur" "cillum" "officia" "voluptate" "labore")) (friends . (#((id . 0) (name . "Hays Joyner")) #((id . 1) (name . "Augusta Jones")) #((id . 2) (name . "Wilkerson Fulton")))) (greeting . "Hello, Melody Reyes! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021787e93e73e8af2524") (index . 322) (guid . "5eb8b970-87e0-4a9d-bddd-8fdd24ef3a54") (isActive . True) (balance . "$1,093.19") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Shari Mayo") (gender . "female") (company . "TRIPSCH") (email . "sharimayo@tripsch.com") (phone . "+1 (977) 467-3221") (address . "926 Dakota Place, Byrnedale, Massachusetts, 4603") (about . "Voluptate eiusmod ullamco irure ea sint. Quis culpa officia excepteur anim exercitation labore velit nulla mollit dolore reprehenderit do in ea. Magna sunt elit dolor voluptate esse quis enim nostrud labore excepteur pariatur amet. Qui deserunt consequat magna dolore amet qui et pariatur mollit.\r\n") (registered . "2015-02-19T07:03:13 +07:00") (latitude . -49.148491) (longitude . 71.945438) (tags . ("nostrud" "dolor" "aliqua" "eiusmod" "sunt" "elit" "aliqua")) (friends . (#((id . 0) (name . "Bryant Daugherty")) #((id . 1) (name . "Marsh Sims")) #((id . 2) (name . "Tracy Mcintosh")))) (greeting . "Hello, Shari Mayo! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217fb29c778997534ae") (index . 323) (guid . "3918b823-6cbe-4479-8191-bd60f9509c61") (isActive . False) (balance . "$3,139.34") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "blue") (name . "Lauren Townsend") (gender . "female") (company . "PEARLESSA") (email . "laurentownsend@pearlessa.com") (phone . "+1 (806) 463-3009") (address . "596 Albemarle Road, Westboro, Arizona, 2486") (about . "Pariatur est duis ut anim ad sunt ipsum ut veniam dolore amet enim qui id. Aliqua voluptate officia pariatur occaecat ipsum reprehenderit eu eiusmod consequat magna pariatur exercitation elit. Proident veniam consectetur Lorem magna culpa consectetur adipisicing enim ea pariatur nulla. Reprehenderit minim adipisicing nisi magna cupidatat laborum laboris est sint deserunt consectetur officia irure ipsum. Sit tempor nulla eiusmod est quis aute. Irure labore elit ut adipisicing exercitation.\r\n") (registered . "2017-10-15T12:42:54 +06:00") (latitude . -23.797096) (longitude . -134.475421) (tags . ("tempor" "aute" "adipisicing" "ea" "et" "excepteur" "nisi")) (friends . (#((id . 0) (name . "Luella Osborne")) #((id . 1) (name . "Battle Workman")) #((id . 2) (name . "Perkins Marquez")))) (greeting . "Hello, Lauren Townsend! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217a8355a5df6c1f4bc") (index . 324) (guid . "3397b336-bc55-49cc-9ce6-58931289228a") (isActive . True) (balance . "$2,674.07") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "brown") (name . "Noreen Everett") (gender . "female") (company . "MEGALL") (email . "noreeneverett@megall.com") (phone . "+1 (970) 432-3245") (address . "984 Hope Street, Worcester, District Of Columbia, 9446") (about . "Non adipisicing amet ex irure ex deserunt. Dolore exercitation velit velit eiusmod ut exercitation exercitation qui sint Lorem nostrud. Minim adipisicing culpa enim labore et excepteur duis culpa nulla eiusmod reprehenderit id aute. Mollit nisi ea eiusmod minim sint sunt proident ullamco. Elit dolore minim id duis. Ut velit dolore mollit cillum deserunt minim est reprehenderit ullamco dolor enim nulla incididunt aliqua.\r\n") (registered . "2014-01-01T08:47:11 +07:00") (latitude . -22.199302) (longitude . 67.31354) (tags . ("nulla" "eiusmod" "irure" "non" "id" "nisi" "minim")) (friends . (#((id . 0) (name . "Rosemarie Briggs")) #((id . 1) (name . "Ada Howe")) #((id . 2) (name . "Fry Odonnell")))) (greeting . "Hello, Noreen Everett! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217866d8713937ec7af") (index . 325) (guid . "784d4c52-7232-48b1-b1f6-e0ac38f95b77") (isActive . True) (balance . "$3,707.12") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "brown") (name . "Vicki Copeland") (gender . "female") (company . "STELAECOR") (email . "vickicopeland@stelaecor.com") (phone . "+1 (855) 531-3924") (address . "225 Ridge Court, Goldfield, Virgin Islands, 4387") (about . "Ad nulla et id commodo est dolor deserunt labore adipisicing officia eiusmod ad labore. Magna labore duis excepteur officia enim ex laboris ipsum eu pariatur. Aute culpa in veniam dolor incididunt. Incididunt quis consequat qui esse laboris enim elit sit fugiat enim enim laborum. Elit non commodo velit in eiusmod mollit quis veniam qui dolore. Quis est sint dolor id deserunt qui excepteur occaecat. Qui labore id enim qui amet labore.\r\n") (registered . "2016-10-29T04:01:57 +06:00") (latitude . 41.509403) (longitude . 31.048928) (tags . ("velit" "est" "amet" "Lorem" "aute" "incididunt" "dolor")) (friends . (#((id . 0) (name . "Flynn Guy")) #((id . 1) (name . "Lorna Hayes")) #((id . 2) (name . "Marylou Walls")))) (greeting . "Hello, Vicki Copeland! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217c7b3fc9290199d81") (index . 326) (guid . "5fa570c8-5cc2-4b4b-a005-3520654ad557") (isActive . False) (balance . "$2,713.15") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "blue") (name . "Haley Stone") (gender . "male") (company . "QUARX") (email . "haleystone@quarx.com") (phone . "+1 (900) 488-2625") (address . "962 Veronica Place, Ernstville, South Dakota, 589") (about . "Nostrud velit esse non aliqua ex esse nostrud ea elit non Lorem laboris. Et minim ut irure aliquip amet consectetur esse voluptate officia elit mollit est sint. Commodo anim quis et pariatur tempor commodo quis deserunt elit laborum veniam incididunt proident nulla. Officia pariatur pariatur voluptate deserunt non eu cillum do id pariatur do aliqua aliqua voluptate. Velit ex non commodo occaecat eiusmod dolore. Nulla mollit proident aliquip consectetur officia ipsum occaecat consequat exercitation deserunt tempor ullamco anim. Eiusmod Lorem nostrud excepteur esse nostrud eu commodo aliquip sit ad esse.\r\n") (registered . "2016-07-10T12:05:35 +06:00") (latitude . 24.340508) (longitude . 146.46425) (tags . ("consequat" "occaecat" "dolore" "aute" "sit" "sunt" "consequat")) (friends . (#((id . 0) (name . "Mann Harper")) #((id . 1) (name . "Valerie Kerr")) #((id . 2) (name . "Mcmillan Hinton")))) (greeting . "Hello, Haley Stone! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302170a9b9ea9f8e41bf6") (index . 327) (guid . "ccb48e94-cac1-49db-a0df-4ae886c4058a") (isActive . True) (balance . "$3,948.55") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "green") (name . "Fanny Donaldson") (gender . "female") (company . "PODUNK") (email . "fannydonaldson@podunk.com") (phone . "+1 (856) 561-3018") (address . "705 Moffat Street, Boomer, Virginia, 6063") (about . "Consequat eu eiusmod reprehenderit enim officia eu eiusmod nisi incididunt eu enim commodo. Dolore laborum fugiat velit consequat veniam ea nostrud laborum amet minim. Do sint nisi culpa proident. Tempor ullamco eiusmod Lorem proident commodo ipsum. Quis proident elit sit laborum. Eu qui sunt veniam irure aute exercitation est excepteur in reprehenderit.\r\n") (registered . "2014-01-23T07:17:31 +07:00") (latitude . 20.426642) (longitude . -122.159068) (tags . ("ex" "enim" "laboris" "eiusmod" "ut" "mollit" "aute")) (friends . (#((id . 0) (name . "Monique Shields")) #((id . 1) (name . "Page Reynolds")) #((id . 2) (name . "Dalton Pope")))) (greeting . "Hello, Fanny Donaldson! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217de0b7ab26ba523e9") (index . 328) (guid . "81f1aadb-d5eb-4f4f-802d-52765cc2da47") (isActive . True) (balance . "$3,362.28") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "green") (name . "Williams Best") (gender . "male") (company . "SLAMBDA") (email . "williamsbest@slambda.com") (phone . "+1 (938) 515-3572") (address . "896 Miller Avenue, Gasquet, Michigan, 926") (about . "Ut cupidatat id consequat anim eiusmod excepteur commodo culpa enim. Deserunt est nisi incididunt laboris incididunt. Deserunt quis consectetur proident do enim exercitation. Eiusmod veniam ad qui in ullamco culpa ut consectetur fugiat amet. Est sunt irure commodo eu proident esse. Id non id dolore cillum laborum consectetur. Deserunt esse minim proident labore quis sit sunt ut amet.\r\n") (registered . "2017-11-25T09:07:54 +07:00") (latitude . -1.518954) (longitude . 38.920738) (tags . ("sint" "non" "ad" "adipisicing" "cupidatat" "cillum" "consectetur")) (friends . (#((id . 0) (name . "Socorro Fox")) #((id . 1) (name . "Mcleod Clark")) #((id . 2) (name . "Nieves Gonzalez")))) (greeting . "Hello, Williams Best! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021705ceed0ea81d8fe3") (index . 329) (guid . "f080abea-7764-44f3-b12b-131762b0d510") (isActive . False) (balance . "$2,454.38") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "green") (name . "Mollie Little") (gender . "female") (company . "ZENTHALL") (email . "mollielittle@zenthall.com") (phone . "+1 (947) 425-3419") (address . "222 Mill Lane, Williamson, Northern Mariana Islands, 4733") (about . "Nisi veniam incididunt laboris esse enim officia velit occaecat. Et sit pariatur id culpa labore cillum quis cupidatat dolore nulla non occaecat pariatur. Voluptate enim adipisicing amet veniam veniam fugiat laboris ullamco commodo consectetur dolor. Officia laboris elit aute tempor velit. Excepteur velit deserunt duis nostrud. Id est laboris in eu voluptate qui cillum proident commodo laborum qui laborum. Consequat proident elit ea id commodo non quis velit cupidatat enim.\r\n") (registered . "2016-08-02T10:44:40 +06:00") (latitude . -77.290763) (longitude . -119.899951) (tags . ("ullamco" "aliqua" "amet" "sunt" "duis" "id" "aliqua")) (friends . (#((id . 0) (name . "Brewer Sawyer")) #((id . 1) (name . "Elena Bauer")) #((id . 2) (name . "Tracey Blake")))) (greeting . "Hello, Mollie Little! You have 7 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217481ee4cdca482c7d") (index . 330) (guid . "76af980c-6fc7-4cd5-b484-0d95a91c2ebe") (isActive . True) (balance . "$2,103.38") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "blue") (name . "Cohen Rasmussen") (gender . "male") (company . "FUELTON") (email . "cohenrasmussen@fuelton.com") (phone . "+1 (871) 570-3848") (address . "421 Tennis Court, Elizaville, Illinois, 2485") (about . "Aute qui enim officia quis ipsum eu aliquip cupidatat. Elit culpa consectetur amet elit fugiat id consequat commodo. Lorem aute sunt exercitation qui. Fugiat reprehenderit aute enim duis laborum. Minim fugiat quis nostrud adipisicing nulla. Aute consectetur laboris mollit elit. Ut aliqua minim ad ipsum dolore.\r\n") (registered . "2015-01-22T08:45:17 +07:00") (latitude . 24.153718) (longitude . -49.775963) (tags . ("non" "laborum" "pariatur" "nisi" "ullamco" "ea" "exercitation")) (friends . (#((id . 0) (name . "Lindsay Camacho")) #((id . 1) (name . "Lydia Justice")) #((id . 2) (name . "Matthews Rowe")))) (greeting . "Hello, Cohen Rasmussen! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302179cebbd27b53264ef") (index . 331) (guid . "e2f79fb4-e882-40cb-830b-e23ad6698cf9") (isActive . False) (balance . "$2,007.73") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "brown") (name . "Mccullough Flynn") (gender . "male") (company . "EMTRAK") (email . "mcculloughflynn@emtrak.com") (phone . "+1 (867) 510-3203") (address . "423 Dorchester Road, Abiquiu, Wisconsin, 368") (about . "Enim adipisicing magna tempor aute aliqua. Est anim dolor exercitation pariatur. Officia tempor consequat cupidatat ad ipsum dolor reprehenderit. Elit aute amet aute elit cillum ea. Exercitation pariatur magna aliquip occaecat esse proident ad sint officia ea ex officia veniam.\r\n") (registered . "2014-12-01T03:02:34 +07:00") (latitude . -52.096376) (longitude . -4.250701) (tags . ("cupidatat" "nulla" "anim" "nulla" "magna" "cupidatat" "fugiat")) (friends . (#((id . 0) (name . "Trudy Arnold")) #((id . 1) (name . "Ingram Parrish")) #((id . 2) (name . "Herrera Sheppard")))) (greeting . "Hello, Mccullough Flynn! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021766b5e262ca008f59") (index . 332) (guid . "7d6e4107-b399-4888-8662-dab98f783517") (isActive . False) (balance . "$3,565.58") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "blue") (name . "Estrada Farmer") (gender . "male") (company . "FANFARE") (email . "estradafarmer@fanfare.com") (phone . "+1 (881) 581-2428") (address . "981 Greenpoint Avenue, Shindler, Idaho, 4527") (about . "Aliqua amet enim aliqua dolore excepteur ullamco nostrud cupidatat adipisicing ullamco duis commodo deserunt consequat. Excepteur Lorem laborum cillum exercitation. Fugiat exercitation deserunt non enim duis id nostrud nulla amet aliquip enim nisi officia ea.\r\n") (registered . "2017-05-17T12:49:24 +06:00") (latitude . -8.436686) (longitude . -74.312667) (tags . ("labore" "dolor" "laboris" "aliquip" "officia" "in" "id")) (friends . (#((id . 0) (name . "Mccormick Olsen")) #((id . 1) (name . "Weber Lambert")) #((id . 2) (name . "Berta Phillips")))) (greeting . "Hello, Estrada Farmer! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302177163cb0df7f876dc") (index . 333) (guid . "384de92c-72c4-43f7-989e-2f5f01fb736c") (isActive . False) (balance . "$2,211.06") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "brown") (name . "Ramona Colon") (gender . "female") (company . "CORPORANA") (email . "ramonacolon@corporana.com") (phone . "+1 (896) 426-3042") (address . "382 Cooper Street, Greenock, New Hampshire, 3891") (about . "Esse excepteur nisi est velit consectetur veniam deserunt sint. Eu est ex occaecat reprehenderit. Et proident deserunt ea eiusmod eu ex veniam ea laborum deserunt. Sunt sint occaecat quis ullamco occaecat incididunt laboris amet dolore ea eu esse id do.\r\n") (registered . "2014-01-04T05:55:53 +07:00") (latitude . 60.509647) (longitude . 26.946446) (tags . ("dolor" "consequat" "ipsum" "deserunt" "voluptate" "duis" "et")) (friends . (#((id . 0) (name . "Logan Pollard")) #((id . 1) (name . "Edna Mercado")) #((id . 2) (name . "Rivera Wells")))) (greeting . "Hello, Ramona Colon! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021747e0061437bb7692") (index . 334) (guid . "04f51d6d-953e-4ef5-a4d4-d8a831761309") (isActive . False) (balance . "$3,820.66") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "green") (name . "Hobbs Collins") (gender . "male") (company . "MAXEMIA") (email . "hobbscollins@maxemia.com") (phone . "+1 (904) 473-3781") (address . "110 Brightwater Avenue, Olney, South Carolina, 8887") (about . "Commodo qui in ipsum irure qui excepteur dolore labore id velit duis irure incididunt. Amet dolore excepteur nostrud incididunt cupidatat. Labore excepteur nulla deserunt in est magna deserunt reprehenderit duis. Ut fugiat id Lorem eiusmod officia magna ut mollit consectetur nostrud duis. Consectetur aute aliquip est duis mollit nostrud consectetur.\r\n") (registered . "2014-03-14T05:55:08 +06:00") (latitude . -49.531591) (longitude . 119.456117) (tags . ("ut" "excepteur" "excepteur" "incididunt" "voluptate" "velit" "aliqua")) (friends . (#((id . 0) (name . "Roach Guerra")) #((id . 1) (name . "Cooley Mcknight")) #((id . 2) (name . "Tamika Ross")))) (greeting . "Hello, Hobbs Collins! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302174ffbc1797a3db9f4") (index . 335) (guid . "64e9956e-85a6-4285-a440-306829995e2b") (isActive . False) (balance . "$1,878.93") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "green") (name . "Schmidt Cochran") (gender . "male") (company . "COFINE") (email . "schmidtcochran@cofine.com") (phone . "+1 (903) 423-3469") (address . "324 Lincoln Road, Kylertown, Iowa, 1578") (about . "Pariatur ullamco anim adipisicing ad laborum. Labore Lorem culpa eiusmod eiusmod voluptate tempor anim et do velit nulla anim. Laborum reprehenderit elit adipisicing cupidatat id aliquip commodo ad esse proident minim labore amet. Incididunt sint duis in ut. Cillum cillum ullamco ea ullamco nostrud commodo culpa ut est incididunt magna fugiat dolore. Consequat magna in ipsum do labore ipsum excepteur ad est culpa adipisicing. Lorem fugiat ea ullamco cupidatat officia magna consequat et.\r\n") (registered . "2014-06-12T12:46:33 +06:00") (latitude . 29.152458) (longitude . -33.915379) (tags . ("sint" "aliquip" "sit" "nostrud" "pariatur" "Lorem" "magna")) (friends . (#((id . 0) (name . "Melendez Casey")) #((id . 1) (name . "Clarke Berg")) #((id . 2) (name . "Rebecca Bond")))) (greeting . "Hello, Schmidt Cochran! You have 7 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302176fd2c61afe295680") (index . 336) (guid . "affcc2c7-82e5-4dc8-a519-38d7d4428e5e") (isActive . True) (balance . "$2,820.17") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "blue") (name . "Hawkins Bryant") (gender . "male") (company . "SULTRAX") (email . "hawkinsbryant@sultrax.com") (phone . "+1 (895) 492-3681") (address . "436 Kingsway Place, Harleigh, California, 8375") (about . "In dolor cupidatat ex fugiat commodo sint minim fugiat aute eiusmod ad voluptate reprehenderit in. Sunt do pariatur pariatur id. Non nulla dolore dolore reprehenderit sunt adipisicing reprehenderit non non quis deserunt enim. Tempor ad incididunt in magna laborum minim reprehenderit. Ea dolor ad ad proident velit nostrud enim dolore sit ex qui. Commodo velit do esse proident aute irure velit mollit aliquip ad nisi.\r\n") (registered . "2017-02-27T06:18:26 +07:00") (latitude . 88.2659) (longitude . 52.652776) (tags . ("mollit" "labore" "dolor" "dolor" "veniam" "non" "culpa")) (friends . (#((id . 0) (name . "Garner Coffey")) #((id . 1) (name . "Shauna Stout")) #((id . 2) (name . "Sherrie Gardner")))) (greeting . "Hello, Hawkins Bryant! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302179bc091c30aec1e61") (index . 337) (guid . "aa0697d4-79b7-4965-9ea7-6360e2e16dd9") (isActive . False) (balance . "$1,140.55") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "blue") (name . "Rosalie Weaver") (gender . "female") (company . "SNACKTION") (email . "rosalieweaver@snacktion.com") (phone . "+1 (971) 547-3112") (address . "197 Hazel Court, Sunwest, Wyoming, 7517") (about . "Occaecat quis nostrud commodo dolore exercitation enim ut. Voluptate amet ea nisi eu est nulla nostrud Lorem dolor exercitation laboris. Nisi labore officia minim non consectetur. Nulla mollit sunt incididunt ea minim sint ex irure excepteur ullamco mollit. Veniam id officia minim exercitation culpa nulla ex commodo. Ipsum excepteur dolor do consequat ut labore veniam ullamco occaecat nulla pariatur.\r\n") (registered . "2015-05-26T06:08:37 +06:00") (latitude . -37.292196) (longitude . 132.413494) (tags . ("nostrud" "ut" "id" "exercitation" "tempor" "sunt" "amet")) (friends . (#((id . 0) (name . "Enid Britt")) #((id . 1) (name . "Nicholson Haley")) #((id . 2) (name . "Branch Gordon")))) (greeting . "Hello, Rosalie Weaver! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302175bdc72cad26d4dcf") (index . 338) (guid . "54b5fc6e-92c0-4fd9-a8b3-54440e4a0938") (isActive . True) (balance . "$3,386.60") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "brown") (name . "Hodge Andrews") (gender . "male") (company . "SHEPARD") (email . "hodgeandrews@shepard.com") (phone . "+1 (995) 581-3709") (address . "470 Blake Court, Englevale, Maryland, 2007") (about . "Sit deserunt laborum do deserunt laboris. Ut nostrud aliquip sit veniam cillum anim mollit exercitation labore ex laborum est minim. Ullamco anim nisi dolor laboris laborum non do elit do. Sunt nulla pariatur occaecat sit nisi cupidatat dolor ut. Dolore eu dolore dolor cillum Lorem magna magna sint nostrud duis ex labore.\r\n") (registered . "2016-04-12T11:20:50 +06:00") (latitude . -47.229364) (longitude . -150.204248) (tags . ("velit" "nulla" "minim" "eiusmod" "minim" "id" "nisi")) (friends . (#((id . 0) (name . "Lawrence Mccoy")) #((id . 1) (name . "Rush Velez")) #((id . 2) (name . "Angie Compton")))) (greeting . "Hello, Hodge Andrews! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021789b56288ff51ae1a") (index . 339) (guid . "7b3d9316-94ce-47aa-ae83-fe347a7803cd") (isActive . False) (balance . "$3,740.93") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "brown") (name . "Curtis Sampson") (gender . "male") (company . "ZILIDIUM") (email . "curtissampson@zilidium.com") (phone . "+1 (899) 520-3026") (address . "781 Bayard Street, Garberville, Louisiana, 5276") (about . "Ullamco veniam velit id ad nisi qui duis elit sit magna. Amet veniam pariatur consequat sunt sunt officia fugiat. Ea duis sunt fugiat sit cupidatat elit. Esse reprehenderit veniam enim velit nulla enim amet magna. Deserunt consequat adipisicing commodo irure laborum sunt aute adipisicing mollit. Excepteur proident ea sunt eu velit.\r\n") (registered . "2016-03-20T09:44:49 +06:00") (latitude . 77.076401) (longitude . 121.579962) (tags . ("veniam" "consequat" "est" "ullamco" "cupidatat" "laborum" "mollit")) (friends . (#((id . 0) (name . "Rachelle Owens")) #((id . 1) (name . "Nelda Newton")) #((id . 2) (name . "Bethany Gallegos")))) (greeting . "Hello, Curtis Sampson! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217d604d1f32c6216c2") (index . 340) (guid . "2b3f80c6-2e04-4ee0-81a7-2206c05d33df") (isActive . True) (balance . "$1,735.45") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "brown") (name . "Juliet Hopper") (gender . "female") (company . "PREMIANT") (email . "juliethopper@premiant.com") (phone . "+1 (923) 556-3966") (address . "215 Glenwood Road, Chautauqua, Federated States Of Micronesia, 5487") (about . "Esse et enim ullamco qui commodo eu eu sint nisi fugiat non adipisicing. Nostrud duis aute deserunt dolor et ipsum sunt amet. Enim ea quis exercitation laborum proident irure consequat. Duis elit pariatur voluptate proident aute ad ullamco adipisicing eu. Ea veniam minim proident sunt eiusmod.\r\n") (registered . "2014-11-07T05:03:30 +07:00") (latitude . 59.198221) (longitude . -72.041235) (tags . ("commodo" "consectetur" "sit" "non" "velit" "consequat" "culpa")) (friends . (#((id . 0) (name . "Lucinda Whitfield")) #((id . 1) (name . "Hanson Cotton")) #((id . 2) (name . "Toni Harding")))) (greeting . "Hello, Juliet Hopper! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302171b0c0100bb63b129") (index . 341) (guid . "1d3d81c9-c7d7-48a3-b9c7-07f914e8e3b7") (isActive . False) (balance . "$2,479.79") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "brown") (name . "Simmons Lamb") (gender . "male") (company . "QUILK") (email . "simmonslamb@quilk.com") (phone . "+1 (937) 570-3459") (address . "383 Williams Court, Wright, Pennsylvania, 5228") (about . "Occaecat enim in enim deserunt. Eiusmod voluptate veniam in dolor commodo do ea dolor adipisicing est incididunt pariatur eiusmod. Velit velit pariatur nisi qui aliquip do veniam pariatur exercitation. Commodo occaecat enim eu voluptate officia eiusmod pariatur dolor consectetur dolore in id.\r\n") (registered . "2018-03-16T02:48:24 +06:00") (latitude . -35.934997) (longitude . -36.654812) (tags . ("laboris" "anim" "sint" "sit" "voluptate" "officia" "nulla")) (friends . (#((id . 0) (name . "Maricela Berry")) #((id . 1) (name . "Stark Holt")) #((id . 2) (name . "Wynn Trevino")))) (greeting . "Hello, Simmons Lamb! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217d0dfece975d150c8") (index . 342) (guid . "cbdbc2c3-91b8-4b10-9d83-f101dcde86b1") (isActive . False) (balance . "$2,457.71") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "blue") (name . "Colleen Dickerson") (gender . "female") (company . "JETSILK") (email . "colleendickerson@jetsilk.com") (phone . "+1 (900) 471-3303") (address . "375 Gunther Place, Sunriver, Vermont, 808") (about . "Sunt proident eiusmod ad culpa fugiat est ea et nostrud fugiat culpa labore. Culpa occaecat dolor cillum deserunt ea deserunt. Duis enim in aliquip qui aliqua.\r\n") (registered . "2018-02-23T01:29:34 +07:00") (latitude . 80.720157) (longitude . 168.279948) (tags . ("amet" "exercitation" "cupidatat" "commodo" "reprehenderit" "fugiat" "et")) (friends . (#((id . 0) (name . "Mariana Mann")) #((id . 1) (name . "Hahn Wolfe")) #((id . 2) (name . "Erika Zamora")))) (greeting . "Hello, Colleen Dickerson! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302175a92bf4dd68f126b") (index . 343) (guid . "05e69f92-1ff4-4e4c-815a-11a734d05326") (isActive . True) (balance . "$1,731.25") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "brown") (name . "Rosales Moran") (gender . "male") (company . "INEAR") (email . "rosalesmoran@inear.com") (phone . "+1 (838) 481-2942") (address . "426 Harbor Court, Foxworth, Maine, 6402") (about . "Incididunt sint officia aliqua aute commodo ea ipsum tempor do adipisicing qui esse incididunt officia. Fugiat consequat est pariatur cupidatat culpa. Id ea commodo mollit ea qui dolore aliqua ea aliqua cillum sint. Cillum quis ad voluptate incididunt enim enim est duis id officia sit. Voluptate do pariatur ipsum ex incididunt dolore.\r\n") (registered . "2015-11-10T07:21:54 +07:00") (latitude . 31.378594) (longitude . -125.650965) (tags . ("culpa" "aliquip" "tempor" "adipisicing" "incididunt" "mollit" "elit")) (friends . (#((id . 0) (name . "Lucy Lee")) #((id . 1) (name . "Josephine Kirkland")) #((id . 2) (name . "Bray Acevedo")))) (greeting . "Hello, Rosales Moran! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217f5280c0b02e2a499") (index . 344) (guid . "a2bb23df-1b54-40e2-846d-bfa10a8e48f7") (isActive . False) (balance . "$3,038.34") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "green") (name . "Malinda Lindsey") (gender . "female") (company . "ENERVATE") (email . "malindalindsey@enervate.com") (phone . "+1 (951) 526-3416") (address . "151 Visitation Place, Keyport, Alaska, 9684") (about . "Exercitation ut nisi id esse aute sit veniam. Irure id duis sint nostrud id pariatur sint excepteur nulla tempor dolor laborum incididunt excepteur. Officia exercitation occaecat sunt est duis reprehenderit est tempor excepteur mollit ea consequat quis Lorem.\r\n") (registered . "2014-10-21T04:02:51 +06:00") (latitude . -51.621225) (longitude . 153.529103) (tags . ("in" "elit" "adipisicing" "exercitation" "labore" "et" "minim")) (friends . (#((id . 0) (name . "Finch Ward")) #((id . 1) (name . "Tammi Rush")) #((id . 2) (name . "Marietta Figueroa")))) (greeting . "Hello, Malinda Lindsey! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217e12cc10daa8f039a") (index . 345) (guid . "808ac392-4789-4f19-9c05-26cbbeb72e64") (isActive . True) (balance . "$3,355.44") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Ora Lindsay") (gender . "female") (company . "FLUM") (email . "oralindsay@flum.com") (phone . "+1 (815) 510-3316") (address . "423 Dover Street, Canterwood, Palau, 5017") (about . "Occaecat culpa aliqua voluptate sunt incididunt esse incididunt commodo esse ad dolore. Consequat proident anim et quis reprehenderit proident reprehenderit duis consequat deserunt quis elit. Id velit cupidatat cupidatat culpa amet est dolore magna nisi reprehenderit cupidatat. Incididunt commodo fugiat id magna officia aute qui excepteur. Eiusmod ad in in amet. Officia eu ut commodo mollit aliquip id magna. Sit nisi sit cillum laborum qui cillum do eu ut id esse sunt incididunt sit.\r\n") (registered . "2014-09-17T11:25:26 +06:00") (latitude . 56.564899) (longitude . -82.352545) (tags . ("cupidatat" "ut" "labore" "ut" "velit" "minim" "excepteur")) (friends . (#((id . 0) (name . "Paula Cote")) #((id . 1) (name . "Todd Nicholson")) #((id . 2) (name . "Allyson Watkins")))) (greeting . "Hello, Ora Lindsay! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217282001ce9c26ac4b") (index . 346) (guid . "4bc639cd-3a56-4d58-915c-7e00e25c25df") (isActive . True) (balance . "$1,735.91") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "blue") (name . "Ester Sweet") (gender . "female") (company . "ENDIPINE") (email . "estersweet@endipine.com") (phone . "+1 (983) 510-3545") (address . "494 Truxton Street, Lemoyne, Arkansas, 8499") (about . "Anim proident fugiat incididunt eu laborum occaecat. Est ullamco mollit pariatur nisi commodo id labore Lorem excepteur elit aute consectetur do. Proident officia sit adipisicing enim qui. Do enim mollit sint quis fugiat adipisicing labore officia. Qui deserunt nostrud fugiat cupidatat ad.\r\n") (registered . "2018-01-04T04:55:23 +07:00") (latitude . 54.630179) (longitude . -28.861619) (tags . ("incididunt" "ut" "eu" "dolore" "nulla" "velit" "minim")) (friends . (#((id . 0) (name . "Foley Butler")) #((id . 1) (name . "Delacruz Booth")) #((id . 2) (name . "Nicole Harmon")))) (greeting . "Hello, Ester Sweet! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217e3c3c606bc9b3411") (index . 347) (guid . "2972ea21-01b2-4261-a489-d921861968c4") (isActive . True) (balance . "$3,386.40") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "green") (name . "Muriel Levy") (gender . "female") (company . "KINDALOO") (email . "muriellevy@kindaloo.com") (phone . "+1 (976) 473-2768") (address . "830 Prospect Avenue, Hondah, Florida, 2159") (about . "Adipisicing aliqua consequat labore labore adipisicing eu aliqua magna pariatur ex. Sit ad deserunt nisi irure do. Id consequat est in ullamco consequat. Do incididunt esse esse elit. Id ipsum dolore id nostrud elit minim magna voluptate ipsum ut ad. Labore voluptate in ex eiusmod Lorem qui enim laboris adipisicing incididunt incididunt nostrud. Proident pariatur eiusmod non elit occaecat reprehenderit consequat nisi velit amet ullamco labore.\r\n") (registered . "2016-04-25T09:59:43 +06:00") (latitude . 76.644835) (longitude . -54.226028) (tags . ("nulla" "labore" "sunt" "sunt" "mollit" "nulla" "laboris")) (friends . (#((id . 0) (name . "Carmella Winters")) #((id . 1) (name . "Howard Baldwin")) #((id . 2) (name . "Peters Santos")))) (greeting . "Hello, Muriel Levy! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217573777cb56e70aec") (index . 348) (guid . "c6143243-0d35-45ff-b14a-0c855427b594") (isActive . False) (balance . "$1,746.10") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "green") (name . "Felicia King") (gender . "female") (company . "SATIANCE") (email . "feliciaking@satiance.com") (phone . "+1 (815) 474-3923") (address . "394 Village Court, Wattsville, Puerto Rico, 8870") (about . "Consequat esse enim cillum minim eiusmod incididunt in elit. Labore laboris officia velit commodo sunt officia occaecat veniam aliquip aliquip sit mollit cupidatat velit. Dolor minim anim sint consequat dolore sunt sit proident tempor velit ex. Voluptate eu culpa dolore Lorem esse minim culpa consectetur officia. Ut laboris nisi nulla aliqua consectetur sit.\r\n") (registered . "2016-01-01T05:22:09 +07:00") (latitude . -69.627778) (longitude . 82.29584) (tags . ("ipsum" "non" "consequat" "sint" "nostrud" "minim" "ut")) (friends . (#((id . 0) (name . "Duffy Kaufman")) #((id . 1) (name . "Deana Bernard")) #((id . 2) (name . "Martinez Oconnor")))) (greeting . "Hello, Felicia King! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302173ead3449c5220dc2") (index . 349) (guid . "f4d6693e-7b44-4293-82f9-30ff481e2ef5") (isActive . True) (balance . "$1,359.72") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "green") (name . "Glenda Alford") (gender . "female") (company . "NIMON") (email . "glendaalford@nimon.com") (phone . "+1 (842) 415-3739") (address . "972 Merit Court, Brule, Hawaii, 5280") (about . "Eu ad deserunt reprehenderit esse quis ex consectetur anim commodo sint enim. Est nulla Lorem commodo pariatur nostrud cupidatat non ex ipsum voluptate. Ad magna sint veniam voluptate reprehenderit culpa irure minim laborum pariatur laboris commodo consectetur pariatur. Irure sint ullamco sit sit sunt non labore ea duis commodo dolor aute do.\r\n") (registered . "2014-01-11T04:17:58 +07:00") (latitude . -80.920408) (longitude . 98.822718) (tags . ("ea" "qui" "nostrud" "nisi" "amet" "adipisicing" "do")) (friends . (#((id . 0) (name . "Julianne Curtis")) #((id . 1) (name . "Blanca Moses")) #((id . 2) (name . "Stella Crane")))) (greeting . "Hello, Glenda Alford! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217e97b2c054c356bc9") (index . 350) (guid . "0bda7dd8-d748-40ea-b761-a419c1c03d52") (isActive . True) (balance . "$2,456.80") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "green") (name . "Madelyn Parsons") (gender . "female") (company . "NETPLAX") (email . "madelynparsons@netplax.com") (phone . "+1 (907) 420-2203") (address . "280 Lefferts Avenue, Bodega, American Samoa, 2740") (about . "Elit ullamco culpa incididunt quis non aute est adipisicing sunt exercitation ea. Esse enim eiusmod velit qui proident sit. Ut mollit duis exercitation dolor labore officia exercitation sunt nisi deserunt. Officia nulla nostrud reprehenderit nulla magna duis ex quis non quis aliqua laboris exercitation.\r\n") (registered . "2014-09-19T09:52:13 +06:00") (latitude . 21.127104) (longitude . -91.176817) (tags . ("ad" "incididunt" "dolor" "incididunt" "labore" "do" "fugiat")) (friends . (#((id . 0) (name . "Harvey Macdonald")) #((id . 1) (name . "Eleanor Schroeder")) #((id . 2) (name . "Morales French")))) (greeting . "Hello, Madelyn Parsons! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021735ee112fd2547823") (index . 351) (guid . "66ac1a5f-567c-4d47-b3f5-4c20865e980c") (isActive . False) (balance . "$1,069.83") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "blue") (name . "David Joseph") (gender . "male") (company . "ACUSAGE") (email . "davidjoseph@acusage.com") (phone . "+1 (972) 422-2260") (address . "503 Evergreen Avenue, Yogaville, Indiana, 4938") (about . "Minim deserunt excepteur consectetur anim sint velit veniam non officia magna. Id pariatur culpa magna dolore fugiat aute incididunt. Ipsum non quis culpa ipsum culpa sint amet. Minim adipisicing eiusmod deserunt tempor qui. Fugiat est et veniam veniam irure excepteur aliqua id incididunt Lorem duis eu.\r\n") (registered . "2018-03-20T01:25:42 +06:00") (latitude . 12.75944) (longitude . -3.075746) (tags . ("voluptate" "irure" "do" "duis" "quis" "dolore" "veniam")) (friends . (#((id . 0) (name . "Wilder Morris")) #((id . 1) (name . "Jayne Lott")) #((id . 2) (name . "Candy Salas")))) (greeting . "Hello, David Joseph! You have 1 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302176998d343d64e50cc") (index . 352) (guid . "c752bbf0-5426-4099-b225-6e24dc66e3cb") (isActive . False) (balance . "$1,429.27") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "brown") (name . "Bass Molina") (gender . "male") (company . "STRALOY") (email . "bassmolina@straloy.com") (phone . "+1 (977) 523-3691") (address . "373 Hunterfly Place, Fillmore, Missouri, 4493") (about . "Irure deserunt sit do veniam mollit duis veniam sit commodo ipsum. Dolore velit elit est esse est nisi do in nulla quis. Excepteur laborum amet magna et non non nostrud sunt. Commodo deserunt proident ad nisi. Ipsum voluptate deserunt cillum magna enim quis nulla veniam aliquip. Consequat excepteur consequat laboris eu. Elit nisi Lorem ut non minim ullamco cupidatat voluptate.\r\n") (registered . "2015-01-25T06:17:50 +07:00") (latitude . -82.048545) (longitude . 82.817857) (tags . ("labore" "sint" "in" "minim" "pariatur" "consequat" "reprehenderit")) (friends . (#((id . 0) (name . "Yolanda Bishop")) #((id . 1) (name . "Christi May")) #((id . 2) (name . "Booth Moody")))) (greeting . "Hello, Bass Molina! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302174c24a909dec1b022") (index . 353) (guid . "db07154f-ab54-4cc9-a1c6-bb22ec972036") (isActive . False) (balance . "$3,279.09") (picture . "http://placehold.it/32x32") (age . 33) (eyeColor . "brown") (name . "Liza Martin") (gender . "female") (company . "ZILENCIO") (email . "lizamartin@zilencio.com") (phone . "+1 (967) 523-2479") (address . "255 Commercial Street, Kilbourne, Guam, 9063") (about . "Do ullamco elit excepteur excepteur non irure dolore ad id tempor. Do sit consequat occaecat veniam est in irure cillum ipsum ut deserunt elit reprehenderit nisi. Excepteur qui quis eiusmod cupidatat. Veniam excepteur officia adipisicing do aute magna ea.\r\n") (registered . "2016-03-27T03:25:00 +06:00") (latitude . 49.334675) (longitude . 142.806362) (tags . ("Lorem" "dolor" "qui" "aliqua" "duis" "incididunt" "eiusmod")) (friends . (#((id . 0) (name . "Weiss Mathews")) #((id . 1) (name . "Christa Beach")) #((id . 2) (name . "Amie Mccall")))) (greeting . "Hello, Liza Martin! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217554800cf785ee9db") (index . 354) (guid . "1c3e58bd-7759-427e-9aab-bc7a8048fd74") (isActive . True) (balance . "$1,268.36") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "brown") (name . "Cynthia Sanford") (gender . "female") (company . "TWIIST") (email . "cynthiasanford@twiist.com") (phone . "+1 (979) 439-2850") (address . "719 Kansas Place, Tonopah, Minnesota, 2502") (about . "Excepteur exercitation excepteur magna et excepteur duis proident enim duis minim ipsum ullamco. Proident reprehenderit ipsum commodo deserunt adipisicing officia dolor dolor cillum laboris adipisicing consequat incididunt ut. Irure occaecat do nisi eu minim dolore. Amet et enim qui tempor laborum cillum eiusmod amet laboris proident deserunt sint ex voluptate.\r\n") (registered . "2014-04-03T12:21:15 +06:00") (latitude . 34.033099) (longitude . -117.850531) (tags . ("nostrud" "culpa" "aliquip" "aliqua" "laborum" "voluptate" "esse")) (friends . (#((id . 0) (name . "Suarez Mcfadden")) #((id . 1) (name . "Elisa Walters")) #((id . 2) (name . "King Medina")))) (greeting . "Hello, Cynthia Sanford! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217124dd8d7d4cbc625") (index . 355) (guid . "5636ea9b-a411-4bd7-96ea-0db31ebb41a9") (isActive . True) (balance . "$3,534.81") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "green") (name . "Rosa Bruce") (gender . "female") (company . "OTHERWAY") (email . "rosabruce@otherway.com") (phone . "+1 (819) 475-3353") (address . "842 Winthrop Street, Fairlee, Delaware, 3518") (about . "Duis occaecat consectetur non dolor sint consequat eiusmod quis. Amet duis mollit et anim. Quis veniam ut velit est ut sunt excepteur dolore duis sit est amet. Reprehenderit anim et eiusmod ad est laboris.\r\n") (registered . "2016-11-09T12:55:58 +07:00") (latitude . -16.682969) (longitude . -68.550797) (tags . ("cupidatat" "voluptate" "tempor" "et" "adipisicing" "consectetur" "fugiat")) (friends . (#((id . 0) (name . "Nikki Neal")) #((id . 1) (name . "Craig Dillon")) #((id . 2) (name . "Mcgowan Norris")))) (greeting . "Hello, Rosa Bruce! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302172ffc7bbc3ed5a957") (index . 356) (guid . "5da62090-ee07-4976-846d-1471d35bd916") (isActive . False) (balance . "$2,192.05") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "brown") (name . "Alberta Perry") (gender . "female") (company . "KIOSK") (email . "albertaperry@kiosk.com") (phone . "+1 (954) 562-3377") (address . "916 Hegeman Avenue, Edneyville, Kansas, 2045") (about . "Labore aute fugiat voluptate sit tempor tempor anim. Aliquip ut reprehenderit elit exercitation eiusmod. In nostrud irure sit ad amet aute tempor velit. Mollit ullamco laboris proident aute minim labore magna cupidatat. Officia esse non sint pariatur. Nulla officia amet esse enim fugiat non anim sit. Eiusmod tempor labore deserunt anim amet cupidatat esse commodo magna qui.\r\n") (registered . "2014-07-16T07:51:26 +06:00") (latitude . -37.827302) (longitude . 75.219203) (tags . ("duis" "non" "consectetur" "et" "cillum" "culpa" "aute")) (friends . (#((id . 0) (name . "Kitty Terrell")) #((id . 1) (name . "Benita Roth")) #((id . 2) (name . "Elinor Daniel")))) (greeting . "Hello, Alberta Perry! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302177e1dc824d95e3d6d") (index . 357) (guid . "8497b12c-cc07-4534-906e-53b252c5b703") (isActive . True) (balance . "$3,204.79") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "brown") (name . "Ina Knight") (gender . "female") (company . "TROPOLIS") (email . "inaknight@tropolis.com") (phone . "+1 (894) 540-3293") (address . "203 Wallabout Street, Longoria, Washington, 9537") (about . "Dolore enim ullamco magna do deserunt aliqua. Sit cupidatat quis incididunt sunt nisi sint nostrud proident fugiat commodo aliquip amet laboris. Deserunt aliquip nostrud sunt exercitation nulla eiusmod elit laboris excepteur. Fugiat proident sunt fugiat labore pariatur et ad veniam esse voluptate nostrud. Anim duis nulla incididunt nisi ad sunt culpa. Laboris enim enim aute elit ipsum in reprehenderit nostrud.\r\n") (registered . "2017-06-06T07:40:10 +06:00") (latitude . 67.37808) (longitude . 89.122964) (tags . ("cillum" "in" "id" "eiusmod" "sunt" "fugiat" "do")) (friends . (#((id . 0) (name . "Osborn Bender")) #((id . 1) (name . "Williamson Terry")) #((id . 2) (name . "Bettye Strong")))) (greeting . "Hello, Ina Knight! You have 7 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217eee78fbf9249e955") (index . 358) (guid . "417f20fc-9f44-4bdc-ba55-88c38d3a42c5") (isActive . True) (balance . "$3,597.37") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "blue") (name . "Kristin Johnson") (gender . "female") (company . "ZAPHIRE") (email . "kristinjohnson@zaphire.com") (phone . "+1 (977) 455-2695") (address . "911 Howard Place, Tuskahoma, Oklahoma, 6302") (about . "Minim exercitation elit ut aute. Occaecat deserunt amet duis anim commodo veniam fugiat non. Eu aute minim minim anim anim aliqua dolore ex exercitation proident et reprehenderit adipisicing. Consequat aliquip elit sint consequat sunt voluptate amet cillum Lorem ad occaecat. Pariatur adipisicing velit consectetur ut id sint ut id exercitation. Ex eiusmod exercitation magna non exercitation. Quis ex excepteur anim officia est cupidatat consequat duis est fugiat aliquip est cupidatat amet.\r\n") (registered . "2017-10-19T07:16:51 +06:00") (latitude . -83.973073) (longitude . 6.220692) (tags . ("et" "enim" "dolore" "elit" "elit" "veniam" "aute")) (friends . (#((id . 0) (name . "Kimberley Cantu")) #((id . 1) (name . "Silva Warner")) #((id . 2) (name . "Eunice Ruiz")))) (greeting . "Hello, Kristin Johnson! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217507643b4afc02133") (index . 359) (guid . "90a60a90-4004-46d6-8777-5ff121bde8a9") (isActive . False) (balance . "$3,542.69") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "blue") (name . "Newton Christensen") (gender . "male") (company . "CUIZINE") (email . "newtonchristensen@cuizine.com") (phone . "+1 (835) 432-2009") (address . "541 Perry Terrace, Norris, Kentucky, 2687") (about . "Qui proident ad et Lorem. Excepteur velit magna aliquip culpa occaecat esse ad proident ea officia. Mollit aute adipisicing ipsum ullamco. Fugiat reprehenderit aliquip aliquip qui do consectetur aliqua nulla velit exercitation anim amet culpa. Enim esse dolor deserunt tempor est amet qui. Est in dolore laboris aliqua.\r\n") (registered . "2016-02-09T08:59:37 +07:00") (latitude . 45.759531) (longitude . -23.555512) (tags . ("quis" "consectetur" "eiusmod" "magna" "ullamco" "dolore" "reprehenderit")) (friends . (#((id . 0) (name . "Fannie Lara")) #((id . 1) (name . "Mendoza Lucas")) #((id . 2) (name . "Whitney Strickland")))) (greeting . "Hello, Newton Christensen! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217877e729503922d08") (index . 360) (guid . "36cd5f48-d1e8-4062-b146-41ec5c204100") (isActive . False) (balance . "$1,701.03") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "blue") (name . "Beulah Todd") (gender . "female") (company . "BRISTO") (email . "beulahtodd@bristo.com") (phone . "+1 (906) 430-3551") (address . "831 Neptune Court, Crisman, Alabama, 4755") (about . "Aliquip do aliquip qui ullamco minim dolor. Veniam magna elit dolore anim veniam enim enim. Esse voluptate dolor proident enim culpa sunt sit ea. Veniam laborum veniam consequat reprehenderit veniam exercitation ad. Mollit occaecat aute aliquip cillum nisi est culpa sit laboris enim laboris reprehenderit ex. Quis qui laboris sit nisi aute in.\r\n") (registered . "2015-11-14T06:36:41 +07:00") (latitude . 81.453796) (longitude . 15.478882) (tags . ("amet" "esse" "nulla" "esse" "magna" "velit" "ullamco")) (friends . (#((id . 0) (name . "Nash Head")) #((id . 1) (name . "Geneva Decker")) #((id . 2) (name . "Hughes Hebert")))) (greeting . "Hello, Beulah Todd! You have 2 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021773878e1028579998") (index . 361) (guid . "7f5567a1-b089-4580-93aa-336cd3fd5b37") (isActive . False) (balance . "$2,579.99") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "blue") (name . "Cassie Kemp") (gender . "female") (company . "SONIQUE") (email . "cassiekemp@sonique.com") (phone . "+1 (913) 580-2604") (address . "954 Cheever Place, Vaughn, West Virginia, 2446") (about . "Adipisicing laborum est sit dolore fugiat proident velit occaecat adipisicing ut dolore velit magna. Et fugiat veniam in excepteur proident. Aliquip nisi deserunt reprehenderit proident elit do in fugiat consequat in ex ipsum. Cillum excepteur in esse occaecat nulla ex elit laboris laborum. Tempor incididunt sint in elit tempor ipsum ea ullamco velit eu tempor consectetur cupidatat. Voluptate ad ut qui nisi culpa ipsum culpa ad esse mollit ullamco.\r\n") (registered . "2018-02-23T06:30:16 +07:00") (latitude . 65.098786) (longitude . -68.782455) (tags . ("consectetur" "velit" "est" "ullamco" "exercitation" "amet" "irure")) (friends . (#((id . 0) (name . "Saundra Malone")) #((id . 1) (name . "Chan Roach")) #((id . 2) (name . "Elma Gibson")))) (greeting . "Hello, Cassie Kemp! You have 2 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302175728c736ac1d0724") (index . 362) (guid . "e4f55c8a-d978-41f0-995a-967129aabcb5") (isActive . True) (balance . "$3,351.28") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "brown") (name . "Guadalupe Waller") (gender . "female") (company . "ZILLACOM") (email . "guadalupewaller@zillacom.com") (phone . "+1 (938) 511-3185") (address . "857 Jefferson Street, Trucksville, Ohio, 1384") (about . "Aute ipsum pariatur cupidatat proident ullamco est. Adipisicing eu duis sit amet laboris sit aliquip. Amet sit amet eiusmod commodo esse reprehenderit elit cillum ut eu labore velit.\r\n") (registered . "2017-06-21T11:25:59 +06:00") (latitude . 48.406279) (longitude . -1.742472) (tags . ("nulla" "sit" "quis" "do" "exercitation" "aliquip" "veniam")) (friends . (#((id . 0) (name . "Mckenzie Nash")) #((id . 1) (name . "Pitts Moss")) #((id . 2) (name . "Erica Hodge")))) (greeting . "Hello, Guadalupe Waller! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217ff056fc8dff89cfa") (index . 363) (guid . "5c094a8a-c65d-4470-a895-c6c4fabbb653") (isActive . False) (balance . "$3,688.58") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "brown") (name . "Twila Armstrong") (gender . "female") (company . "CODACT") (email . "twilaarmstrong@codact.com") (phone . "+1 (975) 503-3371") (address . "563 Grand Street, Beyerville, Connecticut, 8856") (about . "Mollit officia magna laboris ad in sint. Excepteur adipisicing sit exercitation cillum veniam in. Dolor duis aliquip ipsum voluptate labore cillum do fugiat ullamco esse voluptate officia culpa. Consectetur officia labore id commodo adipisicing ad aliqua consequat aliqua laboris aliquip officia.\r\n") (registered . "2016-03-10T08:32:01 +07:00") (latitude . 5.86048) (longitude . -9.12915) (tags . ("consectetur" "reprehenderit" "occaecat" "voluptate" "pariatur" "consectetur" "eu")) (friends . (#((id . 0) (name . "Aileen Fry")) #((id . 1) (name . "Hardin Sykes")) #((id . 2) (name . "Ilene Carr")))) (greeting . "Hello, Twila Armstrong! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302179aa278e2866ffe5f") (index . 364) (guid . "7536d62d-00ca-4de2-99ae-671c502e53ef") (isActive . True) (balance . "$3,512.73") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Lamb Wynn") (gender . "male") (company . "BOINK") (email . "lambwynn@boink.com") (phone . "+1 (819) 450-2057") (address . "232 Debevoise Avenue, Hall, North Dakota, 2668") (about . "Amet fugiat ex veniam aliqua aliquip est nulla fugiat voluptate ex cillum minim culpa. Nulla sunt occaecat sit aliquip aliquip dolor pariatur nulla laborum esse cillum aliqua dolore magna. Do exercitation laborum enim mollit adipisicing est cupidatat voluptate magna. Et minim laboris ullamco nisi laboris aute voluptate commodo. Id nostrud enim pariatur laboris labore nisi consectetur ex ullamco irure magna ex.\r\n") (registered . "2015-05-10T10:05:34 +06:00") (latitude . -21.35342) (longitude . -132.108271) (tags . ("reprehenderit" "occaecat" "proident" "irure" "dolore" "officia" "tempor")) (friends . (#((id . 0) (name . "Mejia Ellison")) #((id . 1) (name . "Roberts Cummings")) #((id . 2) (name . "Tyson Obrien")))) (greeting . "Hello, Lamb Wynn! You have 2 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302179d6e59c32592a2c5") (index . 365) (guid . "e7d3ad62-3424-4a62-8018-96a2a8ad2d41") (isActive . False) (balance . "$2,797.88") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "green") (name . "Collins Mcclain") (gender . "male") (company . "QUANTASIS") (email . "collinsmcclain@quantasis.com") (phone . "+1 (851) 400-2030") (address . "991 Bragg Street, Brazos, Mississippi, 2670") (about . "Adipisicing pariatur non ea culpa magna. Quis ea labore enim consectetur fugiat non ad minim dolor. Lorem in reprehenderit labore sit non velit cupidatat deserunt. Enim cillum dolore in aute do amet et sunt. Dolore proident tempor culpa eu. Quis sit nulla ex eiusmod non fugiat anim voluptate sunt sit excepteur. Eiusmod eiusmod ut incididunt sit Lorem adipisicing labore.\r\n") (registered . "2014-12-06T11:55:05 +07:00") (latitude . 84.663883) (longitude . 3.587713) (tags . ("nulla" "proident" "commodo" "consectetur" "qui" "elit" "nisi")) (friends . (#((id . 0) (name . "Vincent Travis")) #((id . 1) (name . "Florence Jackson")) #((id . 2) (name . "Stacie Craig")))) (greeting . "Hello, Collins Mcclain! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021763cf9a7bc9426330") (index . 366) (guid . "b793ba2d-122b-48b4-bb2b-9cb3d962686d") (isActive . False) (balance . "$1,685.53") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "green") (name . "Silvia Whitley") (gender . "female") (company . "GALLAXIA") (email . "silviawhitley@gallaxia.com") (phone . "+1 (923) 559-2904") (address . "335 Sandford Street, Yettem, New York, 9840") (about . "Et enim amet et pariatur pariatur eu nulla voluptate. Ad fugiat minim velit magna sint sit qui velit occaecat consectetur tempor sit do. Ut adipisicing aliquip consectetur adipisicing ipsum nostrud sunt do ut. Aliquip dolore fugiat culpa laborum. Elit esse ex enim tempor magna nulla minim eu Lorem duis qui id.\r\n") (registered . "2017-05-26T12:31:27 +06:00") (latitude . 32.319844) (longitude . 66.33086) (tags . ("nostrud" "deserunt" "ex" "laboris" "pariatur" "ullamco" "veniam")) (friends . (#((id . 0) (name . "Katrina Green")) #((id . 1) (name . "Minnie Jacobson")) #((id . 2) (name . "Nadine Chen")))) (greeting . "Hello, Silvia Whitley! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021759895a661a638e73") (index . 367) (guid . "9a190cae-f00a-4733-97ef-84df2ece7b8e") (isActive . True) (balance . "$2,054.33") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "blue") (name . "Strickland Harrington") (gender . "male") (company . "OPTICOM") (email . "stricklandharrington@opticom.com") (phone . "+1 (936) 433-2596") (address . "232 Wythe Avenue, Eagletown, Oregon, 4141") (about . "Sit aute occaecat cillum dolor reprehenderit. Aliqua commodo eiusmod consequat est proident aute magna velit voluptate amet eu deserunt laboris cillum. Mollit laborum Lorem ad non exercitation anim culpa irure. Est sunt duis laborum dolore.\r\n") (registered . "2015-08-08T05:53:22 +06:00") (latitude . 88.572236) (longitude . 62.9199) (tags . ("non" "id" "do" "est" "excepteur" "mollit" "amet")) (friends . (#((id . 0) (name . "Hewitt Underwood")) #((id . 1) (name . "Byers Barrett")) #((id . 2) (name . "Lana Jensen")))) (greeting . "Hello, Strickland Harrington! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302171f888d9f8fae2ae6") (index . 368) (guid . "e7231a25-037f-404f-8c65-8109aff50c8b") (isActive . False) (balance . "$2,331.64") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "green") (name . "Beverly Marshall") (gender . "female") (company . "SOFTMICRO") (email . "beverlymarshall@softmicro.com") (phone . "+1 (896) 535-3034") (address . "985 Elton Street, Choctaw, New Jersey, 6699") (about . "Cupidatat ex quis ex sunt culpa dolor ea aliquip fugiat id laborum. Sint in ad Lorem eiusmod. In est nisi commodo mollit esse anim laboris est sit tempor nulla.\r\n") (registered . "2016-07-08T12:30:49 +06:00") (latitude . 20.431722) (longitude . -153.683972) (tags . ("ex" "magna" "sit" "nisi" "reprehenderit" "aliquip" "est")) (friends . (#((id . 0) (name . "Darla Robbins")) #((id . 1) (name . "Hammond Shannon")) #((id . 2) (name . "Leann Byers")))) (greeting . "Hello, Beverly Marshall! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302170223f15ee5d75da4") (index . 369) (guid . "dd13fcfe-1386-4748-bf42-a6ef5638d18d") (isActive . False) (balance . "$3,280.41") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "brown") (name . "Kristi Buchanan") (gender . "female") (company . "FOSSIEL") (email . "kristibuchanan@fossiel.com") (phone . "+1 (900) 537-2765") (address . "211 Farragut Road, Hachita, Montana, 640") (about . "Magna tempor non quis sit. Proident anim incididunt tempor laborum mollit. In aute anim ut ex non excepteur non qui. Proident qui magna et consequat consequat aliqua aliqua enim mollit eu sint consectetur. Sint et amet consequat aute laborum laborum aliqua eu sint occaecat labore elit incididunt.\r\n") (registered . "2014-05-15T03:37:09 +06:00") (latitude . 10.815672) (longitude . -117.362086) (tags . ("ea" "duis" "cupidatat" "occaecat" "nisi" "minim" "enim")) (friends . (#((id . 0) (name . "Juliana Meyers")) #((id . 1) (name . "Irma Sosa")) #((id . 2) (name . "Neal Hurst")))) (greeting . "Hello, Kristi Buchanan! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217f0411f8213a99caa") (index . 370) (guid . "85e9f334-7f49-46de-b3b6-d6d43c0981f0") (isActive . True) (balance . "$1,177.70") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "blue") (name . "Armstrong Brown") (gender . "male") (company . "DARWINIUM") (email . "armstrongbrown@darwinium.com") (phone . "+1 (885) 410-3422") (address . "212 Herbert Street, Bergoo, Nevada, 3099") (about . "Mollit mollit do aliquip nostrud irure proident cupidatat. Velit nisi amet cupidatat in cupidatat minim qui ea est. Ut deserunt culpa Lorem irure tempor exercitation nisi fugiat Lorem. Est cupidatat consectetur esse velit. Id do ex ipsum aliqua. Veniam cupidatat deserunt anim exercitation non cupidatat ea irure esse est id sint occaecat est. Incididunt dolore qui do est aliqua.\r\n") (registered . "2016-06-28T06:40:58 +06:00") (latitude . -22.176116) (longitude . 23.449105) (tags . ("magna" "consequat" "velit" "excepteur" "ea" "sit" "esse")) (friends . (#((id . 0) (name . "Sharon Fernandez")) #((id . 1) (name . "Livingston Gilbert")) #((id . 2) (name . "Jordan Golden")))) (greeting . "Hello, Armstrong Brown! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302176d3d0c413e0ddf83") (index . 371) (guid . "d25cc2e8-cebb-4655-8b64-e299a3a755ba") (isActive . True) (balance . "$3,105.78") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "green") (name . "Kristie Maldonado") (gender . "female") (company . "ACCEL") (email . "kristiemaldonado@accel.com") (phone . "+1 (898) 528-3927") (address . "214 Dean Street, Interlochen, Colorado, 374") (about . "Ut do elit do eiusmod. Dolore non ut tempor sit elit. Cillum nostrud enim anim mollit Lorem ea aliqua sunt qui cupidatat ea incididunt nostrud sunt. Amet laborum dolore ex adipisicing aliquip eiusmod est deserunt duis incididunt irure nisi velit incididunt. Laborum occaecat occaecat labore pariatur quis voluptate eu voluptate.\r\n") (registered . "2015-09-22T11:05:11 +06:00") (latitude . 23.308197) (longitude . 59.829758) (tags . ("nostrud" "culpa" "aliqua" "dolore" "duis" "voluptate" "anim")) (friends . (#((id . 0) (name . "Simon Mclaughlin")) #((id . 1) (name . "Sandoval Blankenship")) #((id . 2) (name . "Rosalyn Kirk")))) (greeting . "Hello, Kristie Maldonado! You have 2 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302174921838c1d016679") (index . 372) (guid . "29f85ec7-a426-442b-a521-b25834f91173") (isActive . True) (balance . "$3,334.51") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "brown") (name . "Ann Atkins") (gender . "female") (company . "TALAE") (email . "annatkins@talae.com") (phone . "+1 (836) 420-2859") (address . "281 Seba Avenue, Homeworth, New Mexico, 9848") (about . "Nulla tempor nulla velit deserunt. Qui exercitation consectetur excepteur ipsum ad sint eu eu. Proident deserunt qui pariatur tempor voluptate culpa aliquip in et excepteur in. Nisi adipisicing ipsum cillum quis anim fugiat elit adipisicing Lorem sunt sint culpa laborum consequat. Occaecat duis officia labore sit. Nisi aliquip do irure incididunt labore reprehenderit labore aliqua sunt deserunt labore.\r\n") (registered . "2016-07-07T07:39:37 +06:00") (latitude . -80.228477) (longitude . 55.654772) (tags . ("esse" "laboris" "consequat" "adipisicing" "dolore" "Lorem" "anim")) (friends . (#((id . 0) (name . "Blevins Fuentes")) #((id . 1) (name . "Burnett Barry")) #((id . 2) (name . "Alisha Lester")))) (greeting . "Hello, Ann Atkins! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302174379fa9e75aaa114") (index . 373) (guid . "ac440a2c-cb45-44c7-a13e-88287aa387b1") (isActive . False) (balance . "$2,076.32") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "green") (name . "Kirkland Pruitt") (gender . "male") (company . "JASPER") (email . "kirklandpruitt@jasper.com") (phone . "+1 (842) 474-3490") (address . "419 Wythe Place, Stockwell, Texas, 9557") (about . "Et est sit ea ipsum esse fugiat deserunt pariatur nostrud consequat sint tempor ut irure. Fugiat nisi incididunt duis tempor anim qui. Tempor esse tempor proident officia amet et. Sit labore proident tempor sunt duis eu amet do et ut voluptate do. Consectetur ullamco enim duis consequat amet velit eu occaecat minim. Est quis cillum incididunt cillum enim ex ex officia ex reprehenderit aliqua ut quis. Reprehenderit nisi commodo ut sint ad velit tempor ea cillum duis.\r\n") (registered . "2016-10-11T06:48:41 +06:00") (latitude . -17.300505) (longitude . 90.270497) (tags . ("velit" "nisi" "ad" "tempor" "aute" "adipisicing" "ut")) (friends . (#((id . 0) (name . "Brandy Buck")) #((id . 1) (name . "Boyd Sanchez")) #((id . 2) (name . "Milagros Brock")))) (greeting . "Hello, Kirkland Pruitt! You have 2 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302175845484514c14504") (index . 374) (guid . "94601e51-17c9-4615-a8df-189381ed217c") (isActive . False) (balance . "$3,838.87") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "green") (name . "Alyson Schmidt") (gender . "female") (company . "MICROLUXE") (email . "alysonschmidt@microluxe.com") (phone . "+1 (890) 512-3976") (address . "577 Robert Street, Cherokee, North Carolina, 609") (about . "Id nisi ea duis laborum adipisicing laborum. Et aute tempor aliquip ex exercitation laborum magna exercitation reprehenderit nostrud cillum nostrud voluptate. Velit excepteur qui labore officia. Deserunt dolor velit qui dolor ea sint in aliqua.\r\n") (registered . "2015-04-15T02:41:03 +06:00") (latitude . 38.376919) (longitude . 22.913172) (tags . ("ullamco" "nisi" "sit" "est" "sit" "adipisicing" "occaecat")) (friends . (#((id . 0) (name . "Reyes Thompson")) #((id . 1) (name . "Robbie Fisher")) #((id . 2) (name . "Lowery Hampton")))) (greeting . "Hello, Alyson Schmidt! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217314d8314985200f7") (index . 375) (guid . "48324508-5f2e-44ed-9b73-7620b5ee1010") (isActive . False) (balance . "$3,204.13") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "brown") (name . "Tillman Tillman") (gender . "male") (company . "HOMELUX") (email . "tillmantillman@homelux.com") (phone . "+1 (985) 565-2538") (address . "578 Bristol Street, Corriganville, Nebraska, 3799") (about . "Dolore labore velit aliquip minim ut aliqua culpa ipsum ex nostrud ut. Veniam excepteur qui ullamco velit cillum occaecat fugiat eu quis aliqua occaecat. Sint cupidatat nisi laborum reprehenderit consectetur. Irure amet aliquip veniam pariatur exercitation proident officia et excepteur eiusmod occaecat in veniam. Sint cupidatat tempor ea eu in. Adipisicing occaecat fugiat cupidatat deserunt consequat exercitation deserunt dolore cillum do qui.\r\n") (registered . "2015-07-09T09:17:30 +06:00") (latitude . 33.535393) (longitude . 77.282095) (tags . ("velit" "ut" "velit" "cillum" "laborum" "cupidatat" "velit")) (friends . (#((id . 0) (name . "Mia Hale")) #((id . 1) (name . "Anderson Black")) #((id . 2) (name . "Mari Koch")))) (greeting . "Hello, Tillman Tillman! You have 7 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021787e9a0b0ea1180c2") (index . 376) (guid . "b74e2772-1379-4488-8051-ef76f476c2be") (isActive . False) (balance . "$3,869.50") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "green") (name . "Perry Haynes") (gender . "male") (company . "BLURRYBUS") (email . "perryhaynes@blurrybus.com") (phone . "+1 (845) 581-3958") (address . "831 Dahl Court, Marshall, Tennessee, 2122") (about . "Occaecat eiusmod nostrud elit pariatur. Mollit deserunt ea enim eiusmod velit deserunt dolor mollit. Ipsum non do eiusmod quis laborum nisi amet eu. Elit dolore incididunt ad id culpa. Pariatur ex Lorem ex exercitation. Non veniam pariatur sit ipsum duis voluptate est. Aliquip ut ad irure non laboris aliquip est sunt voluptate ullamco id laboris.\r\n") (registered . "2016-02-02T08:47:55 +07:00") (latitude . 63.583783) (longitude . 137.919264) (tags . ("veniam" "dolor" "mollit" "amet" "proident" "ullamco" "pariatur")) (friends . (#((id . 0) (name . "Leon Burt")) #((id . 1) (name . "Larson Preston")) #((id . 2) (name . "Valenzuela Baker")))) (greeting . "Hello, Perry Haynes! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021722a9013e5faa65ca") (index . 377) (guid . "4a9f6981-9441-408f-b22b-66d00141dc84") (isActive . True) (balance . "$3,390.95") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "brown") (name . "Deanna Mendez") (gender . "female") (company . "PHARMEX") (email . "deannamendez@pharmex.com") (phone . "+1 (884) 431-3430") (address . "947 Virginia Place, Lafferty, Utah, 2881") (about . "Nostrud cupidatat occaecat non aliqua ullamco minim tempor reprehenderit fugiat laboris duis consectetur occaecat. Pariatur enim cupidatat et adipisicing sunt voluptate ad dolore qui. Irure quis tempor magna et Lorem fugiat tempor sit mollit ipsum officia est. Commodo tempor dolore irure eu nostrud minim exercitation ea reprehenderit sit. Sunt officia deserunt do aute nisi.\r\n") (registered . "2014-06-02T09:14:37 +06:00") (latitude . 27.551314) (longitude . -148.417502) (tags . ("labore" "eu" "deserunt" "sint" "veniam" "cupidatat" "voluptate")) (friends . (#((id . 0) (name . "Davidson Rogers")) #((id . 1) (name . "Francis Middleton")) #((id . 2) (name . "Raymond Rose")))) (greeting . "Hello, Deanna Mendez! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302173b8e9999adf3ad63") (index . 378) (guid . "3b0b1a41-a0e3-4a2f-916f-5a86e7705a97") (isActive . True) (balance . "$2,691.10") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "brown") (name . "Loraine Dotson") (gender . "female") (company . "PROWASTE") (email . "lorainedotson@prowaste.com") (phone . "+1 (831) 482-2440") (address . "671 Hicks Street, Coyote, Marshall Islands, 1240") (about . "Veniam minim quis tempor esse non sit magna nisi deserunt consequat cillum. Cillum fugiat voluptate magna ad ut voluptate velit. Ad nostrud excepteur et fugiat fugiat dolore minim culpa nisi. Nostrud dolor mollit pariatur est fugiat consectetur adipisicing do consectetur. Magna irure mollit amet incididunt id amet anim irure amet.\r\n") (registered . "2015-01-08T09:15:11 +07:00") (latitude . -6.19047) (longitude . 34.326948) (tags . ("deserunt" "enim" "anim" "id" "reprehenderit" "incididunt" "ut")) (friends . (#((id . 0) (name . "Leanna Patrick")) #((id . 1) (name . "Vaughan Grant")) #((id . 2) (name . "Dodson Gregory")))) (greeting . "Hello, Loraine Dotson! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217e7aa3ad4b2aebf1a") (index . 379) (guid . "d85038cd-02f7-4dc7-9844-cd1492cae330") (isActive . False) (balance . "$1,246.11") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Massey Wilkerson") (gender . "male") (company . "GEEKFARM") (email . "masseywilkerson@geekfarm.com") (phone . "+1 (937) 434-3600") (address . "883 Kossuth Place, Tampico, Georgia, 8286") (about . "Cillum enim dolor dolore ea officia. Excepteur adipisicing do veniam aliqua laboris do voluptate aute eiusmod. Ex in et laboris quis incididunt fugiat.\r\n") (registered . "2017-12-01T12:24:53 +07:00") (latitude . -11.962395) (longitude . 69.755444) (tags . ("officia" "quis" "sint" "aliquip" "excepteur" "adipisicing" "amet")) (friends . (#((id . 0) (name . "Tammy Dunlap")) #((id . 1) (name . "Lelia Gibbs")) #((id . 2) (name . "Morrison Solis")))) (greeting . "Hello, Massey Wilkerson! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302176e6f9a6d9c9ccc17") (index . 380) (guid . "d5a66938-f8f7-453a-b33d-578074f9bd77") (isActive . False) (balance . "$1,197.25") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "blue") (name . "Lily Bolton") (gender . "female") (company . "ZOMBOID") (email . "lilybolton@zomboid.com") (phone . "+1 (988) 596-3791") (address . "363 Hampton Avenue, Trail, Massachusetts, 9680") (about . "Sint occaecat est nostrud nulla ipsum. Consequat labore incididunt et aute labore dolor esse qui eiusmod nisi sit non ex. Ea eiusmod incididunt laboris deserunt veniam sunt commodo veniam fugiat est. Ea dolore reprehenderit non enim reprehenderit fugiat duis irure. Veniam irure ex et cupidatat tempor ipsum quis velit dolore incididunt. Esse pariatur aliqua occaecat exercitation laboris consequat eiusmod amet et nisi aliqua esse quis. Sunt sit sint eu qui enim commodo labore aliquip.\r\n") (registered . "2015-07-03T09:27:48 +06:00") (latitude . 29.834133) (longitude . 72.414788) (tags . ("tempor" "irure" "elit" "dolore" "incididunt" "sint" "sunt")) (friends . (#((id . 0) (name . "Cleveland Hamilton")) #((id . 1) (name . "Katie Salazar")) #((id . 2) (name . "Lacey Ashley")))) (greeting . "Hello, Lily Bolton! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021747605d60a143389c") (index . 381) (guid . "084236e0-df92-4b9a-9a22-fd2d7ff49647") (isActive . False) (balance . "$2,199.09") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "green") (name . "Workman Graves") (gender . "male") (company . "QUIZMO") (email . "workmangraves@quizmo.com") (phone . "+1 (901) 421-3269") (address . "827 Brigham Street, Emerald, Arizona, 9669") (about . "Qui dolor est irure nulla enim aliquip enim. Elit et amet in aute ullamco do. Ea eu sint voluptate exercitation proident est eu ex exercitation est. Excepteur Lorem deserunt sunt magna nisi ad sunt.\r\n") (registered . "2018-03-08T10:27:55 +07:00") (latitude . 30.319014) (longitude . 64.214631) (tags . ("esse" "pariatur" "dolor" "aliqua" "magna" "mollit" "id")) (friends . (#((id . 0) (name . "Wendy Phelps")) #((id . 1) (name . "Roberson Roberts")) #((id . 2) (name . "Pickett Sanders")))) (greeting . "Hello, Workman Graves! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217985b63c341124ee5") (index . 382) (guid . "06da00b0-4221-4c9e-96f9-10733a51418b") (isActive . True) (balance . "$2,533.17") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "brown") (name . "Carrie Wright") (gender . "female") (company . "PASTURIA") (email . "carriewright@pasturia.com") (phone . "+1 (816) 473-2264") (address . "319 Kings Hwy, Sattley, District Of Columbia, 9515") (about . "Eiusmod est duis aliquip irure amet reprehenderit laborum proident. Exercitation mollit nostrud Lorem eu nostrud quis. Anim ea reprehenderit quis esse. Mollit elit sit culpa id duis est non cupidatat mollit elit.\r\n") (registered . "2015-01-30T09:57:50 +07:00") (latitude . -43.515297) (longitude . 133.234017) (tags . ("occaecat" "do" "mollit" "do" "aliqua" "cupidatat" "occaecat")) (friends . (#((id . 0) (name . "Castro Gilmore")) #((id . 1) (name . "Black Landry")) #((id . 2) (name . "Jeri Ramirez")))) (greeting . "Hello, Carrie Wright! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302179e6da6dceec72329") (index . 383) (guid . "3018f7f9-e61f-467f-b243-7e920aebe358") (isActive . False) (balance . "$1,084.30") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "blue") (name . "Emma Keller") (gender . "female") (company . "QIAO") (email . "emmakeller@qiao.com") (phone . "+1 (899) 510-3245") (address . "815 Dunham Place, Roberts, Virgin Islands, 1348") (about . "Non id ipsum laboris ullamco. Enim adipisicing ut adipisicing tempor et aute. Cillum ipsum anim elit duis velit exercitation eu ullamco incididunt. Incididunt commodo sint eiusmod culpa adipisicing est et quis ea nulla. Nostrud ipsum ex ipsum culpa laborum eu eiusmod irure ex ad qui ex qui minim. Minim labore cupidatat minim pariatur officia non sint eiusmod.\r\n") (registered . "2017-08-20T09:55:16 +06:00") (latitude . 72.785635) (longitude . -148.137329) (tags . ("exercitation" "ea" "eu" "consequat" "Lorem" "irure" "laborum")) (friends . (#((id . 0) (name . "Webb Franklin")) #((id . 1) (name . "Carmen Barrera")) #((id . 2) (name . "Frye Dickson")))) (greeting . "Hello, Emma Keller! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217c8097b2fee707ba3") (index . 384) (guid . "2b9102b7-3228-4417-b5f7-88759f4893a2") (isActive . False) (balance . "$1,466.76") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "green") (name . "Ashley Burgess") (gender . "male") (company . "DIGIGENE") (email . "ashleyburgess@digigene.com") (phone . "+1 (861) 415-3608") (address . "524 Pershing Loop, Summerset, South Dakota, 1385") (about . "Est adipisicing occaecat ullamco ea esse proident cillum et reprehenderit do cupidatat excepteur mollit amet. Quis eu labore labore quis culpa ipsum sint incididunt irure ipsum. Nulla officia aliqua esse velit reprehenderit dolor ipsum enim consequat fugiat ad ex pariatur consequat. Deserunt ea do tempor veniam nulla. Ullamco ullamco ullamco do pariatur amet commodo ea irure sit culpa eiusmod sint amet laborum. Exercitation reprehenderit duis duis minim laborum et do sint cupidatat amet ea sint eu voluptate. Qui qui magna elit ad sit.\r\n") (registered . "2014-06-28T01:30:39 +06:00") (latitude . 8.858224) (longitude . 120.346624) (tags . ("excepteur" "voluptate" "cillum" "ut" "nulla" "magna" "tempor")) (friends . (#((id . 0) (name . "Jenkins Potts")) #((id . 1) (name . "Lottie Miranda")) #((id . 2) (name . "Henderson Fitzpatrick")))) (greeting . "Hello, Ashley Burgess! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217c600b60ecc64be92") (index . 385) (guid . "a84e3405-7b69-4e0a-a706-3805d456981a") (isActive . False) (balance . "$3,703.95") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "brown") (name . "Decker Irwin") (gender . "male") (company . "REPETWIRE") (email . "deckerirwin@repetwire.com") (phone . "+1 (877) 459-2247") (address . "831 Harway Avenue, Worton, Virginia, 2921") (about . "Minim ex cillum cillum ex labore deserunt exercitation. Commodo occaecat laboris sit proident labore do dolor veniam sunt sunt dolor labore. Cillum sint sit ipsum ad elit amet cillum mollit laboris enim dolor duis. Exercitation occaecat enim laborum sit. Sunt voluptate Lorem consectetur minim esse culpa sint laboris proident ut exercitation ut. Culpa occaecat quis incididunt non culpa ad nulla occaecat. Cillum enim proident sint aliquip non ullamco occaecat exercitation eu sit.\r\n") (registered . "2016-09-13T07:50:36 +06:00") (latitude . -1.975943) (longitude . -167.617087) (tags . ("commodo" "commodo" "eiusmod" "laboris" "irure" "ea" "eu")) (friends . (#((id . 0) (name . "Gentry Boyd")) #((id . 1) (name . "Stanley Finley")) #((id . 2) (name . "Lynne Giles")))) (greeting . "Hello, Decker Irwin! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302177106922bd4438a5f") (index . 386) (guid . "f892f55d-6ae8-4e84-bed7-2d73120614c9") (isActive . True) (balance . "$3,286.67") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "green") (name . "Eloise Hardin") (gender . "female") (company . "AFFLUEX") (email . "eloisehardin@affluex.com") (phone . "+1 (879) 409-2511") (address . "557 Willoughby Street, Dunnavant, Michigan, 4945") (about . "Dolor consequat pariatur aliqua cupidatat occaecat eiusmod ullamco eiusmod quis ex. Elit velit mollit qui qui elit nostrud. Voluptate officia consectetur ad cupidatat veniam nisi enim. Cillum officia duis occaecat cupidatat voluptate est commodo sint. Consequat cillum ea ad irure ex elit. Qui quis ipsum in nisi ullamco non anim non nulla elit deserunt esse voluptate.\r\n") (registered . "2015-06-25T02:57:19 +06:00") (latitude . 30.183605) (longitude . -43.743436) (tags . ("exercitation" "reprehenderit" "irure" "duis" "sit" "magna" "in")) (friends . (#((id . 0) (name . "Hutchinson Case")) #((id . 1) (name . "Parrish Castillo")) #((id . 2) (name . "Erma Clayton")))) (greeting . "Hello, Eloise Hardin! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302174db29141debff99e") (index . 387) (guid . "3432d89a-8e4f-4b32-826d-085e3b5bba9f") (isActive . True) (balance . "$2,804.89") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "brown") (name . "Lucas Sharpe") (gender . "male") (company . "QUANTALIA") (email . "lucassharpe@quantalia.com") (phone . "+1 (834) 480-3311") (address . "217 Cyrus Avenue, Greenbackville, Northern Mariana Islands, 3980") (about . "Eiusmod commodo fugiat cupidatat dolor esse est proident eu nisi nisi occaecat. Exercitation aliquip ea ut adipisicing eiusmod. Velit dolore sunt exercitation cillum cillum sit nisi. Nisi aute laborum occaecat voluptate esse non. Quis ullamco irure ipsum id est mollit esse quis. Sunt pariatur occaecat id consequat commodo aute excepteur culpa deserunt magna anim occaecat in.\r\n") (registered . "2015-01-23T02:25:53 +07:00") (latitude . -23.761318) (longitude . -44.832621) (tags . ("aute" "fugiat" "do" "laboris" "Lorem" "nostrud" "quis")) (friends . (#((id . 0) (name . "Lauri Clements")) #((id . 1) (name . "Teresa Duke")) #((id . 2) (name . "Sargent Carney")))) (greeting . "Hello, Lucas Sharpe! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217810ce731f8d50d7f") (index . 388) (guid . "82d4e6e0-c9d0-4d05-9d87-1d152a3bba0d") (isActive . False) (balance . "$1,995.28") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "brown") (name . "Irwin Burch") (gender . "male") (company . "MIXERS") (email . "irwinburch@mixers.com") (phone . "+1 (902) 560-2583") (address . "652 Sumpter Street, Freelandville, Illinois, 306") (about . "Qui aliquip ullamco deserunt tempor officia sit cillum adipisicing adipisicing ullamco voluptate aliquip in ea. Ipsum ea officia enim duis dolor elit velit non tempor officia. Ex veniam aliquip excepteur quis dolor ex incididunt reprehenderit enim proident ipsum pariatur minim. Dolor fugiat et cillum fugiat ipsum eiusmod est eu voluptate veniam sit id cupidatat occaecat. Non id officia est nostrud cillum.\r\n") (registered . "2015-08-31T08:01:12 +06:00") (latitude . -25.430569) (longitude . -105.677116) (tags . ("enim" "tempor" "consectetur" "cillum" "aliqua" "amet" "culpa")) (friends . (#((id . 0) (name . "Parker Love")) #((id . 1) (name . "Merle Bean")) #((id . 2) (name . "Olive Long")))) (greeting . "Hello, Irwin Burch! You have 6 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217ad1d2233ca85f717") (index . 389) (guid . "3e65cf97-dc7a-4ba9-b554-4f0b4f8e71c7") (isActive . True) (balance . "$2,454.09") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "green") (name . "Gilmore Ball") (gender . "male") (company . "QUALITEX") (email . "gilmoreball@qualitex.com") (phone . "+1 (954) 592-3724") (address . "537 Madison Place, Urie, Wisconsin, 2726") (about . "Ad aliqua pariatur voluptate ex velit sunt. Quis velit laborum ad non labore. Commodo magna enim pariatur amet nostrud anim deserunt non. In ex voluptate ut aliquip ea eiusmod. Nostrud aliquip aliquip exercitation do esse amet deserunt pariatur minim velit irure. Excepteur aliquip consectetur magna occaecat non excepteur. Irure duis eu anim eu anim pariatur ipsum veniam non exercitation.\r\n") (registered . "2017-03-17T09:43:28 +06:00") (latitude . -66.264315) (longitude . 157.955695) (tags . ("labore" "excepteur" "nisi" "labore" "Lorem" "ut" "Lorem")) (friends . (#((id . 0) (name . "Estela Brennan")) #((id . 1) (name . "Marissa Hill")) #((id . 2) (name . "Charlotte Davenport")))) (greeting . "Hello, Gilmore Ball! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021716ba63cdf00d0dca") (index . 390) (guid . "e9c27033-32f3-4d94-9b89-22673066fc18") (isActive . False) (balance . "$2,598.44") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "green") (name . "Latonya Herrera") (gender . "female") (company . "DAYCORE") (email . "latonyaherrera@daycore.com") (phone . "+1 (817) 490-2394") (address . "914 Dobbin Street, Garnet, Idaho, 9402") (about . "Anim duis quis mollit ut sit Lorem anim ex eu cillum elit. Pariatur aliquip et veniam commodo fugiat excepteur mollit ut pariatur aliqua fugiat elit proident sit. Dolore incididunt deserunt sit qui nostrud laborum fugiat. Nisi reprehenderit ea labore quis. Aliquip commodo in laborum sit ex ex anim et commodo.\r\n") (registered . "2016-10-28T10:25:29 +06:00") (latitude . 43.08607) (longitude . -119.246963) (tags . ("tempor" "pariatur" "excepteur" "non" "velit" "dolore" "ullamco")) (friends . (#((id . 0) (name . "Ramirez Nieves")) #((id . 1) (name . "Valentine Day")) #((id . 2) (name . "Robles Wade")))) (greeting . "Hello, Latonya Herrera! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302171bc60e193bcf4dd2") (index . 391) (guid . "af1285f7-aeca-4c5b-bb11-e5c37a501301") (isActive . False) (balance . "$2,644.42") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "green") (name . "Willis Kirby") (gender . "male") (company . "ZORK") (email . "williskirby@zork.com") (phone . "+1 (864) 456-2015") (address . "243 Boynton Place, Wintersburg, New Hampshire, 2708") (about . "Irure elit reprehenderit magna elit. Amet excepteur do velit labore exercitation. Amet non duis proident qui.\r\n") (registered . "2015-12-03T09:29:46 +07:00") (latitude . 27.991447) (longitude . -116.519663) (tags . ("exercitation" "tempor" "magna" "pariatur" "pariatur" "sint" "pariatur")) (friends . (#((id . 0) (name . "Burton Bryan")) #((id . 1) (name . "Rutledge Miller")) #((id . 2) (name . "Mckay Wiley")))) (greeting . "Hello, Willis Kirby! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217c8230b7abd68f1ae") (index . 392) (guid . "7e7ca250-39c8-420f-97cc-eff02401d152") (isActive . True) (balance . "$2,932.33") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "green") (name . "Ella Matthews") (gender . "female") (company . "EXOTERIC") (email . "ellamatthews@exoteric.com") (phone . "+1 (896) 437-2804") (address . "920 Locust Street, Herbster, South Carolina, 1604") (about . "Aute officia minim aliqua irure sit sunt. Officia nulla cupidatat consequat Lorem cupidatat Lorem sit in tempor. Nulla id laborum anim dolor non deserunt. Sint aliqua commodo tempor consectetur commodo et.\r\n") (registered . "2015-10-09T05:55:38 +06:00") (latitude . 69.064196) (longitude . 6.202132) (tags . ("quis" "adipisicing" "ad" "consequat" "quis" "adipisicing" "occaecat")) (friends . (#((id . 0) (name . "Hickman Mcdowell")) #((id . 1) (name . "Carla Blanchard")) #((id . 2) (name . "Brianna Clarke")))) (greeting . "Hello, Ella Matthews! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217d958af7f07ebb234") (index . 393) (guid . "8a2e39bf-00b9-4609-9d1e-08f047c6f557") (isActive . True) (balance . "$3,989.69") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "blue") (name . "Montoya Kline") (gender . "male") (company . "PHARMACON") (email . "montoyakline@pharmacon.com") (phone . "+1 (850) 512-3564") (address . "590 Ralph Avenue, Shelby, Iowa, 7088") (about . "Ex nisi consequat commodo incididunt ut do occaecat. Ullamco ut ullamco consequat nulla et. Occaecat do culpa occaecat ex id dolore mollit ullamco laborum ex tempor officia.\r\n") (registered . "2014-03-08T03:24:38 +07:00") (latitude . 40.237929) (longitude . 130.040631) (tags . ("est" "aliqua" "ipsum" "non" "ea" "incididunt" "eiusmod")) (friends . (#((id . 0) (name . "Valdez Weber")) #((id . 1) (name . "Stacey Yang")) #((id . 2) (name . "Sophie Hardy")))) (greeting . "Hello, Montoya Kline! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302177ad6b5c819d70561") (index . 394) (guid . "5ffaa8cd-4f03-4400-9ed5-0be3fe01cb7c") (isActive . True) (balance . "$3,413.27") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "green") (name . "Magdalena Garcia") (gender . "female") (company . "OVERPLEX") (email . "magdalenagarcia@overplex.com") (phone . "+1 (999) 519-2824") (address . "166 Ridge Boulevard, Lopezo, California, 1894") (about . "Dolor deserunt nostrud qui dolore enim est ut nulla. Excepteur consequat anim deserunt sunt qui Lorem ea anim non et. Do consectetur eu reprehenderit et dolore ipsum laborum eiusmod sit elit sunt minim.\r\n") (registered . "2017-04-29T12:55:42 +06:00") (latitude . -45.347029) (longitude . -9.628444) (tags . ("eiusmod" "commodo" "eu" "ullamco" "eiusmod" "aliquip" "irure")) (friends . (#((id . 0) (name . "Gates Snider")) #((id . 1) (name . "Rosario Rojas")) #((id . 2) (name . "Clemons Hodges")))) (greeting . "Hello, Magdalena Garcia! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302172e1c0433f6758846") (index . 395) (guid . "420ec23b-9956-4c1d-aab9-66dd16e13817") (isActive . True) (balance . "$3,243.03") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Madeline Alexander") (gender . "female") (company . "EVEREST") (email . "madelinealexander@everest.com") (phone . "+1 (865) 576-3305") (address . "895 Dinsmore Place, Herald, Wyoming, 9241") (about . "Laborum consectetur quis fugiat ex minim. Aute ad eu deserunt cupidatat enim exercitation aute fugiat tempor anim. Magna occaecat officia consequat fugiat proident dolor laborum do dolor Lorem mollit. Et ad aliqua proident labore nulla voluptate sint ut dolore. Proident est anim labore aliquip occaecat. Laborum veniam adipisicing reprehenderit nisi nisi. Aliquip ex nisi velit exercitation laboris cillum nostrud aute proident est ut excepteur.\r\n") (registered . "2018-02-14T12:56:21 +07:00") (latitude . 81.775223) (longitude . 89.129303) (tags . ("cupidatat" "sunt" "magna" "magna" "commodo" "sint" "amet")) (friends . (#((id . 0) (name . "Sheryl Farley")) #((id . 1) (name . "Lancaster Burton")) #((id . 2) (name . "Shawna Riddle")))) (greeting . "Hello, Madeline Alexander! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217017aea8dc52b7de6") (index . 396) (guid . "eff0392b-e557-403c-9a3a-40036d670601") (isActive . False) (balance . "$2,285.91") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "green") (name . "Church Sharp") (gender . "male") (company . "CODAX") (email . "churchsharp@codax.com") (phone . "+1 (948) 468-3008") (address . "283 Abbey Court, Grapeview, Maryland, 3130") (about . "Mollit magna ipsum sunt ut ullamco mollit nostrud tempor qui ut laborum. Et consequat aute cupidatat et proident aliqua exercitation exercitation pariatur. Culpa dolor aute mollit do nostrud ullamco est tempor incididunt eiusmod incididunt do proident ad. Minim officia anim mollit fugiat. Exercitation nostrud pariatur consectetur ut eiusmod est. Ipsum officia labore culpa cupidatat. Cillum culpa excepteur reprehenderit minim sit cillum exercitation incididunt nulla elit aute.\r\n") (registered . "2017-02-28T09:33:29 +07:00") (latitude . 23.368929) (longitude . 33.384224) (tags . ("Lorem" "culpa" "reprehenderit" "proident" "anim" "culpa" "velit")) (friends . (#((id . 0) (name . "Tisha James")) #((id . 1) (name . "Craft Keith")) #((id . 2) (name . "Mona Sargent")))) (greeting . "Hello, Church Sharp! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217a8c21b8116de8faa") (index . 397) (guid . "d7b0075b-8723-492c-b3cf-517650996e36") (isActive . True) (balance . "$3,869.08") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "blue") (name . "Oneil Patterson") (gender . "male") (company . "IDEALIS") (email . "oneilpatterson@idealis.com") (phone . "+1 (984) 469-3619") (address . "116 Manhattan Avenue, Morningside, Louisiana, 6110") (about . "Exercitation incididunt ad consequat Lorem ullamco pariatur duis esse culpa. Culpa consequat aliqua do magna non commodo ad nostrud proident tempor aliquip deserunt reprehenderit. Est voluptate amet non aliqua voluptate do consequat fugiat est qui. Pariatur sunt cupidatat ipsum aute elit fugiat eu amet. Veniam officia minim amet consequat pariatur do ullamco elit. Et officia occaecat nulla est est anim id exercitation pariatur et.\r\n") (registered . "2014-12-09T04:18:09 +07:00") (latitude . -48.978004) (longitude . -86.624398) (tags . ("cupidatat" "dolor" "cillum" "fugiat" "dolor" "officia" "laboris")) (friends . (#((id . 0) (name . "Houston Buckner")) #((id . 1) (name . "Goldie Blair")) #((id . 2) (name . "Nielsen Robles")))) (greeting . "Hello, Oneil Patterson! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021752f618c926308f7e") (index . 398) (guid . "0309049d-00c3-42f6-a56b-a579df491b04") (isActive . False) (balance . "$2,475.10") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "brown") (name . "Hunter Frederick") (gender . "male") (company . "MAGMINA") (email . "hunterfrederick@magmina.com") (phone . "+1 (968) 413-3322") (address . "433 Metropolitan Avenue, Fowlerville, Federated States Of Micronesia, 265") (about . "Ullamco cillum exercitation minim sunt. Nulla pariatur nisi adipisicing deserunt laborum dolore excepteur ad excepteur. Incididunt voluptate excepteur quis ex dolor. Reprehenderit velit ex eu ut culpa non dolor consequat laboris do.\r\n") (registered . "2017-12-15T02:46:36 +07:00") (latitude . -78.490506) (longitude . -150.88992) (tags . ("nostrud" "laborum" "eu" "ad" "voluptate" "aliquip" "sint")) (friends . (#((id . 0) (name . "Susie Santana")) #((id . 1) (name . "Mueller Rocha")) #((id . 2) (name . "Wallace Holcomb")))) (greeting . "Hello, Hunter Frederick! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217fa0c0a381ab3e2d9") (index . 399) (guid . "a9860d63-e6c6-4346-9cb0-26a9bcbfec52") (isActive . True) (balance . "$1,733.32") (picture . "http://placehold.it/32x32") (age . 39) (eyeColor . "brown") (name . "Gay Lynch") (gender . "female") (company . "IMMUNICS") (email . "gaylynch@immunics.com") (phone . "+1 (860) 564-2995") (address . "944 Holt Court, Deputy, Pennsylvania, 999") (about . "Irure nulla velit est eu velit adipisicing consectetur amet consectetur sint. Eu do deserunt labore ea esse sint reprehenderit et. Quis laboris deserunt ipsum anim commodo proident amet pariatur elit. Voluptate consequat cillum do sit. Amet do id qui cillum eu adipisicing fugiat pariatur irure excepteur adipisicing ut.\r\n") (registered . "2017-11-17T03:45:20 +07:00") (latitude . 30.382713) (longitude . -118.423117) (tags . ("dolore" "duis" "culpa" "anim" "tempor" "nulla" "incididunt")) (friends . (#((id . 0) (name . "Mcknight Mills")) #((id . 1) (name . "Belinda Mccarthy")) #((id . 2) (name . "Ruiz Reese")))) (greeting . "Hello, Gay Lynch! You have 1 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217a74207c7961ac36d") (index . 400) (guid . "7cf9d8b7-45cc-4891-87f0-83f225b84387") (isActive . False) (balance . "$2,316.60") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "brown") (name . "Lynn Duncan") (gender . "male") (company . "PHUEL") (email . "lynnduncan@phuel.com") (phone . "+1 (851) 593-3331") (address . "506 Stockholm Street, Fannett, Vermont, 1093") (about . "Nostrud commodo labore duis occaecat Lorem culpa aliquip. Ad velit ipsum anim eiusmod id proident ex laborum eiusmod dolor do ea reprehenderit nostrud. Nisi incididunt nisi est pariatur do. Nisi nulla deserunt occaecat id minim dolor amet mollit do. Lorem pariatur anim duis Lorem laborum deserunt id. Adipisicing ut id anim id. Pariatur duis sit eiusmod laboris minim aliquip cupidatat.\r\n") (registered . "2015-12-26T12:42:02 +07:00") (latitude . -4.465432) (longitude . -13.440246) (tags . ("irure" "elit" "est" "dolore" "fugiat" "eu" "officia")) (friends . (#((id . 0) (name . "Kerr Pittman")) #((id . 1) (name . "Winnie Mckay")) #((id . 2) (name . "Conrad Richard")))) (greeting . "Hello, Lynn Duncan! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217f9ede6fc8d1ca20e") (index . 401) (guid . "b397c7cc-4d2f-4f95-b7b0-18158c966435") (isActive . False) (balance . "$2,926.39") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Vaughn Frye") (gender . "male") (company . "GEEKMOSIS") (email . "vaughnfrye@geekmosis.com") (phone . "+1 (911) 467-2022") (address . "148 Stryker Street, Veyo, Maine, 7426") (about . "Ullamco eiusmod aliquip anim id pariatur ex laboris anim ullamco voluptate nostrud ex dolor voluptate. Aliquip non in deserunt est eiusmod adipisicing elit. Excepteur amet esse cupidatat quis nulla nulla nisi proident mollit dolor et nisi. Quis proident tempor ullamco officia cillum incididunt irure sunt ad. Deserunt dolor pariatur commodo eiusmod sunt eiusmod.\r\n") (registered . "2014-07-09T11:40:45 +06:00") (latitude . -75.60148) (longitude . -97.135159) (tags . ("incididunt" "fugiat" "magna" "elit" "ea" "ea" "ullamco")) (friends . (#((id . 0) (name . "Alissa Knox")) #((id . 1) (name . "Dana Carlson")) #((id . 2) (name . "Stephenson Mayer")))) (greeting . "Hello, Vaughn Frye! You have 9 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217b621feda8c5409cb") (index . 402) (guid . "51858190-ddca-4e69-a641-fd6f2ab260aa") (isActive . False) (balance . "$1,781.37") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Odonnell Russo") (gender . "male") (company . "TRASOLA") (email . "odonnellrusso@trasola.com") (phone . "+1 (986) 447-3587") (address . "113 Macdougal Street, Salvo, Alaska, 1655") (about . "Non laborum cupidatat duis excepteur ea do eiusmod aliqua laborum dolore. Non cillum commodo incididunt sunt non sint culpa eiusmod ut quis adipisicing nisi. Quis proident adipisicing sit officia ipsum exercitation dolor est ullamco. Ea nisi ad velit sint esse reprehenderit do.\r\n") (registered . "2016-07-27T08:17:46 +06:00") (latitude . -24.580924) (longitude . 99.797959) (tags . ("ullamco" "labore" "Lorem" "irure" "ullamco" "incididunt" "est")) (friends . (#((id . 0) (name . "Head Clay")) #((id . 1) (name . "Myra Juarez")) #((id . 2) (name . "Renee Guerrero")))) (greeting . "Hello, Odonnell Russo! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217bf668a05e6cba4f5") (index . 403) (guid . "ddef3ecb-3f94-4aaa-9556-9962827df52f") (isActive . False) (balance . "$1,770.55") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "blue") (name . "Gloria Cervantes") (gender . "female") (company . "EXPOSA") (email . "gloriacervantes@exposa.com") (phone . "+1 (855) 412-2395") (address . "680 Delevan Street, Russellville, Palau, 6926") (about . "Pariatur quis nostrud pariatur cillum ut minim aliqua mollit eiusmod officia exercitation culpa. Id mollit amet proident cillum excepteur amet irure irure. Dolore proident ullamco exercitation deserunt.\r\n") (registered . "2015-07-04T04:53:47 +06:00") (latitude . -60.448108) (longitude . 16.854133) (tags . ("culpa" "sunt" "dolor" "irure" "dolor" "est" "id")) (friends . (#((id . 0) (name . "Sharp Porter")) #((id . 1) (name . "Maritza Thornton")) #((id . 2) (name . "Dollie Carter")))) (greeting . "Hello, Gloria Cervantes! You have 2 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217ff92904a4a8bf871") (index . 404) (guid . "c2700dc2-0abe-4441-878d-4d4fe6ebcd0f") (isActive . True) (balance . "$2,822.34") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "blue") (name . "Peck Stafford") (gender . "male") (company . "BALOOBA") (email . "peckstafford@balooba.com") (phone . "+1 (861) 527-2107") (address . "220 Oakland Place, Franklin, Arkansas, 4751") (about . "Sunt velit pariatur laboris ipsum consequat consequat anim. Nulla sint aliquip dolor exercitation. Ad sint sint cillum ut deserunt mollit non cillum aliquip. Tempor ex minim qui nostrud laboris commodo adipisicing irure esse. Deserunt cupidatat mollit sit est minim culpa consectetur officia id excepteur voluptate aute. Cupidatat cupidatat duis et nisi voluptate officia tempor proident. Aliquip eu exercitation eiusmod incididunt cupidatat et incididunt proident laborum proident nostrud aliqua.\r\n") (registered . "2016-01-22T05:45:59 +07:00") (latitude . 17.066849) (longitude . -16.328147) (tags . ("deserunt" "irure" "nostrud" "elit" "anim" "incididunt" "occaecat")) (friends . (#((id . 0) (name . "Giles Foley")) #((id . 1) (name . "Abigail Gates")) #((id . 2) (name . "Theresa Gould")))) (greeting . "Hello, Peck Stafford! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217888e5518cf237d34") (index . 405) (guid . "a749915f-5c72-4129-96e9-c46bc5c579d7") (isActive . False) (balance . "$1,703.74") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "green") (name . "Welch Shelton") (gender . "male") (company . "ENTALITY") (email . "welchshelton@entality.com") (phone . "+1 (990) 591-3662") (address . "749 Eldert Lane, Emison, Florida, 6653") (about . "Anim do exercitation nisi commodo minim deserunt laboris irure magna qui deserunt Lorem consectetur. Eiusmod anim ad mollit deserunt do ut cupidatat culpa. Aliquip ad incididunt amet nulla.\r\n") (registered . "2017-07-04T05:37:14 +06:00") (latitude . -37.011566) (longitude . -43.004524) (tags . ("dolor" "do" "non" "adipisicing" "elit" "aute" "non")) (friends . (#((id . 0) (name . "Powers Charles")) #((id . 1) (name . "Byrd Baird")) #((id . 2) (name . "Courtney Forbes")))) (greeting . "Hello, Welch Shelton! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217f4be1bd35a87b522") (index . 406) (guid . "c4cb6871-0ffc-404e-9ec5-90862e1c5740") (isActive . True) (balance . "$2,276.76") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "blue") (name . "Gabrielle Garza") (gender . "female") (company . "GRONK") (email . "gabriellegarza@gronk.com") (phone . "+1 (887) 423-3132") (address . "561 Gaylord Drive, Condon, Puerto Rico, 5771") (about . "Deserunt occaecat ea in velit ut magna non. Anim ex sit consequat labore Lorem minim incididunt irure. Fugiat duis nisi nulla officia. Commodo sint ut incididunt consectetur minim incididunt excepteur amet velit nulla consequat.\r\n") (registered . "2018-02-23T07:12:52 +07:00") (latitude . 72.731723) (longitude . -154.124617) (tags . ("aute" "qui" "et" "labore" "voluptate" "proident" "enim")) (friends . (#((id . 0) (name . "Bertha Skinner")) #((id . 1) (name . "Bennett Doyle")) #((id . 2) (name . "Antoinette Trujillo")))) (greeting . "Hello, Gabrielle Garza! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021737066425dbe078c8") (index . 407) (guid . "92a287d2-3a6d-4e9b-a725-4fc458d7f992") (isActive . True) (balance . "$1,433.89") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "green") (name . "Pauline Garrett") (gender . "female") (company . "GADTRON") (email . "paulinegarrett@gadtron.com") (phone . "+1 (896) 512-3297") (address . "202 Norfolk Street, Chamizal, Hawaii, 8016") (about . "Excepteur laboris sunt culpa id consectetur sint sint proident officia quis cillum minim consectetur quis. Minim incididunt do esse et laboris. Fugiat dolore labore irure dolore culpa ut deserunt in fugiat tempor id ea exercitation ipsum. Elit pariatur cupidatat do id commodo laboris nisi cupidatat labore incididunt veniam. Eiusmod id dolore officia excepteur non commodo. Aliqua sunt magna aliquip duis tempor dolor quis occaecat. Laborum fugiat culpa Lorem nostrud cupidatat do commodo esse enim in.\r\n") (registered . "2017-10-06T06:39:39 +06:00") (latitude . -51.398844) (longitude . 22.465034) (tags . ("excepteur" "eiusmod" "dolor" "irure" "ullamco" "ullamco" "ut")) (friends . (#((id . 0) (name . "Pamela Heath")) #((id . 1) (name . "Morris Hughes")) #((id . 2) (name . "Downs Davis")))) (greeting . "Hello, Pauline Garrett! You have 4 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217850fb52e6d927f3f") (index . 408) (guid . "524f19bf-233d-41c9-b5a7-6af886dd5959") (isActive . False) (balance . "$1,821.63") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "green") (name . "Hensley Barber") (gender . "male") (company . "GENESYNK") (email . "hensleybarber@genesynk.com") (phone . "+1 (918) 591-2652") (address . "744 Luquer Street, Maybell, American Samoa, 1844") (about . "Occaecat est pariatur nisi in incididunt occaecat qui sit sint in et do do dolor. Cupidatat consequat mollit labore aliqua irure tempor dolor ea mollit in fugiat ea commodo. Et exercitation tempor officia adipisicing veniam pariatur deserunt adipisicing officia. Duis ullamco in labore consequat pariatur ex ipsum eiusmod labore. Anim nisi reprehenderit laboris incididunt adipisicing consequat reprehenderit ea labore id.\r\n") (registered . "2017-09-05T04:32:18 +06:00") (latitude . -1.861773) (longitude . 136.828526) (tags . ("laboris" "sint" "ad" "laborum" "velit" "sit" "laboris")) (friends . (#((id . 0) (name . "Jannie Mcneil")) #((id . 1) (name . "Raquel Mays")) #((id . 2) (name . "Stanton Moreno")))) (greeting . "Hello, Hensley Barber! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217113fe2415c81ed5d") (index . 409) (guid . "9e478e4f-3630-4c83-a2c8-464b9729f8d7") (isActive . True) (balance . "$2,517.80") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Wall Hood") (gender . "male") (company . "STRALUM") (email . "wallhood@stralum.com") (phone . "+1 (821) 460-2350") (address . "239 Bedell Lane, Heil, Indiana, 4793") (about . "Labore aute velit amet deserunt culpa ullamco incididunt dolor nostrud. Fugiat dolor proident sit ut enim. Excepteur ad exercitation anim ex dolor veniam enim magna elit. Elit laboris adipisicing aliqua non do adipisicing aute aliqua fugiat velit in cillum. Pariatur pariatur eu occaecat ex cupidatat cupidatat.\r\n") (registered . "2016-07-26T02:49:19 +06:00") (latitude . 17.633021) (longitude . 139.349293) (tags . ("sunt" "mollit" "ut" "veniam" "Lorem" "officia" "ut")) (friends . (#((id . 0) (name . "Ellis Harvey")) #((id . 1) (name . "Violet Perez")) #((id . 2) (name . "Macias Atkinson")))) (greeting . "Hello, Wall Hood! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302175b05eecb63fa47a7") (index . 410) (guid . "19a3ff31-0781-471f-bcc0-509c4a926688") (isActive . False) (balance . "$1,337.12") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "brown") (name . "Sanders Conway") (gender . "male") (company . "ZOID") (email . "sandersconway@zoid.com") (phone . "+1 (844) 408-2835") (address . "960 Flatlands Avenue, Falmouth, Missouri, 743") (about . "Officia voluptate ea ad non. Dolore irure commodo officia laborum reprehenderit. Pariatur pariatur minim dolor eiusmod ut ex id pariatur in est laborum. Nulla eiusmod cupidatat cupidatat eu ut consectetur culpa in et. Laboris esse ex labore enim labore tempor exercitation sint. Sit occaecat aute pariatur magna fugiat ea aliqua laborum et.\r\n") (registered . "2014-04-28T11:17:33 +06:00") (latitude . 83.679575) (longitude . -85.844086) (tags . ("laborum" "laboris" "irure" "minim" "ad" "aliquip" "fugiat")) (friends . (#((id . 0) (name . "Kathryn Albert")) #((id . 1) (name . "Viola Stokes")) #((id . 2) (name . "Odom Wagner")))) (greeting . "Hello, Sanders Conway! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217675e942a338f9720") (index . 411) (guid . "682a8812-eaf7-4894-9afa-85959bfe23f7") (isActive . False) (balance . "$3,391.64") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "green") (name . "Agnes Pearson") (gender . "female") (company . "RETRACK") (email . "agnespearson@retrack.com") (phone . "+1 (946) 489-2833") (address . "795 Garland Court, Sussex, Guam, 948") (about . "Velit amet amet ut nostrud. Esse consectetur exercitation cupidatat quis ea labore. In excepteur do veniam dolore amet esse fugiat mollit.\r\n") (registered . "2015-12-02T12:06:29 +07:00") (latitude . 8.548807) (longitude . 119.612499) (tags . ("veniam" "laborum" "nostrud" "fugiat" "enim" "amet" "aute")) (friends . (#((id . 0) (name . "Dianna Leblanc")) #((id . 1) (name . "Nora Perkins")) #((id . 2) (name . "Melba Kramer")))) (greeting . "Hello, Agnes Pearson! You have 8 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302173b6dfc055ead5c56") (index . 412) (guid . "d4d39f5b-bdb3-41e7-8334-d7f7d57f984c") (isActive . False) (balance . "$3,783.51") (picture . "http://placehold.it/32x32") (age . 28) (eyeColor . "blue") (name . "Mary Gutierrez") (gender . "female") (company . "AQUACINE") (email . "marygutierrez@aquacine.com") (phone . "+1 (933) 484-3909") (address . "703 Seton Place, Faxon, Minnesota, 4528") (about . "Enim nostrud aute tempor ex et fugiat sint ex nulla do consectetur. Do ipsum Lorem et sit velit id laboris. Occaecat ad ad aliqua ullamco aliquip culpa cupidatat dolor duis exercitation esse aliquip deserunt. Amet nostrud est veniam commodo minim. Amet pariatur eiusmod sint nulla amet eu velit deserunt fugiat deserunt.\r\n") (registered . "2018-03-11T11:11:15 +06:00") (latitude . 17.164597) (longitude . -97.343691) (tags . ("aute" "cupidatat" "proident" "eiusmod" "ad" "mollit" "amet")) (friends . (#((id . 0) (name . "Adeline Ayala")) #((id . 1) (name . "Stokes Wilcox")) #((id . 2) (name . "Noemi Bradley")))) (greeting . "Hello, Mary Gutierrez! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217c44decd5f4afef7b") (index . 413) (guid . "398b2ae1-6a1e-4780-b389-bb4179d5454a") (isActive . True) (balance . "$2,103.32") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "blue") (name . "Sherri Joyce") (gender . "female") (company . "SPACEWAX") (email . "sherrijoyce@spacewax.com") (phone . "+1 (998) 509-2207") (address . "920 Monroe Street, Herlong, Delaware, 7708") (about . "Consectetur dolor amet incididunt dolor enim. Aute dolore minim ullamco reprehenderit ea nostrud est ad laboris duis nostrud tempor. Dolore laboris laborum mollit laborum ipsum tempor Lorem magna.\r\n") (registered . "2017-11-02T07:02:13 +06:00") (latitude . -33.105438) (longitude . 4.530277) (tags . ("pariatur" "eu" "tempor" "pariatur" "tempor" "eiusmod" "mollit")) (friends . (#((id . 0) (name . "Daniel Leonard")) #((id . 1) (name . "Arline Gillespie")) #((id . 2) (name . "Jaclyn Villarreal")))) (greeting . "Hello, Sherri Joyce! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302174dd5231981e097ea") (index . 414) (guid . "38fc1b20-7ca7-4b0f-80ab-dfe9885629bc") (isActive . True) (balance . "$3,190.56") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "green") (name . "Combs Miles") (gender . "male") (company . "PHORMULA") (email . "combsmiles@phormula.com") (phone . "+1 (884) 510-3614") (address . "492 Sutton Street, Sandston, Kansas, 6337") (about . "Proident eiusmod amet et nisi id Lorem sint non commodo laborum. Enim Lorem nulla tempor commodo. Enim ullamco do tempor ex occaecat irure Lorem ipsum ut. Sunt nisi nostrud consectetur ullamco qui ullamco. Eu aliqua fugiat minim culpa sunt irure Lorem dolore elit incididunt do.\r\n") (registered . "2014-09-16T06:14:11 +06:00") (latitude . -41.137849) (longitude . 20.817612) (tags . ("cupidatat" "voluptate" "consequat" "voluptate" "fugiat" "ut" "est")) (friends . (#((id . 0) (name . "Gibbs Franks")) #((id . 1) (name . "Franklin Evans")) #((id . 2) (name . "Butler Rosa")))) (greeting . "Hello, Combs Miles! You have 7 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217a8cbffeb07e23fbb") (index . 415) (guid . "61751009-8f24-4b3b-aff6-f18a0151f7ef") (isActive . True) (balance . "$1,648.16") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "brown") (name . "Mamie Hernandez") (gender . "female") (company . "TWIGGERY") (email . "mamiehernandez@twiggery.com") (phone . "+1 (908) 511-2204") (address . "737 Nolans Lane, Brandermill, Washington, 1256") (about . "Voluptate fugiat eu sunt irure reprehenderit est. Eiusmod aliquip amet ex in. Est consectetur nostrud ipsum mollit eiusmod nisi.\r\n") (registered . "2016-03-14T11:12:04 +06:00") (latitude . -71.311169) (longitude . 36.1094) (tags . ("nulla" "tempor" "pariatur" "tempor" "aliquip" "veniam" "incididunt")) (friends . (#((id . 0) (name . "Genevieve Salinas")) #((id . 1) (name . "Margery Aguirre")) #((id . 2) (name . "Maria Pugh")))) (greeting . "Hello, Mamie Hernandez! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217138b5bbd76ebb4a3") (index . 416) (guid . "90404128-d2ae-4a8e-8fb2-dfc9aa46fa62") (isActive . False) (balance . "$2,737.77") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "brown") (name . "Boyle House") (gender . "male") (company . "HOTCAKES") (email . "boylehouse@hotcakes.com") (phone . "+1 (933) 576-2721") (address . "471 Cameron Court, Chloride, Oklahoma, 9449") (about . "Dolore sunt labore ut culpa duis sit duis est irure ut qui veniam officia. Occaecat proident aliquip et non magna labore pariatur laborum laboris reprehenderit culpa ullamco consequat. Aliqua est do duis excepteur commodo occaecat velit. Non consequat amet consectetur aliquip excepteur officia proident anim excepteur. Exercitation velit laboris ipsum dolor reprehenderit.\r\n") (registered . "2016-05-07T05:27:24 +06:00") (latitude . 40.382352) (longitude . -123.201371) (tags . ("sint" "nulla" "eiusmod" "ut" "minim" "sunt" "reprehenderit")) (friends . (#((id . 0) (name . "Marquez Hutchinson")) #((id . 1) (name . "Alford Levine")) #((id . 2) (name . "Orr Reilly")))) (greeting . "Hello, Boyle House! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021757d3a07d7ee009fd") (index . 417) (guid . "fc030f51-1ba7-44b5-aa59-49ffbb814f4d") (isActive . False) (balance . "$3,593.64") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "green") (name . "Douglas Stark") (gender . "male") (company . "ORONOKO") (email . "douglasstark@oronoko.com") (phone . "+1 (874) 557-3499") (address . "866 Lake Street, Sheatown, Kentucky, 7089") (about . "Amet duis in in in ex aliquip sint magna qui nostrud. Ut occaecat sint nostrud qui ipsum sit aute deserunt excepteur. Enim ullamco ex ut ut ad elit.\r\n") (registered . "2015-10-26T02:41:45 +06:00") (latitude . 85.27556) (longitude . -114.843292) (tags . ("deserunt" "cupidatat" "laborum" "deserunt" "velit" "dolore" "consequat")) (friends . (#((id . 0) (name . "Smith Melendez")) #((id . 1) (name . "Keisha Reeves")) #((id . 2) (name . "Kelley Simmons")))) (greeting . "Hello, Douglas Stark! You have 8 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217bfa4a80b96df358a") (index . 418) (guid . "cdc39fa6-d6d2-4ba5-ba91-2c6fbb0a2f68") (isActive . True) (balance . "$2,790.20") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "blue") (name . "Evangeline Jarvis") (gender . "female") (company . "PYRAMAX") (email . "evangelinejarvis@pyramax.com") (phone . "+1 (857) 568-2151") (address . "108 Troy Avenue, Chapin, Alabama, 3881") (about . "Incididunt elit minim eiusmod aliqua. Incididunt incididunt irure exercitation ut exercitation commodo. Aute eu do tempor nostrud tempor qui nisi duis dolore dolore anim ad. Esse do ex mollit ad aliqua anim duis do eu pariatur magna occaecat laboris laborum. Non commodo eiusmod ullamco deserunt dolor dolore et. Aute officia consequat reprehenderit sit exercitation eiusmod. Sunt ullamco occaecat labore aliquip veniam proident eiusmod eu.\r\n") (registered . "2014-09-23T06:06:49 +06:00") (latitude . -46.322642) (longitude . -62.29805) (tags . ("consequat" "eu" "nisi" "est" "voluptate" "est" "proident")) (friends . (#((id . 0) (name . "George Mcleod")) #((id . 1) (name . "Ryan Kim")) #((id . 2) (name . "Murray Lowery")))) (greeting . "Hello, Evangeline Jarvis! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302175c718faf71e2f72c") (index . 419) (guid . "b74a9ea2-0185-4b55-8373-1dcc61054bdd") (isActive . True) (balance . "$2,654.79") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "brown") (name . "Therese Vasquez") (gender . "female") (company . "RODEOCEAN") (email . "theresevasquez@rodeocean.com") (phone . "+1 (943) 565-2382") (address . "165 Broadway , Chemung, West Virginia, 5029") (about . "Officia nisi cillum aute et culpa. Non minim id fugiat adipisicing deserunt id est qui adipisicing labore veniam ut ex sit. Sit qui cillum mollit mollit officia sunt cillum. Non irure sint commodo mollit consequat irure est aute dolore. Aute amet tempor tempor eu cupidatat voluptate cupidatat laboris et tempor nostrud ipsum. Minim dolore eiusmod est fugiat ipsum laborum do sit consequat eiusmod. Voluptate Lorem laboris dolore velit velit aliquip consectetur.\r\n") (registered . "2014-09-07T04:48:07 +06:00") (latitude . -18.570222) (longitude . 86.790041) (tags . ("minim" "quis" "ea" "dolore" "et" "duis" "aliquip")) (friends . (#((id . 0) (name . "Tonya Wolf")) #((id . 1) (name . "Chris Horn")) #((id . 2) (name . "Madge Mcconnell")))) (greeting . "Hello, Therese Vasquez! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302171e7caa9e25a1bc6d") (index . 420) (guid . "abe122d7-6887-456a-9c1c-b5b4aed1d89a") (isActive . False) (balance . "$2,485.22") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "blue") (name . "Garcia Walter") (gender . "male") (company . "COMTOURS") (email . "garciawalter@comtours.com") (phone . "+1 (931) 503-2690") (address . "339 Tampa Court, Coleville, Ohio, 1057") (about . "Reprehenderit nostrud laboris sint non occaecat ut ad nostrud pariatur non. Eu eiusmod incididunt laboris sint irure duis sunt id esse adipisicing deserunt quis. Amet nulla ea amet ut proident sit Lorem reprehenderit nostrud.\r\n") (registered . "2017-01-29T02:21:05 +07:00") (latitude . -48.058958) (longitude . -4.439034) (tags . ("aliquip" "et" "et" "aute" "eiusmod" "nulla" "commodo")) (friends . (#((id . 0) (name . "Trina Chavez")) #((id . 1) (name . "Pittman Rivera")) #((id . 2) (name . "Underwood Oliver")))) (greeting . "Hello, Garcia Walter! You have 7 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302170ef05f933f6eda55") (index . 421) (guid . "83a9ceda-b9bb-4898-87ac-c9cdc676125f") (isActive . False) (balance . "$2,743.78") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "blue") (name . "Rose Dunn") (gender . "female") (company . "KOFFEE") (email . "rosedunn@koffee.com") (phone . "+1 (909) 536-2492") (address . "438 Clifford Place, Kingstowne, Connecticut, 9600") (about . "Dolor pariatur laboris laborum esse id consequat. Est ipsum dolor laborum pariatur minim ullamco adipisicing enim veniam sit elit velit ea. Dolor sit tempor fugiat proident nisi deserunt eu do.\r\n") (registered . "2015-09-23T02:56:26 +06:00") (latitude . -14.123875) (longitude . 94.120528) (tags . ("aliqua" "quis" "esse" "labore" "incididunt" "et" "anim")) (friends . (#((id . 0) (name . "Alvarado Dixon")) #((id . 1) (name . "Amparo Mcdaniel")) #((id . 2) (name . "Davenport Hanson")))) (greeting . "Hello, Rose Dunn! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217385fbef095dd7999") (index . 422) (guid . "c84d4374-e6f2-4999-af21-f20455b9a0dd") (isActive . False) (balance . "$3,705.82") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "green") (name . "Wolf Whitaker") (gender . "male") (company . "BIOHAB") (email . "wolfwhitaker@biohab.com") (phone . "+1 (812) 414-3704") (address . "136 Hendrickson Street, Warsaw, North Dakota, 7374") (about . "Ipsum Lorem quis voluptate magna voluptate incididunt veniam in elit Lorem. Eu Lorem aute in aliquip ullamco id ad laborum deserunt magna elit proident dolore. Consectetur non ex ut nostrud fugiat aute cupidatat anim exercitation. Quis pariatur dolor nostrud pariatur nostrud aliquip fugiat veniam deserunt laboris.\r\n") (registered . "2015-12-09T12:27:59 +07:00") (latitude . 1.75302) (longitude . 107.93223) (tags . ("cupidatat" "veniam" "dolor" "irure" "sint" "ex" "consequat")) (friends . (#((id . 0) (name . "Janette Hooper")) #((id . 1) (name . "Sue Hoffman")) #((id . 2) (name . "Farley Hewitt")))) (greeting . "Hello, Wolf Whitaker! You have 5 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302173b56c81686c8f27d") (index . 423) (guid . "4dfbc72e-2d78-41ff-a337-2f9801edd762") (isActive . False) (balance . "$1,698.51") (picture . "http://placehold.it/32x32") (age . 37) (eyeColor . "green") (name . "Kemp Dalton") (gender . "male") (company . "RAMEON") (email . "kempdalton@rameon.com") (phone . "+1 (951) 490-2898") (address . "389 Cypress Avenue, Nelson, Mississippi, 9752") (about . "Culpa eu consequat quis officia eiusmod. Ad aliqua ea pariatur velit tempor ea ad deserunt exercitation sunt esse fugiat. Excepteur mollit et reprehenderit incididunt mollit ipsum aliquip esse Lorem. Laborum ad eu enim non consequat. Enim in magna occaecat et quis.\r\n") (registered . "2018-01-03T02:24:39 +07:00") (latitude . 2.061453) (longitude . -101.728149) (tags . ("exercitation" "sit" "quis" "ex" "Lorem" "sint" "et")) (friends . (#((id . 0) (name . "Monica Guthrie")) #((id . 1) (name . "Lea Kane")) #((id . 2) (name . "Avery Boyer")))) (greeting . "Hello, Kemp Dalton! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302170aa9101fbc4c2c46") (index . 424) (guid . "48c51bd6-bef7-4230-b548-af87563dae65") (isActive . False) (balance . "$3,112.94") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Mclean Vaughn") (gender . "male") (company . "XINWARE") (email . "mcleanvaughn@xinware.com") (phone . "+1 (871) 514-3083") (address . "507 Fenimore Street, Catherine, New York, 2432") (about . "Id labore anim elit velit incididunt incididunt laborum enim est. Irure ut voluptate nostrud et ut quis labore exercitation cillum. Veniam deserunt cillum ut aute excepteur veniam laborum adipisicing nisi reprehenderit nisi enim dolor. Culpa reprehenderit exercitation velit qui exercitation eiusmod amet. Officia et deserunt tempor nulla consectetur laboris cupidatat mollit ut. Nulla Lorem sit sunt dolor velit ad consectetur magna qui nostrud occaecat. Ex nulla anim est consectetur exercitation enim.\r\n") (registered . "2016-05-07T11:58:54 +06:00") (latitude . 7.337384) (longitude . -13.561226) (tags . ("ipsum" "velit" "occaecat" "non" "nostrud" "esse" "duis")) (friends . (#((id . 0) (name . "Randi Orr")) #((id . 1) (name . "Larsen Callahan")) #((id . 2) (name . "Bette Powell")))) (greeting . "Hello, Mclean Vaughn! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217cd78b9f811debd9c") (index . 425) (guid . "3f70f375-ba97-4711-9548-1c84c7616fa8") (isActive . True) (balance . "$3,799.88") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "blue") (name . "Sexton Noble") (gender . "male") (company . "ACLIMA") (email . "sextonnoble@aclima.com") (phone . "+1 (845) 455-3631") (address . "845 Love Lane, Dellview, Oregon, 2769") (about . "Labore esse consectetur in culpa id officia cillum ullamco deserunt amet non ipsum. Irure veniam ad do sint qui ad mollit. Consectetur duis nostrud voluptate ea proident nostrud sunt amet fugiat. Commodo sunt mollit ea ad.\r\n") (registered . "2017-01-12T06:03:38 +07:00") (latitude . 74.017424) (longitude . 178.244974) (tags . ("occaecat" "id" "sit" "aliquip" "Lorem" "reprehenderit" "voluptate")) (friends . (#((id . 0) (name . "Tamra Knowles")) #((id . 1) (name . "Valeria Hubbard")) #((id . 2) (name . "Gilliam Faulkner")))) (greeting . "Hello, Sexton Noble! You have 3 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302172c2ae6bbedb15690") (index . 426) (guid . "9e7f378a-94de-40c9-977c-8a18d8ea3bac") (isActive . True) (balance . "$2,750.90") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "blue") (name . "Kirby Ellis") (gender . "male") (company . "ZIDOX") (email . "kirbyellis@zidox.com") (phone . "+1 (849) 405-2826") (address . "856 Revere Place, Wells, New Jersey, 4235") (about . "Adipisicing commodo culpa ut et fugiat laborum irure cillum id. Id id ut anim occaecat officia eiusmod minim et laboris minim eu proident consectetur voluptate. Irure incididunt quis minim dolor nostrud excepteur dolore sunt aute ut.\r\n") (registered . "2017-12-06T03:22:20 +07:00") (latitude . -62.433337) (longitude . 21.581404) (tags . ("laborum" "aliqua" "id" "irure" "deserunt" "ullamco" "quis")) (friends . (#((id . 0) (name . "Olivia Dillard")) #((id . 1) (name . "Adams Barnett")) #((id . 2) (name . "Aguilar Savage")))) (greeting . "Hello, Kirby Ellis! You have 6 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217ab515c541f9bf552") (index . 427) (guid . "7faf6e2a-4641-4590-9982-93643c6c09e9") (isActive . False) (balance . "$1,370.20") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "green") (name . "Lott Chaney") (gender . "male") (company . "OVERFORK") (email . "lottchaney@overfork.com") (phone . "+1 (813) 567-2344") (address . "244 Putnam Avenue, Bowie, Montana, 7196") (about . "Mollit duis ullamco nostrud non. Incididunt velit pariatur mollit labore incididunt aliqua adipisicing irure in aute. Velit laborum excepteur ea consectetur incididunt. Deserunt consectetur pariatur amet reprehenderit in. Deserunt consectetur dolor et aliquip cillum proident officia dolore. Laboris enim consectetur dolore nisi.\r\n") (registered . "2017-02-06T06:43:06 +07:00") (latitude . 50.157883) (longitude . -45.001457) (tags . ("consequat" "adipisicing" "culpa" "cillum" "eu" "commodo" "amet")) (friends . (#((id . 0) (name . "Christian Palmer")) #((id . 1) (name . "Kasey Hoover")) #((id . 2) (name . "Leola Crawford")))) (greeting . "Hello, Lott Chaney! You have 1 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021783426c7f3feeb074") (index . 428) (guid . "2cb00ea3-8863-4e2b-b8b9-2044896a9b38") (isActive . False) (balance . "$2,459.73") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "blue") (name . "Angel Whitehead") (gender . "female") (company . "COMTRAK") (email . "angelwhitehead@comtrak.com") (phone . "+1 (900) 575-3766") (address . "302 Forbell Street, Rodanthe, Nevada, 5502") (about . "Proident pariatur ut sit laborum irure deserunt sit eiusmod ad amet. Officia et consectetur est Lorem non consequat qui elit. Dolore duis proident duis aliquip. Enim amet pariatur esse exercitation dolore consectetur. Irure ad consequat in incididunt aliquip aute esse id in.\r\n") (registered . "2015-08-17T04:29:37 +06:00") (latitude . -73.735905) (longitude . -28.469838) (tags . ("enim" "dolor" "mollit" "veniam" "ea" "sint" "do")) (friends . (#((id . 0) (name . "Cantu Beck")) #((id . 1) (name . "Guy Ferrell")) #((id . 2) (name . "Price Madden")))) (greeting . "Hello, Angel Whitehead! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217cf7048f6f7b06969") (index . 429) (guid . "000fc507-f2b7-4877-bebc-6f72d5097ed2") (isActive . False) (balance . "$2,628.53") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "brown") (name . "Moody Munoz") (gender . "male") (company . "ZILLACON") (email . "moodymunoz@zillacon.com") (phone . "+1 (809) 513-3262") (address . "102 Glen Street, Guilford, Colorado, 2901") (about . "Incididunt eiusmod pariatur proident proident. Cupidatat labore proident proident dolore Lorem nulla et sunt occaecat pariatur irure. Eu velit ad tempor anim ut aliqua sunt duis.\r\n") (registered . "2014-04-29T11:16:53 +06:00") (latitude . -1.847949) (longitude . 177.359652) (tags . ("consectetur" "exercitation" "incididunt" "quis" "tempor" "anim" "officia")) (friends . (#((id . 0) (name . "Iva Quinn")) #((id . 1) (name . "Green Ballard")) #((id . 2) (name . "Sheila Jacobs")))) (greeting . "Hello, Moody Munoz! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217b126d0d3a6af662e") (index . 430) (guid . "bff513ad-500f-4f84-8db3-905013590453") (isActive . True) (balance . "$3,139.91") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "blue") (name . "Tia Campos") (gender . "female") (company . "ISODRIVE") (email . "tiacampos@isodrive.com") (phone . "+1 (818) 547-2519") (address . "627 Raleigh Place, Silkworth, New Mexico, 6030") (about . "Adipisicing commodo est eu pariatur officia excepteur. Magna excepteur tempor sit non mollit labore. Deserunt culpa eiusmod ea nisi adipisicing irure adipisicing sunt. Nostrud voluptate ut sint adipisicing commodo. Excepteur ullamco amet laborum incididunt consequat proident.\r\n") (registered . "2016-01-12T11:21:11 +07:00") (latitude . -70.237283) (longitude . 69.775283) (tags . ("proident" "do" "laborum" "nostrud" "est" "proident" "aliquip")) (friends . (#((id . 0) (name . "Bryan Montoya")) #((id . 1) (name . "Levine Powers")) #((id . 2) (name . "Day Morgan")))) (greeting . "Hello, Tia Campos! You have 8 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021701cab547031d984a") (index . 431) (guid . "85dd62b8-47f7-4c09-b7c3-0ab7edb16b55") (isActive . False) (balance . "$2,435.88") (picture . "http://placehold.it/32x32") (age . 25) (eyeColor . "green") (name . "Wright Bullock") (gender . "male") (company . "ISOLOGICA") (email . "wrightbullock@isologica.com") (phone . "+1 (915) 453-3315") (address . "764 Harrison Avenue, Witmer, Texas, 9835") (about . "Laboris consectetur tempor tempor sunt qui culpa duis. Proident est cillum elit labore incididunt dolor quis sunt fugiat enim non adipisicing cillum esse. Eiusmod sunt esse adipisicing veniam ad aute. Eu cillum reprehenderit quis incididunt et dolor aliqua. Aute laborum enim irure labore cupidatat ut ullamco tempor sit ex ipsum in. Et non Lorem ipsum esse quis proident. Veniam et voluptate aute eiusmod mollit magna anim incididunt esse velit pariatur consectetur sunt.\r\n") (registered . "2015-03-13T08:39:10 +06:00") (latitude . -16.61077) (longitude . -20.993083) (tags . ("voluptate" "labore" "tempor" "veniam" "eiusmod" "veniam" "reprehenderit")) (friends . (#((id . 0) (name . "Tracie Pace")) #((id . 1) (name . "Robert Allen")) #((id . 2) (name . "Velez Holden")))) (greeting . "Hello, Wright Bullock! You have 7 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302172552c71c94f7a67c") (index . 432) (guid . "1494ca25-9091-4c60-97f5-b12bd73ddec9") (isActive . True) (balance . "$2,464.14") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Farmer Hyde") (gender . "male") (company . "PRIMORDIA") (email . "farmerhyde@primordia.com") (phone . "+1 (986) 498-3332") (address . "627 Jackson Place, Epworth, North Carolina, 7201") (about . "Ex irure ea in proident non. Consectetur nostrud magna ea consectetur Lorem ea et elit officia est. Aute eu occaecat id exercitation laborum amet nisi fugiat do adipisicing tempor pariatur quis. Aliquip cillum qui id consectetur sit non labore amet dolore nostrud tempor quis est. Veniam sit elit do aliqua veniam ipsum dolore magna eiusmod fugiat. Officia magna ex quis cupidatat aute sint ullamco labore enim consequat magna. Tempor enim in ipsum deserunt commodo nostrud quis occaecat id.\r\n") (registered . "2016-08-15T09:00:55 +06:00") (latitude . -20.843656) (longitude . -92.24089) (tags . ("amet" "aute" "consectetur" "amet" "nostrud" "ut" "ex")) (friends . (#((id . 0) (name . "Guthrie Leon")) #((id . 1) (name . "Brooke Pennington")) #((id . 2) (name . "Long Banks")))) (greeting . "Hello, Farmer Hyde! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217229c3f40e30264e3") (index . 433) (guid . "35a6d80b-d77f-48c9-bcaf-3dcc49dcaaff") (isActive . True) (balance . "$3,687.09") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "green") (name . "Debra Cunningham") (gender . "female") (company . "ENTROFLEX") (email . "debracunningham@entroflex.com") (phone . "+1 (912) 509-3242") (address . "248 Butler Place, Elrama, Nebraska, 5530") (about . "Dolore irure pariatur dolor tempor commodo. Est aliquip velit non consequat laboris. Lorem eu tempor exercitation eiusmod nostrud dolore voluptate esse. Mollit sint aliquip do cillum mollit magna adipisicing voluptate irure ut voluptate voluptate labore consectetur. Officia cupidatat adipisicing velit amet non aute irure aute reprehenderit elit reprehenderit amet sint.\r\n") (registered . "2017-02-11T04:34:07 +07:00") (latitude . -88.263746) (longitude . -22.886504) (tags . ("pariatur" "et" "excepteur" "minim" "reprehenderit" "consequat" "sint")) (friends . (#((id . 0) (name . "Bond Wooten")) #((id . 1) (name . "Lena Goodwin")) #((id . 2) (name . "Whitfield Cline")))) (greeting . "Hello, Debra Cunningham! You have 1 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021724fc3b0e63c924ed") (index . 434) (guid . "10cdb955-db78-43e7-8209-8b2bd39b0daa") (isActive . True) (balance . "$2,340.01") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "green") (name . "Mcmahon Calhoun") (gender . "male") (company . "PARLEYNET") (email . "mcmahoncalhoun@parleynet.com") (phone . "+1 (862) 536-2738") (address . "653 Barlow Drive, Thynedale, Tennessee, 4567") (about . "Dolor proident nisi tempor id proident ad aliqua dolore dolore. Elit consectetur tempor occaecat irure amet deserunt duis ad ad. Pariatur exercitation qui exercitation exercitation excepteur excepteur consequat ad tempor esse tempor id deserunt. Magna anim adipisicing quis nisi culpa laboris nisi ad tempor et elit. Et proident consectetur enim adipisicing laborum.\r\n") (registered . "2014-07-23T09:28:33 +06:00") (latitude . 38.263456) (longitude . 115.16192) (tags . ("cupidatat" "dolor" "velit" "nisi" "consectetur" "labore" "velit")) (friends . (#((id . 0) (name . "Guerra Franco")) #((id . 1) (name . "Hilda Martinez")) #((id . 2) (name . "Cantrell Smith")))) (greeting . "Hello, Mcmahon Calhoun! You have 5 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217d841516d0c9d4936") (index . 435) (guid . "29d5dda6-cefc-4fa1-984a-bf1ea1f54099") (isActive . True) (balance . "$3,212.54") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "blue") (name . "Francine Burnett") (gender . "female") (company . "VOIPA") (email . "francineburnett@voipa.com") (phone . "+1 (980) 549-3743") (address . "983 Hubbard Place, Grill, Utah, 9688") (about . "Non quis fugiat non ut et esse enim minim ad quis ea laborum laboris. Quis elit irure laborum ut aliqua in deserunt fugiat in sunt exercitation. Veniam tempor non anim ipsum veniam officia consequat Lorem. In non ea elit dolore. Voluptate aute duis culpa et deserunt. Voluptate quis quis cillum quis ut nostrud qui sunt aliquip sunt occaecat et reprehenderit aute. Dolor in sit laboris excepteur voluptate fugiat deserunt cillum.\r\n") (registered . "2017-11-20T03:40:55 +07:00") (latitude . 6.729517) (longitude . 13.640853) (tags . ("voluptate" "ea" "quis" "ut" "occaecat" "sit" "exercitation")) (friends . (#((id . 0) (name . "Ramsey Schultz")) #((id . 1) (name . "Kerri Maxwell")) #((id . 2) (name . "Molly Reed")))) (greeting . "Hello, Francine Burnett! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217b14ccc7008087d29") (index . 436) (guid . "1ea016a2-5ef3-4b0e-a615-518e818e4e62") (isActive . True) (balance . "$2,088.94") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "brown") (name . "Nolan Mckee") (gender . "male") (company . "GLOBOIL") (email . "nolanmckee@globoil.com") (phone . "+1 (971) 505-3273") (address . "399 Ocean Parkway, Smock, Marshall Islands, 145") (about . "Excepteur officia qui ipsum est in duis sit occaecat ad deserunt. Velit aliqua duis dolor aute labore velit commodo consequat elit ex ut. Mollit id magna anim sint aliquip anim cillum.\r\n") (registered . "2016-01-05T02:17:11 +07:00") (latitude . -65.231126) (longitude . -138.09795) (tags . ("veniam" "proident" "enim" "magna" "dolore" "velit" "ipsum")) (friends . (#((id . 0) (name . "Schultz Richardson")) #((id . 1) (name . "Noble Blackburn")) #((id . 2) (name . "Nunez Blevins")))) (greeting . "Hello, Nolan Mckee! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021720631ea8d8b21d89") (index . 437) (guid . "b0e7f6d3-ef41-4b99-b875-aa2c1501ee37") (isActive . False) (balance . "$3,995.95") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "green") (name . "Talley Alvarez") (gender . "male") (company . "DEEPENDS") (email . "talleyalvarez@deepends.com") (phone . "+1 (931) 481-2255") (address . "922 Polhemus Place, Alderpoint, Georgia, 3814") (about . "Nostrud officia culpa tempor et. Id irure ut nulla aliquip esse id irure qui est sunt. Cillum voluptate fugiat tempor occaecat ut. Quis esse exercitation sit anim magna tempor eiusmod proident.\r\n") (registered . "2014-10-25T04:04:10 +06:00") (latitude . -70.955294) (longitude . 32.033586) (tags . ("labore" "qui" "irure" "nostrud" "aute" "duis" "ullamco")) (friends . (#((id . 0) (name . "Monroe Fuller")) #((id . 1) (name . "Celia Hahn")) #((id . 2) (name . "Knapp Holmes")))) (greeting . "Hello, Talley Alvarez! You have 9 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217e02b3ddf8af0e2ca") (index . 438) (guid . "a3986362-9980-414a-8ba5-91ebef779ac8") (isActive . True) (balance . "$2,650.23") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "brown") (name . "Wilkins Stevens") (gender . "male") (company . "JOVIOLD") (email . "wilkinsstevens@joviold.com") (phone . "+1 (823) 563-3356") (address . "110 Glendale Court, Barstow, Massachusetts, 8242") (about . "Deserunt proident occaecat tempor voluptate do officia duis. Dolore mollit quis dolore nulla eiusmod consequat. Enim elit aute eiusmod culpa cupidatat do cupidatat esse cillum velit nisi laboris. Laboris ex elit do magna. Non reprehenderit ullamco cupidatat quis. Excepteur reprehenderit aute aute sint magna Lorem exercitation deserunt excepteur.\r\n") (registered . "2014-04-23T05:42:39 +06:00") (latitude . 34.430435) (longitude . -34.217275) (tags . ("et" "ex" "quis" "enim" "excepteur" "irure" "exercitation")) (friends . (#((id . 0) (name . "Sheree York")) #((id . 1) (name . "Sasha Morse")) #((id . 2) (name . "Cecile Morton")))) (greeting . "Hello, Wilkins Stevens! You have 8 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217c71c881a0f8f3cc3") (index . 439) (guid . "a72de897-1689-48a6-a416-8bb50122c864") (isActive . True) (balance . "$2,169.26") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "blue") (name . "Noelle Herman") (gender . "female") (company . "NEXGENE") (email . "noelleherman@nexgene.com") (phone . "+1 (896) 484-2787") (address . "670 Conduit Boulevard, Stevens, Arizona, 2017") (about . "Proident voluptate enim aliquip commodo. Deserunt deserunt reprehenderit in ad magna ipsum excepteur pariatur. Nisi non magna nulla irure consequat pariatur eu laboris. Sint eiusmod quis ullamco culpa aliqua non Lorem elit et sit qui. Labore magna tempor excepteur amet sint fugiat dolore ad.\r\n") (registered . "2017-03-31T01:54:37 +06:00") (latitude . -5.132831) (longitude . 61.854018) (tags . ("ut" "cupidatat" "veniam" "id" "est" "nulla" "Lorem")) (friends . (#((id . 0) (name . "Gill White")) #((id . 1) (name . "Marian Hopkins")) #((id . 2) (name . "Knight Burris")))) (greeting . "Hello, Noelle Herman! You have 10 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217fc548b00db9e8cfa") (index . 440) (guid . "d35c05b1-4b54-48d2-8d67-646adb43e574") (isActive . True) (balance . "$3,198.66") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "blue") (name . "Joyner Robinson") (gender . "male") (company . "DIGIPRINT") (email . "joynerrobinson@digiprint.com") (phone . "+1 (814) 536-2030") (address . "759 Vandervoort Avenue, Selma, District Of Columbia, 1150") (about . "Officia et nostrud sit commodo aliqua adipisicing non dolore nisi deserunt. Ea tempor magna mollit do velit aliqua dolor id ullamco eu ipsum excepteur occaecat eiusmod. Lorem in magna nulla officia laboris ad cupidatat enim id. Cupidatat ea ex nisi aute aliquip duis est non. Eu proident ut enim elit enim. Ea non veniam amet incididunt velit velit reprehenderit aute nostrud deserunt.\r\n") (registered . "2014-06-27T08:36:06 +06:00") (latitude . -70.325133) (longitude . -93.605695) (tags . ("ut" "elit" "nulla" "ipsum" "nisi" "consectetur" "exercitation")) (friends . (#((id . 0) (name . "Hayes Torres")) #((id . 1) (name . "Karin Berger")) #((id . 2) (name . "Stafford Stanley")))) (greeting . "Hello, Joyner Robinson! You have 9 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021743d786b65c59eeae") (index . 441) (guid . "73e482dd-dd5a-47b7-aad0-f17d84b24980") (isActive . False) (balance . "$2,078.89") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "green") (name . "Johnston Price") (gender . "male") (company . "CENTICE") (email . "johnstonprice@centice.com") (phone . "+1 (872) 476-3916") (address . "790 Fane Court, Munjor, Virgin Islands, 7662") (about . "Pariatur eu fugiat aute aute adipisicing eiusmod excepteur do incididunt incididunt enim deserunt cupidatat laborum. Voluptate velit reprehenderit est ut non labore consectetur. Sint officia in qui elit Lorem anim officia magna tempor.\r\n") (registered . "2015-01-31T12:25:59 +07:00") (latitude . -79.830668) (longitude . 6.071111) (tags . ("reprehenderit" "sint" "velit" "reprehenderit" "do" "eiusmod" "laboris")) (friends . (#((id . 0) (name . "Snow Douglas")) #((id . 1) (name . "Rowe Saunders")) #((id . 2) (name . "Jeanie Mccormick")))) (greeting . "Hello, Johnston Price! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217e449d1f6380faf6a") (index . 442) (guid . "fd8e6d2d-eac3-4773-aba7-a235941a97a0") (isActive . False) (balance . "$3,152.68") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "brown") (name . "Vanessa Branch") (gender . "female") (company . "EXOVENT") (email . "vanessabranch@exovent.com") (phone . "+1 (880) 449-2338") (address . "261 Banker Street, Williams, South Dakota, 7712") (about . "Veniam ipsum anim duis aute et do ex irure velit laborum eiusmod fugiat anim ex. Ex consectetur est ullamco dolor eu in labore sunt dolore elit irure id anim veniam. Deserunt deserunt pariatur magna adipisicing irure Lorem laboris fugiat ex sunt proident duis ullamco mollit. Laboris magna incididunt commodo nostrud do sunt dolor est culpa laborum sunt. Qui ad culpa dolor est deserunt id. Sint proident nulla Lorem esse commodo qui deserunt fugiat incididunt ad Lorem.\r\n") (registered . "2017-07-30T07:07:11 +06:00") (latitude . -6.435122) (longitude . -112.502097) (tags . ("magna" "ipsum" "aliquip" "sunt" "sunt" "ullamco" "ut")) (friends . (#((id . 0) (name . "Richmond Bass")) #((id . 1) (name . "Eliza Lewis")) #((id . 2) (name . "Ava Wiggins")))) (greeting . "Hello, Vanessa Branch! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302176e294b28688183a7") (index . 443) (guid . "26c3b614-e304-4895-b704-70c9491bd41c") (isActive . True) (balance . "$1,747.86") (picture . "http://placehold.it/32x32") (age . 35) (eyeColor . "brown") (name . "Yesenia Cooke") (gender . "female") (company . "GEEKUS") (email . "yeseniacooke@geekus.com") (phone . "+1 (918) 427-2379") (address . "939 Indiana Place, Lund, Virginia, 9719") (about . "Esse exercitation irure et ullamco consequat anim sint. Proident incididunt adipisicing nostrud aliqua ipsum officia in et dolore est in laborum fugiat et. Ea do incididunt cillum incididunt eu nisi nostrud do. Commodo nisi Lorem consectetur nisi reprehenderit exercitation. Non est deserunt deserunt sint. Aliqua eiusmod laboris sit consequat ipsum ut laboris cupidatat magna. Eu occaecat tempor ex exercitation eu mollit incididunt labore.\r\n") (registered . "2017-11-14T12:37:18 +07:00") (latitude . -8.644999) (longitude . -122.457676) (tags . ("sint" "mollit" "et" "enim" "ut" "incididunt" "Lorem")) (friends . (#((id . 0) (name . "Mclaughlin Vazquez")) #((id . 1) (name . "Gabriela Paul")) #((id . 2) (name . "Ratliff Roberson")))) (greeting . "Hello, Yesenia Cooke! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab302173eb057df1ff617af") (index . 444) (guid . "163366bb-231f-4207-bc83-9e2a49d230c1") (isActive . False) (balance . "$3,187.05") (picture . "http://placehold.it/32x32") (age . 32) (eyeColor . "brown") (name . "Rasmussen Oneil") (gender . "male") (company . "XIIX") (email . "rasmussenoneil@xiix.com") (phone . "+1 (976) 462-3682") (address . "279 Gunnison Court, Unionville, Michigan, 5919") (about . "Qui voluptate do est nisi mollit cupidatat cillum ad proident ipsum. Excepteur commodo sint fugiat aliquip aliquip minim. Enim id fugiat voluptate Lorem aliquip commodo et in aute ea velit labore. Sit eiusmod nulla adipisicing irure do ex consequat quis et. Deserunt elit qui commodo do duis sint.\r\n") (registered . "2014-04-20T07:01:28 +06:00") (latitude . -53.504213) (longitude . -58.804078) (tags . ("nulla" "ipsum" "cupidatat" "consectetur" "amet" "adipisicing" "dolor")) (friends . (#((id . 0) (name . "Ana Holloway")) #((id . 1) (name . "Carol Stephens")) #((id . 2) (name . "Tami Page")))) (greeting . "Hello, Rasmussen Oneil! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302179f46569a5933a2fc") (index . 445) (guid . "055f7d09-d755-4474-8b69-2ee229bf4182") (isActive . True) (balance . "$1,272.03") (picture . "http://placehold.it/32x32") (age . 34) (eyeColor . "green") (name . "Robbins Houston") (gender . "male") (company . "GAPTEC") (email . "robbinshouston@gaptec.com") (phone . "+1 (977) 545-3449") (address . "139 Kosciusko Street, Bradenville, Northern Mariana Islands, 4854") (about . "Aliqua nulla consequat voluptate in minim incididunt. Deserunt dolor anim ipsum nisi et. Elit incididunt qui labore quis pariatur id. Do eu aliquip amet occaecat et pariatur nulla velit deserunt eiusmod ut ea. Aliquip labore aute nostrud tempor esse nisi minim anim exercitation mollit. Sit Lorem cupidatat ad enim.\r\n") (registered . "2017-02-19T11:07:29 +07:00") (latitude . 3.463512) (longitude . -150.826765) (tags . ("ullamco" "amet" "dolore" "culpa" "ullamco" "amet" "non")) (friends . (#((id . 0) (name . "Knox Mason")) #((id . 1) (name . "Yvette Dejesus")) #((id . 2) (name . "Alice Delgado")))) (greeting . "Hello, Robbins Houston! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302178231f8bb56d9852e") (index . 446) (guid . "91b8dcb0-080f-488c-912e-e7b19a21cc28") (isActive . True) (balance . "$3,631.52") (picture . "http://placehold.it/32x32") (age . 38) (eyeColor . "blue") (name . "Kim Le") (gender . "male") (company . "POLARAX") (email . "kimle@polarax.com") (phone . "+1 (946) 482-2618") (address . "598 Elliott Walk, Abrams, Illinois, 5783") (about . "Excepteur ea fugiat quis ad ea enim sint id. Quis eiusmod non anim exercitation do est velit deserunt amet ex eu in. Irure duis labore dolore proident voluptate Lorem quis sit non sunt officia. Quis commodo dolor adipisicing nisi aute eu aute culpa aliquip tempor et commodo ut. Sint sit proident in ex duis consequat eu occaecat nisi pariatur occaecat.\r\n") (registered . "2016-11-23T07:58:14 +07:00") (latitude . -70.954865) (longitude . 143.057346) (tags . ("nisi" "reprehenderit" "cupidatat" "id" "dolore" "voluptate" "ut")) (friends . (#((id . 0) (name . "Consuelo Mcmillan")) #((id . 1) (name . "Esperanza Henderson")) #((id . 2) (name . "Roxanne Spence")))) (greeting . "Hello, Kim Le! You have 7 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021791037c9de243c7f7") (index . 447) (guid . "81ae5d9a-2427-4828-8495-30612a54bc71") (isActive . True) (balance . "$3,257.48") (picture . "http://placehold.it/32x32") (age . 27) (eyeColor . "brown") (name . "Savannah Scott") (gender . "female") (company . "BOVIS") (email . "savannahscott@bovis.com") (phone . "+1 (970) 556-3093") (address . "909 Tiffany Place, Orick, Wisconsin, 3540") (about . "Ea officia veniam do consectetur amet magna adipisicing ex. Exercitation nulla culpa aute dolor duis irure occaecat. Reprehenderit reprehenderit tempor tempor aliquip mollit ea esse consectetur anim consequat voluptate deserunt ullamco ipsum. Laboris enim ipsum veniam ut excepteur irure pariatur et ut adipisicing. Laborum minim aliqua commodo occaecat aute in sint irure et eu. Est cillum ipsum enim excepteur commodo quis. Ut adipisicing officia laboris amet et anim sunt enim velit enim aute cillum duis.\r\n") (registered . "2015-06-06T12:59:05 +06:00") (latitude . 75.014737) (longitude . -127.04704) (tags . ("anim" "ea" "occaecat" "amet" "ex" "culpa" "cillum")) (friends . (#((id . 0) (name . "Lola Kelley")) #((id . 1) (name . "Cherry Silva")) #((id . 2) (name . "Conner Hawkins")))) (greeting . "Hello, Savannah Scott! You have 3 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab302171d67f1c9b350920c") (index . 448) (guid . "afca3426-d7bf-4069-afd8-747ed7be8d23") (isActive . True) (balance . "$1,994.22") (picture . "http://placehold.it/32x32") (age . 22) (eyeColor . "green") (name . "Maynard Kinney") (gender . "male") (company . "DIGIFAD") (email . "maynardkinney@digifad.com") (phone . "+1 (997) 544-3390") (address . "267 Perry Place, Fairmount, Idaho, 212") (about . "Elit amet id nostrud minim quis dolore est esse elit duis pariatur. Incididunt magna aliquip amet et quis nulla reprehenderit. Sunt ullamco nisi sint enim sunt deserunt id excepteur sit laboris laborum.\r\n") (registered . "2016-01-28T04:50:04 +07:00") (latitude . 27.745376) (longitude . 167.909189) (tags . ("excepteur" "elit" "et" "eu" "nulla" "consequat" "voluptate")) (friends . (#((id . 0) (name . "Lawanda Jefferson")) #((id . 1) (name . "Gonzalez Beasley")) #((id . 2) (name . "Sims Hickman")))) (greeting . "Hello, Maynard Kinney! You have 2 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab3021749d8341540937ed1") (index . 449) (guid . "e9d853f0-81c1-49d5-ae77-31b50ac9e3aa") (isActive . True) (balance . "$1,086.97") (picture . "http://placehold.it/32x32") (age . 24) (eyeColor . "green") (name . "Josie Cleveland") (gender . "female") (company . "QUAILCOM") (email . "josiecleveland@quailcom.com") (phone . "+1 (967) 448-2088") (address . "142 Fleet Walk, Brooktrails, New Hampshire, 5123") (about . "Minim nisi et laborum in non eiusmod officia eiusmod et occaecat culpa minim incididunt. Non aute dolor duis non consectetur non officia magna Lorem. Aliqua laborum velit Lorem proident pariatur cupidatat deserunt. Sunt elit esse consectetur ad dolor cupidatat aliquip incididunt est nisi exercitation ut. Adipisicing esse excepteur esse est labore dolor consequat fugiat non.\r\n") (registered . "2014-11-19T07:44:57 +07:00") (latitude . 39.963567) (longitude . -89.73986) (tags . ("sunt" "ea" "proident" "veniam" "adipisicing" "occaecat" "esse")) (friends . (#((id . 0) (name . "Soto Humphrey")) #((id . 1) (name . "Lee Frost")) #((id . 2) (name . "Roman Cabrera")))) (greeting . "Hello, Josie Cleveland! You have 4 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217152b59918d230f93") (index . 450) (guid . "97f917ff-4484-4369-b8d7-528c96f8c272") (isActive . True) (balance . "$1,806.57") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "green") (name . "Roy Waters") (gender . "male") (company . "NURALI") (email . "roywaters@nurali.com") (phone . "+1 (874) 597-3110") (address . "484 India Street, Rew, South Carolina, 3522") (about . "Sunt ea proident do nisi ad tempor dolore ad adipisicing Lorem cupidatat. Ea irure nisi laborum commodo nisi deserunt commodo fugiat incididunt minim. Irure reprehenderit ea culpa tempor elit Lorem cillum cillum consequat cillum nostrud. Exercitation officia mollit proident est magna fugiat aliquip.\r\n") (registered . "2014-08-17T01:05:12 +06:00") (latitude . -26.3518) (longitude . -5.4361) (tags . ("voluptate" "labore" "laborum" "veniam" "incididunt" "sit" "adipisicing")) (friends . (#((id . 0) (name . "Blackwell Ray")) #((id . 1) (name . "Maggie Johns")) #((id . 2) (name . "Kristen Vinson")))) (greeting . "Hello, Roy Waters! You have 10 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab3021746899148e86f8b95") (index . 451) (guid . "c0fdc4ec-924f-4761-8480-e844da412733") (isActive . False) (balance . "$2,781.33") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "green") (name . "Alfreda Moon") (gender . "female") (company . "COMFIRM") (email . "alfredamoon@comfirm.com") (phone . "+1 (914) 512-2623") (address . "115 Highlawn Avenue, Lindisfarne, Iowa, 8466") (about . "Tempor do commodo officia sint aliqua proident laborum exercitation. Deserunt et anim ea occaecat consectetur ullamco in elit in veniam nisi adipisicing consectetur. Officia exercitation proident dolore magna irure. Velit Lorem non nulla velit. Minim nulla quis ea sunt.\r\n") (registered . "2017-10-21T12:49:46 +06:00") (latitude . 63.08669) (longitude . 4.824003) (tags . ("pariatur" "commodo" "nulla" "occaecat" "veniam" "occaecat" "labore")) (friends . (#((id . 0) (name . "Wiggins Delacruz")) #((id . 1) (name . "Moore Chase")) #((id . 2) (name . "Kirsten Woods")))) (greeting . "Hello, Alfreda Moon! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302176c98aea4e93d8b7e") (index . 452) (guid . "ede34f4b-871b-4f71-a38d-d49b1588da07") (isActive . False) (balance . "$3,301.68") (picture . "http://placehold.it/32x32") (age . 29) (eyeColor . "green") (name . "Rosalind Booker") (gender . "female") (company . "ZAGGLE") (email . "rosalindbooker@zaggle.com") (phone . "+1 (911) 456-2072") (address . "306 Broome Street, Conway, California, 940") (about . "Eiusmod velit elit enim reprehenderit deserunt consectetur aliqua laborum. Culpa eiusmod velit est est est est ut. Dolore adipisicing qui consectetur consequat non proident ullamco.\r\n") (registered . "2016-11-28T08:10:14 +07:00") (latitude . 19.976047) (longitude . -36.205296) (tags . ("reprehenderit" "aliqua" "anim" "et" "adipisicing" "irure" "incididunt")) (friends . (#((id . 0) (name . "Gutierrez Vargas")) #((id . 1) (name . "Krystal Battle")) #((id . 2) (name . "Kara Beard")))) (greeting . "Hello, Rosalind Booker! You have 2 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217e1de52efa06888d0") (index . 453) (guid . "c9aeeda3-248b-40d9-8660-e06eb3f5b3bc") (isActive . True) (balance . "$1,265.13") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "brown") (name . "Warner Horne") (gender . "male") (company . "BULLJUICE") (email . "warnerhorne@bulljuice.com") (phone . "+1 (965) 427-3508") (address . "583 Frank Court, Wyano, Wyoming, 9383") (about . "Laboris labore exercitation occaecat pariatur mollit id sint proident fugiat ea adipisicing reprehenderit aliqua. Magna consequat cillum laboris sint Lorem nulla do aliquip culpa proident nostrud aliquip est. Velit minim dolore voluptate duis tempor commodo nisi incididunt irure nisi commodo nostrud. Aute voluptate laborum fugiat irure minim velit ea irure ipsum. Ipsum Lorem et aliquip eu amet aliqua deserunt.\r\n") (registered . "2014-08-16T01:37:58 +06:00") (latitude . 10.279365) (longitude . 78.629648) (tags . ("anim" "aliqua" "et" "Lorem" "fugiat" "id" "occaecat")) (friends . (#((id . 0) (name . "Nelson Flores")) #((id . 1) (name . "Scott Cherry")) #((id . 2) (name . "Adele Conner")))) (greeting . "Hello, Warner Horne! You have 1 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab302170f6c45eb4f7fbccf") (index . 454) (guid . "b412a25e-25f8-4971-87bf-5d1d0b2ed781") (isActive . False) (balance . "$3,888.00") (picture . "http://placehold.it/32x32") (age . 20) (eyeColor . "green") (name . "Annette Mcgee") (gender . "female") (company . "APEXTRI") (email . "annettemcgee@apextri.com") (phone . "+1 (951) 537-3196") (address . "220 Roder Avenue, Sisquoc, Maryland, 1961") (about . "Aute occaecat consectetur velit consectetur. Incididunt ad officia officia deserunt anim deserunt magna consectetur nostrud. Elit quis adipisicing duis irure anim sint anim tempor dolore. Enim sunt laboris fugiat minim mollit aliquip Lorem commodo labore consequat dolore. Fugiat dolor eiusmod aliqua duis do dolore nostrud officia. Labore magna fugiat exercitation eiusmod sint elit veniam labore nostrud Lorem exercitation qui proident. Sint officia cillum aliquip aliquip nostrud.\r\n") (registered . "2016-02-16T06:16:15 +07:00") (latitude . 69.591048) (longitude . -119.520096) (tags . ("deserunt" "reprehenderit" "non" "veniam" "minim" "pariatur" "commodo")) (friends . (#((id . 0) (name . "Alyce Carrillo")) #((id . 1) (name . "Moreno Snyder")) #((id . 2) (name . "Emilia Rollins")))) (greeting . "Hello, Annette Mcgee! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab3021723804c42f32fd9c9") (index . 455) (guid . "6b424c5a-f916-45a5-ace3-2877e00a772c") (isActive . False) (balance . "$1,568.46") (picture . "http://placehold.it/32x32") (age . 40) (eyeColor . "brown") (name . "Mcfadden Hayden") (gender . "male") (company . "XTH") (email . "mcfaddenhayden@xth.com") (phone . "+1 (921) 512-3993") (address . "533 Stillwell Place, Eagleville, Louisiana, 9551") (about . "Officia adipisicing ad esse cupidatat ipsum ut deserunt labore exercitation nostrud dolor magna velit. Do occaecat in commodo dolore. Laboris culpa aliquip anim Lorem reprehenderit cillum. Deserunt mollit consectetur qui eiusmod ea exercitation labore culpa anim consequat commodo ut laborum qui. Consequat esse ullamco cupidatat dolore ipsum laboris labore aute est labore non ad. Officia cillum non dolore consequat aliqua consectetur dolor sint deserunt dolor ut dolore aliquip. Ullamco exercitation et amet cupidatat laborum sit.\r\n") (registered . "2014-03-27T11:54:22 +06:00") (latitude . -29.615173) (longitude . -77.77801) (tags . ("aliquip" "commodo" "proident" "veniam" "deserunt" "dolor" "proident")) (friends . (#((id . 0) (name . "Dianne Merritt")) #((id . 1) (name . "Lourdes Puckett")) #((id . 2) (name . "Kristine Kidd")))) (greeting . "Hello, Mcfadden Hayden! You have 1 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217febf31e16224bcc3") (index . 456) (guid . "91925cc0-379b-41b7-9197-f16e082e83d6") (isActive . False) (balance . "$3,147.47") (picture . "http://placehold.it/32x32") (age . 30) (eyeColor . "green") (name . "Matilda Mckinney") (gender . "female") (company . "SUSTENZA") (email . "matildamckinney@sustenza.com") (phone . "+1 (890) 566-2383") (address . "945 Bedford Avenue, Sanders, Federated States Of Micronesia, 4414") (about . "Sint velit do minim non officia sunt laboris do commodo cupidatat dolor ex Lorem adipisicing. Ea est adipisicing eu eu id ad qui. Cupidatat qui adipisicing in pariatur consequat deserunt. Dolor sint est id voluptate pariatur aliqua ad irure eiusmod id minim voluptate duis veniam. Eiusmod pariatur nulla officia occaecat ex tempor cillum occaecat anim eiusmod non ipsum.\r\n") (registered . "2014-12-19T06:20:01 +07:00") (latitude . -81.735941) (longitude . -117.655575) (tags . ("eiusmod" "aute" "mollit" "labore" "laborum" "commodo" "occaecat")) (friends . (#((id . 0) (name . "Pearson Cobb")) #((id . 1) (name . "Selma Cash")) #((id . 2) (name . "Chavez Hatfield")))) (greeting . "Hello, Matilda Mckinney! You have 6 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217aa0ccc328a891dfd") (index . 457) (guid . "92c02355-0251-461d-955a-08e6905464d0") (isActive . True) (balance . "$3,439.37") (picture . "http://placehold.it/32x32") (age . 23) (eyeColor . "green") (name . "Adriana Bradshaw") (gender . "female") (company . "TERSANKI") (email . "adrianabradshaw@tersanki.com") (phone . "+1 (829) 411-2879") (address . "443 Harman Street, Sugartown, Pennsylvania, 5287") (about . "Minim aliquip irure culpa consequat adipisicing. Ullamco ullamco dolor nulla nulla ex veniam occaecat nisi mollit ea dolor nostrud deserunt. Ea in eiusmod ut veniam ut aliquip. Veniam laborum nostrud mollit in sint incididunt ad incididunt magna reprehenderit minim laboris proident. Est qui aute quis sit dolore ipsum incididunt pariatur enim in tempor. Velit Lorem consectetur commodo duis proident aute et enim nostrud esse quis duis Lorem ipsum. Adipisicing ut minim Lorem commodo ad.\r\n") (registered . "2014-03-12T05:05:03 +06:00") (latitude . 28.642588) (longitude . 113.321408) (tags . ("dolore" "anim" "tempor" "culpa" "dolor" "sint" "anim")) (friends . (#((id . 0) (name . "June Zimmerman")) #((id . 1) (name . "Carolina Mathis")) #((id . 2) (name . "Fitzpatrick Baxter")))) (greeting . "Hello, Adriana Bradshaw! You have 3 unread messages.") (favoriteFruit . "banana")) #((_id . "5ab30217aa73654b86e37e7b") (index . 458) (guid . "14b6bcae-a06d-4694-8666-69276251e46b") (isActive . False) (balance . "$2,508.83") (picture . "http://placehold.it/32x32") (age . 21) (eyeColor . "brown") (name . "Jeanette Santiago") (gender . "female") (company . "PYRAMIS") (email . "jeanettesantiago@pyramis.com") (phone . "+1 (945) 592-3921") (address . "410 Columbia Place, Ripley, Vermont, 8150") (about . "Excepteur ullamco reprehenderit deserunt ex adipisicing velit magna deserunt amet labore enim adipisicing. Esse aliquip irure in id ad reprehenderit quis dolor. Est et deserunt amet pariatur magna dolor ut occaecat ullamco elit. Cupidatat consequat cupidatat id tempor nisi esse tempor ad incididunt aliquip duis nulla amet. Nulla ut irure officia elit aliquip. Laborum anim officia ipsum minim veniam officia sint adipisicing incididunt ipsum occaecat elit nulla fugiat. Sit anim consequat ullamco sunt consequat magna culpa Lorem veniam reprehenderit fugiat eu aute dolore.\r\n") (registered . "2014-08-20T03:49:47 +06:00") (latitude . -57.813381) (longitude . -82.01748) (tags . ("labore" "culpa" "deserunt" "nostrud" "do" "proident" "consequat")) (friends . (#((id . 0) (name . "Wade Vincent")) #((id . 1) (name . "Phelps Alston")) #((id . 2) (name . "Huffman Conrad")))) (greeting . "Hello, Jeanette Santiago! You have 5 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217d632e700b3ec04bb") (index . 459) (guid . "ba031eee-dcd7-4e48-93ab-21019dbe4e43") (isActive . False) (balance . "$3,397.57") (picture . "http://placehold.it/32x32") (age . 26) (eyeColor . "green") (name . "Wilma Hendricks") (gender . "female") (company . "CONFERIA") (email . "wilmahendricks@conferia.com") (phone . "+1 (930) 588-3286") (address . "385 Shale Street, Klondike, Maine, 8827") (about . "Nostrud ullamco est occaecat exercitation qui amet eu aute nostrud Lorem amet commodo. Ad aliquip exercitation velit officia mollit nisi excepteur pariatur. Ullamco reprehenderit ea elit ea officia. Cillum proident exercitation incididunt magna. Laboris tempor cupidatat nostrud ex est laboris nulla elit esse reprehenderit. Aliqua duis adipisicing in mollit fugiat non esse incididunt aute consectetur enim exercitation Lorem pariatur.\r\n") (registered . "2017-05-23T06:27:49 +06:00") (latitude . 52.075019) (longitude . 74.696424) (tags . ("exercitation" "mollit" "reprehenderit" "deserunt" "minim" "excepteur" "anim")) (friends . (#((id . 0) (name . "Reese Lowe")) #((id . 1) (name . "Martina Adams")) #((id . 2) (name . "Johnnie Vang")))) (greeting . "Hello, Wilma Hendricks! You have 10 unread messages.") (favoriteFruit . "apple")) #((_id . "5ab30217f4632ac468680aee") (index . 460) (guid . "0d7c684d-69d6-4883-a93a-f4bdde522f6a") (isActive . True) (balance . "$1,854.29") (picture . "http://placehold.it/32x32") (age . 36) (eyeColor . "blue") (name . "Landry Lawson") (gender . "male") (company . "SCENTY") (email . "landrylawson@scenty.com") (phone . "+1 (919) 556-2641") (address . "894 Sunnyside Avenue, Gerton, Alaska, 6332") (about . "Cupidatat sit ex nisi non amet nisi consectetur. Ullamco tempor amet amet sint. Laborum excepteur amet sint voluptate Lorem eu deserunt velit commodo est amet adipisicing proident. Consequat ipsum nisi enim deserunt esse qui fugiat laborum deserunt et enim duis. Dolore ad non qui do amet fugiat ullamco cillum amet ex nulla ut officia.\r\n") (registered . "2017-11-11T08:41:50 +07:00") (latitude . 86.848154) (longitude . -119.704291) (tags . ("laboris" "sunt" "ad" "ad" "do" "adipisicing" "ullamco")) (friends . (#((id . 0) (name . "Whitehead Rice")) #((id . 1) (name . "Oconnor Carey")) #((id . 2) (name . "Durham Wallace")))) (greeting . "Hello, Landry Lawson! You have 4 unread messages.") (favoriteFruit . "strawberry")) #((_id . "5ab30217f3ea67e41140dae1") (index . 461) (guid . "aa99ccb7-b050-41d9-876e-350dc6dae25b") (isActive . False) (balance . "$1,306.00") (picture . "http://placehold.it/32x32") (age . 31) (eyeColor . "brown") (name . "Nellie Richmond") (gender . "female") (company . "JAMNATION") (email . "nellierichmond@jamnation.com") (phone . "+1 (881) 508-3061") (address . "303 Bergen Court, Cornfields, Palau, 9150") (about . "Velit elit et qui aliqua et reprehenderit excepteur id mollit et labore mollit amet. Ex labore exercitation do dolore eiusmod non ex proident ut labore eiusmod. Veniam duis magna in nostrud voluptate incididunt veniam officia cupidatat quis cillum est magna aliquip.\r\n") (registered . "2016-02-14T07:58:55 +07:00") (latitude . -1.887096) (longitude . 163.083029) (tags . ("voluptate" "dolore" "exercitation" "nulla" "enim" "sit" "duis")) (friends . (#((id . 0) (name . "Susana Floyd")) #((id . 1) (name . "Aurelia Mack")) #((id . 2) (name . "Blanche Hobbs")))) (greeting . "Hello, Nellie Richmond! You have 4 unread messages.") (favoriteFruit . "banana"))) diff --git a/lisp-interpreter/tests/data/json-to-lisp.py b/lisp-interpreter/tests/data/json-to-lisp.py new file mode 100644 index 0000000..eb7d312 --- /dev/null +++ b/lisp-interpreter/tests/data/json-to-lisp.py @@ -0,0 +1,38 @@ +import json +import sys +import itertools + +json_data = json.load(sys.stdin) + +def lisp_dump(data): + if isinstance(data, int): + return str(data) + elif isinstance(data, float): + return str(data) + elif isinstance(data, str): + escaped_string = data.encode("unicode_escape").decode("utf-8") + return "\"" + escaped_string + "\"" + elif isinstance(data, list): + result = "(" + for i, item in enumerate(data): + result += lisp_dump(item) + if i + 1 < len(data): + result += " " + result += ")" + return result + elif isinstance(data, dict): + result = "#(" + i = 0 + for key, item in data.items(): + result += "(%s . %s)" % (key, lisp_dump(item)) + if i + 1 < len(data): + result += " " + i += 1 + result += ")" + return result + else: + print("error") + print(type(data)) + +print(lisp_dump(json_data)) + diff --git a/lisp-interpreter/tests/data/test.sh b/lisp-interpreter/tests/data/test.sh new file mode 100755 index 0000000..8fb1613 --- /dev/null +++ b/lisp-interpreter/tests/data/test.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +../../lisp --script big_data1.scm +cat big_data_canada.sexpr | ../../lisp --script big_data2.scm diff --git a/lisp-interpreter/tests/experiments/quasi.scm b/lisp-interpreter/tests/experiments/quasi.scm new file mode 100644 index 0000000..e3e8b61 --- /dev/null +++ b/lisp-interpreter/tests/experiments/quasi.scm @@ -0,0 +1,81 @@ + +(define (quasiquote-helper tail x) + (cond ((null? x) (reverse! tail)) + ((not (pair? x)) (list 'QUOTE x)) + ((eq? 'UNQUOTE (car x)) (car (cdr x))) + ((eq? 'UNQUOTESPLICE (car x)) (error "invalid place")) + ((and (pair? (car x)) + (eq? (car (car x)) 'UNQUOTESPLICE)) + + (quasiquote-helper (reverse-append! (car (cdr (car x))) tail) (cdr x)) + ) + (else + (quasiquote-helper (cons (quasiquote-helper '() (car x)) tail) + (cdr x))) + + )) + +(define-macro quasiquote + (lambda (x) + (display x) + (newline) + (quasiquote-helper '() x) + )) + + +(display (macroexpand '`(1 ,x 3))) +(newline) +;(display (macroexpand '`(1 ,@(2 2) 3))) + + + +(define-macro do2 + (lambda (vars loop-check loop) + (let ((names '()) + (inits '()) + (steps '()) + (func (gensym))) + + (for-each (lambda (var) + (push (car var) names) + (set! var (cdr var)) + (push (car var) inits) + (set! var (cdr var)) + (push (car var) steps)) + vars) + + (display loop-check) + (newline) + + `((lambda (,func) + (begin + (set! ,func (lambda ,names + (if ,(car loop-check) + ,(car (cdr loop-check)) + ,(cons 'BEGIN (list loop (cons func steps))) + ))) + ,(cons func inits) + )) '()) + ))) + +(display (macroexpand '(do2 ((i 0 (+ i 1))) + ((> i 0) 'done) + '()))) + +(newline) +(newline) + + +(define-macro let2 (lambda (def-list . body) + (cons `(lambda + ,(map1 (lambda (entry) (car entry)) def-list '()) + ,(cons 'BEGIN body)) + (map1 (lambda (entry) (car (cdr entry))) def-list '())) )) + +(display (macroexpand + '(let2 ((x 1) (y 2)) (set! x (+ x y)) x))) + + + + + diff --git a/lisp-interpreter/tests/printer/.gitignore b/lisp-interpreter/tests/printer/.gitignore new file mode 100644 index 0000000..7442c1f --- /dev/null +++ b/lisp-interpreter/tests/printer/.gitignore @@ -0,0 +1,2 @@ +temp1.scm +temp2.scm diff --git a/lisp-interpreter/tests/printer/sample.scm b/lisp-interpreter/tests/printer/sample.scm new file mode 100644 index 0000000..f160b7d --- /dev/null +++ b/lisp-interpreter/tests/printer/sample.scm @@ -0,0 +1,19 @@ +(book + (author "ARISTOTLE") + (title "Categories") + (year -350) + (tags #(philosophy logic definitions substance)) + (lines + "Things are said to be named \"equivocally\" when, though they have a common name, the definition corresponding with the name differs for each." + "Thus, a real man and a figure in a picture can both lay claim to the name \"animal\"; yet these are equivocally so named, for, though they have a common name, the definition corresponding with the name differs for each" + "For should any one define in what sense each is an animal, his definition in the one case will be appropriate to that case only.\n" + "On the other hand, things are said to be named \"univocally\" which have both the name and the definition answering to the name in common" + "A man and an ox are both \"animal\", and these are univocally so named, inasmuch as not only the name, but also the definition, is the same in both cases:" + "for if a man should state in what sense each is an animal, the statement in the one case would be identical with that in the other.\n" + + "Things are said to be named \"derivatively\", which derive their name from some other name, but differ from it in termination." + "Thus the grammarian derives his name from the word \"grammar\", and the courageous man from the word \"courage\"." + )) + +(alphabet #\a #\b #\c #\d #\e) +(nums 0.0 0.25 0.5 0.75 1.0) diff --git a/lisp-interpreter/tests/printer/test.sh b/lisp-interpreter/tests/printer/test.sh new file mode 100755 index 0000000..f14df7a --- /dev/null +++ b/lisp-interpreter/tests/printer/test.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +# make sure reader and writer work and are compatible. + +# 1. load s expresion, print it out. +cat sample.scm | ../../printer > temp1.scm + +# 2. load the output, print it out again. +cat temp1.scm | ../../printer > temp2.scm + +# 3. ensure both outputs match +cmp temp1.scm temp2.scm + + From 8844d2f06421e21a176769a7204a1782c4be4ed0 Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Wed, 24 Sep 2025 11:04:16 +0200 Subject: [PATCH 07/19] meson bulid changes --- meson.build | 4 +- src/init.c | 9 +- src/terminal.c | 226 +++++++++++++++++++++++++------------------------ 3 files changed, 123 insertions(+), 116 deletions(-) diff --git a/meson.build b/meson.build index dcd91de..a6079d5 100644 --- a/meson.build +++ b/meson.build @@ -33,7 +33,7 @@ if cc.get_id() == 'clang' endif # Include directory -inc_dir = include_directories('include', 'lisp-interpreter/dist') +inc_dir = include_directories('include') # Source files src_files = files( @@ -49,7 +49,7 @@ src_files = files( ) # Executable -executable('editor', +executable('beluga', src_files, include_directories : inc_dir, install : true, diff --git a/src/init.c b/src/init.c index 8dc3d90..db8627c 100644 --- a/src/init.c +++ b/src/init.c @@ -1,7 +1,6 @@ #include "../include/init.h" -#include "data.h" +#include "../include/data.h" #include -#include extern struct editorConfig; @@ -21,4 +20,10 @@ void initEditor() { die("getWindowSize"); } E.screenrows -= 2; + + // E.fd_init_file = fopen("../config/init.el", "r"); + + // E.ctx = lisp_init(); + // E.ctx_data = lisp_read_file(E.fd_init_file, &E.ctx_error, E.ctx); + // lisp_printf(stderr, E.ctx_data); } diff --git a/src/terminal.c b/src/terminal.c index 0ac54ac..48dc20a 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -1,146 +1,148 @@ #include "../include/terminal.h" -#include "data.h" +#include "../include/data.h" + +#include void die(const char *s) { - write(STDOUT_FILENO, "\x1b[2J", 4); - write(STDOUT_FILENO, CURSOR_TOP_LEFT, 3); - perror(s); - exit(1); + write(STDOUT_FILENO, "\x1b[2J", 4); + write(STDOUT_FILENO, CURSOR_TOP_LEFT, 3); + perror(s); + exit(1); } void disableRawMode() { - if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E.orig_termios) == -1) { - die("tcsetattr"); - } + if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E.orig_termios) == -1) { + die("tcsetattr"); + } } void enableRawMode() { - if (tcgetattr(STDIN_FILENO, &E.orig_termios) == -1) { - die("tcgetattr"); - } + if (tcgetattr(STDIN_FILENO, &E.orig_termios) == -1) { + die("tcgetattr"); + } - struct termios raw = E.orig_termios; - raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); - raw.c_oflag &= ~(OPOST); - raw.c_cflag |= (CS8); - raw.c_lflag &= ~(ECHO | ICANON | ISIG | IEXTEN); - raw.c_cc[VMIN] = 0; - raw.c_cc[VTIME] = 1; + struct termios raw = E.orig_termios; + raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); + raw.c_oflag &= ~(OPOST); + raw.c_cflag |= (CS8); + raw.c_lflag &= ~(ECHO | ICANON | ISIG | IEXTEN); + raw.c_cc[VMIN] = 0; + raw.c_cc[VTIME] = 1; - if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1) { - die("tcgetattr"); - } + if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1) { + die("tcgetattr"); + } } int editorReadKey() { - int nread; - char c; - char seq[3]; - while ((nread = read(STDIN_FILENO, &c, 1)) != 1) { - if (nread == -1 && errno != EAGAIN) { - die("read"); + int nread; + char c; + char seq[3]; + while ((nread = read(STDIN_FILENO, &c, 1)) != 1) { + if (nread == -1 && errno != EAGAIN) { + die("read"); + } } - } - if (c == '\x1b') { - if (read(STDIN_FILENO, &seq[0], 1) != 1 || - read(STDIN_FILENO, &seq[1], 1) != 1) { - return '\x1b'; - } - if (seq[0] == '[') { - if (seq[1] >= '0' && seq[1] <= '9') { - if (read(STDIN_FILENO, &seq[2], 1) != 1) { - return '\x1b'; + if (c == '\x1b') { + if (read(STDIN_FILENO, &seq[0], 1) != 1 || + read(STDIN_FILENO, &seq[1], 1) != 1) { + return '\x1b'; } - if (seq[2] == '~') { - switch (seq[1]) { - case '1': - return BEG_LINE; - case '3': - return DEL_KEY; - case '4': - return END_LINE; - case '5': - return PAGE_UP; - case '6': - return PAGE_DOWN; - case '7': - return BEG_LINE; - case '8': - return END_LINE; - } - } - } else { + if (seq[0] == '[') { + if (seq[1] >= '0' && seq[1] <= '9') { + if (read(STDIN_FILENO, &seq[2], 1) != 1) { + return '\x1b'; + } + if (seq[2] == '~') { + switch (seq[1]) { + case '1': + return BEG_LINE; + case '3': + return DEL_KEY; + case '4': + return END_LINE; + case '5': + return PAGE_UP; + case '6': + return PAGE_DOWN; + case '7': + return BEG_LINE; + case '8': + return END_LINE; + } + } + } else { - switch (seq[1]) { - case 'A': - return ARROW_UP; - case 'B': - return ARROW_DOWN; - case 'C': - return ARROW_RIGHT; - case 'D': - return ARROW_LEFT; - case 'H': - return BEG_LINE; - case 'F': - return END_LINE; + switch (seq[1]) { + case 'A': + return ARROW_UP; + case 'B': + return ARROW_DOWN; + case 'C': + return ARROW_RIGHT; + case 'D': + return ARROW_LEFT; + case 'H': + return BEG_LINE; + case 'F': + return END_LINE; + } + } + } else if (seq[0] == 'O') { + switch (seq[1]) { + case 'H': + return BEG_LINE; + case 'F': + return END_LINE; + } } - } - } else if (seq[0] == 'O') { - switch (seq[1]) { - case 'H': - return BEG_LINE; - case 'F': - return END_LINE; - } + return '\x1b'; + } else { + return c; } - return '\x1b'; - } else { - return c; - } } int getCursorPosition(int *rows, int *cols) { - char buf[32]; - unsigned int i = 0; + char buf[32]; + unsigned int i = 0; - if (write(STDOUT_FILENO, "\x1b[6n", 4) != 4) { - return -1; - } - - while (i < sizeof(buf) - 1) { - if (read(STDIN_FILENO, &buf[i], 1) != 1) { - break; + if (write(STDOUT_FILENO, "\x1b[6n", 4) != 4) { + return -1; } - if (buf[i] == 'R') { - break; + + while (i < sizeof(buf) - 1) { + if (read(STDIN_FILENO, &buf[i], 1) != 1) { + break; + } + if (buf[i] == 'R') { + break; + } + ++i; } - ++i; - } - buf[i] = '\0'; + buf[i] = '\0'; - if (buf[0] != '\x1b' || buf[1] != '[') { - return -1; - } - if (sscanf(&buf[2], "%d;%d", rows, cols) != 2) { - return -1; - } + if (buf[0] != '\x1b' || buf[1] != '[') { + return -1; + } + if (sscanf(&buf[2], "%d;%d", rows, cols) != 2) { + return -1; + } - return 0; + return 0; } int getWindowSize(int *rows, int *cols) { - struct winsize ws; + struct winsize ws; - if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) { - if (write(STDOUT_FILENO, "\x1b[999C\x1b[999B", 12) != 12) { - return -1; + if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) { + if (write(STDOUT_FILENO, "\x1b[999C\x1b[999B", 12) != 12) { + return -1; + } + return getCursorPosition(rows, cols); + } else { + *cols = ws.ws_col; + *rows = ws.ws_row; + return 0; } - return getCursorPosition(rows, cols); - } else { - *cols = ws.ws_col; - *rows = ws.ws_row; - return 0; - } } From 6cd79b5c763c7ed51424089b9ef251903e85104a Mon Sep 17 00:00:00 2001 From: arthur Date: Wed, 24 Sep 2025 11:14:22 +0200 Subject: [PATCH 08/19] downgrade version of runner upload --- .gitea/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 05f7ac0..6476be7 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -30,7 +30,7 @@ jobs: run: meson test -C build --print-errorlogs || true - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: beluga path: build/ From 7dded62db9b3b1c2615ffef771ca4064f4be1482 Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Thu, 25 Sep 2025 10:47:07 +0200 Subject: [PATCH 09/19] add doxygen deployement --- .gitea/workflows/build.yml | 13 +++++++++++++ meson.build | 33 ++++----------------------------- 2 files changed, 17 insertions(+), 29 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 05f7ac0..3c3f872 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -34,3 +34,16 @@ jobs: with: name: beluga path: build/ + + - name: Install Doxygen + run: sudo apt-get update && sudo apt-get install -y doxygen graphviz + + - name: Build Doxygen Docs + run: doxygen Doxyfile + + - name: Deploy to Pages + uses: peaceiris/actions-gh-pages@v3 + with: + publish_dir: ./docs/html + publish_branch: pages + github_token: ${{ secrets.GITEA_TOKEN }} diff --git a/meson.build b/meson.build index a6079d5..239d64a 100644 --- a/meson.build +++ b/meson.build @@ -1,39 +1,15 @@ -project('editor', 'c', +project('beluga', 'c', version : '1.0.0', default_options : [ - 'warning_level=2', + 'c_std=none', ] ) -# Check if we're using Clang and add Clang-specific options cc = meson.get_compiler('c') -m = cc.find_library('m', required: true) -if cc.get_id() == 'clang' - add_project_arguments([ - '-Wextra', - '-Wpedantic', - '-Wno-unused-parameter', - '-fcolor-diagnostics' # Colored output - ], language : 'c') - - # Add debug options for debug builds - if get_option('buildtype') == 'debug' - add_project_arguments([ - '-fsanitize=address', # AddressSanitizer - '-fsanitize=undefined', # UndefinedBehaviorSanitizer - '-g3', # Full debug info - '-O0' # No optimization - ], language : 'c') - - add_project_link_arguments([ - '-fsanitize=address', - '-fsanitize=undefined' - ], language : 'c') - endif -endif +m = cc.find_library('m', required: false) # Include directory -inc_dir = include_directories('include') +inc_dir = include_directories('include', 'lisp-interpreter/dist') # Source files src_files = files( @@ -52,6 +28,5 @@ src_files = files( executable('beluga', src_files, include_directories : inc_dir, - install : true, dependencies: [m] ) From 35050845275aa3f2b3065cc1275fe404ff41181b Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Thu, 25 Sep 2025 11:00:53 +0200 Subject: [PATCH 10/19] second try --- .gitea/workflows/build.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index f79a3b4..f901d9e 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -42,8 +42,14 @@ jobs: run: doxygen Doxyfile - name: Deploy to Pages - uses: peaceiris/actions-gh-pages@v3 - with: - publish_dir: ./docs/html - publish_branch: pages - github_token: ${{ secrets.GITEA_TOKEN }} + run: | + git config user.name "CI Bot" + git config user.email "ci-bot@homelinuxserver" + git fetch origin + git checkout --orphan pages + git rm -rf . + cp -r docs/html/* . + git add . + git commit -m "Update docs" || echo "No changes to commit" + git push https://$USERNAME:${{ secrets.GITEA_TOKEN }}@homelinuxserver.ddns.net/git//.git pages --force + From 27ae0a684fa74ba4745606ac8cb58aeb553514a9 Mon Sep 17 00:00:00 2001 From: arthur Date: Thu, 25 Sep 2025 11:06:53 +0200 Subject: [PATCH 11/19] Update .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index f901d9e..a325244 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -1,9 +1,8 @@ -name: Meson Build and Deploy +name: Build and Deploy Docs on: push: - branches: ["lisp"] - pull_request: + branches: [ lisp ] # or your default branch jobs: build: @@ -12,13 +11,11 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - with: - tokens: ${{ secrets.GITEA_TOKEN }} - name: Install dependencies run: | sudo apt-get update - sudo apt-get install -y meson ninja-build gcc + sudo apt-get install -y meson ninja-build gcc doxygen graphviz - name: Configure Meson run: meson setup build @@ -29,19 +26,10 @@ jobs: - name: Run tests run: meson test -C build --print-errorlogs || true - - name: Upload artifact - uses: actions/upload-artifact@v3 - with: - name: beluga - path: build/ - - - name: Install Doxygen - run: sudo apt-get update && sudo apt-get install -y doxygen graphviz - - name: Build Doxygen Docs run: doxygen Doxyfile - - name: Deploy to Pages + - name: Deploy to Pages branch run: | git config user.name "CI Bot" git config user.email "ci-bot@homelinuxserver" @@ -52,4 +40,3 @@ jobs: git add . git commit -m "Update docs" || echo "No changes to commit" git push https://$USERNAME:${{ secrets.GITEA_TOKEN }}@homelinuxserver.ddns.net/git//.git pages --force - From e4691669b843f25b9fe1b027c7a76b6d721ba1d4 Mon Sep 17 00:00:00 2001 From: arthur Date: Thu, 25 Sep 2025 11:22:11 +0200 Subject: [PATCH 12/19] Update .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index a325244..f7ff2fe 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -2,7 +2,7 @@ name: Build and Deploy Docs on: push: - branches: [ lisp ] # or your default branch + branches: [ lisp ] jobs: build: @@ -11,6 +11,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + with: + tokens: ${{ secrets.GITEA_TOKEN }} - name: Install dependencies run: | From 09ef5c0f3bb2ba39330f01839d66a9fb8a761741 Mon Sep 17 00:00:00 2001 From: arthur Date: Thu, 25 Sep 2025 11:25:52 +0200 Subject: [PATCH 13/19] Update .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index f7ff2fe..e5547bd 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -2,7 +2,7 @@ name: Build and Deploy Docs on: push: - branches: [ lisp ] + branches: ["lisp"] jobs: build: From d083948dfe1a1088bd197edb9cd8d136f2ce9be9 Mon Sep 17 00:00:00 2001 From: arthur Date: Thu, 25 Sep 2025 11:35:41 +0200 Subject: [PATCH 14/19] Update .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index e5547bd..11dbb58 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -38,7 +38,7 @@ jobs: git fetch origin git checkout --orphan pages git rm -rf . - cp -r docs/html/* . + cp -r doc/html/* . git add . git commit -m "Update docs" || echo "No changes to commit" git push https://$USERNAME:${{ secrets.GITEA_TOKEN }}@homelinuxserver.ddns.net/git//.git pages --force From 53d6572c8c7235b0a9e4b8d125188c1125bc7c27 Mon Sep 17 00:00:00 2001 From: arthur Date: Thu, 25 Sep 2025 12:10:44 +0200 Subject: [PATCH 15/19] Revert doxygen deployement --- .gitea/workflows/build.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 11dbb58..7b87d7b 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: | sudo apt-get update - sudo apt-get install -y meson ninja-build gcc doxygen graphviz + sudo apt-get install -y meson ninja-build gcc - name: Configure Meson run: meson setup build @@ -27,18 +27,3 @@ jobs: - name: Run tests run: meson test -C build --print-errorlogs || true - - - name: Build Doxygen Docs - run: doxygen Doxyfile - - - name: Deploy to Pages branch - run: | - git config user.name "CI Bot" - git config user.email "ci-bot@homelinuxserver" - git fetch origin - git checkout --orphan pages - git rm -rf . - cp -r doc/html/* . - git add . - git commit -m "Update docs" || echo "No changes to commit" - git push https://$USERNAME:${{ secrets.GITEA_TOKEN }}@homelinuxserver.ddns.net/git//.git pages --force From 3b6c60a49e54207242c316c0dba7de3e5cc69dc5 Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Thu, 2 Oct 2025 11:26:18 +0200 Subject: [PATCH 16/19] functional lisp config files --- assets/beluga.txt | 44 +++++++++ config/init.el | 13 +++ include/builtins.h | 22 +++++ include/data.h | 31 +++++- include/define.h | 2 - include/init.h | 2 + include/input.h | 4 + main.c | 1 + meson.build | 1 + src/builtins.c | 95 +++++++++++++++++++ src/editor_op.c | 1 + src/file_io.c | 4 +- src/init.c | 58 +++++++++++- src/input.c | 166 +++++++++++++++++--------------- src/row_op.c | 18 ++-- src/terminal.c | 229 +++++++++++++++++++++++---------------------- 16 files changed, 482 insertions(+), 209 deletions(-) create mode 100644 assets/beluga.txt create mode 100644 config/init.el create mode 100644 include/builtins.h create mode 100644 src/builtins.c diff --git a/assets/beluga.txt b/assets/beluga.txt new file mode 100644 index 0000000..28fe0e0 --- /dev/null +++ b/assets/beluga.txt @@ -0,0 +1,44 @@ + **#%#*****###%** + *##+--------------------=##* + #*=----------------------------=*#* + #*------------------------------------*# + %+----------------------------------------=#* + #+---------------------------------------------## + *#-------------------------------------------------=## + *#----------------------------------------------------:-## + #----------------------------------------------------------## + #=-------------------------------------------------------------## + #----------------------------==----------------------------------=#* + +--------------------------+@#-%*-----------------------------------#* + +--------------------------%@@@@#-------------------------------------** + *-=-------------------------#@@*---------------------------------------=% + %*#==--------------------------------------------------------------------+# + *%%=-=--------------------------------------------------------------------=# + %=--------------------------------------------------------------------------#* + %-----------------------------------------------------------------------------** +*+--=---===----=---------------=*-----------------------------------------------** + #--=## *#%#*+==----==+**+----------------------= ***=---------------------% + *%**=-----------==== ==---------------------------------=+#+-----------------=# + *%=----------------------------------------------------------=#*---------------# + ##=----------------------------------=------------------------+%=------------+# + #%+---------------------------------=*------------------------+%------------# + *#%*=-------------=-----------------#-------------------------#+----------# + **#%#*******+=======-------------#=------------------------#----------# + #===#*=======------------------#*----=-----------=--=##*-----------# + -====##=------------------------*%+------------=*#+=====----------# + --=====+#*=----------------------=-=+*#####***+=======-----------=* + %------=====*%*=-------------------------========-----------------+* + *-=--------====%%###+=--------------------------=-----------------# + #-----------=% +*##%%%%%%@@%%%%####*==---------------------** + %=-------#* #%*=-----------------+# + *%+--=## ##=-----------------=#* + ** #+----=-------------------#* + %+----------------------------#* + *%-------------==----------------+# + ##--------------==------------------# + *#--------------===%-----------------=% + ##---------------=-##*-----------------+# + *#---------------==#+=#%-----------------% + *%---------------+# %*---------------#* + *#------------=+#* #%*=-----------#* + #****##****** *#%%##+=----% diff --git a/config/init.el b/config/init.el new file mode 100644 index 0000000..20546f6 --- /dev/null +++ b/config/init.el @@ -0,0 +1,13 @@ +(define TAB-LENGTH 2) +(define QUIT-TIMES 1) + +(map-key "CTRL-q" editor-quit) +(map-key "CTRL-s" editor-save) + +(map-key "ARROW-UP" '(move-cursor "up")) +(map-key "ARROW-DOWN" '(move-cursor "down")) +(map-key "ARROW-RIGHT" '(move-cursor "right")) +(map-key "ARROW-LEFT" '(move-cursor "left")) +(map-key "ENTER" editor-insert-new-line) +(map-key "CTRL-a" move-cursor-beg-line) +(map-key "CTRL-e" move-cursor-end-line) diff --git a/include/builtins.h b/include/builtins.h new file mode 100644 index 0000000..d5ba0f1 --- /dev/null +++ b/include/builtins.h @@ -0,0 +1,22 @@ +#ifndef BUILTINS_H_ +#define BUILTINS_H_ + +#include "../lisp-interpreter/dist/lisp.h" + +Lisp moveCursor(Lisp args, LispError *e, LispContext ctx); + +Lisp mapKey(Lisp args, LispError *e, LispContext ctx); + +void registerBuiltin(char * key_sequence, LispCFunc f); + +Lisp editorQuit(Lisp args, LispError *e, LispContext ctx); + +Lisp l_editorSave(Lisp args, LispError *e, LispContext ctx); + +Lisp l_editorInsertNewLine(Lisp args, LispError* e, LispContext ctx); + +Lisp moveCursorBeginLine(Lisp args, LispError *e, LispContext ctx); + +Lisp moveCursorEndLine(Lisp args, LispError* e, LispContext ctx); + +#endif diff --git a/include/data.h b/include/data.h index 0b82ea3..1d2e824 100644 --- a/include/data.h +++ b/include/data.h @@ -1,10 +1,12 @@ #ifndef DATA_H_ #define DATA_H_ -#include "../lisp-interpreter/dist/lisp.h" +#include #include #include +#include "../lisp-interpreter/dist/lisp.h" + /** * \struct erow * \brief Store one editor row @@ -18,6 +20,18 @@ typedef struct erow { char *render; /**< The actual line we will print */ } erow; + +struct const_t { + int TAB_LENGTH; + int QUIT_TIMES; +}; + +struct keyBind_t { + char *key_sequence; + Lisp command; + +}; + /** * \struct editorConfig * \brief Containing our editor state. @@ -36,9 +50,18 @@ struct editorConfig { char status_msg[80]; time_t status_msg_time; struct termios orig_termios; /**< Terminal communication interface */ - LispContext ctx; /** Lisp context */ - Lisp ctx_data; /** Lisp data context */ - LispError ctx_error; /** Lisp ctx error */ + + struct const_t constantes; + int quit_times_buffer; + + FILE *fd_init_file; + Lisp env; + LispContext ctx; /** Lisp context */ + Lisp ctx_data; /** Lisp data context */ + LispError ctx_error; /** Lisp ctx error */ + + struct keyBind_t* key_binds; + int number_of_keybinds; }; /** diff --git a/include/define.h b/include/define.h index 8af4442..c0f2fb3 100644 --- a/include/define.h +++ b/include/define.h @@ -25,7 +25,5 @@ enum editorKey { #define ABUF_INIT {NULL, 0} #define BELUGA_VERSION "1.0" -#define TAB_LENGTH 4 -#define QUIT_TIMES 1 #endif // DEFINE_H_ diff --git a/include/init.h b/include/init.h index f538d94..3e9e3c2 100644 --- a/include/init.h +++ b/include/init.h @@ -10,6 +10,8 @@ * \brief Job's function is to initialize all the fields of editorConfig. * */ +void initBuiltins(); + void initEditor(); #endif // INIT_H_ diff --git a/include/input.h b/include/input.h index 676be3d..aaf7a71 100644 --- a/include/input.h +++ b/include/input.h @@ -21,8 +21,12 @@ char *editorPrompt(char *prompt); +char *key_to_string(int key); + void editorMoveCursor(int key); +int executeKeyBind(char *key_sequence); + /** * \fn void editorProcessKeypress() * \brief Get the last key input and do the proper action. diff --git a/main.c b/main.c index dbc2bd5..b88fba8 100644 --- a/main.c +++ b/main.c @@ -5,6 +5,7 @@ * interactions. \version 0.1 \date 21 septembre 2024 */ +#include #define _DEFAULT_SOURCE #define _BSD_SOURCE #define _GNU_SOURCE diff --git a/meson.build b/meson.build index 239d64a..fdf2d2c 100644 --- a/meson.build +++ b/meson.build @@ -22,6 +22,7 @@ src_files = files( 'src/output.c', 'src/row_op.c', 'src/terminal.c', + 'src/builtins.c', ) # Executable diff --git a/src/builtins.c b/src/builtins.c new file mode 100644 index 0000000..a5b5d53 --- /dev/null +++ b/src/builtins.c @@ -0,0 +1,95 @@ +#include "../include/builtins.h" +#include "../include/define.h" +#include "../include/input.h" +#include "../include/file_io.h" +#include "../include/editor_op.h" +#include "../include/data.h" + +#include +#include + +Lisp mapKey(Lisp args, LispError *e, LispContext ctx) { + const char* key_sequence = lisp_string(lisp_car(args)); + args = lisp_cdr(args); + // second argument + Lisp func = lisp_car(args); + + E.key_binds = + (struct keyBind_t *)realloc(E.key_binds, ++E.number_of_keybinds * sizeof(struct keyBind_t)); + E.key_binds[E.number_of_keybinds - 1].key_sequence = (char *) malloc(50 * sizeof(char)); + + strncpy(E.key_binds[E.number_of_keybinds - 1].key_sequence, key_sequence, 50); + + E.key_binds[E.number_of_keybinds - 1].command = func; + + return lisp_null(); +} + +Lisp moveCursor(Lisp args, LispError* e, LispContext ctx) { + const char *direction = lisp_string(lisp_car(args)); + switch (direction[0]) { + case 'u': + editorMoveCursor(ARROW_UP); + break; + case 'd': + editorMoveCursor(ARROW_DOWN); + break; + case 'r': + editorMoveCursor(ARROW_RIGHT); + break; + case 'l': + editorMoveCursor(ARROW_LEFT); + break; + } + + + return lisp_null(); +} + +Lisp editorQuit(Lisp args, LispError* e, LispContext ctx) { + if (E.dirty && E.quit_times_buffer > 0) { + editorSetStatusMessage("WARNING! Changes hasn't been saved. Press Ctrl-Q " + "another time to quit."); + --E.quit_times_buffer; + return lisp_null(); + } + write(STDOUT_FILENO, "\x1b[2J", 4); + write(STDOUT_FILENO, CURSOR_TOP_LEFT, 3); + disableRawMode(); + exit(0); + + return lisp_null(); + + +} + + +Lisp l_editorSave(Lisp args, LispError* e, LispContext ctx) { + + editorSave(); + + return lisp_null(); + + +} + +Lisp l_editorInsertNewLine(Lisp args, LispError* e, LispContext ctx) { + + editorInsertNewLine(); + + return lisp_null(); + + +} + +Lisp moveCursorBeginLine(Lisp args, LispError *e, LispContext ctx) { + E.cursor_x = 0; + return lisp_null(); +} + +Lisp moveCursorEndLine(Lisp args, LispError* e, LispContext ctx) { + if (E.cursor_y < E.numrows) { + E.cursor_x = E.row[E.cursor_y].size; + } + return lisp_null(); +} diff --git a/src/editor_op.c b/src/editor_op.c index 258f197..91948e5 100644 --- a/src/editor_op.c +++ b/src/editor_op.c @@ -1,5 +1,6 @@ #include "../include/editor_op.h" #include "../include/row_op.h" +#include extern struct editorConfig E; diff --git a/src/file_io.c b/src/file_io.c index ac535ca..6a141ae 100644 --- a/src/file_io.c +++ b/src/file_io.c @@ -22,7 +22,7 @@ char *editorRowsToString(int *buffer_len) { for (j = 0; j < E.numrows; ++j) { tot_len += E.row[j].size + 1; - } + } *buffer_len = tot_len; buf = malloc(tot_len); p = buf; @@ -42,7 +42,7 @@ void editorOpen(char *filename) { free(E.filename); E.filename = strdup(filename); - fp = fopen(filename, "r"); + fp = fopen(filename, "a+"); if (!fp) die("fopen"); diff --git a/src/init.c b/src/init.c index db8627c..46f0e30 100644 --- a/src/init.c +++ b/src/init.c @@ -1,9 +1,35 @@ #include "../include/init.h" #include "../include/data.h" +#include "../include/terminal.h" +#include "../include/builtins.h" #include +#define LISP_IMPLEMENTATION +#include "../lisp-interpreter/dist/lisp.h" +#include "../lisp-interpreter/dist/lisp_lib.h" + extern struct editorConfig; + +void registerBuiltin(char *key_sequence, LispCFunc f) { + lisp_env_define(E.ctx.p->env, lisp_make_symbol(key_sequence, E.ctx), + lisp_make_func(f), E.ctx); + +} + +void initBuiltins() { + // move cursor + registerBuiltin("MOVE-CURSOR", moveCursor); + registerBuiltin("MAP-KEY", mapKey); + registerBuiltin("EDITOR-QUIT", editorQuit); + registerBuiltin("EDITOR-SAVE", l_editorSave); + registerBuiltin("EDITOR-INSERT-NEW-LINE", l_editorInsertNewLine); + registerBuiltin("MOVE-CURSOR-BEG-LINE", moveCursorBeginLine); + registerBuiltin("MOVE-CURSOR-END-LINE", moveCursorEndLine); + + +} + void initEditor() { E.cursor_x = 0; E.cursor_y = 0; @@ -21,9 +47,33 @@ void initEditor() { } E.screenrows -= 2; - // E.fd_init_file = fopen("../config/init.el", "r"); + E.number_of_keybinds = 0; - // E.ctx = lisp_init(); - // E.ctx_data = lisp_read_file(E.fd_init_file, &E.ctx_error, E.ctx); - // lisp_printf(stderr, E.ctx_data); + + E.fd_init_file = fopen("config/init.el", "r"); + E.ctx = lisp_init(); + E.env = lisp_env(E.ctx); + lisp_lib_load(E.ctx); + // Init builtins lisp functions + initBuiltins(); + + // Read config file + E.ctx_data = lisp_read_file(E.fd_init_file, &E.ctx_error, E.ctx); + if (E.ctx_error != LISP_ERROR_NONE) { + die("init failed"); + } + lisp_eval(E.ctx_data, &E.ctx_error, E.ctx); + + // To modify + + E.constantes.TAB_LENGTH = + (int)lisp_eval(lisp_read("TAB-LENGTH", &E.ctx_error, E.ctx), &E.ctx_error, + E.ctx) + .val.int_val; + E.constantes.QUIT_TIMES = + (int)lisp_eval(lisp_read("QUIT-TIMES", &E.ctx_error, E.ctx), &E.ctx_error, + E.ctx) + .val.int_val; + + E.quit_times_buffer = E.constantes.QUIT_TIMES; } diff --git a/src/input.c b/src/input.c index 57f749e..ed7e215 100644 --- a/src/input.c +++ b/src/input.c @@ -1,11 +1,13 @@ #include "../include/input.h" #include "../include/editor_op.h" -#include "../include/file_io.h" #include "../include/output.h" +#include "../include/define.h" +#include "data.h" #include #include #include #include +#include #include extern struct editorConfig E; @@ -30,7 +32,6 @@ char *editorPrompt(char *prompt) { buf[--buf_len] = '\0'; } } else if (c == ESCAPE) { - fprintf(stderr, "escape"); editorSetStatusMessage(""); free(buf); return NULL; @@ -50,6 +51,70 @@ char *editorPrompt(char *prompt) { } } +char *key_to_string(int key) { + static char key_str[32]; + + char tmp[10]; + sprintf(tmp, "%d", key); + + + // First test enter key + + if (key == '\r') { + strcpy(key_str, "ENTER"); + } else if (key >= 1 && key <= 26) { // CTRL keys + snprintf(key_str, sizeof(key_str), "CTRL-%c", 'a' + key - 1); + } else { + switch (key) { + case ARROW_UP: + strcpy(key_str, "ARROW-UP"); + break; + case ARROW_DOWN: + strcpy(key_str, "ARROW-DOWN"); + break; + case ARROW_LEFT: + strcpy(key_str, "ARROW-LEFT"); + break; + case ARROW_RIGHT: + strcpy(key_str, "ARROW-RIGHT"); + break; + case PAGE_UP: + strcpy(key_str, "PAGE-UP"); + break; + case PAGE_DOWN: + strcpy(key_str, "PAGE-DOWN"); + break; + case DEL_KEY: + strcpy(key_str, "DEL"); + break; + case BACKSPACE: + strcpy(key_str, "BACKSPACE"); + break; + case '\r': + strcpy(key_str, "ENTER"); + break; + case '\x1b': + strcpy(key_str, "ESCAPE"); + break; + case BEG_LINE: + strcpy(key_str, "HOME"); + break; + case END_LINE: + strcpy(key_str, "END"); + break; + default: + // For regular characters + if (isprint(key)) { + snprintf(key_str, sizeof(key_str), "%c", key); + } else { + snprintf(key_str, sizeof(key_str), "KEY-%d", key); + } + } + } + return key_str; +} + + void editorMoveCursor(int key) { erow *row = (E.cursor_y >= E.numrows) ? NULL : &E.row[E.cursor_y]; int row_len; @@ -89,81 +154,28 @@ void editorMoveCursor(int key) { } } -void editorProcessKeypress() { - static int quit_times = QUIT_TIMES; - int c = editorReadKey(); - int times; - - switch (c) { - - case '\r': - editorInsertNewLine(); - break; - case CTRL_KEY('q'): - if (E.dirty && quit_times > 0) { - editorSetStatusMessage("WARNING! Changes hasn't been saved. Press Ctrl-Q " - "another time to quit."); - --quit_times; - return; +int executeKeyBind(char *key_sequence) { + int i; + for (i = 0; i < E.number_of_keybinds; ++i) { + if (!strcmp(key_sequence, E.key_binds[i].key_sequence)) { + + fprintf(stderr, "lisp function %s\n", key_sequence); + // It's a symbol, create a function call + lisp_eval(lisp_cons(E.key_binds[i].command, lisp_null(), E.ctx), + &E.ctx_error, E.ctx); + return 1; } - write(STDOUT_FILENO, "\x1b[2J", 4); - write(STDOUT_FILENO, CURSOR_TOP_LEFT, 3); - disableRawMode(); - exit(0); - break; - - case CTRL_KEY('s'): - editorSave(); - break; - - case BEG_LINE: - E.cursor_x = 0; - break; - - case END_LINE: - if (E.cursor_y < E.numrows) { - E.cursor_x = E.row[E.cursor_y].size; - } - break; - - case BACKSPACE: - case CTRL_KEY('h'): - case DEL_KEY: - if (c == DEL_KEY) { - editorMoveCursor(ARROW_RIGHT); - } - editorDelChar(); - break; - - case PAGE_UP: - case PAGE_DOWN: { - if (c == PAGE_UP) { - E.cursor_y = E.row_offset; - } else if (c == PAGE_DOWN) { - E.cursor_y = E.row_offset + E.screenrows - 1; - if (E.cursor_y > E.numrows) { - E.cursor_y = E.numrows; - } - } - times = E.screenrows; - while (--times) { - editorMoveCursor(c == PAGE_UP ? ARROW_UP : ARROW_DOWN); - } - } break; - - case ARROW_UP: - case ARROW_DOWN: - case ARROW_LEFT: - case ARROW_RIGHT: - editorMoveCursor(c); - break; - - case CTRL_KEY('l'): - case '\x1b': - break; - default: - editorInsertChar(c); - break; } - quit_times = QUIT_TIMES; + return 0; +} + +void editorProcessKeypress() { + int c = editorReadKey(); + + if (executeKeyBind(key_to_string(c))) { + return; + } + editorInsertChar(c); + E.quit_times_buffer = E.constantes.QUIT_TIMES; + } diff --git a/src/row_op.c b/src/row_op.c index 97c22af..64515c5 100644 --- a/src/row_op.c +++ b/src/row_op.c @@ -1,4 +1,6 @@ #include "../include/row_op.h" +#include "data.h" +#include #include #include #include @@ -10,7 +12,7 @@ int editorRowCxToRx(erow *row, int cursor_x) { int i; for (i = 0; i < cursor_x; ++i) { if (row->chars[i] == '\t') { - render_x += (TAB_LENGTH - 1) - (render_x % TAB_LENGTH); + render_x += (E.constantes.TAB_LENGTH - 1) - (render_x % E.constantes.TAB_LENGTH); } render_x++; } @@ -34,8 +36,8 @@ void editorUpdateRow(erow *row) { } free(row->render); - row->render = malloc(row->size + tabs * (TAB_LENGTH - 1) + - 1); /**< Tabs needs TAB_LENGTH chars so TAB_LENGTH - 1 + row->render = malloc(row->size + tabs * (E.constantes.TAB_LENGTH - 1) + + 1); /**< Tabs needs E.constantes.TAB_LENGTH chars so E.constantes.TAB_LENGTH - 1 more than the first already counted. */ // end of counting @@ -43,7 +45,7 @@ void editorUpdateRow(erow *row) { for (i = 0; i < row->size; ++i) { if (row->chars[i] == '\t') { row->render[i_render++] = ' '; - while (i_render % TAB_LENGTH) { + while (i_render % E.constantes.TAB_LENGTH) { row->render[i_render++] = ' '; /**< Addind the right amount of spaces for tabs */ } @@ -57,10 +59,14 @@ void editorUpdateRow(erow *row) { void editorInsertRow(int at, char *s, size_t len) { if (at < 0 || at > E.numrows) { + return; } - - E.row = realloc(E.row, sizeof(erow) * (E.numrows + 1)); + erow *tmp = (erow *)realloc(E.row, sizeof(erow) * (E.numrows + 1)); + if (!tmp) { + return; + } + E.row = tmp; memmove(&E.row[at + 1], &E.row[at], sizeof(erow) * (E.numrows - at)); E.row[at].size = len; diff --git a/src/terminal.c b/src/terminal.c index 48dc20a..521958a 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -4,145 +4,146 @@ #include void die(const char *s) { - write(STDOUT_FILENO, "\x1b[2J", 4); - write(STDOUT_FILENO, CURSOR_TOP_LEFT, 3); - perror(s); - exit(1); + write(STDOUT_FILENO, "\x1b[2J", 4); + write(STDOUT_FILENO, CURSOR_TOP_LEFT, 3); + lisp_shutdown(E.ctx); + perror(s); + exit(1); } void disableRawMode() { - if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E.orig_termios) == -1) { - die("tcsetattr"); - } + if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E.orig_termios) == -1) { + die("tcsetattr"); + } } void enableRawMode() { - if (tcgetattr(STDIN_FILENO, &E.orig_termios) == -1) { - die("tcgetattr"); - } + if (tcgetattr(STDIN_FILENO, &E.orig_termios) == -1) { + die("tcgetattr"); + } - struct termios raw = E.orig_termios; - raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); - raw.c_oflag &= ~(OPOST); - raw.c_cflag |= (CS8); - raw.c_lflag &= ~(ECHO | ICANON | ISIG | IEXTEN); - raw.c_cc[VMIN] = 0; - raw.c_cc[VTIME] = 1; + struct termios raw = E.orig_termios; + raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); + raw.c_oflag &= ~(OPOST); + raw.c_cflag |= (CS8); + raw.c_lflag &= ~(ECHO | ICANON | ISIG | IEXTEN); + raw.c_cc[VMIN] = 0; + raw.c_cc[VTIME] = 1; - if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1) { - die("tcgetattr"); - } + if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1) { + die("tcgetattr"); + } } int editorReadKey() { - int nread; - char c; - char seq[3]; - while ((nread = read(STDIN_FILENO, &c, 1)) != 1) { - if (nread == -1 && errno != EAGAIN) { - die("read"); - } + int nread; + char c; + char seq[3]; + while ((nread = read(STDIN_FILENO, &c, 1)) != 1) { + if (nread == -1 && errno != EAGAIN) { + die("read"); } + } - if (c == '\x1b') { - if (read(STDIN_FILENO, &seq[0], 1) != 1 || - read(STDIN_FILENO, &seq[1], 1) != 1) { - return '\x1b'; - } - if (seq[0] == '[') { - if (seq[1] >= '0' && seq[1] <= '9') { - if (read(STDIN_FILENO, &seq[2], 1) != 1) { - return '\x1b'; - } - if (seq[2] == '~') { - switch (seq[1]) { - case '1': - return BEG_LINE; - case '3': - return DEL_KEY; - case '4': - return END_LINE; - case '5': - return PAGE_UP; - case '6': - return PAGE_DOWN; - case '7': - return BEG_LINE; - case '8': - return END_LINE; - } - } - } else { - - switch (seq[1]) { - case 'A': - return ARROW_UP; - case 'B': - return ARROW_DOWN; - case 'C': - return ARROW_RIGHT; - case 'D': - return ARROW_LEFT; - case 'H': - return BEG_LINE; - case 'F': - return END_LINE; - } - } - } else if (seq[0] == 'O') { - switch (seq[1]) { - case 'H': - return BEG_LINE; - case 'F': - return END_LINE; - } - } - return '\x1b'; - } else { - return c; + if (c == '\x1b') { + if (read(STDIN_FILENO, &seq[0], 1) != 1 || + read(STDIN_FILENO, &seq[1], 1) != 1) { + return '\x1b'; } + if (seq[0] == '[') { + if (seq[1] >= '0' && seq[1] <= '9') { + if (read(STDIN_FILENO, &seq[2], 1) != 1) { + return '\x1b'; + } + if (seq[2] == '~') { + switch (seq[1]) { + case '1': + return BEG_LINE; + case '3': + return DEL_KEY; + case '4': + return END_LINE; + case '5': + return PAGE_UP; + case '6': + return PAGE_DOWN; + case '7': + return BEG_LINE; + case '8': + return END_LINE; + } + } + } else { + + switch (seq[1]) { + case 'A': + return ARROW_UP; + case 'B': + return ARROW_DOWN; + case 'C': + return ARROW_RIGHT; + case 'D': + return ARROW_LEFT; + case 'H': + return BEG_LINE; + case 'F': + return END_LINE; + } + } + } else if (seq[0] == 'O') { + switch (seq[1]) { + case 'H': + return BEG_LINE; + case 'F': + return END_LINE; + } + } + return '\x1b'; + } else { + return c; + } } int getCursorPosition(int *rows, int *cols) { - char buf[32]; - unsigned int i = 0; + char buf[32]; + unsigned int i = 0; - if (write(STDOUT_FILENO, "\x1b[6n", 4) != 4) { - return -1; - } + if (write(STDOUT_FILENO, "\x1b[6n", 4) != 4) { + return -1; + } - while (i < sizeof(buf) - 1) { - if (read(STDIN_FILENO, &buf[i], 1) != 1) { - break; - } - if (buf[i] == 'R') { - break; - } - ++i; + while (i < sizeof(buf) - 1) { + if (read(STDIN_FILENO, &buf[i], 1) != 1) { + break; } - buf[i] = '\0'; + if (buf[i] == 'R') { + break; + } + ++i; + } + buf[i] = '\0'; - if (buf[0] != '\x1b' || buf[1] != '[') { - return -1; - } - if (sscanf(&buf[2], "%d;%d", rows, cols) != 2) { - return -1; - } + if (buf[0] != '\x1b' || buf[1] != '[') { + return -1; + } + if (sscanf(&buf[2], "%d;%d", rows, cols) != 2) { + return -1; + } - return 0; + return 0; } int getWindowSize(int *rows, int *cols) { - struct winsize ws; + struct winsize ws; - if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) { - if (write(STDOUT_FILENO, "\x1b[999C\x1b[999B", 12) != 12) { - return -1; - } - return getCursorPosition(rows, cols); - } else { - *cols = ws.ws_col; - *rows = ws.ws_row; - return 0; + if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) { + if (write(STDOUT_FILENO, "\x1b[999C\x1b[999B", 12) != 12) { + return -1; } + return getCursorPosition(rows, cols); + } else { + *cols = ws.ws_col; + *rows = ws.ws_row; + return 0; + } } From 9157b94398291ac4f4a368fb1097f0f2f0deb8b0 Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Thu, 2 Oct 2025 14:59:28 +0200 Subject: [PATCH 17/19] Adding usefull keybinds --- config/init.el | 13 ------------- config/init.lisp | 29 +++++++++++++++++++++++++++++ include/builtins.h | 8 +++++++- src/builtins.c | 37 +++++++++++++++++++++++++++++++++++-- src/init.c | 7 ++++--- src/input.c | 4 +++- 6 files changed, 78 insertions(+), 20 deletions(-) delete mode 100644 config/init.el create mode 100644 config/init.lisp diff --git a/config/init.el b/config/init.el deleted file mode 100644 index 20546f6..0000000 --- a/config/init.el +++ /dev/null @@ -1,13 +0,0 @@ -(define TAB-LENGTH 2) -(define QUIT-TIMES 1) - -(map-key "CTRL-q" editor-quit) -(map-key "CTRL-s" editor-save) - -(map-key "ARROW-UP" '(move-cursor "up")) -(map-key "ARROW-DOWN" '(move-cursor "down")) -(map-key "ARROW-RIGHT" '(move-cursor "right")) -(map-key "ARROW-LEFT" '(move-cursor "left")) -(map-key "ENTER" editor-insert-new-line) -(map-key "CTRL-a" move-cursor-beg-line) -(map-key "CTRL-e" move-cursor-end-line) diff --git a/config/init.lisp b/config/init.lisp new file mode 100644 index 0000000..08704c4 --- /dev/null +++ b/config/init.lisp @@ -0,0 +1,29 @@ +(define TAB-LENGTH 2) +(define QUIT-TIMES 1) + +(map-key "CTRL-q" editor-quit) +(map-key "CTRL-s" editor-save) + +(define editor-delete-next-char (lambda () ( + (move-cursor "right") + (editor-delete-previous-char) + ) + ) + ) + + +(map-key "ARROW-UP" '(move-cursor "up")) +(map-key "ARROW-DOWN" '(move-cursor "down")) +(map-key "ARROW-RIGHT" '(move-cursor "right")) +(map-key "ARROW-LEFT" '(move-cursor "left")) +(map-key "ENTER" editor-insert-new-line) +(map-key "CTRL-a" move-cursor-beg-line) +(map-key "CTRL-e" move-cursor-end-line) +(map-key "BACKSPACE" editor-delete-previous-char) +(map-key "DEL" editor-delete-next-char) +(map-key "PAGE-UP" move-cursor-page-up) +(map-key "PAGE-DOWN" move-cursor-page-down) + +; Key binds + + diff --git a/include/builtins.h b/include/builtins.h index d5ba0f1..44d26a2 100644 --- a/include/builtins.h +++ b/include/builtins.h @@ -17,6 +17,12 @@ Lisp l_editorInsertNewLine(Lisp args, LispError* e, LispContext ctx); Lisp moveCursorBeginLine(Lisp args, LispError *e, LispContext ctx); -Lisp moveCursorEndLine(Lisp args, LispError* e, LispContext ctx); +Lisp moveCursorEndLine(Lisp args, LispError *e, LispContext ctx); + +Lisp deletePreviousChar(Lisp args, LispError *e, LispContext ctx); + +Lisp editorMoveCursorPageUp(Lisp args, LispError* e, LispContext ctx); + +Lisp editorMoveCursorPageDown(Lisp args, LispError* e, LispContext ctx); #endif diff --git a/src/builtins.c b/src/builtins.c index a5b5d53..48fcb1f 100644 --- a/src/builtins.c +++ b/src/builtins.c @@ -5,11 +5,12 @@ #include "../include/editor_op.h" #include "../include/data.h" +#include #include #include Lisp mapKey(Lisp args, LispError *e, LispContext ctx) { - const char* key_sequence = lisp_string(lisp_car(args)); + const char *key_sequence = lisp_string(lisp_car(args)); args = lisp_cdr(args); // second argument Lisp func = lisp_car(args); @@ -25,7 +26,8 @@ Lisp mapKey(Lisp args, LispError *e, LispContext ctx) { return lisp_null(); } -Lisp moveCursor(Lisp args, LispError* e, LispContext ctx) { +Lisp moveCursor(Lisp args, LispError *e, LispContext ctx) { + fprintf(stderr, "Cursor is moving\n"); const char *direction = lisp_string(lisp_car(args)); switch (direction[0]) { case 'u': @@ -93,3 +95,34 @@ Lisp moveCursorEndLine(Lisp args, LispError* e, LispContext ctx) { } return lisp_null(); } + + +Lisp deletePreviousChar(Lisp args, LispError* e, LispContext ctx) { + editorDelChar(); + return lisp_null(); +} + +Lisp editorMoveCursorPageUp(Lisp args, LispError* e, LispContext ctx) { + E.cursor_y = E.row_offset; + int times = E.screenrows; + while (--times) { + editorMoveCursor(ARROW_UP); + } + return lisp_null(); +} + +Lisp editorMoveCursorPageDown(Lisp args, LispError* e, LispContext ctx) { + E.cursor_y = E.row_offset + E.screenrows - 1; + if (E.cursor_y > E.numrows) { + E.cursor_y = E.numrows; + } + int times = E.screenrows; + while (--times) { + editorMoveCursor(ARROW_DOWN); + } + + return lisp_null(); +} + + + diff --git a/src/init.c b/src/init.c index 46f0e30..855cc5b 100644 --- a/src/init.c +++ b/src/init.c @@ -26,8 +26,9 @@ void initBuiltins() { registerBuiltin("EDITOR-INSERT-NEW-LINE", l_editorInsertNewLine); registerBuiltin("MOVE-CURSOR-BEG-LINE", moveCursorBeginLine); registerBuiltin("MOVE-CURSOR-END-LINE", moveCursorEndLine); - - + registerBuiltin("EDITOR-DELETE-PREVIOUS-CHAR", deletePreviousChar); + registerBuiltin("MOVE-CURSOR-PAGE-UP", editorMoveCursorPageUp); + registerBuiltin("MOVE-CURSOR-PAGE-DOWN", editorMoveCursorPageDown); } void initEditor() { @@ -50,7 +51,7 @@ void initEditor() { E.number_of_keybinds = 0; - E.fd_init_file = fopen("config/init.el", "r"); + E.fd_init_file = fopen("config/init.lisp", "r"); E.ctx = lisp_init(); E.env = lisp_env(E.ctx); lisp_lib_load(E.ctx); diff --git a/src/input.c b/src/input.c index ed7e215..dcb579e 100644 --- a/src/input.c +++ b/src/input.c @@ -2,7 +2,6 @@ #include "../include/editor_op.h" #include "../include/output.h" #include "../include/define.h" -#include "data.h" #include #include #include @@ -80,12 +79,15 @@ char *key_to_string(int key) { break; case PAGE_UP: strcpy(key_str, "PAGE-UP"); + fprintf(stderr, "pagr up\n"); break; case PAGE_DOWN: strcpy(key_str, "PAGE-DOWN"); break; case DEL_KEY: + fprintf(stderr, "delete key\n"); strcpy(key_str, "DEL"); + break; case BACKSPACE: strcpy(key_str, "BACKSPACE"); From 9348ae668a9db4cd8ae3a1e75000365f1b4b9fc9 Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Sun, 5 Oct 2025 21:44:58 +0200 Subject: [PATCH 18/19] Add open file key-bind --- .gitignore | 4 ++-- assets/beluga.txt | 25 ++++++++++++------------- config/init.lisp | 15 ++++++++++----- include/builtins.h | 6 +++++- include/data.h | 6 ++++++ include/file_io.h | 3 +++ main.c | 3 +++ src/builtins.c | 13 +++++++++++++ src/editor_op.c | 13 +++++++------ src/file_io.c | 23 ++++++++++++++++++++++- src/init.c | 3 +++ src/row_op.c | 2 ++ 12 files changed, 88 insertions(+), 28 deletions(-) diff --git a/.gitignore b/.gitignore index 5d7c2b0..3b2fbce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ -tmp/* -bin/* +build/* doc/* +beluga.wiki/* diff --git a/assets/beluga.txt b/assets/beluga.txt index 28fe0e0..8aee859 100644 --- a/assets/beluga.txt +++ b/assets/beluga.txt @@ -1,21 +1,20 @@ - **#%#*****###%** + **#%#*****###%** *##+--------------------=##* #*=----------------------------=*#* #*------------------------------------*# %+----------------------------------------=#* - #+---------------------------------------------## - *#-------------------------------------------------=## - *#----------------------------------------------------:-## - #----------------------------------------------------------## - #=-------------------------------------------------------------## - #----------------------------==----------------------------------=#* + #+---------------------------------------------## + *#-------------------------------------------------=## + *#----------------------------------------------------:-## + #----------------------------------------------------------## + #=--------------------------------------------------------------## +--------------------------+@#-%*-----------------------------------#* - +--------------------------%@@@@#-------------------------------------** - *-=-------------------------#@@*---------------------------------------=% - %*#==--------------------------------------------------------------------+# - *%%=-=--------------------------------------------------------------------=# - %=--------------------------------------------------------------------------#* - %-----------------------------------------------------------------------------** + +--------------------------%@@@@#-------------------------------------** BELUGA - VERSION 1.1 + *-=-------------------------#@@*---------------------------------------=% + %*#==--------------------------------------------------------------------+# ----- KEY-BINDS ----- + *%%=-=--------------------------------------------------------------------=# CTRL-q leave + %=--------------------------------------------------------------------------#* CTRL-s save + %-----------------------------------------------------------------------------** CTRL-o open-file *+--=---===----=---------------=*-----------------------------------------------** #--=## *#%#*+==----==+**+----------------------= ***=---------------------% *%**=-----------==== ==---------------------------------=+#+-----------------=# diff --git a/config/init.lisp b/config/init.lisp index 08704c4..3f11aa5 100644 --- a/config/init.lisp +++ b/config/init.lisp @@ -1,8 +1,9 @@ -(define TAB-LENGTH 2) +;; MACROS + +(define TAB-LENGTH 4) (define QUIT-TIMES 1) -(map-key "CTRL-q" editor-quit) -(map-key "CTRL-s" editor-save) +;; FUNCTIONS (define editor-delete-next-char (lambda () ( (move-cursor "right") @@ -12,6 +13,10 @@ ) +;; KEY MAPPING + +(map-key "CTRL-q" editor-quit) +(map-key "CTRL-s" editor-save) (map-key "ARROW-UP" '(move-cursor "up")) (map-key "ARROW-DOWN" '(move-cursor "down")) (map-key "ARROW-RIGHT" '(move-cursor "right")) @@ -23,7 +28,7 @@ (map-key "DEL" editor-delete-next-char) (map-key "PAGE-UP" move-cursor-page-up) (map-key "PAGE-DOWN" move-cursor-page-down) - -; Key binds +(map-key "CTRL-o" editor-open-file) + diff --git a/include/builtins.h b/include/builtins.h index 44d26a2..0bae402 100644 --- a/include/builtins.h +++ b/include/builtins.h @@ -23,6 +23,10 @@ Lisp deletePreviousChar(Lisp args, LispError *e, LispContext ctx); Lisp editorMoveCursorPageUp(Lisp args, LispError* e, LispContext ctx); -Lisp editorMoveCursorPageDown(Lisp args, LispError* e, LispContext ctx); +Lisp editorMoveCursorPageDown(Lisp args, LispError *e, LispContext ctx); + +Lisp editorOpenFile(Lisp args, LispError *e, LispContext ctx); + +Lisp editorPrintC(Lisp args, LispError *e, LispContext ctx); #endif diff --git a/include/data.h b/include/data.h index 1d2e824..d3e7c6a 100644 --- a/include/data.h +++ b/include/data.h @@ -20,6 +20,11 @@ typedef struct erow { char *render; /**< The actual line we will print */ } erow; +enum editorStatus_e { + IDLE, + READ_ONLY, + READ_AND_WRITE, +}; struct const_t { int TAB_LENGTH; @@ -47,6 +52,7 @@ struct editorConfig { erow *row; /**< Store all the rows printed */ int dirty; char *filename; + enum editorStatus_e state; char status_msg[80]; time_t status_msg_time; struct termios orig_termios; /**< Terminal communication interface */ diff --git a/include/file_io.h b/include/file_io.h index f93154d..771ef08 100644 --- a/include/file_io.h +++ b/include/file_io.h @@ -10,6 +10,9 @@ char *editorRowsToString(int *buffer_len); + +void editorCloseFile(void); + void editorOpen(char *filename); void editorSave(); diff --git a/main.c b/main.c index b88fba8..922533c 100644 --- a/main.c +++ b/main.c @@ -24,7 +24,10 @@ int main(int argc, char *argv[]) { enableRawMode(); initEditor(); if (argc >= 2) { + E.state = READ_AND_WRITE; editorOpen(argv[1]); + } else { + editorOpen("assets/beluga.txt"); } editorSetStatusMessage("HELP: Ctrl-S = save | Ctrl-Q = quit"); diff --git a/src/builtins.c b/src/builtins.c index 48fcb1f..8ff9d7c 100644 --- a/src/builtins.c +++ b/src/builtins.c @@ -124,5 +124,18 @@ Lisp editorMoveCursorPageDown(Lisp args, LispError* e, LispContext ctx) { return lisp_null(); } +Lisp editorOpenFile(Lisp args, LispError *e, LispContext ctx) { + char *filename = editorPrompt("Path : %s"); + if (filename) + editorOpen(filename); + + return lisp_null(); +} +Lisp editorPrintC(Lisp args, LispError *e, LispContext ctx) { + char c = lisp_char(lisp_car(args)); + editorInsertChar(c); + return lisp_null(); +} + diff --git a/src/editor_op.c b/src/editor_op.c index 91948e5..4d261d9 100644 --- a/src/editor_op.c +++ b/src/editor_op.c @@ -1,15 +1,16 @@ #include "../include/editor_op.h" #include "../include/row_op.h" -#include +#include "data.h" + extern struct editorConfig E; void editorInsertChar(int c) { - if (E.cursor_y == E.numrows) { - editorInsertRow(E.numrows, "", 0); - } - editorRowInsertChar(&E.row[E.cursor_y], E.cursor_x, c); - E.cursor_x++; + if (E.cursor_y == E.numrows) { + editorInsertRow(E.numrows, "", 0); + } + editorRowInsertChar(&E.row[E.cursor_y], E.cursor_x, c); + E.cursor_x++; } void editorInsertNewLine() { diff --git a/src/file_io.c b/src/file_io.c index 6a141ae..fc9b64f 100644 --- a/src/file_io.c +++ b/src/file_io.c @@ -1,6 +1,7 @@ #include "../include/file_io.h" #include "../include/input.h" #include "../include/output.h" +#include "data.h" #include #include #include @@ -36,16 +37,36 @@ char *editorRowsToString(int *buffer_len) { return buf; } +void editorCloseFile(void) { + E.cursor_x = 0; + E.cursor_y = 0; + E.rx = 0; + E.row_offset = 0; + E.col_offset = 0; + E.numrows = 0; + E.row = NULL; + E.dirty = 0; + E.filename = NULL; + E.status_msg[0] = '\0'; + E.status_msg_time = 0; + +} + void editorOpen(char *filename) { FILE *fp; + // Test if a file is already open + if (E.filename != NULL) { + editorCloseFile(); + } + free(E.filename); E.filename = strdup(filename); fp = fopen(filename, "a+"); if (!fp) die("fopen"); - + char *line = NULL; size_t line_cap = 0; ssize_t line_len; diff --git a/src/init.c b/src/init.c index 855cc5b..6119254 100644 --- a/src/init.c +++ b/src/init.c @@ -29,6 +29,8 @@ void initBuiltins() { registerBuiltin("EDITOR-DELETE-PREVIOUS-CHAR", deletePreviousChar); registerBuiltin("MOVE-CURSOR-PAGE-UP", editorMoveCursorPageUp); registerBuiltin("MOVE-CURSOR-PAGE-DOWN", editorMoveCursorPageDown); + registerBuiltin("EDITOR-OPEN-FILE", editorOpenFile); + registerBuiltin("EDITOR-INSERT-CHAR", editorPrintC); } void initEditor() { @@ -41,6 +43,7 @@ void initEditor() { E.row = NULL; E.dirty = 0; E.filename = NULL; + E.state = READ_ONLY; E.status_msg[0] = '\0'; E.status_msg_time = 0; if (getWindowSize(&E.screenrows, &E.screencols) == -1) { diff --git a/src/row_op.c b/src/row_op.c index 64515c5..817abc9 100644 --- a/src/row_op.c +++ b/src/row_op.c @@ -102,6 +102,8 @@ void editorDelRow(int at) { * \param at Index of where we want to insert the char */ void editorRowInsertChar(erow *row, int at, int c) { + if (E.state == READ_ONLY) + return; if (at < 0 || at > row->size) { at = row->size; } From ce94e9fb87a484459cf658688b2681f774cf6684 Mon Sep 17 00:00:00 2001 From: Arthur Barraux Date: Mon, 6 Oct 2025 11:28:49 +0200 Subject: [PATCH 19/19] permission files --- include/data.h | 2 + include/init.h | 1 + include/input.h | 1 + main.c | 4 +- src/file_io.c | 154 ++++++++++++++++++++++++------------------------ 5 files changed, 84 insertions(+), 78 deletions(-) diff --git a/include/data.h b/include/data.h index d3e7c6a..77f0c70 100644 --- a/include/data.h +++ b/include/data.h @@ -68,6 +68,7 @@ struct editorConfig { struct keyBind_t* key_binds; int number_of_keybinds; + }; /** @@ -82,4 +83,5 @@ struct abuf { extern struct editorConfig E; + #endif diff --git a/include/init.h b/include/init.h index 3e9e3c2..a2186e5 100644 --- a/include/init.h +++ b/include/init.h @@ -1,6 +1,7 @@ #ifndef INIT_H_ #define INIT_H_ +#include "builtins.h" #include "data.h" #include "terminal.h" #include diff --git a/include/input.h b/include/input.h index aaf7a71..2a6c948 100644 --- a/include/input.h +++ b/include/input.h @@ -5,6 +5,7 @@ #include "define.h" #include "output.h" #include "terminal.h" +#include "builtins.h" #include // KEYS keycode diff --git a/main.c b/main.c index 922533c..da4a6c0 100644 --- a/main.c +++ b/main.c @@ -5,7 +5,8 @@ * interactions. \version 0.1 \date 21 septembre 2024 */ -#include +#include + #define _DEFAULT_SOURCE #define _BSD_SOURCE #define _GNU_SOURCE @@ -32,6 +33,7 @@ int main(int argc, char *argv[]) { editorSetStatusMessage("HELP: Ctrl-S = save | Ctrl-Q = quit"); + while (1) { editorRefreshScreen(); editorProcessKeypress(); diff --git a/src/file_io.c b/src/file_io.c index fc9b64f..1fd6066 100644 --- a/src/file_io.c +++ b/src/file_io.c @@ -16,98 +16,98 @@ extern int ftruncate(int fd, off_t length); extern struct editorConfig E; char *editorRowsToString(int *buffer_len) { - int tot_len = 0; - int j; - char *buf; - char *p; + int tot_len = 0; + int j; + char *buf; + char *p; - for (j = 0; j < E.numrows; ++j) { - tot_len += E.row[j].size + 1; - } - *buffer_len = tot_len; - buf = malloc(tot_len); - p = buf; - for (j = 0; j < E.numrows; ++j) { - memcpy(p, E.row[j].chars, E.row[j].size); - p += E.row[j].size; - *p = '\n'; - p++; - } + for (j = 0; j < E.numrows; ++j) { + tot_len += E.row[j].size + 1; + } + *buffer_len = tot_len; + buf = malloc(tot_len); + p = buf; + for (j = 0; j < E.numrows; ++j) { + memcpy(p, E.row[j].chars, E.row[j].size); + p += E.row[j].size; + *p = '\n'; + p++; + } - return buf; + return buf; } void editorCloseFile(void) { - E.cursor_x = 0; - E.cursor_y = 0; - E.rx = 0; - E.row_offset = 0; - E.col_offset = 0; - E.numrows = 0; - E.row = NULL; - E.dirty = 0; - E.filename = NULL; - E.status_msg[0] = '\0'; - E.status_msg_time = 0; - + E.cursor_x = 0; + E.cursor_y = 0; + E.rx = 0; + E.row_offset = 0; + E.col_offset = 0; + E.numrows = 0; + E.row = NULL; + E.dirty = 0; + E.filename = NULL; + E.status_msg[0] = '\0'; + E.status_msg_time = 0; } void editorOpen(char *filename) { - FILE *fp; + FILE *fp; - // Test if a file is already open - if (E.filename != NULL) { - editorCloseFile(); - } - - free(E.filename); - E.filename = strdup(filename); - - fp = fopen(filename, "a+"); - if (!fp) - die("fopen"); - - char *line = NULL; - size_t line_cap = 0; - ssize_t line_len; - - while ((line_len = getline(&line, &line_cap, fp)) != -1) { - while (line_len > 0 && - (line[line_len - 1] == '\n' || line[line_len - 1] == '\r')) { - --line_len; + // Test if a file is already open + if (E.filename != NULL) { + editorCloseFile(); + E.state = READ_AND_WRITE; } - editorInsertRow(E.numrows, line, line_len); - } - free(line); - fclose(fp); - E.dirty = 0; + + free(E.filename); + E.filename = strdup(filename); + + fp = fopen(filename, "a+"); + if (!fp) + die("fopen"); + + char *line = NULL; + size_t line_cap = 0; + ssize_t line_len; + + while ((line_len = getline(&line, &line_cap, fp)) != -1) { + while (line_len > 0 && + (line[line_len - 1] == '\n' || line[line_len - 1] == '\r')) { + --line_len; + } + editorInsertRow(E.numrows, line, line_len); + } + free(line); + fclose(fp); + E.dirty = 0; } void editorSave() { - int len; - char *buf; - int fd; - if (E.filename == NULL) { - E.filename = editorPrompt("Save as: %s (ESC to cancel)"); + int len; + char *buf; + int fd; if (E.filename == NULL) { - editorSetStatusMessage("Save aborted"); - return; + E.filename = editorPrompt("Save as: %s (ESC to cancel)"); + if (E.filename == NULL) { + editorSetStatusMessage("Save aborted"); + return; + } } - } - buf = editorRowsToString(&len); - fd = open(E.filename, O_RDWR | O_CREAT, 0644); - if (fd != -1) { - if (ftruncate(fd, len) != -1) { - if (write(fd, buf, len) == len) { + buf = editorRowsToString(&len); + fd = open(E.filename, O_RDWR | O_CREAT, 0644); + if (fd != -1) { + if (ftruncate(fd, len) != -1) { + if (write(fd, buf, len) == len) { + close(fd); + free(buf); + E.dirty = 0; + editorSetStatusMessage("%d bytes written to disk", len); + return; + } + } close(fd); - free(buf); - E.dirty = 0; - editorSetStatusMessage("%d bytes written to disk", len); - return; - } } - close(fd); - } - free(buf); - editorSetStatusMessage("Can't save! I/O error: %s", strerror(errno)); + free(buf); + editorSetStatusMessage("Can't save! I/O error: %s", strerror(errno)); }